From 494aada27e305658ce60b0815fd992857222682b Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 18 Jan 2016 18:41:39 +0100 Subject: Configure for publications on pypi, descriptions, etc. --- .gitignore | 3 +- CHANGES.txt | 2 +- COPYING | 2 +- MANIFEST.in | 41 + Makefile.example | 13 + README.md | 10 + README.rst | 11 + README.txt | 0 ishtar_common/__init__.py | 9 - ishtar_common/fixtures/initial_towns-fr.json | 423254 ---------------------- ishtar_common/fixtures/initial_towns-pdl.json | 18026 - ishtar_common/scripts/__init__.py | 0 ishtar_common/scripts/import_from_csv.py | 68 - ishtar_common/scripts/import_towns_from_osm.py | 110 - misc/history_duplicate_clean.py | 31 - misc/pre_import_sra_files.py | 79 - misc/simple_ooo_replace.py | 79 - requirements.txt | 27 +- scripts/history_duplicate_clean.py | 31 + scripts/import_from_csv.py | 68 + scripts/import_towns_from_osm.py | 110 + scripts/pre_import_sra_files.py | 79 + scripts/simple_ooo_replace.py | 79 + setup.cfg | 2 + setup.py | 27 +- simple_history | 1 + version.py | 7 + 27 files changed, 482 insertions(+), 441687 deletions(-) create mode 100644 MANIFEST.in create mode 100644 README.md create mode 100644 README.rst delete mode 100644 README.txt delete mode 100644 ishtar_common/fixtures/initial_towns-fr.json delete mode 100644 ishtar_common/fixtures/initial_towns-pdl.json delete mode 100644 ishtar_common/scripts/__init__.py delete mode 100755 ishtar_common/scripts/import_from_csv.py delete mode 100755 ishtar_common/scripts/import_towns_from_osm.py delete mode 100644 misc/history_duplicate_clean.py delete mode 100644 misc/pre_import_sra_files.py delete mode 100755 misc/simple_ooo_replace.py create mode 100644 scripts/history_duplicate_clean.py create mode 100755 scripts/import_from_csv.py create mode 100755 scripts/import_towns_from_osm.py create mode 100644 scripts/pre_import_sra_files.py create mode 100755 scripts/simple_ooo_replace.py create mode 100644 setup.cfg create mode 120000 simple_history create mode 100644 version.py diff --git a/.gitignore b/.gitignore index e999ad09a..506a49869 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,8 @@ fabfile.py example_project/media example_project/static docs/build -simple_history Makefile oook_replace .zanata-cache +dist +ishtar.egg-info diff --git a/CHANGES.txt b/CHANGES.txt index 11dd12511..63777fa56 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -0.90 (2014-04-25) +0.90 (2015-01-18) ------------------ - First release. diff --git a/COPYING b/COPYING index 4ebfb7992..059bfaac4 100644 --- a/COPYING +++ b/COPYING @@ -21,4 +21,4 @@ along with this program; if not, write to the Questions regarding Ishtar should be directed to the Ishtar Development Team: -Internet: http://redmine.proxience.com/projects/ishtar/ +Internet: http://www.ishtar-archeo.net/ diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..985d0fa21 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,41 @@ +include CHANGES.txt +include COPYING +recursive-include fixtures * +recursive-include install * +include LICENSE.txt +include Makefile.example +recursive-include install * +recursive-include pot * +include README.md +recursive-include scripts * +recursive-include translations * +include version.py +include zanata.xml +recursive-include ishtar_common/static * +recursive-include ishtar_pdl/static * +recursive-include archaeological_finds/templates * +recursive-include archaeological_files_pdl/templates * +recursive-include django-simple-history/simple_history/templates * +recursive-include archaeological_files/templates * +recursive-include ishtar_common/templates * +recursive-include archaeological_operations/templates * +recursive-include archaeological_context_records/templates * +recursive-include ishtar_pdl/templates * +recursive-include archaeological_finds/fixtures * +recursive-include archaeological_warehouse/fixtures * +recursive-include archaeological_files/fixtures * +recursive-include ishtar_common/fixtures * +recursive-include archaeological_operations/fixtures * +recursive-include archaeological_context_records/fixtures * +recursive-include archaeological_finds/locale * +recursive-include archaeological_warehouse/locale * +recursive-include archaeological_files_pdl/locale * +recursive-include archaeological_files/locale * +recursive-include ishtar_common/locale * +recursive-include archaeological_operations/locale * +recursive-include archaeological_context_records/locale * +recursive-include archaeological_finds/tests * +recursive-include ishtar_common/tests * +recursive-include archaeological_operations/tests * +recursive-include archaeological_context_records/tests * +prune docs diff --git a/Makefile.example b/Makefile.example index 967641959..837bc74cd 100644 --- a/Makefile.example +++ b/Makefile.example @@ -15,6 +15,7 @@ clean: -rm -rf *~* -find . -name '*.pyc' -exec rm {} \; -find . -name '.*.swp' -exec rm {} \; + -rm -rf dist ishtar.egg-info update: clean syncdb compilemessages collectstatic @@ -191,3 +192,15 @@ translations_push: makemessages translations_pull: zanata-cli pull + +readme_md_to_rst: + pandoc --from=markdown --to=rst --output=README.rst README.md + +sdist: clean + $(PYTHON) setup.py sdist + +distribute_test: sdist + twine upload -r pypitest dist/* + +distribute_main: sdist + twine upload -r pypi dist/* diff --git a/README.md b/README.md new file mode 100644 index 000000000..3054139df --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ + +Ishtar +====== + +A full description of this project and news about Ishtar are available on this [website](http://www.ishtar-archeo.net). + +Docs +---- + +Documentation is not yet available but help can be provided on the [forum](http://forum.ishtar-archeo.net). diff --git a/README.rst b/README.rst new file mode 100644 index 000000000..4cdd88687 --- /dev/null +++ b/README.rst @@ -0,0 +1,11 @@ +Ishtar +====== + +A full description of this project and news about Ishtar are available +on this `website `__. + +Docs +---- + +Documentation is not yet available but help can be provided on the +`forum `__. diff --git a/README.txt b/README.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/ishtar_common/__init__.py b/ishtar_common/__init__.py index 84ec7c204..5d2eadd7d 100644 --- a/ishtar_common/__init__.py +++ b/ishtar_common/__init__.py @@ -7,13 +7,4 @@ from django.utils.translation import ugettext as _ # overload of translation of registration module _(u"username") _(u"email address") - -VERSION = (0, 9) - _(u"Related item") - - -def get_version(): - return u'.'.join((unicode(num) for num in VERSION)) - -__version__ = get_version() diff --git a/ishtar_common/fixtures/initial_towns-fr.json b/ishtar_common/fixtures/initial_towns-fr.json deleted file mode 100644 index a7fbe9179..000000000 --- a/ishtar_common/fixtures/initial_towns-fr.json +++ /dev/null @@ -1,423254 +0,0 @@ -[ - { - "pk": 28, - "model": "ishtar_common.state", - "fields": { - "number": "1", - "label": "Guadeloupe" - } - }, - { - "pk": 33, - "model": "ishtar_common.state", - "fields": { - "number": "11", - "label": "\u00cele-de-France" - } - }, - { - "pk": 29, - "model": "ishtar_common.state", - "fields": { - "number": "2", - "label": "Martinique" - } - }, - { - "pk": 34, - "model": "ishtar_common.state", - "fields": { - "number": "21", - "label": "Champagne-Ardenne" - } - }, - { - "pk": 35, - "model": "ishtar_common.state", - "fields": { - "number": "22", - "label": "Picardie" - } - }, - { - "pk": 36, - "model": "ishtar_common.state", - "fields": { - "number": "23", - "label": "Haute-Normandie" - } - }, - { - "pk": 37, - "model": "ishtar_common.state", - "fields": { - "number": "24", - "label": "Centre" - } - }, - { - "pk": 38, - "model": "ishtar_common.state", - "fields": { - "number": "25", - "label": "Basse-Normandie" - } - }, - { - "pk": 39, - "model": "ishtar_common.state", - "fields": { - "number": "26", - "label": "Bourgogne" - } - }, - { - "pk": 30, - "model": "ishtar_common.state", - "fields": { - "number": "3", - "label": "Guyane" - } - }, - { - "pk": 40, - "model": "ishtar_common.state", - "fields": { - "number": "31", - "label": "Nord-Pas-de-Calais" - } - }, - { - "pk": 31, - "model": "ishtar_common.state", - "fields": { - "number": "4", - "label": "La R\u00e9union" - } - }, - { - "pk": 41, - "model": "ishtar_common.state", - "fields": { - "number": "41", - "label": "Lorraine" - } - }, - { - "pk": 42, - "model": "ishtar_common.state", - "fields": { - "number": "42", - "label": "Alsace" - } - }, - { - "pk": 43, - "model": "ishtar_common.state", - "fields": { - "number": "43", - "label": "Franche-Comt\u00e9" - } - }, - { - "pk": 44, - "model": "ishtar_common.state", - "fields": { - "number": "52", - "label": "Pays de la Loire" - } - }, - { - "pk": 45, - "model": "ishtar_common.state", - "fields": { - "number": "53", - "label": "Bretagne" - } - }, - { - "pk": 46, - "model": "ishtar_common.state", - "fields": { - "number": "54", - "label": "Poitou-Charentes" - } - }, - { - "pk": 32, - "model": "ishtar_common.state", - "fields": { - "number": "6", - "label": "Mayotte" - } - }, - { - "pk": 47, - "model": "ishtar_common.state", - "fields": { - "number": "72", - "label": "Aquitaine" - } - }, - { - "pk": 48, - "model": "ishtar_common.state", - "fields": { - "number": "73", - "label": "Midi-Pyr\u00e9n\u00e9es" - } - }, - { - "pk": 49, - "model": "ishtar_common.state", - "fields": { - "number": "74", - "label": "Limousin" - } - }, - { - "pk": 50, - "model": "ishtar_common.state", - "fields": { - "number": "82", - "label": "Rh\u00f4ne-Alpes" - } - }, - { - "pk": 51, - "model": "ishtar_common.state", - "fields": { - "number": "83", - "label": "Auvergne" - } - }, - { - "pk": 52, - "model": "ishtar_common.state", - "fields": { - "number": "91", - "label": "Languedoc-Roussillon" - } - }, - { - "pk": 53, - "model": "ishtar_common.state", - "fields": { - "number": "93", - "label": "Provence-Alpes-C\u00f4te d'Azur" - } - }, - { - "pk": 54, - "model": "ishtar_common.state", - "fields": { - "number": "94", - "label": "Corse" - } - }, - { - "pk": 1, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "01", - "label": "Ain" - } - }, - { - "pk": 2, - "model": "ishtar_common.department", - "fields": { - "state": 35, - "number": "02", - "label": "Aisne" - } - }, - { - "pk": 3, - "model": "ishtar_common.department", - "fields": { - "state": 51, - "number": "03", - "label": "Allier" - } - }, - { - "pk": 4, - "model": "ishtar_common.department", - "fields": { - "state": 53, - "number": "04", - "label": "Alpes-de-Haute-Provence" - } - }, - { - "pk": 5, - "model": "ishtar_common.department", - "fields": { - "state": 53, - "number": "05", - "label": "Hautes-Alpes" - } - }, - { - "pk": 6, - "model": "ishtar_common.department", - "fields": { - "state": 53, - "number": "06", - "label": "Alpes-Maritimes" - } - }, - { - "pk": 7, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "07", - "label": "Ard\u00e8che" - } - }, - { - "pk": 8, - "model": "ishtar_common.department", - "fields": { - "state": 34, - "number": "08", - "label": "Ardennes" - } - }, - { - "pk": 9, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "09", - "label": "Ari\u00e8ge" - } - }, - { - "pk": 10, - "model": "ishtar_common.department", - "fields": { - "state": 34, - "number": "10", - "label": "Aube" - } - }, - { - "pk": 11, - "model": "ishtar_common.department", - "fields": { - "state": 52, - "number": "11", - "label": "Aude" - } - }, - { - "pk": 12, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "12", - "label": "Aveyron" - } - }, - { - "pk": 13, - "model": "ishtar_common.department", - "fields": { - "state": 53, - "number": "13", - "label": "Bouches-du-Rh\u00f4ne" - } - }, - { - "pk": 14, - "model": "ishtar_common.department", - "fields": { - "state": 38, - "number": "14", - "label": "Calvados" - } - }, - { - "pk": 15, - "model": "ishtar_common.department", - "fields": { - "state": 51, - "number": "15", - "label": "Cantal" - } - }, - { - "pk": 16, - "model": "ishtar_common.department", - "fields": { - "state": 46, - "number": "16", - "label": "Charente" - } - }, - { - "pk": 17, - "model": "ishtar_common.department", - "fields": { - "state": 46, - "number": "17", - "label": "Charente-Maritime" - } - }, - { - "pk": 18, - "model": "ishtar_common.department", - "fields": { - "state": 37, - "number": "18", - "label": "Cher" - } - }, - { - "pk": 19, - "model": "ishtar_common.department", - "fields": { - "state": 49, - "number": "19", - "label": "Corr\u00e8ze" - } - }, - { - "pk": 22, - "model": "ishtar_common.department", - "fields": { - "state": 39, - "number": "21", - "label": "C\u00f4te-d'Or" - } - }, - { - "pk": 23, - "model": "ishtar_common.department", - "fields": { - "state": 45, - "number": "22", - "label": "C\u00f4tes-d'Armor" - } - }, - { - "pk": 24, - "model": "ishtar_common.department", - "fields": { - "state": 49, - "number": "23", - "label": "Creuse" - } - }, - { - "pk": 25, - "model": "ishtar_common.department", - "fields": { - "state": 47, - "number": "24", - "label": "Dordogne" - } - }, - { - "pk": 26, - "model": "ishtar_common.department", - "fields": { - "state": 43, - "number": "25", - "label": "Doubs" - } - }, - { - "pk": 27, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "26", - "label": "Dr\u00f4me" - } - }, - { - "pk": 28, - "model": "ishtar_common.department", - "fields": { - "state": 36, - "number": "27", - "label": "Eure" - } - }, - { - "pk": 29, - "model": "ishtar_common.department", - "fields": { - "state": 37, - "number": "28", - "label": "Eure-et-Loir" - } - }, - { - "pk": 30, - "model": "ishtar_common.department", - "fields": { - "state": 45, - "number": "29", - "label": "Finist\u00e8re" - } - }, - { - "pk": 20, - "model": "ishtar_common.department", - "fields": { - "state": 54, - "number": "2A", - "label": "Corse-du-Sud" - } - }, - { - "pk": 21, - "model": "ishtar_common.department", - "fields": { - "state": 54, - "number": "2B", - "label": "Haute-Corse" - } - }, - { - "pk": 31, - "model": "ishtar_common.department", - "fields": { - "state": 52, - "number": "30", - "label": "Gard" - } - }, - { - "pk": 32, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "31", - "label": "Haute-Garonne" - } - }, - { - "pk": 33, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "32", - "label": "Gers" - } - }, - { - "pk": 34, - "model": "ishtar_common.department", - "fields": { - "state": 47, - "number": "33", - "label": "Gironde" - } - }, - { - "pk": 35, - "model": "ishtar_common.department", - "fields": { - "state": 52, - "number": "34", - "label": "H\u00e9rault" - } - }, - { - "pk": 36, - "model": "ishtar_common.department", - "fields": { - "state": 45, - "number": "35", - "label": "Ille-et-Vilaine" - } - }, - { - "pk": 37, - "model": "ishtar_common.department", - "fields": { - "state": 37, - "number": "36", - "label": "Indre" - } - }, - { - "pk": 38, - "model": "ishtar_common.department", - "fields": { - "state": 37, - "number": "37", - "label": "Indre-et-Loire" - } - }, - { - "pk": 39, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "38", - "label": "Is\u00e8re" - } - }, - { - "pk": 40, - "model": "ishtar_common.department", - "fields": { - "state": 43, - "number": "39", - "label": "Jura" - } - }, - { - "pk": 41, - "model": "ishtar_common.department", - "fields": { - "state": 47, - "number": "40", - "label": "Landes" - } - }, - { - "pk": 42, - "model": "ishtar_common.department", - "fields": { - "state": 37, - "number": "41", - "label": "Loir-et-Cher" - } - }, - { - "pk": 43, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "42", - "label": "Loire" - } - }, - { - "pk": 44, - "model": "ishtar_common.department", - "fields": { - "state": 51, - "number": "43", - "label": "Haute-Loire" - } - }, - { - "pk": 45, - "model": "ishtar_common.department", - "fields": { - "state": 44, - "number": "44", - "label": "Loire-Atlantique" - } - }, - { - "pk": 46, - "model": "ishtar_common.department", - "fields": { - "state": 37, - "number": "45", - "label": "Loiret" - } - }, - { - "pk": 47, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "46", - "label": "Lot" - } - }, - { - "pk": 48, - "model": "ishtar_common.department", - "fields": { - "state": 47, - "number": "47", - "label": "Lot-et-Garonne" - } - }, - { - "pk": 49, - "model": "ishtar_common.department", - "fields": { - "state": 52, - "number": "48", - "label": "Loz\u00e8re" - } - }, - { - "pk": 50, - "model": "ishtar_common.department", - "fields": { - "state": 44, - "number": "49", - "label": "Maine-et-Loire" - } - }, - { - "pk": 51, - "model": "ishtar_common.department", - "fields": { - "state": 38, - "number": "50", - "label": "Manche" - } - }, - { - "pk": 52, - "model": "ishtar_common.department", - "fields": { - "state": 34, - "number": "51", - "label": "Marne" - } - }, - { - "pk": 53, - "model": "ishtar_common.department", - "fields": { - "state": 34, - "number": "52", - "label": "Haute-Marne" - } - }, - { - "pk": 54, - "model": "ishtar_common.department", - "fields": { - "state": 44, - "number": "53", - "label": "Mayenne" - } - }, - { - "pk": 55, - "model": "ishtar_common.department", - "fields": { - "state": 41, - "number": "54", - "label": "Meurthe-et-Moselle" - } - }, - { - "pk": 56, - "model": "ishtar_common.department", - "fields": { - "state": 41, - "number": "55", - "label": "Meuse" - } - }, - { - "pk": 57, - "model": "ishtar_common.department", - "fields": { - "state": 45, - "number": "56", - "label": "Morbihan" - } - }, - { - "pk": 58, - "model": "ishtar_common.department", - "fields": { - "state": 41, - "number": "57", - "label": "Moselle" - } - }, - { - "pk": 59, - "model": "ishtar_common.department", - "fields": { - "state": 39, - "number": "58", - "label": "Ni\u00e8vre" - } - }, - { - "pk": 60, - "model": "ishtar_common.department", - "fields": { - "state": 40, - "number": "59", - "label": "Nord" - } - }, - { - "pk": 61, - "model": "ishtar_common.department", - "fields": { - "state": 35, - "number": "60", - "label": "Oise" - } - }, - { - "pk": 62, - "model": "ishtar_common.department", - "fields": { - "state": 38, - "number": "61", - "label": "Orne" - } - }, - { - "pk": 63, - "model": "ishtar_common.department", - "fields": { - "state": 40, - "number": "62", - "label": "Pas-de-Calais" - } - }, - { - "pk": 64, - "model": "ishtar_common.department", - "fields": { - "state": 51, - "number": "63", - "label": "Puy-de-D\u00f4me" - } - }, - { - "pk": 65, - "model": "ishtar_common.department", - "fields": { - "state": 47, - "number": "64", - "label": "Pyr\u00e9n\u00e9es-Atlantiques" - } - }, - { - "pk": 66, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "65", - "label": "Hautes-Pyr\u00e9n\u00e9es" - } - }, - { - "pk": 67, - "model": "ishtar_common.department", - "fields": { - "state": 52, - "number": "66", - "label": "Pyr\u00e9n\u00e9es-Orientales" - } - }, - { - "pk": 68, - "model": "ishtar_common.department", - "fields": { - "state": 42, - "number": "67", - "label": "Bas-Rhin" - } - }, - { - "pk": 69, - "model": "ishtar_common.department", - "fields": { - "state": 42, - "number": "68", - "label": "Haut-Rhin" - } - }, - { - "pk": 70, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "69", - "label": "Rh\u00f4ne" - } - }, - { - "pk": 71, - "model": "ishtar_common.department", - "fields": { - "state": 43, - "number": "70", - "label": "Haute-Sa\u00f4ne" - } - }, - { - "pk": 72, - "model": "ishtar_common.department", - "fields": { - "state": 39, - "number": "71", - "label": "Sa\u00f4ne-et-Loire" - } - }, - { - "pk": 73, - "model": "ishtar_common.department", - "fields": { - "state": 44, - "number": "72", - "label": "Sarthe" - } - }, - { - "pk": 74, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "73", - "label": "Savoie" - } - }, - { - "pk": 75, - "model": "ishtar_common.department", - "fields": { - "state": 50, - "number": "74", - "label": "Haute-Savoie" - } - }, - { - "pk": 76, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "75", - "label": "Paris" - } - }, - { - "pk": 77, - "model": "ishtar_common.department", - "fields": { - "state": 36, - "number": "76", - "label": "Seine-Maritime" - } - }, - { - "pk": 78, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "77", - "label": "Seine-et-Marne" - } - }, - { - "pk": 79, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "78", - "label": "Yvelines" - } - }, - { - "pk": 80, - "model": "ishtar_common.department", - "fields": { - "state": 46, - "number": "79", - "label": "Deux-S\u00e8vres" - } - }, - { - "pk": 81, - "model": "ishtar_common.department", - "fields": { - "state": 35, - "number": "80", - "label": "Somme" - } - }, - { - "pk": 82, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "81", - "label": "Tarn" - } - }, - { - "pk": 83, - "model": "ishtar_common.department", - "fields": { - "state": 48, - "number": "82", - "label": "Tarn-et-Garonne" - } - }, - { - "pk": 84, - "model": "ishtar_common.department", - "fields": { - "state": 53, - "number": "83", - "label": "Var" - } - }, - { - "pk": 85, - "model": "ishtar_common.department", - "fields": { - "state": 53, - "number": "84", - "label": "Vaucluse" - } - }, - { - "pk": 86, - "model": "ishtar_common.department", - "fields": { - "state": 44, - "number": "85", - "label": "Vend\u00e9e" - } - }, - { - "pk": 87, - "model": "ishtar_common.department", - "fields": { - "state": 46, - "number": "86", - "label": "Vienne" - } - }, - { - "pk": 88, - "model": "ishtar_common.department", - "fields": { - "state": 49, - "number": "87", - "label": "Haute-Vienne" - } - }, - { - "pk": 89, - "model": "ishtar_common.department", - "fields": { - "state": 41, - "number": "88", - "label": "Vosges" - } - }, - { - "pk": 90, - "model": "ishtar_common.department", - "fields": { - "state": 39, - "number": "89", - "label": "Yonne" - } - }, - { - "pk": 91, - "model": "ishtar_common.department", - "fields": { - "state": 43, - "number": "90", - "label": "Territoire de Belfort" - } - }, - { - "pk": 92, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "91", - "label": "Essonne" - } - }, - { - "pk": 93, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "92", - "label": "Hauts-de-Seine" - } - }, - { - "pk": 94, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "93", - "label": "Seine-Saint-Denis" - } - }, - { - "pk": 95, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "94", - "label": "Val-de-Marne" - } - }, - { - "pk": 96, - "model": "ishtar_common.department", - "fields": { - "state": 33, - "number": "95", - "label": "Val-d'Oise" - } - }, - { - "pk": 22551, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "L'ABERGEMENT-CLEMENCIAT", - "center": "POINT (799957.8316508819116279 2131406.9121782956644893)", - "surface": 15650000, - "canton": null, - "numero_insee": "01001" - } - }, - { - "pk": 23686, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "L'ABERGEMENT-DE-VAREY", - "center": "POINT (839319.5135926462244242 2116730.0694483439438045)", - "surface": 9120000, - "canton": null, - "numero_insee": "01002" - } - }, - { - "pk": 14477, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "AMBERIEU-EN-BUGEY", - "center": "POINT (835263.2057944772532210 2111190.1903722099959850)", - "surface": 24480000, - "canton": null, - "numero_insee": "01004" - } - }, - { - "pk": 14540, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "AMBERIEUX-EN-DOMBES", - "center": "POINT (799406.9063856469001621 2113886.1056704889051616)", - "surface": 16050000, - "canton": null, - "numero_insee": "01005" - } - }, - { - "pk": 7029, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "AMBLEON", - "center": "POINT (853375.3034230966586620 2088424.0662403779570013)", - "surface": 6020000, - "canton": null, - "numero_insee": "01006" - } - }, - { - "pk": 18112, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "AMBRONAY", - "center": "POINT (833919.2016318398527801 2116183.3096402017399669)", - "surface": 33590000, - "canton": null, - "numero_insee": "01007" - } - }, - { - "pk": 36196, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "AMBUTRIX", - "center": "POINT (832283.7948214883217588 2108462.1418316024355590)", - "surface": 5180000, - "canton": null, - "numero_insee": "01008" - } - }, - { - "pk": 30180, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ANDERT-ET-CONDON", - "center": "POINT (858141.6755324865225703 2092869.1560810061637312)", - "surface": 6960000, - "canton": null, - "numero_insee": "01009" - } - }, - { - "pk": 27165, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ANGLEFORT", - "center": "POINT (868230.9624730151845142 2106868.9058518502861261)", - "surface": 29480000, - "canton": null, - "numero_insee": "01010" - } - }, - { - "pk": 8218, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "APREMONT", - "center": "POINT (856141.4633630451280624 2139294.9825401068665087)", - "surface": 15070000, - "canton": null, - "numero_insee": "01011" - } - }, - { - "pk": 24156, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARANC", - "center": "POINT (845830.2049291642615572 2116185.3593533625826240)", - "surface": 21720000, - "canton": null, - "numero_insee": "01012" - } - }, - { - "pk": 37664, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARANDAS", - "center": "POINT (845335.3100842360872775 2103869.6619779346510768)", - "surface": 14020000, - "canton": null, - "numero_insee": "01013" - } - }, - { - "pk": 15957, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARBENT", - "center": "POINT (858368.5865935080219060 2148021.9939562180079520)", - "surface": 23740000, - "canton": null, - "numero_insee": "01014" - } - }, - { - "pk": 14649, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARBIGNY", - "center": "POINT (801351.3057004006113857 2167451.2071227086707950)", - "surface": 17560000, - "canton": null, - "numero_insee": "01016" - } - }, - { - "pk": 29941, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARGIS", - "center": "POINT (843893.7510067612165585 2108561.6843121042475104)", - "surface": 7870000, - "canton": null, - "numero_insee": "01017" - } - }, - { - "pk": 26314, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARMIX", - "center": "POINT (852074.5931093447143212 2100023.8414098271168768)", - "surface": 6950000, - "canton": null, - "numero_insee": "01019" - } - }, - { - "pk": 37233, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARS-SUR-FORMANS", - "center": "POINT (792505.2911578533239663 2113326.6876563946716487)", - "surface": 5570000, - "canton": null, - "numero_insee": "01021" - } - }, - { - "pk": 29940, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ARTEMARE", - "center": "POINT (860264.4912292840890586 2102096.0470639560371637)", - "surface": 3340000, - "canton": null, - "numero_insee": "01022" - } - }, - { - "pk": 11183, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ASNIERES-SUR-SAONE", - "center": "POINT (795834.8210825357818976 2157094.9026503558270633)", - "surface": 4690000, - "canton": null, - "numero_insee": "01023" - } - }, - { - "pk": 36333, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ATTIGNAT", - "center": "POINT (818943.6564744806382805 2146783.0958381374366581)", - "surface": 18940000, - "canton": null, - "numero_insee": "01024" - } - }, - { - "pk": 32367, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BAGE-LA-VILLE", - "center": "POINT (801397.5032172087812796 2150336.3417724436149001)", - "surface": 39810000, - "canton": null, - "numero_insee": "01025" - } - }, - { - "pk": 8309, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BAGE-LE-CHATEL", - "center": "POINT (799611.4118986867833883 2148519.4577372912317514)", - "surface": 860000, - "canton": null, - "numero_insee": "01026" - } - }, - { - "pk": 27242, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BALAN", - "center": "POINT (815273.6002781098941341 2096105.0645495234057307)", - "surface": 17850000, - "canton": null, - "numero_insee": "01027" - } - }, - { - "pk": 20459, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BANEINS", - "center": "POINT (798193.9454956098925322 2126987.8142290166579187)", - "surface": 9040000, - "canton": null, - "numero_insee": "01028" - } - }, - { - "pk": 14748, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BEAUPONT", - "center": "POINT (824611.3110895860008895 2162845.9656335185281932)", - "surface": 14040000, - "canton": null, - "numero_insee": "01029" - } - }, - { - "pk": 4367, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BEAUREGARD", - "center": "POINT (787294.8716578647727147 2113982.8518291241489351)", - "surface": 950000, - "canton": null, - "numero_insee": "01030" - } - }, - { - "pk": 30921, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BELLIGNAT", - "center": "POINT (854309.8796193422749639 2142782.4306616275571287)", - "surface": 7790000, - "canton": null, - "numero_insee": "01031" - } - }, - { - "pk": 5499, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BELIGNEUX", - "center": "POINT (817649.1282919141231105 2099228.3045717580243945)", - "surface": 13310000, - "canton": null, - "numero_insee": "01032" - } - }, - { - "pk": 19981, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BELLEGARDE-SUR-VALSERINE", - "center": "POINT (870143.4411218411987647 2128905.7194710150361061)", - "surface": 15420000, - "canton": null, - "numero_insee": "01033" - } - }, - { - "pk": 3565, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BELLEY", - "center": "POINT (860379.7010228324215859 2088684.4058553613722324)", - "surface": 22580000, - "canton": null, - "numero_insee": "01034" - } - }, - { - "pk": 13474, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BELLEYDOUX", - "center": "POINT (865701.3067943187197670 2144982.2031373996287584)", - "surface": 17890000, - "canton": null, - "numero_insee": "01035" - } - }, - { - "pk": 34078, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BELMONT-LUTHEZIEU", - "center": "POINT (857148.0611100330715999 2103670.7781475447118282)", - "surface": 19680000, - "canton": null, - "numero_insee": "01036" - } - }, - { - "pk": 4385, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BENONCES", - "center": "POINT (844285.8764030433958396 2097855.0317193074151874)", - "surface": 15320000, - "canton": null, - "numero_insee": "01037" - } - }, - { - "pk": 19670, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BENY", - "center": "POINT (826816.7678008358925581 2150754.0302040209062397)", - "surface": 18270000, - "canton": null, - "numero_insee": "01038" - } - }, - { - "pk": 36879, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BEON", - "center": "POINT (865179.0452624999452382 2100937.1486170352436602)", - "surface": 10200000, - "canton": null, - "numero_insee": "01039" - } - }, - { - "pk": 15635, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BEREZIAT", - "center": "POINT (807959.3013982931151986 2155497.0183850564062595)", - "surface": 11270000, - "canton": null, - "numero_insee": "01040" - } - }, - { - "pk": 6507, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BETTANT", - "center": "POINT (834885.1683173102792352 2108584.5300374994985759)", - "surface": 3440000, - "canton": null, - "numero_insee": "01041" - } - }, - { - "pk": 5598, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BEY", - "center": "POINT (793591.8476828073617071 2138458.9904788457788527)", - "surface": 2790000, - "canton": null, - "numero_insee": "01042" - } - }, - { - "pk": 25770, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BEYNOST", - "center": "POINT (806661.0084520868258551 2096631.9644248862750828)", - "surface": 10710000, - "canton": null, - "numero_insee": "01043" - } - }, - { - "pk": 25485, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BILLIAT", - "center": "POINT (865166.7503587424289435 2125659.9956220993772149)", - "surface": 14000000, - "canton": null, - "numero_insee": "01044" - } - }, - { - "pk": 25634, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BIRIEUX", - "center": "POINT (809253.7884914004243910 2109466.1034896704368293)", - "surface": 15760000, - "canton": null, - "numero_insee": "01045" - } - }, - { - "pk": 32149, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BIZIAT", - "center": "POINT (800789.3043066349346191 2139521.3907462256029248)", - "surface": 11640000, - "canton": null, - "numero_insee": "01046" - } - }, - { - "pk": 25364, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BLYES", - "center": "POINT (826366.0827102487673983 2098201.9019427774474025)", - "surface": 9360000, - "canton": null, - "numero_insee": "01047" - } - }, - { - "pk": 32966, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LA BOISSE", - "center": "POINT (808957.0104659480275586 2097352.2546016583219171)", - "surface": 9380000, - "canton": null, - "numero_insee": "01049" - } - }, - { - "pk": 32359, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BOISSEY", - "center": "POINT (804752.3926697890274227 2155970.0433768830262125)", - "surface": 9390000, - "canton": null, - "numero_insee": "01050" - } - }, - { - "pk": 37723, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BOLOZON", - "center": "POINT (841842.3965896524023265 2137670.8889072355814278)", - "surface": 5000000, - "canton": null, - "numero_insee": "01051" - } - }, - { - "pk": 15153, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BOULIGNEUX", - "center": "POINT (805584.8163425510283560 2117141.8705540350638330)", - "surface": 26220000, - "canton": null, - "numero_insee": "01052" - } - }, - { - "pk": 4821, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BOURG-EN-BRESSE", - "center": "POINT (824423.5622543424833566 2138022.0474300519563258)", - "surface": 24000000, - "canton": null, - "numero_insee": "01053" - } - }, - { - "pk": 9726, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BOURG-SAINT-CHRISTOPHE", - "center": "POINT (817823.6039496395969763 2102232.6090381601825356)", - "surface": 8910000, - "canton": null, - "numero_insee": "01054" - } - }, - { - "pk": 8235, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BOZ", - "center": "POINT (798017.8123862792272121 2159315.5181634817272425)", - "surface": 7710000, - "canton": null, - "numero_insee": "01057" - } - }, - { - "pk": 26119, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BREGNIER-CORDON", - "center": "POINT (855579.4048994949553162 2076531.6593218611087650)", - "surface": 11130000, - "canton": null, - "numero_insee": "01058" - } - }, - { - "pk": 12134, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BRENAZ", - "center": "POINT (863489.9373761189635843 2111132.1671743057668209)", - "surface": 9900000, - "canton": null, - "numero_insee": "01059" - } - }, - { - "pk": 19122, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BRENOD", - "center": "POINT (853463.7287065609125420 2124758.7253741533495486)", - "surface": 23990000, - "canton": null, - "numero_insee": "01060" - } - }, - { - "pk": 24767, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BRENS", - "center": "POINT (861013.7576597939478233 2084786.1509312388952821)", - "surface": 6840000, - "canton": null, - "numero_insee": "01061" - } - }, - { - "pk": 7550, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BRESSOLLES", - "center": "POINT (814537.0276113206055015 2100302.7057417873293161)", - "surface": 7670000, - "canton": null, - "numero_insee": "01062" - } - }, - { - "pk": 6693, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BRION", - "center": "POINT (847772.2395336920162663 2134819.1234629624523222)", - "surface": 4500000, - "canton": null, - "numero_insee": "01063" - } - }, - { - "pk": 37269, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BRIORD", - "center": "POINT (844849.8461527148028836 2090452.8917534397915006)", - "surface": 12380000, - "canton": null, - "numero_insee": "01064" - } - }, - { - "pk": 5297, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BUELLAS", - "center": "POINT (816614.4751925497548655 2138255.4634256451390684)", - "surface": 10240000, - "canton": null, - "numero_insee": "01065" - } - }, - { - "pk": 18393, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LA BURBANCHE", - "center": "POINT (849167.7898798214737326 2100499.3612739406526089)", - "surface": 11070000, - "canton": null, - "numero_insee": "01066" - } - }, - { - "pk": 31701, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CEIGNES", - "center": "POINT (843911.0415565599687397 2129881.5135312317870557)", - "surface": 10200000, - "canton": null, - "numero_insee": "01067" - } - }, - { - "pk": 3538, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CERDON", - "center": "POINT (842761.5419895907398313 2123866.1436690939590335)", - "surface": 12110000, - "canton": null, - "numero_insee": "01068" - } - }, - { - "pk": 10031, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CESSY", - "center": "POINT (887952.6121927326312289 2152980.7055788263678551)", - "surface": 6440000, - "canton": null, - "numero_insee": "01071" - } - }, - { - "pk": 7865, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CEYZERIAT", - "center": "POINT (830248.1336630744626746 2135769.8508262019604445)", - "surface": 9210000, - "canton": null, - "numero_insee": "01072" - } - }, - { - "pk": 31274, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CEYZERIEU", - "center": "POINT (862700.1026910752989352 2098213.3098373180255294)", - "surface": 19720000, - "canton": null, - "numero_insee": "01073" - } - }, - { - "pk": 19957, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHALAMONT", - "center": "POINT (819308.4716864809161052 2115857.9774451134726405)", - "surface": 32960000, - "canton": null, - "numero_insee": "01074" - } - }, - { - "pk": 32446, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHALEINS", - "center": "POINT (790465.1296245143748820 2117813.4298115000128746)", - "surface": 17080000, - "canton": null, - "numero_insee": "01075" - } - }, - { - "pk": 13847, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHALEY", - "center": "POINT (847977.5163508766563609 2110898.8642917992547154)", - "surface": 4670000, - "canton": null, - "numero_insee": "01076" - } - }, - { - "pk": 6797, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHALLES-LA-MONTAGNE", - "center": "POINT (841112.9753949748119339 2129357.0541195757687092)", - "surface": 7790000, - "canton": null, - "numero_insee": "01077" - } - }, - { - "pk": 7132, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHALLEX", - "center": "POINT (880481.5808116276748478 2137202.1572193549945951)", - "surface": 8770000, - "canton": null, - "numero_insee": "01078" - } - }, - { - "pk": 18675, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAMPAGNE-EN-VALROMEY", - "center": "POINT (860205.1655077775940299 2109001.9884546822868288)", - "surface": 18190000, - "canton": null, - "numero_insee": "01079" - } - }, - { - "pk": 24943, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAMPDOR", - "center": "POINT (852617.0999702579574659 2118445.6447129361331463)", - "surface": 17330000, - "canton": null, - "numero_insee": "01080" - } - }, - { - "pk": 28331, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAMPFROMIER", - "center": "POINT (868834.0027506598271430 2141505.9618943752720952)", - "surface": 31840000, - "canton": null, - "numero_insee": "01081" - } - }, - { - "pk": 6907, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHANAY", - "center": "POINT (865737.7136074013542384 2117457.3342880457639694)", - "surface": 18380000, - "canton": null, - "numero_insee": "01082" - } - }, - { - "pk": 10047, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHANEINS", - "center": "POINT (794611.4256462214980274 2124555.0076474356465042)", - "surface": 12690000, - "canton": null, - "numero_insee": "01083" - } - }, - { - "pk": 4446, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHANOZ-CHATENAY", - "center": "POINT (807731.8621633183211088 2135276.8346818219870329)", - "surface": 13310000, - "canton": null, - "numero_insee": "01084" - } - }, - { - "pk": 30933, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LA CHAPELLE-DU-CHATELARD", - "center": "POINT (807637.8206101645482704 2122864.6807515444234014)", - "surface": 13620000, - "canton": null, - "numero_insee": "01085" - } - }, - { - "pk": 33323, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHARIX", - "center": "POINT (858061.9641724331304431 2137109.4758979147300124)", - "surface": 18580000, - "canton": null, - "numero_insee": "01087" - } - }, - { - "pk": 12060, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHARNOZ-SUR-AIN", - "center": "POINT (823839.0642994877416641 2101082.9815980093553662)", - "surface": 6620000, - "canton": null, - "numero_insee": "01088" - } - }, - { - "pk": 24968, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHATEAU-GAILLARD", - "center": "POINT (830148.5489804431563243 2112347.4733004625886679)", - "surface": 16080000, - "canton": null, - "numero_insee": "01089" - } - }, - { - "pk": 26295, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHATENAY", - "center": "POINT (821992.7776288468157873 2117982.8999580773524940)", - "surface": 15200000, - "canton": null, - "numero_insee": "01090" - } - }, - { - "pk": 16564, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHATILLON-EN-MICHAILLE", - "center": "POINT (865219.5223067834740505 2131165.4971740725450218)", - "surface": 37680000, - "canton": null, - "numero_insee": "01091" - } - }, - { - "pk": 36951, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHATILLON-LA-PALUD", - "center": "POINT (825043.3304149240721017 2112403.8345335638150573)", - "surface": 14080000, - "canton": null, - "numero_insee": "01092" - } - }, - { - "pk": 18790, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHATILLON-SUR-CHALARONNE", - "center": "POINT (802488.1625566331204027 2128125.5196315320208669)", - "surface": 17970000, - "canton": null, - "numero_insee": "01093" - } - }, - { - "pk": 5040, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAVANNES-SUR-REYSSOUZE", - "center": "POINT (805091.1092694764956832 2163179.3618449447676539)", - "surface": 16510000, - "canton": null, - "numero_insee": "01094" - } - }, - { - "pk": 15992, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAVANNES-SUR-SURAN", - "center": "POINT (837264.8336139529710636 2146239.4284955868497491)", - "surface": 21750000, - "canton": null, - "numero_insee": "01095" - } - }, - { - "pk": 3273, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAVEYRIAT", - "center": "POINT (809820.7801207799930125 2136796.0650512450374663)", - "surface": 16800000, - "canton": null, - "numero_insee": "01096" - } - }, - { - "pk": 7875, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAVORNAY", - "center": "POINT (862953.9232931062579155 2103620.5588060938753188)", - "surface": 7800000, - "canton": null, - "numero_insee": "01097" - } - }, - { - "pk": 28762, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAZEY-BONS", - "center": "POINT (860238.3452021291013807 2093487.7316688769496977)", - "surface": 10710000, - "canton": null, - "numero_insee": "01098" - } - }, - { - "pk": 35615, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHAZEY-SUR-AIN", - "center": "POINT (826422.4506682695355266 2103307.1652109394781291)", - "surface": 22120000, - "canton": null, - "numero_insee": "01099" - } - }, - { - "pk": 28660, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHEIGNIEU-LA-BALME", - "center": "POINT (853905.3662567998981103 2096636.3619205805007368)", - "surface": 5900000, - "canton": null, - "numero_insee": "01100" - } - }, - { - "pk": 29041, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHEVILLARD", - "center": "POINT (850729.6560220846440643 2128438.6524672671221197)", - "surface": 6650000, - "canton": null, - "numero_insee": "01101" - } - }, - { - "pk": 26680, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHEVRY", - "center": "POINT (885782.6839956927578896 2149258.6823604218661785)", - "surface": 5790000, - "canton": null, - "numero_insee": "01103" - } - }, - { - "pk": 18797, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CHEZERY-FORENS", - "center": "POINT (872633.7288036909885705 2141939.0013538231141865)", - "surface": 46450000, - "canton": null, - "numero_insee": "01104" - } - }, - { - "pk": 29842, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CIVRIEUX", - "center": "POINT (797675.4855857485672459 2105663.6892744284123182)", - "surface": 20190000, - "canton": null, - "numero_insee": "01105" - } - }, - { - "pk": 33335, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CIZE", - "center": "POINT (840237.6251802437473089 2138057.4887269134633243)", - "surface": 4500000, - "canton": null, - "numero_insee": "01106" - } - }, - { - "pk": 8043, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CLEYZIEU", - "center": "POINT (840121.3871172268409282 2104925.9693969362415373)", - "surface": 7670000, - "canton": null, - "numero_insee": "01107" - } - }, - { - "pk": 37712, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "COLLONGES", - "center": "POINT (875212.4430103949271142 2133053.0730202137492597)", - "surface": 16210000, - "canton": null, - "numero_insee": "01109" - } - }, - { - "pk": 18399, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "COLOMIEU", - "center": "POINT (855989.6073983735404909 2087045.1846902784891427)", - "surface": 5830000, - "canton": null, - "numero_insee": "01110" - } - }, - { - "pk": 31880, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CONAND", - "center": "POINT (843541.4853051981190220 2102953.4312116266228259)", - "surface": 15290000, - "canton": null, - "numero_insee": "01111" - } - }, - { - "pk": 13178, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CONDAMINE", - "center": "POINT (848732.2639775684801862 2127921.0495911715552211)", - "surface": 4550000, - "canton": null, - "numero_insee": "01112" - } - }, - { - "pk": 14585, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CONDEISSIAT", - "center": "POINT (812165.5140750856371596 2131811.5648750569671392)", - "surface": 21700000, - "canton": null, - "numero_insee": "01113" - } - }, - { - "pk": 37318, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CONFORT", - "center": "POINT (869997.7449242444708943 2134209.3194353911094368)", - "surface": 11250000, - "canton": null, - "numero_insee": "01114" - } - }, - { - "pk": 21284, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CONTREVOZ", - "center": "POINT (855227.1195346632739529 2094245.4487740066833794)", - "surface": 14270000, - "canton": null, - "numero_insee": "01116" - } - }, - { - "pk": 9140, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CONZIEU", - "center": "POINT (854298.4316449085017666 2085829.5250845164991915)", - "surface": 7080000, - "canton": null, - "numero_insee": "01117" - } - }, - { - "pk": 4419, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CORBONOD", - "center": "POINT (867476.1579959224909544 2113168.2878520754165947)", - "surface": 32010000, - "canton": null, - "numero_insee": "01118" - } - }, - { - "pk": 34736, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CORCELLES", - "center": "POINT (850396.3277628455543891 2120628.6136540989391506)", - "surface": 14180000, - "canton": null, - "numero_insee": "01119" - } - }, - { - "pk": 11440, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CORLIER", - "center": "POINT (844499.0443478731904179 2119677.1761789540760219)", - "surface": 5560000, - "canton": null, - "numero_insee": "01121" - } - }, - { - "pk": 25075, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CORMARANCHE-EN-BUGEY", - "center": "POINT (853589.1886048760497943 2110146.2876669541001320)", - "surface": 18970000, - "canton": null, - "numero_insee": "01122" - } - }, - { - "pk": 9559, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CORMORANCHE-SUR-SAONE", - "center": "POINT (792070.0829714639112353 2140848.1703564566560090)", - "surface": 9960000, - "canton": null, - "numero_insee": "01123" - } - }, - { - "pk": 17746, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CORMOZ", - "center": "POINT (821604.5760998327750713 2163320.6608182867057621)", - "surface": 19610000, - "canton": null, - "numero_insee": "01124" - } - }, - { - "pk": 22668, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CORVEISSIAT", - "center": "POINT (841590.7214655582793057 2143674.1759393149986863)", - "surface": 22920000, - "canton": null, - "numero_insee": "01125" - } - }, - { - "pk": 15739, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "COURMANGOUX", - "center": "POINT (832312.7330788937397301 2151802.0222203480079770)", - "surface": 15010000, - "canton": null, - "numero_insee": "01127" - } - }, - { - "pk": 25135, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "COURTES", - "center": "POINT (813077.9423879043897614 2165549.7196565824560821)", - "surface": 8940000, - "canton": null, - "numero_insee": "01128" - } - }, - { - "pk": 17806, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CRANS", - "center": "POINT (821448.8209803405916318 2111372.1267820256762207)", - "surface": 13240000, - "canton": null, - "numero_insee": "01129" - } - }, - { - "pk": 3988, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CRAS-SUR-REYSSOUZE", - "center": "POINT (818717.7885452683549374 2149783.8654891429468989)", - "surface": 13880000, - "canton": null, - "numero_insee": "01130" - } - }, - { - "pk": 22706, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CRESSIN-ROCHEFORT", - "center": "POINT (866551.5697226740885526 2092641.1281797164119780)", - "surface": 7730000, - "canton": null, - "numero_insee": "01133" - } - }, - { - "pk": 18547, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CROTTET", - "center": "POINT (795732.1256244819378480 2145683.7885598428547382)", - "surface": 12190000, - "canton": null, - "numero_insee": "01134" - } - }, - { - "pk": 28977, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CROZET", - "center": "POINT (881772.4775538033572957 2150024.8771318942308426)", - "surface": 27230000, - "canton": null, - "numero_insee": "01135" - } - }, - { - "pk": 13361, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CRUZILLES-LES-MEPILLAT", - "center": "POINT (795790.2641700229141861 2138878.1319160126149654)", - "surface": 11890000, - "canton": null, - "numero_insee": "01136" - } - }, - { - "pk": 37596, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CULOZ", - "center": "POINT (867581.9808350345119834 2100857.7080391570925713)", - "surface": 19110000, - "canton": null, - "numero_insee": "01138" - } - }, - { - "pk": 17174, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CURCIAT-DONGALON", - "center": "POINT (816949.4229209324112162 2169286.1311233639717102)", - "surface": 23950000, - "canton": null, - "numero_insee": "01139" - } - }, - { - "pk": 21801, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CURTAFOND", - "center": "POINT (813052.4673770493827760 2145131.2337214471772313)", - "surface": 12730000, - "canton": null, - "numero_insee": "01140" - } - }, - { - "pk": 8768, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "CUZIEU", - "center": "POINT (859410.9981961452867836 2096583.5476908714044839)", - "surface": 4830000, - "canton": null, - "numero_insee": "01141" - } - }, - { - "pk": 26373, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DAGNEUX", - "center": "POINT (812451.4803802254609764 2098383.0815557339228690)", - "surface": 6830000, - "canton": null, - "numero_insee": "01142" - } - }, - { - "pk": 33553, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DIVONNE-LES-BAINS", - "center": "POINT (890596.2098271821159869 2159809.5812989510595798)", - "surface": 33740000, - "canton": null, - "numero_insee": "01143" - } - }, - { - "pk": 20987, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DOMMARTIN", - "center": "POINT (804887.5582418786361814 2151867.5241418094374239)", - "surface": 17180000, - "canton": null, - "numero_insee": "01144" - } - }, - { - "pk": 23615, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DOMPIERRE-SUR-VEYLE", - "center": "POINT (822754.8937167800031602 2122493.5765803507529199)", - "surface": 29130000, - "canton": null, - "numero_insee": "01145" - } - }, - { - "pk": 30945, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DOMPIERRE-SUR-CHALARONNE", - "center": "POINT (798068.2072020532796159 2129989.4862531884573400)", - "surface": 4730000, - "canton": null, - "numero_insee": "01146" - } - }, - { - "pk": 15989, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DOMSURE", - "center": "POINT (827116.7825265731662512 2162467.0716737802140415)", - "surface": 15210000, - "canton": null, - "numero_insee": "01147" - } - }, - { - "pk": 35699, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DORTAN", - "center": "POINT (854437.8516966117313132 2151191.1172711914405227)", - "surface": 18760000, - "canton": null, - "numero_insee": "01148" - } - }, - { - "pk": 26576, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DOUVRES", - "center": "POINT (835040.7290550819598138 2113790.6981666022911668)", - "surface": 5240000, - "canton": null, - "numero_insee": "01149" - } - }, - { - "pk": 18607, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DROM", - "center": "POINT (833815.1181882324162871 2140004.2398636857979000)", - "surface": 7800000, - "canton": null, - "numero_insee": "01150" - } - }, - { - "pk": 16595, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "DRUILLAT", - "center": "POINT (828657.3211516403825954 2122844.4065771084278822)", - "surface": 20810000, - "canton": null, - "numero_insee": "01151" - } - }, - { - "pk": 31340, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ECHALLON", - "center": "POINT (861923.9485249624121934 2141947.0198571207001805)", - "surface": 28060000, - "canton": null, - "numero_insee": "01152" - } - }, - { - "pk": 35390, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ECHENEVEX", - "center": "POINT (883449.7580177322961390 2152841.8396923458203673)", - "surface": 16470000, - "canton": null, - "numero_insee": "01153" - } - }, - { - "pk": 34307, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ETREZ", - "center": "POINT (819794.7066128820879385 2152595.6015420546755195)", - "surface": 12280000, - "canton": null, - "numero_insee": "01154" - } - }, - { - "pk": 7924, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "EVOSGES", - "center": "POINT (845264.8991967691108584 2112076.7048098561353981)", - "surface": 11950000, - "canton": null, - "numero_insee": "01155" - } - }, - { - "pk": 31631, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FARAMANS", - "center": "POINT (816299.1854118161136284 2104922.0875243679620326)", - "surface": 11200000, - "canton": null, - "numero_insee": "01156" - } - }, - { - "pk": 33851, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FAREINS", - "center": "POINT (787775.6487012286670506 2116289.0837615407072008)", - "surface": 8300000, - "canton": null, - "numero_insee": "01157" - } - }, - { - "pk": 35193, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FARGES", - "center": "POINT (875089.1121125603094697 2135754.4789164829999208)", - "surface": 14270000, - "canton": null, - "numero_insee": "01158" - } - }, - { - "pk": 15206, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FEILLENS", - "center": "POINT (796082.0113925616024062 2151592.0879829488694668)", - "surface": 14870000, - "canton": null, - "numero_insee": "01159" - } - }, - { - "pk": 8099, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FERNEY-VOLTAIRE", - "center": "POINT (890615.1142820876557380 2145997.3209589743055403)", - "surface": 4780000, - "canton": null, - "numero_insee": "01160" - } - }, - { - "pk": 24572, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FLAXIEU", - "center": "POINT (864722.4786773617379367 2095828.4282805447001010)", - "surface": 2940000, - "canton": null, - "numero_insee": "01162" - } - }, - { - "pk": 22449, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FOISSIAT", - "center": "POINT (819055.5745051858248189 2157093.3061751918867230)", - "surface": 40210000, - "canton": null, - "numero_insee": "01163" - } - }, - { - "pk": 31780, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FRANCHELEINS", - "center": "POINT (791528.4616592542733997 2122226.5644413544796407)", - "surface": 13610000, - "canton": null, - "numero_insee": "01165" - } - }, - { - "pk": 9722, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "FRANS", - "center": "POINT (789202.4737677373923361 2113298.4872477231547236)", - "surface": 8090000, - "canton": null, - "numero_insee": "01166" - } - }, - { - "pk": 10381, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GARNERANS", - "center": "POINT (792195.8073001175653189 2137846.5229598698206246)", - "surface": 8610000, - "canton": null, - "numero_insee": "01167" - } - }, - { - "pk": 34072, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GENOUILLEUX", - "center": "POINT (789783.4424175808671862 2127316.3468248513527215)", - "surface": 4090000, - "canton": null, - "numero_insee": "01169" - } - }, - { - "pk": 31355, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "BEARD-GEOVREISSIAT", - "center": "POINT (848051.8764512918423861 2137223.7106812275014818)", - "surface": 4670000, - "canton": null, - "numero_insee": "01170" - } - }, - { - "pk": 33071, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GEOVREISSET", - "center": "POINT (852496.3506595911458135 2144168.1270386143587530)", - "surface": 3270000, - "canton": null, - "numero_insee": "01171" - } - }, - { - "pk": 23203, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GERMAGNAT", - "center": "POINT (839736.8658856409601867 2149763.7838000999763608)", - "surface": 9390000, - "canton": null, - "numero_insee": "01172" - } - }, - { - "pk": 16500, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GEX", - "center": "POINT (885421.2453441553516313 2156361.9605674990452826)", - "surface": 31860000, - "canton": null, - "numero_insee": "01173" - } - }, - { - "pk": 25093, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GIRON", - "center": "POINT (865530.3903581609483808 2141577.6517307008616626)", - "surface": 9380000, - "canton": null, - "numero_insee": "01174" - } - }, - { - "pk": 35892, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GORREVOD", - "center": "POINT (800909.9223950227024034 2160541.3037743354216218)", - "surface": 6860000, - "canton": null, - "numero_insee": "01175" - } - }, - { - "pk": 23648, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LE GRAND-ABERGEMENT", - "center": "POINT (858957.2071331385523081 2126107.0995977269485593)", - "surface": 31800000, - "canton": null, - "numero_insee": "01176" - } - }, - { - "pk": 37337, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GRAND-CORENT", - "center": "POINT (838830.4471596175571904 2138746.0574860377237201)", - "surface": 7020000, - "canton": null, - "numero_insee": "01177" - } - }, - { - "pk": 5251, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GRIEGES", - "center": "POINT (793349.7958170715719461 2143361.3619100200012326)", - "surface": 14700000, - "canton": null, - "numero_insee": "01179" - } - }, - { - "pk": 31341, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GRILLY", - "center": "POINT (890638.4595282328082249 2154905.5507659278810024)", - "surface": 7500000, - "canton": null, - "numero_insee": "01180" - } - }, - { - "pk": 30489, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GROISSIAT", - "center": "POINT (852520.4110032340977341 2141365.7956024846062064)", - "surface": 6190000, - "canton": null, - "numero_insee": "01181" - } - }, - { - "pk": 9511, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GROSLEE", - "center": "POINT (851800.5377608336275443 2085307.6070402767509222)", - "surface": 7220000, - "canton": null, - "numero_insee": "01182" - } - }, - { - "pk": 7998, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "GUEREINS", - "center": "POINT (788995.5844956946093589 2125808.2455238904803991)", - "surface": 4410000, - "canton": null, - "numero_insee": "01183" - } - }, - { - "pk": 27551, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "HAUTECOURT-ROMANECHE", - "center": "POINT (838774.1336923902854323 2133640.9288320275954902)", - "surface": 21360000, - "canton": null, - "numero_insee": "01184" - } - }, - { - "pk": 25816, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "HOSTIAZ", - "center": "POINT (848522.6081422020215541 2105698.6934968824498355)", - "surface": 10250000, - "canton": null, - "numero_insee": "01186" - } - }, - { - "pk": 6576, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "HOTONNES", - "center": "POINT (860510.0666613032808527 2120114.9100055694580078)", - "surface": 28620000, - "canton": null, - "numero_insee": "01187" - } - }, - { - "pk": 34922, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ILLIAT", - "center": "POINT (796924.5292603700654581 2134984.2769122626632452)", - "surface": 20440000, - "canton": null, - "numero_insee": "01188" - } - }, - { - "pk": 16999, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "INJOUX-GENISSIAT", - "center": "POINT (864794.7980412454344332 2122353.7590201743878424)", - "surface": 29550000, - "canton": null, - "numero_insee": "01189" - } - }, - { - "pk": 26311, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "INNIMOND", - "center": "POINT (851633.4398261744063348 2093113.5589099810458720)", - "surface": 13250000, - "canton": null, - "numero_insee": "01190" - } - }, - { - "pk": 31767, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "IZENAVE", - "center": "POINT (846695.7615256443386897 2120296.5778789417818189)", - "surface": 13070000, - "canton": null, - "numero_insee": "01191" - } - }, - { - "pk": 28985, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "IZERNORE", - "center": "POINT (848825.9165596298407763 2140333.1728476467542350)", - "surface": 21290000, - "canton": null, - "numero_insee": "01192" - } - }, - { - "pk": 7751, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "IZIEU", - "center": "POINT (857267.1537119096610695 2078147.6813575692940503)", - "surface": 7740000, - "canton": null, - "numero_insee": "01193" - } - }, - { - "pk": 30856, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "JASSANS-RIOTTIER", - "center": "POINT (787716.5708985452074558 2111484.1336383535526693)", - "surface": 5020000, - "canton": null, - "numero_insee": "01194" - } - }, - { - "pk": 15403, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "JAYAT", - "center": "POINT (813663.9869134603068233 2155545.8188807754777372)", - "surface": 16270000, - "canton": null, - "numero_insee": "01196" - } - }, - { - "pk": 8480, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "JOURNANS", - "center": "POINT (831483.4457216756418347 2131776.7864007274620235)", - "surface": 2410000, - "canton": null, - "numero_insee": "01197" - } - }, - { - "pk": 10975, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "JOYEUX", - "center": "POINT (814360.7282702026423067 2109209.5093613266944885)", - "surface": 16560000, - "canton": null, - "numero_insee": "01198" - } - }, - { - "pk": 18329, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "JUJURIEUX", - "center": "POINT (837779.6197923959698528 2121221.0235011023469269)", - "surface": 15480000, - "canton": null, - "numero_insee": "01199" - } - }, - { - "pk": 30498, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LABALME", - "center": "POINT (844042.0360604354646057 2126279.3351306160911918)", - "surface": 8840000, - "canton": null, - "numero_insee": "01200" - } - }, - { - "pk": 18505, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LAGNIEU", - "center": "POINT (832126.5065212694462389 2103456.1259005283936858)", - "surface": 27330000, - "canton": null, - "numero_insee": "01202" - } - }, - { - "pk": 18549, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LAIZ", - "center": "POINT (797567.8229761351831257 2141695.8562248162925243)", - "surface": 10290000, - "canton": null, - "numero_insee": "01203" - } - }, - { - "pk": 34964, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LALLEYRIAT", - "center": "POINT (861098.8727110050385818 2133131.9158298107795417)", - "surface": 15200000, - "canton": null, - "numero_insee": "01204" - } - }, - { - "pk": 26636, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LANCRANS", - "center": "POINT (870618.9042556410422549 2131812.4659455716609955)", - "surface": 9670000, - "canton": null, - "numero_insee": "01205" - } - }, - { - "pk": 33336, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LANTENAY", - "center": "POINT (847881.3208824105095118 2122108.4121197992935777)", - "surface": 6480000, - "canton": null, - "numero_insee": "01206" - } - }, - { - "pk": 36970, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LAPEYROUSE", - "center": "POINT (804920.1568323408719152 2112932.2995873880572617)", - "surface": 20130000, - "canton": null, - "numero_insee": "01207" - } - }, - { - "pk": 3753, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LAVOURS", - "center": "POINT (866924.3894341830164194 2095847.3524773442186415)", - "surface": 6150000, - "canton": null, - "numero_insee": "01208" - } - }, - { - "pk": 11021, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LEAZ", - "center": "POINT (873543.7269262815825641 2129235.2374364188872278)", - "surface": 11410000, - "canton": null, - "numero_insee": "01209" - } - }, - { - "pk": 36849, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LELEX", - "center": "POINT (876676.0060751033015549 2149080.2029892648570240)", - "surface": 17700000, - "canton": null, - "numero_insee": "01210" - } - }, - { - "pk": 23917, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LENT", - "center": "POINT (821406.6627558229956776 2127987.0854139393195510)", - "surface": 31630000, - "canton": null, - "numero_insee": "01211" - } - }, - { - "pk": 27160, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LESCHEROUX", - "center": "POINT (816322.5211214997107163 2160673.1264048744924366)", - "surface": 20110000, - "canton": null, - "numero_insee": "01212" - } - }, - { - "pk": 10582, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LEYMENT", - "center": "POINT (829391.5956755804363638 2107236.2417732221074402)", - "surface": 14300000, - "canton": null, - "numero_insee": "01213" - } - }, - { - "pk": 29699, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LEYSSARD", - "center": "POINT (842374.5795895345509052 2133972.0818956471048295)", - "surface": 9340000, - "canton": null, - "numero_insee": "01214" - } - }, - { - "pk": 34239, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LHOPITAL", - "center": "POINT (865119.9983885015826672 2119453.8758446592837572)", - "surface": 3690000, - "canton": null, - "numero_insee": "01215" - } - }, - { - "pk": 26504, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LHUIS", - "center": "POINT (848877.3836893425323069 2087684.7965601603500545)", - "surface": 24610000, - "canton": null, - "numero_insee": "01216" - } - }, - { - "pk": 27768, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LOCHIEU", - "center": "POINT (863908.3418533380609006 2109033.8062090235762298)", - "surface": 7050000, - "canton": null, - "numero_insee": "01218" - } - }, - { - "pk": 30015, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LOMPNAS", - "center": "POINT (847613.6415797257795930 2094980.8524217428639531)", - "surface": 12620000, - "canton": null, - "numero_insee": "01219" - } - }, - { - "pk": 23237, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LOMPNIEU", - "center": "POINT (857467.6042513869469985 2113082.2897519590333104)", - "surface": 11350000, - "canton": null, - "numero_insee": "01221" - } - }, - { - "pk": 31931, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LOYETTES", - "center": "POINT (823916.1965993680059910 2092075.1782972714863718)", - "surface": 21320000, - "canton": null, - "numero_insee": "01224" - } - }, - { - "pk": 37353, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MAGNIEU", - "center": "POINT (862655.9126162367174402 2091706.8005365026183426)", - "surface": 6250000, - "canton": null, - "numero_insee": "01227" - } - }, - { - "pk": 19131, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MAILLAT", - "center": "POINT (846617.6097204961115494 2129404.2776422714814544)", - "surface": 11570000, - "canton": null, - "numero_insee": "01228" - } - }, - { - "pk": 10668, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MALAFRETAZ", - "center": "POINT (816100.2217811882728711 2151563.0793382977135479)", - "surface": 9310000, - "canton": null, - "numero_insee": "01229" - } - }, - { - "pk": 10413, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MANTENAY-MONTLIN", - "center": "POINT (812802.5312471607467160 2162644.7856172239407897)", - "surface": 10820000, - "canton": null, - "numero_insee": "01230" - } - }, - { - "pk": 10169, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MANZIAT", - "center": "POINT (797355.7197429442312568 2154805.8392795012332499)", - "surface": 12690000, - "canton": null, - "numero_insee": "01231" - } - }, - { - "pk": 16598, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MARBOZ", - "center": "POINT (823691.9220947572030127 2153329.6006132103502750)", - "surface": 40370000, - "canton": null, - "numero_insee": "01232" - } - }, - { - "pk": 30073, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MARCHAMP", - "center": "POINT (849849.9119184332666919 2090996.2669559274800122)", - "surface": 13250000, - "canton": null, - "numero_insee": "01233" - } - }, - { - "pk": 14043, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MARIGNIEU", - "center": "POINT (862530.8872965925838798 2094608.4650141221936792)", - "surface": 3540000, - "canton": null, - "numero_insee": "01234" - } - }, - { - "pk": 16980, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MARLIEUX", - "center": "POINT (811759.2718967857072130 2120797.9967408878728747)", - "surface": 17190000, - "canton": null, - "numero_insee": "01235" - } - }, - { - "pk": 5505, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MARSONNAS", - "center": "POINT (809885.6893627002136782 2152610.8953645233996212)", - "surface": 18340000, - "canton": null, - "numero_insee": "01236" - } - }, - { - "pk": 27094, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MARTIGNAT", - "center": "POINT (852842.1440183286322281 2138866.2868255544453859)", - "surface": 13030000, - "canton": null, - "numero_insee": "01237" - } - }, - { - "pk": 5854, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MASSIEUX", - "center": "POINT (793185.2927494260948151 2104023.8427863125689328)", - "surface": 3200000, - "canton": null, - "numero_insee": "01238" - } - }, - { - "pk": 35223, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MASSIGNIEU-DE-RIVES", - "center": "POINT (866375.4816923246253282 2089836.9660309564787894)", - "surface": 9100000, - "canton": null, - "numero_insee": "01239" - } - }, - { - "pk": 22642, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MATAFELON-GRANGES", - "center": "POINT (846787.3166705416515470 2144619.5749477371573448)", - "surface": 21750000, - "canton": null, - "numero_insee": "01240" - } - }, - { - "pk": 7385, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MERIGNAT", - "center": "POINT (840167.0652945040492341 2122943.0625165370292962)", - "surface": 3120000, - "canton": null, - "numero_insee": "01242" - } - }, - { - "pk": 26711, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MESSIMY-SUR-SAONE", - "center": "POINT (787450.6183334883535281 2119188.9868760197423398)", - "surface": 5870000, - "canton": null, - "numero_insee": "01243" - } - }, - { - "pk": 27241, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MEXIMIEUX", - "center": "POINT (822407.0058448587078601 2104674.0879931119270623)", - "surface": 13540000, - "canton": null, - "numero_insee": "01244" - } - }, - { - "pk": 20836, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MEZERIAT", - "center": "POINT (808979.0240531548624858 2141593.2223302810452878)", - "surface": 19220000, - "canton": null, - "numero_insee": "01246" - } - }, - { - "pk": 22351, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MIJOUX", - "center": "POINT (882404.9901996096596122 2157937.4247970096766949)", - "surface": 21830000, - "canton": null, - "numero_insee": "01247" - } - }, - { - "pk": 7701, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MIONNAY", - "center": "POINT (800703.7232281819451600 2102686.7619864111766219)", - "surface": 20090000, - "canton": null, - "numero_insee": "01248" - } - }, - { - "pk": 19807, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MIRIBEL", - "center": "POINT (802252.9183671977370977 2097094.7530537813436240)", - "surface": 24390000, - "canton": null, - "numero_insee": "01249" - } - }, - { - "pk": 8303, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MISERIEUX", - "center": "POINT (791620.7604323746636510 2111417.3722592229023576)", - "surface": 7470000, - "canton": null, - "numero_insee": "01250" - } - }, - { - "pk": 10383, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MOGNENEINS", - "center": "POINT (791761.1983909594127908 2130135.7961905291303992)", - "surface": 8500000, - "canton": null, - "numero_insee": "01252" - } - }, - { - "pk": 16471, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTAGNAT", - "center": "POINT (827160.1126260471064597 2134041.8444920582696795)", - "surface": 13840000, - "canton": null, - "numero_insee": "01254" - } - }, - { - "pk": 10090, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTAGNIEU", - "center": "POINT (843021.6641045728465542 2093540.1380753179546446)", - "surface": 6190000, - "canton": null, - "numero_insee": "01255" - } - }, - { - "pk": 8864, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTANGES", - "center": "POINT (866577.6834796139737591 2136181.7407842483371496)", - "surface": 13710000, - "canton": null, - "numero_insee": "01257" - } - }, - { - "pk": 23714, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTCEAUX", - "center": "POINT (790806.5044656048994511 2124722.6974454605951905)", - "surface": 10040000, - "canton": null, - "numero_insee": "01258" - } - }, - { - "pk": 8758, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTCET", - "center": "POINT (814003.7398975553223863 2139234.0303872055374086)", - "surface": 6550000, - "canton": null, - "numero_insee": "01259" - } - }, - { - "pk": 12040, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LE MONTELLIER", - "center": "POINT (811979.2183828046545386 2106786.8999841483309865)", - "surface": 15340000, - "canton": null, - "numero_insee": "01260" - } - }, - { - "pk": 6304, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTHIEUX", - "center": "POINT (802140.8609299993840978 2110206.0358244692906737)", - "surface": 10780000, - "canton": null, - "numero_insee": "01261" - } - }, - { - "pk": 16225, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTLUEL", - "center": "POINT (808212.7558175236918032 2102450.6710382383316755)", - "surface": 40090000, - "canton": null, - "numero_insee": "01262" - } - }, - { - "pk": 9646, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTMERLE-SUR-SAONE", - "center": "POINT (787414.7372567795682698 2123392.5471040131524205)", - "surface": 4060000, - "canton": null, - "numero_insee": "01263" - } - }, - { - "pk": 3539, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTRACOL", - "center": "POINT (814535.8438279251568019 2135535.2193712443113327)", - "surface": 14660000, - "canton": null, - "numero_insee": "01264" - } - }, - { - "pk": 35454, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MONTREAL-LA-CLUSE", - "center": "POINT (851463.3135164094856009 2136252.0820304951630533)", - "surface": 12460000, - "canton": null, - "numero_insee": "01265" - } - }, - { - "pk": 25134, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "NURIEUX-VOLOGNAT", - "center": "POINT (845257.2622237771283835 2136298.9098291723057628)", - "surface": 19460000, - "canton": null, - "numero_insee": "01267" - } - }, - { - "pk": 8625, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "MURS-ET-GELIGNIEUX", - "center": "POINT (858980.6873473466839641 2076761.0588634051382542)", - "surface": 6060000, - "canton": null, - "numero_insee": "01268" - } - }, - { - "pk": 13995, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "NANTUA", - "center": "POINT (852989.4899995995219797 2133362.5386572754941881)", - "surface": 14430000, - "canton": null, - "numero_insee": "01269" - } - }, - { - "pk": 9508, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "NATTAGES", - "center": "POINT (865606.6089245312614366 2086126.8489957079291344)", - "surface": 10210000, - "canton": null, - "numero_insee": "01271" - } - }, - { - "pk": 23914, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "NEUVILLE-SUR-AIN", - "center": "POINT (834738.4681489160284400 2125699.0941971847787499)", - "surface": 19910000, - "canton": null, - "numero_insee": "01273" - } - }, - { - "pk": 6906, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LES NEYROLLES", - "center": "POINT (854909.1341868954477832 2131277.1015908122062683)", - "surface": 9560000, - "canton": null, - "numero_insee": "01274" - } - }, - { - "pk": 13999, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "NEYRON", - "center": "POINT (801577.1168360654264688 2094186.2502424749545753)", - "surface": 5310000, - "canton": null, - "numero_insee": "01275" - } - }, - { - "pk": 31630, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "NIEVROZ", - "center": "POINT (811479.7219582785619423 2094971.5734205835033208)", - "surface": 10500000, - "canton": null, - "numero_insee": "01276" - } - }, - { - "pk": 22851, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "NIVOLLET-MONTGRIFFON", - "center": "POINT (841729.2844279846176505 2115849.9020540080964565)", - "surface": 8440000, - "canton": null, - "numero_insee": "01277" - } - }, - { - "pk": 19610, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ONCIEU", - "center": "POINT (842863.7039271419635043 2111956.0131923737935722)", - "surface": 7550000, - "canton": null, - "numero_insee": "01279" - } - }, - { - "pk": 37348, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ORDONNAZ", - "center": "POINT (848791.4935737414052710 2097693.5016696178354323)", - "surface": 14730000, - "canton": null, - "numero_insee": "01280" - } - }, - { - "pk": 10015, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ORNEX", - "center": "POINT (889490.0604885433567688 2148790.1614890522323549)", - "surface": 5660000, - "canton": null, - "numero_insee": "01281" - } - }, - { - "pk": 5435, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "OUTRIAZ", - "center": "POINT (849068.5949126682244241 2123720.0756738795898855)", - "surface": 5880000, - "canton": null, - "numero_insee": "01282" - } - }, - { - "pk": 35145, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "OYONNAX", - "center": "POINT (855588.6141536952927709 2145395.7664329893887043)", - "surface": 35910000, - "canton": null, - "numero_insee": "01283" - } - }, - { - "pk": 32218, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "OZAN", - "center": "POINT (798435.2441311947768554 2157317.2995791658759117)", - "surface": 6540000, - "canton": null, - "numero_insee": "01284" - } - }, - { - "pk": 11007, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PARCIEUX", - "center": "POINT (793176.7455512647284195 2105024.7032535332255065)", - "surface": 3150000, - "canton": null, - "numero_insee": "01285" - } - }, - { - "pk": 13364, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PARVES", - "center": "POINT (864586.8114033935125917 2088320.1729125487618148)", - "surface": 5510000, - "canton": null, - "numero_insee": "01286" - } - }, - { - "pk": 16936, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PERON", - "center": "POINT (876466.1751194804674014 2138568.8786879624240100)", - "surface": 26000000, - "canton": null, - "numero_insee": "01288" - } - }, - { - "pk": 17386, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PERONNAS", - "center": "POINT (822455.3139062211848795 2134101.6412638677284122)", - "surface": 17840000, - "canton": null, - "numero_insee": "01289" - } - }, - { - "pk": 36108, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PEROUGES", - "center": "POINT (820630.3032917944947258 2101756.1647869185544550)", - "surface": 19380000, - "canton": null, - "numero_insee": "01290" - } - }, - { - "pk": 15810, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PERREX", - "center": "POINT (803371.7950262773083523 2141845.5489450688473880)", - "surface": 11160000, - "canton": null, - "numero_insee": "01291" - } - }, - { - "pk": 13051, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LE PETIT-ABERGEMENT", - "center": "POINT (856273.8343712927307934 2123882.0274320100434124)", - "surface": 26880000, - "canton": null, - "numero_insee": "01292" - } - }, - { - "pk": 26296, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PEYRIAT", - "center": "POINT (844688.5310544951353222 2132590.6540183504112065)", - "surface": 6070000, - "canton": null, - "numero_insee": "01293" - } - }, - { - "pk": 30175, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PEYRIEU", - "center": "POINT (860349.2531941336346790 2080576.4435141093563288)", - "surface": 14060000, - "canton": null, - "numero_insee": "01294" - } - }, - { - "pk": 27562, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PEYZIEUX-SUR-SAONE", - "center": "POINT (792081.9629125683568418 2127736.3395216679200530)", - "surface": 8720000, - "canton": null, - "numero_insee": "01295" - } - }, - { - "pk": 16470, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PIRAJOUX", - "center": "POINT (825852.5844891892047599 2158152.4056516396813095)", - "surface": 13020000, - "canton": null, - "numero_insee": "01296" - } - }, - { - "pk": 6163, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PIZAY", - "center": "POINT (813513.9010213713627309 2102896.3867574827745557)", - "surface": 11180000, - "canton": null, - "numero_insee": "01297" - } - }, - { - "pk": 20951, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PLAGNE", - "center": "POINT (860860.8683669478632510 2137533.8854537126608193)", - "surface": 6060000, - "canton": null, - "numero_insee": "01298" - } - }, - { - "pk": 7103, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LE PLANTAY", - "center": "POINT (812990.2586006071651354 2117305.2968130977824330)", - "surface": 20650000, - "canton": null, - "numero_insee": "01299" - } - }, - { - "pk": 28585, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LE POIZAT", - "center": "POINT (857802.1179811252513900 2132402.9540979182347655)", - "surface": 17960000, - "canton": null, - "numero_insee": "01300" - } - }, - { - "pk": 14790, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "POLLIAT", - "center": "POINT (815979.7134342447388917 2142253.6593071413226426)", - "surface": 20150000, - "canton": null, - "numero_insee": "01301" - } - }, - { - "pk": 5674, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "POLLIEU", - "center": "POINT (865137.4484004070982337 2094130.3911714467685670)", - "surface": 3620000, - "canton": null, - "numero_insee": "01302" - } - }, - { - "pk": 14626, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PONCIN", - "center": "POINT (838142.2000676420284435 2125628.1829486922360957)", - "surface": 19800000, - "canton": null, - "numero_insee": "01303" - } - }, - { - "pk": 32634, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PONT-D'AIN", - "center": "POINT (832872.8882782806176692 2121479.2388183143921196)", - "surface": 11220000, - "canton": null, - "numero_insee": "01304" - } - }, - { - "pk": 3459, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PONT-DE-VAUX", - "center": "POINT (799082.7919924154412001 2163528.3583511612378061)", - "surface": 7690000, - "canton": null, - "numero_insee": "01305" - } - }, - { - "pk": 33828, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PORT", - "center": "POINT (850085.3364840028807521 2133537.7897526631131768)", - "surface": 4320000, - "canton": null, - "numero_insee": "01307" - } - }, - { - "pk": 36611, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "POUGNY", - "center": "POINT (879111.4150133831426501 2133587.0780044291168451)", - "surface": 7680000, - "canton": null, - "numero_insee": "01308" - } - }, - { - "pk": 32361, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "POUILLAT", - "center": "POINT (837620.5400849874131382 2151447.1650955383665860)", - "surface": 6380000, - "canton": null, - "numero_insee": "01309" - } - }, - { - "pk": 30742, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PREMEYZEL", - "center": "POINT (857543.3514412514632568 2080952.7256343546323478)", - "surface": 7620000, - "canton": null, - "numero_insee": "01310" - } - }, - { - "pk": 6113, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PREMILLIEU", - "center": "POINT (850552.6783489311346784 2102413.0286973258480430)", - "surface": 8490000, - "canton": null, - "numero_insee": "01311" - } - }, - { - "pk": 35206, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PRESSIAT", - "center": "POINT (834321.2471574039664119 2151018.5188414887525141)", - "surface": 5970000, - "canton": null, - "numero_insee": "01312" - } - }, - { - "pk": 14524, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PREVESSIN-MOENS", - "center": "POINT (887807.6150853723520413 2146573.6807415708899498)", - "surface": 12060000, - "canton": null, - "numero_insee": "01313" - } - }, - { - "pk": 24367, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PRIAY", - "center": "POINT (828202.3397121597081423 2117535.6184053868055344)", - "surface": 15710000, - "canton": null, - "numero_insee": "01314" - } - }, - { - "pk": 32458, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "PUGIEU", - "center": "POINT (857412.7008550511673093 2096166.0078552449122071)", - "surface": 4860000, - "canton": null, - "numero_insee": "01316" - } - }, - { - "pk": 14279, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "RAMASSE", - "center": "POINT (832942.6746735280612484 2136693.7619611835107207)", - "surface": 9630000, - "canton": null, - "numero_insee": "01317" - } - }, - { - "pk": 35397, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "RANCE", - "center": "POINT (795731.9611564273945987 2110551.6477121892385185)", - "surface": 9640000, - "canton": null, - "numero_insee": "01318" - } - }, - { - "pk": 23457, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "RELEVANT", - "center": "POINT (801424.8722694383468479 2123712.3946217605844140)", - "surface": 12280000, - "canton": null, - "numero_insee": "01319" - } - }, - { - "pk": 37820, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "REPLONGES", - "center": "POINT (795408.7929115314036608 2148383.4598844400607049)", - "surface": 16640000, - "canton": null, - "numero_insee": "01320" - } - }, - { - "pk": 29487, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "REVONNAS", - "center": "POINT (831469.7229072105837986 2133378.1302787396125495)", - "surface": 7750000, - "canton": null, - "numero_insee": "01321" - } - }, - { - "pk": 24884, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "REYRIEUX", - "center": "POINT (793159.6511250864714384 2107026.4219158687628806)", - "surface": 15620000, - "canton": null, - "numero_insee": "01322" - } - }, - { - "pk": 11898, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "REYSSOUZE", - "center": "POINT (797895.4959821328520775 2161916.7895778245292604)", - "surface": 9550000, - "canton": null, - "numero_insee": "01323" - } - }, - { - "pk": 15067, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "RIGNIEUX-LE-FRANC", - "center": "POINT (819561.7593774496344849 2109654.3916833926923573)", - "surface": 15120000, - "canton": null, - "numero_insee": "01325" - } - }, - { - "pk": 4520, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ROMANS", - "center": "POINT (807390.5803295221412554 2128367.6151026366278529)", - "surface": 22100000, - "canton": null, - "numero_insee": "01328" - } - }, - { - "pk": 8833, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "ROSSILLON", - "center": "POINT (853392.0435935818823054 2098133.3661636346951127)", - "surface": 8070000, - "canton": null, - "numero_insee": "01329" - } - }, - { - "pk": 6996, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "RUFFIEU", - "center": "POINT (856734.3425596092129126 2116879.5173576138913631)", - "surface": 13940000, - "canton": null, - "numero_insee": "01330" - } - }, - { - "pk": 8479, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ALBAN", - "center": "POINT (841035.2093041910557076 2126754.0024471450597048)", - "surface": 8170000, - "canton": null, - "numero_insee": "01331" - } - }, - { - "pk": 11268, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ANDRE-DE-BAGE", - "center": "POINT (798519.0540178058436140 2147509.2225473676808178)", - "surface": 2730000, - "canton": null, - "numero_insee": "01332" - } - }, - { - "pk": 30096, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ANDRE-DE-CORCY", - "center": "POINT (802874.8232190440176055 2106308.6784233143553138)", - "surface": 21000000, - "canton": null, - "numero_insee": "01333" - } - }, - { - "pk": 33350, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ANDRE-D'HUIRIAT", - "center": "POINT (798699.5256193636450917 2138102.2615630207583308)", - "surface": 9030000, - "canton": null, - "numero_insee": "01334" - } - }, - { - "pk": 28841, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ANDRE-LE-BOUCHOUX", - "center": "POINT (812003.8745732728857547 2127306.0642663873732090)", - "surface": 9290000, - "canton": null, - "numero_insee": "01335" - } - }, - { - "pk": 27360, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ANDRE-SUR-VIEUX-JONC", - "center": "POINT (816572.6367798802675679 2131448.9092214084230363)", - "surface": 24510000, - "canton": null, - "numero_insee": "01336" - } - }, - { - "pk": 22290, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-BENIGNE", - "center": "POINT (800974.9322726399404928 2164645.5066793924197555)", - "surface": 16540000, - "canton": null, - "numero_insee": "01337" - } - }, - { - "pk": 14826, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-BENOIT", - "center": "POINT (852932.4322588314535096 2081713.8985924466978759)", - "surface": 21380000, - "canton": null, - "numero_insee": "01338" - } - }, - { - "pk": 9209, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-BERNARD", - "center": "POINT (786442.7942460066406056 2108270.2879556701518595)", - "surface": 3150000, - "canton": null, - "numero_insee": "01339" - } - }, - { - "pk": 29855, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-BOIS", - "center": "POINT (856126.6504326391732320 2082742.2749086432158947)", - "surface": 9470000, - "canton": null, - "numero_insee": "01340" - } - }, - { - "pk": 13905, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-CHAMP", - "center": "POINT (863949.3052992427255958 2092618.7645549343433231)", - "surface": 5170000, - "canton": null, - "numero_insee": "01341" - } - }, - { - "pk": 31860, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINTE-CROIX", - "center": "POINT (810409.5167297534644604 2103070.0188913783058524)", - "surface": 10590000, - "canton": null, - "numero_insee": "01342" - } - }, - { - "pk": 12081, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-CYR-SUR-MENTHON", - "center": "POINT (802643.8362384315114468 2145042.2197423321194947)", - "surface": 17000000, - "canton": null, - "numero_insee": "01343" - } - }, - { - "pk": 12073, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-DENIS-EN-BUGEY", - "center": "POINT (831471.9591256934218109 2109756.3956266748718917)", - "surface": 2600000, - "canton": null, - "numero_insee": "01345" - } - }, - { - "pk": 18926, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-DIDIER-D'AUSSIAT", - "center": "POINT (809517.8892030064016581 2148804.3335187444463372)", - "surface": 15130000, - "canton": null, - "numero_insee": "01346" - } - }, - { - "pk": 11278, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-DIDIER-DE-FORMANS", - "center": "POINT (789138.2741704769432545 2109094.0403414927423000)", - "surface": 6630000, - "canton": null, - "numero_insee": "01347" - } - }, - { - "pk": 18085, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-DIDIER-SUR-CHALARONNE", - "center": "POINT (791323.2584480972727761 2134536.0707798269577324)", - "surface": 25130000, - "canton": null, - "numero_insee": "01348" - } - }, - { - "pk": 9556, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ELOI", - "center": "POINT (818279.4909944677492604 2107441.3675651610828936)", - "surface": 14080000, - "canton": null, - "numero_insee": "01349" - } - }, - { - "pk": 6552, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ETIENNE-DU-BOIS", - "center": "POINT (827058.9442024453310296 2145851.6883915136568248)", - "surface": 28530000, - "canton": null, - "numero_insee": "01350" - } - }, - { - "pk": 15251, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ETIENNE-SUR-CHALARONNE", - "center": "POINT (795361.6612963587976992 2130466.8209495497867465)", - "surface": 21050000, - "canton": null, - "numero_insee": "01351" - } - }, - { - "pk": 14794, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-ETIENNE-SUR-REYSSOUZE", - "center": "POINT (805224.5644316247198731 2159277.0290072015486658)", - "surface": 13930000, - "canton": null, - "numero_insee": "01352" - } - }, - { - "pk": 5217, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINTE-EUPHEMIE", - "center": "POINT (790429.1339325328590348 2110306.1762582762166858)", - "surface": 4620000, - "canton": null, - "numero_insee": "01353" - } - }, - { - "pk": 5712, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-GENIS-POUILLY", - "center": "POINT (885109.6812981138937175 2146049.9942818200215697)", - "surface": 9840000, - "canton": null, - "numero_insee": "01354" - } - }, - { - "pk": 10289, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-GEORGES-SUR-RENON", - "center": "POINT (808109.9997488304506987 2126171.7504832940176129)", - "surface": 5640000, - "canton": null, - "numero_insee": "01356" - } - }, - { - "pk": 35631, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-GERMAIN-DE-JOUX", - "center": "POINT (863167.9536690141540021 2136953.1633606152608991)", - "surface": 11390000, - "canton": null, - "numero_insee": "01357" - } - }, - { - "pk": 7231, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-GERMAIN-LES-PAROISSES", - "center": "POINT (855055.3048267697449774 2090940.8566030054353178)", - "surface": 16380000, - "canton": null, - "numero_insee": "01358" - } - }, - { - "pk": 17182, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-GERMAIN-SUR-RENON", - "center": "POINT (810634.3685457140672952 2123590.9521867353469133)", - "surface": 16380000, - "canton": null, - "numero_insee": "01359" - } - }, - { - "pk": 6222, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JEAN-DE-GONVILLE", - "center": "POINT (878041.6764347043354064 2141585.1634615114890039)", - "surface": 12150000, - "canton": null, - "numero_insee": "01360" - } - }, - { - "pk": 15866, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JEAN-DE-NIOST", - "center": "POINT (823270.2545374622568488 2097374.6389652881771326)", - "surface": 14020000, - "canton": null, - "numero_insee": "01361" - } - }, - { - "pk": 12338, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JEAN-DE-THURIGNEUX", - "center": "POINT (798541.1988674121676013 2109774.9034962975420058)", - "surface": 16210000, - "canton": null, - "numero_insee": "01362" - } - }, - { - "pk": 3812, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JEAN-LE-VIEUX", - "center": "POINT (835698.4288846954004839 2118800.9655172619968653)", - "surface": 15170000, - "canton": null, - "numero_insee": "01363" - } - }, - { - "pk": 5577, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JEAN-SUR-REYSSOUZE", - "center": "POINT (809532.3667495357804000 2158813.4227929287590086)", - "surface": 27440000, - "canton": null, - "numero_insee": "01364" - } - }, - { - "pk": 4128, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JEAN-SUR-VEYLE", - "center": "POINT (799248.7120233383029699 2144112.3897363175638020)", - "surface": 11250000, - "canton": null, - "numero_insee": "01365" - } - }, - { - "pk": 28505, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINTE-JULIE", - "center": "POINT (828733.8647120054811239 2102225.9348396845161915)", - "surface": 11430000, - "canton": null, - "numero_insee": "01366" - } - }, - { - "pk": 18624, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JULIEN-SUR-REYSSOUZE", - "center": "POINT (812631.4820309584029019 2159240.2920080348849297)", - "surface": 7490000, - "canton": null, - "numero_insee": "01367" - } - }, - { - "pk": 15817, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JULIEN-SUR-VEYLE", - "center": "POINT (802313.6530246168840677 2136831.9672016468830407)", - "surface": 9860000, - "canton": null, - "numero_insee": "01368" - } - }, - { - "pk": 6456, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-JUST", - "center": "POINT (827437.2150896020466462 2136746.6783612389117479)", - "surface": 3410000, - "canton": null, - "numero_insee": "01369" - } - }, - { - "pk": 29060, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-LAURENT-SUR-SAONE", - "center": "POINT (792709.1238187819253653 2148060.1305024018511176)", - "surface": 530000, - "canton": null, - "numero_insee": "01370" - } - }, - { - "pk": 10617, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-MARCEL", - "center": "POINT (805655.8374484095256776 2108834.7800806728191674)", - "surface": 11680000, - "canton": null, - "numero_insee": "01371" - } - }, - { - "pk": 29502, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-MARTIN-DE-BAVEL", - "center": "POINT (859484.4336845803773031 2099687.0940327527932823)", - "surface": 8580000, - "canton": null, - "numero_insee": "01372" - } - }, - { - "pk": 25084, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-MARTIN-DU-FRENE", - "center": "POINT (849803.9840810933383182 2131333.3635326134972274)", - "surface": 19470000, - "canton": null, - "numero_insee": "01373" - } - }, - { - "pk": 3642, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-MARTIN-DU-MONT", - "center": "POINT (831021.6189693982014433 2127268.7080644275993109)", - "surface": 28060000, - "canton": null, - "numero_insee": "01374" - } - }, - { - "pk": 15993, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-MARTIN-LE-CHATEL", - "center": "POINT (814635.8104705690639094 2147246.6768638473004103)", - "surface": 12600000, - "canton": null, - "numero_insee": "01375" - } - }, - { - "pk": 24255, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-MAURICE-DE-BEYNOST", - "center": "POINT (805063.8998570161638781 2096117.8403731917496771)", - "surface": 6930000, - "canton": null, - "numero_insee": "01376" - } - }, - { - "pk": 34388, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-MAURICE-DE-REMENS", - "center": "POINT (827365.8727521962719038 2110021.4964119833894074)", - "surface": 10360000, - "canton": null, - "numero_insee": "01379" - } - }, - { - "pk": 17745, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-NIZIER-LE-DESERT", - "center": "POINT (817064.6253986334195361 2120743.2987870192155242)", - "surface": 24970000, - "canton": null, - "numero_insee": "01381" - } - }, - { - "pk": 31694, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINTE-OLIVE", - "center": "POINT (801191.3357467381283641 2115903.2061122627928853)", - "surface": 7420000, - "canton": null, - "numero_insee": "01382" - } - }, - { - "pk": 20889, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-PAUL-DE-VARAX", - "center": "POINT (815722.4120549457147717 2125536.2286848179064691)", - "surface": 25850000, - "canton": null, - "numero_insee": "01383" - } - }, - { - "pk": 21882, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-RAMBERT-EN-BUGEY", - "center": "POINT (840476.2413584353635088 2110233.9556100494228303)", - "surface": 28680000, - "canton": null, - "numero_insee": "01384" - } - }, - { - "pk": 10916, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-REMY", - "center": "POINT (818439.9661266017938033 2135468.5407978836447001)", - "surface": 7360000, - "canton": null, - "numero_insee": "01385" - } - }, - { - "pk": 35603, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-SORLIN-EN-BUGEY", - "center": "POINT (835833.9856857323320583 2102987.4334846418350935)", - "surface": 9060000, - "canton": null, - "numero_insee": "01386" - } - }, - { - "pk": 37336, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-SULPICE", - "center": "POINT (808203.9748676988529041 2150294.4454969707876444)", - "surface": 5140000, - "canton": null, - "numero_insee": "01387" - } - }, - { - "pk": 17173, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-TRIVIER-DE-COURTES", - "center": "POINT (809571.6677407269598916 2165920.0780899804085493)", - "surface": 16460000, - "canton": null, - "numero_insee": "01388" - } - }, - { - "pk": 21133, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAINT-VULBAS", - "center": "POINT (827890.5293464174028486 2095512.4204121700022370)", - "surface": 21580000, - "canton": null, - "numero_insee": "01390" - } - }, - { - "pk": 7093, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SALAVRE", - "center": "POINT (831576.9884240049868822 2155899.3952720132656395)", - "surface": 7790000, - "canton": null, - "numero_insee": "01391" - } - }, - { - "pk": 18897, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAMOGNAT", - "center": "POINT (850381.7172786373412237 2145651.3298841919749975)", - "surface": 14230000, - "canton": null, - "numero_insee": "01392" - } - }, - { - "pk": 3144, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SANDRANS", - "center": "POINT (804644.6920577244600281 2121738.0768399639055133)", - "surface": 29260000, - "canton": null, - "numero_insee": "01393" - } - }, - { - "pk": 22302, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAULT-BRENAZ", - "center": "POINT (838055.6195100899785757 2100704.3243503733538091)", - "surface": 5700000, - "canton": null, - "numero_insee": "01396" - } - }, - { - "pk": 26681, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAUVERNY", - "center": "POINT (890456.4011765561299399 2152802.0933456444181502)", - "surface": 1830000, - "canton": null, - "numero_insee": "01397" - } - }, - { - "pk": 4471, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SAVIGNEUX", - "center": "POINT (795203.3219348633429036 2113850.1936757308430970)", - "surface": 14870000, - "canton": null, - "numero_insee": "01398" - } - }, - { - "pk": 13347, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SEGNY", - "center": "POINT (887673.9143922841176391 2150476.0526380836963654)", - "surface": 3240000, - "canton": null, - "numero_insee": "01399" - } - }, - { - "pk": 22432, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SEILLONNAZ", - "center": "POINT (845724.8710615176241845 2093463.2323831769172102)", - "surface": 9690000, - "canton": null, - "numero_insee": "01400" - } - }, - { - "pk": 6790, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SERGY", - "center": "POINT (881400.5762407714501023 2146718.6948506031185389)", - "surface": 9760000, - "canton": null, - "numero_insee": "01401" - } - }, - { - "pk": 23643, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SERMOYER", - "center": "POINT (802731.9101676971185952 2169865.1326093086972833)", - "surface": 16820000, - "canton": null, - "numero_insee": "01402" - } - }, - { - "pk": 13436, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SERRIERES-DE-BRIORD", - "center": "POINT (841207.2236996742431074 2095025.9906538231298327)", - "surface": 8600000, - "canton": null, - "numero_insee": "01403" - } - }, - { - "pk": 26099, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SERRIERES-SUR-AIN", - "center": "POINT (840389.2101675998419523 2132053.3176706996746361)", - "surface": 8370000, - "canton": null, - "numero_insee": "01404" - } - }, - { - "pk": 4359, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SERVAS", - "center": "POINT (819484.4985269990283996 2130372.8270891970023513)", - "surface": 13020000, - "canton": null, - "numero_insee": "01405" - } - }, - { - "pk": 11175, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SERVIGNAT", - "center": "POINT (808896.7784677636809647 2162911.6401046742685139)", - "surface": 7920000, - "canton": null, - "numero_insee": "01406" - } - }, - { - "pk": 3744, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SEYSSEL", - "center": "POINT (870394.9899175355676562 2111291.6145705603994429)", - "surface": 2410000, - "canton": null, - "numero_insee": "01407" - } - }, - { - "pk": 37881, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SIMANDRE-SUR-SURAN", - "center": "POINT (837903.9498635611962527 2141740.8362807016819715)", - "surface": 16310000, - "canton": null, - "numero_insee": "01408" - } - }, - { - "pk": 37520, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SONGIEU", - "center": "POINT (861758.3831913077738136 2114620.5418687611818314)", - "surface": 20380000, - "canton": null, - "numero_insee": "01409" - } - }, - { - "pk": 12892, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SONTHONNAX-LA-MONTAGNE", - "center": "POINT (844418.8106637089513242 2140695.7173702609725296)", - "surface": 14240000, - "canton": null, - "numero_insee": "01410" - } - }, - { - "pk": 21107, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SOUCLIN", - "center": "POINT (840044.4740622723475099 2102222.7834860370494425)", - "surface": 13290000, - "canton": null, - "numero_insee": "01411" - } - }, - { - "pk": 37118, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SULIGNAT", - "center": "POINT (802340.1724679538747296 2133729.3715752372518182)", - "surface": 10770000, - "canton": null, - "numero_insee": "01412" - } - }, - { - "pk": 29247, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SURJOUX", - "center": "POINT (868015.5819996767677367 2120279.5051008327864110)", - "surface": 4410000, - "canton": null, - "numero_insee": "01413" - } - }, - { - "pk": 8982, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "SUTRIEU", - "center": "POINT (856904.0518608005950227 2108773.4475098093971610)", - "surface": 18950000, - "canton": null, - "numero_insee": "01414" - } - }, - { - "pk": 14085, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TALISSIEU", - "center": "POINT (862671.7238737514708191 2101516.1657492793165147)", - "surface": 4960000, - "canton": null, - "numero_insee": "01415" - } - }, - { - "pk": 32805, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TENAY", - "center": "POINT (846406.2020482708467171 2107382.1201022416353226)", - "surface": 13180000, - "canton": null, - "numero_insee": "01416" - } - }, - { - "pk": 29845, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "THEZILLIEU", - "center": "POINT (852937.5653077706228942 2104435.3731452142819762)", - "surface": 26310000, - "canton": null, - "numero_insee": "01417" - } - }, - { - "pk": 32520, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "THIL", - "center": "POINT (808383.0222197545226663 2094244.4306223096791655)", - "surface": 5090000, - "canton": null, - "numero_insee": "01418" - } - }, - { - "pk": 14007, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "THOIRY", - "center": "POINT (879717.2535021312069148 2144602.3049007379449904)", - "surface": 28860000, - "canton": null, - "numero_insee": "01419" - } - }, - { - "pk": 11588, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "THOISSEY", - "center": "POINT (789635.5064150688704103 2132920.2019727150909603)", - "surface": 1360000, - "canton": null, - "numero_insee": "01420" - } - }, - { - "pk": 10214, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TORCIEU", - "center": "POINT (837802.2447824589908123 2106907.9517285460606217)", - "surface": 10870000, - "canton": null, - "numero_insee": "01421" - } - }, - { - "pk": 22856, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TOSSIAT", - "center": "POINT (829190.0875771988648921 2130756.2210185229778290)", - "surface": 10170000, - "canton": null, - "numero_insee": "01422" - } - }, - { - "pk": 4857, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TOUSSIEUX", - "center": "POINT (793137.4283114937134087 2109628.6516464394517243)", - "surface": 4740000, - "canton": null, - "numero_insee": "01423" - } - }, - { - "pk": 29631, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TRAMOYES", - "center": "POINT (803925.3031498879427090 2100512.2367259040474892)", - "surface": 13060000, - "canton": null, - "numero_insee": "01424" - } - }, - { - "pk": 29711, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "LA TRANCLIERE", - "center": "POINT (826027.6865238329628482 2126024.8228738205507398)", - "surface": 14740000, - "canton": null, - "numero_insee": "01425" - } - }, - { - "pk": 16603, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TREFFORT-CUISIAT", - "center": "POINT (832956.9772197594866157 2146702.9499758686870337)", - "surface": 39720000, - "canton": null, - "numero_insee": "01426" - } - }, - { - "pk": 34439, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "TREVOUX", - "center": "POINT (788752.4560350108658895 2107389.1648248429410160)", - "surface": 5640000, - "canton": null, - "numero_insee": "01427" - } - }, - { - "pk": 13901, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VALEINS", - "center": "POINT (795391.5837215939536691 2126963.8733636648394167)", - "surface": 4340000, - "canton": null, - "numero_insee": "01428" - } - }, - { - "pk": 9248, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VARAMBON", - "center": "POINT (828880.6418701960938051 2120143.8311180579476058)", - "surface": 7970000, - "canton": null, - "numero_insee": "01430" - } - }, - { - "pk": 35147, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VAUX-EN-BUGEY", - "center": "POINT (834701.2961414145538583 2106681.1823689518496394)", - "surface": 8260000, - "canton": null, - "numero_insee": "01431" - } - }, - { - "pk": 14337, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VERJON", - "center": "POINT (831694.2254352683667094 2153898.6071309600956738)", - "surface": 5120000, - "canton": null, - "numero_insee": "01432" - } - }, - { - "pk": 16594, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VERNOUX", - "center": "POINT (812550.9897265593754128 2168647.9590823678299785)", - "surface": 10220000, - "canton": null, - "numero_insee": "01433" - } - }, - { - "pk": 23547, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VERSAILLEUX", - "center": "POINT (814926.9874874057713896 2113218.0706387795507908)", - "surface": 19390000, - "canton": null, - "numero_insee": "01434" - } - }, - { - "pk": 8355, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VERSONNEX", - "center": "POINT (889768.7553537401836365 2151294.8181699067354202)", - "surface": 5840000, - "canton": null, - "numero_insee": "01435" - } - }, - { - "pk": 24546, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VESANCY", - "center": "POINT (888308.9774890607222915 2158088.3555182940326631)", - "surface": 10730000, - "canton": null, - "numero_insee": "01436" - } - }, - { - "pk": 37053, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VESCOURS", - "center": "POINT (806457.1624877284048125 2167294.6823776531964540)", - "surface": 12470000, - "canton": null, - "numero_insee": "01437" - } - }, - { - "pk": 30844, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VESINES", - "center": "POINT (794359.2370697637088597 2154079.6132672112435102)", - "surface": 3890000, - "canton": null, - "numero_insee": "01439" - } - }, - { - "pk": 29293, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VIEU", - "center": "POINT (860145.4896767112659290 2104297.0855466471984982)", - "surface": 6510000, - "canton": null, - "numero_insee": "01442" - } - }, - { - "pk": 16330, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VILLARS-LES-DOMBES", - "center": "POINT (809716.5536361157428473 2113874.1468295641243458)", - "surface": 24670000, - "canton": null, - "numero_insee": "01443" - } - }, - { - "pk": 3285, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VILLEBOIS", - "center": "POINT (841474.0083598301280290 2098931.9473889805376530)", - "surface": 14070000, - "canton": null, - "numero_insee": "01444" - } - }, - { - "pk": 35614, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VILLEMOTIER", - "center": "POINT (828792.6943397489376366 2153773.6535642715170979)", - "surface": 13870000, - "canton": null, - "numero_insee": "01445" - } - }, - { - "pk": 21858, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VILLENEUVE", - "center": "POINT (794670.4108367008157074 2117649.1569070601835847)", - "surface": 26860000, - "canton": null, - "numero_insee": "01446" - } - }, - { - "pk": 7264, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VILLEREVERSURE", - "center": "POINT (835942.6110850390978158 2137019.7502938853576779)", - "surface": 17480000, - "canton": null, - "numero_insee": "01447" - } - }, - { - "pk": 37095, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VILLES", - "center": "POINT (864351.4509242945350707 2127354.5511476485989988)", - "surface": 9060000, - "canton": null, - "numero_insee": "01448" - } - }, - { - "pk": 32362, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VILLIEU-LOYES-MOLLON", - "center": "POINT (824283.7862930624978617 2107592.8645012727938592)", - "surface": 15820000, - "canton": null, - "numero_insee": "01450" - } - }, - { - "pk": 15457, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VIRIEU-LE-GRAND", - "center": "POINT (856484.4158664611168206 2099361.0461208811029792)", - "surface": 12640000, - "canton": null, - "numero_insee": "01452" - } - }, - { - "pk": 35434, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VIRIGNIN", - "center": "POINT (862702.3491912034805864 2086302.0829695197753608)", - "surface": 7830000, - "canton": null, - "numero_insee": "01454" - } - }, - { - "pk": 13096, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VONGNES", - "center": "POINT (863220.3159461298491806 2095915.6143621930386871)", - "surface": 2080000, - "canton": null, - "numero_insee": "01456" - } - }, - { - "pk": 13160, - "model": "ishtar_common.town", - "fields": { - "departement": 1, - "name": "VONNAS", - "center": "POINT (805200.6753451417898759 2138658.2828019843436778)", - "surface": 18070000, - "canton": null, - "numero_insee": "01457" - } - }, - { - "pk": 8528, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ABBECOURT", - "center": "POINT (660824.1346152647165582 2511616.0867862026207149)", - "surface": 6040000, - "canton": null, - "numero_insee": "02001" - } - }, - { - "pk": 27425, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ACHERY", - "center": "POINT (676542.9970047962851822 2522355.3344003036618233)", - "surface": 6910000, - "canton": null, - "numero_insee": "02002" - } - }, - { - "pk": 25193, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ACY", - "center": "POINT (678570.5091751061845571 2483748.5888135014101863)", - "surface": 11590000, - "canton": null, - "numero_insee": "02003" - } - }, - { - "pk": 4763, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AGNICOURT-ET-SECHELLES", - "center": "POINT (717240.0056766180787235 2525601.8642324898391962)", - "surface": 10710000, - "canton": null, - "numero_insee": "02004" - } - }, - { - "pk": 10206, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AGUILCOURT", - "center": "POINT (718445.4059523716568947 2489689.9827107298187912)", - "surface": 10570000, - "canton": null, - "numero_insee": "02005" - } - }, - { - "pk": 35906, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AISONVILLE-ET-BERNOVILLE", - "center": "POINT (684423.7894588605267927 2548837.6390007426962256)", - "surface": 8740000, - "canton": null, - "numero_insee": "02006" - } - }, - { - "pk": 23082, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AIZELLES", - "center": "POINT (707454.4707581547554582 2499602.9935000417754054)", - "surface": 4910000, - "canton": null, - "numero_insee": "02007" - } - }, - { - "pk": 37687, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AIZY-JOUY", - "center": "POINT (685287.9748978411080316 2494011.8455093363299966)", - "surface": 14630000, - "canton": null, - "numero_insee": "02008" - } - }, - { - "pk": 9807, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ALAINCOURT", - "center": "POINT (674273.3167234531138092 2530441.0048954412341118)", - "surface": 5970000, - "canton": null, - "numero_insee": "02009" - } - }, - { - "pk": 4051, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ALLEMANT", - "center": "POINT (681062.7936708137858659 2496677.7865533092990518)", - "surface": 5180000, - "canton": null, - "numero_insee": "02010" - } - }, - { - "pk": 5638, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AMBLENY", - "center": "POINT (661533.9052589050261304 2486806.6589871542528272)", - "surface": 17230000, - "canton": null, - "numero_insee": "02011" - } - }, - { - "pk": 7306, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AMBRIEF", - "center": "POINT (677593.6359489659080282 2480938.5482154311612248)", - "surface": 4470000, - "canton": null, - "numero_insee": "02012" - } - }, - { - "pk": 32505, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AMIFONTAINE", - "center": "POINT (714945.0125919278943911 2501267.5322152641601861)", - "surface": 28110000, - "canton": null, - "numero_insee": "02013" - } - }, - { - "pk": 36271, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AMIGNY-ROUY", - "center": "POINT (669918.0611116230720654 2512993.6909260242246091)", - "surface": 13160000, - "canton": null, - "numero_insee": "02014" - } - }, - { - "pk": 32277, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ANCIENVILLE", - "center": "POINT (663482.7748271129094064 2469311.9339371388778090)", - "surface": 3880000, - "canton": null, - "numero_insee": "02015" - } - }, - { - "pk": 28247, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ANDELAIN", - "center": "POINT (674691.8911237629363313 2516436.1107277413830161)", - "surface": 2850000, - "canton": null, - "numero_insee": "02016" - } - }, - { - "pk": 11342, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ANGUILCOURT-LE-SART", - "center": "POINT (678844.2199023400899023 2522374.7943150908686221)", - "surface": 9180000, - "canton": null, - "numero_insee": "02017" - } - }, - { - "pk": 23653, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ANIZY-LE-CHATEAU", - "center": "POINT (679322.9286951866233721 2501265.9330208022147417)", - "surface": 9710000, - "canton": null, - "numero_insee": "02018" - } - }, - { - "pk": 27013, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ANNOIS", - "center": "POINT (660609.2015043760184199 2525222.5165810785256326)", - "surface": 6030000, - "canton": null, - "numero_insee": "02019" - } - }, - { - "pk": 30236, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ANY-MARTIN-RIEUX", - "center": "POINT (735790.7994454591535032 2544470.5824113558046520)", - "surface": 17820000, - "canton": null, - "numero_insee": "02020" - } - }, - { - "pk": 23942, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ARCHON", - "center": "POINT (728618.8324452030938119 2528900.4270511227659881)", - "surface": 6550000, - "canton": null, - "numero_insee": "02021" - } - }, - { - "pk": 17672, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ARCY-SAINTE-RESTITUE", - "center": "POINT (683159.3863666933029890 2473580.8890001382678747)", - "surface": 26430000, - "canton": null, - "numero_insee": "02022" - } - }, - { - "pk": 25715, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ARMENTIERES-SUR-OURCQ", - "center": "POINT (676632.6005231470335275 2464419.8052762951701880)", - "surface": 6850000, - "canton": null, - "numero_insee": "02023" - } - }, - { - "pk": 14311, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ARRANCY", - "center": "POINT (703539.6020067331846803 2501070.7332921628840268)", - "surface": 5560000, - "canton": null, - "numero_insee": "02024" - } - }, - { - "pk": 26354, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ARTEMPS", - "center": "POINT (662071.9788174023851752 2529737.5617579966783524)", - "surface": 6440000, - "canton": null, - "numero_insee": "02025" - } - }, - { - "pk": 6816, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ARTONGES", - "center": "POINT (688569.7333848386770114 2437302.8067475734278560)", - "surface": 13210000, - "canton": null, - "numero_insee": "02026" - } - }, - { - "pk": 26554, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ASSIS-SUR-SERRE", - "center": "POINT (687960.9149837462464347 2521051.0849257647059858)", - "surface": 8150000, - "canton": null, - "numero_insee": "02027" - } - }, - { - "pk": 25755, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ATHIES-SOUS-LAON", - "center": "POINT (697964.5254555740393698 2509528.7344050426036119)", - "surface": 15480000, - "canton": null, - "numero_insee": "02028" - } - }, - { - "pk": 23813, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ATTILLY", - "center": "POINT (658782.4634468291187659 2540115.9551845216192305)", - "surface": 11870000, - "canton": null, - "numero_insee": "02029" - } - }, - { - "pk": 33859, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUBENCHEUL-AUX-BOIS", - "center": "POINT (666327.5539270105073228 2558990.5881875604391098)", - "surface": 2160000, - "canton": null, - "numero_insee": "02030" - } - }, - { - "pk": 28695, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUBENTON", - "center": "POINT (733544.0580303895985708 2538047.7084087715484202)", - "surface": 23820000, - "canton": null, - "numero_insee": "02031" - } - }, - { - "pk": 3922, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUBIGNY-AUX-KAISNES", - "center": "POINT (656359.6945540874730796 2530789.9983960138633847)", - "surface": 3700000, - "canton": null, - "numero_insee": "02032" - } - }, - { - "pk": 25124, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUBIGNY-EN-LAONNOIS", - "center": "POINT (705542.3968567308038473 2500887.5884719863533974)", - "surface": 4390000, - "canton": null, - "numero_insee": "02033" - } - }, - { - "pk": 5971, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUDIGNICOURT", - "center": "POINT (657336.1863787982147187 2498078.3126125778071582)", - "surface": 5740000, - "canton": null, - "numero_insee": "02034" - } - }, - { - "pk": 8032, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUDIGNY", - "center": "POINT (693188.3896766650723293 2541807.6850250470452011)", - "surface": 10650000, - "canton": null, - "numero_insee": "02035" - } - }, - { - "pk": 27844, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AULNOIS-SOUS-LAON", - "center": "POINT (692019.8114558691158891 2514381.3800451117567718)", - "surface": 9660000, - "canton": null, - "numero_insee": "02037" - } - }, - { - "pk": 30998, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LES AUTELS", - "center": "POINT (736105.7661269186064601 2530965.2690134765580297)", - "surface": 6030000, - "canton": null, - "numero_insee": "02038" - } - }, - { - "pk": 37164, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUTREMENCOURT", - "center": "POINT (705245.5307903421344236 2524099.2649705526418984)", - "surface": 9310000, - "canton": null, - "numero_insee": "02039" - } - }, - { - "pk": 29550, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUTREPPES", - "center": "POINT (709266.1439890288747847 2545546.0666739502921700)", - "surface": 6880000, - "canton": null, - "numero_insee": "02040" - } - }, - { - "pk": 4420, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AUTREVILLE", - "center": "POINT (665038.2349577252753079 2510250.8144888486713171)", - "surface": 3640000, - "canton": null, - "numero_insee": "02041" - } - }, - { - "pk": 13777, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "AZY-SUR-MARNE", - "center": "POINT (674791.3042312391335145 2445491.8084598327986896)", - "surface": 2760000, - "canton": null, - "numero_insee": "02042" - } - }, - { - "pk": 29350, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BAGNEUX", - "center": "POINT (668358.3120786310173571 2496270.1997794443741441)", - "surface": 2230000, - "canton": null, - "numero_insee": "02043" - } - }, - { - "pk": 3328, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BANCIGNY", - "center": "POINT (722465.4852793917525560 2534751.6716964999213815)", - "surface": 3350000, - "canton": null, - "numero_insee": "02044" - } - }, - { - "pk": 8352, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BARENTON-BUGNY", - "center": "POINT (695720.1078288131393492 2514612.8412550175562501)", - "surface": 11560000, - "canton": null, - "numero_insee": "02046" - } - }, - { - "pk": 6845, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BARENTON-CEL", - "center": "POINT (694494.8861971943406388 2517504.2283502919599414)", - "surface": 6680000, - "canton": null, - "numero_insee": "02047" - } - }, - { - "pk": 29825, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BARENTON-SUR-SERRE", - "center": "POINT (697677.1032302642706782 2519832.5808166335336864)", - "surface": 7990000, - "canton": null, - "numero_insee": "02048" - } - }, - { - "pk": 23836, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BARISIS", - "center": "POINT (671749.4732971980702132 2509406.9636012734845281)", - "surface": 14910000, - "canton": null, - "numero_insee": "02049" - } - }, - { - "pk": 11216, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BARZY-EN-THIERACHE", - "center": "POINT (701328.1540712823625654 2561287.8988608969375491)", - "surface": 7730000, - "canton": null, - "numero_insee": "02050" - } - }, - { - "pk": 3581, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BARZY-SUR-MARNE", - "center": "POINT (689517.0838689139345661 2455422.8588877948932350)", - "surface": 7610000, - "canton": null, - "numero_insee": "02051" - } - }, - { - "pk": 11234, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BASSOLES-AULERS", - "center": "POINT (675893.9928396723698825 2504438.9187685819342732)", - "surface": 7080000, - "canton": null, - "numero_insee": "02052" - } - }, - { - "pk": 34723, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BAULNE-EN-BRIE", - "center": "POINT (692813.8530062407953665 2444243.3556165383197367)", - "surface": 18800000, - "canton": null, - "numero_insee": "02053" - } - }, - { - "pk": 4835, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BAZOCHES-SUR-VESLES", - "center": "POINT (693015.0499279772629961 2479568.0889535285532475)", - "surface": 9570000, - "canton": null, - "numero_insee": "02054" - } - }, - { - "pk": 8522, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEAUME", - "center": "POINT (730746.8560028446372598 2537523.6339287254959345)", - "surface": 9190000, - "canton": null, - "numero_insee": "02055" - } - }, - { - "pk": 24281, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEAUMONT-EN-BEINE", - "center": "POINT (657339.5428856493672356 2521392.6285583227872849)", - "surface": 5400000, - "canton": null, - "numero_insee": "02056" - } - }, - { - "pk": 12450, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEAUREVOIR", - "center": "POINT (671255.3796795320231467 2556030.5019949576817453)", - "surface": 21900000, - "canton": null, - "numero_insee": "02057" - } - }, - { - "pk": 22563, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEAURIEUX", - "center": "POINT (702829.9100054629379883 2490358.0263350876048207)", - "surface": 9640000, - "canton": null, - "numero_insee": "02058" - } - }, - { - "pk": 29127, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEAUTOR", - "center": "POINT (672383.8919486507074907 2517217.0875739087350667)", - "surface": 7540000, - "canton": null, - "numero_insee": "02059" - } - }, - { - "pk": 32428, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEAUVOIS-EN-VERMANDOIS", - "center": "POINT (655200.8635252453386784 2537684.3130323947407305)", - "surface": 7520000, - "canton": null, - "numero_insee": "02060" - } - }, - { - "pk": 12324, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BECQUIGNY", - "center": "POINT (680541.4496463425457478 2558310.2823788975365460)", - "surface": 4730000, - "canton": null, - "numero_insee": "02061" - } - }, - { - "pk": 3609, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BELLEAU", - "center": "POINT (670414.3486952220555395 2454260.6395298414863646)", - "surface": 6710000, - "canton": null, - "numero_insee": "02062" - } - }, - { - "pk": 16900, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BELLENGLISE", - "center": "POINT (665219.0643045160686597 2548074.9282845491543412)", - "surface": 6450000, - "canton": null, - "numero_insee": "02063" - } - }, - { - "pk": 13526, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BELLEU", - "center": "POINT (672958.0538336533354595 2484801.8363153263926506)", - "surface": 4610000, - "canton": null, - "numero_insee": "02064" - } - }, - { - "pk": 25369, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BELLICOURT", - "center": "POINT (664187.2889657454797998 2551768.3621426415629685)", - "surface": 9850000, - "canton": null, - "numero_insee": "02065" - } - }, - { - "pk": 35047, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BENAY", - "center": "POINT (670082.1022465919377282 2529104.8047855659388006)", - "surface": 6830000, - "canton": null, - "numero_insee": "02066" - } - }, - { - "pk": 37326, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERGUES-SUR-SAMBRE", - "center": "POINT (698636.9776051325025037 2560064.4043712615966797)", - "surface": 4490000, - "canton": null, - "numero_insee": "02067" - } - }, - { - "pk": 10833, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERLANCOURT", - "center": "POINT (702372.8055530134588480 2532479.9420743975788355)", - "surface": 5210000, - "canton": null, - "numero_insee": "02068" - } - }, - { - "pk": 24002, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERLISE", - "center": "POINT (728396.0429033288965002 2519793.0494262743741274)", - "surface": 6550000, - "canton": null, - "numero_insee": "02069" - } - }, - { - "pk": 21344, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERNOT", - "center": "POINT (682771.1728581979405135 2543120.3260281793773174)", - "surface": 16730000, - "canton": null, - "numero_insee": "02070" - } - }, - { - "pk": 24844, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERNY-RIVIERE", - "center": "POINT (658999.5660331586841494 2490687.7221829872578382)", - "surface": 7960000, - "canton": null, - "numero_insee": "02071" - } - }, - { - "pk": 32933, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERRIEUX", - "center": "POINT (709858.3375400053337216 2499323.1943579521030188)", - "surface": 5010000, - "canton": null, - "numero_insee": "02072" - } - }, - { - "pk": 27818, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERRY-AU-BAC", - "center": "POINT (713429.8794690412469208 2491148.3611985561437905)", - "surface": 8150000, - "canton": null, - "numero_insee": "02073" - } - }, - { - "pk": 33608, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERTAUCOURT-EPOURDON", - "center": "POINT (676705.6541305913124233 2514952.2234235154464841)", - "surface": 7570000, - "canton": null, - "numero_insee": "02074" - } - }, - { - "pk": 25410, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERTHENICOURT", - "center": "POINT (674662.5308553304057568 2531745.0701747555285692)", - "surface": 3180000, - "canton": null, - "numero_insee": "02075" - } - }, - { - "pk": 9041, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERTRICOURT", - "center": "POINT (721643.7943783536320552 2490117.3899021823890507)", - "surface": 4600000, - "canton": null, - "numero_insee": "02076" - } - }, - { - "pk": 29558, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BERZY-LE-SEC", - "center": "POINT (669793.4540773034095764 2480372.2970960880629718)", - "surface": 11680000, - "canton": null, - "numero_insee": "02077" - } - }, - { - "pk": 33413, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BESME", - "center": "POINT (659984.4623934001429006 2504404.5726589905098081)", - "surface": 2710000, - "canton": null, - "numero_insee": "02078" - } - }, - { - "pk": 9685, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BESMONT", - "center": "POINT (728243.8563041549641639 2537702.4801272936165333)", - "surface": 15800000, - "canton": null, - "numero_insee": "02079" - } - }, - { - "pk": 11779, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BESNY-ET-LOIZY", - "center": "POINT (689744.8322845672955737 2511260.2230806201696396)", - "surface": 9610000, - "canton": null, - "numero_insee": "02080" - } - }, - { - "pk": 8527, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BETHANCOURT-EN-VAUX", - "center": "POINT (658094.8073165368987247 2514895.0615378050133586)", - "surface": 4320000, - "canton": null, - "numero_insee": "02081" - } - }, - { - "pk": 11628, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEUGNEUX", - "center": "POINT (678683.0465221664635465 2470441.0295398398302495)", - "surface": 7680000, - "canton": null, - "numero_insee": "02082" - } - }, - { - "pk": 29891, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEUVARDES", - "center": "POINT (684276.7873209788231179 2459781.3950543412938714)", - "surface": 15630000, - "canton": null, - "numero_insee": "02083" - } - }, - { - "pk": 28677, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEZU-LE-GUERY", - "center": "POINT (665179.6885829742532223 2446111.0613683629781008)", - "surface": 11270000, - "canton": null, - "numero_insee": "02084" - } - }, - { - "pk": 30540, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BEZU-SAINT-GERMAIN", - "center": "POINT (678297.8306816022377461 2456828.9216708126477897)", - "surface": 11070000, - "canton": null, - "numero_insee": "02085" - } - }, - { - "pk": 11629, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BICHANCOURT", - "center": "POINT (663344.9186300691217184 2509335.9620469398796558)", - "surface": 7750000, - "canton": null, - "numero_insee": "02086" - } - }, - { - "pk": 11780, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BIEUXY", - "center": "POINT (667669.7587891789153218 2494863.5079396455548704)", - "surface": 4510000, - "canton": null, - "numero_insee": "02087" - } - }, - { - "pk": 32007, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BIEVRES", - "center": "POINT (699844.3533204386476427 2500238.9170008334331214)", - "surface": 2670000, - "canton": null, - "numero_insee": "02088" - } - }, - { - "pk": 12164, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BILLY-SUR-AISNE", - "center": "POINT (675560.3612158787436783 2484723.7707695974968374)", - "surface": 7500000, - "canton": null, - "numero_insee": "02089" - } - }, - { - "pk": 28251, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BILLY-SUR-OURCQ", - "center": "POINT (670084.0306395263178274 2469667.8887800774537027)", - "surface": 10200000, - "canton": null, - "numero_insee": "02090" - } - }, - { - "pk": 26946, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BLANZY-LES-FISMES", - "center": "POINT (697088.5525175938382745 2483004.7564937993884087)", - "surface": 5270000, - "canton": null, - "numero_insee": "02091" - } - }, - { - "pk": 3938, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BLERANCOURT", - "center": "POINT (659009.2530395386274904 2501394.4841844527982175)", - "surface": 10790000, - "canton": null, - "numero_insee": "02093" - } - }, - { - "pk": 24187, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BLESMES", - "center": "POINT (682473.8684012668672949 2448158.5020655463449657)", - "surface": 9860000, - "canton": null, - "numero_insee": "02094" - } - }, - { - "pk": 17545, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOHAIN-EN-VERMANDOIS", - "center": "POINT (680967.0414104622323066 2555312.1568377446383238)", - "surface": 31960000, - "canton": null, - "numero_insee": "02095" - } - }, - { - "pk": 35831, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOIS-LES-PARGNY", - "center": "POINT (695011.3056845125975087 2527414.5770737533457577)", - "surface": 10420000, - "canton": null, - "numero_insee": "02096" - } - }, - { - "pk": 38060, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BONCOURT", - "center": "POINT (717125.6774178583873436 2515494.7781342966482043)", - "surface": 13340000, - "canton": null, - "numero_insee": "02097" - } - }, - { - "pk": 12539, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BONNEIL", - "center": "POINT (673886.5410713149467483 2445984.4931148816831410)", - "surface": 2130000, - "canton": null, - "numero_insee": "02098" - } - }, - { - "pk": 30970, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BONNESVALYN", - "center": "POINT (672174.8148683817125857 2459078.6664318577386439)", - "surface": 6340000, - "canton": null, - "numero_insee": "02099" - } - }, - { - "pk": 29992, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BONY", - "center": "POINT (663457.3610142631223425 2555264.2194629004225135)", - "surface": 8020000, - "canton": null, - "numero_insee": "02100" - } - }, - { - "pk": 4445, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOSMONT-SUR-SERRE", - "center": "POINT (710416.0365932889981195 2527945.3986108824610710)", - "surface": 9770000, - "canton": null, - "numero_insee": "02101" - } - }, - { - "pk": 26162, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOUCONVILLE-VAUCLAIR", - "center": "POINT (702975.7417720443336293 2496763.2757459981366992)", - "surface": 13090000, - "canton": null, - "numero_insee": "02102" - } - }, - { - "pk": 25488, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOUE", - "center": "POINT (698854.0343081279424950 2558065.0962408641353250)", - "surface": 10750000, - "canton": null, - "numero_insee": "02103" - } - }, - { - "pk": 13658, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOUFFIGNEREUX", - "center": "POINT (709655.7677752856398001 2487814.2632615813054144)", - "surface": 4380000, - "canton": null, - "numero_insee": "02104" - } - }, - { - "pk": 30316, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOURESCHES", - "center": "POINT (671629.4275300508597866 2452569.7872746353968978)", - "surface": 7660000, - "canton": null, - "numero_insee": "02105" - } - }, - { - "pk": 31234, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOURG-ET-COMIN", - "center": "POINT (696026.9648129823617637 2490200.3180741202086210)", - "surface": 5070000, - "canton": null, - "numero_insee": "02106" - } - }, - { - "pk": 10207, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOURGUIGNON-SOUS-COUCY", - "center": "POINT (659176.4241967506241053 2505298.3070846428163350)", - "surface": 2760000, - "canton": null, - "numero_insee": "02107" - } - }, - { - "pk": 12700, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BOURGUIGNON-SOUS-MONTBAVIN", - "center": "POINT (687003.4431778474245220 2504132.6486353711225092)", - "surface": 1930000, - "canton": null, - "numero_insee": "02108" - } - }, - { - "pk": 19175, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA BOUTEILLE", - "center": "POINT (716987.9291742014465854 2543510.3591081560589373)", - "surface": 19370000, - "canton": null, - "numero_insee": "02109" - } - }, - { - "pk": 27675, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRAINE", - "center": "POINT (687173.6569940766785294 2484021.4995500976219773)", - "surface": 11630000, - "canton": null, - "numero_insee": "02110" - } - }, - { - "pk": 36274, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRANCOURT-EN-LAONNOIS", - "center": "POINT (678009.5236773306969553 2502755.7553390841931105)", - "surface": 6680000, - "canton": null, - "numero_insee": "02111" - } - }, - { - "pk": 8631, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRANCOURT-LE-GRAND", - "center": "POINT (675872.9260830180719495 2554268.4977861139923334)", - "surface": 13400000, - "canton": null, - "numero_insee": "02112" - } - }, - { - "pk": 36661, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRASLES", - "center": "POINT (679544.2276421176502481 2451435.9066410292871296)", - "surface": 7370000, - "canton": null, - "numero_insee": "02114" - } - }, - { - "pk": 25192, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRAYE-EN-LAONNOIS", - "center": "POINT (692391.9132701819762588 2494071.9808402559719980)", - "surface": 8180000, - "canton": null, - "numero_insee": "02115" - } - }, - { - "pk": 32055, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRAYE-EN-THIERACHE", - "center": "POINT (717191.5955316601321101 2531304.8680824702605605)", - "surface": 9130000, - "canton": null, - "numero_insee": "02116" - } - }, - { - "pk": 19066, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRAY-SAINT-CHRISTOPHE", - "center": "POINT (657958.0008048055460677 2531103.6664321380667388)", - "surface": 2890000, - "canton": null, - "numero_insee": "02117" - } - }, - { - "pk": 12916, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRAYE", - "center": "POINT (675597.8203433251474053 2492128.7548413295298815)", - "surface": 1350000, - "canton": null, - "numero_insee": "02118" - } - }, - { - "pk": 12963, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRECY", - "center": "POINT (679365.4719749239739031 2460740.5035193469375372)", - "surface": 10410000, - "canton": null, - "numero_insee": "02119" - } - }, - { - "pk": 19978, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRENELLE", - "center": "POINT (687755.3631810311926529 2486227.8169420673511922)", - "surface": 4410000, - "canton": null, - "numero_insee": "02120" - } - }, - { - "pk": 11364, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRIE", - "center": "POINT (682236.5442855102010071 2511696.9868852002546191)", - "surface": 2860000, - "canton": null, - "numero_insee": "02122" - } - }, - { - "pk": 7511, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRISSAY-CHOIGNY", - "center": "POINT (676415.8724438332719728 2525556.1857495601288974)", - "surface": 8800000, - "canton": null, - "numero_insee": "02123" - } - }, - { - "pk": 9699, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRISSY-HAMEGICOURT", - "center": "POINT (676696.5730746531626210 2527859.9385369224473834)", - "surface": 12260000, - "canton": null, - "numero_insee": "02124" - } - }, - { - "pk": 8127, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRUMETZ", - "center": "POINT (659582.6736502661369741 2457171.1313990009948611)", - "surface": 7280000, - "canton": null, - "numero_insee": "02125" - } - }, - { - "pk": 35528, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRUNEHAMEL", - "center": "POINT (733394.9914969624951482 2532042.8764381119981408)", - "surface": 8850000, - "canton": null, - "numero_insee": "02126" - } - }, - { - "pk": 33374, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRUYERES-SUR-FERE", - "center": "POINT (680810.4871588116511703 2467357.0180138512514532)", - "surface": 9020000, - "canton": null, - "numero_insee": "02127" - } - }, - { - "pk": 21226, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRUYERES-ET-MONTBERAULT", - "center": "POINT (696512.8730680693406612 2503712.8609135602600873)", - "surface": 11600000, - "canton": null, - "numero_insee": "02128" - } - }, - { - "pk": 9631, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BRUYS", - "center": "POINT (689656.3228065834846348 2474436.3858619323000312)", - "surface": 5640000, - "canton": null, - "numero_insee": "02129" - } - }, - { - "pk": 15070, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUCILLY", - "center": "POINT (726402.9682399880839512 2542389.6106349681504071)", - "surface": 13010000, - "canton": null, - "numero_insee": "02130" - } - }, - { - "pk": 27623, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUCY-LE-LONG", - "center": "POINT (677130.8036719649098814 2488339.3248753962107003)", - "surface": 12960000, - "canton": null, - "numero_insee": "02131" - } - }, - { - "pk": 7420, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUCY-LES-CERNY", - "center": "POINT (683954.3946548143867403 2509710.2952900705859065)", - "surface": 8800000, - "canton": null, - "numero_insee": "02132" - } - }, - { - "pk": 7057, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUCY-LES-PIERREPONT", - "center": "POINT (713204.0549594360636547 2517762.8964415015652776)", - "surface": 14690000, - "canton": null, - "numero_insee": "02133" - } - }, - { - "pk": 37786, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUIRE", - "center": "POINT (723662.4830911970930174 2546969.0255974521860480)", - "surface": 4100000, - "canton": null, - "numero_insee": "02134" - } - }, - { - "pk": 17140, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUIRONFOSSE", - "center": "POINT (707808.5727841854095459 2552237.6048943316563964)", - "surface": 17720000, - "canton": null, - "numero_insee": "02135" - } - }, - { - "pk": 35527, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BURELLES", - "center": "POINT (713589.7067953195655718 2531274.2985163051635027)", - "surface": 13980000, - "canton": null, - "numero_insee": "02136" - } - }, - { - "pk": 29734, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUSSIARES", - "center": "POINT (666718.0941243672277778 2453528.9513853657990694)", - "surface": 7690000, - "canton": null, - "numero_insee": "02137" - } - }, - { - "pk": 33189, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "BUZANCY", - "center": "POINT (673602.3695650433655828 2479603.9765989603474736)", - "surface": 4870000, - "canton": null, - "numero_insee": "02138" - } - }, - { - "pk": 34826, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CAILLOUEL-CREPIGNY", - "center": "POINT (656705.0313832573592663 2513582.5396966855041683)", - "surface": 6700000, - "canton": null, - "numero_insee": "02139" - } - }, - { - "pk": 34738, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CAMELIN", - "center": "POINT (657396.5530695376219228 2502781.7395969214849174)", - "surface": 9210000, - "canton": null, - "numero_insee": "02140" - } - }, - { - "pk": 6042, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA CAPELLE", - "center": "POINT (713296.0820290396222845 2554085.1998922186903656)", - "surface": 12310000, - "canton": null, - "numero_insee": "02141" - } - }, - { - "pk": 11100, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CASTRES", - "center": "POINT (666036.8953519623028114 2534173.6658723778091371)", - "surface": 5780000, - "canton": null, - "numero_insee": "02142" - } - }, - { - "pk": 9071, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE CATELET", - "center": "POINT (664948.8227107329294086 2556377.4491675654426217)", - "surface": 430000, - "canton": null, - "numero_insee": "02143" - } - }, - { - "pk": 8224, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CAULAINCOURT", - "center": "POINT (655772.4687642096541822 2541091.1393052646890283)", - "surface": 5910000, - "canton": null, - "numero_insee": "02144" - } - }, - { - "pk": 36427, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CAUMONT", - "center": "POINT (660488.4956927655730397 2515815.8152723172679543)", - "surface": 5900000, - "canton": null, - "numero_insee": "02145" - } - }, - { - "pk": 6477, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CELLES-LES-CONDE", - "center": "POINT (690289.4949991477187723 2446923.7794431210495532)", - "surface": 3890000, - "canton": null, - "numero_insee": "02146" - } - }, - { - "pk": 34336, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA CELLE-SOUS-MONTMIRAIL", - "center": "POINT (682835.6615207658614963 2429048.7481055562384427)", - "surface": 5760000, - "canton": null, - "numero_insee": "02147" - } - }, - { - "pk": 25502, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CELLES-SUR-AISNE", - "center": "POINT (682607.6389506894629449 2491487.5984791889786720)", - "surface": 6100000, - "canton": null, - "numero_insee": "02148" - } - }, - { - "pk": 27961, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CERIZY", - "center": "POINT (671772.0039188519585878 2530419.8622598857618868)", - "surface": 4050000, - "canton": null, - "numero_insee": "02149" - } - }, - { - "pk": 35531, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CERNY-EN-LAONNOIS", - "center": "POINT (697482.8747100791661069 2495515.9776089936494827)", - "surface": 7280000, - "canton": null, - "numero_insee": "02150" - } - }, - { - "pk": 22406, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CERNY-LES-BUCY", - "center": "POINT (687557.1926808083662763 2509640.7234871885739267)", - "surface": 3170000, - "canton": null, - "numero_insee": "02151" - } - }, - { - "pk": 14077, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CERSEUIL", - "center": "POINT (685894.9404207019833848 2481409.0253019123338163)", - "surface": 4570000, - "canton": null, - "numero_insee": "02152" - } - }, - { - "pk": 26357, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CESSIERES", - "center": "POINT (684373.2370935741346329 2507512.4873224133625627)", - "surface": 9670000, - "canton": null, - "numero_insee": "02153" - } - }, - { - "pk": 33412, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHACRISE", - "center": "POINT (677213.7146051960298792 2478533.8050649506039917)", - "surface": 12790000, - "canton": null, - "numero_insee": "02154" - } - }, - { - "pk": 24459, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAILLEVOIS", - "center": "POINT (685922.3170982951996848 2501822.0747716575860977)", - "surface": 2210000, - "canton": null, - "numero_insee": "02155" - } - }, - { - "pk": 8614, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHALANDRY", - "center": "POINT (694473.7000441828276962 2520005.5651418888010085)", - "surface": 7670000, - "canton": null, - "numero_insee": "02156" - } - }, - { - "pk": 13614, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAMBRY", - "center": "POINT (696642.6301433721091598 2512019.0677146259695292)", - "surface": 8940000, - "canton": null, - "numero_insee": "02157" - } - }, - { - "pk": 32506, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAMOUILLE", - "center": "POINT (696761.2967349590035155 2498011.4254724839702249)", - "surface": 3300000, - "canton": null, - "numero_insee": "02158" - } - }, - { - "pk": 30245, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAMPS", - "center": "POINT (666979.8338285075733438 2505464.2633510059677064)", - "surface": 9190000, - "canton": null, - "numero_insee": "02159" - } - }, - { - "pk": 4976, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAOURSE", - "center": "POINT (719056.2484435575315729 2523816.1988710113801062)", - "surface": 18490000, - "canton": null, - "numero_insee": "02160" - } - }, - { - "pk": 37137, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA CHAPELLE-MONTHODON", - "center": "POINT (695685.0677662451053038 2447870.0661121979355812)", - "surface": 14720000, - "canton": null, - "numero_insee": "02161" - } - }, - { - "pk": 24769, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA CHAPELLE-SUR-CHEZY", - "center": "POINT (676143.6780940511962399 2439399.1680136183276772)", - "surface": 8070000, - "canton": null, - "numero_insee": "02162" - } - }, - { - "pk": 25716, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHARLY-SUR-MARNE", - "center": "POINT (670001.9812709951074794 2443850.2668331456370652)", - "surface": 20670000, - "canton": null, - "numero_insee": "02163" - } - }, - { - "pk": 36575, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE CHARMEL", - "center": "POINT (687996.7265792394755408 2457711.4999219067394733)", - "surface": 9760000, - "canton": null, - "numero_insee": "02164" - } - }, - { - "pk": 3331, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHARMES", - "center": "POINT (675783.1760781292105094 2517546.0051125725731254)", - "surface": 3650000, - "canton": null, - "numero_insee": "02165" - } - }, - { - "pk": 34785, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHARTEVES", - "center": "POINT (685616.4925100459950045 2455189.7142707379534841)", - "surface": 8850000, - "canton": null, - "numero_insee": "02166" - } - }, - { - "pk": 23783, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHASSEMY", - "center": "POINT (684744.3670654604211450 2487303.0306691736914217)", - "surface": 10930000, - "canton": null, - "numero_insee": "02167" - } - }, - { - "pk": 27393, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHATEAU-THIERRY", - "center": "POINT (676342.3428371991030872 2451408.8319840775802732)", - "surface": 17000000, - "canton": null, - "numero_insee": "02168" - } - }, - { - "pk": 11870, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHATILLON-LES-SONS", - "center": "POINT (698489.4146956403274089 2530245.7186360019259155)", - "surface": 10750000, - "canton": null, - "numero_insee": "02169" - } - }, - { - "pk": 35283, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHATILLON-SUR-OISE", - "center": "POINT (677749.7718521031783894 2533472.1848331480287015)", - "surface": 2640000, - "canton": null, - "numero_insee": "02170" - } - }, - { - "pk": 27429, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAUDARDES", - "center": "POINT (705537.3542092798743397 2489680.5374925783835351)", - "surface": 4690000, - "canton": null, - "numero_insee": "02171" - } - }, - { - "pk": 8148, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAUDUN", - "center": "POINT (666594.1793892568675801 2480045.0775993154384196)", - "surface": 8560000, - "canton": null, - "numero_insee": "02172" - } - }, - { - "pk": 20953, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAUNY", - "center": "POINT (663806.3218206786550581 2513942.6725451927632093)", - "surface": 13280000, - "canton": null, - "numero_insee": "02173" - } - }, - { - "pk": 18474, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAVIGNON", - "center": "POINT (685749.3027150341076776 2498618.6222377503290772)", - "surface": 11650000, - "canton": null, - "numero_insee": "02174" - } - }, - { - "pk": 4126, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAVIGNY", - "center": "POINT (670294.0269410464679822 2492183.9888578872196376)", - "surface": 5210000, - "canton": null, - "numero_insee": "02175" - } - }, - { - "pk": 7657, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHAVONNE", - "center": "POINT (689018.8249326745280996 2490641.2878284687176347)", - "surface": 3700000, - "canton": null, - "numero_insee": "02176" - } - }, - { - "pk": 7061, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHERET", - "center": "POINT (697822.9088377010775730 2502623.2783184456638992)", - "surface": 3690000, - "canton": null, - "numero_insee": "02177" - } - }, - { - "pk": 30244, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHERMIZY-AILLES", - "center": "POINT (700371.7613398153334856 2497041.3930672043934464)", - "surface": 10960000, - "canton": null, - "numero_insee": "02178" - } - }, - { - "pk": 24231, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHERY-CHARTREUVE", - "center": "POINT (692363.7939966939156875 2473758.8591289720498025)", - "surface": 13770000, - "canton": null, - "numero_insee": "02179" - } - }, - { - "pk": 25387, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHERY-LES-POUILLY", - "center": "POINT (690892.1104639990953729 2517573.7791199907660484)", - "surface": 17470000, - "canton": null, - "numero_insee": "02180" - } - }, - { - "pk": 30784, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHERY-LES-ROZOY", - "center": "POINT (727339.4007838257821277 2526388.0553917256183922)", - "surface": 4990000, - "canton": null, - "numero_insee": "02181" - } - }, - { - "pk": 25186, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHEVENNES", - "center": "POINT (700837.2532666506012902 2536569.3614754551090300)", - "surface": 5990000, - "canton": null, - "numero_insee": "02182" - } - }, - { - "pk": 28008, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHEVREGNY", - "center": "POINT (691164.9854797610314563 2497163.5299821761436760)", - "surface": 8690000, - "canton": null, - "numero_insee": "02183" - } - }, - { - "pk": 22961, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHEVRESIS-MONCEAU", - "center": "POINT (689885.7434793489519507 2530072.7872806112281978)", - "surface": 17260000, - "canton": null, - "numero_insee": "02184" - } - }, - { - "pk": 31564, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHEZY-EN-ORXOIS", - "center": "POINT (660667.2671935814432800 2459081.5314354421570897)", - "surface": 16420000, - "canton": null, - "numero_insee": "02185" - } - }, - { - "pk": 26131, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHEZY-SUR-MARNE", - "center": "POINT (676510.9248442649841309 2443304.8804827043786645)", - "surface": 22670000, - "canton": null, - "numero_insee": "02186" - } - }, - { - "pk": 7038, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHIERRY", - "center": "POINT (680164.8912840868579224 2449039.5681113484315574)", - "surface": 2850000, - "canton": null, - "numero_insee": "02187" - } - }, - { - "pk": 18314, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHIGNY", - "center": "POINT (703432.6337506948038936 2549098.6992324329912663)", - "surface": 10670000, - "canton": null, - "numero_insee": "02188" - } - }, - { - "pk": 7510, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHIVRES-EN-LAONNOIS", - "center": "POINT (709821.7536860522814095 2515432.8021717229858041)", - "surface": 13760000, - "canton": null, - "numero_insee": "02189" - } - }, - { - "pk": 25954, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHIVRES-VAL", - "center": "POINT (680018.8853373122401536 2489964.7568902731873095)", - "surface": 5640000, - "canton": null, - "numero_insee": "02190" - } - }, - { - "pk": 4228, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHIVY-LES-ETOUVELLES", - "center": "POINT (690501.9675323648843914 2504562.5112772360444069)", - "surface": 3490000, - "canton": null, - "numero_insee": "02191" - } - }, - { - "pk": 14859, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CHOUY", - "center": "POINT (666386.1314318112563342 2469136.3251746702007949)", - "surface": 20360000, - "canton": null, - "numero_insee": "02192" - } - }, - { - "pk": 34335, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CIERGES", - "center": "POINT (692449.3665003537898883 2463653.0498053673654795)", - "surface": 8160000, - "canton": null, - "numero_insee": "02193" - } - }, - { - "pk": 29548, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CILLY", - "center": "POINT (708405.6475055901100859 2529029.0048867547884583)", - "surface": 9410000, - "canton": null, - "numero_insee": "02194" - } - }, - { - "pk": 18236, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CIRY-SALSOGNE", - "center": "POINT (682153.0679100861307234 2486080.3479212578386068)", - "surface": 8910000, - "canton": null, - "numero_insee": "02195" - } - }, - { - "pk": 37440, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CLACY-ET-THIERRET", - "center": "POINT (688982.5143741698702797 2506751.0051594087854028)", - "surface": 4220000, - "canton": null, - "numero_insee": "02196" - } - }, - { - "pk": 25949, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CLAIRFONTAINE", - "center": "POINT (718497.0145942606031895 2554329.4602843737229705)", - "surface": 14410000, - "canton": null, - "numero_insee": "02197" - } - }, - { - "pk": 10656, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CLAMECY", - "center": "POINT (674492.1336245690472424 2492719.7839646958746016)", - "surface": 3450000, - "canton": null, - "numero_insee": "02198" - } - }, - { - "pk": 32929, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CLASTRES", - "center": "POINT (664485.0705443371552974 2528357.1028972007334232)", - "surface": 8310000, - "canton": null, - "numero_insee": "02199" - } - }, - { - "pk": 37636, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CLERMONT-LES-FERMES", - "center": "POINT (716092.8702637543901801 2519288.3224275396205485)", - "surface": 9290000, - "canton": null, - "numero_insee": "02200" - } - }, - { - "pk": 32935, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COEUVRES-ET-VALSERY", - "center": "POINT (659376.5909482063725591 2481585.1504636378958821)", - "surface": 12320000, - "canton": null, - "numero_insee": "02201" - } - }, - { - "pk": 25524, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COINCY", - "center": "POINT (680243.9922691050451249 2463349.6289175478741527)", - "surface": 17270000, - "canton": null, - "numero_insee": "02203" - } - }, - { - "pk": 37166, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COINGT", - "center": "POINT (726772.8299495922401547 2534187.9044804982841015)", - "surface": 7430000, - "canton": null, - "numero_insee": "02204" - } - }, - { - "pk": 28903, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COLLIGIS-CRANDELAIN", - "center": "POINT (693865.6289888909086585 2497286.4616320300847292)", - "surface": 6770000, - "canton": null, - "numero_insee": "02205" - } - }, - { - "pk": 29758, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COLONFAY", - "center": "POINT (698898.1129848823184147 2541055.5843777810223401)", - "surface": 3370000, - "canton": null, - "numero_insee": "02206" - } - }, - { - "pk": 12583, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COMMENCHON", - "center": "POINT (658883.4137357703875750 2516302.5697672455571592)", - "surface": 3360000, - "canton": null, - "numero_insee": "02207" - } - }, - { - "pk": 23572, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CONCEVREUX", - "center": "POINT (705455.9613259575562552 2487478.4588697794824839)", - "surface": 13280000, - "canton": null, - "numero_insee": "02208" - } - }, - { - "pk": 6362, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CONDE-EN-BRIE", - "center": "POINT (689600.9383645245106891 2445517.0195996160618961)", - "surface": 4450000, - "canton": null, - "numero_insee": "02209" - } - }, - { - "pk": 31642, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CONDE-SUR-AISNE", - "center": "POINT (682021.6941024775151163 2489781.5721319480799139)", - "surface": 3830000, - "canton": null, - "numero_insee": "02210" - } - }, - { - "pk": 7939, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CONDE-SUR-SUIPPE", - "center": "POINT (716725.7736008116044104 2491876.7712274496443570)", - "surface": 5900000, - "canton": null, - "numero_insee": "02211" - } - }, - { - "pk": 11219, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CONDREN", - "center": "POINT (667992.5229157727444544 2515879.1894528670236468)", - "surface": 5630000, - "canton": null, - "numero_insee": "02212" - } - }, - { - "pk": 12485, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CONNIGIS", - "center": "POINT (687467.5112213615793735 2449301.4846986844204366)", - "surface": 5510000, - "canton": null, - "numero_insee": "02213" - } - }, - { - "pk": 24430, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CONTESCOURT", - "center": "POINT (664645.4597193064400926 2533061.2599593000486493)", - "surface": 3500000, - "canton": null, - "numero_insee": "02214" - } - }, - { - "pk": 5988, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CORBENY", - "center": "POINT (708076.8628389255609363 2497006.6509716305881739)", - "surface": 15320000, - "canton": null, - "numero_insee": "02215" - } - }, - { - "pk": 22633, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CORCY", - "center": "POINT (662648.5208347843727097 2473307.4668209776282310)", - "surface": 7360000, - "canton": null, - "numero_insee": "02216" - } - }, - { - "pk": 33932, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COUCY-LE-CHATEAU-AUFFRIQUE", - "center": "POINT (670907.3266160503262654 2502495.5928983073681593)", - "surface": 11360000, - "canton": null, - "numero_insee": "02217" - } - }, - { - "pk": 8267, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COUCY-LES-EPPES", - "center": "POINT (704285.7542593267280608 2507481.0166291841305792)", - "surface": 6170000, - "canton": null, - "numero_insee": "02218" - } - }, - { - "pk": 29996, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COUCY-LA-VILLE", - "center": "POINT (672885.5885969977825880 2505213.9812074205838144)", - "surface": 6140000, - "canton": null, - "numero_insee": "02219" - } - }, - { - "pk": 18577, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COULONGES-COHAN", - "center": "POINT (694118.9977555194636807 2467369.5919720688834786)", - "surface": 28720000, - "canton": null, - "numero_insee": "02220" - } - }, - { - "pk": 6126, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COUPRU", - "center": "POINT (668561.4176403083838522 2448541.2194381258450449)", - "surface": 7830000, - "canton": null, - "numero_insee": "02221" - } - }, - { - "pk": 10333, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURBES", - "center": "POINT (681156.4455132284201682 2521093.5666337427683175)", - "surface": 3220000, - "canton": null, - "numero_insee": "02222" - } - }, - { - "pk": 25916, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURBOIN", - "center": "POINT (685604.4900848432444036 2444782.7295046783983707)", - "surface": 14030000, - "canton": null, - "numero_insee": "02223" - } - }, - { - "pk": 30793, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURCELLES-SUR-VESLE", - "center": "POINT (690175.3453521921765059 2484046.9083107663318515)", - "surface": 9070000, - "canton": null, - "numero_insee": "02224" - } - }, - { - "pk": 3311, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURCHAMPS", - "center": "POINT (667681.4899093561107293 2457939.9799545421265066)", - "surface": 2750000, - "canton": null, - "numero_insee": "02225" - } - }, - { - "pk": 17197, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURMELLES", - "center": "POINT (670169.1618572224397212 2483277.3160329554229975)", - "surface": 6750000, - "canton": null, - "numero_insee": "02226" - } - }, - { - "pk": 6481, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURMONT", - "center": "POINT (690373.5626594668719918 2460633.5178791349753737)", - "surface": 10110000, - "canton": null, - "numero_insee": "02227" - } - }, - { - "pk": 30539, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURTEMONT-VARENNES", - "center": "POINT (688034.8367800903506577 2453208.8637595367617905)", - "surface": 6020000, - "canton": null, - "numero_insee": "02228" - } - }, - { - "pk": 26559, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COURTRIZY-ET-FUSSIGNY", - "center": "POINT (705626.3333203219808638 2502789.4789662361145020)", - "surface": 4290000, - "canton": null, - "numero_insee": "02229" - } - }, - { - "pk": 34369, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COUVRELLES", - "center": "POINT (683485.1192752618808299 2482389.2705458141863346)", - "surface": 7530000, - "canton": null, - "numero_insee": "02230" - } - }, - { - "pk": 32931, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COUVRON-ET-AUMENCOURT", - "center": "POINT (685792.7656347684096545 2517130.3705147183500230)", - "surface": 13640000, - "canton": null, - "numero_insee": "02231" - } - }, - { - "pk": 18627, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "COYOLLES", - "center": "POINT (647361.7122739001642913 2470576.8094971496611834)", - "surface": 24890000, - "canton": null, - "numero_insee": "02232" - } - }, - { - "pk": 13267, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CRAMAILLE", - "center": "POINT (681282.8454419890185818 2470663.1468396824784577)", - "surface": 8190000, - "canton": null, - "numero_insee": "02233" - } - }, - { - "pk": 8147, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CRAONNE", - "center": "POINT (705589.0551167586818337 2495384.5552143147215247)", - "surface": 8710000, - "canton": null, - "numero_insee": "02234" - } - }, - { - "pk": 20077, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CRAONNELLE", - "center": "POINT (704509.6521118776872754 2492873.8372033578343689)", - "surface": 6010000, - "canton": null, - "numero_insee": "02235" - } - }, - { - "pk": 33105, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CRECY-AU-MONT", - "center": "POINT (670737.6555053082993254 2498891.9244536790065467)", - "surface": 11840000, - "canton": null, - "numero_insee": "02236" - } - }, - { - "pk": 4607, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CRECY-SUR-SERRE", - "center": "POINT (692846.5793684408999979 2523093.6576216248795390)", - "surface": 18250000, - "canton": null, - "numero_insee": "02237" - } - }, - { - "pk": 17723, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CREPY", - "center": "POINT (685027.8972058953950182 2512921.3385056694969535)", - "surface": 27780000, - "canton": null, - "numero_insee": "02238" - } - }, - { - "pk": 25523, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CREZANCY", - "center": "POINT (685860.6390116834081709 2449988.3495149249210954)", - "surface": 7080000, - "canton": null, - "numero_insee": "02239" - } - }, - { - "pk": 13778, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA CROIX-SUR-OURCQ", - "center": "POINT (673943.7248807165306062 2462896.0979366935789585)", - "surface": 10560000, - "canton": null, - "numero_insee": "02241" - } - }, - { - "pk": 36212, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CROUTTES-SUR-MARNE", - "center": "POINT (666710.1597083165543154 2442621.6568487607873976)", - "surface": 4340000, - "canton": null, - "numero_insee": "02242" - } - }, - { - "pk": 35287, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CROUY", - "center": "POINT (674710.8530826935311779 2490520.2510304041206837)", - "surface": 10340000, - "canton": null, - "numero_insee": "02243" - } - }, - { - "pk": 17813, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CRUPILLY", - "center": "POINT (701730.9186302440939471 2549184.3321309555321932)", - "surface": 3510000, - "canton": null, - "numero_insee": "02244" - } - }, - { - "pk": 31210, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUFFIES", - "center": "POINT (671609.1248152554035187 2490494.0340961609035730)", - "surface": 5010000, - "canton": null, - "numero_insee": "02245" - } - }, - { - "pk": 4461, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUGNY", - "center": "POINT (659025.2458529295399785 2523207.9421374853700399)", - "surface": 9410000, - "canton": null, - "numero_insee": "02246" - } - }, - { - "pk": 27007, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUIRIEUX", - "center": "POINT (707166.9020714118378237 2521714.1091935634613037)", - "surface": 6560000, - "canton": null, - "numero_insee": "02248" - } - }, - { - "pk": 28484, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUIRY-HOUSSE", - "center": "POINT (683826.7701469092862681 2477489.0363615220412612)", - "surface": 8580000, - "canton": null, - "numero_insee": "02249" - } - }, - { - "pk": 26161, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUIRY-LES-CHAUDARDES", - "center": "POINT (703542.1747045313240960 2488963.1815964337438345)", - "surface": 5170000, - "canton": null, - "numero_insee": "02250" - } - }, - { - "pk": 32056, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUIRY-LES-IVIERS", - "center": "POINT (727397.7972284655552357 2531291.4867019499652088)", - "surface": 4870000, - "canton": null, - "numero_insee": "02251" - } - }, - { - "pk": 11645, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUISSY-ET-GENY", - "center": "POINT (699428.0136365628568456 2490329.1954213990829885)", - "surface": 4980000, - "canton": null, - "numero_insee": "02252" - } - }, - { - "pk": 29799, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUISY-EN-ALMONT", - "center": "POINT (666194.2821400505490601 2491849.1642409930936992)", - "surface": 9070000, - "canton": null, - "numero_insee": "02253" - } - }, - { - "pk": 32312, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CUTRY", - "center": "POINT (662164.6549662201432511 2483209.7047192258760333)", - "surface": 4760000, - "canton": null, - "numero_insee": "02254" - } - }, - { - "pk": 36253, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "CYS-LA-COMMUNE", - "center": "POINT (689741.2383534255204722 2488045.7648027515970170)", - "surface": 4440000, - "canton": null, - "numero_insee": "02255" - } - }, - { - "pk": 29549, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DAGNY-LAMBERCY", - "center": "POINT (722992.9389988360926509 2531554.2461730553768575)", - "surface": 10060000, - "canton": null, - "numero_insee": "02256" - } - }, - { - "pk": 7538, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DALLON", - "center": "POINT (664314.8828893927857280 2536660.6023943368345499)", - "surface": 5770000, - "canton": null, - "numero_insee": "02257" - } - }, - { - "pk": 6091, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DAMMARD", - "center": "POINT (661349.0906209391541779 2461288.7248001876287162)", - "surface": 8120000, - "canton": null, - "numero_insee": "02258" - } - }, - { - "pk": 26560, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DAMPLEUX", - "center": "POINT (658758.9605779644334689 2471773.6655109855346382)", - "surface": 8170000, - "canton": null, - "numero_insee": "02259" - } - }, - { - "pk": 8222, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DANIZY", - "center": "POINT (676868.5369573794305325 2519356.2735957405529916)", - "surface": 4540000, - "canton": null, - "numero_insee": "02260" - } - }, - { - "pk": 19977, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DERCY", - "center": "POINT (697337.9497319899965078 2524432.4848852949216962)", - "surface": 11560000, - "canton": null, - "numero_insee": "02261" - } - }, - { - "pk": 27036, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DEUILLET", - "center": "POINT (674003.3565080683911219 2515029.4381306883879006)", - "surface": 3790000, - "canton": null, - "numero_insee": "02262" - } - }, - { - "pk": 8035, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DHUIZEL", - "center": "POINT (692865.0026868483982980 2485470.5695347324945033)", - "surface": 6870000, - "canton": null, - "numero_insee": "02263" - } - }, - { - "pk": 34589, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DIZY-LE-GROS", - "center": "POINT (721218.5354235956910998 2516630.1963241444900632)", - "surface": 20040000, - "canton": null, - "numero_insee": "02264" - } - }, - { - "pk": 28168, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DOHIS", - "center": "POINT (730198.4162054200423881 2531415.3460635165683925)", - "surface": 8170000, - "canton": null, - "numero_insee": "02265" - } - }, - { - "pk": 36690, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DOLIGNON", - "center": "POINT (726327.8215034449240193 2527680.2412805357016623)", - "surface": 3190000, - "canton": null, - "numero_insee": "02266" - } - }, - { - "pk": 31617, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DOMMIERS", - "center": "POINT (663979.1884760714601725 2481624.0102948355488479)", - "surface": 7260000, - "canton": null, - "numero_insee": "02267" - } - }, - { - "pk": 8371, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DOMPTIN", - "center": "POINT (668476.5743055903585628 2446739.3084471570327878)", - "surface": 4520000, - "canton": null, - "numero_insee": "02268" - } - }, - { - "pk": 4484, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DORENGT", - "center": "POINT (698196.9185856255935505 2552956.5872546448372304)", - "surface": 10530000, - "canton": null, - "numero_insee": "02269" - } - }, - { - "pk": 14246, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DOUCHY", - "center": "POINT (657139.0040666181594133 2533298.0629642480053008)", - "surface": 5110000, - "canton": null, - "numero_insee": "02270" - } - }, - { - "pk": 35681, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DRAVEGNY", - "center": "POINT (695080.5903857578523457 2471980.7085613459348679)", - "surface": 15970000, - "canton": null, - "numero_insee": "02271" - } - }, - { - "pk": 24152, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DROIZY", - "center": "POINT (676634.5238946489989758 2476027.3084837896749377)", - "surface": 5380000, - "canton": null, - "numero_insee": "02272" - } - }, - { - "pk": 33410, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "DURY", - "center": "POINT (657479.6939488785574213 2528498.0774825536645949)", - "surface": 7760000, - "canton": null, - "numero_insee": "02273" - } - }, - { - "pk": 37787, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EBOULEAU", - "center": "POINT (711674.3908194452524185 2521151.9793678876012564)", - "surface": 13020000, - "canton": null, - "numero_insee": "02274" - } - }, - { - "pk": 35280, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EFFRY", - "center": "POINT (718749.7812830295879394 2548128.0068476917222142)", - "surface": 2730000, - "canton": null, - "numero_insee": "02275" - } - }, - { - "pk": 16873, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ENGLANCOURT", - "center": "POINT (705738.0487452066736296 2548617.9547056127339602)", - "surface": 8090000, - "canton": null, - "numero_insee": "02276" - } - }, - { - "pk": 11102, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EPAGNY", - "center": "POINT (666547.1748737451853231 2497455.6481799790635705)", - "surface": 10920000, - "canton": null, - "numero_insee": "02277" - } - }, - { - "pk": 13123, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EPARCY", - "center": "POINT (724682.5432971664704382 2544676.3447566605173051)", - "surface": 7520000, - "canton": null, - "numero_insee": "02278" - } - }, - { - "pk": 9495, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EPAUX-BEZU", - "center": "POINT (674298.0293825010303408 2456494.9081362127326429)", - "surface": 19870000, - "canton": null, - "numero_insee": "02279" - } - }, - { - "pk": 26976, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EPIEDS", - "center": "POINT (681399.6431100766640157 2456855.1550383316352963)", - "surface": 19090000, - "canton": null, - "numero_insee": "02280" - } - }, - { - "pk": 18101, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "L'EPINE-AUX-BOIS", - "center": "POINT (681193.2197889708913863 2433938.1701754871755838)", - "surface": 12310000, - "canton": null, - "numero_insee": "02281" - } - }, - { - "pk": 12433, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EPPES", - "center": "POINT (701588.5257937234127894 2506957.8451874651946127)", - "surface": 7710000, - "canton": null, - "numero_insee": "02282" - } - }, - { - "pk": 13264, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ERLON", - "center": "POINT (698714.9536116167437285 2527245.8343565305694938)", - "surface": 8760000, - "canton": null, - "numero_insee": "02283" - } - }, - { - "pk": 34587, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ERLOY", - "center": "POINT (707944.2630948137957603 2548036.3146396363154054)", - "surface": 7470000, - "canton": null, - "numero_insee": "02284" - } - }, - { - "pk": 16724, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ESQUEHERIES", - "center": "POINT (701682.5795412783045322 2554887.2257175184786320)", - "surface": 16360000, - "canton": null, - "numero_insee": "02286" - } - }, - { - "pk": 27012, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ESSIGNY-LE-GRAND", - "center": "POINT (667462.9837981930468231 2531183.9287080843932927)", - "surface": 13300000, - "canton": null, - "numero_insee": "02287" - } - }, - { - "pk": 34421, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ESSIGNY-LE-PETIT", - "center": "POINT (674151.5209353293757886 2544848.4823282966390252)", - "surface": 4610000, - "canton": null, - "numero_insee": "02288" - } - }, - { - "pk": 31806, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ESSISES", - "center": "POINT (678928.4310735689941794 2441424.0530404467135668)", - "surface": 7530000, - "canton": null, - "numero_insee": "02289" - } - }, - { - "pk": 32180, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ESSOMES-SUR-MARNE", - "center": "POINT (673361.7186471235472709 2448881.9818513458594680)", - "surface": 28670000, - "canton": null, - "numero_insee": "02290" - } - }, - { - "pk": 12162, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ESTREES", - "center": "POINT (667778.1279947191942483 2553099.4463475141674280)", - "surface": 7050000, - "canton": null, - "numero_insee": "02291" - } - }, - { - "pk": 12678, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ETAMPES-SUR-MARNE", - "center": "POINT (679067.6259589712135494 2448630.0232882420532405)", - "surface": 2220000, - "canton": null, - "numero_insee": "02292" - } - }, - { - "pk": 34236, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ETAVES-ET-BOCQUIAUX", - "center": "POINT (680021.5447689977008849 2548800.3947175452485681)", - "surface": 13730000, - "canton": null, - "numero_insee": "02293" - } - }, - { - "pk": 6152, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ETOUVELLES", - "center": "POINT (690214.5100511509226635 2503059.1497375443577766)", - "surface": 2390000, - "canton": null, - "numero_insee": "02294" - } - }, - { - "pk": 17874, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ETREAUPONT", - "center": "POINT (714169.5066715265857056 2545487.6098469402641058)", - "surface": 17580000, - "canton": null, - "numero_insee": "02295" - } - }, - { - "pk": 33929, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ETREILLERS", - "center": "POINT (659103.7329057933529839 2537617.1932372245937586)", - "surface": 8670000, - "canton": null, - "numero_insee": "02296" - } - }, - { - "pk": 5459, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ETREPILLY", - "center": "POINT (673917.2478940519504249 2454190.1775468117557466)", - "surface": 5270000, - "canton": null, - "numero_insee": "02297" - } - }, - { - "pk": 6809, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ETREUX", - "center": "POINT (694863.8885401550214738 2556630.4852100983262062)", - "surface": 10310000, - "canton": null, - "numero_insee": "02298" - } - }, - { - "pk": 11489, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "EVERGNICOURT", - "center": "POINT (723288.6587139299372211 2496735.5006715892814100)", - "surface": 9270000, - "canton": null, - "numero_insee": "02299" - } - }, - { - "pk": 26092, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FAUCOUCOURT", - "center": "POINT (681796.3691619457677007 2504588.8974984977394342)", - "surface": 7370000, - "canton": null, - "numero_insee": "02301" - } - }, - { - "pk": 7693, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FAVEROLLES", - "center": "POINT (661273.9079970702296123 2470193.8644036413170397)", - "surface": 13720000, - "canton": null, - "numero_insee": "02302" - } - }, - { - "pk": 29345, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FAYET", - "center": "POINT (665870.9232434906298295 2541976.8681660564616323)", - "surface": 5910000, - "canton": null, - "numero_insee": "02303" - } - }, - { - "pk": 32767, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA FERE", - "center": "POINT (674568.1542593272170052 2519236.7639722805470228)", - "surface": 6840000, - "canton": null, - "numero_insee": "02304" - } - }, - { - "pk": 19203, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FERE-EN-TARDENOIS", - "center": "POINT (685624.2600505189038813 2466096.9008269961923361)", - "surface": 20930000, - "canton": null, - "numero_insee": "02305" - } - }, - { - "pk": 4283, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA FERTE-CHEVRESIS", - "center": "POINT (687604.0133781321346760 2527752.0958481533452868)", - "surface": 24160000, - "canton": null, - "numero_insee": "02306" - } - }, - { - "pk": 37076, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA FERTE-MILON", - "center": "POINT (658720.5545628247782588 2464468.6193295321427286)", - "surface": 18970000, - "canton": null, - "numero_insee": "02307" - } - }, - { - "pk": 11101, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FESTIEUX", - "center": "POINT (703114.7863819971680641 2503968.9296960644423962)", - "surface": 6720000, - "canton": null, - "numero_insee": "02309" - } - }, - { - "pk": 31208, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FIEULAINE", - "center": "POINT (679748.4719540826044977 2545596.2191387428902090)", - "surface": 7780000, - "canton": null, - "numero_insee": "02310" - } - }, - { - "pk": 11490, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FILAIN", - "center": "POINT (688576.2541261804290116 2495640.6771755781956017)", - "surface": 4740000, - "canton": null, - "numero_insee": "02311" - } - }, - { - "pk": 18905, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA FLAMENGRIE", - "center": "POINT (713970.9644508506171405 2557092.6576054450124502)", - "surface": 26590000, - "canton": null, - "numero_insee": "02312" - } - }, - { - "pk": 23862, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FLAVIGNY-LE-GRAND-ET-BEAURAIN", - "center": "POINT (696170.4427098102169111 2544134.2937886160798371)", - "surface": 13780000, - "canton": null, - "numero_insee": "02313" - } - }, - { - "pk": 11778, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FLAVY-LE-MARTEL", - "center": "POINT (661925.0960625610314310 2523432.5441465396434069)", - "surface": 12940000, - "canton": null, - "numero_insee": "02315" - } - }, - { - "pk": 6728, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FLEURY", - "center": "POINT (659936.8424448342993855 2474485.3437389517202973)", - "surface": 6590000, - "canton": null, - "numero_insee": "02316" - } - }, - { - "pk": 34592, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FLUQUIERES", - "center": "POINT (659034.0853450685972348 2534014.4740148871205747)", - "surface": 5250000, - "canton": null, - "numero_insee": "02317" - } - }, - { - "pk": 25019, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FOLEMBRAY", - "center": "POINT (669275.1704334369860590 2506184.0869052479974926)", - "surface": 8950000, - "canton": null, - "numero_insee": "02318" - } - }, - { - "pk": 37168, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONSOMME", - "center": "POINT (676247.5231760358437896 2545466.5538299344480038)", - "surface": 9690000, - "canton": null, - "numero_insee": "02319" - } - }, - { - "pk": 12027, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONTAINE-LES-CLERCS", - "center": "POINT (663129.4670451950514689 2534849.5255871233530343)", - "surface": 5310000, - "canton": null, - "numero_insee": "02320" - } - }, - { - "pk": 35529, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONTAINE-LES-VERVINS", - "center": "POINT (712908.7408318705856800 2540774.1521543981507421)", - "surface": 19880000, - "canton": null, - "numero_insee": "02321" - } - }, - { - "pk": 25368, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONTAINE-NOTRE-DAME", - "center": "POINT (678169.6508240761468187 2542981.3440078846178949)", - "surface": 12020000, - "canton": null, - "numero_insee": "02322" - } - }, - { - "pk": 37792, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONTAINE-UTERTE", - "center": "POINT (674124.4553289562463760 2548050.1210017320699990)", - "surface": 5790000, - "canton": null, - "numero_insee": "02323" - } - }, - { - "pk": 23654, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONTENELLE", - "center": "POINT (708239.2418314185924828 2560445.9819643199443817)", - "surface": 10390000, - "canton": null, - "numero_insee": "02324" - } - }, - { - "pk": 7329, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONTENELLE-EN-BRIE", - "center": "POINT (684674.1649029825348407 2436469.3020012639462948)", - "surface": 8350000, - "canton": null, - "numero_insee": "02325" - } - }, - { - "pk": 36254, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FONTENOY", - "center": "POINT (662302.2500576066086069 2490615.5414267834275961)", - "surface": 9020000, - "canton": null, - "numero_insee": "02326" - } - }, - { - "pk": 31962, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FORESTE", - "center": "POINT (654726.7745878823334351 2534578.4783689873293042)", - "surface": 4930000, - "canton": null, - "numero_insee": "02327" - } - }, - { - "pk": 13607, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FOSSOY", - "center": "POINT (683957.8245350338984281 2450172.3813465256243944)", - "surface": 7550000, - "canton": null, - "numero_insee": "02328" - } - }, - { - "pk": 34825, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FOURDRAIN", - "center": "POINT (681215.6910999461542815 2514089.8174140141345561)", - "surface": 9550000, - "canton": null, - "numero_insee": "02329" - } - }, - { - "pk": 25189, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FRANCILLY-SELENCY", - "center": "POINT (664186.1012895280728117 2540061.5208663875237107)", - "surface": 5450000, - "canton": null, - "numero_insee": "02330" - } - }, - { - "pk": 8345, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FRANQUEVILLE", - "center": "POINT (705240.3906597821041942 2536506.6281618168577552)", - "surface": 2950000, - "canton": null, - "numero_insee": "02331" - } - }, - { - "pk": 34090, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FRESNES-EN-TARDENOIS", - "center": "POINT (688467.3759326580911875 2461217.7735728221014142)", - "surface": 9060000, - "canton": null, - "numero_insee": "02332" - } - }, - { - "pk": 33674, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FRESNES", - "center": "POINT (674773.0917551207821816 2506830.9226970858871937)", - "surface": 7220000, - "canton": null, - "numero_insee": "02333" - } - }, - { - "pk": 22465, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FRESNOY-LE-GRAND", - "center": "POINT (677698.3729682236444205 2551382.2561465669423342)", - "surface": 15160000, - "canton": null, - "numero_insee": "02334" - } - }, - { - "pk": 36855, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FRESSANCOURT", - "center": "POINT (678805.9371480373665690 2515070.0450012655928731)", - "surface": 2550000, - "canton": null, - "numero_insee": "02335" - } - }, - { - "pk": 26789, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FRIERES-FAILLOUEL", - "center": "POINT (664946.9695421160431579 2521056.6155938766896725)", - "surface": 15390000, - "canton": null, - "numero_insee": "02336" - } - }, - { - "pk": 28474, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FROIDESTREES", - "center": "POINT (713024.7954694490181282 2550680.9276014277711511)", - "surface": 4850000, - "canton": null, - "numero_insee": "02337" - } - }, - { - "pk": 32706, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "FROIDMONT-COHARTILLE", - "center": "POINT (699965.6126647274941206 2521352.8800762807950377)", - "surface": 8710000, - "canton": null, - "numero_insee": "02338" - } - }, - { - "pk": 19632, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GANDELU", - "center": "POINT (661709.2441544518806040 2454187.1132607599720359)", - "surface": 10070000, - "canton": null, - "numero_insee": "02339" - } - }, - { - "pk": 34820, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GAUCHY", - "center": "POINT (668417.0149773390730843 2536695.2541347187943757)", - "surface": 6180000, - "canton": null, - "numero_insee": "02340" - } - }, - { - "pk": 24221, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GERCY", - "center": "POINT (710543.9971364369848743 2536451.5491698966361582)", - "surface": 6570000, - "canton": null, - "numero_insee": "02341" - } - }, - { - "pk": 10202, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GERGNY", - "center": "POINT (714534.8988010260509327 2549593.1029700040817261)", - "surface": 6000000, - "canton": null, - "numero_insee": "02342" - } - }, - { - "pk": 27974, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GERMAINE", - "center": "POINT (656321.6989173169713467 2535292.3518817131407559)", - "surface": 4490000, - "canton": null, - "numero_insee": "02343" - } - }, - { - "pk": 37864, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GERNICOURT", - "center": "POINT (710941.2179011923726648 2489626.3029326880350709)", - "surface": 7570000, - "canton": null, - "numero_insee": "02344" - } - }, - { - "pk": 30243, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GIBERCOURT", - "center": "POINT (668196.3180766026489437 2527287.7938835774548352)", - "surface": 2650000, - "canton": null, - "numero_insee": "02345" - } - }, - { - "pk": 30351, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GIZY", - "center": "POINT (703534.4828577016014606 2513478.3281245883554220)", - "surface": 10350000, - "canton": null, - "numero_insee": "02346" - } - }, - { - "pk": 10817, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GLAND", - "center": "POINT (681943.9484116291860119 2451656.3358168639242649)", - "surface": 5570000, - "canton": null, - "numero_insee": "02347" - } - }, - { - "pk": 6622, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GLENNES", - "center": "POINT (700578.6544367962051183 2484435.2171028209850192)", - "surface": 8630000, - "canton": null, - "numero_insee": "02348" - } - }, - { - "pk": 33595, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GOUDELANCOURT-LES-PIERREPONT", - "center": "POINT (709473.2185220886021852 2521133.3067636396735907)", - "surface": 8750000, - "canton": null, - "numero_insee": "02350" - } - }, - { - "pk": 27187, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GOUSSANCOURT", - "center": "POINT (696254.9577936294954270 2463285.0194868142716587)", - "surface": 8550000, - "canton": null, - "numero_insee": "02351" - } - }, - { - "pk": 16181, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GOUY", - "center": "POINT (666551.3193686663871631 2556190.8702280367724597)", - "surface": 17580000, - "canton": null, - "numero_insee": "02352" - } - }, - { - "pk": 30409, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRANDLUP-ET-FAY", - "center": "POINT (701195.0834869564278051 2517961.2397130494937301)", - "surface": 20650000, - "canton": null, - "numero_insee": "02353" - } - }, - { - "pk": 35039, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRANDRIEUX", - "center": "POINT (733535.0234407567186281 2527341.2541904239915311)", - "surface": 4570000, - "canton": null, - "numero_insee": "02354" - } - }, - { - "pk": 27814, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRICOURT", - "center": "POINT (664955.2481964108301327 2543770.1893559237942100)", - "surface": 10050000, - "canton": null, - "numero_insee": "02355" - } - }, - { - "pk": 27343, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRISOLLES", - "center": "POINT (675572.5670134313404560 2459607.7135316566564143)", - "surface": 10870000, - "canton": null, - "numero_insee": "02356" - } - }, - { - "pk": 36531, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRONARD", - "center": "POINT (711362.2388760941103101 2534357.2448521014302969)", - "surface": 7260000, - "canton": null, - "numero_insee": "02357" - } - }, - { - "pk": 27973, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GROUGIS", - "center": "POINT (685805.0283041677903384 2551150.6639893692918122)", - "surface": 11320000, - "canton": null, - "numero_insee": "02358" - } - }, - { - "pk": 8906, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRUGIES", - "center": "POINT (667629.2779686655849218 2535187.7107757227495313)", - "surface": 5200000, - "canton": null, - "numero_insee": "02359" - } - }, - { - "pk": 5458, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GUIGNICOURT", - "center": "POINT (717498.1921754770446569 2495185.3978667920455337)", - "surface": 18010000, - "canton": null, - "numero_insee": "02360" - } - }, - { - "pk": 20731, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GUISE", - "center": "POINT (692660.1704253471689299 2545105.1465448304079473)", - "surface": 16340000, - "canton": null, - "numero_insee": "02361" - } - }, - { - "pk": 9171, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GUIVRY", - "center": "POINT (656672.9450962998671457 2517384.5813373746350408)", - "surface": 7190000, - "canton": null, - "numero_insee": "02362" - } - }, - { - "pk": 31006, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GUNY", - "center": "POINT (666909.3613921992946416 2501961.5042495783418417)", - "surface": 9420000, - "canton": null, - "numero_insee": "02363" - } - }, - { - "pk": 35533, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GUYENCOURT", - "center": "POINT (709375.9669630811549723 2485410.3713015131652355)", - "surface": 4310000, - "canton": null, - "numero_insee": "02364" - } - }, - { - "pk": 29344, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HANNAPES", - "center": "POINT (691783.5077610004227608 2554102.9545219633728266)", - "surface": 9270000, - "canton": null, - "numero_insee": "02366" - } - }, - { - "pk": 33671, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HAPPENCOURT", - "center": "POINT (660951.9719323264434934 2532029.4762417208403349)", - "surface": 5220000, - "canton": null, - "numero_insee": "02367" - } - }, - { - "pk": 36336, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HARAMONT", - "center": "POINT (650511.2270805709995329 2476807.3502755202353001)", - "surface": 12280000, - "canton": null, - "numero_insee": "02368" - } - }, - { - "pk": 7088, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HARCIGNY", - "center": "POINT (718659.2549817259423435 2535219.6485480871051550)", - "surface": 7600000, - "canton": null, - "numero_insee": "02369" - } - }, - { - "pk": 28249, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HARGICOURT", - "center": "POINT (661279.0585877030389383 2552544.2668472011573613)", - "surface": 8090000, - "canton": null, - "numero_insee": "02370" - } - }, - { - "pk": 29177, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HARLY", - "center": "POINT (671902.7682687932392582 2538625.8322833948768675)", - "surface": 3720000, - "canton": null, - "numero_insee": "02371" - } - }, - { - "pk": 27821, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HARTENNES-ET-TAUX", - "center": "POINT (674332.3689172081649303 2476107.9098934559151530)", - "surface": 6200000, - "canton": null, - "numero_insee": "02372" - } - }, - { - "pk": 12292, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HARY", - "center": "POINT (714062.7995506278239191 2534480.2184183523058891)", - "surface": 11190000, - "canton": null, - "numero_insee": "02373" - } - }, - { - "pk": 23410, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LEHAUCOURT", - "center": "POINT (667533.7631229286780581 2546493.5488960058428347)", - "surface": 9400000, - "canton": null, - "numero_insee": "02374" - } - }, - { - "pk": 20171, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HAUTEVESNES", - "center": "POINT (665687.0832053164485842 2457122.6090825540013611)", - "surface": 7260000, - "canton": null, - "numero_insee": "02375" - } - }, - { - "pk": 8882, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HAUTEVILLE", - "center": "POINT (685364.0441964229103178 2544142.8522949861362576)", - "surface": 7110000, - "canton": null, - "numero_insee": "02376" - } - }, - { - "pk": 6849, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HAUTION", - "center": "POINT (707288.8761278567835689 2542727.6553744608536363)", - "surface": 9500000, - "canton": null, - "numero_insee": "02377" - } - }, - { - "pk": 9166, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA HERIE", - "center": "POINT (722784.1163430470041931 2544360.0434860452078283)", - "surface": 4240000, - "canton": null, - "numero_insee": "02378" - } - }, - { - "pk": 31048, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE HERIE-LA-VIEVILLE", - "center": "POINT (694830.7418625198770314 2536918.7057949318550527)", - "surface": 9280000, - "canton": null, - "numero_insee": "02379" - } - }, - { - "pk": 13265, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HINACOURT", - "center": "POINT (669090.0298962090164423 2528095.8239086549729109)", - "surface": 3110000, - "canton": null, - "numero_insee": "02380" - } - }, - { - "pk": 4965, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HIRSON", - "center": "POINT (727030.2188597134081647 2550999.9663332668133080)", - "surface": 33980000, - "canton": null, - "numero_insee": "02381" - } - }, - { - "pk": 10571, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HOLNON", - "center": "POINT (662178.3081667028600350 2540845.0363280279561877)", - "surface": 6400000, - "canton": null, - "numero_insee": "02382" - } - }, - { - "pk": 31414, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HOMBLIERES", - "center": "POINT (674688.1488559956196696 2540550.4963110275566578)", - "surface": 14710000, - "canton": null, - "numero_insee": "02383" - } - }, - { - "pk": 9197, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HOURY", - "center": "POINT (708971.1693965957965702 2533136.2481511221267283)", - "surface": 3500000, - "canton": null, - "numero_insee": "02384" - } - }, - { - "pk": 24222, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "HOUSSET", - "center": "POINT (697956.9379876402672380 2534043.4704730054363608)", - "surface": 13260000, - "canton": null, - "numero_insee": "02385" - } - }, - { - "pk": 25363, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "IRON", - "center": "POINT (695409.9075562078505754 2551231.9900876628234982)", - "surface": 9760000, - "canton": null, - "numero_insee": "02386" - } - }, - { - "pk": 10996, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ITANCOURT", - "center": "POINT (672937.9603505686391145 2534532.1563209826126695)", - "surface": 7090000, - "canton": null, - "numero_insee": "02387" - } - }, - { - "pk": 10832, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "IVIERS", - "center": "POINT (729679.4468278931453824 2533612.2467421386390924)", - "surface": 7580000, - "canton": null, - "numero_insee": "02388" - } - }, - { - "pk": 14169, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JAULGONNE", - "center": "POINT (687417.5473089350853115 2455204.9561812388710678)", - "surface": 1740000, - "canton": null, - "numero_insee": "02389" - } - }, - { - "pk": 9543, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JEANCOURT", - "center": "POINT (658313.0066476243082434 2548316.7909432845190167)", - "surface": 5900000, - "canton": null, - "numero_insee": "02390" - } - }, - { - "pk": 20978, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JEANTES", - "center": "POINT (724652.1849237116985023 2536471.2538935095071793)", - "surface": 15670000, - "canton": null, - "numero_insee": "02391" - } - }, - { - "pk": 23296, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JONCOURT", - "center": "POINT (669489.1343008901458234 2551913.2087769955396652)", - "surface": 7390000, - "canton": null, - "numero_insee": "02392" - } - }, - { - "pk": 37171, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JOUAIGNES", - "center": "POINT (686725.8770754120778292 2477813.7605174789205194)", - "surface": 8000000, - "canton": null, - "numero_insee": "02393" - } - }, - { - "pk": 27222, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JUMENCOURT", - "center": "POINT (673412.0790242010261863 2502116.5144372694194317)", - "surface": 6140000, - "canton": null, - "numero_insee": "02395" - } - }, - { - "pk": 12563, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JUMIGNY", - "center": "POINT (700823.7068323586136103 2490941.4003613353706896)", - "surface": 2470000, - "canton": null, - "numero_insee": "02396" - } - }, - { - "pk": 34877, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JUSSY", - "center": "POINT (664914.8577962731942534 2524858.6341766780242324)", - "surface": 13440000, - "canton": null, - "numero_insee": "02397" - } - }, - { - "pk": 6381, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JUVIGNY", - "center": "POINT (670970.7413396640913561 2494991.4614658644422889)", - "surface": 13990000, - "canton": null, - "numero_insee": "02398" - } - }, - { - "pk": 33673, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "JUVINCOURT-ET-DAMARY", - "center": "POINT (712793.0418283755425364 2495445.6560938809998333)", - "surface": 30110000, - "canton": null, - "numero_insee": "02399" - } - }, - { - "pk": 30573, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAFFAUX", - "center": "POINT (679274.4921425670618191 2495161.7238384592346847)", - "surface": 6790000, - "canton": null, - "numero_insee": "02400" - } - }, - { - "pk": 26155, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAIGNY", - "center": "POINT (709698.5997593121137470 2541747.5061136460863054)", - "surface": 10880000, - "canton": null, - "numero_insee": "02401" - } - }, - { - "pk": 23703, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LANCHY", - "center": "POINT (653103.9936168876010925 2537166.3257692228071392)", - "surface": 3720000, - "canton": null, - "numero_insee": "02402" - } - }, - { - "pk": 33982, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LANDIFAY-ET-BERTAIGNEMONT", - "center": "POINT (691225.4813708161236718 2537288.4095657877624035)", - "surface": 19560000, - "canton": null, - "numero_insee": "02403" - } - }, - { - "pk": 31759, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LANDOUZY-LA-COUR", - "center": "POINT (719320.5438556351000443 2539827.9849790213629603)", - "surface": 10070000, - "canton": null, - "numero_insee": "02404" - } - }, - { - "pk": 37165, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LANDOUZY-LA-VILLE", - "center": "POINT (723310.7174632420064881 2541262.6948500717990100)", - "surface": 15820000, - "canton": null, - "numero_insee": "02405" - } - }, - { - "pk": 7656, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LANDRICOURT", - "center": "POINT (674819.6131315405946225 2501327.9166994625702500)", - "surface": 5770000, - "canton": null, - "numero_insee": "02406" - } - }, - { - "pk": 31004, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LANISCOURT", - "center": "POINT (686686.3430671888636425 2506131.1996413152664900)", - "surface": 2980000, - "canton": null, - "numero_insee": "02407" - } - }, - { - "pk": 32809, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAON", - "center": "POINT (692969.4402747023850679 2508585.8700419664382935)", - "surface": 44570000, - "canton": null, - "numero_insee": "02408" - } - }, - { - "pk": 27621, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAPPION", - "center": "POINT (717759.9731472660787404 2511497.7173879276961088)", - "surface": 23660000, - "canton": null, - "numero_insee": "02409" - } - }, - { - "pk": 30381, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LARGNY-SUR-AUTOMNE", - "center": "POINT (652236.6700864500598982 2473920.0451584332622588)", - "surface": 9660000, - "canton": null, - "numero_insee": "02410" - } - }, - { - "pk": 36183, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LATILLY", - "center": "POINT (671148.0202787623275071 2462172.0136244175955653)", - "surface": 9290000, - "canton": null, - "numero_insee": "02411" - } - }, - { - "pk": 15198, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAUNOY", - "center": "POINT (677848.7442419265862554 2474436.5490976078435779)", - "surface": 9190000, - "canton": null, - "numero_insee": "02412" - } - }, - { - "pk": 24624, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAVAL-EN-LAONNOIS", - "center": "POINT (690629.9772555493982509 2501261.5514898821711540)", - "surface": 4540000, - "canton": null, - "numero_insee": "02413" - } - }, - { - "pk": 27474, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAVAQUERESSE", - "center": "POINT (699115.1794283156050369 2550863.1512635182589293)", - "surface": 4520000, - "canton": null, - "numero_insee": "02414" - } - }, - { - "pk": 34772, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LAVERSINE", - "center": "POINT (659454.6878056533169001 2484187.4605858582071960)", - "surface": 7220000, - "canton": null, - "numero_insee": "02415" - } - }, - { - "pk": 27812, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LEME", - "center": "POINT (702313.4388573435135186 2539483.5873175212182105)", - "surface": 11690000, - "canton": null, - "numero_insee": "02416" - } - }, - { - "pk": 35530, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LEMPIRE", - "center": "POINT (660051.4212459471309558 2555735.7489419970661402)", - "surface": 2630000, - "canton": null, - "numero_insee": "02417" - } - }, - { - "pk": 22943, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LERZY", - "center": "POINT (711016.9873210093937814 2551464.3564873556606472)", - "surface": 11610000, - "canton": null, - "numero_insee": "02418" - } - }, - { - "pk": 7654, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LESDINS", - "center": "POINT (670341.9606703566387296 2545716.8095286847092211)", - "surface": 10940000, - "canton": null, - "numero_insee": "02420" - } - }, - { - "pk": 7911, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LESGES", - "center": "POINT (684608.5987426368519664 2479697.0569276288151741)", - "surface": 6660000, - "canton": null, - "numero_insee": "02421" - } - }, - { - "pk": 18626, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LESQUIELLES-SAINT-GERMAIN", - "center": "POINT (692826.3799747773446143 2549108.8876626929268241)", - "surface": 16560000, - "canton": null, - "numero_insee": "02422" - } - }, - { - "pk": 26793, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LEUILLY-SOUS-COUCY", - "center": "POINT (673648.5558014477137476 2497815.8414603504352272)", - "surface": 12780000, - "canton": null, - "numero_insee": "02423" - } - }, - { - "pk": 12434, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LEURY", - "center": "POINT (672892.0901534269796684 2492606.1963693648576736)", - "surface": 3660000, - "canton": null, - "numero_insee": "02424" - } - }, - { - "pk": 28023, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LEUZE", - "center": "POINT (731912.6087632989510894 2541635.9635346923023462)", - "surface": 10210000, - "canton": null, - "numero_insee": "02425" - } - }, - { - "pk": 32212, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LEVERGIES", - "center": "POINT (670113.1120570685015991 2549116.8569419654086232)", - "surface": 7770000, - "canton": null, - "numero_insee": "02426" - } - }, - { - "pk": 8394, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LHUYS", - "center": "POINT (687745.0762272826395929 2475620.9777662525884807)", - "surface": 4880000, - "canton": null, - "numero_insee": "02427" - } - }, - { - "pk": 9922, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LICY-CLIGNON", - "center": "POINT (667795.0725819899234921 2456339.8901673052459955)", - "surface": 4130000, - "canton": null, - "numero_insee": "02428" - } - }, - { - "pk": 29131, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LIERVAL", - "center": "POINT (693245.8090035490458831 2499582.6452035545371473)", - "surface": 3860000, - "canton": null, - "numero_insee": "02429" - } - }, - { - "pk": 10706, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LIESSE-NOTRE-DAME", - "center": "POINT (707035.5210200541187078 2513608.0732177505269647)", - "surface": 10120000, - "canton": null, - "numero_insee": "02430" - } - }, - { - "pk": 5312, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LIEZ", - "center": "POINT (669540.9658431744901463 2522096.0286786775104702)", - "surface": 5510000, - "canton": null, - "numero_insee": "02431" - } - }, - { - "pk": 28922, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LIME", - "center": "POINT (688597.3125738583039492 2481331.8335478091612458)", - "surface": 5640000, - "canton": null, - "numero_insee": "02432" - } - }, - { - "pk": 16013, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LISLET", - "center": "POINT (721680.5691801804350689 2521136.8511428292840719)", - "surface": 8190000, - "canton": null, - "numero_insee": "02433" - } - }, - { - "pk": 7062, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LIZY", - "center": "POINT (682817.2311023242073134 2502196.0489142131991684)", - "surface": 3830000, - "canton": null, - "numero_insee": "02434" - } - }, - { - "pk": 14074, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LOGNY-LES-AUBENTON", - "center": "POINT (735637.4913142047589645 2538966.0407229829579592)", - "surface": 8280000, - "canton": null, - "numero_insee": "02435" - } - }, - { - "pk": 26561, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LONGPONT", - "center": "POINT (664321.6073949630372226 2476623.7117162151262164)", - "surface": 10760000, - "canton": null, - "numero_insee": "02438" - } - }, - { - "pk": 8268, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LONGUEVAL-BARBONVAL", - "center": "POINT (695866.6876170629402623 2485495.9921022951602936)", - "surface": 8580000, - "canton": null, - "numero_insee": "02439" - } - }, - { - "pk": 11927, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LOR", - "center": "POINT (724419.6332489928463474 2504950.2040123227052391)", - "surface": 9000000, - "canton": null, - "numero_insee": "02440" - } - }, - { - "pk": 36929, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LOUATRE", - "center": "POINT (665852.0394237176515162 2473134.3920727833174169)", - "surface": 11120000, - "canton": null, - "numero_insee": "02441" - } - }, - { - "pk": 13960, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LOUPEIGNE", - "center": "POINT (686574.0301751198712736 2472108.8172748610377312)", - "surface": 7330000, - "canton": null, - "numero_insee": "02442" - } - }, - { - "pk": 25340, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LUCY-LE-BOCAGE", - "center": "POINT (668639.4980123389977962 2451143.5994707830250263)", - "surface": 7690000, - "canton": null, - "numero_insee": "02443" - } - }, - { - "pk": 33665, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LUGNY", - "center": "POINT (706373.2030390349682420 2532713.9771250588819385)", - "surface": 4810000, - "canton": null, - "numero_insee": "02444" - } - }, - { - "pk": 11095, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LUZOIR", - "center": "POINT (716741.1158655980834737 2549011.4791594478301704)", - "surface": 11070000, - "canton": null, - "numero_insee": "02445" - } - }, - { - "pk": 25952, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LY-FONTAINE", - "center": "POINT (670304.1900376760168001 2526505.1248286403715611)", - "surface": 3450000, - "canton": null, - "numero_insee": "02446" - } - }, - { - "pk": 27017, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MAAST-ET-VIOLAINE", - "center": "POINT (681522.9244912816211581 2477769.7378894481807947)", - "surface": 11030000, - "canton": null, - "numero_insee": "02447" - } - }, - { - "pk": 10327, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MACHECOURT", - "center": "POINT (708497.2945964356185868 2518223.2717464813031256)", - "surface": 10170000, - "canton": null, - "numero_insee": "02448" - } - }, - { - "pk": 35499, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MACOGNY", - "center": "POINT (664239.7908333940431476 2462613.9806562131270766)", - "surface": 6180000, - "canton": null, - "numero_insee": "02449" - } - }, - { - "pk": 15542, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MACQUIGNY", - "center": "POINT (688780.1906215351773426 2542470.7703706808388233)", - "surface": 20200000, - "canton": null, - "numero_insee": "02450" - } - }, - { - "pk": 26304, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MAGNY-LA-FOSSE", - "center": "POINT (667510.0958334623137489 2549294.9793948605656624)", - "surface": 3710000, - "canton": null, - "numero_insee": "02451" - } - }, - { - "pk": 35774, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MAIZY", - "center": "POINT (700253.0488093254389241 2487434.3573760795406997)", - "surface": 7280000, - "canton": null, - "numero_insee": "02453" - } - }, - { - "pk": 36697, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA MALMAISON", - "center": "POINT (720530.2466203074436635 2503416.2453688317909837)", - "surface": 25820000, - "canton": null, - "numero_insee": "02454" - } - }, - { - "pk": 10328, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MALZY", - "center": "POINT (700139.4298573851119727 2548070.2028394453227520)", - "surface": 10510000, - "canton": null, - "numero_insee": "02455" - } - }, - { - "pk": 18007, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MANICAMP", - "center": "POINT (661056.3423936902545393 2507815.7167983525432646)", - "surface": 10350000, - "canton": null, - "numero_insee": "02456" - } - }, - { - "pk": 29068, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARCHAIS", - "center": "POINT (707460.3429380904417485 2510709.9006928503513336)", - "surface": 15600000, - "canton": null, - "numero_insee": "02457" - } - }, - { - "pk": 10552, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARCHAIS-EN-BRIE", - "center": "POINT (684800.4704196698730811 2433368.2815778553485870)", - "surface": 12780000, - "canton": null, - "numero_insee": "02458" - } - }, - { - "pk": 33670, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARCY", - "center": "POINT (677392.9286744883283973 2540173.1302405288442969)", - "surface": 7510000, - "canton": null, - "numero_insee": "02459" - } - }, - { - "pk": 8388, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARCY-SOUS-MARLE", - "center": "POINT (700805.8864423200720921 2528464.2726597059518099)", - "surface": 4560000, - "canton": null, - "numero_insee": "02460" - } - }, - { - "pk": 25955, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MAREST-DAMPCOURT", - "center": "POINT (658527.1143157102633268 2511096.3902535387314856)", - "surface": 8350000, - "canton": null, - "numero_insee": "02461" - } - }, - { - "pk": 28483, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MAREUIL-EN-DOLE", - "center": "POINT (689174.6713990276912227 2472230.8936264333315194)", - "surface": 9110000, - "canton": null, - "numero_insee": "02462" - } - }, - { - "pk": 20796, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARFONTAINE", - "center": "POINT (702847.6232501394115388 2535485.7497924990020692)", - "surface": 9290000, - "canton": null, - "numero_insee": "02463" - } - }, - { - "pk": 3782, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARGIVAL", - "center": "POINT (677589.6260030041448772 2493246.2859029518440366)", - "surface": 5560000, - "canton": null, - "numero_insee": "02464" - } - }, - { - "pk": 29310, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARIGNY-EN-ORXOIS", - "center": "POINT (664739.7351394896395504 2450810.4606612990610301)", - "surface": 15640000, - "canton": null, - "numero_insee": "02465" - } - }, - { - "pk": 25525, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARIZY-SAINTE-GENEVIEVE", - "center": "POINT (662816.1673490514513105 2465303.7147644576616585)", - "surface": 7880000, - "canton": null, - "numero_insee": "02466" - } - }, - { - "pk": 9234, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARIZY-SAINT-MARD", - "center": "POINT (665018.2835798696614802 2465222.2460583504289389)", - "surface": 4640000, - "canton": null, - "numero_insee": "02467" - } - }, - { - "pk": 32921, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARLE", - "center": "POINT (703007.0454915533773601 2528482.9298736173659563)", - "surface": 13860000, - "canton": null, - "numero_insee": "02468" - } - }, - { - "pk": 17026, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARLY-GOMONT", - "center": "POINT (704169.4655464926036075 2544802.4359859577380121)", - "surface": 13160000, - "canton": null, - "numero_insee": "02469" - } - }, - { - "pk": 17816, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARTIGNY", - "center": "POINT (729403.6650672141695395 2542515.1677387598901987)", - "surface": 17020000, - "canton": null, - "numero_insee": "02470" - } - }, - { - "pk": 9411, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MARTIGNY-COURPIERRE", - "center": "POINT (697844.9492483834037557 2500021.8512480789795518)", - "surface": 4430000, - "canton": null, - "numero_insee": "02471" - } - }, - { - "pk": 25191, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MAUREGNY-EN-HAYE", - "center": "POINT (705800.9921739209676161 2505792.8152183704078197)", - "surface": 10560000, - "canton": null, - "numero_insee": "02472" - } - }, - { - "pk": 27816, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MAYOT", - "center": "POINT (676628.6682164075318724 2524057.0831391247920692)", - "surface": 3560000, - "canton": null, - "numero_insee": "02473" - } - }, - { - "pk": 11893, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MENNESSIS", - "center": "POINT (667740.8536998119670898 2521980.7592303133569658)", - "surface": 5130000, - "canton": null, - "numero_insee": "02474" - } - }, - { - "pk": 27015, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MENNEVILLE", - "center": "POINT (721112.0806573252193630 2493815.2013577213510871)", - "surface": 7240000, - "canton": null, - "numero_insee": "02475" - } - }, - { - "pk": 35155, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MENNEVRET", - "center": "POINT (687767.0866279476322234 2555769.9301513563841581)", - "surface": 12130000, - "canton": null, - "numero_insee": "02476" - } - }, - { - "pk": 24461, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MERCIN-ET-VAUX", - "center": "POINT (667842.5078233906533569 2486259.5589633570052683)", - "surface": 7920000, - "canton": null, - "numero_insee": "02477" - } - }, - { - "pk": 7988, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MERLIEUX-ET-FOUQUEROLLES", - "center": "POINT (684216.3051942239981145 2502408.0102032432332635)", - "surface": 5890000, - "canton": null, - "numero_insee": "02478" - } - }, - { - "pk": 32613, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MERVAL", - "center": "POINT (698885.3281880989670753 2483520.2970125423744321)", - "surface": 3340000, - "canton": null, - "numero_insee": "02479" - } - }, - { - "pk": 30627, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MESBRECOURT-RICHECOURT", - "center": "POINT (686632.2775744714308530 2524341.8295756848528981)", - "surface": 9030000, - "canton": null, - "numero_insee": "02480" - } - }, - { - "pk": 14252, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MESNIL-SAINT-LAURENT", - "center": "POINT (674014.8522287227679044 2537342.9173404462635517)", - "surface": 5500000, - "canton": null, - "numero_insee": "02481" - } - }, - { - "pk": 15546, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MEURIVAL", - "center": "POINT (703373.4443340129218996 2485259.4118042215704918)", - "surface": 2930000, - "canton": null, - "numero_insee": "02482" - } - }, - { - "pk": 28900, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MEZIERES-SUR-OISE", - "center": "POINT (675750.4183852648129687 2533255.1600874587893486)", - "surface": 9600000, - "canton": null, - "numero_insee": "02483" - } - }, - { - "pk": 8502, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MEZY-MOULINS", - "center": "POINT (685941.2233365775318816 2452290.5515690688043833)", - "surface": 4580000, - "canton": null, - "numero_insee": "02484" - } - }, - { - "pk": 10469, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MISSY-AUX-BOIS", - "center": "POINT (666175.3598738585133106 2482242.9401299040764570)", - "surface": 3060000, - "canton": null, - "numero_insee": "02485" - } - }, - { - "pk": 29590, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MISSY-LES-PIERREPONT", - "center": "POINT (704618.1104561815736815 2515488.7350551364943385)", - "surface": 6670000, - "canton": null, - "numero_insee": "02486" - } - }, - { - "pk": 11345, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MISSY-SUR-AISNE", - "center": "POINT (680034.9643183314474300 2488063.6952651720494032)", - "surface": 3310000, - "canton": null, - "numero_insee": "02487" - } - }, - { - "pk": 27815, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MOLAIN", - "center": "POINT (685527.0268532864283770 2560353.6121127246879041)", - "surface": 1850000, - "canton": null, - "numero_insee": "02488" - } - }, - { - "pk": 13615, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MOLINCHART", - "center": "POINT (687072.1647546656895429 2507835.5121295684948564)", - "surface": 4460000, - "canton": null, - "numero_insee": "02489" - } - }, - { - "pk": 3065, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONAMPTEUIL", - "center": "POINT (689654.8397097062552348 2498251.4303415627218783)", - "surface": 6110000, - "canton": null, - "numero_insee": "02490" - } - }, - { - "pk": 21633, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONCEAU-LE-NEUF-ET-FAUCOUZY", - "center": "POINT (693265.4988536769524217 2532702.9561417279765010)", - "surface": 20030000, - "canton": null, - "numero_insee": "02491" - } - }, - { - "pk": 36775, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONCEAU-LES-LEUPS", - "center": "POINT (682976.0276806449983269 2518907.6284858384169638)", - "surface": 13320000, - "canton": null, - "numero_insee": "02492" - } - }, - { - "pk": 23623, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONCEAU-LE-WAAST", - "center": "POINT (699822.3138958164490759 2514647.5973920337855816)", - "surface": 5420000, - "canton": null, - "numero_insee": "02493" - } - }, - { - "pk": 12649, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONCEAU-SUR-OISE", - "center": "POINT (697949.3266418130369857 2546750.8856659494340420)", - "surface": 5940000, - "canton": null, - "numero_insee": "02494" - } - }, - { - "pk": 14039, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONDREPUIS", - "center": "POINT (723108.6895268191583455 2553267.9856232497841120)", - "surface": 20400000, - "canton": null, - "numero_insee": "02495" - } - }, - { - "pk": 16691, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONNES", - "center": "POINT (665052.0855003719916567 2461219.9279999239370227)", - "surface": 4860000, - "canton": null, - "numero_insee": "02496" - } - }, - { - "pk": 8613, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONS-EN-LAONNOIS", - "center": "POINT (688195.6297104386612773 2505143.3573402375914156)", - "surface": 4220000, - "canton": null, - "numero_insee": "02497" - } - }, - { - "pk": 27950, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTAIGU", - "center": "POINT (709190.9652898451313376 2507222.4266483434475958)", - "surface": 23760000, - "canton": null, - "numero_insee": "02498" - } - }, - { - "pk": 24550, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTBAVIN", - "center": "POINT (685201.6127442329889163 2504217.4616195526905358)", - "surface": 5490000, - "canton": null, - "numero_insee": "02499" - } - }, - { - "pk": 27426, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTBREHAIN", - "center": "POINT (673186.7837450965307653 2552444.7486701533198357)", - "surface": 9960000, - "canton": null, - "numero_insee": "02500" - } - }, - { - "pk": 29995, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTCHALONS", - "center": "POINT (700724.4974554593209177 2502647.8652557004243135)", - "surface": 6730000, - "canton": null, - "numero_insee": "02501" - } - }, - { - "pk": 15535, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTCORNET", - "center": "POINT (723463.6826329660834745 2523253.2637635432183743)", - "surface": 5790000, - "canton": null, - "numero_insee": "02502" - } - }, - { - "pk": 5010, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONT-D'ORIGNY", - "center": "POINT (685698.9147604105528444 2540043.2782014911063015)", - "surface": 13740000, - "canton": null, - "numero_insee": "02503" - } - }, - { - "pk": 32930, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTESCOURT-LIZEROLLES", - "center": "POINT (666698.0621360167860985 2526974.9567727274261415)", - "surface": 6310000, - "canton": null, - "numero_insee": "02504" - } - }, - { - "pk": 18731, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTFAUCON", - "center": "POINT (680247.8250062500592321 2439233.7383623961359262)", - "surface": 15390000, - "canton": null, - "numero_insee": "02505" - } - }, - { - "pk": 11346, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTGOBERT", - "center": "POINT (660914.6054762718267739 2477195.3277562987059355)", - "surface": 11130000, - "canton": null, - "numero_insee": "02506" - } - }, - { - "pk": 9525, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTGRU-SAINT-HILAIRE", - "center": "POINT (672226.6723442559596151 2464782.8212669524364173)", - "surface": 3280000, - "canton": null, - "numero_insee": "02507" - } - }, - { - "pk": 36927, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTHENAULT", - "center": "POINT (695644.5869794881436974 2499903.1486311582848430)", - "surface": 2940000, - "canton": null, - "numero_insee": "02508" - } - }, - { - "pk": 33888, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTHIERS", - "center": "POINT (669889.5376332399901003 2457158.1103640086948872)", - "surface": 7510000, - "canton": null, - "numero_insee": "02509" - } - }, - { - "pk": 37900, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTHUREL", - "center": "POINT (688876.8078433149494231 2448312.7501852540299296)", - "surface": 4020000, - "canton": null, - "numero_insee": "02510" - } - }, - { - "pk": 38054, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTIGNY-EN-ARROUAISE", - "center": "POINT (682440.5451847688527778 2546719.6346513614989817)", - "surface": 9870000, - "canton": null, - "numero_insee": "02511" - } - }, - { - "pk": 31740, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTIGNY-L'ALLIER", - "center": "POINT (656269.7687744303839281 2458444.0227113845758140)", - "surface": 10380000, - "canton": null, - "numero_insee": "02512" - } - }, - { - "pk": 25748, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTIGNY-LE-FRANC", - "center": "POINT (714266.4366550307022408 2522274.6377462469972670)", - "surface": 9840000, - "canton": null, - "numero_insee": "02513" - } - }, - { - "pk": 35498, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTIGNY-LES-CONDE", - "center": "POINT (690018.9638980404706672 2443419.1589785479009151)", - "surface": 4810000, - "canton": null, - "numero_insee": "02515" - } - }, - { - "pk": 7534, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTIGNY-SOUS-MARLE", - "center": "POINT (705811.9141341981012374 2528106.4703087182715535)", - "surface": 7370000, - "canton": null, - "numero_insee": "02516" - } - }, - { - "pk": 8526, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTIGNY-SUR-CRECY", - "center": "POINT (690029.8445306217763573 2524870.8908031438477337)", - "surface": 8620000, - "canton": null, - "numero_insee": "02517" - } - }, - { - "pk": 17258, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTLEVON", - "center": "POINT (686336.2359632698353380 2441086.4519034731201828)", - "surface": 22770000, - "canton": null, - "numero_insee": "02518" - } - }, - { - "pk": 28242, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTLOUE", - "center": "POINT (724688.9672828282928094 2520361.9178663608618081)", - "surface": 15640000, - "canton": null, - "numero_insee": "02519" - } - }, - { - "pk": 37575, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONT-NOTRE-DAME", - "center": "POINT (690628.0914642994757742 2477846.7918078084476292)", - "surface": 9950000, - "canton": null, - "numero_insee": "02520" - } - }, - { - "pk": 7021, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONTREUIL-AUX-LIONS", - "center": "POINT (662763.0572275132872164 2447891.8488821429200470)", - "surface": 12980000, - "canton": null, - "numero_insee": "02521" - } - }, - { - "pk": 32919, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONT-SAINT-JEAN", - "center": "POINT (735074.6136612542904913 2534558.6462148446589708)", - "surface": 4000000, - "canton": null, - "numero_insee": "02522" - } - }, - { - "pk": 35733, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MONT-SAINT-PERE", - "center": "POINT (683322.7633397105382755 2454269.7145347953774035)", - "surface": 10460000, - "canton": null, - "numero_insee": "02524" - } - }, - { - "pk": 9290, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MORCOURT", - "center": "POINT (671769.7377528366632760 2542527.0024722772650421)", - "surface": 6000000, - "canton": null, - "numero_insee": "02525" - } - }, - { - "pk": 17461, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MORGNY-EN-THIERACHE", - "center": "POINT (725507.8498948509804904 2529974.6527739227749407)", - "surface": 7030000, - "canton": null, - "numero_insee": "02526" - } - }, - { - "pk": 6834, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MORSAIN", - "center": "POINT (661953.9290125420084223 2496316.1711435462348163)", - "surface": 14430000, - "canton": null, - "numero_insee": "02527" - } - }, - { - "pk": 34595, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MORTEFONTAINE", - "center": "POINT (654067.6888163561234251 2482240.7934925123117864)", - "surface": 11890000, - "canton": null, - "numero_insee": "02528" - } - }, - { - "pk": 37409, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MORTIERS", - "center": "POINT (695852.4106482875067741 2522618.8150491290725768)", - "surface": 6500000, - "canton": null, - "numero_insee": "02529" - } - }, - { - "pk": 31416, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MOULINS", - "center": "POINT (697411.6400829504709691 2492113.2431177673861384)", - "surface": 1550000, - "canton": null, - "numero_insee": "02530" - } - }, - { - "pk": 8034, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MOUSSY-VERNEUIL", - "center": "POINT (694416.7505764262750745 2491287.3713793661445379)", - "surface": 6430000, - "canton": null, - "numero_insee": "02531" - } - }, - { - "pk": 8265, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MOY-DE-L'AISNE", - "center": "POINT (673187.9620184730738401 2528630.7549370890483260)", - "surface": 6250000, - "canton": null, - "numero_insee": "02532" - } - }, - { - "pk": 7180, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MURET-ET-CROUTTES", - "center": "POINT (679935.5559926652349532 2476155.2872814903967083)", - "surface": 5220000, - "canton": null, - "numero_insee": "02533" - } - }, - { - "pk": 25190, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "MUSCOURT", - "center": "POINT (702270.2820972750196233 2485550.2512181373313069)", - "surface": 2090000, - "canton": null, - "numero_insee": "02534" - } - }, - { - "pk": 25014, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NAMPCELLES-LA-COUR", - "center": "POINT (720084.6216539503075182 2532330.0255118478089571)", - "surface": 11030000, - "canton": null, - "numero_insee": "02535" - } - }, - { - "pk": 9944, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NAMPTEUIL-SOUS-MURET", - "center": "POINT (679810.1118190572597086 2479156.1447921465151012)", - "surface": 3380000, - "canton": null, - "numero_insee": "02536" - } - }, - { - "pk": 11113, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NANTEUIL-LA-FOSSE", - "center": "POINT (680689.6547872142400593 2493472.6288943872787058)", - "surface": 7390000, - "canton": null, - "numero_insee": "02537" - } - }, - { - "pk": 34709, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NANTEUIL-NOTRE-DAME", - "center": "POINT (678417.5655195955187082 2466336.1320617529563606)", - "surface": 3750000, - "canton": null, - "numero_insee": "02538" - } - }, - { - "pk": 6497, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NAUROY", - "center": "POINT (666195.9107337570749223 2550884.8062741560861468)", - "surface": 6250000, - "canton": null, - "numero_insee": "02539" - } - }, - { - "pk": 22474, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NESLES-LA-MONTAGNE", - "center": "POINT (681198.4895272206049412 2445145.7203615773469210)", - "surface": 17350000, - "canton": null, - "numero_insee": "02540" - } - }, - { - "pk": 6964, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NEUFCHATEL-SUR-AISNE", - "center": "POINT (722406.8544508189661428 2494526.6350490441545844)", - "surface": 2900000, - "canton": null, - "numero_insee": "02541" - } - }, - { - "pk": 15185, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NEUILLY-SAINT-FRONT", - "center": "POINT (667637.5364540425362065 2463143.0046531944535673)", - "surface": 17990000, - "canton": null, - "numero_insee": "02543" - } - }, - { - "pk": 25013, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NEUVE-MAISON", - "center": "POINT (722441.4748724293895066 2549360.0544183864258230)", - "surface": 8420000, - "canton": null, - "numero_insee": "02544" - } - }, - { - "pk": 37405, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA NEUVILLE-BOSMONT", - "center": "POINT (708038.5304516358301044 2525123.5512599069625139)", - "surface": 9960000, - "canton": null, - "numero_insee": "02545" - } - }, - { - "pk": 5883, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA NEUVILLE-EN-BEINE", - "center": "POINT (659150.6361999675864354 2520207.1900539812631905)", - "surface": 3800000, - "canton": null, - "numero_insee": "02546" - } - }, - { - "pk": 3601, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA NEUVILLE-HOUSSET", - "center": "POINT (700565.0795104874996468 2533265.0962923606857657)", - "surface": 5190000, - "canton": null, - "numero_insee": "02547" - } - }, - { - "pk": 4678, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA NEUVILLE-LES-DORENGT", - "center": "POINT (696880.1541049004299566 2554846.5285470173694193)", - "surface": 10990000, - "canton": null, - "numero_insee": "02548" - } - }, - { - "pk": 6269, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NEUVILLE-SAINT-AMAND", - "center": "POINT (671821.3198095770785585 2536423.8440795876085758)", - "surface": 8110000, - "canton": null, - "numero_insee": "02549" - } - }, - { - "pk": 6380, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NEUVILLE-SUR-AILETTE", - "center": "POINT (698764.9431336021516472 2497728.2139787860214710)", - "surface": 4500000, - "canton": null, - "numero_insee": "02550" - } - }, - { - "pk": 30353, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NEUVILLE-SUR-MARGIVAL", - "center": "POINT (677068.1977150926832110 2495743.4414522508159280)", - "surface": 3630000, - "canton": null, - "numero_insee": "02551" - } - }, - { - "pk": 34775, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NEUVILLETTE", - "center": "POINT (681493.3563490251544863 2540407.9291458688676357)", - "surface": 6510000, - "canton": null, - "numero_insee": "02552" - } - }, - { - "pk": 16797, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NIZY-LE-COMTE", - "center": "POINT (722577.0140110576758161 2509837.5740920137614012)", - "surface": 31690000, - "canton": null, - "numero_insee": "02553" - } - }, - { - "pk": 24987, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOGENTEL", - "center": "POINT (678083.1104704297613353 2446720.4371042470447719)", - "surface": 6880000, - "canton": null, - "numero_insee": "02554" - } - }, - { - "pk": 3583, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOGENT-L'ARTAUD", - "center": "POINT (672946.8365034424932674 2438771.7428336990997195)", - "surface": 24140000, - "canton": null, - "numero_insee": "02555" - } - }, - { - "pk": 11338, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOIRCOURT", - "center": "POINT (726989.3445265234913677 2520481.5210965275764465)", - "surface": 5530000, - "canton": null, - "numero_insee": "02556" - } - }, - { - "pk": 30705, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOROY-SUR-OURCQ", - "center": "POINT (663396.2360246259486303 2467710.1686080163344741)", - "surface": 5170000, - "canton": null, - "numero_insee": "02557" - } - }, - { - "pk": 20652, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE NOUVION-EN-THIERACHE", - "center": "POINT (705659.1492923405021429 2557922.6666880254633725)", - "surface": 48670000, - "canton": null, - "numero_insee": "02558" - } - }, - { - "pk": 33184, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOUVION-ET-CATILLON", - "center": "POINT (683533.1738658004906029 2524015.4232742423191667)", - "surface": 16730000, - "canton": null, - "numero_insee": "02559" - } - }, - { - "pk": 8266, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOUVION-LE-COMTE", - "center": "POINT (681131.9009623972233385 2523995.1082125208340585)", - "surface": 8080000, - "canton": null, - "numero_insee": "02560" - } - }, - { - "pk": 8158, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOUVION-LE-VINEUX", - "center": "POINT (691923.9129393709590659 2502073.0036417422816157)", - "surface": 3490000, - "canton": null, - "numero_insee": "02561" - } - }, - { - "pk": 13659, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOUVRON-VINGRE", - "center": "POINT (661780.0068492243299261 2493212.7639481513760984)", - "surface": 9290000, - "canton": null, - "numero_insee": "02562" - } - }, - { - "pk": 30571, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOYALES", - "center": "POINT (686446.8266710068564862 2546253.2442640285007656)", - "surface": 7260000, - "canton": null, - "numero_insee": "02563" - } - }, - { - "pk": 37170, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "NOYANT-ET-ACONIN", - "center": "POINT (672481.4509838112862781 2481996.0308185168541968)", - "surface": 4540000, - "canton": null, - "numero_insee": "02564" - } - }, - { - "pk": 4931, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OEUILLY", - "center": "POINT (697736.3900738719385117 2489214.1694253971800208)", - "surface": 2860000, - "canton": null, - "numero_insee": "02565" - } - }, - { - "pk": 9292, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OGNES", - "center": "POINT (661811.1583316712640226 2513225.3979195794090629)", - "surface": 6160000, - "canton": null, - "numero_insee": "02566" - } - }, - { - "pk": 29339, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OHIS", - "center": "POINT (720450.6499036087188870 2548142.4485599445179105)", - "surface": 6570000, - "canton": null, - "numero_insee": "02567" - } - }, - { - "pk": 24865, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OIGNY-EN-VALOIS", - "center": "POINT (657784.5663425693055615 2468663.4414488933980465)", - "surface": 11910000, - "canton": null, - "numero_insee": "02568" - } - }, - { - "pk": 27060, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OISY", - "center": "POINT (694441.6529249909799546 2559228.4025311777368188)", - "surface": 10900000, - "canton": null, - "numero_insee": "02569" - } - }, - { - "pk": 26212, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OLLEZY", - "center": "POINT (658399.5917829176178202 2526204.4642354049719870)", - "surface": 5340000, - "canton": null, - "numero_insee": "02570" - } - }, - { - "pk": 12697, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OMISSY", - "center": "POINT (669164.1710871118120849 2543005.2770197028294206)", - "surface": 7280000, - "canton": null, - "numero_insee": "02571" - } - }, - { - "pk": 13266, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ORAINVILLE", - "center": "POINT (721964.3534019410144538 2487718.5970110632479191)", - "surface": 8710000, - "canton": null, - "numero_insee": "02572" - } - }, - { - "pk": 32969, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ORGEVAL", - "center": "POINT (699032.8920555982040241 2501532.8483061492443085)", - "surface": 2430000, - "canton": null, - "numero_insee": "02573" - } - }, - { - "pk": 7847, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ORIGNY-EN-THIERACHE", - "center": "POINT (720481.2348404102958739 2544540.6037615365348756)", - "surface": 16390000, - "canton": null, - "numero_insee": "02574" - } - }, - { - "pk": 15544, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ORIGNY-SAINTE-BENOITE", - "center": "POINT (685921.8806910030543804 2537343.5718831028789282)", - "surface": 23250000, - "canton": null, - "numero_insee": "02575" - } - }, - { - "pk": 37412, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OSLY-COURTIL", - "center": "POINT (665414.1189477979205549 2489441.0655748257413507)", - "surface": 5250000, - "canton": null, - "numero_insee": "02576" - } - }, - { - "pk": 9943, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OSTEL", - "center": "POINT (689197.7612886008573696 2493144.3729685260914266)", - "surface": 9230000, - "canton": null, - "numero_insee": "02577" - } - }, - { - "pk": 27014, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OULCHES-LA-VALLEE-FOULON", - "center": "POINT (701803.0634872937807813 2493451.2708980627357960)", - "surface": 4330000, - "canton": null, - "numero_insee": "02578" - } - }, - { - "pk": 6817, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OULCHY-LA-VILLE", - "center": "POINT (673196.8051564445486292 2468393.3544712639413774)", - "surface": 7280000, - "canton": null, - "numero_insee": "02579" - } - }, - { - "pk": 3234, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "OULCHY-LE-CHATEAU", - "center": "POINT (676201.0690150627633557 2468118.5566247277893126)", - "surface": 15090000, - "canton": null, - "numero_insee": "02580" - } - }, - { - "pk": 12701, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PAARS", - "center": "POINT (692093.3593069120543078 2482061.8770750029943883)", - "surface": 5090000, - "canton": null, - "numero_insee": "02581" - } - }, - { - "pk": 10963, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PAISSY", - "center": "POINT (699105.8033472101669759 2492928.0994507553987205)", - "surface": 7140000, - "canton": null, - "numero_insee": "02582" - } - }, - { - "pk": 28285, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PANCY-COURTECON", - "center": "POINT (695271.4869150320300832 2496697.9943945431150496)", - "surface": 6240000, - "canton": null, - "numero_insee": "02583" - } - }, - { - "pk": 6829, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PAPLEUX", - "center": "POINT (710754.0746076593641192 2558866.3970196712762117)", - "surface": 1940000, - "canton": null, - "numero_insee": "02584" - } - }, - { - "pk": 30574, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PARCY-ET-TIGNY", - "center": "POINT (672238.7843968402594328 2475189.6373232416808605)", - "surface": 10680000, - "canton": null, - "numero_insee": "02585" - } - }, - { - "pk": 27614, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PARFONDEVAL", - "center": "POINT (731619.5621380794327706 2529025.9902509907260537)", - "surface": 10060000, - "canton": null, - "numero_insee": "02586" - } - }, - { - "pk": 28730, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PARFONDRU", - "center": "POINT (698999.8276553638279438 2505434.9821114167571068)", - "surface": 9110000, - "canton": null, - "numero_insee": "02587" - } - }, - { - "pk": 9546, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PARGNY-FILAIN", - "center": "POINT (687265.3724903617985547 2496830.3309641978703439)", - "surface": 5060000, - "canton": null, - "numero_insee": "02589" - } - }, - { - "pk": 31550, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PARGNY-LA-DHUYS", - "center": "POINT (689845.9498670561006293 2440215.5552362739108503)", - "surface": 13020000, - "canton": null, - "numero_insee": "02590" - } - }, - { - "pk": 32995, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PARGNY-LES-BOIS", - "center": "POINT (692414.1701705098384991 2526892.2810479262843728)", - "surface": 6880000, - "canton": null, - "numero_insee": "02591" - } - }, - { - "pk": 10451, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PARPEVILLE", - "center": "POINT (688453.6701682929415256 2533762.8677415833808482)", - "surface": 15900000, - "canton": null, - "numero_insee": "02592" - } - }, - { - "pk": 9547, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PASLY", - "center": "POINT (669814.0393419344909489 2489778.4244497991167009)", - "surface": 3000000, - "canton": null, - "numero_insee": "02593" - } - }, - { - "pk": 25338, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PASSY-EN-VALOIS", - "center": "POINT (661835.0196949085220695 2462993.9353018556721509)", - "surface": 3530000, - "canton": null, - "numero_insee": "02594" - } - }, - { - "pk": 22617, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PASSY-SUR-MARNE", - "center": "POINT (690440.4824534921208397 2452728.8976182262413204)", - "surface": 3770000, - "canton": null, - "numero_insee": "02595" - } - }, - { - "pk": 33889, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PAVANT", - "center": "POINT (669336.2256854991428554 2439741.9023438445292413)", - "surface": 5370000, - "canton": null, - "numero_insee": "02596" - } - }, - { - "pk": 10455, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PERLES", - "center": "POINT (695598.7247405233792961 2481691.3093744805082679)", - "surface": 3750000, - "canton": null, - "numero_insee": "02597" - } - }, - { - "pk": 22653, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PERNANT", - "center": "POINT (664936.6558963940478861 2486735.3297056681476533)", - "surface": 9770000, - "canton": null, - "numero_insee": "02598" - } - }, - { - "pk": 36928, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PIERREMANDE", - "center": "POINT (666657.6954007550375536 2508063.1430810266174376)", - "surface": 7650000, - "canton": null, - "numero_insee": "02599" - } - }, - { - "pk": 5626, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PIERREPONT", - "center": "POINT (704899.6092691363301128 2517692.4602732579223812)", - "surface": 10700000, - "canton": null, - "numero_insee": "02600" - } - }, - { - "pk": 36019, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PIGNICOURT", - "center": "POINT (722933.4734000735916197 2491429.1605894011445343)", - "surface": 7390000, - "canton": null, - "numero_insee": "02601" - } - }, - { - "pk": 27221, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PINON", - "center": "POINT (681538.5246749483048916 2499583.6174004571512341)", - "surface": 9760000, - "canton": null, - "numero_insee": "02602" - } - }, - { - "pk": 31002, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PITHON", - "center": "POINT (655373.5222992780618370 2529080.6619131313636899)", - "surface": 2490000, - "canton": null, - "numero_insee": "02604" - } - }, - { - "pk": 28699, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PLEINE-SELVE", - "center": "POINT (685750.5660283733159304 2533940.1071926429867744)", - "surface": 6100000, - "canton": null, - "numero_insee": "02605" - } - }, - { - "pk": 35535, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE PLESSIER-HULEU", - "center": "POINT (673669.1832361489068717 2471699.4774095877073705)", - "surface": 5190000, - "canton": null, - "numero_insee": "02606" - } - }, - { - "pk": 9287, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PLOMION", - "center": "POINT (721245.3173749791458249 2537042.6737131844274700)", - "surface": 16470000, - "canton": null, - "numero_insee": "02608" - } - }, - { - "pk": 36018, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PLOYART-ET-VAURSEINE", - "center": "POINT (701743.7017831909470260 2500455.1379327476024628)", - "surface": 4930000, - "canton": null, - "numero_insee": "02609" - } - }, - { - "pk": 23324, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "POMMIERS", - "center": "POINT (668422.5565787964733317 2488665.9747093701735139)", - "surface": 6700000, - "canton": null, - "numero_insee": "02610" - } - }, - { - "pk": 24625, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PONT-ARCY", - "center": "POINT (693235.5708030165405944 2488975.9196659517474473)", - "surface": 3280000, - "canton": null, - "numero_insee": "02612" - } - }, - { - "pk": 33705, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PONTAVERT", - "center": "POINT (707718.2184690671274439 2492100.5402603689581156)", - "surface": 13580000, - "canton": null, - "numero_insee": "02613" - } - }, - { - "pk": 22391, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PONTRU", - "center": "POINT (662121.7051315333228558 2547548.4794868612661958)", - "surface": 15110000, - "canton": null, - "numero_insee": "02614" - } - }, - { - "pk": 36926, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PONTRUET", - "center": "POINT (664129.4872827032813802 2546764.9683206463232636)", - "surface": 6810000, - "canton": null, - "numero_insee": "02615" - } - }, - { - "pk": 36624, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PONT-SAINT-MARD", - "center": "POINT (668327.0352614514995366 2499972.2398007865995169)", - "surface": 6850000, - "canton": null, - "numero_insee": "02616" - } - }, - { - "pk": 36696, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "POUILLY-SUR-SERRE", - "center": "POINT (690164.6284270944306627 2520769.5591911864466965)", - "surface": 9630000, - "canton": null, - "numero_insee": "02617" - } - }, - { - "pk": 16131, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PREMONT", - "center": "POINT (676040.8807569355703890 2558072.1054508988745511)", - "surface": 12200000, - "canton": null, - "numero_insee": "02618" - } - }, - { - "pk": 7788, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PREMONTRE", - "center": "POINT (678280.0735215021995828 2506260.2054074001498520)", - "surface": 8320000, - "canton": null, - "numero_insee": "02619" - } - }, - { - "pk": 9413, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PRESLES-ET-BOVES", - "center": "POINT (687434.0233552857534960 2488726.6763732712715864)", - "surface": 9630000, - "canton": null, - "numero_insee": "02620" - } - }, - { - "pk": 13795, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PRESLES-ET-THIERNY", - "center": "POINT (693320.4437216802034527 2502585.1396681764163077)", - "surface": 8370000, - "canton": null, - "numero_insee": "02621" - } - }, - { - "pk": 37961, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PRIEZ", - "center": "POINT (667567.9075078610330820 2459540.0676928050816059)", - "surface": 5060000, - "canton": null, - "numero_insee": "02622" - } - }, - { - "pk": 7503, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PRISCES", - "center": "POINT (709984.4232154510682449 2531643.9493054035119712)", - "surface": 6650000, - "canton": null, - "numero_insee": "02623" - } - }, - { - "pk": 10741, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PROISY", - "center": "POINT (701869.1324420444434509 2544682.8770251683890820)", - "surface": 5310000, - "canton": null, - "numero_insee": "02624" - } - }, - { - "pk": 5352, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PROIX", - "center": "POINT (689052.3936463849386200 2545775.0077078491449356)", - "surface": 3490000, - "canton": null, - "numero_insee": "02625" - } - }, - { - "pk": 37793, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PROUVAIS", - "center": "POINT (718568.2236928648781031 2498796.7296936763450503)", - "surface": 18100000, - "canton": null, - "numero_insee": "02626" - } - }, - { - "pk": 33185, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PROVISEUX-ET-PLESNOY", - "center": "POINT (721767.4381274933693931 2499124.0794378016144037)", - "surface": 11310000, - "canton": null, - "numero_insee": "02627" - } - }, - { - "pk": 37172, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PUISEUX-EN-RETZ", - "center": "POINT (658010.4241137561621144 2477471.0047986130230129)", - "surface": 9890000, - "canton": null, - "numero_insee": "02628" - } - }, - { - "pk": 33923, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PUISIEUX-ET-CLANLIEU", - "center": "POINT (695507.3746597392018884 2539726.0910181109793484)", - "surface": 17490000, - "canton": null, - "numero_insee": "02629" - } - }, - { - "pk": 37173, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "QUIERZY", - "center": "POINT (658555.8282086980761960 2507694.5467252987436950)", - "surface": 8240000, - "canton": null, - "numero_insee": "02631" - } - }, - { - "pk": 4171, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "QUINCY-BASSE", - "center": "POINT (675916.8330253862077370 2501737.4409207096323371)", - "surface": 3960000, - "canton": null, - "numero_insee": "02632" - } - }, - { - "pk": 8662, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "QUINCY-SOUS-LE-MONT", - "center": "POINT (688911.8806514414027333 2479633.4127959525212646)", - "surface": 5010000, - "canton": null, - "numero_insee": "02633" - } - }, - { - "pk": 6144, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RAILLIMONT", - "center": "POINT (731560.3317527089966461 2524222.6024160319939256)", - "surface": 4840000, - "canton": null, - "numero_insee": "02634" - } - }, - { - "pk": 8393, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RAMICOURT", - "center": "POINT (671391.7898748217849061 2551729.1717272722162306)", - "surface": 3720000, - "canton": null, - "numero_insee": "02635" - } - }, - { - "pk": 10332, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "REGNY", - "center": "POINT (678011.8534867017297074 2537977.0669298609718680)", - "surface": 12000000, - "canton": null, - "numero_insee": "02636" - } - }, - { - "pk": 13126, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "REMAUCOURT", - "center": "POINT (672851.6992411686806008 2544737.4362630462273955)", - "surface": 6410000, - "canton": null, - "numero_insee": "02637" - } - }, - { - "pk": 29554, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "REMIES", - "center": "POINT (685761.4362937773112208 2520832.3481335034593940)", - "surface": 9020000, - "canton": null, - "numero_insee": "02638" - } - }, - { - "pk": 7537, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "REMIGNY", - "center": "POINT (669220.5167816609609872 2524494.7667063088156283)", - "surface": 10050000, - "canton": null, - "numero_insee": "02639" - } - }, - { - "pk": 24228, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RENANSART", - "center": "POINT (680607.0924297564197332 2526892.4112398563884199)", - "surface": 8770000, - "canton": null, - "numero_insee": "02640" - } - }, - { - "pk": 27008, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RENNEVAL", - "center": "POINT (722620.7706427462399006 2528249.1117956922389567)", - "surface": 6770000, - "canton": null, - "numero_insee": "02641" - } - }, - { - "pk": 24359, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RESIGNY", - "center": "POINT (735123.9576979842968285 2528755.6037563746795058)", - "surface": 7870000, - "canton": null, - "numero_insee": "02642" - } - }, - { - "pk": 5246, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RESSONS-LE-LONG", - "center": "POINT (658421.1890253663295880 2488081.2030664994381368)", - "surface": 10670000, - "canton": null, - "numero_insee": "02643" - } - }, - { - "pk": 9406, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RETHEUIL", - "center": "POINT (648480.5599197157425806 2480292.4594390485435724)", - "surface": 15050000, - "canton": null, - "numero_insee": "02644" - } - }, - { - "pk": 34092, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "REUILLY-SAUVIGNY", - "center": "POINT (689755.3174092776607722 2450921.9084701216779649)", - "surface": 6690000, - "canton": null, - "numero_insee": "02645" - } - }, - { - "pk": 9700, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "REVILLON", - "center": "POINT (698961.6463733973214403 2486322.7187953284010291)", - "surface": 2250000, - "canton": null, - "numero_insee": "02646" - } - }, - { - "pk": 13524, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RIBEAUVILLE", - "center": "POINT (689726.5887023290852085 2560689.3324180059134960)", - "surface": 3620000, - "canton": null, - "numero_insee": "02647" - } - }, - { - "pk": 3063, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RIBEMONT", - "center": "POINT (681656.0422337264753878 2533004.9271504315547645)", - "surface": 27070000, - "canton": null, - "numero_insee": "02648" - } - }, - { - "pk": 28444, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROCOURT-SAINT-MARTIN", - "center": "POINT (676758.8840673968661577 2461318.8538231402635574)", - "surface": 5710000, - "canton": null, - "numero_insee": "02649" - } - }, - { - "pk": 6493, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROCQUIGNY", - "center": "POINT (717454.0413765097036958 2559323.4856899073347449)", - "surface": 11000000, - "canton": null, - "numero_insee": "02650" - } - }, - { - "pk": 22203, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROGECOURT", - "center": "POINT (677986.0466094414005056 2517364.5103268623352051)", - "surface": 5530000, - "canton": null, - "numero_insee": "02651" - } - }, - { - "pk": 32920, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROGNY", - "center": "POINT (706988.7895601046038792 2530918.1242923932150006)", - "surface": 5660000, - "canton": null, - "numero_insee": "02652" - } - }, - { - "pk": 24189, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROMENY-SUR-MARNE", - "center": "POINT (673007.1491639647865668 2443475.3956808974035084)", - "surface": 4330000, - "canton": null, - "numero_insee": "02653" - } - }, - { - "pk": 32660, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROMERY", - "center": "POINT (700370.9058127612806857 2544370.0028718509711325)", - "surface": 3980000, - "canton": null, - "numero_insee": "02654" - } - }, - { - "pk": 35731, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "RONCHERES", - "center": "POINT (692372.1842114633182064 2460950.6356521649286151)", - "surface": 6000000, - "canton": null, - "numero_insee": "02655" - } - }, - { - "pk": 7910, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROUCY", - "center": "POINT (707758.9465563622070476 2487297.8602312589064240)", - "surface": 7030000, - "canton": null, - "numero_insee": "02656" - } - }, - { - "pk": 3129, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROUGERIES", - "center": "POINT (704451.0018708999268711 2535199.1646342137828469)", - "surface": 4250000, - "canton": null, - "numero_insee": "02657" - } - }, - { - "pk": 24813, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROUPY", - "center": "POINT (660924.0961086679017171 2535331.2004169281572104)", - "surface": 5940000, - "canton": null, - "numero_insee": "02658" - } - }, - { - "pk": 25754, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROUVROY", - "center": "POINT (671686.5981936561875045 2540525.1246756291948259)", - "surface": 5100000, - "canton": null, - "numero_insee": "02659" - } - }, - { - "pk": 34361, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROUVROY-SUR-SERRE", - "center": "POINT (732747.3594388859346509 2525833.6564389313571155)", - "surface": 3890000, - "canton": null, - "numero_insee": "02660" - } - }, - { - "pk": 32275, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROYAUCOURT-ET-CHAILVET", - "center": "POINT (687019.5329954897752032 2502231.6087404806166887)", - "surface": 3010000, - "canton": null, - "numero_insee": "02661" - } - }, - { - "pk": 22824, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROZET-SAINT-ALBIN", - "center": "POINT (670005.9548532973276451 2467065.5473395432345569)", - "surface": 8040000, - "canton": null, - "numero_insee": "02662" - } - }, - { - "pk": 29998, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROZIERES-SUR-CRISE", - "center": "POINT (675191.4334809398278594 2481018.3015472129918635)", - "surface": 7330000, - "canton": null, - "numero_insee": "02663" - } - }, - { - "pk": 29523, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROZOY-BELLEVALLE", - "center": "POINT (681569.7626434027915820 2436743.2409761031158268)", - "surface": 6760000, - "canton": null, - "numero_insee": "02664" - } - }, - { - "pk": 10836, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRAND-ROZOY", - "center": "POINT (676067.1739129933994263 2472120.0066103166900575)", - "surface": 12490000, - "canton": null, - "numero_insee": "02665" - } - }, - { - "pk": 17552, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "ROZOY-SUR-SERRE", - "center": "POINT (729555.0191533124307171 2524705.8599594472907484)", - "surface": 17010000, - "canton": null, - "numero_insee": "02666" - } - }, - { - "pk": 36734, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SACONIN-ET-BREUIL", - "center": "POINT (666160.1473267318215221 2484043.9543600548058748)", - "surface": 8620000, - "canton": null, - "numero_insee": "02667" - } - }, - { - "pk": 8029, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINS-RICHAUMONT", - "center": "POINT (698527.5788505008677021 2537550.3801012532785535)", - "surface": 12560000, - "canton": null, - "numero_insee": "02668" - } - }, - { - "pk": 25687, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-AGNAN", - "center": "POINT (691780.2176728094927967 2448137.1970570147968829)", - "surface": 8030000, - "canton": null, - "numero_insee": "02669" - } - }, - { - "pk": 17301, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-ALGIS", - "center": "POINT (707067.5608948009321466 2545227.2440433879382908)", - "surface": 6950000, - "canton": null, - "numero_insee": "02670" - } - }, - { - "pk": 12989, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-AUBIN", - "center": "POINT (661708.2001022010808811 2501717.4549337094649673)", - "surface": 8390000, - "canton": null, - "numero_insee": "02671" - } - }, - { - "pk": 10964, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-BANDRY", - "center": "POINT (659044.3279648048337549 2485384.7568096187897027)", - "surface": 6220000, - "canton": null, - "numero_insee": "02672" - } - }, - { - "pk": 28287, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-CHRISTOPHE-A-BERRY", - "center": "POINT (657481.8411922983359545 2492676.1677741548046470)", - "surface": 7850000, - "canton": null, - "numero_insee": "02673" - } - }, - { - "pk": 11337, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-CLEMENT", - "center": "POINT (725188.1432374091818929 2532273.3101336169056594)", - "surface": 5120000, - "canton": null, - "numero_insee": "02674" - } - }, - { - "pk": 13943, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINTE-CROIX", - "center": "POINT (704758.0745294723892584 2498979.7569925850257277)", - "surface": 3370000, - "canton": null, - "numero_insee": "02675" - } - }, - { - "pk": 34318, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-ERME-OUTRE-ET-RAMECOURT", - "center": "POINT (710624.8281734950141981 2503332.1798658170737326)", - "surface": 20310000, - "canton": null, - "numero_insee": "02676" - } - }, - { - "pk": 12824, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-EUGENE", - "center": "POINT (686386.3368605985306203 2446990.8090003244578838)", - "surface": 6960000, - "canton": null, - "numero_insee": "02677" - } - }, - { - "pk": 7134, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINTE-GENEVIEVE", - "center": "POINT (725335.7934166548075154 2526671.2131658820435405)", - "surface": 4560000, - "canton": null, - "numero_insee": "02678" - } - }, - { - "pk": 32204, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-GENGOULPH", - "center": "POINT (664176.9118328524054959 2458210.5758745744824409)", - "surface": 7610000, - "canton": null, - "numero_insee": "02679" - } - }, - { - "pk": 18993, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-GOBAIN", - "center": "POINT (676536.0020626425975934 2511348.5903364168480039)", - "surface": 29880000, - "canton": null, - "numero_insee": "02680" - } - }, - { - "pk": 12426, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-GOBERT", - "center": "POINT (707753.5709679601714015 2535127.1097322423011065)", - "surface": 7910000, - "canton": null, - "numero_insee": "02681" - } - }, - { - "pk": 34368, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-MARD", - "center": "POINT (690944.4512441544793546 2487755.7620377927087247)", - "surface": 4630000, - "canton": null, - "numero_insee": "02682" - } - }, - { - "pk": 3402, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-MARTIN-RIVIERE", - "center": "POINT (687318.6124699085485190 2561469.4050149098038673)", - "surface": 5380000, - "canton": null, - "numero_insee": "02683" - } - }, - { - "pk": 35459, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-NICOLAS-AUX-BOIS", - "center": "POINT (679736.0395894211251289 2511575.7741605732589960)", - "surface": 6630000, - "canton": null, - "numero_insee": "02685" - } - }, - { - "pk": 33675, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-PAUL-AUX-BOIS", - "center": "POINT (662676.6437433719402179 2505527.9813547269441187)", - "surface": 11110000, - "canton": null, - "numero_insee": "02686" - } - }, - { - "pk": 28286, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-PIERRE-AIGLE", - "center": "POINT (662494.3935093567706645 2479710.2623565737158060)", - "surface": 12010000, - "canton": null, - "numero_insee": "02687" - } - }, - { - "pk": 5970, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-PIERRE-LES-FRANQUEVILLE", - "center": "POINT (706433.3791775277350098 2537417.2767098909243941)", - "surface": 7180000, - "canton": null, - "numero_insee": "02688" - } - }, - { - "pk": 21933, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-PIERREMONT", - "center": "POINT (711140.1722378670237958 2525149.8602702328935266)", - "surface": 7050000, - "canton": null, - "numero_insee": "02689" - } - }, - { - "pk": 5311, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINTE-PREUVE", - "center": "POINT (713832.3938104537082836 2514466.2183198896236718)", - "surface": 9650000, - "canton": null, - "numero_insee": "02690" - } - }, - { - "pk": 17658, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-QUENTIN", - "center": "POINT (667694.6738498795311898 2539290.6863431944511831)", - "surface": 22800000, - "canton": null, - "numero_insee": "02691" - } - }, - { - "pk": 15426, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-REMY-BLANZY", - "center": "POINT (670761.6038597701117396 2472375.3549149879254401)", - "surface": 14070000, - "canton": null, - "numero_insee": "02693" - } - }, - { - "pk": 30242, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-SIMON", - "center": "POINT (660986.6056273373542354 2527927.3217263044789433)", - "surface": 6340000, - "canton": null, - "numero_insee": "02694" - } - }, - { - "pk": 13796, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-THIBAUT", - "center": "POINT (693132.0528725115582347 2477567.8017905661836267)", - "surface": 4100000, - "canton": null, - "numero_insee": "02695" - } - }, - { - "pk": 28731, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAINT-THOMAS", - "center": "POINT (707439.1980115864425898 2501403.9827771405689418)", - "surface": 2450000, - "canton": null, - "numero_insee": "02696" - } - }, - { - "pk": 31562, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAMOUSSY", - "center": "POINT (701755.5614155159564689 2510861.6579536790959537)", - "surface": 25580000, - "canton": null, - "numero_insee": "02697" - } - }, - { - "pk": 24257, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SANCY-LES-CHEMINOTS", - "center": "POINT (682685.6861643984448165 2494089.8897946495562792)", - "surface": 4580000, - "canton": null, - "numero_insee": "02698" - } - }, - { - "pk": 5843, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAPONAY", - "center": "POINT (683597.7092647390672937 2469081.6964788818731904)", - "surface": 10040000, - "canton": null, - "numero_insee": "02699" - } - }, - { - "pk": 9019, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAULCHERY", - "center": "POINT (671415.4977021196391433 2442361.2103296532295644)", - "surface": 2650000, - "canton": null, - "numero_insee": "02701" - } - }, - { - "pk": 31413, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SAVY", - "center": "POINT (662003.5490851773647591 2537841.7931060083210468)", - "surface": 7530000, - "canton": null, - "numero_insee": "02702" - } - }, - { - "pk": 24698, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SEBONCOURT", - "center": "POINT (681998.0182084266562015 2551718.7980507323518395)", - "surface": 11780000, - "canton": null, - "numero_insee": "02703" - } - }, - { - "pk": 9043, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SELENS", - "center": "POINT (663024.1210347429150715 2499927.4493048479780555)", - "surface": 7590000, - "canton": null, - "numero_insee": "02704" - } - }, - { - "pk": 27527, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA SELVE", - "center": "POINT (720079.9062492450466380 2509316.0624629165977240)", - "surface": 4840000, - "canton": null, - "numero_insee": "02705" - } - }, - { - "pk": 32713, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SEPTMONTS", - "center": "POINT (674576.7154257434885949 2482714.1861422262154520)", - "surface": 4830000, - "canton": null, - "numero_insee": "02706" - } - }, - { - "pk": 34367, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SEPTVAUX", - "center": "POINT (675959.3639446063898504 2508541.9975397768430412)", - "surface": 8500000, - "canton": null, - "numero_insee": "02707" - } - }, - { - "pk": 12844, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SEQUEHART", - "center": "POINT (672216.7197249720338732 2548834.4606549493037164)", - "surface": 6440000, - "canton": null, - "numero_insee": "02708" - } - }, - { - "pk": 29346, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERAIN", - "center": "POINT (673630.3711841037729755 2559152.3571668057702482)", - "surface": 6720000, - "canton": null, - "numero_insee": "02709" - } - }, - { - "pk": 25795, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERAUCOURT-LE-GRAND", - "center": "POINT (663555.0236682586837560 2531851.3370144865475595)", - "surface": 10400000, - "canton": null, - "numero_insee": "02710" - } - }, - { - "pk": 26794, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERCHES", - "center": "POINT (680885.3452811707975343 2482167.1504178419709206)", - "surface": 9060000, - "canton": null, - "numero_insee": "02711" - } - }, - { - "pk": 13641, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERGY", - "center": "POINT (690031.0351445969427004 2465633.8749370370060205)", - "surface": 13550000, - "canton": null, - "numero_insee": "02712" - } - }, - { - "pk": 29494, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERINGES-ET-NESLES", - "center": "POINT (689103.4116989879403263 2468828.0960651878267527)", - "surface": 13740000, - "canton": null, - "numero_insee": "02713" - } - }, - { - "pk": 35534, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERMOISE", - "center": "POINT (680647.1483745753066614 2486667.9888709331862628)", - "surface": 5580000, - "canton": null, - "numero_insee": "02714" - } - }, - { - "pk": 30572, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERVAL", - "center": "POINT (697875.4402130182133988 2484612.4387014447711408)", - "surface": 2220000, - "canton": null, - "numero_insee": "02715" - } - }, - { - "pk": 35288, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERVAIS", - "center": "POINT (672711.1143297842936590 2514017.9055824079550803)", - "surface": 5540000, - "canton": null, - "numero_insee": "02716" - } - }, - { - "pk": 34132, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SERY-LES-MEZIERES", - "center": "POINT (678377.1619468214921653 2530275.5847972105257213)", - "surface": 11780000, - "canton": null, - "numero_insee": "02717" - } - }, - { - "pk": 10313, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SILLY-LA-POTERIE", - "center": "POINT (659301.4761396583635360 2466775.0151425134390593)", - "surface": 2420000, - "canton": null, - "numero_insee": "02718" - } - }, - { - "pk": 8193, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SINCENY", - "center": "POINT (667435.3083150482270867 2510771.3687576721422374)", - "surface": 13150000, - "canton": null, - "numero_insee": "02719" - } - }, - { - "pk": 14688, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SISSONNE", - "center": "POINT (714682.9201039625331759 2508569.8204171108081937)", - "surface": 53620000, - "canton": null, - "numero_insee": "02720" - } - }, - { - "pk": 18402, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SISSY", - "center": "POINT (678133.9045707082841545 2535376.5608744095079601)", - "surface": 10890000, - "canton": null, - "numero_insee": "02721" - } - }, - { - "pk": 29997, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SOISSONS", - "center": "POINT (671736.2394814190920442 2487293.0914406133815646)", - "surface": 12330000, - "canton": null, - "numero_insee": "02722" - } - }, - { - "pk": 11774, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SOIZE", - "center": "POINT (726261.7700381536269560 2523677.2739143450744450)", - "surface": 6040000, - "canton": null, - "numero_insee": "02723" - } - }, - { - "pk": 31581, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SOMMELANS", - "center": "POINT (669764.9617629669373855 2460058.9562990181148052)", - "surface": 4240000, - "canton": null, - "numero_insee": "02724" - } - }, - { - "pk": 22390, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SOMMERON", - "center": "POINT (715612.5313537465408444 2552303.8168830024078488)", - "surface": 4630000, - "canton": null, - "numero_insee": "02725" - } - }, - { - "pk": 5102, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SOMMETTE-EAUCOURT", - "center": "POINT (656501.1206215848214924 2525888.2613101769238710)", - "surface": 6340000, - "canton": null, - "numero_insee": "02726" - } - }, - { - "pk": 10283, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SONS-ET-RONCHERES", - "center": "POINT (695981.3206523227272555 2531024.9467842774465680)", - "surface": 9190000, - "canton": null, - "numero_insee": "02727" - } - }, - { - "pk": 24617, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SORBAIS", - "center": "POINT (711150.9910331094870344 2547463.1660453081130981)", - "surface": 14050000, - "canton": null, - "numero_insee": "02728" - } - }, - { - "pk": 12296, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SOUCY", - "center": "POINT (657182.9483470816630870 2480666.0627841586247087)", - "surface": 5240000, - "canton": null, - "numero_insee": "02729" - } - }, - { - "pk": 28250, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SOUPIR", - "center": "POINT (691716.9412090475670993 2491064.3824119260534644)", - "surface": 10200000, - "canton": null, - "numero_insee": "02730" - } - }, - { - "pk": 25749, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE SOURD", - "center": "POINT (701892.8781985508976504 2541881.4356002560816705)", - "surface": 7350000, - "canton": null, - "numero_insee": "02731" - } - }, - { - "pk": 29347, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SURFONTAINE", - "center": "POINT (682495.3985255220904946 2528409.2839559107087553)", - "surface": 6400000, - "canton": null, - "numero_insee": "02732" - } - }, - { - "pk": 27016, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "SUZY", - "center": "POINT (681374.9912661062553525 2507086.8747740043327212)", - "surface": 10210000, - "canton": null, - "numero_insee": "02733" - } - }, - { - "pk": 33411, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TAILLEFONTAINE", - "center": "POINT (651890.9232902780640870 2479320.5842418856918812)", - "surface": 10560000, - "canton": null, - "numero_insee": "02734" - } - }, - { - "pk": 8751, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TANNIERES", - "center": "POINT (688331.8671153923496604 2477226.9694987260736525)", - "surface": 2540000, - "canton": null, - "numero_insee": "02735" - } - }, - { - "pk": 5493, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TARTIERS", - "center": "POINT (664975.8684578873217106 2493940.1898163049481809)", - "surface": 8820000, - "canton": null, - "numero_insee": "02736" - } - }, - { - "pk": 28243, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TAVAUX-ET-PONTSERICOURT", - "center": "POINT (714226.5310197022045031 2526977.1291185310110450)", - "surface": 25620000, - "canton": null, - "numero_insee": "02737" - } - }, - { - "pk": 23281, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TERGNIER", - "center": "POINT (669573.9372837975388393 2518193.9480340555310249)", - "surface": 18280000, - "canton": null, - "numero_insee": "02738" - } - }, - { - "pk": 29372, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TERNY-SORNY", - "center": "POINT (674874.5931103460025042 2494824.3325568437576294)", - "surface": 7120000, - "canton": null, - "numero_insee": "02739" - } - }, - { - "pk": 21702, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "THENAILLES", - "center": "POINT (716347.0155101486016065 2536500.7911987374536693)", - "surface": 16760000, - "canton": null, - "numero_insee": "02740" - } - }, - { - "pk": 24907, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "THENELLES", - "center": "POINT (680815.8456653633620590 2537700.6055778027512133)", - "surface": 7030000, - "canton": null, - "numero_insee": "02741" - } - }, - { - "pk": 31610, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "THIERNU", - "center": "POINT (704088.9638604724314064 2530693.4170772084034979)", - "surface": 6230000, - "canton": null, - "numero_insee": "02742" - } - }, - { - "pk": 3639, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE THUEL", - "center": "POINT (726615.4828117653960362 2517376.4628617139533162)", - "surface": 7160000, - "canton": null, - "numero_insee": "02743" - } - }, - { - "pk": 11753, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TORCY-EN-VALOIS", - "center": "POINT (668413.1752746006241068 2454243.7315546935424209)", - "surface": 3610000, - "canton": null, - "numero_insee": "02744" - } - }, - { - "pk": 27217, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TOULIS-ET-ATTENCOURT", - "center": "POINT (702052.3140798219246790 2523071.5919261258095503)", - "surface": 7830000, - "canton": null, - "numero_insee": "02745" - } - }, - { - "pk": 31614, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TRAVECY", - "center": "POINT (672748.5876453737728298 2521422.7137719355523586)", - "surface": 14580000, - "canton": null, - "numero_insee": "02746" - } - }, - { - "pk": 25951, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TREFCON", - "center": "POINT (654076.6558198493439704 2540476.4773507528007030)", - "surface": 4030000, - "canton": null, - "numero_insee": "02747" - } - }, - { - "pk": 30315, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TRELOU-SUR-MARNE", - "center": "POINT (692417.9355221386067569 2455547.4842510428279638)", - "surface": 20290000, - "canton": null, - "numero_insee": "02748" - } - }, - { - "pk": 22428, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TROESNES", - "center": "POINT (661200.8822484732372686 2466991.1790573922917247)", - "surface": 2830000, - "canton": null, - "numero_insee": "02749" - } - }, - { - "pk": 24432, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TROSLY-LOIRE", - "center": "POINT (664803.1399030976463109 2502544.0855640610679984)", - "surface": 15290000, - "canton": null, - "numero_insee": "02750" - } - }, - { - "pk": 8412, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TRUCY", - "center": "POINT (692359.7172587435925379 2497874.0829007155261934)", - "surface": 3050000, - "canton": null, - "numero_insee": "02751" - } - }, - { - "pk": 12561, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TUGNY-ET-PONT", - "center": "POINT (659362.1135493586771190 2530715.2800472206436098)", - "surface": 5880000, - "canton": null, - "numero_insee": "02752" - } - }, - { - "pk": 14779, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "TUPIGNY", - "center": "POINT (690288.6787896411260590 2553389.8924433039501309)", - "surface": 13020000, - "canton": null, - "numero_insee": "02753" - } - }, - { - "pk": 29555, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "UGNY-LE-GAY", - "center": "POINT (659265.0474807766731828 2518507.1266166488640010)", - "surface": 5980000, - "canton": null, - "numero_insee": "02754" - } - }, - { - "pk": 29556, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "URCEL", - "center": "POINT (688437.2392115441616625 2500242.3674129708670080)", - "surface": 7270000, - "canton": null, - "numero_insee": "02755" - } - }, - { - "pk": 30241, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "URVILLERS", - "center": "POINT (670550.2361297461902723 2532911.0259386827237904)", - "surface": 13820000, - "canton": null, - "numero_insee": "02756" - } - }, - { - "pk": 18759, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VADENCOURT", - "center": "POINT (688932.8611743963556364 2548075.3377197780646384)", - "surface": 12440000, - "canton": null, - "numero_insee": "02757" - } - }, - { - "pk": 28728, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAILLY-SUR-AISNE", - "center": "POINT (685913.7098698921035975 2491015.2579683610238135)", - "surface": 9930000, - "canton": null, - "numero_insee": "02758" - } - }, - { - "pk": 35526, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA VALLEE-AU-BLE", - "center": "POINT (704902.0607209646841511 2541006.4164811163209379)", - "surface": 5180000, - "canton": null, - "numero_insee": "02759" - } - }, - { - "pk": 26160, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA VALLEE-MULATRE", - "center": "POINT (687835.8008661705534905 2559472.6381880515255034)", - "surface": 5320000, - "canton": null, - "numero_insee": "02760" - } - }, - { - "pk": 13814, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VARISCOURT", - "center": "POINT (719326.3714048366528004 2491998.9095975784584880)", - "surface": 5490000, - "canton": null, - "numero_insee": "02761" - } - }, - { - "pk": 11221, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VASSENS", - "center": "POINT (659439.8780246145324782 2497795.8819494755007327)", - "surface": 9800000, - "canton": null, - "numero_insee": "02762" - } - }, - { - "pk": 25757, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VASSENY", - "center": "POINT (683764.9709904552437365 2484793.1617404180578887)", - "surface": 3120000, - "canton": null, - "numero_insee": "02763" - } - }, - { - "pk": 10657, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VASSOGNE", - "center": "POINT (701112.8504292010329664 2492244.6680218488909304)", - "surface": 2970000, - "canton": null, - "numero_insee": "02764" - } - }, - { - "pk": 9545, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUCELLES-ET-BEFFECOURT", - "center": "POINT (688511.8855464258231223 2503244.8598169554024935)", - "surface": 4020000, - "canton": null, - "numero_insee": "02765" - } - }, - { - "pk": 29557, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUDESSON", - "center": "POINT (683452.2681553318398073 2498098.8740209704264998)", - "surface": 8510000, - "canton": null, - "numero_insee": "02766" - } - }, - { - "pk": 28032, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUXREZIS", - "center": "POINT (668296.2959006556775421 2491766.8584174672141671)", - "surface": 6620000, - "canton": null, - "numero_insee": "02767" - } - }, - { - "pk": 8791, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUXAILLON", - "center": "POINT (677647.3778575041797012 2498249.8984620049595833)", - "surface": 14070000, - "canton": null, - "numero_insee": "02768" - } - }, - { - "pk": 25302, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUX-ANDIGNY", - "center": "POINT (685147.9941385206766427 2557848.9707765872590244)", - "surface": 15970000, - "canton": null, - "numero_insee": "02769" - } - }, - { - "pk": 10454, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUXBUIN", - "center": "POINT (669656.1988300593802705 2484773.9329450596123934)", - "surface": 5050000, - "canton": null, - "numero_insee": "02770" - } - }, - { - "pk": 31005, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUXCERE", - "center": "POINT (694188.6127068863715976 2482780.0656529092229903)", - "surface": 5830000, - "canton": null, - "numero_insee": "02771" - } - }, - { - "pk": 26555, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUX-EN-VERMANDOIS", - "center": "POINT (657511.3465225172694772 2536603.1614318029023707)", - "surface": 4010000, - "canton": null, - "numero_insee": "02772" - } - }, - { - "pk": 17133, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VAUXTIN", - "center": "POINT (691978.9000332857249305 2483761.9881811751984060)", - "surface": 2240000, - "canton": null, - "numero_insee": "02773" - } - }, - { - "pk": 12403, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VENDELLES", - "center": "POINT (657632.0716772897867486 2546009.7031723693944514)", - "surface": 5240000, - "canton": null, - "numero_insee": "02774" - } - }, - { - "pk": 7303, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VENDEUIL", - "center": "POINT (672716.4517960122320801 2525224.7312733256258070)", - "surface": 14650000, - "canton": null, - "numero_insee": "02775" - } - }, - { - "pk": 35890, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VENDHUILE", - "center": "POINT (662536.6301346976542845 2557657.8247661851346493)", - "surface": 10980000, - "canton": null, - "numero_insee": "02776" - } - }, - { - "pk": 15402, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VENDIERES", - "center": "POINT (681117.7030797847546637 2431035.5716414046473801)", - "surface": 12760000, - "canton": null, - "numero_insee": "02777" - } - }, - { - "pk": 3626, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VENDRESSE-BEAULNE", - "center": "POINT (695798.8844485735753551 2493500.4595164805650711)", - "surface": 8990000, - "canton": null, - "numero_insee": "02778" - } - }, - { - "pk": 32060, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VENEROLLES", - "center": "POINT (692871.3542151761939749 2555613.0326325199566782)", - "surface": 9030000, - "canton": null, - "numero_insee": "02779" - } - }, - { - "pk": 13944, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VENIZEL", - "center": "POINT (676750.0378744932822883 2486034.6523270322941244)", - "surface": 3730000, - "canton": null, - "numero_insee": "02780" - } - }, - { - "pk": 12432, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LE VERGUIER", - "center": "POINT (659818.8402078377548605 2547729.1530231977812946)", - "surface": 4310000, - "canton": null, - "numero_insee": "02782" - } - }, - { - "pk": 6241, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "GRAND-VERLY", - "center": "POINT (689413.6344374178443104 2550380.7455656970851123)", - "surface": 3710000, - "canton": null, - "numero_insee": "02783" - } - }, - { - "pk": 7621, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "PETIT-VERLY", - "center": "POINT (688099.4217700355220586 2551970.5478667616844177)", - "surface": 5140000, - "canton": null, - "numero_insee": "02784" - } - }, - { - "pk": 21166, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VERMAND", - "center": "POINT (658555.3350717958528548 2543315.9170755869708955)", - "surface": 16030000, - "canton": null, - "numero_insee": "02785" - } - }, - { - "pk": 27141, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VERNEUIL-SOUS-COUCY", - "center": "POINT (671080.3787926994264126 2505699.0328396176919341)", - "surface": 4660000, - "canton": null, - "numero_insee": "02786" - } - }, - { - "pk": 36920, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VERNEUIL-SUR-SERRE", - "center": "POINT (697000.4637237566057593 2517025.1490800390020013)", - "surface": 8030000, - "canton": null, - "numero_insee": "02787" - } - }, - { - "pk": 37563, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VERSIGNY", - "center": "POINT (679878.6019454464549199 2518381.1231625671498477)", - "surface": 12930000, - "canton": null, - "numero_insee": "02788" - } - }, - { - "pk": 30237, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VERVINS", - "center": "POINT (714427.3469187391456217 2538685.8001400157809258)", - "surface": 10350000, - "canton": null, - "numero_insee": "02789" - } - }, - { - "pk": 31837, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VESLES-ET-CAUMONT", - "center": "POINT (704974.2138466470642015 2520694.9118402390740812)", - "surface": 10260000, - "canton": null, - "numero_insee": "02790" - } - }, - { - "pk": 19924, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VEUILLY-LA-POTERIE", - "center": "POINT (664410.8283685499336571 2454209.9252483830787241)", - "surface": 7450000, - "canton": null, - "numero_insee": "02792" - } - }, - { - "pk": 13527, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VEZAPONIN", - "center": "POINT (664250.1304879903327674 2496935.9352666614577174)", - "surface": 3250000, - "canton": null, - "numero_insee": "02793" - } - }, - { - "pk": 34786, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VEZILLY", - "center": "POINT (698130.6275595180923119 2466302.8596287812106311)", - "surface": 10790000, - "canton": null, - "numero_insee": "02794" - } - }, - { - "pk": 33414, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIC-SUR-AISNE", - "center": "POINT (656098.7940405172994360 2490563.1775156101211905)", - "surface": 5180000, - "canton": null, - "numero_insee": "02795" - } - }, - { - "pk": 5220, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VICHEL-NANTEUIL", - "center": "POINT (670221.2885068668983877 2465266.1993797798641026)", - "surface": 6330000, - "canton": null, - "numero_insee": "02796" - } - }, - { - "pk": 36962, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIEL-ARCY", - "center": "POINT (693647.6573963107075542 2487578.5258871801197529)", - "surface": 6650000, - "canton": null, - "numero_insee": "02797" - } - }, - { - "pk": 31705, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIELS-MAISONS", - "center": "POINT (677683.4946558991214260 2434809.0956700332462788)", - "surface": 21560000, - "canton": null, - "numero_insee": "02798" - } - }, - { - "pk": 32062, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIERZY", - "center": "POINT (668521.4598927446641028 2476959.3790615028701723)", - "surface": 12720000, - "canton": null, - "numero_insee": "02799" - } - }, - { - "pk": 5390, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIFFORT", - "center": "POINT (682939.2839402703102678 2440457.3083926890976727)", - "surface": 10080000, - "canton": null, - "numero_insee": "02800" - } - }, - { - "pk": 28022, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIGNEUX-HOCQUET", - "center": "POINT (719614.9416100719245151 2528723.8867491371929646)", - "surface": 13960000, - "canton": null, - "numero_insee": "02801" - } - }, - { - "pk": 34812, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA VILLE-AUX-BOIS-LES-DIZY", - "center": "POINT (718891.8183397749671713 2519612.2635532999411225)", - "surface": 10210000, - "canton": null, - "numero_insee": "02802" - } - }, - { - "pk": 31442, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "LA VILLE-AUX-BOIS-LES-PONTAVERT", - "center": "POINT (709910.9557056369958445 2493119.7652531177736819)", - "surface": 8500000, - "canton": null, - "numero_insee": "02803" - } - }, - { - "pk": 18475, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLEMONTOIRE", - "center": "POINT (671710.5950309683103114 2478487.2855183505453169)", - "surface": 7680000, - "canton": null, - "numero_insee": "02804" - } - }, - { - "pk": 26358, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLENEUVE-SAINT-GERMAIN", - "center": "POINT (674438.5975437101442367 2487215.8693515434861183)", - "surface": 4460000, - "canton": null, - "numero_insee": "02805" - } - }, - { - "pk": 9923, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLENEUVE-SUR-FERE", - "center": "POINT (683138.9005440834444016 2464174.6374638080596924)", - "surface": 10710000, - "canton": null, - "numero_insee": "02806" - } - }, - { - "pk": 24429, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLEQUIER-AUMONT", - "center": "POINT (662267.4966796241933480 2518432.4143454115837812)", - "surface": 12250000, - "canton": null, - "numero_insee": "02807" - } - }, - { - "pk": 26556, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERET", - "center": "POINT (661095.0071412100223824 2550641.6124180974438787)", - "surface": 4000000, - "canton": null, - "numero_insee": "02808" - } - }, - { - "pk": 38053, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-AGRON-AIGUIZY", - "center": "POINT (700654.9640356005402282 2463622.4937222041189671)", - "surface": 13130000, - "canton": null, - "numero_insee": "02809" - } - }, - { - "pk": 19935, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-COTTERETS", - "center": "POINT (655358.7022164843510836 2471544.8411552147008479)", - "surface": 42340000, - "canton": null, - "numero_insee": "02810" - } - }, - { - "pk": 26557, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-EN-PRAYERES", - "center": "POINT (696949.5052140946500003 2487606.4932343023829162)", - "surface": 5770000, - "canton": null, - "numero_insee": "02811" - } - }, - { - "pk": 8909, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-HELON", - "center": "POINT (667842.1938560919370502 2474452.0382801750674844)", - "surface": 8210000, - "canton": null, - "numero_insee": "02812" - } - }, - { - "pk": 12194, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-LE-SEC", - "center": "POINT (684174.2821132701355964 2531025.0421702289022505)", - "surface": 10700000, - "canton": null, - "numero_insee": "02813" - } - }, - { - "pk": 25554, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-LES-GUISE", - "center": "POINT (696734.3023551102960482 2548441.5824451814405620)", - "surface": 8130000, - "canton": null, - "numero_insee": "02814" - } - }, - { - "pk": 18572, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-SAINT-CHRISTOPHE", - "center": "POINT (654351.0472457788418978 2531673.5850742775946856)", - "surface": 8920000, - "canton": null, - "numero_insee": "02815" - } - }, - { - "pk": 5063, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLERS-SUR-FERE", - "center": "POINT (687140.3687712227692828 2464308.5619634562171996)", - "surface": 10760000, - "canton": null, - "numero_insee": "02816" - } - }, - { - "pk": 26165, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLE-SAVOYE", - "center": "POINT (694629.5151619553798810 2477980.7395799490623176)", - "surface": 2700000, - "canton": null, - "numero_insee": "02817" - } - }, - { - "pk": 21937, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VILLIERS-SAINT-DENIS", - "center": "POINT (667693.0052872874075547 2444731.3589936429634690)", - "surface": 7620000, - "canton": null, - "numero_insee": "02818" - } - }, - { - "pk": 31609, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VINCY-REUIL-ET-MAGNY", - "center": "POINT (723344.9339888845570385 2525453.5808034921064973)", - "surface": 12080000, - "canton": null, - "numero_insee": "02819" - } - }, - { - "pk": 23137, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIRY-NOUREUIL", - "center": "POINT (665889.7050799196586013 2516061.5474544521421194)", - "surface": 17920000, - "canton": null, - "numero_insee": "02820" - } - }, - { - "pk": 25371, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIVAISE", - "center": "POINT (688715.4943387355888262 2514653.5868666716851294)", - "surface": 9010000, - "canton": null, - "numero_insee": "02821" - } - }, - { - "pk": 37855, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VIVIERES", - "center": "POINT (654896.8439864781685174 2478845.6241905996575952)", - "surface": 13970000, - "canton": null, - "numero_insee": "02822" - } - }, - { - "pk": 10742, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VOHARIES", - "center": "POINT (704868.1764127832138911 2533201.5133347455412149)", - "surface": 3380000, - "canton": null, - "numero_insee": "02823" - } - }, - { - "pk": 29766, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VORGES", - "center": "POINT (695218.0945631178328767 2503001.4597164802253246)", - "surface": 4810000, - "canton": null, - "numero_insee": "02824" - } - }, - { - "pk": 33405, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VOULPAIX", - "center": "POINT (707720.4780679536052048 2539029.1373159568756819)", - "surface": 11650000, - "canton": null, - "numero_insee": "02826" - } - }, - { - "pk": 13854, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VOYENNE", - "center": "POINT (701134.0281710855197161 2525165.0735234520398080)", - "surface": 13860000, - "canton": null, - "numero_insee": "02827" - } - }, - { - "pk": 23298, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VREGNY", - "center": "POINT (678607.1042575932806358 2491253.6347178057767451)", - "surface": 4540000, - "canton": null, - "numero_insee": "02828" - } - }, - { - "pk": 13461, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "VUILLERY", - "center": "POINT (676290.5960291641531512 2493035.1766421990469098)", - "surface": 1070000, - "canton": null, - "numero_insee": "02829" - } - }, - { - "pk": 33930, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "WASSIGNY", - "center": "POINT (690644.8293584949569777 2558595.9036061316728592)", - "surface": 6800000, - "canton": null, - "numero_insee": "02830" - } - }, - { - "pk": 33924, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "WIEGE-FATY", - "center": "POINT (699075.3247746475972235 2543758.6718534440733492)", - "surface": 7670000, - "canton": null, - "numero_insee": "02832" - } - }, - { - "pk": 11624, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "WIMY", - "center": "POINT (719322.0546025898074731 2551434.7854100521653891)", - "surface": 12100000, - "canton": null, - "numero_insee": "02833" - } - }, - { - "pk": 14263, - "model": "ishtar_common.town", - "fields": { - "departement": 2, - "name": "WISSIGNICOURT", - "center": "POINT (679998.7711737251374871 2504173.4448942737653852)", - "surface": 4540000, - "canton": null, - "numero_insee": "02834" - } - }, - { - "pk": 6766, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ABREST", - "center": "POINT (686131.6824458584887907 2122231.6188014545477927)", - "surface": 10300000, - "canton": null, - "numero_insee": "03001" - } - }, - { - "pk": 22830, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AGONGES", - "center": "POINT (662121.8047763219801709 2180080.6643409086391330)", - "surface": 24240000, - "canton": null, - "numero_insee": "03002" - } - }, - { - "pk": 18761, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AINAY-LE-CHATEAU", - "center": "POINT (629304.6143456390127540 2190613.4420465370640159)", - "surface": 24240000, - "canton": null, - "numero_insee": "03003" - } - }, - { - "pk": 19850, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ARCHIGNAT", - "center": "POINT (605609.1388614800525829 2151880.3743249108083546)", - "surface": 24460000, - "canton": null, - "numero_insee": "03005" - } - }, - { - "pk": 23961, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ARFEUILLES", - "center": "POINT (708604.0580124451080337 2127926.9428819189779460)", - "surface": 59550000, - "canton": null, - "numero_insee": "03006" - } - }, - { - "pk": 15792, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ARPHEUILLES-SAINT-PRIEST", - "center": "POINT (625257.3881480147829279 2136331.3944447170943022)", - "surface": 19120000, - "canton": null, - "numero_insee": "03007" - } - }, - { - "pk": 19526, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ARRONNES", - "center": "POINT (695779.6293627144768834 2117608.9452773500233889)", - "surface": 25980000, - "canton": null, - "numero_insee": "03008" - } - }, - { - "pk": 35881, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AUBIGNY", - "center": "POINT (663071.0690669256728142 2186193.9896074184216559)", - "surface": 17050000, - "canton": null, - "numero_insee": "03009" - } - }, - { - "pk": 21274, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AUDES", - "center": "POINT (617031.9487318025203422 2162285.5221626050770283)", - "surface": 28180000, - "canton": null, - "numero_insee": "03010" - } - }, - { - "pk": 9390, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AUROUER", - "center": "POINT (674070.5341446524253115 2187387.8486881023272872)", - "surface": 25800000, - "canton": null, - "numero_insee": "03011" - } - }, - { - "pk": 17603, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AUTRY-ISSARDS", - "center": "POINT (660289.5433966924902052 2171858.0135790081694722)", - "surface": 19390000, - "canton": null, - "numero_insee": "03012" - } - }, - { - "pk": 20117, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AVERMES", - "center": "POINT (675150.8354280096245930 2177988.7877521952614188)", - "surface": 15530000, - "canton": null, - "numero_insee": "03013" - } - }, - { - "pk": 13260, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "AVRILLY", - "center": "POINT (725438.2466896109981462 2149288.9442888530902565)", - "surface": 11410000, - "canton": null, - "numero_insee": "03014" - } - }, - { - "pk": 12407, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BAGNEUX", - "center": "POINT (666399.8985582389868796 2183119.3999035893939435)", - "surface": 25390000, - "canton": null, - "numero_insee": "03015" - } - }, - { - "pk": 36245, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BARBERIER", - "center": "POINT (670401.8146044902969152 2135911.2411888157948852)", - "surface": 8090000, - "canton": null, - "numero_insee": "03016" - } - }, - { - "pk": 18455, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BARRAIS-BUSSOLLES", - "center": "POINT (704868.7304525749059394 2143509.4469488132745028)", - "surface": 25380000, - "canton": null, - "numero_insee": "03017" - } - }, - { - "pk": 14513, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BAYET", - "center": "POINT (672468.0544355023885146 2140132.4995663831941783)", - "surface": 23300000, - "canton": null, - "numero_insee": "03018" - } - }, - { - "pk": 19906, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BEAULON", - "center": "POINT (702080.9249774642521515 2177215.7818498979322612)", - "surface": 63710000, - "canton": null, - "numero_insee": "03019" - } - }, - { - "pk": 15794, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BEAUNE-D'ALLIER", - "center": "POINT (642629.7549130419502035 2141482.1833664351142943)", - "surface": 24400000, - "canton": null, - "numero_insee": "03020" - } - }, - { - "pk": 7532, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BEGUES", - "center": "POINT (662286.2024803777458146 2125032.8723296266980469)", - "surface": 8300000, - "canton": null, - "numero_insee": "03021" - } - }, - { - "pk": 30433, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BELLENAVES", - "center": "POINT (656204.3031988340662792 2134089.8449377864599228)", - "surface": 34780000, - "canton": null, - "numero_insee": "03022" - } - }, - { - "pk": 4493, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BELLERIVE-SUR-ALLIER", - "center": "POINT (681903.5864672990282997 2125098.5175316832028329)", - "surface": 18710000, - "canton": null, - "numero_insee": "03023" - } - }, - { - "pk": 4637, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BERT", - "center": "POINT (705028.1888995354529470 2148315.1178180160932243)", - "surface": 24350000, - "canton": null, - "numero_insee": "03024" - } - }, - { - "pk": 18595, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BESSAY-SUR-ALLIER", - "center": "POINT (679192.7296892130980268 2161608.5005066264420748)", - "surface": 34640000, - "canton": null, - "numero_insee": "03025" - } - }, - { - "pk": 19709, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BESSON", - "center": "POINT (670456.8856168633792549 2164937.6882617790251970)", - "surface": 47280000, - "canton": null, - "numero_insee": "03026" - } - }, - { - "pk": 31698, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BEZENET", - "center": "POINT (639471.5346244403626770 2148061.5146460435353220)", - "surface": 10000000, - "canton": null, - "numero_insee": "03027" - } - }, - { - "pk": 34662, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BILLEZOIS", - "center": "POINT (695632.1899447569157928 2135023.6123154400847852)", - "surface": 15660000, - "canton": null, - "numero_insee": "03028" - } - }, - { - "pk": 27170, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BILLY", - "center": "POINT (685103.0914966395357624 2137336.6874553454108536)", - "surface": 10260000, - "canton": null, - "numero_insee": "03029" - } - }, - { - "pk": 37162, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BIOZAT", - "center": "POINT (673634.6382106284145266 2120524.4954638616181910)", - "surface": 16330000, - "canton": null, - "numero_insee": "03030" - } - }, - { - "pk": 18844, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BIZENEUILLE", - "center": "POINT (630298.3093762182397768 2155791.2493342873640358)", - "surface": 29700000, - "canton": null, - "numero_insee": "03031" - } - }, - { - "pk": 22340, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BLOMARD", - "center": "POINT (648220.0665489279199392 2143230.8331899004988372)", - "surface": 22460000, - "canton": null, - "numero_insee": "03032" - } - }, - { - "pk": 37657, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BOST", - "center": "POINT (690252.2351990184979513 2132075.4379039658233523)", - "surface": 9590000, - "canton": null, - "numero_insee": "03033" - } - }, - { - "pk": 8845, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BOUCE", - "center": "POINT (688922.5081994395004585 2147277.9329702095128596)", - "surface": 22010000, - "canton": null, - "numero_insee": "03034" - } - }, - { - "pk": 16596, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE BOUCHAUD", - "center": "POINT (720958.3114585629664361 2146448.4039092729799449)", - "surface": 22870000, - "canton": null, - "numero_insee": "03035" - } - }, - { - "pk": 19676, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BOURBON-L'ARCHAMBAULT", - "center": "POINT (654748.7964141812408343 2176115.0367915085516870)", - "surface": 55270000, - "canton": null, - "numero_insee": "03036" - } - }, - { - "pk": 20738, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BRAIZE", - "center": "POINT (624253.6052119398955256 2184265.4790059644728899)", - "surface": 21050000, - "canton": null, - "numero_insee": "03037" - } - }, - { - "pk": 3326, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BRANSAT", - "center": "POINT (667697.3692802847363055 2147999.3173199142329395)", - "surface": 15450000, - "canton": null, - "numero_insee": "03038" - } - }, - { - "pk": 16250, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BRESSOLLES", - "center": "POINT (673515.4320356670068577 2170168.1199703849852085)", - "surface": 23560000, - "canton": null, - "numero_insee": "03040" - } - }, - { - "pk": 31303, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE BRETHON", - "center": "POINT (628927.1862382472027093 2175997.5591406594030559)", - "surface": 44050000, - "canton": null, - "numero_insee": "03041" - } - }, - { - "pk": 21852, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE BREUIL", - "center": "POINT (702767.8037998039508238 2131580.8617097185924649)", - "surface": 34550000, - "canton": null, - "numero_insee": "03042" - } - }, - { - "pk": 9860, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BROUT-VERNET", - "center": "POINT (673427.1540708412649110 2133234.3487949385307729)", - "surface": 31930000, - "canton": null, - "numero_insee": "03043" - } - }, - { - "pk": 3390, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BRUGHEAS", - "center": "POINT (679547.2519924311200157 2119673.6407056883908808)", - "surface": 26950000, - "canton": null, - "numero_insee": "03044" - } - }, - { - "pk": 17527, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BUSSET", - "center": "POINT (691171.4865060598822311 2118070.3996743313036859)", - "surface": 36830000, - "canton": null, - "numero_insee": "03045" - } - }, - { - "pk": 32578, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "BUXIERES-LES-MINES", - "center": "POINT (647449.1434198989300057 2163442.3812741613946855)", - "surface": 47610000, - "canton": null, - "numero_insee": "03046" - } - }, - { - "pk": 23820, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA CELLE", - "center": "POINT (634063.8957433169707656 2136505.6031399494968355)", - "surface": 31340000, - "canton": null, - "numero_insee": "03047" - } - }, - { - "pk": 18671, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CERILLY", - "center": "POINT (636093.3699531164020300 2180761.9965123371221125)", - "surface": 70950000, - "canton": null, - "numero_insee": "03048" - } - }, - { - "pk": 37498, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CESSET", - "center": "POINT (666424.1842858900781721 2144685.5988462101668119)", - "surface": 12180000, - "canton": null, - "numero_insee": "03049" - } - }, - { - "pk": 16969, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA CHABANNE", - "center": "POINT (709516.7195317831356078 2114722.5521290004253387)", - "surface": 20120000, - "canton": null, - "numero_insee": "03050" - } - }, - { - "pk": 20886, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHAMBERAT", - "center": "POINT (606766.4170499510364607 2157094.7330221929587424)", - "surface": 28590000, - "canton": null, - "numero_insee": "03051" - } - }, - { - "pk": 4319, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHAMBLET", - "center": "POINT (628966.2268638925161213 2147572.7032043556682765)", - "surface": 20710000, - "canton": null, - "numero_insee": "03052" - } - }, - { - "pk": 23821, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHANTELLE", - "center": "POINT (663480.8408864717930555 2137654.4273883467540145)", - "surface": 10980000, - "canton": null, - "numero_insee": "03053" - } - }, - { - "pk": 5374, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHAPEAU", - "center": "POINT (690462.1423052792670205 2166407.9859041622839868)", - "surface": 33810000, - "canton": null, - "numero_insee": "03054" - } - }, - { - "pk": 15935, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA CHAPELAUDE", - "center": "POINT (612859.6416838988661766 2158547.1689055841416121)", - "surface": 28500000, - "canton": null, - "numero_insee": "03055" - } - }, - { - "pk": 37658, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA CHAPELLE", - "center": "POINT (696745.7342412077123299 2121720.8959475434385240)", - "surface": 21070000, - "canton": null, - "numero_insee": "03056" - } - }, - { - "pk": 20073, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA CHAPELLE-AUX-CHASSES", - "center": "POINT (691305.4045083868550137 2185031.4332275325432420)", - "surface": 25970000, - "canton": null, - "numero_insee": "03057" - } - }, - { - "pk": 19908, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHAPPES", - "center": "POINT (646730.3232403662987053 2153727.6946229399181902)", - "surface": 18640000, - "canton": null, - "numero_insee": "03058" - } - }, - { - "pk": 4620, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHAREIL-CINTRAT", - "center": "POINT (668757.3669839284848422 2141001.9668002002872527)", - "surface": 12710000, - "canton": null, - "numero_insee": "03059" - } - }, - { - "pk": 23323, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHARMEIL", - "center": "POINT (681566.9432681796606630 2129399.6000204766169190)", - "surface": 7420000, - "canton": null, - "numero_insee": "03060" - } - }, - { - "pk": 5202, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHARMES", - "center": "POINT (670330.1514239943353459 2120696.7617552927695215)", - "surface": 8310000, - "canton": null, - "numero_insee": "03061" - } - }, - { - "pk": 8261, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHARROUX", - "center": "POINT (663831.7869458124041557 2131651.9430108317174017)", - "surface": 10450000, - "canton": null, - "numero_insee": "03062" - } - }, - { - "pk": 18454, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHASSENARD", - "center": "POINT (725735.7678776079555973 2161402.2771812095306814)", - "surface": 24950000, - "canton": null, - "numero_insee": "03063" - } - }, - { - "pk": 19639, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHATEAU-SUR-ALLIER", - "center": "POINT (649659.2048228470375761 2198091.2006112672388554)", - "surface": 27840000, - "canton": null, - "numero_insee": "03064" - } - }, - { - "pk": 31690, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHATEL-DE-NEUVRE", - "center": "POINT (673920.5416769835865125 2157760.5612231506966054)", - "surface": 19230000, - "canton": null, - "numero_insee": "03065" - } - }, - { - "pk": 18453, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHATEL-MONTAGNE", - "center": "POINT (706643.0872262928169221 2123105.9284333274699748)", - "surface": 36650000, - "canton": null, - "numero_insee": "03066" - } - }, - { - "pk": 21203, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHATELPERRON", - "center": "POINT (699658.5394739661132917 2155976.5201151864603162)", - "surface": 20630000, - "canton": null, - "numero_insee": "03067" - } - }, - { - "pk": 33656, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHATELUS", - "center": "POINT (707151.1377046988345683 2134020.1876495881006122)", - "surface": 6530000, - "canton": null, - "numero_insee": "03068" - } - }, - { - "pk": 4267, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHATILLON", - "center": "POINT (660767.5786431793821976 2162653.9251095722429454)", - "surface": 12760000, - "canton": null, - "numero_insee": "03069" - } - }, - { - "pk": 35368, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHAVROCHES", - "center": "POINT (696896.9203044108580798 2151148.8418351630680263)", - "surface": 9950000, - "canton": null, - "numero_insee": "03071" - } - }, - { - "pk": 17894, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHAZEMAIS", - "center": "POINT (614005.1094025699421763 2165162.6469740979373455)", - "surface": 29250000, - "canton": null, - "numero_insee": "03072" - } - }, - { - "pk": 15799, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHEMILLY", - "center": "POINT (674863.0018946375930682 2164674.6509481286630034)", - "surface": 16860000, - "canton": null, - "numero_insee": "03073" - } - }, - { - "pk": 23800, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHEVAGNES", - "center": "POINT (693955.7722618442494422 2179348.8973183711059391)", - "surface": 49800000, - "canton": null, - "numero_insee": "03074" - } - }, - { - "pk": 28117, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHEZELLE", - "center": "POINT (659699.6308510142844170 2135020.1548331696540117)", - "surface": 7260000, - "canton": null, - "numero_insee": "03075" - } - }, - { - "pk": 31038, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHEZY", - "center": "POINT (685945.9661316144047305 2179681.4634226718917489)", - "surface": 36470000, - "canton": null, - "numero_insee": "03076" - } - }, - { - "pk": 19565, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHIRAT-L'EGLISE", - "center": "POINT (653664.2236692006699741 2138572.4971818160265684)", - "surface": 18380000, - "canton": null, - "numero_insee": "03077" - } - }, - { - "pk": 8951, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CHOUVIGNY", - "center": "POINT (651574.6412968401564285 2125242.7738770786672831)", - "surface": 13370000, - "canton": null, - "numero_insee": "03078" - } - }, - { - "pk": 28984, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COGNAT-LYONNE", - "center": "POINT (674210.6206694109132513 2123432.0235258126631379)", - "surface": 12570000, - "canton": null, - "numero_insee": "03080" - } - }, - { - "pk": 28336, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COLOMBIER", - "center": "POINT (635228.6593972885748371 2140819.2997744842432439)", - "surface": 12980000, - "canton": null, - "numero_insee": "03081" - } - }, - { - "pk": 16960, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COMMENTRY", - "center": "POINT (631714.7955453635659069 2142090.8888928918167949)", - "surface": 20910000, - "canton": null, - "numero_insee": "03082" - } - }, - { - "pk": 27300, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CONTIGNY", - "center": "POINT (675287.5789745566435158 2149965.1452430854551494)", - "surface": 17830000, - "canton": null, - "numero_insee": "03083" - } - }, - { - "pk": 22785, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COSNE-D'ALLIER", - "center": "POINT (637328.2723487344337627 2164858.4296961622312665)", - "surface": 25270000, - "canton": null, - "numero_insee": "03084" - } - }, - { - "pk": 22829, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COULANDON", - "center": "POINT (669687.8401439934968948 2173038.3340756660327315)", - "surface": 16940000, - "canton": null, - "numero_insee": "03085" - } - }, - { - "pk": 20747, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COULANGES", - "center": "POINT (717198.2642984774429351 2164933.0175079833716154)", - "surface": 24330000, - "canton": null, - "numero_insee": "03086" - } - }, - { - "pk": 16744, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COULEUVRE", - "center": "POINT (642854.1224492279579863 2186123.5611669844947755)", - "surface": 54010000, - "canton": null, - "numero_insee": "03087" - } - }, - { - "pk": 26073, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COURCAIS", - "center": "POINT (608621.7348109028534964 2162615.2014441839419305)", - "surface": 26810000, - "canton": null, - "numero_insee": "03088" - } - }, - { - "pk": 21580, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "COUTANSOUZE", - "center": "POINT (651700.5369415857130662 2134051.8568249838426709)", - "surface": 13550000, - "canton": null, - "numero_insee": "03089" - } - }, - { - "pk": 29542, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CRECHY", - "center": "POINT (683765.6092558355303481 2141629.2643345496617258)", - "surface": 11870000, - "canton": null, - "numero_insee": "03091" - } - }, - { - "pk": 23295, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CREUZIER-LE-NEUF", - "center": "POINT (686854.4643277301220223 2131446.1430528787896037)", - "surface": 10980000, - "canton": null, - "numero_insee": "03093" - } - }, - { - "pk": 33025, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CREUZIER-LE-VIEUX", - "center": "POINT (684768.7863933688495308 2129526.7689131516963243)", - "surface": 11330000, - "canton": null, - "numero_insee": "03094" - } - }, - { - "pk": 21038, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "CUSSET", - "center": "POINT (688493.9129023156128824 2126955.9077488756738603)", - "surface": 31720000, - "canton": null, - "numero_insee": "03095" - } - }, - { - "pk": 9683, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DENEUILLE-LES-CHANTELLE", - "center": "POINT (662364.7164690131321549 2139446.6342992763966322)", - "surface": 8230000, - "canton": null, - "numero_insee": "03096" - } - }, - { - "pk": 4207, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DENEUILLE-LES-MINES", - "center": "POINT (633723.0073192783165723 2153217.7586962929926813)", - "surface": 25150000, - "canton": null, - "numero_insee": "03097" - } - }, - { - "pk": 6193, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DESERTINES", - "center": "POINT (622333.8336443237494677 2150719.7716432390734553)", - "surface": 8260000, - "canton": null, - "numero_insee": "03098" - } - }, - { - "pk": 23601, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DEUX-CHAISES", - "center": "POINT (654143.1592062938725576 2152989.4861620008014143)", - "surface": 41300000, - "canton": null, - "numero_insee": "03099" - } - }, - { - "pk": 15845, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DIOU", - "center": "POINT (707346.1812720778398216 2170054.0715117407962680)", - "surface": 25730000, - "canton": null, - "numero_insee": "03100" - } - }, - { - "pk": 17692, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DOMERAT", - "center": "POINT (615917.6209288323298097 2151966.9853350059129298)", - "surface": 35270000, - "canton": null, - "numero_insee": "03101" - } - }, - { - "pk": 5029, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DOMPIERRE-SUR-BESBRE", - "center": "POINT (702734.8257831295486540 2170915.7879035277292132)", - "surface": 45810000, - "canton": null, - "numero_insee": "03102" - } - }, - { - "pk": 23903, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE DONJON", - "center": "POINT (712617.4950712497811764 2150381.2443677131086588)", - "surface": 36970000, - "canton": null, - "numero_insee": "03103" - } - }, - { - "pk": 17690, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DOYET", - "center": "POINT (634956.8606015979312360 2149324.6576513662002981)", - "surface": 27700000, - "canton": null, - "numero_insee": "03104" - } - }, - { - "pk": 14752, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DROITURIER", - "center": "POINT (705523.5070678689517081 2137109.2084649223834276)", - "surface": 22100000, - "canton": null, - "numero_insee": "03105" - } - }, - { - "pk": 23382, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "DURDAT-LAREQUILLE", - "center": "POINT (627734.2108153540175408 2139354.9492043829523027)", - "surface": 24510000, - "canton": null, - "numero_insee": "03106" - } - }, - { - "pk": 23163, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "EBREUIL", - "center": "POINT (656886.7122194078983739 2124386.7569928718730807)", - "surface": 23140000, - "canton": null, - "numero_insee": "03107" - } - }, - { - "pk": 21375, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ECHASSIERES", - "center": "POINT (647005.0396466427482665 2133011.3594085760414600)", - "surface": 23270000, - "canton": null, - "numero_insee": "03108" - } - }, - { - "pk": 12158, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ESCUROLLES", - "center": "POINT (671876.5464017671765760 2127215.7797745936550200)", - "surface": 13430000, - "canton": null, - "numero_insee": "03109" - } - }, - { - "pk": 21727, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ESPINASSE-VOZELLE", - "center": "POINT (677092.7687169298296794 2125858.5785140478983521)", - "surface": 17850000, - "canton": null, - "numero_insee": "03110" - } - }, - { - "pk": 5028, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ESTIVAREILLES", - "center": "POINT (622069.6959732089890167 2158324.3313496368937194)", - "surface": 11680000, - "canton": null, - "numero_insee": "03111" - } - }, - { - "pk": 20119, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ETROUSSAT", - "center": "POINT (668199.9763857080833986 2135892.6435327813960612)", - "surface": 13110000, - "canton": null, - "numero_insee": "03112" - } - }, - { - "pk": 10957, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA FERTE-HAUTERIVE", - "center": "POINT (676741.4447599384002388 2155582.4404613245278597)", - "surface": 21820000, - "canton": null, - "numero_insee": "03114" - } - }, - { - "pk": 18459, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "FLEURIEL", - "center": "POINT (663533.6092843200312927 2143259.9320809813216329)", - "surface": 28290000, - "canton": null, - "numero_insee": "03115" - } - }, - { - "pk": 6308, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "FOURILLES", - "center": "POINT (666376.4990813541226089 2138479.5999757172539830)", - "surface": 7040000, - "canton": null, - "numero_insee": "03116" - } - }, - { - "pk": 22540, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "FRANCHESSE", - "center": "POINT (653591.3529686433030292 2182811.1261285194195807)", - "surface": 40590000, - "canton": null, - "numero_insee": "03117" - } - }, - { - "pk": 16441, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "GANNAT", - "center": "POINT (665011.2962971944361925 2122353.4040004406124353)", - "surface": 36730000, - "canton": null, - "numero_insee": "03118" - } - }, - { - "pk": 16260, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "GANNAY-SUR-LOIRE", - "center": "POINT (696254.3122519297758117 2191578.9662116337567568)", - "surface": 32100000, - "canton": null, - "numero_insee": "03119" - } - }, - { - "pk": 16083, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "GENNETINES", - "center": "POINT (681726.5172297811368480 2181547.4345769430510700)", - "surface": 39300000, - "canton": null, - "numero_insee": "03121" - } - }, - { - "pk": 15846, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "GIPCY", - "center": "POINT (654816.3356549412710592 2168108.5732889119535685)", - "surface": 27520000, - "canton": null, - "numero_insee": "03122" - } - }, - { - "pk": 14681, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "GIVARLAIS", - "center": "POINT (624245.3975647895131260 2161445.3853750256821513)", - "surface": 14630000, - "canton": null, - "numero_insee": "03123" - } - }, - { - "pk": 4653, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "GOUISE", - "center": "POINT (684634.3827606149716303 2157250.6037423131056130)", - "surface": 23260000, - "canton": null, - "numero_insee": "03124" - } - }, - { - "pk": 5685, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA GUILLERMIE", - "center": "POINT (701350.4279991963412613 2109848.9118110588751733)", - "surface": 12520000, - "canton": null, - "numero_insee": "03125" - } - }, - { - "pk": 33660, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "HAUTERIVE", - "center": "POINT (685247.8521903124637902 2120222.3059624177403748)", - "surface": 7980000, - "canton": null, - "numero_insee": "03126" - } - }, - { - "pk": 15160, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "HERISSON", - "center": "POINT (628686.7438054629601538 2168889.2973842024803162)", - "surface": 32370000, - "canton": null, - "numero_insee": "03127" - } - }, - { - "pk": 28976, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "HURIEL", - "center": "POINT (611105.2591923077125102 2152927.4359811749309301)", - "surface": 35220000, - "canton": null, - "numero_insee": "03128" - } - }, - { - "pk": 16961, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "HYDS", - "center": "POINT (637824.9215090976795182 2141541.7960541667416692)", - "surface": 18740000, - "canton": null, - "numero_insee": "03129" - } - }, - { - "pk": 31081, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ISLE-ET-BARDAIS", - "center": "POINT (633639.2043088839855045 2186946.7251017191447318)", - "surface": 45020000, - "canton": null, - "numero_insee": "03130" - } - }, - { - "pk": 5958, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ISSERPENT", - "center": "POINT (698986.6534803153481334 2128946.4634014819748700)", - "surface": 26480000, - "canton": null, - "numero_insee": "03131" - } - }, - { - "pk": 17873, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "JALIGNY-SUR-BESBRE", - "center": "POINT (696374.4754743871744722 2153746.7445760844275355)", - "surface": 9710000, - "canton": null, - "numero_insee": "03132" - } - }, - { - "pk": 23901, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "JENZAT", - "center": "POINT (666455.0960192763013765 2129171.8144553913734853)", - "surface": 11840000, - "canton": null, - "numero_insee": "03133" - } - }, - { - "pk": 3453, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LAFELINE", - "center": "POINT (664480.3602687248494476 2149673.6777037093415856)", - "surface": 23070000, - "canton": null, - "numero_insee": "03134" - } - }, - { - "pk": 26665, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LAMAIDS", - "center": "POINT (607770.5548574875574559 2144792.1597729595378041)", - "surface": 7720000, - "canton": null, - "numero_insee": "03136" - } - }, - { - "pk": 4281, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LANGY", - "center": "POINT (686665.4797721314243972 2141954.0639328425750136)", - "surface": 7350000, - "canton": null, - "numero_insee": "03137" - } - }, - { - "pk": 19878, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LAPALISSE", - "center": "POINT (700283.5625719280214980 2141268.6166890338063240)", - "surface": 32710000, - "canton": null, - "numero_insee": "03138" - } - }, - { - "pk": 16970, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LAPRUGNE", - "center": "POINT (710446.3338924255222082 2111327.2874703672714531)", - "surface": 34610000, - "canton": null, - "numero_insee": "03139" - } - }, - { - "pk": 14230, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LAVAULT-SAINTE-ANNE", - "center": "POINT (620376.7906305466312915 2145398.5577938277274370)", - "surface": 9060000, - "canton": null, - "numero_insee": "03140" - } - }, - { - "pk": 37584, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LAVOINE", - "center": "POINT (704559.9495023803319782 2109075.3598411008715630)", - "surface": 17500000, - "canton": null, - "numero_insee": "03141" - } - }, - { - "pk": 28830, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LENAX", - "center": "POINT (715057.6719587983097881 2145897.8953191079199314)", - "surface": 28480000, - "canton": null, - "numero_insee": "03142" - } - }, - { - "pk": 24824, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LETELON", - "center": "POINT (619751.6941190791549161 2184027.4416096135973930)", - "surface": 6300000, - "canton": null, - "numero_insee": "03143" - } - }, - { - "pk": 27132, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LIGNEROLLES", - "center": "POINT (617698.9549185535870492 2142473.4310374641790986)", - "surface": 11790000, - "canton": null, - "numero_insee": "03145" - } - }, - { - "pk": 24183, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LIMOISE", - "center": "POINT (654854.4015049498993903 2187325.6917259502224624)", - "surface": 12660000, - "canton": null, - "numero_insee": "03146" - } - }, - { - "pk": 4194, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LODDES", - "center": "POINT (709662.5327698086621240 2144751.1578650390729308)", - "surface": 23440000, - "canton": null, - "numero_insee": "03147" - } - }, - { - "pk": 26547, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LORIGES", - "center": "POINT (677464.6023300627712160 2141075.5373662724159658)", - "surface": 9440000, - "canton": null, - "numero_insee": "03148" - } - }, - { - "pk": 6310, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LOUCHY-MONTFAND", - "center": "POINT (669919.4767043944448233 2145615.9287275290116668)", - "surface": 5360000, - "canton": null, - "numero_insee": "03149" - } - }, - { - "pk": 20755, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LOUROUX-BOURBONNAIS", - "center": "POINT (638482.0407781957183033 2170473.0887725306674838)", - "surface": 33260000, - "canton": null, - "numero_insee": "03150" - } - }, - { - "pk": 6219, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LOUROUX-DE-BEAUNE", - "center": "POINT (640202.4657235905760899 2144464.4366158768534660)", - "surface": 10650000, - "canton": null, - "numero_insee": "03151" - } - }, - { - "pk": 5085, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LOUROUX-DE-BOUBLE", - "center": "POINT (649075.5779426130466163 2136732.1723028807900846)", - "surface": 16720000, - "canton": null, - "numero_insee": "03152" - } - }, - { - "pk": 17078, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LOUROUX-HODEMENT", - "center": "POINT (629143.5006272370228544 2162187.2191380262374878)", - "surface": 28950000, - "canton": null, - "numero_insee": "03153" - } - }, - { - "pk": 4792, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LUNEAU", - "center": "POINT (724305.9052971145138144 2152982.6484457706101239)", - "surface": 27310000, - "canton": null, - "numero_insee": "03154" - } - }, - { - "pk": 19079, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LURCY-LEVIS", - "center": "POINT (644398.0437487547751516 2192942.4585597421973944)", - "surface": 72070000, - "canton": null, - "numero_insee": "03155" - } - }, - { - "pk": 14418, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LUSIGNY", - "center": "POINT (688285.9173341594869271 2175197.3203693465329707)", - "surface": 44710000, - "canton": null, - "numero_insee": "03156" - } - }, - { - "pk": 30339, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MAGNET", - "center": "POINT (690520.3021551687270403 2135881.1596978707239032)", - "surface": 12820000, - "canton": null, - "numero_insee": "03157" - } - }, - { - "pk": 8834, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MAILLET", - "center": "POINT (624708.7601235513575375 2165853.1787673556245863)", - "surface": 26490000, - "canton": null, - "numero_insee": "03158" - } - }, - { - "pk": 18274, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MALICORNE", - "center": "POINT (633389.2444078963017091 2145307.8672186527401209)", - "surface": 11900000, - "canton": null, - "numero_insee": "03159" - } - }, - { - "pk": 37399, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MARCENAT", - "center": "POINT (681695.1764449800830334 2137908.4097108701243997)", - "surface": 19520000, - "canton": null, - "numero_insee": "03160" - } - }, - { - "pk": 23780, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MARCILLAT-EN-COMBRAILLE", - "center": "POINT (622908.4178712684661150 2130005.9108954905532300)", - "surface": 35540000, - "canton": null, - "numero_insee": "03161" - } - }, - { - "pk": 17251, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MARIGNY", - "center": "POINT (666861.9152791387168691 2175816.9236828940920532)", - "surface": 17210000, - "canton": null, - "numero_insee": "03162" - } - }, - { - "pk": 10879, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MARIOL", - "center": "POINT (689000.1045609207358211 2114448.7054171585477889)", - "surface": 10100000, - "canton": null, - "numero_insee": "03163" - } - }, - { - "pk": 34082, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE MAYET-D'ECOLE", - "center": "POINT (669752.7979072190355510 2129800.2121880096383393)", - "surface": 6780000, - "canton": null, - "numero_insee": "03164" - } - }, - { - "pk": 21372, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE MAYET-DE-MONTAGNE", - "center": "POINT (701977.2659394502406940 2118562.2601378797553480)", - "surface": 29550000, - "canton": null, - "numero_insee": "03165" - } - }, - { - "pk": 5086, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MAZERIER", - "center": "POINT (665279.4384307429427281 2126159.1479117060080171)", - "surface": 7250000, - "canton": null, - "numero_insee": "03166" - } - }, - { - "pk": 18100, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MAZIRAT", - "center": "POINT (616757.8598084104014561 2135359.1000698897987604)", - "surface": 20340000, - "canton": null, - "numero_insee": "03167" - } - }, - { - "pk": 20127, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MEAULNE", - "center": "POINT (621709.6060422736918554 2177338.0627090460620821)", - "surface": 20900000, - "canton": null, - "numero_insee": "03168" - } - }, - { - "pk": 19652, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MEILLARD", - "center": "POINT (668842.5699725119629875 2154614.8979014847427607)", - "surface": 25820000, - "canton": null, - "numero_insee": "03169" - } - }, - { - "pk": 3625, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MEILLERS", - "center": "POINT (658717.8093385619577020 2168341.6667825444601476)", - "surface": 23790000, - "canton": null, - "numero_insee": "03170" - } - }, - { - "pk": 18593, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MERCY", - "center": "POINT (691200.8270064321113750 2161910.2515359441749752)", - "surface": 29130000, - "canton": null, - "numero_insee": "03171" - } - }, - { - "pk": 4074, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MESPLES", - "center": "POINT (602049.9616492483764887 2158556.4630725663155317)", - "surface": 15350000, - "canton": null, - "numero_insee": "03172" - } - }, - { - "pk": 37396, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MOLINET", - "center": "POINT (722011.5128117214189842 2163872.8834800706245005)", - "surface": 26030000, - "canton": null, - "numero_insee": "03173" - } - }, - { - "pk": 3060, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MOLLES", - "center": "POINT (694219.0482677468098700 2124602.1640392560511827)", - "surface": 26760000, - "canton": null, - "numero_insee": "03174" - } - }, - { - "pk": 18458, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONESTIER", - "center": "POINT (659152.7609734456054866 2140520.5196746084839106)", - "surface": 29690000, - "canton": null, - "numero_insee": "03175" - } - }, - { - "pk": 31025, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONETAY-SUR-ALLIER", - "center": "POINT (673252.9488197286846116 2153851.4418774615041912)", - "surface": 11940000, - "canton": null, - "numero_insee": "03176" - } - }, - { - "pk": 19961, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONETAY-SUR-LOIRE", - "center": "POINT (714333.2516403393819928 2160504.8119795168749988)", - "surface": 31520000, - "canton": null, - "numero_insee": "03177" - } - }, - { - "pk": 17176, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTAIGUET-EN-FOREZ", - "center": "POINT (714491.1267034987686202 2141889.4837634237483144)", - "surface": 22410000, - "canton": null, - "numero_insee": "03178" - } - }, - { - "pk": 31200, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTAIGU-LE-BLIN", - "center": "POINT (690852.0300545579520985 2143991.2913085352629423)", - "surface": 13000000, - "canton": null, - "numero_insee": "03179" - } - }, - { - "pk": 22541, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTBEUGNY", - "center": "POINT (687225.6738596137147397 2170384.1301361070945859)", - "surface": 32640000, - "canton": null, - "numero_insee": "03180" - } - }, - { - "pk": 4612, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTCOMBROUX-LES-MINES", - "center": "POINT (706998.4569784045452252 2152035.1326646357774734)", - "surface": 23690000, - "canton": null, - "numero_insee": "03181" - } - }, - { - "pk": 32703, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTEIGNET-SUR-L'ANDELOT", - "center": "POINT (670400.6460404082899913 2124200.5674917600117624)", - "surface": 9600000, - "canton": null, - "numero_insee": "03182" - } - }, - { - "pk": 3909, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE MONTET", - "center": "POINT (655115.2766113227698952 2156400.7207191023044288)", - "surface": 1880000, - "canton": null, - "numero_insee": "03183" - } - }, - { - "pk": 16251, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTILLY", - "center": "POINT (669134.1800171752693132 2179339.1776291015557945)", - "surface": 22090000, - "canton": null, - "numero_insee": "03184" - } - }, - { - "pk": 13471, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTMARAULT", - "center": "POINT (647389.0300715749617666 2146827.0665804734453559)", - "surface": 9090000, - "canton": null, - "numero_insee": "03186" - } - }, - { - "pk": 22788, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTOLDRE", - "center": "POINT (685703.7765817964682356 2149152.4076968366280198)", - "surface": 19180000, - "canton": null, - "numero_insee": "03187" - } - }, - { - "pk": 5673, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTORD", - "center": "POINT (669536.0527653988683596 2143610.8893156819976866)", - "surface": 4550000, - "canton": null, - "numero_insee": "03188" - } - }, - { - "pk": 21865, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MONTVICQ", - "center": "POINT (637384.9718182262731716 2146242.3230735654942691)", - "surface": 10150000, - "canton": null, - "numero_insee": "03189" - } - }, - { - "pk": 9780, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MOULINS", - "center": "POINT (675885.2320400950266048 2173991.4886314691975713)", - "surface": 8700000, - "canton": null, - "numero_insee": "03190" - } - }, - { - "pk": 19340, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "MURAT", - "center": "POINT (643600.7866121034603566 2156904.1724180392920971)", - "surface": 20250000, - "canton": null, - "numero_insee": "03191" - } - }, - { - "pk": 26278, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NADES", - "center": "POINT (648745.2778579548466951 2128421.8408009004779160)", - "surface": 8420000, - "canton": null, - "numero_insee": "03192" - } - }, - { - "pk": 30908, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NASSIGNY", - "center": "POINT (619699.6467087775235996 2166411.5788555792532861)", - "surface": 18060000, - "canton": null, - "numero_insee": "03193" - } - }, - { - "pk": 37633, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NAVES", - "center": "POINT (660134.5959590811980888 2130920.0983803933486342)", - "surface": 8160000, - "canton": null, - "numero_insee": "03194" - } - }, - { - "pk": 14547, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NERIS-LES-BAINS", - "center": "POINT (626090.7750638581346720 2144345.6308668102137744)", - "surface": 33050000, - "canton": null, - "numero_insee": "03195" - } - }, - { - "pk": 17743, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NEUILLY-EN-DONJON", - "center": "POINT (719123.7046999530866742 2150336.3404738507233560)", - "surface": 25040000, - "canton": null, - "numero_insee": "03196" - } - }, - { - "pk": 22398, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NEUILLY-LE-REAL", - "center": "POINT (684481.8170597237767652 2163454.8224052358418703)", - "surface": 47350000, - "canton": null, - "numero_insee": "03197" - } - }, - { - "pk": 36895, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NEURE", - "center": "POINT (649093.3278327690204605 2193982.9003442260436714)", - "surface": 12110000, - "canton": null, - "numero_insee": "03198" - } - }, - { - "pk": 4414, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NEUVY", - "center": "POINT (672474.0339933315990493 2174963.5400933502241969)", - "surface": 19010000, - "canton": null, - "numero_insee": "03200" - } - }, - { - "pk": 20636, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "NOYANT-D'ALLIER", - "center": "POINT (660050.1151483875000849 2164649.6412262860685587)", - "surface": 21090000, - "canton": null, - "numero_insee": "03202" - } - }, - { - "pk": 21123, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "PARAY-LE-FRESIL", - "center": "POINT (696909.0262146990280598 2185178.9593813898973167)", - "surface": 36950000, - "canton": null, - "numero_insee": "03203" - } - }, - { - "pk": 30873, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "PERIGNY", - "center": "POINT (694295.5181907467776909 2139216.1032129498198628)", - "surface": 27140000, - "canton": null, - "numero_insee": "03205" - } - }, - { - "pk": 21452, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LA PETITE-MARCHE", - "center": "POINT (617285.2023350299568847 2132160.6274901181459427)", - "surface": 14960000, - "canton": null, - "numero_insee": "03206" - } - }, - { - "pk": 15481, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "PIERREFITTE-SUR-LOIRE", - "center": "POINT (713067.7701303337235004 2168100.8141030571423471)", - "surface": 25430000, - "canton": null, - "numero_insee": "03207" - } - }, - { - "pk": 23224, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE PIN", - "center": "POINT (719349.2249337664106861 2159146.1165349408984184)", - "surface": 21820000, - "canton": null, - "numero_insee": "03208" - } - }, - { - "pk": 7053, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "POEZAT", - "center": "POINT (668836.4885506463469937 2119783.3185072657652199)", - "surface": 2140000, - "canton": null, - "numero_insee": "03209" - } - }, - { - "pk": 22213, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "POUZY-MESANGY", - "center": "POINT (651232.1236863591475412 2189597.1333543383516371)", - "surface": 35350000, - "canton": null, - "numero_insee": "03210" - } - }, - { - "pk": 23383, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "PREMILHAT", - "center": "POINT (616172.4698560229735449 2145463.2993100769817829)", - "surface": 21040000, - "canton": null, - "numero_insee": "03211" - } - }, - { - "pk": 33079, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "REUGNY", - "center": "POINT (621237.8989761280827224 2162020.6211727964691818)", - "surface": 7200000, - "canton": null, - "numero_insee": "03213" - } - }, - { - "pk": 16054, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "ROCLES", - "center": "POINT (653777.9115532821742818 2160693.2646492202766240)", - "surface": 21580000, - "canton": null, - "numero_insee": "03214" - } - }, - { - "pk": 9034, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "RONGERES", - "center": "POINT (685841.1099098017439246 2144749.6146419853903353)", - "surface": 8950000, - "canton": null, - "numero_insee": "03215" - } - }, - { - "pk": 30483, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "RONNET", - "center": "POINT (628084.1510807004524395 2133452.5477711041457951)", - "surface": 20020000, - "canton": null, - "numero_insee": "03216" - } - }, - { - "pk": 19222, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-ANGEL", - "center": "POINT (626738.3028001507045701 2150656.7343418039381504)", - "surface": 25560000, - "canton": null, - "numero_insee": "03217" - } - }, - { - "pk": 16245, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-AUBIN-LE-MONIAL", - "center": "POINT (650990.4671902173431590 2170778.6845582611858845)", - "surface": 21970000, - "canton": null, - "numero_insee": "03218" - } - }, - { - "pk": 4314, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-BONNET-DE-FOUR", - "center": "POINT (643691.0296054403297603 2146195.3591727544553578)", - "surface": 18690000, - "canton": null, - "numero_insee": "03219" - } - }, - { - "pk": 33508, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-BONNET-DE-ROCHEFORT", - "center": "POINT (662059.8449816025095060 2128133.7949557276442647)", - "surface": 16390000, - "canton": null, - "numero_insee": "03220" - } - }, - { - "pk": 37804, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-BONNET-TRONCAIS", - "center": "POINT (627446.0552346466574818 2185493.3815202782861888)", - "surface": 28220000, - "canton": null, - "numero_insee": "03221" - } - }, - { - "pk": 21423, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-CAPRAIS", - "center": "POINT (630864.9392478143563494 2171710.0948511241003871)", - "surface": 20040000, - "canton": null, - "numero_insee": "03222" - } - }, - { - "pk": 15669, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (695772.0994589980691671 2130320.5205822242423892)", - "surface": 27820000, - "canton": null, - "numero_insee": "03223" - } - }, - { - "pk": 23094, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-CLEMENT", - "center": "POINT (707183.3762748067965731 2118406.1875382829457521)", - "surface": 26090000, - "canton": null, - "numero_insee": "03224" - } - }, - { - "pk": 16664, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-DESIRE", - "center": "POINT (608681.4618999772937968 2167419.9471305529586971)", - "surface": 42420000, - "canton": null, - "numero_insee": "03225" - } - }, - { - "pk": 20637, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-DIDIER-EN-DONJON", - "center": "POINT (717184.7814453253522515 2154723.8296904540620744)", - "surface": 32990000, - "canton": null, - "numero_insee": "03226" - } - }, - { - "pk": 37212, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-DIDIER-LA-FORET", - "center": "POINT (677098.1073053790023550 2137068.8208412034437060)", - "surface": 33530000, - "canton": null, - "numero_insee": "03227" - } - }, - { - "pk": 32515, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-ELOY-D'ALLIER", - "center": "POINT (601985.2655943788122386 2166262.7430088859982789)", - "surface": 12870000, - "canton": null, - "numero_insee": "03228" - } - }, - { - "pk": 32027, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-ENNEMOND", - "center": "POINT (681678.2778732338920236 2187251.9863012568093836)", - "surface": 38550000, - "canton": null, - "numero_insee": "03229" - } - }, - { - "pk": 7728, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-FARGEOL", - "center": "POINT (622641.8378390867728740 2126000.0187777029350400)", - "surface": 10420000, - "canton": null, - "numero_insee": "03231" - } - }, - { - "pk": 10488, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-FELIX", - "center": "POINT (687807.0381323437904939 2137159.3801866606809199)", - "surface": 5200000, - "canton": null, - "numero_insee": "03232" - } - }, - { - "pk": 10876, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-GENEST", - "center": "POINT (620518.9550174799514934 2140395.2476725610904396)", - "surface": 15260000, - "canton": null, - "numero_insee": "03233" - } - }, - { - "pk": 21486, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-GERAND-DE-VAUX", - "center": "POINT (682357.8887106144102290 2154228.6743130483664572)", - "surface": 40320000, - "canton": null, - "numero_insee": "03234" - } - }, - { - "pk": 14436, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-GERAND-LE-PUY", - "center": "POINT (690577.1902724943356588 2140986.2585314065217972)", - "surface": 19620000, - "canton": null, - "numero_insee": "03235" - } - }, - { - "pk": 37632, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-GERMAIN-DES-FOSSES", - "center": "POINT (684335.4370332113467157 2133426.6548764728941023)", - "surface": 7990000, - "canton": null, - "numero_insee": "03236" - } - }, - { - "pk": 35522, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-GERMAIN-DE-SALLES", - "center": "POINT (668231.2512013290543109 2132189.5466672712936997)", - "surface": 11690000, - "canton": null, - "numero_insee": "03237" - } - }, - { - "pk": 22229, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-HILAIRE", - "center": "POINT (652036.8536941551137716 2165382.7449249709025025)", - "surface": 20930000, - "canton": null, - "numero_insee": "03238" - } - }, - { - "pk": 21617, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-LEON", - "center": "POINT (703848.4170932358829305 2157613.4404936954379082)", - "surface": 33920000, - "canton": null, - "numero_insee": "03240" - } - }, - { - "pk": 20170, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-LEOPARDIN-D'AUGY", - "center": "POINT (658744.8386873360723257 2188859.8166271219961345)", - "surface": 39830000, - "canton": null, - "numero_insee": "03241" - } - }, - { - "pk": 12839, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-LOUP", - "center": "POINT (679982.9940709930378944 2151005.7310278317891061)", - "surface": 17570000, - "canton": null, - "numero_insee": "03242" - } - }, - { - "pk": 18987, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-MARCEL-EN-MURAT", - "center": "POINT (651391.4949861967470497 2146960.9025559299625456)", - "surface": 16950000, - "canton": null, - "numero_insee": "03243" - } - }, - { - "pk": 3960, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-MARCEL-EN-MARCILLAT", - "center": "POINT (618820.9619495881488547 2128069.8048968492075801)", - "surface": 10750000, - "canton": null, - "numero_insee": "03244" - } - }, - { - "pk": 5501, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-MARTIN-DES-LAIS", - "center": "POINT (700898.6536888903938234 2186814.1401879494078457)", - "surface": 18220000, - "canton": null, - "numero_insee": "03245" - } - }, - { - "pk": 17108, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-MARTINIEN", - "center": "POINT (608143.9844094697618857 2147998.1712903492152691)", - "surface": 25730000, - "canton": null, - "numero_insee": "03246" - } - }, - { - "pk": 19324, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-MENOUX", - "center": "POINT (661855.3554622858064249 2176074.9164976105093956)", - "surface": 27580000, - "canton": null, - "numero_insee": "03247" - } - }, - { - "pk": 26082, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-NICOLAS-DES-BIEFS", - "center": "POINT (712782.1900118850171566 2119154.2938876412808895)", - "surface": 28990000, - "canton": null, - "numero_insee": "03248" - } - }, - { - "pk": 10784, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-PALAIS", - "center": "POINT (597533.6802338589914143 2160019.8882032739929855)", - "surface": 20350000, - "canton": null, - "numero_insee": "03249" - } - }, - { - "pk": 23585, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-PIERRE-LAVAL", - "center": "POINT (710656.6130835677031428 2133749.6290747947059572)", - "surface": 24090000, - "canton": null, - "numero_insee": "03250" - } - }, - { - "pk": 18081, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-PLAISIR", - "center": "POINT (647404.1117019274970517 2180657.1224325201474130)", - "surface": 52600000, - "canton": null, - "numero_insee": "03251" - } - }, - { - "pk": 6420, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-PONT", - "center": "POINT (674262.4988022948382422 2129137.6737460494041443)", - "surface": 12360000, - "canton": null, - "numero_insee": "03252" - } - }, - { - "pk": 23029, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-POURCAIN-SUR-BESBRE", - "center": "POINT (700779.8345681297359988 2165394.3703312827274203)", - "surface": 33310000, - "canton": null, - "numero_insee": "03253" - } - }, - { - "pk": 20703, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-POURCAIN-SUR-SIOULE", - "center": "POINT (674625.9062513622920960 2145355.4222906716167927)", - "surface": 35550000, - "canton": null, - "numero_insee": "03254" - } - }, - { - "pk": 19421, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-PRIEST-D'ANDELOT", - "center": "POINT (663230.8958846401656047 2119836.0777763244695961)", - "surface": 8180000, - "canton": null, - "numero_insee": "03255" - } - }, - { - "pk": 23752, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-PRIEST-EN-MURAT", - "center": "POINT (643552.9943948723375797 2150698.2329391161911190)", - "surface": 25750000, - "canton": null, - "numero_insee": "03256" - } - }, - { - "pk": 29207, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-PRIX", - "center": "POINT (701221.6131640081293881 2136872.5800319057889283)", - "surface": 21760000, - "canton": null, - "numero_insee": "03257" - } - }, - { - "pk": 25551, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-REMY-EN-ROLLAT", - "center": "POINT (680735.8069981918670237 2132995.8510628938674927)", - "surface": 20950000, - "canton": null, - "numero_insee": "03258" - } - }, - { - "pk": 33659, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-SORNIN", - "center": "POINT (651207.0150257070781663 2156968.2919632340781391)", - "surface": 19500000, - "canton": null, - "numero_insee": "03260" - } - }, - { - "pk": 30660, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINTE-THERENCE", - "center": "POINT (618136.3110271933255717 2138073.1343905371613801)", - "surface": 13110000, - "canton": null, - "numero_insee": "03261" - } - }, - { - "pk": 15671, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-VICTOR", - "center": "POINT (620903.2215045932680368 2154210.8683522175997496)", - "surface": 23000000, - "canton": null, - "numero_insee": "03262" - } - }, - { - "pk": 3389, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-VOIR", - "center": "POINT (689838.6431407165946439 2157294.6331709614023566)", - "surface": 25180000, - "canton": null, - "numero_insee": "03263" - } - }, - { - "pk": 32050, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAINT-YORRE", - "center": "POINT (687461.5708214193582535 2118839.7447794941253960)", - "surface": 6500000, - "canton": null, - "numero_insee": "03264" - } - }, - { - "pk": 20072, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SALIGNY-SUR-ROUDON", - "center": "POINT (708603.1442461714614183 2163458.8908624667674303)", - "surface": 57580000, - "canton": null, - "numero_insee": "03265" - } - }, - { - "pk": 11771, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SANSSAT", - "center": "POINT (687187.0630073945503682 2139456.2174917845986784)", - "surface": 8430000, - "canton": null, - "numero_insee": "03266" - } - }, - { - "pk": 13390, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAULCET", - "center": "POINT (671600.5919581593479961 2148032.2869763723574579)", - "surface": 7980000, - "canton": null, - "numero_insee": "03267" - } - }, - { - "pk": 25945, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAULZET", - "center": "POINT (668277.7409320712322369 2126684.9239647504873574)", - "surface": 9160000, - "canton": null, - "numero_insee": "03268" - } - }, - { - "pk": 18845, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAUVAGNY", - "center": "POINT (635572.3176916737575084 2159438.8543643057346344)", - "surface": 19310000, - "canton": null, - "numero_insee": "03269" - } - }, - { - "pk": 16124, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SAZERET", - "center": "POINT (648665.6359486038563773 2149740.4308725921437144)", - "surface": 18070000, - "canton": null, - "numero_insee": "03270" - } - }, - { - "pk": 35612, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SERBANNES", - "center": "POINT (678521.8687142031267285 2122567.6356462729163468)", - "surface": 14270000, - "canton": null, - "numero_insee": "03271" - } - }, - { - "pk": 24422, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SERVILLY", - "center": "POINT (696566.0795423885574564 2142938.6693106433376670)", - "surface": 12300000, - "canton": null, - "numero_insee": "03272" - } - }, - { - "pk": 30993, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SEUILLET", - "center": "POINT (687230.2452657145913690 2134351.9597462047822773)", - "surface": 9930000, - "canton": null, - "numero_insee": "03273" - } - }, - { - "pk": 14894, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SORBIER", - "center": "POINT (701593.1628370031248778 2152089.4219514215365052)", - "surface": 17070000, - "canton": null, - "numero_insee": "03274" - } - }, - { - "pk": 17834, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SOUVIGNY", - "center": "POINT (665412.2558427785988897 2169699.3216356765478849)", - "surface": 44570000, - "canton": null, - "numero_insee": "03275" - } - }, - { - "pk": 27808, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "SUSSAT", - "center": "POINT (655553.5310705944430083 2128178.9833705839700997)", - "surface": 7940000, - "canton": null, - "numero_insee": "03276" - } - }, - { - "pk": 19174, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TARGET", - "center": "POINT (654727.9939693480264395 2142985.4435557434335351)", - "surface": 26790000, - "canton": null, - "numero_insee": "03277" - } - }, - { - "pk": 23005, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TAXAT-SENAT", - "center": "POINT (662406.9575628136517480 2134442.4604074116796255)", - "surface": 13700000, - "canton": null, - "numero_insee": "03278" - } - }, - { - "pk": 9211, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TERJAT", - "center": "POINT (621766.2487477845279500 2134900.7589770383201540)", - "surface": 17820000, - "canton": null, - "numero_insee": "03280" - } - }, - { - "pk": 21181, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE THEIL", - "center": "POINT (660666.2440109449671581 2150942.6458973707631230)", - "surface": 29150000, - "canton": null, - "numero_insee": "03281" - } - }, - { - "pk": 16450, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "THENEUILLE", - "center": "POINT (641634.0360364387743175 2176504.9098388198763132)", - "surface": 39690000, - "canton": null, - "numero_insee": "03282" - } - }, - { - "pk": 17250, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "THIEL-SUR-ACOLIN", - "center": "POINT (695228.7586768344044685 2170852.2161641628481448)", - "surface": 57480000, - "canton": null, - "numero_insee": "03283" - } - }, - { - "pk": 6032, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "THIONNE", - "center": "POINT (695041.2088136601960286 2157538.8471097233705223)", - "surface": 27030000, - "canton": null, - "numero_insee": "03284" - } - }, - { - "pk": 15318, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TORTEZAIS", - "center": "POINT (641166.7779395142570138 2160687.0422828020527959)", - "surface": 24130000, - "canton": null, - "numero_insee": "03285" - } - }, - { - "pk": 23507, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TOULON-SUR-ALLIER", - "center": "POINT (679836.6082261181436479 2168319.8733869618736207)", - "surface": 39250000, - "canton": null, - "numero_insee": "03286" - } - }, - { - "pk": 23641, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TREBAN", - "center": "POINT (663728.2422060059616342 2155772.7818344235420227)", - "surface": 25770000, - "canton": null, - "numero_insee": "03287" - } - }, - { - "pk": 28774, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TREIGNAT", - "center": "POINT (601123.0757789147319272 2149740.8286346988752484)", - "surface": 29310000, - "canton": null, - "numero_insee": "03288" - } - }, - { - "pk": 22522, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TRETEAU", - "center": "POINT (690979.3535157110309228 2152600.0905177495442331)", - "surface": 31380000, - "canton": null, - "numero_insee": "03289" - } - }, - { - "pk": 22828, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TREVOL", - "center": "POINT (674914.3060116779524833 2182290.5439061741344631)", - "surface": 40710000, - "canton": null, - "numero_insee": "03290" - } - }, - { - "pk": 23384, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TREZELLES", - "center": "POINT (697029.2062869450310245 2147346.5524418838322163)", - "surface": 18280000, - "canton": null, - "numero_insee": "03291" - } - }, - { - "pk": 22353, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "TRONGET", - "center": "POINT (657805.6677681214641780 2157824.6658694259822369)", - "surface": 31240000, - "canton": null, - "numero_insee": "03292" - } - }, - { - "pk": 11229, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "URCAY", - "center": "POINT (621173.8540914991172031 2181537.2244606809690595)", - "surface": 12530000, - "canton": null, - "numero_insee": "03293" - } - }, - { - "pk": 27002, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "USSEL-D'ALLIER", - "center": "POINT (665807.2669254911597818 2134771.4397684526629746)", - "surface": 8080000, - "canton": null, - "numero_insee": "03294" - } - }, - { - "pk": 32704, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VALIGNAT", - "center": "POINT (657233.8507081522839144 2130695.4388215462677181)", - "surface": 2290000, - "canton": null, - "numero_insee": "03295" - } - }, - { - "pk": 31625, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VALIGNY", - "center": "POINT (636910.6468678601086140 2190677.4777264441363513)", - "surface": 20960000, - "canton": null, - "numero_insee": "03296" - } - }, - { - "pk": 22174, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VALLON-EN-SULLY", - "center": "POINT (621461.5494123331736773 2171130.5378845245577395)", - "surface": 37940000, - "canton": null, - "numero_insee": "03297" - } - }, - { - "pk": 3599, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VARENNES-SUR-ALLIER", - "center": "POINT (681820.0220947896596044 2146817.4953539366833866)", - "surface": 24330000, - "canton": null, - "numero_insee": "03298" - } - }, - { - "pk": 5599, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VARENNES-SUR-TECHE", - "center": "POINT (700133.4651150703430176 2147172.6620581825263798)", - "surface": 18820000, - "canton": null, - "numero_insee": "03299" - } - }, - { - "pk": 15253, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VAUMAS", - "center": "POINT (698909.6512498998781666 2161675.2503080624155700)", - "surface": 35080000, - "canton": null, - "numero_insee": "03300" - } - }, - { - "pk": 5159, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VAUX", - "center": "POINT (618269.9512058274121955 2157892.0231237262487411)", - "surface": 18010000, - "canton": null, - "numero_insee": "03301" - } - }, - { - "pk": 10073, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VEAUCE", - "center": "POINT (655336.4770538220182061 2130178.9761555655859411)", - "surface": 3540000, - "canton": null, - "numero_insee": "03302" - } - }, - { - "pk": 22273, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VENAS", - "center": "POINT (633034.0425766666885465 2163721.2964097242802382)", - "surface": 31970000, - "canton": null, - "numero_insee": "03303" - } - }, - { - "pk": 13994, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VENDAT", - "center": "POINT (677962.2253548457520083 2129569.3069792967289686)", - "surface": 16700000, - "canton": null, - "numero_insee": "03304" - } - }, - { - "pk": 21257, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VERNEIX", - "center": "POINT (625988.8870405849302188 2156455.6085546691901982)", - "surface": 30770000, - "canton": null, - "numero_insee": "03305" - } - }, - { - "pk": 36246, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE VERNET", - "center": "POINT (687922.1973103216150776 2123547.9584223199635744)", - "surface": 10190000, - "canton": null, - "numero_insee": "03306" - } - }, - { - "pk": 24694, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VERNEUIL-EN-BOURBONNAIS", - "center": "POINT (670275.8458495257655159 2150823.6065787640400231)", - "surface": 14080000, - "canton": null, - "numero_insee": "03307" - } - }, - { - "pk": 17033, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VERNUSSE", - "center": "POINT (648946.8052513938164338 2140134.1629240615293384)", - "surface": 19590000, - "canton": null, - "numero_insee": "03308" - } - }, - { - "pk": 11602, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE VEURDRE", - "center": "POINT (653898.8136027000145987 2193823.2534440569579601)", - "surface": 21480000, - "canton": null, - "numero_insee": "03309" - } - }, - { - "pk": 8141, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VICHY", - "center": "POINT (683997.7402451434172690 2126017.0507100448012352)", - "surface": 5860000, - "canton": null, - "numero_insee": "03310" - } - }, - { - "pk": 27215, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VICQ", - "center": "POINT (658660.3621450194623321 2127704.7395947542972863)", - "surface": 13400000, - "canton": null, - "numero_insee": "03311" - } - }, - { - "pk": 23228, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "LE VILHAIN", - "center": "POINT (634953.0840908162062988 2173546.0937136709690094)", - "surface": 26470000, - "canton": null, - "numero_insee": "03313" - } - }, - { - "pk": 22448, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VILLEBRET", - "center": "POINT (622808.2419989996124059 2141915.8547508521005511)", - "surface": 15490000, - "canton": null, - "numero_insee": "03314" - } - }, - { - "pk": 21850, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VILLEFRANCHE-D'ALLIER", - "center": "POINT (638811.1839949907734990 2155162.3041394716128707)", - "surface": 39840000, - "canton": null, - "numero_insee": "03315" - } - }, - { - "pk": 21370, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VIPLAIX", - "center": "POINT (602518.4414176595164463 2162363.7690679305233061)", - "surface": 30780000, - "canton": null, - "numero_insee": "03317" - } - }, - { - "pk": 29143, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VITRAY", - "center": "POINT (625993.6963785137049854 2179676.1102914707735181)", - "surface": 28910000, - "canton": null, - "numero_insee": "03318" - } - }, - { - "pk": 3684, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "VOUSSAC", - "center": "POINT (656691.6567449540598318 2147506.0578814069740474)", - "surface": 34860000, - "canton": null, - "numero_insee": "03319" - } - }, - { - "pk": 22891, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "YGRANDE", - "center": "POINT (646373.2484224961372092 2172341.1643631928600371)", - "surface": 53270000, - "canton": null, - "numero_insee": "03320" - } - }, - { - "pk": 3711, - "model": "ishtar_common.town", - "fields": { - "departement": 3, - "name": "YZEURE", - "center": "POINT (679886.7656385187292472 2174225.4902952671982348)", - "surface": 43190000, - "canton": null, - "numero_insee": "03321" - } - }, - { - "pk": 8422, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "AIGLUN", - "center": "POINT (904719.1987457190407440 1903176.9015104877762496)", - "surface": 14630000, - "canton": null, - "numero_insee": "04001" - } - }, - { - "pk": 37333, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ALLEMAGNE-EN-PROVENCE", - "center": "POINT (897578.0605990608455613 1872181.4542588163167238)", - "surface": 33110000, - "canton": null, - "numero_insee": "04004" - } - }, - { - "pk": 3014, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ALLONS", - "center": "POINT (941422.9024104553973302 1895785.2643589305225760)", - "surface": 41900000, - "canton": null, - "numero_insee": "04005" - } - }, - { - "pk": 22556, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ALLOS", - "center": "POINT (942653.5686109107919037 1927129.7881690920330584)", - "surface": 117070000, - "canton": null, - "numero_insee": "04006" - } - }, - { - "pk": 4890, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ANGLES", - "center": "POINT (938656.3793434075778350 1891556.7539892052300274)", - "surface": 9990000, - "canton": null, - "numero_insee": "04007" - } - }, - { - "pk": 36510, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ANNOT", - "center": "POINT (947444.6000717473216355 1894035.3549176196102053)", - "surface": 29860000, - "canton": null, - "numero_insee": "04008" - } - }, - { - "pk": 3634, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ARCHAIL", - "center": "POINT (919884.5007015315350145 1909113.9595159036107361)", - "surface": 12920000, - "canton": null, - "numero_insee": "04009" - } - }, - { - "pk": 10716, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "AUBENAS-LES-ALPES", - "center": "POINT (868419.0715655121020973 1886947.2294968329370022)", - "surface": 7970000, - "canton": null, - "numero_insee": "04012" - } - }, - { - "pk": 6978, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "AUBIGNOSC", - "center": "POINT (889956.9320924195926636 1908555.7407809228170663)", - "surface": 15000000, - "canton": null, - "numero_insee": "04013" - } - }, - { - "pk": 5237, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "AUTHON", - "center": "POINT (904741.7051524289418012 1923799.3333808472380042)", - "surface": 40180000, - "canton": null, - "numero_insee": "04016" - } - }, - { - "pk": 17237, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "AUZET", - "center": "POINT (917195.4553887227084488 1930713.9876701335888356)", - "surface": 34930000, - "canton": null, - "numero_insee": "04017" - } - }, - { - "pk": 16763, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BANON", - "center": "POINT (865727.8621206043753773 1897235.3796037293504924)", - "surface": 39970000, - "canton": null, - "numero_insee": "04018" - } - }, - { - "pk": 14328, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BARCELONNETTE", - "center": "POINT (943941.5780699182068929 1940254.8941184557043016)", - "surface": 16640000, - "canton": null, - "numero_insee": "04019" - } - }, - { - "pk": 16066, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BARLES", - "center": "POINT (912823.8897211884614080 1926872.2202114388346672)", - "surface": 59600000, - "canton": null, - "numero_insee": "04020" - } - }, - { - "pk": 15428, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BARRAS", - "center": "POINT (901382.2261493802070618 1907052.3846356957219541)", - "surface": 20920000, - "canton": null, - "numero_insee": "04021" - } - }, - { - "pk": 22211, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BAYONS", - "center": "POINT (906069.7691249712370336 1932319.8643414506223053)", - "surface": 126260000, - "canton": null, - "numero_insee": "04023" - } - }, - { - "pk": 4498, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BEAUJEU", - "center": "POINT (922482.6921051928075030 1921249.4357325825840235)", - "surface": 46030000, - "canton": null, - "numero_insee": "04024" - } - }, - { - "pk": 13489, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BEAUVEZER", - "center": "POINT (941066.0912057536188513 1913901.8621401693671942)", - "surface": 27110000, - "canton": null, - "numero_insee": "04025" - } - }, - { - "pk": 16620, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BELLAFFAIRE", - "center": "POINT (907394.3625467201927677 1941240.7381297210231423)", - "surface": 13150000, - "canton": null, - "numero_insee": "04026" - } - }, - { - "pk": 24247, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BEVONS", - "center": "POINT (883395.2722397198667750 1914906.1966385282576084)", - "surface": 11360000, - "canton": null, - "numero_insee": "04027" - } - }, - { - "pk": 22464, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BEYNES", - "center": "POINT (913302.0408501690253615 1894641.5078502572141588)", - "surface": 41200000, - "canton": null, - "numero_insee": "04028" - } - }, - { - "pk": 30874, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BLIEUX", - "center": "POINT (923813.7196808021981269 1883019.3392564088571817)", - "surface": 58190000, - "canton": null, - "numero_insee": "04030" - } - }, - { - "pk": 37735, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BRAS-D'ASSE", - "center": "POINT (904550.8615354009671137 1887858.7335656168870628)", - "surface": 26250000, - "canton": null, - "numero_insee": "04031" - } - }, - { - "pk": 32443, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BRAUX", - "center": "POINT (950116.1850244259694591 1897662.4004497458226979)", - "surface": 11830000, - "canton": null, - "numero_insee": "04032" - } - }, - { - "pk": 25399, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA BREOLE", - "center": "POINT (914661.8356243046000600 1945908.2706771648954600)", - "surface": 42820000, - "canton": null, - "numero_insee": "04033" - } - }, - { - "pk": 35797, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA BRILLANNE", - "center": "POINT (885032.6218364553060383 1887490.4783060518093407)", - "surface": 6960000, - "canton": null, - "numero_insee": "04034" - } - }, - { - "pk": 26507, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "BRUNET", - "center": "POINT (897184.6596377668902278 1882990.0053884815424681)", - "surface": 28850000, - "canton": null, - "numero_insee": "04035" - } - }, - { - "pk": 32333, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LE BRUSQUET", - "center": "POINT (917427.6776595583651215 1915399.5737068906892091)", - "surface": 22300000, - "canton": null, - "numero_insee": "04036" - } - }, - { - "pk": 5291, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LE CAIRE", - "center": "POINT (897517.3747083122143522 1937351.6030878899618983)", - "surface": 17680000, - "canton": null, - "numero_insee": "04037" - } - }, - { - "pk": 15689, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CASTELLANE", - "center": "POINT (934248.6223301480058581 1880306.3424131781794131)", - "surface": 122320000, - "canton": null, - "numero_insee": "04039" - } - }, - { - "pk": 20130, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LE CASTELLARD-MELAN", - "center": "POINT (903486.9845775564899668 1918382.7221658756025136)", - "surface": 26020000, - "canton": null, - "numero_insee": "04040" - } - }, - { - "pk": 36750, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LE CASTELLET", - "center": "POINT (892749.1208781017921865 1886555.7793255175929517)", - "surface": 18910000, - "canton": null, - "numero_insee": "04041" - } - }, - { - "pk": 20837, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CASTELLET-LES-SAUSSES", - "center": "POINT (952672.9308907259255648 1902990.3017344712279737)", - "surface": 54620000, - "canton": null, - "numero_insee": "04042" - } - }, - { - "pk": 16262, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VAL-DE-CHALVAGNE", - "center": "POINT (956005.2532063620164990 1888102.8235144815407693)", - "surface": 32690000, - "canton": null, - "numero_insee": "04043" - } - }, - { - "pk": 21763, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CERESTE", - "center": "POINT (861792.9948320125695318 1877479.9810816207900643)", - "surface": 32660000, - "canton": null, - "numero_insee": "04045" - } - }, - { - "pk": 14650, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LE CHAFFAUT-SAINT-JURSON", - "center": "POINT (905158.4203693286981434 1898675.7871025446802378)", - "surface": 29470000, - "canton": null, - "numero_insee": "04046" - } - }, - { - "pk": 31776, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CHAMPTERCIER", - "center": "POINT (905087.6876761134481058 1906884.0939410491846502)", - "surface": 18590000, - "canton": null, - "numero_insee": "04047" - } - }, - { - "pk": 20036, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CHATEAUFORT", - "center": "POINT (894910.3820309899747372 1926217.3226446658372879)", - "surface": 13870000, - "canton": null, - "numero_insee": "04050" - } - }, - { - "pk": 28586, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CHATEAUNEUF-MIRAVAIL", - "center": "POINT (870609.9514271734515205 1911592.8298016658518463)", - "surface": 19620000, - "canton": null, - "numero_insee": "04051" - } - }, - { - "pk": 24853, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CHATEAUNEUF-VAL-SAINT-DONAT", - "center": "POINT (887978.1718645791988820 1905835.7870389106683433)", - "surface": 21110000, - "canton": null, - "numero_insee": "04053" - } - }, - { - "pk": 12391, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CHATEAUREDON", - "center": "POINT (911860.0496631411369890 1899334.2062756838276982)", - "surface": 10670000, - "canton": null, - "numero_insee": "04054" - } - }, - { - "pk": 21433, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CHAUDON-NORANTE", - "center": "POINT (919497.9967787585919723 1895896.2610227549448609)", - "surface": 37730000, - "canton": null, - "numero_insee": "04055" - } - }, - { - "pk": 14736, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CLARET", - "center": "POINT (889212.6257495041936636 1936879.6765040121972561)", - "surface": 20920000, - "canton": null, - "numero_insee": "04058" - } - }, - { - "pk": 20164, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CLUMANC", - "center": "POINT (924172.5447369818575680 1899440.4200165388174355)", - "surface": 53990000, - "canton": null, - "numero_insee": "04059" - } - }, - { - "pk": 15608, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "COLMARS", - "center": "POINT (945941.5895800590515137 1917347.6850865632295609)", - "surface": 81740000, - "canton": null, - "numero_insee": "04061" - } - }, - { - "pk": 15091, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA CONDAMINE-CHATELARD", - "center": "POINT (946962.3863906373735517 1949791.0714121798519045)", - "surface": 56400000, - "canton": null, - "numero_insee": "04062" - } - }, - { - "pk": 26402, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CORBIERES", - "center": "POINT (874788.8767115094233304 1867980.9724439526908100)", - "surface": 18740000, - "canton": null, - "numero_insee": "04063" - } - }, - { - "pk": 16621, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CRUIS", - "center": "POINT (880584.4690073225647211 1904170.4501423572655767)", - "surface": 36630000, - "canton": null, - "numero_insee": "04065" - } - }, - { - "pk": 15422, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CURBANS", - "center": "POINT (894282.3246806855313480 1941027.6669532291125506)", - "surface": 28990000, - "canton": null, - "numero_insee": "04066" - } - }, - { - "pk": 7864, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "CUREL", - "center": "POINT (866885.5949255012674257 1913963.4228271450847387)", - "surface": 10660000, - "canton": null, - "numero_insee": "04067" - } - }, - { - "pk": 30508, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "DAUPHIN", - "center": "POINT (876563.5027736515039578 1882812.5966706257313490)", - "surface": 9790000, - "canton": null, - "numero_insee": "04068" - } - }, - { - "pk": 33596, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "DEMANDOLX", - "center": "POINT (940829.4685481810010970 1883366.5134787964634597)", - "surface": 20550000, - "canton": null, - "numero_insee": "04069" - } - }, - { - "pk": 20805, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "DIGNE-LES-BAINS", - "center": "POINT (912398.5138393584638834 1906546.6793190678581595)", - "surface": 109590000, - "canton": null, - "numero_insee": "04070" - } - }, - { - "pk": 10384, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "DRAIX", - "center": "POINT (923067.8586104749701917 1911443.9199413675814867)", - "surface": 23180000, - "canton": null, - "numero_insee": "04072" - } - }, - { - "pk": 4379, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ENCHASTRAYES", - "center": "POINT (948658.3385149150853977 1938894.2009893984068185)", - "surface": 44590000, - "canton": null, - "numero_insee": "04073" - } - }, - { - "pk": 21804, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ENTRAGES", - "center": "POINT (915351.5181348351761699 1900765.8398599638603628)", - "surface": 22600000, - "canton": null, - "numero_insee": "04074" - } - }, - { - "pk": 15380, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ENTREPIERRES", - "center": "POINT (894786.8908089459873736 1917306.7091684506740421)", - "surface": 48480000, - "canton": null, - "numero_insee": "04075" - } - }, - { - "pk": 18585, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ENTREVAUX", - "center": "POINT (958662.9652852166909724 1893331.5374872835818678)", - "surface": 60800000, - "canton": null, - "numero_insee": "04076" - } - }, - { - "pk": 20084, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ENTREVENNES", - "center": "POINT (897034.5633323285728693 1888795.0892512612044811)", - "surface": 29900000, - "canton": null, - "numero_insee": "04077" - } - }, - { - "pk": 17192, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "L'ESCALE", - "center": "POINT (896296.9015529761090875 1904706.0910113400314003)", - "surface": 20270000, - "canton": null, - "numero_insee": "04079" - } - }, - { - "pk": 36864, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ESPARRON-DE-VERDON", - "center": "POINT (894418.6960664571961388 1867048.5869239587336779)", - "surface": 36430000, - "canton": null, - "numero_insee": "04081" - } - }, - { - "pk": 23193, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ESTOUBLON", - "center": "POINT (909838.1675625888165087 1890006.6057056272402406)", - "surface": 34460000, - "canton": null, - "numero_insee": "04084" - } - }, - { - "pk": 7495, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "FAUCON-DU-CAIRE", - "center": "POINT (900198.4825301846722141 1939877.3498451148625463)", - "surface": 20020000, - "canton": null, - "numero_insee": "04085" - } - }, - { - "pk": 14051, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "FAUCON-DE-BARCELONNETTE", - "center": "POINT (945908.9232506456319243 1944276.1479588225483894)", - "surface": 17120000, - "canton": null, - "numero_insee": "04086" - } - }, - { - "pk": 32519, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "FONTIENNE", - "center": "POINT (877455.2410026481375098 1895534.1839880668558180)", - "surface": 8200000, - "canton": null, - "numero_insee": "04087" - } - }, - { - "pk": 22748, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "FORCALQUIER", - "center": "POINT (877199.6830476073082536 1890326.3010206876788288)", - "surface": 43300000, - "canton": null, - "numero_insee": "04088" - } - }, - { - "pk": 16226, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LE FUGERET", - "center": "POINT (947294.2897575933020562 1899840.3970715180039406)", - "surface": 28290000, - "canton": null, - "numero_insee": "04090" - } - }, - { - "pk": 8156, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "GANAGOBIE", - "center": "POINT (886665.4646742041222751 1895513.2839441075921059)", - "surface": 10630000, - "canton": null, - "numero_insee": "04091" - } - }, - { - "pk": 10802, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA GARDE", - "center": "POINT (940867.5345424559200183 1878961.9820028683170676)", - "surface": 16830000, - "canton": null, - "numero_insee": "04092" - } - }, - { - "pk": 14466, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "GIGORS", - "center": "POINT (902972.7784235121216625 1943204.7470887675881386)", - "surface": 13750000, - "canton": null, - "numero_insee": "04093" - } - }, - { - "pk": 16489, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "GREOUX-LES-BAINS", - "center": "POINT (884289.2638799240812659 1869163.8739759852178395)", - "surface": 69700000, - "canton": null, - "numero_insee": "04094" - } - }, - { - "pk": 37576, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "L'HOSPITALET", - "center": "POINT (869952.2492147013545036 1906581.7718678535893559)", - "surface": 19550000, - "canton": null, - "numero_insee": "04095" - } - }, - { - "pk": 20780, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "JAUSIERS", - "center": "POINT (954539.0437145259929821 1941848.1639904945623130)", - "surface": 108350000, - "canton": null, - "numero_insee": "04096" - } - }, - { - "pk": 17400, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA JAVIE", - "center": "POINT (918700.4832447241060436 1918714.1100204214453697)", - "surface": 37350000, - "canton": null, - "numero_insee": "04097" - } - }, - { - "pk": 29217, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LAMBRUISSE", - "center": "POINT (929453.7276020857971162 1902289.0634100029710680)", - "surface": 21930000, - "canton": null, - "numero_insee": "04099" - } - }, - { - "pk": 32641, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LARCHE", - "center": "POINT (961204.9084237553179264 1946610.8518466579262167)", - "surface": 70010000, - "canton": null, - "numero_insee": "04100" - } - }, - { - "pk": 21409, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LARDIERS", - "center": "POINT (871676.3290288338903338 1903993.7666274874936789)", - "surface": 30280000, - "canton": null, - "numero_insee": "04101" - } - }, - { - "pk": 14410, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LE LAUZET-UBAYE", - "center": "POINT (925078.0952198453014717 1945297.4185237362980843)", - "surface": 67150000, - "canton": null, - "numero_insee": "04102" - } - }, - { - "pk": 17911, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LIMANS", - "center": "POINT (871870.1862626101356000 1893083.5604707070160657)", - "surface": 20970000, - "canton": null, - "numero_insee": "04104" - } - }, - { - "pk": 19270, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LURS", - "center": "POINT (884596.0478680365486071 1891691.3269108377862722)", - "surface": 22400000, - "canton": null, - "numero_insee": "04106" - } - }, - { - "pk": 3990, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MAJASTRES", - "center": "POINT (917287.1794587081531063 1885265.5632547594141215)", - "surface": 30230000, - "canton": null, - "numero_insee": "04107" - } - }, - { - "pk": 21704, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MALIJAI", - "center": "POINT (897844.1076739565469325 1899413.6503871274180710)", - "surface": 26880000, - "canton": null, - "numero_insee": "04108" - } - }, - { - "pk": 15692, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MALLEFOUGASSE-AUGES", - "center": "POINT (885394.4905517096631229 1903611.1700938283465803)", - "surface": 19490000, - "canton": null, - "numero_insee": "04109" - } - }, - { - "pk": 5332, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MALLEMOISSON", - "center": "POINT (903239.2410339753841981 1900661.4298302165698260)", - "surface": 6410000, - "canton": null, - "numero_insee": "04110" - } - }, - { - "pk": 19115, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MANE", - "center": "POINT (873617.5126186389243230 1887792.7714314011391252)", - "surface": 21910000, - "canton": null, - "numero_insee": "04111" - } - }, - { - "pk": 12215, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MARCOUX", - "center": "POINT (915764.8237267893273383 1910880.3688300112262368)", - "surface": 32830000, - "canton": null, - "numero_insee": "04113" - } - }, - { - "pk": 18364, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MEAILLES", - "center": "POINT (945468.2251041794661433 1902627.6593575112055987)", - "surface": 33010000, - "canton": null, - "numero_insee": "04115" - } - }, - { - "pk": 21831, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LES MEES", - "center": "POINT (891277.0393381905741990 1894752.0934436195529997)", - "surface": 64800000, - "canton": null, - "numero_insee": "04116" - } - }, - { - "pk": 19802, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MELVE", - "center": "POINT (891530.4075812292285264 1935097.7144836406223476)", - "surface": 14190000, - "canton": null, - "numero_insee": "04118" - } - }, - { - "pk": 15606, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MEYRONNES", - "center": "POINT (956057.4399893417721614 1951471.4577088677324355)", - "surface": 40480000, - "canton": null, - "numero_insee": "04120" - } - }, - { - "pk": 37983, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MEZEL", - "center": "POINT (908284.8659349144436419 1895999.7846088893711567)", - "surface": 21730000, - "canton": null, - "numero_insee": "04121" - } - }, - { - "pk": 37342, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MIRABEAU", - "center": "POINT (900124.0250330602284521 1902036.1169250067323446)", - "surface": 19050000, - "canton": null, - "numero_insee": "04122" - } - }, - { - "pk": 9873, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MISON", - "center": "POINT (881913.7996918169083074 1924203.4440215083304793)", - "surface": 31600000, - "canton": null, - "numero_insee": "04123" - } - }, - { - "pk": 4869, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MONTAGNAC-MONTPEZAT", - "center": "POINT (902803.2772364411503077 1869923.9029602068476379)", - "surface": 35150000, - "canton": null, - "numero_insee": "04124" - } - }, - { - "pk": 27572, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MONTCLAR", - "center": "POINT (919105.0232375659979880 1941441.8428198555484414)", - "surface": 23370000, - "canton": null, - "numero_insee": "04126" - } - }, - { - "pk": 4683, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MONTFORT", - "center": "POINT (889913.6893244242528453 1901948.2079673502594233)", - "surface": 12440000, - "canton": null, - "numero_insee": "04127" - } - }, - { - "pk": 13482, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MONTJUSTIN", - "center": "POINT (866701.4827453056350350 1877121.6865185070782900)", - "surface": 10230000, - "canton": null, - "numero_insee": "04129" - } - }, - { - "pk": 20557, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MONTLAUX", - "center": "POINT (881726.0427814265713096 1899475.1578467830549926)", - "surface": 19740000, - "canton": null, - "numero_insee": "04130" - } - }, - { - "pk": 27557, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MONTSALIER", - "center": "POINT (861421.7745250138686970 1897398.6225028824992478)", - "surface": 23900000, - "canton": null, - "numero_insee": "04132" - } - }, - { - "pk": 18734, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MORIEZ", - "center": "POINT (931332.4927809373475611 1893395.5683475953992456)", - "surface": 37330000, - "canton": null, - "numero_insee": "04133" - } - }, - { - "pk": 21829, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA MOTTE-DU-CAIRE", - "center": "POINT (894647.2639823656063527 1933522.8469036403112113)", - "surface": 27380000, - "canton": null, - "numero_insee": "04134" - } - }, - { - "pk": 14780, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MOUSTIERS-SAINTE-MARIE", - "center": "POINT (913141.5618294401792809 1878422.3114015839528292)", - "surface": 90480000, - "canton": null, - "numero_insee": "04135" - } - }, - { - "pk": 21068, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA MURE-ARGENS", - "center": "POINT (936585.1450776421697810 1899547.6093375550117344)", - "surface": 34980000, - "canton": null, - "numero_insee": "04136" - } - }, - { - "pk": 31245, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "NIBLES", - "center": "POINT (893195.7628200547769666 1927704.1637149616144598)", - "surface": 12300000, - "canton": null, - "numero_insee": "04137" - } - }, - { - "pk": 30289, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "NIOZELLES", - "center": "POINT (882030.4118835031986237 1887364.5466842395253479)", - "surface": 10620000, - "canton": null, - "numero_insee": "04138" - } - }, - { - "pk": 16253, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "NOYERS-SUR-JABRON", - "center": "POINT (877900.9412433513207361 1913557.5456619446631521)", - "surface": 56540000, - "canton": null, - "numero_insee": "04139" - } - }, - { - "pk": 18351, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LES OMERGUES", - "center": "POINT (860303.8908129705814645 1911003.7765621573198587)", - "surface": 34390000, - "canton": null, - "numero_insee": "04140" - } - }, - { - "pk": 23434, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ONGLES", - "center": "POINT (871727.9377211668761447 1897987.6858524596318603)", - "surface": 31650000, - "canton": null, - "numero_insee": "04141" - } - }, - { - "pk": 6632, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "OPPEDETTE", - "center": "POINT (861616.4082096463534981 1886388.2632992465514690)", - "surface": 8620000, - "canton": null, - "numero_insee": "04142" - } - }, - { - "pk": 10342, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ORAISON", - "center": "POINT (888354.0877452202839777 1885416.7466563596390188)", - "surface": 38680000, - "canton": null, - "numero_insee": "04143" - } - }, - { - "pk": 36502, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA PALUD-SUR-VERDON", - "center": "POINT (921387.1561160562559962 1874188.6698949085548520)", - "surface": 81730000, - "canton": null, - "numero_insee": "04144" - } - }, - { - "pk": 9438, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PEIPIN", - "center": "POINT (888734.1867073855828494 1911047.9219346088357270)", - "surface": 13460000, - "canton": null, - "numero_insee": "04145" - } - }, - { - "pk": 22565, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PEYROULES", - "center": "POINT (946683.9040851499885321 1877810.9333381124306470)", - "surface": 33460000, - "canton": null, - "numero_insee": "04148" - } - }, - { - "pk": 19542, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PEYRUIS", - "center": "POINT (888035.8817252484150231 1899129.0013980027288198)", - "surface": 23360000, - "canton": null, - "numero_insee": "04149" - } - }, - { - "pk": 30283, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PIEGUT", - "center": "POINT (902144.3919709655456245 1946400.9896876318380237)", - "surface": 11060000, - "canton": null, - "numero_insee": "04150" - } - }, - { - "pk": 29367, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PIERRERUE", - "center": "POINT (881000.1211848524399102 1890759.4145962214097381)", - "surface": 10990000, - "canton": null, - "numero_insee": "04151" - } - }, - { - "pk": 8712, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PONTIS", - "center": "POINT (920414.8344583932776004 1952064.3365739898290485)", - "surface": 16070000, - "canton": null, - "numero_insee": "04154" - } - }, - { - "pk": 22063, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PRADS-HAUTE-BLEONE", - "center": "POINT (929891.8216172056272626 1921113.1857755514793098)", - "surface": 166930000, - "canton": null, - "numero_insee": "04155" - } - }, - { - "pk": 15004, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "PUIMOISSON", - "center": "POINT (904504.2339102821424603 1881651.5087783024646342)", - "surface": 35590000, - "canton": null, - "numero_insee": "04157" - } - }, - { - "pk": 31942, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "QUINSON", - "center": "POINT (897355.3235746630234644 1863169.5226584267802536)", - "surface": 28520000, - "canton": null, - "numero_insee": "04158" - } - }, - { - "pk": 3636, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "REDORTIERS", - "center": "POINT (862557.6731282698456198 1905016.6350810676813126)", - "surface": 46070000, - "canton": null, - "numero_insee": "04159" - } - }, - { - "pk": 24052, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "REILLANNE", - "center": "POINT (867163.3087742472998798 1881630.6163336932659149)", - "surface": 39070000, - "canton": null, - "numero_insee": "04160" - } - }, - { - "pk": 23398, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "MEOLANS-REVEL", - "center": "POINT (931741.6472689348738641 1938747.9695296087302268)", - "surface": 127820000, - "canton": null, - "numero_insee": "04161" - } - }, - { - "pk": 15578, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "REVEST-DES-BROUSSES", - "center": "POINT (868078.3513655009446666 1891649.4529465849045664)", - "surface": 22990000, - "canton": null, - "numero_insee": "04162" - } - }, - { - "pk": 17736, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "REVEST-DU-BION", - "center": "POINT (856656.8670999128371477 1904365.3319591435138136)", - "surface": 43770000, - "canton": null, - "numero_insee": "04163" - } - }, - { - "pk": 37433, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "REVEST-SAINT-MARTIN", - "center": "POINT (879644.5689852237701416 1897054.6435282789170742)", - "surface": 7580000, - "canton": null, - "numero_insee": "04164" - } - }, - { - "pk": 20916, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "RIEZ", - "center": "POINT (901542.5375038858037442 1876820.6927856868132949)", - "surface": 40360000, - "canton": null, - "numero_insee": "04166" - } - }, - { - "pk": 19152, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA ROBINE-SUR-GALABRE", - "center": "POINT (911400.0759848419111222 1917850.2827980341389775)", - "surface": 56560000, - "canton": null, - "numero_insee": "04167" - } - }, - { - "pk": 4061, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA ROCHEGIRON", - "center": "POINT (866549.6774569657864049 1906452.4341487293131649)", - "surface": 30140000, - "canton": null, - "numero_insee": "04169" - } - }, - { - "pk": 11584, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "LA ROCHETTE", - "center": "POINT (965203.4169767614221200 1889483.8832806055434048)", - "surface": 18650000, - "canton": null, - "numero_insee": "04170" - } - }, - { - "pk": 16187, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ROUGON", - "center": "POINT (926690.9102622086647898 1874434.6629785872064531)", - "surface": 36110000, - "canton": null, - "numero_insee": "04171" - } - }, - { - "pk": 17441, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "ROUMOULES", - "center": "POINT (906854.0451452832203358 1876165.6802447577938437)", - "surface": 26260000, - "canton": null, - "numero_insee": "04172" - } - }, - { - "pk": 21321, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-ANDRE-LES-ALPES", - "center": "POINT (934327.7724979168269783 1894322.4244254645891488)", - "surface": 49200000, - "canton": null, - "numero_insee": "04173" - } - }, - { - "pk": 21836, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-BENOIT", - "center": "POINT (952246.9016519039869308 1894377.2211758908815682)", - "surface": 20830000, - "canton": null, - "numero_insee": "04174" - } - }, - { - "pk": 24638, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINTE-CROIX-A-LAUZE", - "center": "POINT (863643.3819838940398768 1883502.4797674100846052)", - "surface": 8590000, - "canton": null, - "numero_insee": "04175" - } - }, - { - "pk": 5333, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINTE-CROIX-DU-VERDON", - "center": "POINT (907408.0472381121944636 1869963.5779831351246685)", - "surface": 19860000, - "canton": null, - "numero_insee": "04176" - } - }, - { - "pk": 17405, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-ETIENNE-LES-ORGUES", - "center": "POINT (876097.1276167834876105 1902129.6974452272988856)", - "surface": 48740000, - "canton": null, - "numero_insee": "04178" - } - }, - { - "pk": 17975, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-GENIEZ", - "center": "POINT (897752.8267763732001185 1921636.8713243699166924)", - "surface": 38790000, - "canton": null, - "numero_insee": "04179" - } - }, - { - "pk": 10537, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-JACQUES", - "center": "POINT (923915.4373687314800918 1894432.7388753904961050)", - "surface": 4680000, - "canton": null, - "numero_insee": "04180" - } - }, - { - "pk": 23772, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-JEANNET", - "center": "POINT (903599.9179028149228543 1893656.8975590267218649)", - "surface": 29130000, - "canton": null, - "numero_insee": "04181" - } - }, - { - "pk": 16646, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-JULIEN-D'ASSE", - "center": "POINT (900648.5929800673620775 1887624.8964512934908271)", - "surface": 25580000, - "canton": null, - "numero_insee": "04182" - } - }, - { - "pk": 38005, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-JULIEN-DU-VERDON", - "center": "POINT (938288.8395320007111877 1887749.4042837657034397)", - "surface": 7500000, - "canton": null, - "numero_insee": "04183" - } - }, - { - "pk": 21985, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-JURS", - "center": "POINT (909980.5521016393322498 1885102.4496064516715705)", - "surface": 33550000, - "canton": null, - "numero_insee": "04184" - } - }, - { - "pk": 35586, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-LAURENT-DU-VERDON", - "center": "POINT (900944.4166234072763473 1864902.3263931388501078)", - "surface": 9530000, - "canton": null, - "numero_insee": "04186" - } - }, - { - "pk": 28651, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-LIONS", - "center": "POINT (926715.7000524236354977 1894757.2380201190244406)", - "surface": 11580000, - "canton": null, - "numero_insee": "04187" - } - }, - { - "pk": 24832, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-MAIME", - "center": "POINT (878557.8110585391987115 1883730.7311465248931199)", - "surface": 7630000, - "canton": null, - "numero_insee": "04188" - } - }, - { - "pk": 16488, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-MARTIN-DE-BROMES", - "center": "POINT (892085.2910871484782547 1870632.5041749654337764)", - "surface": 21250000, - "canton": null, - "numero_insee": "04189" - } - }, - { - "pk": 17974, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-MARTIN-LES-EAUX", - "center": "POINT (873881.3765345037681982 1880386.9005960165522993)", - "surface": 9180000, - "canton": null, - "numero_insee": "04190" - } - }, - { - "pk": 24173, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-MARTIN-LES-SEYNE", - "center": "POINT (912319.0428787282435223 1938980.7601564414799213)", - "surface": 12280000, - "canton": null, - "numero_insee": "04191" - } - }, - { - "pk": 21953, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-MICHEL-L'OBSERVATOIRE", - "center": "POINT (871944.1574687298852950 1884474.7679137384984642)", - "surface": 28210000, - "canton": null, - "numero_insee": "04192" - } - }, - { - "pk": 18404, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-PAUL-SUR-UBAYE", - "center": "POINT (956275.4142514476552606 1960983.3234757420141250)", - "surface": 206350000, - "canton": null, - "numero_insee": "04193" - } - }, - { - "pk": 26621, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-PIERRE", - "center": "POINT (968508.5327079622074962 1889312.2912736460566521)", - "surface": 5540000, - "canton": null, - "numero_insee": "04194" - } - }, - { - "pk": 17772, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-PONS", - "center": "POINT (940803.0407651208806783 1944332.1045568387489766)", - "surface": 32080000, - "canton": null, - "numero_insee": "04195" - } - }, - { - "pk": 13224, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINTE-TULLE", - "center": "POINT (876868.6841229685815051 1870601.7355780280195177)", - "surface": 17080000, - "canton": null, - "numero_insee": "04197" - } - }, - { - "pk": 37822, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-VINCENT-LES-FORTS", - "center": "POINT (921071.5741408627945930 1945563.1517585201654583)", - "surface": 24670000, - "canton": null, - "numero_insee": "04198" - } - }, - { - "pk": 3380, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAINT-VINCENT-SUR-JABRON", - "center": "POINT (872996.0199447448831052 1913515.3836254724301398)", - "surface": 30430000, - "canton": null, - "numero_insee": "04199" - } - }, - { - "pk": 12869, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SALIGNAC", - "center": "POINT (892221.3377785307820886 1912979.9872328662313521)", - "surface": 14360000, - "canton": null, - "numero_insee": "04200" - } - }, - { - "pk": 29150, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAUMANE", - "center": "POINT (868076.9881033810088411 1903462.3002801553811878)", - "surface": 3240000, - "canton": null, - "numero_insee": "04201" - } - }, - { - "pk": 18555, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SAUSSES", - "center": "POINT (956401.8078541563590989 1900119.4063761490397155)", - "surface": 14890000, - "canton": null, - "numero_insee": "04202" - } - }, - { - "pk": 4680, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SELONNET", - "center": "POINT (915430.7361782379448414 1938006.5365544315427542)", - "surface": 29860000, - "canton": null, - "numero_insee": "04203" - } - }, - { - "pk": 17557, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SENEZ", - "center": "POINT (928183.6739412148017436 1887061.4645318782422692)", - "surface": 71330000, - "canton": null, - "numero_insee": "04204" - } - }, - { - "pk": 17402, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SEYNE", - "center": "POINT (922867.4198645956348628 1934667.0897725555114448)", - "surface": 86340000, - "canton": null, - "numero_insee": "04205" - } - }, - { - "pk": 3562, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SIGONCE", - "center": "POINT (882461.1900055070873350 1895477.1189555064775050)", - "surface": 20410000, - "canton": null, - "numero_insee": "04206" - } - }, - { - "pk": 18942, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SIGOYER", - "center": "POINT (889161.6329054220113903 1931173.1737994556315243)", - "surface": 15370000, - "canton": null, - "numero_insee": "04207" - } - }, - { - "pk": 20657, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SIMIANE-LA-ROTONDE", - "center": "POINT (858963.9132808626163751 1892171.8480985304340720)", - "surface": 67970000, - "canton": null, - "numero_insee": "04208" - } - }, - { - "pk": 16254, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SISTERON", - "center": "POINT (887376.8919409500667825 1917543.2509289896115661)", - "surface": 50580000, - "canton": null, - "numero_insee": "04209" - } - }, - { - "pk": 19686, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SOLEILHAS", - "center": "POINT (946842.5631639426574111 1882617.6121338191442192)", - "surface": 34590000, - "canton": null, - "numero_insee": "04210" - } - }, - { - "pk": 34871, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "SOURRIBES", - "center": "POINT (896723.2753030750900507 1913319.0716948553454131)", - "surface": 20020000, - "canton": null, - "numero_insee": "04211" - } - }, - { - "pk": 27280, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "TARTONNE", - "center": "POINT (924318.3160137871745974 1905748.5344607629813254)", - "surface": 45110000, - "canton": null, - "numero_insee": "04214" - } - }, - { - "pk": 32563, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "THEZE", - "center": "POINT (886252.7278737622546032 1931848.8873811888042837)", - "surface": 11320000, - "canton": null, - "numero_insee": "04216" - } - }, - { - "pk": 20603, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "THOARD", - "center": "POINT (903138.3328855731524527 1912373.2496437525842339)", - "surface": 44150000, - "canton": null, - "numero_insee": "04217" - } - }, - { - "pk": 20606, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "THORAME-BASSE", - "center": "POINT (932595.5851756536867470 1909423.9093013319652528)", - "surface": 98620000, - "canton": null, - "numero_insee": "04218" - } - }, - { - "pk": 17029, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "THORAME-HAUTE", - "center": "POINT (941722.0735528862569481 1907500.6004374767653644)", - "surface": 109410000, - "canton": null, - "numero_insee": "04219" - } - }, - { - "pk": 17149, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "TURRIERS", - "center": "POINT (904605.4076181540731341 1939615.0040121139027178)", - "surface": 19930000, - "canton": null, - "numero_insee": "04222" - } - }, - { - "pk": 4141, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "UBRAYE", - "center": "POINT (949698.7943516680970788 1888048.2634107661433518)", - "surface": 35710000, - "canton": null, - "numero_insee": "04224" - } - }, - { - "pk": 30612, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "UVERNET-FOURS", - "center": "POINT (945800.4889859509421512 1933663.9464793326333165)", - "surface": 135640000, - "canton": null, - "numero_insee": "04226" - } - }, - { - "pk": 3703, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VACHERES", - "center": "POINT (865003.5566170997917652 1888319.4304053490050137)", - "surface": 23550000, - "canton": null, - "numero_insee": "04227" - } - }, - { - "pk": 32430, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VALAVOIRE", - "center": "POINT (898608.8926163732539862 1926849.8156109985429794)", - "surface": 16770000, - "canton": null, - "numero_insee": "04228" - } - }, - { - "pk": 21293, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VALBELLE", - "center": "POINT (883334.7789877245668322 1910300.7114478184375912)", - "surface": 33050000, - "canton": null, - "numero_insee": "04229" - } - }, - { - "pk": 18387, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VALENSOLE", - "center": "POINT (890125.6071598676498979 1877323.0613760938867927)", - "surface": 127980000, - "canton": null, - "numero_insee": "04230" - } - }, - { - "pk": 18625, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VALERNES", - "center": "POINT (890229.8269053618423641 1923374.0307693604845554)", - "surface": 28740000, - "canton": null, - "numero_insee": "04231" - } - }, - { - "pk": 18943, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VAUMEILH", - "center": "POINT (888991.5864664865657687 1927667.9750917623750865)", - "surface": 25730000, - "canton": null, - "numero_insee": "04233" - } - }, - { - "pk": 18910, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VENTEROL", - "center": "POINT (898653.0302557409740984 1944969.4328516626264900)", - "surface": 22630000, - "canton": null, - "numero_insee": "04234" - } - }, - { - "pk": 20888, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VERDACHES", - "center": "POINT (920033.6497409770963714 1926634.0928417607210577)", - "surface": 23820000, - "canton": null, - "numero_insee": "04235" - } - }, - { - "pk": 20391, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VERGONS", - "center": "POINT (942986.7346886536106467 1888590.8858246237505227)", - "surface": 46100000, - "canton": null, - "numero_insee": "04236" - } - }, - { - "pk": 15421, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VILLARS-COLMARS", - "center": "POINT (938411.5713212264236063 1919885.3901934698224068)", - "surface": 41030000, - "canton": null, - "numero_insee": "04240" - } - }, - { - "pk": 19782, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VILLEMUS", - "center": "POINT (871289.8832169427769259 1879063.1987792716827244)", - "surface": 9710000, - "canton": null, - "numero_insee": "04241" - } - }, - { - "pk": 16761, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VILLENEUVE", - "center": "POINT (883065.8729395139962435 1883369.0550890476442873)", - "surface": 25520000, - "canton": null, - "numero_insee": "04242" - } - }, - { - "pk": 18575, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VOLONNE", - "center": "POINT (896156.2887149355374277 1909409.9744283801410347)", - "surface": 25300000, - "canton": null, - "numero_insee": "04244" - } - }, - { - "pk": 17193, - "model": "ishtar_common.town", - "fields": { - "departement": 4, - "name": "VOLX", - "center": "POINT (881087.9217010489664972 1880548.9606554040219635)", - "surface": 18700000, - "canton": null, - "numero_insee": "04245" - } - }, - { - "pk": 16831, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ABRIES", - "center": "POINT (964131.8067565138917416 1990081.4175340358633548)", - "surface": 77650000, - "canton": null, - "numero_insee": "05001" - } - }, - { - "pk": 23189, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "AIGUILLES", - "center": "POINT (959164.3280570819042623 1985733.9718894481193274)", - "surface": 40600000, - "canton": null, - "numero_insee": "05003" - } - }, - { - "pk": 23798, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ANCELLE", - "center": "POINT (908989.8712291176198050 1965179.5999438809230924)", - "surface": 51090000, - "canton": null, - "numero_insee": "05004" - } - }, - { - "pk": 21019, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ANTONAVES", - "center": "POINT (877216.0003169465344399 1923362.1899209693074226)", - "surface": 8090000, - "canton": null, - "numero_insee": "05005" - } - }, - { - "pk": 15963, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "L'ARGENTIERE-LA-BESSEE", - "center": "POINT (927244.2933774625416845 1984256.6853304142132401)", - "surface": 65210000, - "canton": null, - "numero_insee": "05006" - } - }, - { - "pk": 17714, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ARVIEUX", - "center": "POINT (947172.8025857021566480 1983327.8105473776813596)", - "surface": 73160000, - "canton": null, - "numero_insee": "05007" - } - }, - { - "pk": 6454, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ASPREMONT", - "center": "POINT (869184.6087712461594492 1949320.7600827529095113)", - "surface": 18650000, - "canton": null, - "numero_insee": "05008" - } - }, - { - "pk": 19291, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ASPRES-LES-CORPS", - "center": "POINT (889792.2692770629655570 1985835.7033048018347472)", - "surface": 16620000, - "canton": null, - "numero_insee": "05009" - } - }, - { - "pk": 23909, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ASPRES-SUR-BUECH", - "center": "POINT (871547.3838582424214110 1953945.8948660055175424)", - "surface": 42490000, - "canton": null, - "numero_insee": "05010" - } - }, - { - "pk": 35121, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "AVANCON", - "center": "POINT (906370.0929763116873801 1955546.9807356288656592)", - "surface": 22360000, - "canton": null, - "numero_insee": "05011" - } - }, - { - "pk": 29824, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "BARRET-SUR-MEOUGE", - "center": "POINT (870903.6974314707331359 1924008.6842462215572596)", - "surface": 26270000, - "canton": null, - "numero_insee": "05014" - } - }, - { - "pk": 3532, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA BATIE-MONTSALEON", - "center": "POINT (871622.2260520933195949 1945237.3882307964377105)", - "surface": 15050000, - "canton": null, - "numero_insee": "05016" - } - }, - { - "pk": 15462, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA BATIE-NEUVE", - "center": "POINT (907826.6809175808448344 1960764.9807215796317905)", - "surface": 27410000, - "canton": null, - "numero_insee": "05017" - } - }, - { - "pk": 25245, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA BATIE-VIEILLE", - "center": "POINT (903447.4272710571531206 1957824.2004319934640080)", - "surface": 9080000, - "canton": null, - "numero_insee": "05018" - } - }, - { - "pk": 4994, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA BEAUME", - "center": "POINT (863628.5097038247622550 1955179.2232663233298808)", - "surface": 29670000, - "canton": null, - "numero_insee": "05019" - } - }, - { - "pk": 25683, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LE BERSAC", - "center": "POINT (872270.1303798143053427 1939737.1432216598186642)", - "surface": 8010000, - "canton": null, - "numero_insee": "05021" - } - }, - { - "pk": 4726, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "BREZIERS", - "center": "POINT (909580.1316428084392101 1943161.5930860715452582)", - "surface": 30650000, - "canton": null, - "numero_insee": "05022" - } - }, - { - "pk": 18298, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "BRIANCON", - "center": "POINT (940538.5049581774510443 1998085.5914056967012584)", - "surface": 28270000, - "canton": null, - "numero_insee": "05023" - } - }, - { - "pk": 15744, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "BRUIS", - "center": "POINT (852097.0889816931448877 1945770.4665771124418825)", - "surface": 25400000, - "canton": null, - "numero_insee": "05024" - } - }, - { - "pk": 25598, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "BUISSARD", - "center": "POINT (902248.8884681432973593 1969125.6543421277310699)", - "surface": 2950000, - "canton": null, - "numero_insee": "05025" - } - }, - { - "pk": 17993, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CEILLAC", - "center": "POINT (954283.4613353309687227 1971376.9278266215696931)", - "surface": 96050000, - "canton": null, - "numero_insee": "05026" - } - }, - { - "pk": 16589, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CERVIERES", - "center": "POINT (949988.0894902821164578 1993462.5350235775113106)", - "surface": 110310000, - "canton": null, - "numero_insee": "05027" - } - }, - { - "pk": 25129, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHABESTAN", - "center": "POINT (874303.3634998837951571 1947763.0678659430705011)", - "surface": 12320000, - "canton": null, - "numero_insee": "05028" - } - }, - { - "pk": 5318, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHABOTTES", - "center": "POINT (903959.1545030111446977 1968139.3545247830916196)", - "surface": 10090000, - "canton": null, - "numero_insee": "05029" - } - }, - { - "pk": 15370, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHAMPCELLA", - "center": "POINT (932308.7352819140069187 1977393.3186022194568068)", - "surface": 30360000, - "canton": null, - "numero_insee": "05031" - } - }, - { - "pk": 35812, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHAMPOLEON", - "center": "POINT (911770.0894844052381814 1979418.2934265390504152)", - "surface": 101890000, - "canton": null, - "numero_insee": "05032" - } - }, - { - "pk": 30146, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHANOUSSE", - "center": "POINT (865004.2076452183537185 1934869.6262392252683640)", - "surface": 20540000, - "canton": null, - "numero_insee": "05033" - } - }, - { - "pk": 9892, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHATEAUNEUF-DE-CHABRE", - "center": "POINT (876186.6055320533923805 1926656.8709696955047548)", - "surface": 24270000, - "canton": null, - "numero_insee": "05034" - } - }, - { - "pk": 28835, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHATEAUNEUF-D'OZE", - "center": "POINT (883282.0376303289085627 1951343.9615597622469068)", - "surface": 26650000, - "canton": null, - "numero_insee": "05035" - } - }, - { - "pk": 14833, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHATEAUROUX-LES-ALPES", - "center": "POINT (928979.8267728288192302 1968755.6453119816724211)", - "surface": 91700000, - "canton": null, - "numero_insee": "05036" - } - }, - { - "pk": 37332, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHATEAUVIEUX", - "center": "POINT (895610.4317949949763715 1949548.0776602770201862)", - "surface": 7120000, - "canton": null, - "numero_insee": "05037" - } - }, - { - "pk": 20725, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHATEAU-VILLE-VIEILLE", - "center": "POINT (953272.5641481967177242 1984081.3150092235300690)", - "surface": 67160000, - "canton": null, - "numero_insee": "05038" - } - }, - { - "pk": 34756, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHAUFFAYER", - "center": "POINT (891045.1176690233405679 1979840.3219330213032663)", - "surface": 10760000, - "canton": null, - "numero_insee": "05039" - } - }, - { - "pk": 16789, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CHORGES", - "center": "POINT (914063.7811995567753911 1957214.9991969156544656)", - "surface": 57030000, - "canton": null, - "numero_insee": "05040" - } - }, - { - "pk": 8414, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LES COSTES", - "center": "POINT (893856.4140770321246237 1978863.4980696169659495)", - "surface": 8860000, - "canton": null, - "numero_insee": "05043" - } - }, - { - "pk": 15607, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CREVOUX", - "center": "POINT (940787.1805362058803439 1957746.0844535054638982)", - "surface": 54400000, - "canton": null, - "numero_insee": "05044" - } - }, - { - "pk": 16067, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "CROTS", - "center": "POINT (928118.9024836700409651 1952531.2666410324163735)", - "surface": 56590000, - "canton": null, - "numero_insee": "05045" - } - }, - { - "pk": 28514, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "EMBRUN", - "center": "POINT (928739.1886426990386099 1961846.3739499957300723)", - "surface": 35670000, - "canton": null, - "numero_insee": "05046" - } - }, - { - "pk": 17973, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "EOURRES", - "center": "POINT (871253.0254723574034870 1918305.5722504195291549)", - "surface": 26700000, - "canton": null, - "numero_insee": "05047" - } - }, - { - "pk": 20410, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "L'EPINE", - "center": "POINT (860844.2917138651246205 1941340.7922361628152430)", - "surface": 33460000, - "canton": null, - "numero_insee": "05048" - } - }, - { - "pk": 23893, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ESPARRON", - "center": "POINT (883123.1751900794915855 1946537.5423074013087898)", - "surface": 24220000, - "canton": null, - "numero_insee": "05049" - } - }, - { - "pk": 3174, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ESPINASSES", - "center": "POINT (909911.4790551527403295 1951172.8900224568787962)", - "surface": 13560000, - "canton": null, - "numero_insee": "05050" - } - }, - { - "pk": 3769, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ETOILE-SAINT-CYRICE", - "center": "POINT (863945.2432166971266270 1929955.3174310079775751)", - "surface": 14360000, - "canton": null, - "numero_insee": "05051" - } - }, - { - "pk": 22011, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "EYGLIERS", - "center": "POINT (943239.0986672987928614 1975185.4195046192035079)", - "surface": 29870000, - "canton": null, - "numero_insee": "05052" - } - }, - { - "pk": 26692, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "EYGUIANS", - "center": "POINT (874818.1974134009797126 1934453.4211982463020831)", - "surface": 9420000, - "canton": null, - "numero_insee": "05053" - } - }, - { - "pk": 5372, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA FARE-EN-CHAMPSAUR", - "center": "POINT (895136.8712909331079572 1969665.0087938669603318)", - "surface": 10270000, - "canton": null, - "numero_insee": "05054" - } - }, - { - "pk": 12605, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA FAURIE", - "center": "POINT (870414.4850216258782893 1957640.0331728430464864)", - "surface": 31270000, - "canton": null, - "numero_insee": "05055" - } - }, - { - "pk": 7206, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "FOREST-SAINT-JULIEN", - "center": "POINT (901875.2414666989352554 1966019.2116626270581037)", - "surface": 6920000, - "canton": null, - "numero_insee": "05056" - } - }, - { - "pk": 12800, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "FOUILLOUSE", - "center": "POINT (891637.5404840016271919 1945910.0757069715764374)", - "surface": 7470000, - "canton": null, - "numero_insee": "05057" - } - }, - { - "pk": 18300, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "FREISSINIERES", - "center": "POINT (926487.6147900181822479 1979144.8963020909577608)", - "surface": 90670000, - "canton": null, - "numero_insee": "05058" - } - }, - { - "pk": 30145, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA FREISSINOUSE", - "center": "POINT (891859.4151111020473763 1955021.5575629647355527)", - "surface": 7860000, - "canton": null, - "numero_insee": "05059" - } - }, - { - "pk": 32627, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "FURMEYER", - "center": "POINT (881350.9083421797258779 1954730.9182376291137189)", - "surface": 14270000, - "canton": null, - "numero_insee": "05060" - } - }, - { - "pk": 22481, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "GAP", - "center": "POINT (896119.6382415567059070 1960163.5799989975057542)", - "surface": 108780000, - "canton": null, - "numero_insee": "05061" - } - }, - { - "pk": 27293, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LE GLAIZIL", - "center": "POINT (888053.4501519959885627 1978513.2288780142553151)", - "surface": 21680000, - "canton": null, - "numero_insee": "05062" - } - }, - { - "pk": 18940, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA GRAVE", - "center": "POINT (910868.2234013092238456 2014346.0545433673541993)", - "surface": 123420000, - "canton": null, - "numero_insee": "05063" - } - }, - { - "pk": 18619, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA CHAPELLE-EN-VALGAUDEMAR", - "center": "POINT (908900.0882344013080001 1987201.5640593634452671)", - "surface": 127490000, - "canton": null, - "numero_insee": "05064" - } - }, - { - "pk": 15464, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "GUILLESTRE", - "center": "POINT (946064.3007959900423884 1972607.1585440367925912)", - "surface": 51140000, - "canton": null, - "numero_insee": "05065" - } - }, - { - "pk": 3666, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA HAUTE-BEAUME", - "center": "POINT (861507.5558911360567436 1957363.3113256762735546)", - "surface": 7190000, - "canton": null, - "numero_insee": "05066" - } - }, - { - "pk": 19304, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "JARJAYES", - "center": "POINT (899993.1781844369834289 1952088.4579340990167111)", - "surface": 22880000, - "canton": null, - "numero_insee": "05068" - } - }, - { - "pk": 26093, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LAGRAND", - "center": "POINT (871634.8177951147081330 1932123.6138836070895195)", - "surface": 6910000, - "canton": null, - "numero_insee": "05069" - } - }, - { - "pk": 14738, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LARAGNE-MONTEGLIN", - "center": "POINT (877642.4831060703145340 1931975.0419061821885407)", - "surface": 22700000, - "canton": null, - "numero_insee": "05070" - } - }, - { - "pk": 18307, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LARDIER-ET-VALENCA", - "center": "POINT (889652.8100306325359270 1943890.8793221758678555)", - "surface": 14770000, - "canton": null, - "numero_insee": "05071" - } - }, - { - "pk": 31761, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LAYE", - "center": "POINT (896260.3464532311772928 1967071.9838952361606061)", - "surface": 10630000, - "canton": null, - "numero_insee": "05072" - } - }, - { - "pk": 17392, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LAZER", - "center": "POINT (880226.9815726696979254 1934099.5008261324837804)", - "surface": 22020000, - "canton": null, - "numero_insee": "05073" - } - }, - { - "pk": 12516, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LETTRET", - "center": "POINT (897214.5837093396112323 1949261.5774381677620113)", - "surface": 4210000, - "canton": null, - "numero_insee": "05074" - } - }, - { - "pk": 25806, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MANTEYER", - "center": "POINT (887258.3793680362869054 1954581.5344994822517037)", - "surface": 25290000, - "canton": null, - "numero_insee": "05075" - } - }, - { - "pk": 8102, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MEREUIL", - "center": "POINT (869088.4794682881329209 1937207.1532185657415539)", - "surface": 11000000, - "canton": null, - "numero_insee": "05076" - } - }, - { - "pk": 31915, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MOLINES-EN-QUEYRAS", - "center": "POINT (960925.7688926456030458 1978842.1105980756692588)", - "surface": 53420000, - "canton": null, - "numero_insee": "05077" - } - }, - { - "pk": 37099, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONETIER-ALLEMONT", - "center": "POINT (886692.0687983579700813 1938960.2130014644935727)", - "surface": 7540000, - "canton": null, - "numero_insee": "05078" - } - }, - { - "pk": 14963, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LE MONETIER-LES-BAINS", - "center": "POINT (925838.2847410168033093 2007968.7063500408548862)", - "surface": 134610000, - "canton": null, - "numero_insee": "05079" - } - }, - { - "pk": 23086, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTBRAND", - "center": "POINT (864587.3549075931077823 1960092.5816274103708565)", - "surface": 25430000, - "canton": null, - "numero_insee": "05080" - } - }, - { - "pk": 24078, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTCLUS", - "center": "POINT (865556.6528007868910208 1940480.3086349978111684)", - "surface": 21440000, - "canton": null, - "numero_insee": "05081" - } - }, - { - "pk": 34397, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONT-DAUPHIN", - "center": "POINT (940060.2544057409977540 1972355.0301385601051152)", - "surface": 580000, - "canton": null, - "numero_insee": "05082" - } - }, - { - "pk": 7095, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTGARDIN", - "center": "POINT (909662.9512930286582559 1956776.6270619584247470)", - "surface": 14900000, - "canton": null, - "numero_insee": "05084" - } - }, - { - "pk": 18370, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTGENEVRE", - "center": "POINT (946504.3351513426750898 2002741.8693649009801447)", - "surface": 39580000, - "canton": null, - "numero_insee": "05085" - } - }, - { - "pk": 36512, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTJAY", - "center": "POINT (861400.6494033294729888 1934838.6805587275885046)", - "surface": 27050000, - "canton": null, - "numero_insee": "05086" - } - }, - { - "pk": 20500, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTMAUR", - "center": "POINT (881800.5946259130723774 1960640.9584366525523365)", - "surface": 48720000, - "canton": null, - "numero_insee": "05087" - } - }, - { - "pk": 5949, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTMORIN", - "center": "POINT (856116.4734147979179397 1944003.0593198745045811)", - "surface": 25990000, - "canton": null, - "numero_insee": "05088" - } - }, - { - "pk": 36618, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MONTROND", - "center": "POINT (871787.7029614357743412 1937630.7716990404296666)", - "surface": 4400000, - "canton": null, - "numero_insee": "05089" - } - }, - { - "pk": 22438, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA MOTTE-EN-CHAMPSAUR", - "center": "POINT (900367.8078936840174720 1978318.9679516432806849)", - "surface": 55350000, - "canton": null, - "numero_insee": "05090" - } - }, - { - "pk": 12382, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "MOYDANS", - "center": "POINT (852752.6433914597146213 1939369.3315545129589736)", - "surface": 10570000, - "canton": null, - "numero_insee": "05091" - } - }, - { - "pk": 6339, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "NEFFES", - "center": "POINT (893397.9369678287766874 1950730.2884194101206958)", - "surface": 8470000, - "canton": null, - "numero_insee": "05092" - } - }, - { - "pk": 23202, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "NEVACHE", - "center": "POINT (935697.3725714234169573 2013859.7402247730642557)", - "surface": 190980000, - "canton": null, - "numero_insee": "05093" - } - }, - { - "pk": 6342, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "NOSSAGE-ET-BENEVENT", - "center": "POINT (872762.5765902257990092 1929030.0021389625035226)", - "surface": 4340000, - "canton": null, - "numero_insee": "05094" - } - }, - { - "pk": 19409, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LE NOYER", - "center": "POINT (890400.4598608792293817 1973328.0605959754902869)", - "surface": 21620000, - "canton": null, - "numero_insee": "05095" - } - }, - { - "pk": 35485, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ORCIERES", - "center": "POINT (918133.1262636956525967 1972866.3640736548695713)", - "surface": 100300000, - "canton": null, - "numero_insee": "05096" - } - }, - { - "pk": 33715, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ORPIERRE", - "center": "POINT (868955.3636089642532170 1929397.7134824455715716)", - "surface": 27440000, - "canton": null, - "numero_insee": "05097" - } - }, - { - "pk": 17936, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LES ORRES", - "center": "POINT (937535.8750957318115979 1951711.6756353799719363)", - "surface": 73860000, - "canton": null, - "numero_insee": "05098" - } - }, - { - "pk": 14140, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "OZE", - "center": "POINT (875376.9034724419470876 1950975.6629649410024285)", - "surface": 11970000, - "canton": null, - "numero_insee": "05099" - } - }, - { - "pk": 36622, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PELLEAUTIER", - "center": "POINT (891282.9586223009973764 1952213.6562250056304038)", - "surface": 12730000, - "canton": null, - "numero_insee": "05100" - } - }, - { - "pk": 22138, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PELVOUX", - "center": "POINT (923729.5653851521201432 1997139.5380375003442168)", - "surface": 122850000, - "canton": null, - "numero_insee": "05101" - } - }, - { - "pk": 24360, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA PIARRE", - "center": "POINT (863494.5088679038453847 1947469.9864020815584809)", - "surface": 21900000, - "canton": null, - "numero_insee": "05102" - } - }, - { - "pk": 36313, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LE POET", - "center": "POINT (884700.2284750720718876 1926129.4460491216741502)", - "surface": 15250000, - "canton": null, - "numero_insee": "05103" - } - }, - { - "pk": 37274, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "POLIGNY", - "center": "POINT (893116.8443262957734987 1971749.7911369504872710)", - "surface": 13920000, - "canton": null, - "numero_insee": "05104" - } - }, - { - "pk": 30823, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PRUNIERES", - "center": "POINT (917868.3435478861210868 1957147.7166809819173068)", - "surface": 15230000, - "canton": null, - "numero_insee": "05106" - } - }, - { - "pk": 5065, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PUY-SAINT-ANDRE", - "center": "POINT (934143.7098850938491523 1996728.9874338207300752)", - "surface": 15260000, - "canton": null, - "numero_insee": "05107" - } - }, - { - "pk": 10505, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PUY-SAINT-EUSEBE", - "center": "POINT (923647.2022299027303234 1960300.8376685776747763)", - "surface": 11190000, - "canton": null, - "numero_insee": "05108" - } - }, - { - "pk": 28965, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PUY-SAINT-PIERRE", - "center": "POINT (937038.6624681298853830 1997654.9260334426071495)", - "surface": 7820000, - "canton": null, - "numero_insee": "05109" - } - }, - { - "pk": 30400, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PUY-SAINT-VINCENT", - "center": "POINT (926512.5067520793527365 1987854.0628044069744647)", - "surface": 22630000, - "canton": null, - "numero_insee": "05110" - } - }, - { - "pk": 31371, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "PUY-SANIERES", - "center": "POINT (925760.4776285613188520 1959017.7224916103295982)", - "surface": 11540000, - "canton": null, - "numero_insee": "05111" - } - }, - { - "pk": 18311, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "RABOU", - "center": "POINT (891691.2382592171197757 1962928.3696681833826005)", - "surface": 26420000, - "canton": null, - "numero_insee": "05112" - } - }, - { - "pk": 34432, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "RAMBAUD", - "center": "POINT (901654.3016818561591208 1956807.7014728162903339)", - "surface": 10690000, - "canton": null, - "numero_insee": "05113" - } - }, - { - "pk": 20741, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "REALLON", - "center": "POINT (919404.2511066724546254 1964768.9139858302660286)", - "surface": 70780000, - "canton": null, - "numero_insee": "05114" - } - }, - { - "pk": 26246, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "REMOLLON", - "center": "POINT (904228.3361703096888959 1948521.1622027214616537)", - "surface": 6160000, - "canton": null, - "numero_insee": "05115" - } - }, - { - "pk": 7492, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "REOTIER", - "center": "POINT (935145.1562295434996486 1973513.7905140896327794)", - "surface": 22270000, - "canton": null, - "numero_insee": "05116" - } - }, - { - "pk": 32631, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "RIBEYRET", - "center": "POINT (856654.7661220292793587 1939603.0290363118983805)", - "surface": 17930000, - "canton": null, - "numero_insee": "05117" - } - }, - { - "pk": 18309, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "RIBIERS", - "center": "POINT (880352.6639765232102945 1919484.9772461371030658)", - "surface": 37480000, - "canton": null, - "numero_insee": "05118" - } - }, - { - "pk": 18403, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "RISOUL", - "center": "POINT (940203.6194782913662493 1967351.0715231720823795)", - "surface": 29790000, - "canton": null, - "numero_insee": "05119" - } - }, - { - "pk": 33016, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "RISTOLAS", - "center": "POINT (968711.5607380119618028 1981412.1498331392649561)", - "surface": 83280000, - "canton": null, - "numero_insee": "05120" - } - }, - { - "pk": 12457, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ROCHEBRUNE", - "center": "POINT (906948.2377464312594384 1946542.4961852787528187)", - "surface": 12130000, - "canton": null, - "numero_insee": "05121" - } - }, - { - "pk": 28515, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA ROCHE-DE-RAME", - "center": "POINT (938766.5117906010709703 1983054.9069708394818008)", - "surface": 40960000, - "canton": null, - "numero_insee": "05122" - } - }, - { - "pk": 22148, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA ROCHE-DES-ARNAUDS", - "center": "POINT (887810.7215393461519852 1960192.1488397850189358)", - "surface": 52840000, - "canton": null, - "numero_insee": "05123" - } - }, - { - "pk": 13831, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA ROCHETTE", - "center": "POINT (902710.5181654763873667 1962022.2403583263512701)", - "surface": 10270000, - "canton": null, - "numero_insee": "05124" - } - }, - { - "pk": 23074, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ROSANS", - "center": "POINT (849059.3024416116531938 1938136.3770857353229076)", - "surface": 30490000, - "canton": null, - "numero_insee": "05126" - } - }, - { - "pk": 26120, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "ROUSSET", - "center": "POINT (912721.1227957684313878 1950396.2768618052359670)", - "surface": 16620000, - "canton": null, - "numero_insee": "05127" - } - }, - { - "pk": 15000, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-ANDRE-D'EMBRUN", - "center": "POINT (936236.9510912620462477 1963012.2997219834942371)", - "surface": 38680000, - "canton": null, - "numero_insee": "05128" - } - }, - { - "pk": 17150, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-ANDRE-DE-ROSANS", - "center": "POINT (853896.6727714058943093 1934373.8456766908057034)", - "surface": 37070000, - "canton": null, - "numero_insee": "05129" - } - }, - { - "pk": 37356, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-APOLLINAIRE", - "center": "POINT (919154.9246843261644244 1958860.5991408587433398)", - "surface": 7410000, - "canton": null, - "numero_insee": "05130" - } - }, - { - "pk": 25309, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-AUBAN-D'OZE", - "center": "POINT (879396.3058972727740183 1949208.3307257795240730)", - "surface": 13320000, - "canton": null, - "numero_insee": "05131" - } - }, - { - "pk": 17232, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-BONNET-EN-CHAMPSAUR", - "center": "POINT (898207.9540547297801822 1973395.2961726842913777)", - "surface": 35830000, - "canton": null, - "numero_insee": "05132" - } - }, - { - "pk": 17715, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-CHAFFREY", - "center": "POINT (936602.8112174656707793 2001755.3297152700833976)", - "surface": 25650000, - "canton": null, - "numero_insee": "05133" - } - }, - { - "pk": 36885, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-CLEMENT-SUR-DURANCE", - "center": "POINT (935077.9301525530172512 1969709.2648383961059153)", - "surface": 26050000, - "canton": null, - "numero_insee": "05134" - } - }, - { - "pk": 27050, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINTE-COLOMBE", - "center": "POINT (865977.3199246716685593 1926469.0350331761874259)", - "surface": 17260000, - "canton": null, - "numero_insee": "05135" - } - }, - { - "pk": 20292, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-CREPIN", - "center": "POINT (940507.0798225449398160 1978565.3132256723474711)", - "surface": 46970000, - "canton": null, - "numero_insee": "05136" - } - }, - { - "pk": 17818, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "DEVOLUY", - "center": "POINT (881810.2808980157133192 1971151.9624849592801183)", - "surface": 186310000, - "canton": null, - "numero_insee": "05139" - } - }, - { - "pk": 12729, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-ETIENNE-LE-LAUS", - "center": "POINT (904293.0646574562415481 1952626.0343395902309567)", - "surface": 8580000, - "canton": null, - "numero_insee": "05140" - } - }, - { - "pk": 31160, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-EUSEBE-EN-CHAMPSAUR", - "center": "POINT (893080.6442345556570217 1975953.8249025188852102)", - "surface": 7920000, - "canton": null, - "numero_insee": "05141" - } - }, - { - "pk": 22721, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-FIRMIN", - "center": "POINT (891912.3661520049208775 1983751.8007421393413097)", - "surface": 21980000, - "canton": null, - "numero_insee": "05142" - } - }, - { - "pk": 37453, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-GENIS", - "center": "POINT (875796.8125758499372751 1937064.5950788448099047)", - "surface": 18520000, - "canton": null, - "numero_insee": "05143" - } - }, - { - "pk": 37958, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-JACQUES-EN-VALGODEMARD", - "center": "POINT (895533.0394427325809374 1981780.9242545804008842)", - "surface": 15420000, - "canton": null, - "numero_insee": "05144" - } - }, - { - "pk": 20750, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-JEAN-SAINT-NICOLAS", - "center": "POINT (908736.1687220851890743 1971383.8567406623624265)", - "surface": 37620000, - "canton": null, - "numero_insee": "05145" - } - }, - { - "pk": 21119, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-JULIEN-EN-BEAUCHENE", - "center": "POINT (868556.8318399433046579 1964130.8519096777308732)", - "surface": 59210000, - "canton": null, - "numero_insee": "05146" - } - }, - { - "pk": 23004, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-JULIEN-EN-CHAMPSAUR", - "center": "POINT (900837.1890653660520911 1970314.7355209439992905)", - "surface": 10290000, - "canton": null, - "numero_insee": "05147" - } - }, - { - "pk": 27072, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-LAURENT-DU-CROS", - "center": "POINT (899369.3760542927775532 1966398.0371334597002715)", - "surface": 12460000, - "canton": null, - "numero_insee": "05148" - } - }, - { - "pk": 6394, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-LEGER-LES-MELEZES", - "center": "POINT (907462.5318830185569823 1968169.5533362319692969)", - "surface": 6740000, - "canton": null, - "numero_insee": "05149" - } - }, - { - "pk": 7950, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINTE-MARIE", - "center": "POINT (849699.0299264865461737 1945249.3671271600760520)", - "surface": 7420000, - "canton": null, - "numero_insee": "05150" - } - }, - { - "pk": 18904, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-MARTIN-DE-QUEYRIERES", - "center": "POINT (935696.1690321022178978 1990836.3766128055285662)", - "surface": 55560000, - "canton": null, - "numero_insee": "05151" - } - }, - { - "pk": 14730, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-MAURICE-EN-VALGODEMARD", - "center": "POINT (898812.0437358816852793 1984612.0481086352374405)", - "surface": 37160000, - "canton": null, - "numero_insee": "05152" - } - }, - { - "pk": 26693, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-PIERRE-D'ARGENCON", - "center": "POINT (866657.2271236119559035 1952202.0931761309038848)", - "surface": 19530000, - "canton": null, - "numero_insee": "05154" - } - }, - { - "pk": 8346, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-PIERRE-AVEZ", - "center": "POINT (874221.6126740683102980 1922335.3775934837758541)", - "surface": 11820000, - "canton": null, - "numero_insee": "05155" - } - }, - { - "pk": 14834, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-SAUVEUR", - "center": "POINT (933283.3375859921798110 1957280.8122254819609225)", - "surface": 23610000, - "canton": null, - "numero_insee": "05156" - } - }, - { - "pk": 20531, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAINT-VERAN", - "center": "POINT (960956.9785340467933565 1975238.6538847559131682)", - "surface": 44730000, - "canton": null, - "numero_insee": "05157" - } - }, - { - "pk": 4983, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LE SAIX", - "center": "POINT (878318.4700003705220297 1946496.2181293277535588)", - "surface": 22370000, - "canton": null, - "numero_insee": "05158" - } - }, - { - "pk": 22799, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SALEON", - "center": "POINT (874353.8403537061531097 1930244.9587625253479928)", - "surface": 9910000, - "canton": null, - "numero_insee": "05159" - } - }, - { - "pk": 12470, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SALERANS", - "center": "POINT (868823.9643341968767345 1921388.0293969216290861)", - "surface": 13940000, - "canton": null, - "numero_insee": "05160" - } - }, - { - "pk": 22401, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA SALLE-LES-ALPES", - "center": "POINT (933583.5533426532056183 2003631.1631044072564691)", - "surface": 35830000, - "canton": null, - "numero_insee": "05161" - } - }, - { - "pk": 26864, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LA SAULCE", - "center": "POINT (892660.0663314906414598 1943416.2384356241673231)", - "surface": 7460000, - "canton": null, - "numero_insee": "05162" - } - }, - { - "pk": 35484, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LE SAUZE-DU-LAC", - "center": "POINT (917122.8365843939827755 1950734.5621877156663686)", - "surface": 12270000, - "canton": null, - "numero_insee": "05163" - } - }, - { - "pk": 17234, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAVINES-LE-LAC", - "center": "POINT (922485.7820681564044207 1955685.9929437064565718)", - "surface": 30420000, - "canton": null, - "numero_insee": "05164" - } - }, - { - "pk": 19518, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SAVOURNON", - "center": "POINT (875855.6050771202426404 1941870.1852350884582847)", - "surface": 39410000, - "canton": null, - "numero_insee": "05165" - } - }, - { - "pk": 20651, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SERRES", - "center": "POINT (869153.3160161124542356 1941312.0530941016040742)", - "surface": 18440000, - "canton": null, - "numero_insee": "05166" - } - }, - { - "pk": 32194, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SIGOTTIER", - "center": "POINT (866616.4615943807875738 1945294.4831881555728614)", - "surface": 25410000, - "canton": null, - "numero_insee": "05167" - } - }, - { - "pk": 16590, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SIGOYER", - "center": "POINT (889110.1033846656791866 1948791.3766044629737735)", - "surface": 25120000, - "canton": null, - "numero_insee": "05168" - } - }, - { - "pk": 37564, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "SORBIERS", - "center": "POINT (858101.6840079514076933 1934309.8278080385643989)", - "surface": 13890000, - "canton": null, - "numero_insee": "05169" - } - }, - { - "pk": 5584, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "TALLARD", - "center": "POINT (895134.0781941094901413 1946741.0251499535515904)", - "surface": 14530000, - "canton": null, - "numero_insee": "05170" - } - }, - { - "pk": 25226, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "THEUS", - "center": "POINT (907117.3705747851636261 1950147.7486205277964473)", - "surface": 16490000, - "canton": null, - "numero_insee": "05171" - } - }, - { - "pk": 11379, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "TRESCLEOUX", - "center": "POINT (869717.4542704836931080 1933909.0530006852932274)", - "surface": 18640000, - "canton": null, - "numero_insee": "05172" - } - }, - { - "pk": 15967, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "UPAIX", - "center": "POINT (882959.7896217168308794 1930619.2789417686872184)", - "surface": 23300000, - "canton": null, - "numero_insee": "05173" - } - }, - { - "pk": 15369, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VAL-DES-PRES", - "center": "POINT (941590.2048961240798235 2003800.4806640059687197)", - "surface": 44700000, - "canton": null, - "numero_insee": "05174" - } - }, - { - "pk": 36312, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VALSERRES", - "center": "POINT (902410.1852577836252749 1950407.4950751741416752)", - "surface": 11310000, - "canton": null, - "numero_insee": "05176" - } - }, - { - "pk": 22123, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VARS", - "center": "POINT (947538.3855010662227869 1964211.1654526293277740)", - "surface": 90750000, - "canton": null, - "numero_insee": "05177" - } - }, - { - "pk": 21419, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VENTAVON", - "center": "POINT (883097.1301918909884989 1937928.2232386060059071)", - "surface": 42370000, - "canton": null, - "numero_insee": "05178" - } - }, - { - "pk": 27279, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VEYNES", - "center": "POINT (877028.6452970774844289 1956795.9466651445254683)", - "surface": 43720000, - "canton": null, - "numero_insee": "05179" - } - }, - { - "pk": 33833, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "LES VIGNEAUX", - "center": "POINT (932109.1844517523422837 1988903.4328844863921404)", - "surface": 16170000, - "canton": null, - "numero_insee": "05180" - } - }, - { - "pk": 19862, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VILLAR-D'ARENE", - "center": "POINT (917529.6524475901387632 2007997.0774190339725465)", - "surface": 77970000, - "canton": null, - "numero_insee": "05181" - } - }, - { - "pk": 14729, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VILLAR-LOUBIERE", - "center": "POINT (900375.6186367603950202 1989030.0312811883632094)", - "surface": 21970000, - "canton": null, - "numero_insee": "05182" - } - }, - { - "pk": 15962, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VILLAR-SAINT-PANCRACE", - "center": "POINT (940996.8721072389744222 1991382.7125298315659165)", - "surface": 42750000, - "canton": null, - "numero_insee": "05183" - } - }, - { - "pk": 16833, - "model": "ishtar_common.town", - "fields": { - "departement": 5, - "name": "VITROLLES", - "center": "POINT (887662.9051560396328568 1942472.2732913580257446)", - "surface": 14550000, - "canton": null, - "numero_insee": "05184" - } - }, - { - "pk": 37246, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "AIGLUN", - "center": "POINT (969863.6354822786524892 1883117.1967339939437807)", - "surface": 15430000, - "canton": null, - "numero_insee": "06001" - } - }, - { - "pk": 32576, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "AMIRAT", - "center": "POINT (959815.2153312988812104 1887435.0288141430355608)", - "surface": 12930000, - "canton": null, - "numero_insee": "06002" - } - }, - { - "pk": 23779, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ANDON", - "center": "POINT (961431.1493991850875318 1874234.4211965207941830)", - "surface": 54280000, - "canton": null, - "numero_insee": "06003" - } - }, - { - "pk": 14745, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ANTIBES", - "center": "POINT (985428.5990737931570038 1854520.1143812742084265)", - "surface": 26990000, - "canton": null, - "numero_insee": "06004" - } - }, - { - "pk": 4791, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ASCROS", - "center": "POINT (975903.1015875593293458 1890878.0193318584933877)", - "surface": 17480000, - "canton": null, - "numero_insee": "06005" - } - }, - { - "pk": 25608, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ASPREMONT", - "center": "POINT (995353.2363618963863701 1876030.1750067726243287)", - "surface": 9240000, - "canton": null, - "numero_insee": "06006" - } - }, - { - "pk": 9470, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "AURIBEAU-SUR-SIAGNE", - "center": "POINT (969595.5252572048921138 1856285.0104687861166894)", - "surface": 5270000, - "canton": null, - "numero_insee": "06007" - } - }, - { - "pk": 33024, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "AUVARE", - "center": "POINT (967312.8898765605408698 1900213.8801349173299968)", - "surface": 17950000, - "canton": null, - "numero_insee": "06008" - } - }, - { - "pk": 34214, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BAIROLS", - "center": "POINT (983841.8287130192620680 1898955.6311486612539738)", - "surface": 15030000, - "canton": null, - "numero_insee": "06009" - } - }, - { - "pk": 19934, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LE BAR-SUR-LOUP", - "center": "POINT (973113.4271085023647174 1866226.5820974411908537)", - "surface": 14460000, - "canton": null, - "numero_insee": "06010" - } - }, - { - "pk": 6075, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BEAULIEU-SUR-MER", - "center": "POINT (1002922.7465801036451012 1868988.0044944640249014)", - "surface": 1080000, - "canton": null, - "numero_insee": "06011" - } - }, - { - "pk": 35676, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BEAUSOLEIL", - "center": "POINT (1009788.1640558058861643 1873853.0139765574131161)", - "surface": 2800000, - "canton": null, - "numero_insee": "06012" - } - }, - { - "pk": 33723, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BELVEDERE", - "center": "POINT (1003685.5580386437941343 1907937.5132461334578693)", - "surface": 75610000, - "canton": null, - "numero_insee": "06013" - } - }, - { - "pk": 7587, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BENDEJUN", - "center": "POINT (998101.3700707885436714 1882361.0221997057087719)", - "surface": 6310000, - "canton": null, - "numero_insee": "06014" - } - }, - { - "pk": 21868, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BERRE-LES-ALPES", - "center": "POINT (1001796.4892225791700184 1883394.2224113331176341)", - "surface": 9510000, - "canton": null, - "numero_insee": "06015" - } - }, - { - "pk": 21957, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BEUIL", - "center": "POINT (971218.0693780748406425 1911660.1173900463618338)", - "surface": 74510000, - "canton": null, - "numero_insee": "06016" - } - }, - { - "pk": 24840, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BIOT", - "center": "POINT (983289.0626292091328651 1858806.3933784426189959)", - "surface": 15500000, - "canton": null, - "numero_insee": "06018" - } - }, - { - "pk": 20433, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA BOLLENE-VESUBIE", - "center": "POINT (1003945.7781162963947281 1901032.2485061637125909)", - "surface": 35330000, - "canton": null, - "numero_insee": "06020" - } - }, - { - "pk": 30428, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BONSON", - "center": "POINT (989765.8838115192484111 1885392.0865364167839289)", - "surface": 6650000, - "canton": null, - "numero_insee": "06021" - } - }, - { - "pk": 18143, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BOUYON", - "center": "POINT (985398.6993963931454346 1881049.4414598292205483)", - "surface": 12440000, - "canton": null, - "numero_insee": "06022" - } - }, - { - "pk": 21041, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BREIL-SUR-ROYA", - "center": "POINT (1015003.9866330742370337 1895722.4636243083514273)", - "surface": 81600000, - "canton": null, - "numero_insee": "06023" - } - }, - { - "pk": 17776, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "BRIANCONNET", - "center": "POINT (954542.6919426308013499 1883585.2092225775122643)", - "surface": 24660000, - "canton": null, - "numero_insee": "06024" - } - }, - { - "pk": 17584, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LE BROC", - "center": "POINT (988211.1420736210420728 1879972.6237501474097371)", - "surface": 18710000, - "canton": null, - "numero_insee": "06025" - } - }, - { - "pk": 12771, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CABRIS", - "center": "POINT (966547.2982220163103193 1861464.4436355887446553)", - "surface": 5400000, - "canton": null, - "numero_insee": "06026" - } - }, - { - "pk": 9131, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CAILLE", - "center": "POINT (956136.0558732199715450 1872987.2579553700052202)", - "surface": 17000000, - "canton": null, - "numero_insee": "06028" - } - }, - { - "pk": 19256, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CANNES", - "center": "POINT (977054.4805342208128422 1850442.9962717455346137)", - "surface": 20990000, - "canton": null, - "numero_insee": "06029" - } - }, - { - "pk": 25272, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LE CANNET", - "center": "POINT (977538.5209158617071807 1852349.3349015871062875)", - "surface": 7680000, - "canton": null, - "numero_insee": "06030" - } - }, - { - "pk": 9996, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CANTARON", - "center": "POINT (1000860.6711224818136543 1875877.7785270151216537)", - "surface": 7300000, - "canton": null, - "numero_insee": "06031" - } - }, - { - "pk": 36065, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CAP-D'AIL", - "center": "POINT (1008309.2279307704884559 1871237.2626177368219942)", - "surface": 2200000, - "canton": null, - "numero_insee": "06032" - } - }, - { - "pk": 12340, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CARROS", - "center": "POINT (990441.2129098344594240 1876788.4266644162125885)", - "surface": 15450000, - "canton": null, - "numero_insee": "06033" - } - }, - { - "pk": 8076, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CASTAGNIERS", - "center": "POINT (993836.0415172505890951 1877819.0022469856776297)", - "surface": 6970000, - "canton": null, - "numero_insee": "06034" - } - }, - { - "pk": 12247, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CASTELLAR", - "center": "POINT (1015419.2114764894358814 1882511.5217316180933267)", - "surface": 12230000, - "canton": null, - "numero_insee": "06035" - } - }, - { - "pk": 22637, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CASTILLON", - "center": "POINT (1012604.1380098421359435 1883888.5920354295521975)", - "surface": 7540000, - "canton": null, - "numero_insee": "06036" - } - }, - { - "pk": 9210, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CAUSSOLS", - "center": "POINT (968073.5354165489552543 1870187.3805182534269989)", - "surface": 27610000, - "canton": null, - "numero_insee": "06037" - } - }, - { - "pk": 15277, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CHATEAUNEUF-GRASSE", - "center": "POINT (974756.7360606213333085 1861435.4525265609845519)", - "surface": 9080000, - "canton": null, - "numero_insee": "06038" - } - }, - { - "pk": 27087, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CHATEAUNEUF-VILLEVIEILLE", - "center": "POINT (999131.9599034135462716 1878966.2058219450991601)", - "surface": 8430000, - "canton": null, - "numero_insee": "06039" - } - }, - { - "pk": 14481, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CHATEAUNEUF-D'ENTRAUNES", - "center": "POINT (959858.1420875289477408 1917167.7766957811545581)", - "surface": 29440000, - "canton": null, - "numero_insee": "06040" - } - }, - { - "pk": 5451, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CIPIERES", - "center": "POINT (969944.2890482338843867 1873807.5914467873517424)", - "surface": 38340000, - "canton": null, - "numero_insee": "06041" - } - }, - { - "pk": 20535, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CLANS", - "center": "POINT (988427.4027624474838376 1901197.8211981635540724)", - "surface": 37730000, - "canton": null, - "numero_insee": "06042" - } - }, - { - "pk": 23851, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "COARAZE", - "center": "POINT (999066.7561541770119220 1886473.9368917397223413)", - "surface": 17010000, - "canton": null, - "numero_insee": "06043" - } - }, - { - "pk": 11554, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA COLLE-SUR-LOUP", - "center": "POINT (984131.8347113771596923 1865521.2096958528272808)", - "surface": 9820000, - "canton": null, - "numero_insee": "06044" - } - }, - { - "pk": 4693, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "COLLONGUES", - "center": "POINT (963920.2886692173779011 1887370.4604321850929409)", - "surface": 10810000, - "canton": null, - "numero_insee": "06045" - } - }, - { - "pk": 26879, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "COLOMARS", - "center": "POINT (993667.9862475191475824 1874113.4328947151079774)", - "surface": 6270000, - "canton": null, - "numero_insee": "06046" - } - }, - { - "pk": 12475, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CONSEGUDES", - "center": "POINT (978880.7126015949761495 1882294.3522757696919143)", - "surface": 12610000, - "canton": null, - "numero_insee": "06047" - } - }, - { - "pk": 4309, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "COURMES", - "center": "POINT (977164.7666585029801354 1872368.4953440634999424)", - "surface": 15930000, - "canton": null, - "numero_insee": "06049" - } - }, - { - "pk": 3872, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "COURSEGOULES", - "center": "POINT (978427.9300178400008008 1876784.3348981901071966)", - "surface": 41280000, - "canton": null, - "numero_insee": "06050" - } - }, - { - "pk": 29632, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA CROIX-SUR-ROUDOULE", - "center": "POINT (963717.8980436900164932 1899181.6510422886349261)", - "surface": 29900000, - "canton": null, - "numero_insee": "06051" - } - }, - { - "pk": 32325, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "CUEBRIS", - "center": "POINT (975231.8855198998935521 1887468.4597043204121292)", - "surface": 22940000, - "canton": null, - "numero_insee": "06052" - } - }, - { - "pk": 17412, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "DALUIS", - "center": "POINT (957877.3392863876651973 1903135.4487341749481857)", - "surface": 39500000, - "canton": null, - "numero_insee": "06053" - } - }, - { - "pk": 28321, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "DRAP", - "center": "POINT (1002874.0480227191001177 1874593.8223635745234787)", - "surface": 5490000, - "canton": null, - "numero_insee": "06054" - } - }, - { - "pk": 5959, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "DURANUS", - "center": "POINT (997339.7995023904368281 1889362.1364172140602022)", - "surface": 16050000, - "canton": null, - "numero_insee": "06055" - } - }, - { - "pk": 28942, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ENTRAUNES", - "center": "POINT (953805.3419665119145066 1922521.2024029034655541)", - "surface": 79990000, - "canton": null, - "numero_insee": "06056" - } - }, - { - "pk": 23906, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "L'ESCARENE", - "center": "POINT (1004601.9838323785224929 1883118.2643773022573441)", - "surface": 10530000, - "canton": null, - "numero_insee": "06057" - } - }, - { - "pk": 32876, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ESCRAGNOLLES", - "center": "POINT (958475.6939611262641847 1868702.7197384901810437)", - "surface": 26350000, - "canton": null, - "numero_insee": "06058" - } - }, - { - "pk": 34076, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "EZE", - "center": "POINT (1005003.1884639770723879 1871508.8681142376735806)", - "surface": 9550000, - "canton": null, - "numero_insee": "06059" - } - }, - { - "pk": 5136, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "FALICON", - "center": "POINT (997175.9614256514469162 1873643.3321989751420915)", - "surface": 4920000, - "canton": null, - "numero_insee": "06060" - } - }, - { - "pk": 24304, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LES FERRES", - "center": "POINT (982681.1553505093324929 1882727.7502358085475862)", - "surface": 13770000, - "canton": null, - "numero_insee": "06061" - } - }, - { - "pk": 22871, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "FONTAN", - "center": "POINT (1017626.6317854677326977 1904955.3443657606840134)", - "surface": 49540000, - "canton": null, - "numero_insee": "06062" - } - }, - { - "pk": 31480, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GARS", - "center": "POINT (960350.3910921404603869 1883435.2519427430815995)", - "surface": 15470000, - "canton": null, - "numero_insee": "06063" - } - }, - { - "pk": 16653, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GATTIERES", - "center": "POINT (989259.0812828156631440 1874575.7241956009529531)", - "surface": 10140000, - "canton": null, - "numero_insee": "06064" - } - }, - { - "pk": 4503, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA GAUDE", - "center": "POINT (988901.2281336179003119 1869667.1628706096671522)", - "surface": 13410000, - "canton": null, - "numero_insee": "06065" - } - }, - { - "pk": 35113, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GILETTE", - "center": "POINT (988078.9014174129115418 1883675.5700315020512789)", - "surface": 10610000, - "canton": null, - "numero_insee": "06066" - } - }, - { - "pk": 37316, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GORBIO", - "center": "POINT (1011451.6368103779386729 1878272.3661544614005834)", - "surface": 7070000, - "canton": null, - "numero_insee": "06067" - } - }, - { - "pk": 5156, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GOURDON", - "center": "POINT (973089.1388805527240038 1869029.4963887203484774)", - "surface": 22600000, - "canton": null, - "numero_insee": "06068" - } - }, - { - "pk": 21021, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GRASSE", - "center": "POINT (970954.4984548186184838 1861202.2823922000825405)", - "surface": 44280000, - "canton": null, - "numero_insee": "06069" - } - }, - { - "pk": 21341, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GREOLIERES", - "center": "POINT (970007.9684817777015269 1878012.8043687366880476)", - "surface": 52520000, - "canton": null, - "numero_insee": "06070" - } - }, - { - "pk": 28560, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "GUILLAUMES", - "center": "POINT (963532.8429245459847152 1908990.7205729398410767)", - "surface": 86400000, - "canton": null, - "numero_insee": "06071" - } - }, - { - "pk": 21147, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ILONSE", - "center": "POINT (981094.8039112549740821 1904037.3727188049815595)", - "surface": 40550000, - "canton": null, - "numero_insee": "06072" - } - }, - { - "pk": 15954, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ISOLA", - "center": "POINT (978946.0776976908091456 1920937.0520071892533451)", - "surface": 99590000, - "canton": null, - "numero_insee": "06073" - } - }, - { - "pk": 15019, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LANTOSQUE", - "center": "POINT (998766.5695891533978283 1897983.9726441756356508)", - "surface": 44640000, - "canton": null, - "numero_insee": "06074" - } - }, - { - "pk": 29859, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LEVENS", - "center": "POINT (994480.2776434915140271 1884331.7921735059935600)", - "surface": 29650000, - "canton": null, - "numero_insee": "06075" - } - }, - { - "pk": 27304, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LIEUCHE", - "center": "POINT (976724.1852483981056139 1900095.2192498820368201)", - "surface": 13140000, - "canton": null, - "numero_insee": "06076" - } - }, - { - "pk": 17125, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LUCERAM", - "center": "POINT (1003136.1833984090480953 1890513.6952279321849346)", - "surface": 65030000, - "canton": null, - "numero_insee": "06077" - } - }, - { - "pk": 15076, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MALAUSSENE", - "center": "POINT (986012.5768154235556722 1891065.7991020821500570)", - "surface": 19540000, - "canton": null, - "numero_insee": "06078" - } - }, - { - "pk": 20411, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MANDELIEU-LA-NAPOULE", - "center": "POINT (970567.5793340280652046 1848084.1892098467797041)", - "surface": 32100000, - "canton": null, - "numero_insee": "06079" - } - }, - { - "pk": 22227, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MARIE", - "center": "POINT (986497.6773471767082810 1904384.5679219509474933)", - "surface": 14640000, - "canton": null, - "numero_insee": "06080" - } - }, - { - "pk": 5422, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LE MAS", - "center": "POINT (963875.6626451724441722 1880963.0114446759689599)", - "surface": 32400000, - "canton": null, - "numero_insee": "06081" - } - }, - { - "pk": 19281, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MASSOINS", - "center": "POINT (984480.6480174928437918 1894556.3531780545599759)", - "surface": 11890000, - "canton": null, - "numero_insee": "06082" - } - }, - { - "pk": 16559, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MENTON", - "center": "POINT (1015249.4743959931656718 1879006.1655365144833922)", - "surface": 14220000, - "canton": null, - "numero_insee": "06083" - } - }, - { - "pk": 5323, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MOUANS-SARTOUX", - "center": "POINT (973892.2287146009039134 1857223.2481406808365136)", - "surface": 12620000, - "canton": null, - "numero_insee": "06084" - } - }, - { - "pk": 21443, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MOUGINS", - "center": "POINT (976915.3304232882801443 1854946.8616733876988292)", - "surface": 26010000, - "canton": null, - "numero_insee": "06085" - } - }, - { - "pk": 15813, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "MOULINET", - "center": "POINT (1007687.8267101699020714 1896659.9511200238484889)", - "surface": 40990000, - "canton": null, - "numero_insee": "06086" - } - }, - { - "pk": 5321, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LES MUJOULS", - "center": "POINT (963641.6511538524646312 1884865.2923688311129808)", - "surface": 14540000, - "canton": null, - "numero_insee": "06087" - } - }, - { - "pk": 22162, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "NICE", - "center": "POINT (995214.7324601991567761 1868921.0662677288055420)", - "surface": 73910000, - "canton": null, - "numero_insee": "06088" - } - }, - { - "pk": 34474, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "OPIO", - "center": "POINT (977156.6418589383829385 1861756.5890510200988501)", - "surface": 9310000, - "canton": null, - "numero_insee": "06089" - } - }, - { - "pk": 33532, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PEGOMAS", - "center": "POINT (970620.8560788088943809 1853490.7423254165332764)", - "surface": 11150000, - "canton": null, - "numero_insee": "06090" - } - }, - { - "pk": 22144, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PEILLE", - "center": "POINT (1008530.3656815784052014 1880349.3022626210004091)", - "surface": 42750000, - "canton": null, - "numero_insee": "06091" - } - }, - { - "pk": 35929, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PEILLON", - "center": "POINT (1005561.1907589144539088 1876419.1702610575594008)", - "surface": 8680000, - "canton": null, - "numero_insee": "06092" - } - }, - { - "pk": 20586, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA PENNE", - "center": "POINT (969994.4587721262359992 1891127.1434512468986213)", - "surface": 18010000, - "canton": null, - "numero_insee": "06093" - } - }, - { - "pk": 15015, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PEONE", - "center": "POINT (966994.7560513229109347 1913825.9076636245008558)", - "surface": 48450000, - "canton": null, - "numero_insee": "06094" - } - }, - { - "pk": 27110, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PEYMEINADE", - "center": "POINT (967076.4307806738652289 1858165.3257058067247272)", - "surface": 9930000, - "canton": null, - "numero_insee": "06095" - } - }, - { - "pk": 21142, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PIERLAS", - "center": "POINT (975291.5231518412474543 1903686.7279224928934127)", - "surface": 31380000, - "canton": null, - "numero_insee": "06096" - } - }, - { - "pk": 14818, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PIERREFEU", - "center": "POINT (980638.2967671297956258 1887415.2214561644941568)", - "surface": 22170000, - "canton": null, - "numero_insee": "06097" - } - }, - { - "pk": 4648, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PUGET-ROSTANG", - "center": "POINT (969233.9018128893803805 1898028.1179087902419269)", - "surface": 22390000, - "canton": null, - "numero_insee": "06098" - } - }, - { - "pk": 16888, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "PUGET-THENIERS", - "center": "POINT (966966.2428626478649676 1894004.0930494028143585)", - "surface": 21340000, - "canton": null, - "numero_insee": "06099" - } - }, - { - "pk": 28333, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "REVEST-LES-ROCHES", - "center": "POINT (988445.4371110008796677 1887583.0547355539165437)", - "surface": 8670000, - "canton": null, - "numero_insee": "06100" - } - }, - { - "pk": 33722, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "RIGAUD", - "center": "POINT (972230.0176334599964321 1898854.9537543379701674)", - "surface": 32240000, - "canton": null, - "numero_insee": "06101" - } - }, - { - "pk": 24856, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "RIMPLAS", - "center": "POINT (985131.2237394736148417 1911880.8655217105988413)", - "surface": 24890000, - "canton": null, - "numero_insee": "06102" - } - }, - { - "pk": 22727, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ROQUEBILLIERE", - "center": "POINT (997411.3453998765908182 1904178.9784870413132012)", - "surface": 25630000, - "canton": null, - "numero_insee": "06103" - } - }, - { - "pk": 16344, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ROQUEBRUNE-CAP-MARTIN", - "center": "POINT (1012573.6629637217847630 1875879.4544366183690727)", - "surface": 9510000, - "canton": null, - "numero_insee": "06104" - } - }, - { - "pk": 14247, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ROQUESTERON", - "center": "POINT (976953.5895224413834512 1885180.8481207606382668)", - "surface": 6310000, - "canton": null, - "numero_insee": "06106" - } - }, - { - "pk": 17030, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ROQUESTERON-GRASSE", - "center": "POINT (974370.0033096948172897 1882956.0247065180446953)", - "surface": 24090000, - "canton": null, - "numero_insee": "06107" - } - }, - { - "pk": 24710, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA ROQUETTE-SUR-SIAGNE", - "center": "POINT (972924.1407533958554268 1853410.5848856675438583)", - "surface": 6250000, - "canton": null, - "numero_insee": "06108" - } - }, - { - "pk": 11536, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA ROQUETTE-SUR-VAR", - "center": "POINT (991694.7722663327585906 1882305.4013510430231690)", - "surface": 4260000, - "canton": null, - "numero_insee": "06109" - } - }, - { - "pk": 21700, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "ROUBION", - "center": "POINT (975720.0051435650093481 1911999.4629540608730167)", - "surface": 26910000, - "canton": null, - "numero_insee": "06110" - } - }, - { - "pk": 25450, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LE ROURET", - "center": "POINT (977034.8446730673313141 1864258.3321327164303511)", - "surface": 7150000, - "canton": null, - "numero_insee": "06112" - } - }, - { - "pk": 8297, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINTE-AGNES", - "center": "POINT (1012533.6271288591669872 1880484.2137917971704155)", - "surface": 9530000, - "canton": null, - "numero_insee": "06113" - } - }, - { - "pk": 20168, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-ANDRE-DE-LA-ROCHE", - "center": "POINT (999084.0178011138923466 1872959.1221100511029363)", - "surface": 2820000, - "canton": null, - "numero_insee": "06114" - } - }, - { - "pk": 3641, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-ANTONIN", - "center": "POINT (972912.1748382148798555 1889450.5567168544512242)", - "surface": 6370000, - "canton": null, - "numero_insee": "06115" - } - }, - { - "pk": 29925, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-AUBAN", - "center": "POINT (954375.3988700124900788 1879779.5631537344306707)", - "surface": 42690000, - "canton": null, - "numero_insee": "06116" - } - }, - { - "pk": 13698, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-BLAISE", - "center": "POINT (993916.1581058338051662 1880122.2479114725720137)", - "surface": 7960000, - "canton": null, - "numero_insee": "06117" - } - }, - { - "pk": 35408, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-CEZAIRE-SUR-SIAGNE", - "center": "POINT (960544.4944951335201040 1861012.0223724064417183)", - "surface": 30060000, - "canton": null, - "numero_insee": "06118" - } - }, - { - "pk": 22111, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-DALMAS-LE-SELVAGE", - "center": "POINT (959536.6102645585779101 1931180.0304680303670466)", - "surface": 81000000, - "canton": null, - "numero_insee": "06119" - } - }, - { - "pk": 16047, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-ETIENNE-DE-TINEE", - "center": "POINT (966479.8901062576333061 1927035.6663254213053733)", - "surface": 172570000, - "canton": null, - "numero_insee": "06120" - } - }, - { - "pk": 3879, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-JEAN-CAP-FERRAT", - "center": "POINT (1002842.6432168582687154 1866684.7388068404980004)", - "surface": 2760000, - "canton": null, - "numero_insee": "06121" - } - }, - { - "pk": 21601, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-JEANNET", - "center": "POINT (987064.6176912491209805 1873655.6830057147890329)", - "surface": 14610000, - "canton": null, - "numero_insee": "06122" - } - }, - { - "pk": 31697, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-LAURENT-DU-VAR", - "center": "POINT (990937.1885028707329184 1865780.4747227607294917)", - "surface": 9380000, - "canton": null, - "numero_insee": "06123" - } - }, - { - "pk": 7828, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-LEGER", - "center": "POINT (960013.2669581614900380 1899249.6838094340637326)", - "surface": 4500000, - "canton": null, - "numero_insee": "06124" - } - }, - { - "pk": 5100, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-MARTIN-D'ENTRAUNES", - "center": "POINT (952867.5698520841542631 1915205.2205855457577854)", - "surface": 39730000, - "canton": null, - "numero_insee": "06125" - } - }, - { - "pk": 22752, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-MARTIN-DU-VAR", - "center": "POINT (991410.9705659945029765 1880400.8349860147573054)", - "surface": 4870000, - "canton": null, - "numero_insee": "06126" - } - }, - { - "pk": 17704, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-MARTIN-VESUBIE", - "center": "POINT (997638.6220779622672126 1912590.0876359939575195)", - "surface": 97170000, - "canton": null, - "numero_insee": "06127" - } - }, - { - "pk": 12491, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-PAUL-DE-VENCE", - "center": "POINT (985925.0280392098939046 1866537.8814526549540460)", - "surface": 7260000, - "canton": null, - "numero_insee": "06128" - } - }, - { - "pk": 4782, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-SAUVEUR-SUR-TINEE", - "center": "POINT (982812.4052882009418681 1913762.8081733281724155)", - "surface": 32280000, - "canton": null, - "numero_insee": "06129" - } - }, - { - "pk": 22549, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAINT-VALLIER-DE-THIEY", - "center": "POINT (964110.1193940392695367 1865447.8133625218179077)", - "surface": 52160000, - "canton": null, - "numero_insee": "06130" - } - }, - { - "pk": 38056, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SALLAGRIFFON", - "center": "POINT (968035.7687076900620013 1886104.6721797063946724)", - "surface": 9560000, - "canton": null, - "numero_insee": "06131" - } - }, - { - "pk": 37045, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAORGE", - "center": "POINT (1017254.0908787974622101 1901748.6083480105735362)", - "surface": 84470000, - "canton": null, - "numero_insee": "06132" - } - }, - { - "pk": 5384, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SAUZE", - "center": "POINT (957632.0813163116108626 1908338.9808802721090615)", - "surface": 27550000, - "canton": null, - "numero_insee": "06133" - } - }, - { - "pk": 30943, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SERANON", - "center": "POINT (950835.7588119818829000 1872340.7365815399680287)", - "surface": 23260000, - "canton": null, - "numero_insee": "06134" - } - }, - { - "pk": 8704, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SIGALE", - "center": "POINT (972242.6854100496275350 1885840.7899863785132766)", - "surface": 5590000, - "canton": null, - "numero_insee": "06135" - } - }, - { - "pk": 16562, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SOSPEL", - "center": "POINT (1010856.2626948229735717 1889179.2478538919240236)", - "surface": 62450000, - "canton": null, - "numero_insee": "06136" - } - }, - { - "pk": 36758, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "SPERACEDES", - "center": "POINT (964953.4275867705000564 1860549.6327333024237305)", - "surface": 3470000, - "canton": null, - "numero_insee": "06137" - } - }, - { - "pk": 16843, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "THEOULE-SUR-MER", - "center": "POINT (971806.1375981529708952 1843790.0529877939261496)", - "surface": 10720000, - "canton": null, - "numero_insee": "06138" - } - }, - { - "pk": 3901, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "THIERY", - "center": "POINT (977751.2391225008759648 1897100.8425008868798614)", - "surface": 21940000, - "canton": null, - "numero_insee": "06139" - } - }, - { - "pk": 18009, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LE TIGNET", - "center": "POINT (964781.8228921875124797 1857244.4444500948302448)", - "surface": 11340000, - "canton": null, - "numero_insee": "06140" - } - }, - { - "pk": 5604, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TOUDON", - "center": "POINT (983534.3280867957510054 1888241.2193502194713801)", - "surface": 18440000, - "canton": null, - "numero_insee": "06141" - } - }, - { - "pk": 7857, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TOUET-DE-L'ESCARENE", - "center": "POINT (1005484.6445425371639431 1885228.2557366155087948)", - "surface": 4620000, - "canton": null, - "numero_insee": "06142" - } - }, - { - "pk": 15016, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TOUET-SUR-VAR", - "center": "POINT (975579.3663299336330965 1893578.1783002414740622)", - "surface": 14390000, - "canton": null, - "numero_insee": "06143" - } - }, - { - "pk": 22161, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA TOUR", - "center": "POINT (990469.4021302483743057 1896610.5102694500237703)", - "surface": 36340000, - "canton": null, - "numero_insee": "06144" - } - }, - { - "pk": 8169, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TOURETTE-DU-CHATEAU", - "center": "POINT (985948.0807673167437315 1886960.7251698360778391)", - "surface": 9620000, - "canton": null, - "numero_insee": "06145" - } - }, - { - "pk": 22160, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TOURNEFORT", - "center": "POINT (987287.8514730830211192 1894080.1592509201727808)", - "surface": 9870000, - "canton": null, - "numero_insee": "06146" - } - }, - { - "pk": 16269, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TOURRETTE-LEVENS", - "center": "POINT (997544.2143454599427059 1877350.6423026367556304)", - "surface": 16470000, - "canton": null, - "numero_insee": "06147" - } - }, - { - "pk": 3563, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TOURRETTES-SUR-LOUP", - "center": "POINT (979199.8214888148941100 1868581.9037204724736512)", - "surface": 29350000, - "canton": null, - "numero_insee": "06148" - } - }, - { - "pk": 17124, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA TRINITE", - "center": "POINT (1003188.2734053665772080 1872994.7713389815762639)", - "surface": 14890000, - "canton": null, - "numero_insee": "06149" - } - }, - { - "pk": 19699, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA TURBIE", - "center": "POINT (1007889.6725175583269447 1873436.0677997148595750)", - "surface": 7370000, - "canton": null, - "numero_insee": "06150" - } - }, - { - "pk": 18743, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "UTELLE", - "center": "POINT (993805.7930273332167417 1892835.3018660584930331)", - "surface": 67890000, - "canton": null, - "numero_insee": "06151" - } - }, - { - "pk": 19297, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VALBONNE", - "center": "POINT (978985.4262019294546917 1858668.9651458677835763)", - "surface": 20020000, - "canton": null, - "numero_insee": "06152" - } - }, - { - "pk": 22081, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VALDEBLORE", - "center": "POINT (989023.8650688289199024 1913216.0528602278791368)", - "surface": 92950000, - "canton": null, - "numero_insee": "06153" - } - }, - { - "pk": 23829, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VALDEROURE", - "center": "POINT (952209.4999831044115126 1875556.1725758998654783)", - "surface": 25190000, - "canton": null, - "numero_insee": "06154" - } - }, - { - "pk": 5409, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VALLAURIS", - "center": "POINT (981636.7585116643458605 1853085.6532103398349136)", - "surface": 13120000, - "canton": null, - "numero_insee": "06155" - } - }, - { - "pk": 13820, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VENANSON", - "center": "POINT (992994.7130476227030158 1905542.1546870481688529)", - "surface": 17930000, - "canton": null, - "numero_insee": "06156" - } - }, - { - "pk": 16492, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VENCE", - "center": "POINT (984082.3450918011367321 1871227.1415412204805762)", - "surface": 39340000, - "canton": null, - "numero_insee": "06157" - } - }, - { - "pk": 16296, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VILLARS-SUR-VAR", - "center": "POINT (980874.3661299425875768 1894825.4032729603350163)", - "surface": 25410000, - "canton": null, - "numero_insee": "06158" - } - }, - { - "pk": 26284, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VILLEFRANCHE-SUR-MER", - "center": "POINT (1002018.3315931749530137 1869380.5946271209977567)", - "surface": 4920000, - "canton": null, - "numero_insee": "06159" - } - }, - { - "pk": 16845, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VILLENEUVE-D'ENTRAUNES", - "center": "POINT (955895.7100742914481089 1912328.2886305875144899)", - "surface": 27990000, - "canton": null, - "numero_insee": "06160" - } - }, - { - "pk": 11054, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "VILLENEUVE-LOUBET", - "center": "POINT (985169.3459051507525146 1861325.5062779078725725)", - "surface": 19970000, - "canton": null, - "numero_insee": "06161" - } - }, - { - "pk": 20378, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "LA BRIGUE", - "center": "POINT (1025894.1025348668918014 1909732.4132252901326865)", - "surface": 93520000, - "canton": null, - "numero_insee": "06162" - } - }, - { - "pk": 19996, - "model": "ishtar_common.town", - "fields": { - "departement": 6, - "name": "TENDE", - "center": "POINT (1016750.9325203989865258 1913557.0826450600288808)", - "surface": 177110000, - "canton": null, - "numero_insee": "06163" - } - }, - { - "pk": 4343, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ACCONS", - "center": "POINT (762429.6141032136511058 1989650.2789158413652331)", - "surface": 9980000, - "canton": null, - "numero_insee": "07001" - } - }, - { - "pk": 8057, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "AILHON", - "center": "POINT (758500.8144546883413568 1957283.5444006081670523)", - "surface": 7900000, - "canton": null, - "numero_insee": "07002" - } - }, - { - "pk": 12329, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "AIZAC", - "center": "POINT (757986.2721980749629438 1970693.0691030302550644)", - "surface": 6460000, - "canton": null, - "numero_insee": "07003" - } - }, - { - "pk": 5796, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "AJOUX", - "center": "POINT (770162.1681397045031190 1975001.0824697262141854)", - "surface": 12330000, - "canton": null, - "numero_insee": "07004" - } - }, - { - "pk": 21362, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ALBA-LA-ROMAINE", - "center": "POINT (779559.5929189724847674 1952958.2380457753315568)", - "surface": 30960000, - "canton": null, - "numero_insee": "07005" - } - }, - { - "pk": 4043, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ALBON-D'ARDECHE", - "center": "POINT (765201.2171175539260730 1981565.6042605787515640)", - "surface": 9180000, - "canton": null, - "numero_insee": "07006" - } - }, - { - "pk": 4175, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ALBOUSSIERE", - "center": "POINT (789202.0089113747235388 1996084.8024054574780166)", - "surface": 18300000, - "canton": null, - "numero_insee": "07007" - } - }, - { - "pk": 10978, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ANDANCE", - "center": "POINT (793231.7364267704542726 2028251.3883502283133566)", - "surface": 6610000, - "canton": null, - "numero_insee": "07009" - } - }, - { - "pk": 36724, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ANNONAY", - "center": "POINT (781605.7235188269987702 2029953.9556940498296171)", - "surface": 21100000, - "canton": null, - "numero_insee": "07010" - } - }, - { - "pk": 14777, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ANTRAIGUES-SUR-VOLANE", - "center": "POINT (759869.3514979907777160 1972911.3670820940751582)", - "surface": 13720000, - "canton": null, - "numero_insee": "07011" - } - }, - { - "pk": 19119, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ARCENS", - "center": "POINT (756513.8103860788978636 1990801.1437615649774671)", - "surface": 18560000, - "canton": null, - "numero_insee": "07012" - } - }, - { - "pk": 4064, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ARLEBOSC", - "center": "POINT (780700.1997618207242340 2007023.3847096997778863)", - "surface": 12480000, - "canton": null, - "numero_insee": "07014" - } - }, - { - "pk": 9500, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ARRAS-SUR-RHONE", - "center": "POINT (794012.7158163852291182 2018848.7102488309610635)", - "surface": 5610000, - "canton": null, - "numero_insee": "07015" - } - }, - { - "pk": 29593, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ASPERJOC", - "center": "POINT (759710.9091017453465611 1968004.9573888345621526)", - "surface": 8480000, - "canton": null, - "numero_insee": "07016" - } - }, - { - "pk": 21057, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LES ASSIONS", - "center": "POINT (747255.7162949395133182 1937667.4174996935762465)", - "surface": 14000000, - "canton": null, - "numero_insee": "07017" - } - }, - { - "pk": 17091, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ASTET", - "center": "POINT (733998.9357326180906966 1966284.7876783730462193)", - "surface": 34620000, - "canton": null, - "numero_insee": "07018" - } - }, - { - "pk": 36153, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "AUBENAS", - "center": "POINT (763493.7325965849449858 1958727.5072155399248004)", - "surface": 14640000, - "canton": null, - "numero_insee": "07019" - } - }, - { - "pk": 5610, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "AUBIGNAS", - "center": "POINT (782432.5369791258126497 1956486.3947451566345990)", - "surface": 15680000, - "canton": null, - "numero_insee": "07020" - } - }, - { - "pk": 32642, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BAIX", - "center": "POINT (791325.0824862469453365 1970176.3944008778780699)", - "surface": 17520000, - "canton": null, - "numero_insee": "07022" - } - }, - { - "pk": 20358, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BANNE", - "center": "POINT (744714.4202768448740244 1930438.1852910588495433)", - "surface": 32980000, - "canton": null, - "numero_insee": "07024" - } - }, - { - "pk": 23870, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BARNAS", - "center": "POINT (744522.6632132477825508 1964772.5491359303705394)", - "surface": 24790000, - "canton": null, - "numero_insee": "07025" - } - }, - { - "pk": 36800, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE BEAGE", - "center": "POINT (741844.1540859608212486 1985471.0825994515325874)", - "surface": 33190000, - "canton": null, - "numero_insee": "07026" - } - }, - { - "pk": 31151, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BEAUCHASTEL", - "center": "POINT (794611.2659255051985383 1983918.5432425150647759)", - "surface": 8430000, - "canton": null, - "numero_insee": "07027" - } - }, - { - "pk": 37209, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BEAULIEU", - "center": "POINT (752626.4962042097467929 1930004.9327502422966063)", - "surface": 25370000, - "canton": null, - "numero_insee": "07028" - } - }, - { - "pk": 23429, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BEAUMONT", - "center": "POINT (745842.9582616932457313 1950769.1865877322852612)", - "surface": 19290000, - "canton": null, - "numero_insee": "07029" - } - }, - { - "pk": 19770, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BEAUVENE", - "center": "POINT (771855.5668047037906945 1987728.5295984926633537)", - "surface": 12160000, - "canton": null, - "numero_insee": "07030" - } - }, - { - "pk": 17090, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BERRIAS-ET-CASTELJAU", - "center": "POINT (749196.7424083442892879 1933079.0530949649401009)", - "surface": 26700000, - "canton": null, - "numero_insee": "07031" - } - }, - { - "pk": 16326, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BERZEME", - "center": "POINT (777362.8298372583230957 1964051.0770835562143475)", - "surface": 18170000, - "canton": null, - "numero_insee": "07032" - } - }, - { - "pk": 16265, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BIDON", - "center": "POINT (776044.5464651525253430 1930804.9701431959401816)", - "surface": 29410000, - "canton": null, - "numero_insee": "07034" - } - }, - { - "pk": 14773, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BOFFRES", - "center": "POINT (786319.7748375955270603 1993657.7700861578341573)", - "surface": 30730000, - "canton": null, - "numero_insee": "07035" - } - }, - { - "pk": 13675, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BOGY", - "center": "POINT (790680.7402752579655498 2033935.2448984547518194)", - "surface": 7200000, - "canton": null, - "numero_insee": "07036" - } - }, - { - "pk": 18299, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BOREE", - "center": "POINT (749312.9641217238968238 1990039.1706109871156514)", - "surface": 28290000, - "canton": null, - "numero_insee": "07037" - } - }, - { - "pk": 19576, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BORNE", - "center": "POINT (735363.9540349399903789 1958788.5953080831095576)", - "surface": 32090000, - "canton": null, - "numero_insee": "07038" - } - }, - { - "pk": 18948, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BOZAS", - "center": "POINT (782084.4317934522405267 2009037.2017471203580499)", - "surface": 12570000, - "canton": null, - "numero_insee": "07039" - } - }, - { - "pk": 37475, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BOUCIEU-LE-ROI", - "center": "POINT (785314.7413382680388168 2005861.5390177073422819)", - "surface": 8900000, - "canton": null, - "numero_insee": "07040" - } - }, - { - "pk": 15721, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BOULIEU-LES-ANNONAY", - "center": "POINT (781185.7217635414563119 2032252.6464564937632531)", - "surface": 9530000, - "canton": null, - "numero_insee": "07041" - } - }, - { - "pk": 19240, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BOURG-SAINT-ANDEOL", - "center": "POINT (781523.5290247420780361 1933954.9713633430656046)", - "surface": 42780000, - "canton": null, - "numero_insee": "07042" - } - }, - { - "pk": 35312, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BROSSAINC", - "center": "POINT (783530.7063168836757541 2038979.2489375977311283)", - "surface": 4420000, - "canton": null, - "numero_insee": "07044" - } - }, - { - "pk": 22876, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "BURZET", - "center": "POINT (750252.4882098392117769 1973730.4674826087430120)", - "surface": 38140000, - "canton": null, - "numero_insee": "07045" - } - }, - { - "pk": 8749, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CELLIER-DU-LUC", - "center": "POINT (724101.2921653361991048 1964799.3128929182421416)", - "surface": 14750000, - "canton": null, - "numero_insee": "07047" - } - }, - { - "pk": 6346, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHALENCON", - "center": "POINT (775548.8344709724187851 1988961.2305306592024863)", - "surface": 9580000, - "canton": null, - "numero_insee": "07048" - } - }, - { - "pk": 13606, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE CHAMBON", - "center": "POINT (755279.8671885946532711 1982882.5805146906059235)", - "surface": 10610000, - "canton": null, - "numero_insee": "07049" - } - }, - { - "pk": 15389, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHAMBONAS", - "center": "POINT (742750.4358426671242341 1937729.2251121497247368)", - "surface": 12170000, - "canton": null, - "numero_insee": "07050" - } - }, - { - "pk": 32302, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHAMPAGNE", - "center": "POINT (793085.4964898981852457 2033655.4790045430418104)", - "surface": 4030000, - "canton": null, - "numero_insee": "07051" - } - }, - { - "pk": 6347, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHAMPIS", - "center": "POINT (790587.9488988794619218 1997898.4565390592906624)", - "surface": 16740000, - "canton": null, - "numero_insee": "07052" - } - }, - { - "pk": 15386, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHANDOLAS", - "center": "POINT (751870.4614659387152642 1936505.3928164448589087)", - "surface": 11950000, - "canton": null, - "numero_insee": "07053" - } - }, - { - "pk": 5526, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHANEAC", - "center": "POINT (755584.8520327443256974 1994096.5928589943796396)", - "surface": 15830000, - "canton": null, - "numero_insee": "07054" - } - }, - { - "pk": 33112, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHARMES-SUR-RHONE", - "center": "POINT (797377.1699874767800793 1988246.5577009865082800)", - "surface": 5900000, - "canton": null, - "numero_insee": "07055" - } - }, - { - "pk": 36765, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHARNAS", - "center": "POINT (787719.1510486305924132 2040816.7551812003366649)", - "surface": 5420000, - "canton": null, - "numero_insee": "07056" - } - }, - { - "pk": 30093, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHASSIERS", - "center": "POINT (756230.0982254223199561 1953560.3578730176668614)", - "surface": 12420000, - "canton": null, - "numero_insee": "07058" - } - }, - { - "pk": 10799, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHATEAUNEUF-DE-VERNOUX", - "center": "POINT (782010.5957910181023180 1994221.6195112511049956)", - "surface": 6100000, - "canton": null, - "numero_insee": "07060" - } - }, - { - "pk": 24272, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHAUZON", - "center": "POINT (759803.3675990568008274 1945382.1718831697944552)", - "surface": 10770000, - "canton": null, - "numero_insee": "07061" - } - }, - { - "pk": 35593, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHAZEAUX", - "center": "POINT (755702.3569502681493759 1956759.2083273984026164)", - "surface": 4640000, - "canton": null, - "numero_insee": "07062" - } - }, - { - "pk": 32438, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHEMINAS", - "center": "POINT (789120.9984799850499257 2017305.4536438642535359)", - "surface": 9470000, - "canton": null, - "numero_insee": "07063" - } - }, - { - "pk": 3133, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE CHEYLARD", - "center": "POINT (764613.7948114715982229 1991771.0155276022851467)", - "surface": 13550000, - "canton": null, - "numero_insee": "07064" - } - }, - { - "pk": 34200, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHIROLS", - "center": "POINT (755313.4893989248666912 1967166.7055150030646473)", - "surface": 6890000, - "canton": null, - "numero_insee": "07065" - } - }, - { - "pk": 19394, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CHOMERAC", - "center": "POINT (784916.3709588680649176 1970422.0182720541488379)", - "surface": 19400000, - "canton": null, - "numero_insee": "07066" - } - }, - { - "pk": 37812, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "COLOMBIER-LE-CARDINAL", - "center": "POINT (788993.7102851135423407 2032219.1668257745914161)", - "surface": 2540000, - "canton": null, - "numero_insee": "07067" - } - }, - { - "pk": 17465, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "COLOMBIER-LE-JEUNE", - "center": "POINT (787533.0255913649452850 2003978.5515703090932220)", - "surface": 15130000, - "canton": null, - "numero_insee": "07068" - } - }, - { - "pk": 19300, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "COLOMBIER-LE-VIEUX", - "center": "POINT (786086.4515832292381674 2009271.5436824024654925)", - "surface": 15750000, - "canton": null, - "numero_insee": "07069" - } - }, - { - "pk": 30161, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CORNAS", - "center": "POINT (797583.4182810247875750 1999259.5016395691782236)", - "surface": 8570000, - "canton": null, - "numero_insee": "07070" - } - }, - { - "pk": 20552, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "COUCOURON", - "center": "POINT (728590.1641605020267889 1978451.4369783597066998)", - "surface": 24390000, - "canton": null, - "numero_insee": "07071" - } - }, - { - "pk": 5630, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "COUX", - "center": "POINT (781081.9903977890498936 1973993.0292143831029534)", - "surface": 12040000, - "canton": null, - "numero_insee": "07072" - } - }, - { - "pk": 3093, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE CRESTET", - "center": "POINT (781529.9720362591324374 2003627.0359492842108011)", - "surface": 10020000, - "canton": null, - "numero_insee": "07073" - } - }, - { - "pk": 36633, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CREYSSEILLES", - "center": "POINT (773660.3995239224750549 1975631.5094142430461943)", - "surface": 10240000, - "canton": null, - "numero_insee": "07074" - } - }, - { - "pk": 23011, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CROS-DE-GEORAND", - "center": "POINT (741697.5586160920793191 1979163.3876519680488855)", - "surface": 43820000, - "canton": null, - "numero_insee": "07075" - } - }, - { - "pk": 5722, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "CRUAS", - "center": "POINT (791972.6516002488788217 1964676.2242039418779314)", - "surface": 15740000, - "canton": null, - "numero_insee": "07076" - } - }, - { - "pk": 19830, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "DAVEZIEUX", - "center": "POINT (785700.9401543891290203 2030989.8811023090966046)", - "surface": 5720000, - "canton": null, - "numero_insee": "07078" - } - }, - { - "pk": 22918, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "DESAIGNES", - "center": "POINT (770638.5337249168660492 2001331.9671301590278745)", - "surface": 51490000, - "canton": null, - "numero_insee": "07079" - } - }, - { - "pk": 3278, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "DEVESSET", - "center": "POINT (761961.4398684006882831 2009366.2165453271009028)", - "surface": 29650000, - "canton": null, - "numero_insee": "07080" - } - }, - { - "pk": 5730, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "DOMPNAC", - "center": "POINT (740720.1245492172893137 1952827.8414062145166099)", - "surface": 16370000, - "canton": null, - "numero_insee": "07081" - } - }, - { - "pk": 21552, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "DORNAS", - "center": "POINT (759862.9406688933959231 1985424.1426216242834926)", - "surface": 17690000, - "canton": null, - "numero_insee": "07082" - } - }, - { - "pk": 5469, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "DUNIERE-SUR-EYRIEUX", - "center": "POINT (782997.6758181509794667 1984119.7409944017417729)", - "surface": 7770000, - "canton": null, - "numero_insee": "07083" - } - }, - { - "pk": 34424, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ECLASSAN", - "center": "POINT (789693.3613654820946977 2020613.6309066154062748)", - "surface": 16410000, - "canton": null, - "numero_insee": "07084" - } - }, - { - "pk": 35839, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "EMPURANY", - "center": "POINT (778111.4278995654312894 2005399.6983095440082252)", - "surface": 19300000, - "canton": null, - "numero_insee": "07085" - } - }, - { - "pk": 18193, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ETABLES", - "center": "POINT (789155.1694672635057941 2013301.7440132757183164)", - "surface": 15750000, - "canton": null, - "numero_insee": "07086" - } - }, - { - "pk": 26695, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "FABRAS", - "center": "POINT (754250.7531760726124048 1962652.9975712611339986)", - "surface": 7610000, - "canton": null, - "numero_insee": "07087" - } - }, - { - "pk": 18915, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "FAUGERES", - "center": "POINT (743501.0260032970691100 1943641.8259572915267199)", - "surface": 5820000, - "canton": null, - "numero_insee": "07088" - } - }, - { - "pk": 5871, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "FELINES", - "center": "POINT (787443.6498942481121048 2037911.5553074970375746)", - "surface": 14210000, - "canton": null, - "numero_insee": "07089" - } - }, - { - "pk": 18360, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "FLAVIAC", - "center": "POINT (783977.0840535622555763 1974918.6490793826524168)", - "surface": 12990000, - "canton": null, - "numero_insee": "07090" - } - }, - { - "pk": 10115, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "FONS", - "center": "POINT (759718.1667278235545382 1955391.9235524530522525)", - "surface": 4080000, - "canton": null, - "numero_insee": "07091" - } - }, - { - "pk": 5981, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "FREYSSENET", - "center": "POINT (775229.2354197318200022 1967736.7253317830618471)", - "surface": 9600000, - "canton": null, - "numero_insee": "07092" - } - }, - { - "pk": 35950, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GENESTELLE", - "center": "POINT (762273.3563383546425030 1972731.6265190893318504)", - "surface": 21480000, - "canton": null, - "numero_insee": "07093" - } - }, - { - "pk": 21877, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GILHAC-ET-BRUZAC", - "center": "POINT (790375.6626675771549344 1987586.1680720346048474)", - "surface": 30990000, - "canton": null, - "numero_insee": "07094" - } - }, - { - "pk": 23975, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GILHOC-SUR-ORMEZE", - "center": "POINT (784655.0755154765211046 2001051.0677706904243678)", - "surface": 21070000, - "canton": null, - "numero_insee": "07095" - } - }, - { - "pk": 23796, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GLUIRAS", - "center": "POINT (773078.8829835678916425 1985136.2990360709372908)", - "surface": 24580000, - "canton": null, - "numero_insee": "07096" - } - }, - { - "pk": 37732, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GLUN", - "center": "POINT (796143.6381140241865069 2003751.7541679015848786)", - "surface": 7480000, - "canton": null, - "numero_insee": "07097" - } - }, - { - "pk": 16814, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GRAS", - "center": "POINT (774959.9515260033076629 1940606.1032270339783281)", - "surface": 57460000, - "canton": null, - "numero_insee": "07099" - } - }, - { - "pk": 14956, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GRAVIERES", - "center": "POINT (738251.1089843178633600 1937090.3585001733154058)", - "surface": 18690000, - "canton": null, - "numero_insee": "07100" - } - }, - { - "pk": 7685, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GROSPIERRES", - "center": "POINT (755492.7454292111797258 1934333.8789064742159098)", - "surface": 27200000, - "canton": null, - "numero_insee": "07101" - } - }, - { - "pk": 4052, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "GUILHERAND-GRANGES", - "center": "POINT (799719.5924771816935390 1995273.6917326666880399)", - "surface": 6530000, - "canton": null, - "numero_insee": "07102" - } - }, - { - "pk": 16442, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "INTRES", - "center": "POINT (758333.8182771627325565 2000426.3693836559541523)", - "surface": 10300000, - "canton": null, - "numero_insee": "07103" - } - }, - { - "pk": 4186, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ISSAMOULENC", - "center": "POINT (767729.1764791756868362 1978584.0578996383119375)", - "surface": 15600000, - "canton": null, - "numero_insee": "07104" - } - }, - { - "pk": 20832, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ISSANLAS", - "center": "POINT (732920.6182529184734449 1975385.0209138346835971)", - "surface": 28600000, - "canton": null, - "numero_insee": "07105" - } - }, - { - "pk": 19354, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ISSARLES", - "center": "POINT (735742.6166270474204794 1984918.7279490279033780)", - "surface": 18850000, - "canton": null, - "numero_insee": "07106" - } - }, - { - "pk": 22612, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "JAUJAC", - "center": "POINT (750965.4441120836418122 1960522.8680017814040184)", - "surface": 24360000, - "canton": null, - "numero_insee": "07107" - } - }, - { - "pk": 29829, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "JAUNAC", - "center": "POINT (762300.5431345441611484 1993052.6392163308337331)", - "surface": 3890000, - "canton": null, - "numero_insee": "07108" - } - }, - { - "pk": 16846, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "JOANNAS", - "center": "POINT (751719.7609083601273596 1954222.7172909807413816)", - "surface": 12080000, - "canton": null, - "numero_insee": "07109" - } - }, - { - "pk": 33966, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "JUVINAS", - "center": "POINT (756199.0240373702254146 1968976.1028036528732628)", - "surface": 8470000, - "canton": null, - "numero_insee": "07111" - } - }, - { - "pk": 4938, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LABASTIDE-DE-VIRAC", - "center": "POINT (766139.0103086021263152 1930220.0460455634165555)", - "surface": 23110000, - "canton": null, - "numero_insee": "07113" - } - }, - { - "pk": 9130, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LABATIE-D'ANDAURE", - "center": "POINT (770099.6871019577374682 2005831.9142616386525333)", - "surface": 10110000, - "canton": null, - "numero_insee": "07114" - } - }, - { - "pk": 15612, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LABEAUME", - "center": "POINT (757122.8717188786249608 1942756.6229158332571387)", - "surface": 17810000, - "canton": null, - "numero_insee": "07115" - } - }, - { - "pk": 30707, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LABEGUDE", - "center": "POINT (760361.7583993406733498 1962104.3800974311307073)", - "surface": 3150000, - "canton": null, - "numero_insee": "07116" - } - }, - { - "pk": 5007, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LABLACHERE", - "center": "POINT (749423.8325107062701136 1941690.0746707168873399)", - "surface": 26650000, - "canton": null, - "numero_insee": "07117" - } - }, - { - "pk": 18296, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LACHAMP-RAPHAEL", - "center": "POINT (754406.2639244338497519 1979671.8681706644129008)", - "surface": 14140000, - "canton": null, - "numero_insee": "07120" - } - }, - { - "pk": 14726, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LACHAPELLE-GRAILLOUSE", - "center": "POINT (733078.3063300767680630 1980391.4938246109522879)", - "surface": 20730000, - "canton": null, - "numero_insee": "07121" - } - }, - { - "pk": 26231, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LACHAPELLE-SOUS-AUBENAS", - "center": "POINT (760737.0319577560294420 1953298.4023018884472549)", - "surface": 10180000, - "canton": null, - "numero_insee": "07122" - } - }, - { - "pk": 24758, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LACHAPELLE-SOUS-CHANEAC", - "center": "POINT (756463.5532588129863143 1996706.7075449179392308)", - "surface": 8960000, - "canton": null, - "numero_insee": "07123" - } - }, - { - "pk": 3549, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAFARRE", - "center": "POINT (771657.6806320822797716 2010950.3154536476358771)", - "surface": 11140000, - "canton": null, - "numero_insee": "07124" - } - }, - { - "pk": 32871, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAGORCE", - "center": "POINT (766853.6981775396270677 1940336.8284078908618540)", - "surface": 69220000, - "canton": null, - "numero_insee": "07126" - } - }, - { - "pk": 12744, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LALEVADE-D'ARDECHE", - "center": "POINT (756849.0058087303768843 1963175.6250066435895860)", - "surface": 2250000, - "canton": null, - "numero_insee": "07127" - } - }, - { - "pk": 5732, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LALOUVESC", - "center": "POINT (772222.4123672087443992 2015159.3345104730688035)", - "surface": 10700000, - "canton": null, - "numero_insee": "07128" - } - }, - { - "pk": 14778, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAMASTRE", - "center": "POINT (777752.8710041081067175 2000491.6960234781727195)", - "surface": 25710000, - "canton": null, - "numero_insee": "07129" - } - }, - { - "pk": 14476, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LANARCE", - "center": "POINT (731554.9769715820439160 1971169.0974902319721878)", - "surface": 22650000, - "canton": null, - "numero_insee": "07130" - } - }, - { - "pk": 25067, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LANAS", - "center": "POINT (762762.8404546683887020 1950512.7180502777919173)", - "surface": 10140000, - "canton": null, - "numero_insee": "07131" - } - }, - { - "pk": 32338, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LARNAS", - "center": "POINT (779855.3778055689763278 1941748.9952432936988771)", - "surface": 13920000, - "canton": null, - "numero_insee": "07133" - } - }, - { - "pk": 4587, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAURAC-EN-VIVARAIS", - "center": "POINT (755288.7427937294123694 1946545.0131602005567402)", - "surface": 9060000, - "canton": null, - "numero_insee": "07134" - } - }, - { - "pk": 19982, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAVAL-D'AURELLE", - "center": "POINT (730002.0637014864478260 1953637.7444443430285901)", - "surface": 8760000, - "canton": null, - "numero_insee": "07135" - } - }, - { - "pk": 31233, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAVEYRUNE", - "center": "POINT (725652.0092960108304396 1959006.4498077426105738)", - "surface": 13450000, - "canton": null, - "numero_insee": "07136" - } - }, - { - "pk": 21221, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAVILLATTE", - "center": "POINT (727940.4769676829455420 1972439.7510629631578922)", - "surface": 18870000, - "canton": null, - "numero_insee": "07137" - } - }, - { - "pk": 28517, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAVILLEDIEU", - "center": "POINT (767724.2332898026797920 1955660.3023974709212780)", - "surface": 14880000, - "canton": null, - "numero_insee": "07138" - } - }, - { - "pk": 32439, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LAVIOLLE", - "center": "POINT (758146.4241350287338719 1975399.2773803165182471)", - "surface": 14010000, - "canton": null, - "numero_insee": "07139" - } - }, - { - "pk": 14771, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LEMPS", - "center": "POINT (792254.6310144682647660 2013728.6015660502016544)", - "surface": 12300000, - "canton": null, - "numero_insee": "07140" - } - }, - { - "pk": 18515, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LESPERON", - "center": "POINT (723442.9583300084341317 1971600.7560174642130733)", - "surface": 25450000, - "canton": null, - "numero_insee": "07142" - } - }, - { - "pk": 30258, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LIMONY", - "center": "POINT (789110.1709215946029872 2042029.8042877477128059)", - "surface": 7420000, - "canton": null, - "numero_insee": "07143" - } - }, - { - "pk": 28789, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LOUBARESSE", - "center": "POINT (736189.3869437002576888 1955892.5848695191089064)", - "surface": 9120000, - "canton": null, - "numero_insee": "07144" - } - }, - { - "pk": 21951, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LUSSAS", - "center": "POINT (769089.7794548535021022 1959876.3128271533641964)", - "surface": 16530000, - "canton": null, - "numero_insee": "07145" - } - }, - { - "pk": 21635, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MALARCE-SUR-LA-THINES", - "center": "POINT (736396.6192743456922472 1943281.1435834304429591)", - "surface": 37700000, - "canton": null, - "numero_insee": "07147" - } - }, - { - "pk": 22193, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MALBOSC", - "center": "POINT (738419.2407182168681175 1929083.3073134419973940)", - "surface": 21470000, - "canton": null, - "numero_insee": "07148" - } - }, - { - "pk": 20728, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MARCOLS-LES-EAUX", - "center": "POINT (762407.9257806310197338 1980440.6908111942466348)", - "surface": 16040000, - "canton": null, - "numero_insee": "07149" - } - }, - { - "pk": 4822, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MARIAC", - "center": "POINT (759330.0892782658338547 1989223.4841646272689104)", - "surface": 16350000, - "canton": null, - "numero_insee": "07150" - } - }, - { - "pk": 15423, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MARS", - "center": "POINT (757010.4503413951024413 2003017.7309848845470697)", - "surface": 19400000, - "canton": null, - "numero_insee": "07151" - } - }, - { - "pk": 10044, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MAUVES", - "center": "POINT (795622.6562514338875189 2006149.7249060212634504)", - "surface": 7330000, - "canton": null, - "numero_insee": "07152" - } - }, - { - "pk": 3775, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MAYRES", - "center": "POINT (739923.3305633965646848 1964132.8369128948543221)", - "surface": 29770000, - "canton": null, - "numero_insee": "07153" - } - }, - { - "pk": 14949, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MAZAN-L'ABBAYE", - "center": "POINT (738264.8074550711316988 1970825.6764956153929234)", - "surface": 46150000, - "canton": null, - "numero_insee": "07154" - } - }, - { - "pk": 9501, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MERCUER", - "center": "POINT (759875.7596476062899455 1960398.4757099319249392)", - "surface": 7650000, - "canton": null, - "numero_insee": "07155" - } - }, - { - "pk": 16786, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MEYRAS", - "center": "POINT (752521.0117671778425574 1965941.7050724932923913)", - "surface": 12470000, - "canton": null, - "numero_insee": "07156" - } - }, - { - "pk": 17195, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MEZILHAC", - "center": "POINT (758604.3046360878506675 1980408.3110669769812375)", - "surface": 26680000, - "canton": null, - "numero_insee": "07158" - } - }, - { - "pk": 17498, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MIRABEL", - "center": "POINT (771514.2783011186402291 1957294.2599262536969036)", - "surface": 20060000, - "canton": null, - "numero_insee": "07159" - } - }, - { - "pk": 26377, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MONESTIER", - "center": "POINT (770341.4253014067653567 2024452.5727130314335227)", - "surface": 7420000, - "canton": null, - "numero_insee": "07160" - } - }, - { - "pk": 16571, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MONTPEZAT-SOUS-BAUZON", - "center": "POINT (747380.3508218517526984 1970102.3291413052938879)", - "surface": 27230000, - "canton": null, - "numero_insee": "07161" - } - }, - { - "pk": 15734, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MONTREAL", - "center": "POINT (755674.6549904509447515 1948250.0813712133094668)", - "surface": 6140000, - "canton": null, - "numero_insee": "07162" - } - }, - { - "pk": 20954, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "MONTSELGUES", - "center": "POINT (732541.0448193317279220 1949354.8036160508636385)", - "surface": 36540000, - "canton": null, - "numero_insee": "07163" - } - }, - { - "pk": 21569, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "NONIERES", - "center": "POINT (768998.3378004361875355 1994110.6997106736525893)", - "surface": 9240000, - "canton": null, - "numero_insee": "07165" - } - }, - { - "pk": 35951, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "NOZIERES", - "center": "POINT (774101.7175644749077037 2006066.2207622954156250)", - "surface": 21820000, - "canton": null, - "numero_insee": "07166" - } - }, - { - "pk": 10871, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ORGNAC-L'AVEN", - "center": "POINT (766580.3255195997189730 1925418.6949458639137447)", - "surface": 21680000, - "canton": null, - "numero_insee": "07168" - } - }, - { - "pk": 32978, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "OZON", - "center": "POINT (793393.3597275845240802 2021045.6153496021870524)", - "surface": 8290000, - "canton": null, - "numero_insee": "07169" - } - }, - { - "pk": 36634, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PAILHARES", - "center": "POINT (774858.9514769009547308 2011177.8002375864889473)", - "surface": 19850000, - "canton": null, - "numero_insee": "07170" - } - }, - { - "pk": 17157, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PAYZAC", - "center": "POINT (744324.7832078798674047 1940945.9839889658614993)", - "surface": 13200000, - "canton": null, - "numero_insee": "07171" - } - }, - { - "pk": 26822, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PEAUGRES", - "center": "POINT (787572.7833568379282951 2034509.3094790931791067)", - "surface": 14310000, - "canton": null, - "numero_insee": "07172" - } - }, - { - "pk": 24947, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PEREYRES", - "center": "POINT (752324.6974865845404565 1977251.6948729013092816)", - "surface": 12620000, - "canton": null, - "numero_insee": "07173" - } - }, - { - "pk": 24836, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PEYRAUD", - "center": "POINT (791865.6007989476202056 2035847.2328174344729632)", - "surface": 6020000, - "canton": null, - "numero_insee": "07174" - } - }, - { - "pk": 34409, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE PLAGNAL", - "center": "POINT (727985.5098438042914495 1967134.6603027137462050)", - "surface": 15550000, - "canton": null, - "numero_insee": "07175" - } - }, - { - "pk": 27546, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PLANZOLLES", - "center": "POINT (744895.5906891245394945 1944454.5216570340562612)", - "surface": 5340000, - "canton": null, - "numero_insee": "07176" - } - }, - { - "pk": 16889, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PLATS", - "center": "POINT (792632.6711618296103552 2004622.6836717738769948)", - "surface": 16470000, - "canton": null, - "numero_insee": "07177" - } - }, - { - "pk": 4201, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PONT-DE-LABEAUME", - "center": "POINT (755534.9747666569892317 1964665.9998165233992040)", - "surface": 4770000, - "canton": null, - "numero_insee": "07178" - } - }, - { - "pk": 25888, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "POURCHERES", - "center": "POINT (771678.9562833113595843 1973212.1514295812230557)", - "surface": 7860000, - "canton": null, - "numero_insee": "07179" - } - }, - { - "pk": 24162, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE POUZIN", - "center": "POINT (790982.0768039680551738 1975178.6268735623452812)", - "surface": 11100000, - "canton": null, - "numero_insee": "07181" - } - }, - { - "pk": 28760, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PRADES", - "center": "POINT (756667.5521164224483073 1960971.7951048545073718)", - "surface": 9920000, - "canton": null, - "numero_insee": "07182" - } - }, - { - "pk": 26869, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PRADONS", - "center": "POINT (762322.8585099285701290 1943401.5151179190725088)", - "surface": 8070000, - "canton": null, - "numero_insee": "07183" - } - }, - { - "pk": 16624, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PRANLES", - "center": "POINT (777243.3634541312931105 1978064.5185917958151549)", - "surface": 29070000, - "canton": null, - "numero_insee": "07184" - } - }, - { - "pk": 18950, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PREAUX", - "center": "POINT (782210.3412237972952425 2017746.9891831094864756)", - "surface": 22760000, - "canton": null, - "numero_insee": "07185" - } - }, - { - "pk": 20602, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PRIVAS", - "center": "POINT (778900.3657221023458987 1971571.9502116893418133)", - "surface": 12040000, - "canton": null, - "numero_insee": "07186" - } - }, - { - "pk": 13008, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "PRUNET", - "center": "POINT (752299.0576380975544453 1956730.2542539224959910)", - "surface": 8890000, - "canton": null, - "numero_insee": "07187" - } - }, - { - "pk": 3132, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "QUINTENAS", - "center": "POINT (785360.3545326770981774 2023980.0371758199762553)", - "surface": 14210000, - "canton": null, - "numero_insee": "07188" - } - }, - { - "pk": 13617, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "RIBES", - "center": "POINT (748081.7018200180027634 1946483.7117420402355492)", - "surface": 6920000, - "canton": null, - "numero_insee": "07189" - } - }, - { - "pk": 16935, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROCHEMAURE", - "center": "POINT (787132.8302587574580684 1957027.0117559581995010)", - "surface": 25040000, - "canton": null, - "numero_insee": "07191" - } - }, - { - "pk": 22672, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROCHEPAULE", - "center": "POINT (767147.5255765712354332 2011612.5906396636273712)", - "surface": 33560000, - "canton": null, - "numero_insee": "07192" - } - }, - { - "pk": 36092, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROCHER", - "center": "POINT (754314.6242006014799699 1955145.7314233719371259)", - "surface": 3130000, - "canton": null, - "numero_insee": "07193" - } - }, - { - "pk": 5203, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROCHESSAUVE", - "center": "POINT (780340.9727517401333898 1966979.4765009500551969)", - "surface": 17420000, - "canton": null, - "numero_insee": "07194" - } - }, - { - "pk": 6066, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LA ROCHETTE", - "center": "POINT (749588.5600812066113576 1992944.4638759032823145)", - "surface": 14120000, - "canton": null, - "numero_insee": "07195" - } - }, - { - "pk": 4898, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROCLES", - "center": "POINT (748721.9514386320952326 1953596.5945664239116013)", - "surface": 16710000, - "canton": null, - "numero_insee": "07196" - } - }, - { - "pk": 17344, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROIFFIEUX", - "center": "POINT (781632.1892420806689188 2026851.1113863391801715)", - "surface": 19470000, - "canton": null, - "numero_insee": "07197" - } - }, - { - "pk": 21008, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROMPON", - "center": "POINT (789455.0137554830871522 1978168.6808434326667339)", - "surface": 22320000, - "canton": null, - "numero_insee": "07198" - } - }, - { - "pk": 26847, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "ROSIERES", - "center": "POINT (753196.9073834936134517 1945325.9555635536089540)", - "surface": 16400000, - "canton": null, - "numero_insee": "07199" - } - }, - { - "pk": 23554, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE ROUX", - "center": "POINT (743172.9138000779785216 1970466.9729783125221729)", - "surface": 16590000, - "canton": null, - "numero_insee": "07200" - } - }, - { - "pk": 16854, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "RUOMS", - "center": "POINT (760144.5585472560487688 1940580.0208974324632436)", - "surface": 12390000, - "canton": null, - "numero_insee": "07201" - } - }, - { - "pk": 3281, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SABLIERES", - "center": "POINT (737234.5758388018002734 1950696.0294717103242874)", - "surface": 38380000, - "canton": null, - "numero_insee": "07202" - } - }, - { - "pk": 4937, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAGNES-ET-GOUDOULET", - "center": "POINT (748700.8294932532589883 1979623.3364425566978753)", - "surface": 24960000, - "canton": null, - "numero_insee": "07203" - } - }, - { - "pk": 21030, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-AGREVE", - "center": "POINT (763214.5496581083862111 2003270.7481480417773128)", - "surface": 48310000, - "canton": null, - "numero_insee": "07204" - } - }, - { - "pk": 33736, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ALBAN-D'AY", - "center": "POINT (780361.7257882656995207 2023236.7014590858016163)", - "surface": 23600000, - "canton": null, - "numero_insee": "07205" - } - }, - { - "pk": 22180, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ALBAN-EN-MONTAGNE", - "center": "POINT (725367.7167365567293018 1968914.3024853109382093)", - "surface": 14020000, - "canton": null, - "numero_insee": "07206" - } - }, - { - "pk": 21365, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ALBAN-AURIOLLES", - "center": "POINT (755954.0600437654647976 1938942.6695685645099729)", - "surface": 17390000, - "canton": null, - "numero_insee": "07207" - } - }, - { - "pk": 3149, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ANDEOL-DE-BERG", - "center": "POINT (774878.9050630219280720 1950115.4043134064413607)", - "surface": 15740000, - "canton": null, - "numero_insee": "07208" - } - }, - { - "pk": 16524, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ANDEOL-DE-FOURCHADES", - "center": "POINT (754264.4382621297845617 1984575.6794915879145265)", - "surface": 16500000, - "canton": null, - "numero_insee": "07209" - } - }, - { - "pk": 20267, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ANDEOL-DE-VALS", - "center": "POINT (763616.3660541822900996 1967837.9995571090839803)", - "surface": 16650000, - "canton": null, - "numero_insee": "07210" - } - }, - { - "pk": 21242, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ANDRE-DE-CRUZIERES", - "center": "POINT (749761.9310606763465330 1925475.7806105185300112)", - "surface": 20310000, - "canton": null, - "numero_insee": "07211" - } - }, - { - "pk": 18643, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ANDRE-EN-VIVARAIS", - "center": "POINT (762714.4560863982187584 2014978.2392227402888238)", - "surface": 20580000, - "canton": null, - "numero_insee": "07212" - } - }, - { - "pk": 16584, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ANDRE-LACHAMP", - "center": "POINT (744375.5310120843350887 1946752.5178526570089161)", - "surface": 16720000, - "canton": null, - "numero_insee": "07213" - } - }, - { - "pk": 13089, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-APOLLINAIRE-DE-RIAS", - "center": "POINT (778011.9444600314600393 1993586.9110399405471981)", - "surface": 8540000, - "canton": null, - "numero_insee": "07214" - } - }, - { - "pk": 6235, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-BARTHELEMY-LE-MEIL", - "center": "POINT (769238.6060559169854969 1989407.9653673316352069)", - "surface": 7400000, - "canton": null, - "numero_insee": "07215" - } - }, - { - "pk": 30877, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-BARTHELEMY-GROZON", - "center": "POINT (782478.6247161175124347 1998029.4661878687329590)", - "surface": 19770000, - "canton": null, - "numero_insee": "07216" - } - }, - { - "pk": 17467, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-BARTHELEMY-LE-PLAIN", - "center": "POINT (789602.5275331330485642 2007800.0409104784484953)", - "surface": 19040000, - "canton": null, - "numero_insee": "07217" - } - }, - { - "pk": 22314, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-BASILE", - "center": "POINT (775583.2299925732659176 1996669.3521661034319550)", - "surface": 18230000, - "canton": null, - "numero_insee": "07218" - } - }, - { - "pk": 7494, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-BAUZILE", - "center": "POINT (784952.2344340831041336 1966217.9768530873116106)", - "surface": 7060000, - "canton": null, - "numero_insee": "07219" - } - }, - { - "pk": 23532, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CHRISTOL", - "center": "POINT (766050.9230388829018921 1987578.9762514515314251)", - "surface": 14750000, - "canton": null, - "numero_insee": "07220" - } - }, - { - "pk": 28092, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CIERGE-LA-SERRE", - "center": "POINT (785437.5307215454522520 1979736.0441389228217304)", - "surface": 15880000, - "canton": null, - "numero_insee": "07221" - } - }, - { - "pk": 33344, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CIERGE-SOUS-LE-CHEYLARD", - "center": "POINT (767098.2515545114874840 1993894.3102930129971355)", - "surface": 6050000, - "canton": null, - "numero_insee": "07222" - } - }, - { - "pk": 31059, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CIRGUES-DE-PRADES", - "center": "POINT (753776.6690732828574255 1959545.7412990601733327)", - "surface": 3470000, - "canton": null, - "numero_insee": "07223" - } - }, - { - "pk": 16574, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CIRGUES-EN-MONTAGNE", - "center": "POINT (738724.4644042520085350 1975634.5274797747842968)", - "surface": 21970000, - "canton": null, - "numero_insee": "07224" - } - }, - { - "pk": 9644, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CLAIR", - "center": "POINT (784380.1091034759301692 2033280.8831705013290048)", - "surface": 5930000, - "canton": null, - "numero_insee": "07225" - } - }, - { - "pk": 16883, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CLEMENT", - "center": "POINT (751763.3889052605954930 1996166.2098711247090250)", - "surface": 19730000, - "canton": null, - "numero_insee": "07226" - } - }, - { - "pk": 26580, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-CYR", - "center": "POINT (788408.5378299087751657 2030412.3934216010384262)", - "surface": 8320000, - "canton": null, - "numero_insee": "07227" - } - }, - { - "pk": 25212, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-DESIRAT", - "center": "POINT (791701.3071045188698918 2031641.6863627138081938)", - "surface": 7400000, - "canton": null, - "numero_insee": "07228" - } - }, - { - "pk": 24098, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-DIDIER-SOUS-AUBENAS", - "center": "POINT (765393.8688924688613042 1958943.8959352215752006)", - "surface": 2730000, - "canton": null, - "numero_insee": "07229" - } - }, - { - "pk": 3772, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ETIENNE-DE-BOULOGNE", - "center": "POINT (769313.3238559945020825 1968887.5554709159769118)", - "surface": 15110000, - "canton": null, - "numero_insee": "07230" - } - }, - { - "pk": 4239, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ETIENNE-DE-FONTBELLON", - "center": "POINT (761804.0156073546968400 1957311.6619014167226851)", - "surface": 9620000, - "canton": null, - "numero_insee": "07231" - } - }, - { - "pk": 17732, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ETIENNE-DE-LUGDARES", - "center": "POINT (729830.5825585528509691 1962045.0373598267324269)", - "surface": 50690000, - "canton": null, - "numero_insee": "07232" - } - }, - { - "pk": 25143, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ETIENNE-DE-SERRE", - "center": "POINT (773020.5863970261998475 1980230.7839666658546776)", - "surface": 16650000, - "canton": null, - "numero_insee": "07233" - } - }, - { - "pk": 30811, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ETIENNE-DE-VALOUX", - "center": "POINT (791616.5962775469524786 2029839.1832140879705548)", - "surface": 2350000, - "canton": null, - "numero_insee": "07234" - } - }, - { - "pk": 3192, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINTE-EULALIE", - "center": "POINT (746273.8610539160436019 1982505.6710148821584880)", - "surface": 22230000, - "canton": null, - "numero_insee": "07235" - } - }, - { - "pk": 17196, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-FELICIEN", - "center": "POINT (778964.4726005315314978 2011012.6018071519210935)", - "surface": 21520000, - "canton": null, - "numero_insee": "07236" - } - }, - { - "pk": 12904, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-FORTUNAT-SUR-EYRIEUX", - "center": "POINT (785998.8193228248273954 1984345.5475743082351983)", - "surface": 23130000, - "canton": null, - "numero_insee": "07237" - } - }, - { - "pk": 11871, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-GENEST-DE-BEAUZON", - "center": "POINT (747337.0909527394687757 1939870.4324976175557822)", - "surface": 5300000, - "canton": null, - "numero_insee": "07238" - } - }, - { - "pk": 21391, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-GENEST-LACHAMP", - "center": "POINT (765073.8437685563694686 1984767.7949421706143767)", - "surface": 23160000, - "canton": null, - "numero_insee": "07239" - } - }, - { - "pk": 37578, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-GEORGES-LES-BAINS", - "center": "POINT (795483.0618137666024268 1987329.4638061369769275)", - "surface": 14030000, - "canton": null, - "numero_insee": "07240" - } - }, - { - "pk": 33848, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-GERMAIN", - "center": "POINT (767851.6139231196139008 1952458.0428346865810454)", - "surface": 9750000, - "canton": null, - "numero_insee": "07241" - } - }, - { - "pk": 15748, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-GINEIS-EN-COIRON", - "center": "POINT (774780.7953452710062265 1961626.5743156243115664)", - "surface": 13560000, - "canton": null, - "numero_insee": "07242" - } - }, - { - "pk": 11641, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JACQUES-D'ATTICIEUX", - "center": "POINT (782325.3457765777129680 2039469.4575006333179772)", - "surface": 4970000, - "canton": null, - "numero_insee": "07243" - } - }, - { - "pk": 10606, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JEAN-DE-MUZOLS", - "center": "POINT (793973.3022703353781253 2011741.2704351022839546)", - "surface": 10890000, - "canton": null, - "numero_insee": "07245" - } - }, - { - "pk": 20284, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JEAN-LE-CENTENIER", - "center": "POINT (774825.1581147027900442 1956421.5356434076093137)", - "surface": 15040000, - "canton": null, - "numero_insee": "07247" - } - }, - { - "pk": 18949, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JEAN-ROURE", - "center": "POINT (764268.3344374500447884 1997073.4541438305750489)", - "surface": 23980000, - "canton": null, - "numero_insee": "07248" - } - }, - { - "pk": 16440, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JEURE-D'ANDAURE", - "center": "POINT (767582.8565218085423112 2007512.1825501660350710)", - "surface": 13420000, - "canton": null, - "numero_insee": "07249" - } - }, - { - "pk": 36874, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JEURE-D'AY", - "center": "POINT (786705.9648952799616382 2018786.3411616957746446)", - "surface": 7050000, - "canton": null, - "numero_insee": "07250" - } - }, - { - "pk": 21767, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JOSEPH-DES-BANCS", - "center": "POINT (764564.4801700689131394 1974052.4752212625462562)", - "surface": 12970000, - "canton": null, - "numero_insee": "07251" - } - }, - { - "pk": 35474, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JULIEN-BOUTIERES", - "center": "POINT (758551.0453854389488697 1998426.1956799440085888)", - "surface": 10950000, - "canton": null, - "numero_insee": "07252" - } - }, - { - "pk": 4119, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JULIEN-DU-GUA", - "center": "POINT (766544.2295254049822688 1976672.0121521481778473)", - "surface": 16960000, - "canton": null, - "numero_insee": "07253" - } - }, - { - "pk": 19751, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JULIEN-DU-SERRE", - "center": "POINT (763947.3388134500710294 1964237.0873876214027405)", - "surface": 9730000, - "canton": null, - "numero_insee": "07254" - } - }, - { - "pk": 22364, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JULIEN-EN-SAINT-ALBAN", - "center": "POINT (786571.8868974979268387 1975841.7125163029413670)", - "surface": 10400000, - "canton": null, - "numero_insee": "07255" - } - }, - { - "pk": 5222, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JULIEN-LE-ROUX", - "center": "POINT (784867.0330105735920370 1987939.5706218834966421)", - "surface": 8580000, - "canton": null, - "numero_insee": "07257" - } - }, - { - "pk": 27868, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JULIEN-VOCANCE", - "center": "POINT (769071.7820376645540819 2020738.0755950065795332)", - "surface": 25840000, - "canton": null, - "numero_insee": "07258" - } - }, - { - "pk": 24094, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-JUST-D'ARDECHE", - "center": "POINT (782709.9821905653225258 1923954.4488762728869915)", - "surface": 10350000, - "canton": null, - "numero_insee": "07259" - } - }, - { - "pk": 37652, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-LAGER-BRESSAC", - "center": "POINT (788637.0088189881062135 1968451.6944999855477363)", - "surface": 16000000, - "canton": null, - "numero_insee": "07260" - } - }, - { - "pk": 22539, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-LAURENT-DU-PAPE", - "center": "POINT (790513.3479781609494239 1983182.8438034879509360)", - "surface": 20420000, - "canton": null, - "numero_insee": "07261" - } - }, - { - "pk": 18913, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-LAURENT-LES-BAINS", - "center": "POINT (728777.1044141963357106 1956430.2672343226149678)", - "surface": 26760000, - "canton": null, - "numero_insee": "07262" - } - }, - { - "pk": 4862, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-LAURENT-SOUS-COIRON", - "center": "POINT (770348.3978389041731134 1964892.2308186441659927)", - "surface": 15680000, - "canton": null, - "numero_insee": "07263" - } - }, - { - "pk": 22744, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MARCEL-D'ARDECHE", - "center": "POINT (781174.3476055370410904 1927945.6184955737553537)", - "surface": 36170000, - "canton": null, - "numero_insee": "07264" - } - }, - { - "pk": 4562, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MARCEL-LES-ANNONAY", - "center": "POINT (779864.8997486686566845 2034543.6505655068904161)", - "surface": 16990000, - "canton": null, - "numero_insee": "07265" - } - }, - { - "pk": 36995, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MARTIAL", - "center": "POINT (751345.5068309712223709 1986452.7883131238631904)", - "surface": 36230000, - "canton": null, - "numero_insee": "07267" - } - }, - { - "pk": 35850, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MARTIN-D'ARDECHE", - "center": "POINT (778493.8566846700850874 1925319.9935719463974237)", - "surface": 5680000, - "canton": null, - "numero_insee": "07268" - } - }, - { - "pk": 22538, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MARTIN-DE-VALAMAS", - "center": "POINT (760582.7487602302571759 1994939.9435826642438769)", - "surface": 20060000, - "canton": null, - "numero_insee": "07269" - } - }, - { - "pk": 16348, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MARTIN-SUR-LAVEZON", - "center": "POINT (784087.2275713627459481 1962006.2376877216156572)", - "surface": 23580000, - "canton": null, - "numero_insee": "07270" - } - }, - { - "pk": 31916, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MAURICE-D'ARDECHE", - "center": "POINT (764481.5452182973967865 1948525.2553170677274466)", - "surface": 5300000, - "canton": null, - "numero_insee": "07272" - } - }, - { - "pk": 15678, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MAURICE-D'IBIE", - "center": "POINT (770720.0069262637989596 1944774.3989641326479614)", - "surface": 23540000, - "canton": null, - "numero_insee": "07273" - } - }, - { - "pk": 13982, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MAURICE-EN-CHALENCON", - "center": "POINT (777573.7691396062728018 1986275.7373884068801999)", - "surface": 7720000, - "canton": null, - "numero_insee": "07274" - } - }, - { - "pk": 15972, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MELANY", - "center": "POINT (742543.9954138213070109 1950240.6207540829200298)", - "surface": 10600000, - "canton": null, - "numero_insee": "07275" - } - }, - { - "pk": 15427, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MICHEL-D'AURANCE", - "center": "POINT (767424.1132297649746761 1990894.0356770176440477)", - "surface": 8000000, - "canton": null, - "numero_insee": "07276" - } - }, - { - "pk": 23311, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MICHEL-DE-BOULOGNE", - "center": "POINT (766111.9518093435326591 1968660.0793502454180270)", - "surface": 7430000, - "canton": null, - "numero_insee": "07277" - } - }, - { - "pk": 15617, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MICHEL-DE-CHABRILLANOUX", - "center": "POINT (779892.1687264670617878 1984393.5627571081276983)", - "surface": 11720000, - "canton": null, - "numero_insee": "07278" - } - }, - { - "pk": 22836, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-MONTAN", - "center": "POINT (782876.2508452286710963 1939672.5395113818813115)", - "surface": 33650000, - "canton": null, - "numero_insee": "07279" - } - }, - { - "pk": 16383, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PERAY", - "center": "POINT (796406.2249797062249854 1996446.6101901947986335)", - "surface": 23750000, - "canton": null, - "numero_insee": "07281" - } - }, - { - "pk": 25412, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PIERRE-DE-COLOMBIER", - "center": "POINT (752990.8385158395394683 1969549.4267643112689257)", - "surface": 9450000, - "canton": null, - "numero_insee": "07282" - } - }, - { - "pk": 6415, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PIERRE-LA-ROCHE", - "center": "POINT (781266.5944510940462351 1964084.3624299743678421)", - "surface": 9950000, - "canton": null, - "numero_insee": "07283" - } - }, - { - "pk": 17158, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PIERRE-SAINT-JEAN", - "center": "POINT (740495.5344273067312315 1943916.5991676808334887)", - "surface": 23780000, - "canton": null, - "numero_insee": "07284" - } - }, - { - "pk": 15205, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PIERRE-SUR-DOUX", - "center": "POINT (769007.5063525881851092 2016533.3393330841790885)", - "surface": 21570000, - "canton": null, - "numero_insee": "07285" - } - }, - { - "pk": 22120, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PIERREVILLE", - "center": "POINT (769601.1427298701601103 1982103.5951667712070048)", - "surface": 20520000, - "canton": null, - "numero_insee": "07286" - } - }, - { - "pk": 15751, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PONS", - "center": "POINT (777516.6862341343658045 1957745.8343697541859001)", - "surface": 16640000, - "canton": null, - "numero_insee": "07287" - } - }, - { - "pk": 19490, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PRIEST", - "center": "POINT (774305.3352533216821030 1970431.6432099037338048)", - "surface": 19800000, - "canton": null, - "numero_insee": "07288" - } - }, - { - "pk": 7750, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PRIVAT", - "center": "POINT (765578.7185685805743560 1960747.3436700091697276)", - "surface": 6180000, - "canton": null, - "numero_insee": "07289" - } - }, - { - "pk": 13703, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-PRIX", - "center": "POINT (770781.2716199640417472 1996328.1229430506937206)", - "surface": 15160000, - "canton": null, - "numero_insee": "07290" - } - }, - { - "pk": 36521, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-REMEZE", - "center": "POINT (772221.1685575644951314 1933074.8289883795659989)", - "surface": 43560000, - "canton": null, - "numero_insee": "07291" - } - }, - { - "pk": 18025, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ROMAIN-D'AY", - "center": "POINT (784284.1053506417665631 2021067.9699050581548363)", - "surface": 9490000, - "canton": null, - "numero_insee": "07292" - } - }, - { - "pk": 16012, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-ROMAIN-DE-LERPS", - "center": "POINT (793971.4901652907719836 2000229.6699340466875583)", - "surface": 14250000, - "canton": null, - "numero_insee": "07293" - } - }, - { - "pk": 23904, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-SAUVEUR-DE-CRUZIERES", - "center": "POINT (753383.3889748953515664 1923404.3423989885486662)", - "surface": 25150000, - "canton": null, - "numero_insee": "07294" - } - }, - { - "pk": 18751, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-SAUVEUR-DE-MONTAGUT", - "center": "POINT (776906.3844076588284224 1982366.0578910708427429)", - "surface": 11700000, - "canton": null, - "numero_insee": "07295" - } - }, - { - "pk": 30399, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-SERNIN", - "center": "POINT (762525.1478965046117082 1954915.2969287091400474)", - "surface": 5790000, - "canton": null, - "numero_insee": "07296" - } - }, - { - "pk": 28851, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-SYLVESTRE", - "center": "POINT (790357.0044914138270542 2001500.1284104867372662)", - "surface": 15280000, - "canton": null, - "numero_insee": "07297" - } - }, - { - "pk": 34981, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-SYMPHORIEN-SOUS-CHOMERAC", - "center": "POINT (787701.1247002918971702 1972547.9460630589164793)", - "surface": 7980000, - "canton": null, - "numero_insee": "07298" - } - }, - { - "pk": 24375, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-SYMPHORIEN-DE-MAHUN", - "center": "POINT (773985.6897156613413244 2019678.8551828346680850)", - "surface": 19520000, - "canton": null, - "numero_insee": "07299" - } - }, - { - "pk": 22693, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-THOME", - "center": "POINT (781611.0498188167111948 1947169.6500559772830456)", - "surface": 19780000, - "canton": null, - "numero_insee": "07300" - } - }, - { - "pk": 22967, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-VICTOR", - "center": "POINT (785047.9452740210108459 2013667.0965872476808727)", - "surface": 32020000, - "canton": null, - "numero_insee": "07301" - } - }, - { - "pk": 7214, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-VINCENT-DE-BARRES", - "center": "POINT (788068.8880881413351744 1964642.9079478494822979)", - "surface": 18710000, - "canton": null, - "numero_insee": "07302" - } - }, - { - "pk": 21390, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAINT-VINCENT-DE-DURFORT", - "center": "POINT (782136.9444223491009325 1979407.5817949397023767)", - "surface": 12830000, - "canton": null, - "numero_insee": "07303" - } - }, - { - "pk": 26019, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SALAVAS", - "center": "POINT (761902.4704612325876951 1933988.0064172353595495)", - "surface": 17180000, - "canton": null, - "numero_insee": "07304" - } - }, - { - "pk": 32196, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LES SALELLES", - "center": "POINT (740338.7173233081120998 1938809.8917445247061551)", - "surface": 5610000, - "canton": null, - "numero_insee": "07305" - } - }, - { - "pk": 30064, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAMPZON", - "center": "POINT (758977.4571444605244324 1936565.8616311533842236)", - "surface": 8390000, - "canton": null, - "numero_insee": "07306" - } - }, - { - "pk": 4022, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SANILHAC", - "center": "POINT (750757.0991873994935304 1949709.8208902641199529)", - "surface": 21030000, - "canton": null, - "numero_insee": "07307" - } - }, - { - "pk": 30021, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SARRAS", - "center": "POINT (792370.2188470885157585 2023639.4674607946071774)", - "surface": 11460000, - "canton": null, - "numero_insee": "07308" - } - }, - { - "pk": 4871, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SATILLIEU", - "center": "POINT (777002.1154466996667907 2018102.9737930183764547)", - "surface": 33410000, - "canton": null, - "numero_insee": "07309" - } - }, - { - "pk": 20132, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SAVAS", - "center": "POINT (783155.1044199697207659 2036073.1923443817067891)", - "surface": 12540000, - "canton": null, - "numero_insee": "07310" - } - }, - { - "pk": 32974, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SCEAUTRES", - "center": "POINT (780301.4778032005997375 1959871.7657982024829835)", - "surface": 14620000, - "canton": null, - "numero_insee": "07311" - } - }, - { - "pk": 29493, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SECHERAS", - "center": "POINT (791924.4454992746468633 2017229.2837109032552689)", - "surface": 7360000, - "canton": null, - "numero_insee": "07312" - } - }, - { - "pk": 10864, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SERRIERES", - "center": "POINT (790247.9080372718162835 2037735.2932375026866794)", - "surface": 4060000, - "canton": null, - "numero_insee": "07313" - } - }, - { - "pk": 14775, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SILHAC", - "center": "POINT (779957.2681732214987278 1988498.3061318027321249)", - "surface": 22770000, - "canton": null, - "numero_insee": "07314" - } - }, - { - "pk": 9641, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "SOYONS", - "center": "POINT (798654.4635276724584401 1991060.3218988892622292)", - "surface": 7990000, - "canton": null, - "numero_insee": "07316" - } - }, - { - "pk": 9822, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "TALENCIEUX", - "center": "POINT (791438.6290811038343236 2027235.0885911611840129)", - "surface": 7240000, - "canton": null, - "numero_insee": "07317" - } - }, - { - "pk": 25490, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "TAURIERS", - "center": "POINT (753941.4861856518546119 1951939.2121567698195577)", - "surface": 4500000, - "canton": null, - "numero_insee": "07318" - } - }, - { - "pk": 21775, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LE TEIL", - "center": "POINT (785075.1938198736170307 1951804.0214381101541221)", - "surface": 26660000, - "canton": null, - "numero_insee": "07319" - } - }, - { - "pk": 21195, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "THORRENC", - "center": "POINT (790223.8568539361003786 2028826.3042400667909533)", - "surface": 3760000, - "canton": null, - "numero_insee": "07321" - } - }, - { - "pk": 5973, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "THUEYTS", - "center": "POINT (748720.7550671367207542 1965508.9682759712450206)", - "surface": 21420000, - "canton": null, - "numero_insee": "07322" - } - }, - { - "pk": 22977, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "TOULAUD", - "center": "POINT (793941.4734801460290328 1992021.0929092301521450)", - "surface": 35280000, - "canton": null, - "numero_insee": "07323" - } - }, - { - "pk": 19299, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "TOURNON-SUR-RHONE", - "center": "POINT (795198.3505108323879540 2008948.9191813871730119)", - "surface": 21380000, - "canton": null, - "numero_insee": "07324" - } - }, - { - "pk": 9990, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "UCEL", - "center": "POINT (762763.2257612065877765 1962224.9284748644568026)", - "surface": 5600000, - "canton": null, - "numero_insee": "07325" - } - }, - { - "pk": 4087, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "USCLADES-ET-RIEUTORD", - "center": "POINT (745127.1806972152553499 1976089.3557825945317745)", - "surface": 12520000, - "canton": null, - "numero_insee": "07326" - } - }, - { - "pk": 35849, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "UZER", - "center": "POINT (758277.1943622862454504 1948272.2281902928370982)", - "surface": 3500000, - "canton": null, - "numero_insee": "07327" - } - }, - { - "pk": 4360, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VAGNAS", - "center": "POINT (760128.8098770113429055 1930669.4069569639395922)", - "surface": 23830000, - "canton": null, - "numero_insee": "07328" - } - }, - { - "pk": 20359, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VALGORGE", - "center": "POINT (741090.7415539027424529 1956334.6454548358451575)", - "surface": 26420000, - "canton": null, - "numero_insee": "07329" - } - }, - { - "pk": 33494, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VALLON-PONT-D'ARC", - "center": "POINT (764893.4990842298138887 1935414.9556492799893022)", - "surface": 29130000, - "canton": null, - "numero_insee": "07330" - } - }, - { - "pk": 36309, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VALS-LES-BAINS", - "center": "POINT (759136.7432095054537058 1964896.8591662135440856)", - "surface": 19510000, - "canton": null, - "numero_insee": "07331" - } - }, - { - "pk": 21771, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VALVIGNERES", - "center": "POINT (777009.1118657266488299 1946830.0981421805918217)", - "surface": 30270000, - "canton": null, - "numero_insee": "07332" - } - }, - { - "pk": 18064, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VANOSC", - "center": "POINT (772620.5094222016632557 2027174.6732101389206946)", - "surface": 26310000, - "canton": null, - "numero_insee": "07333" - } - }, - { - "pk": 18916, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LES VANS", - "center": "POINT (741781.7768948767334223 1933916.9723319690674543)", - "surface": 31230000, - "canton": null, - "numero_insee": "07334" - } - }, - { - "pk": 28648, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VAUDEVANT", - "center": "POINT (778734.4141355617903173 2014514.1468244141433388)", - "surface": 12630000, - "canton": null, - "numero_insee": "07335" - } - }, - { - "pk": 26488, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VERNON", - "center": "POINT (750281.2992896179202944 1946802.7320157890208066)", - "surface": 3800000, - "canton": null, - "numero_insee": "07336" - } - }, - { - "pk": 5164, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VERNOSC-LES-ANNONAY", - "center": "POINT (787433.2467560945078731 2027401.0996692744083703)", - "surface": 16580000, - "canton": null, - "numero_insee": "07337" - } - }, - { - "pk": 6345, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VERNOUX-EN-VIVARAIS", - "center": "POINT (782229.5663767835358158 1992021.2505616918206215)", - "surface": 31100000, - "canton": null, - "numero_insee": "07338" - } - }, - { - "pk": 3680, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VESSEAUX", - "center": "POINT (767152.1318620950914919 1964064.1728564545046538)", - "surface": 18840000, - "canton": null, - "numero_insee": "07339" - } - }, - { - "pk": 16890, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VEYRAS", - "center": "POINT (775885.5413764613913372 1972947.6929351263679564)", - "surface": 7810000, - "canton": null, - "numero_insee": "07340" - } - }, - { - "pk": 6740, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VILLEVOCANCE", - "center": "POINT (777322.2652240016032010 2027515.0507072811014950)", - "surface": 9530000, - "canton": null, - "numero_insee": "07342" - } - }, - { - "pk": 5755, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VINEZAC", - "center": "POINT (758650.3233676935778931 1951478.7575359418988228)", - "surface": 10990000, - "canton": null, - "numero_insee": "07343" - } - }, - { - "pk": 3981, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VINZIEUX", - "center": "POINT (785328.0735041637672111 2039495.0749282948672771)", - "surface": 6950000, - "canton": null, - "numero_insee": "07344" - } - }, - { - "pk": 28955, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VION", - "center": "POINT (793742.3500605012523010 2015342.9048479073680937)", - "surface": 6350000, - "canton": null, - "numero_insee": "07345" - } - }, - { - "pk": 16208, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VIVIERS", - "center": "POINT (785632.0392890466609970 1945201.8434408276807517)", - "surface": 33810000, - "canton": null, - "numero_insee": "07346" - } - }, - { - "pk": 19176, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VOCANCE", - "center": "POINT (775050.0169275961816311 2023992.2062995054293424)", - "surface": 17450000, - "canton": null, - "numero_insee": "07347" - } - }, - { - "pk": 29386, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "VOGUE", - "center": "POINT (764845.2832658786792308 1952832.8573407656513155)", - "surface": 11930000, - "canton": null, - "numero_insee": "07348" - } - }, - { - "pk": 29396, - "model": "ishtar_common.town", - "fields": { - "departement": 7, - "name": "LA VOULTE-SUR-RHONE", - "center": "POINT (793336.5204612135421485 1980804.4825323694385588)", - "surface": 9940000, - "canton": null, - "numero_insee": "07349" - } - }, - { - "pk": 28927, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ACY-ROMANCE", - "center": "POINT (744263.6543914692010731 2501216.4996068864129484)", - "surface": 10920000, - "canton": null, - "numero_insee": "08001" - } - }, - { - "pk": 19293, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AIGLEMONT", - "center": "POINT (775392.2464406944345683 2535302.3732765298336744)", - "surface": 8860000, - "canton": null, - "numero_insee": "08003" - } - }, - { - "pk": 12988, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AIRE", - "center": "POINT (732479.2855548709630966 2498514.6518986937589943)", - "surface": 6800000, - "canton": null, - "numero_insee": "08004" - } - }, - { - "pk": 26558, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ALINCOURT", - "center": "POINT (745848.7854457991197705 2491323.7939037154428661)", - "surface": 8980000, - "canton": null, - "numero_insee": "08005" - } - }, - { - "pk": 9542, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ALLAND'HUY-ET-SAUSSEUIL", - "center": "POINT (760351.1806057117646560 2503855.0619904682971537)", - "surface": 8730000, - "canton": null, - "numero_insee": "08006" - } - }, - { - "pk": 27618, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LES ALLEUX", - "center": "POINT (774492.2030311889247969 2500073.2418312858790159)", - "surface": 12350000, - "canton": null, - "numero_insee": "08007" - } - }, - { - "pk": 35843, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AMAGNE", - "center": "POINT (756945.9093538026791066 2504226.2912927474826574)", - "surface": 9410000, - "canton": null, - "numero_insee": "08008" - } - }, - { - "pk": 35093, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AMBLIMONT", - "center": "POINT (797051.5259255550336093 2518177.0215840041637421)", - "surface": 7440000, - "canton": null, - "numero_insee": "08009" - } - }, - { - "pk": 7908, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AMBLY-FLEURY", - "center": "POINT (756070.9896965909283608 2501216.9741772385314107)", - "surface": 5870000, - "canton": null, - "numero_insee": "08010" - } - }, - { - "pk": 36514, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ANCHAMPS", - "center": "POINT (767361.8174763951683417 2550042.5667855823412538)", - "surface": 2130000, - "canton": null, - "numero_insee": "08011" - } - }, - { - "pk": 10989, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ANGECOURT", - "center": "POINT (790844.7789869932457805 2518524.1937427627854049)", - "surface": 3750000, - "canton": null, - "numero_insee": "08013" - } - }, - { - "pk": 12048, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ANNELLES", - "center": "POINT (750723.4013365184655413 2494667.3662981768138707)", - "surface": 12730000, - "canton": null, - "numero_insee": "08014" - } - }, - { - "pk": 27613, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ANTHENY", - "center": "POINT (741728.7365115656284615 2540418.6806859602220356)", - "surface": 10070000, - "canton": null, - "numero_insee": "08015" - } - }, - { - "pk": 23860, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AOUSTE", - "center": "POINT (742475.9238352172542363 2534921.7814317103475332)", - "surface": 12670000, - "canton": null, - "numero_insee": "08016" - } - }, - { - "pk": 5540, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ARDEUIL-ET-MONTFAUXELLES", - "center": "POINT (772388.1445610957453027 2476940.6665489724837244)", - "surface": 4370000, - "canton": null, - "numero_insee": "08018" - } - }, - { - "pk": 9632, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LES GRANDES-ARMOISES", - "center": "POINT (785643.6631501805968583 2506572.4396980255842209)", - "surface": 4490000, - "canton": null, - "numero_insee": "08019" - } - }, - { - "pk": 29343, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LES PETITES-ARMOISES", - "center": "POINT (780569.0760035337880254 2503227.0491398321464658)", - "surface": 4390000, - "canton": null, - "numero_insee": "08020" - } - }, - { - "pk": 7304, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ARNICOURT", - "center": "POINT (745205.4467929697129875 2508128.7861526589840651)", - "surface": 8360000, - "canton": null, - "numero_insee": "08021" - } - }, - { - "pk": 13152, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ARREUX", - "center": "POINT (767455.6924954424612224 2539036.9072408871725202)", - "surface": 4230000, - "canton": null, - "numero_insee": "08022" - } - }, - { - "pk": 19264, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ARTAISE-LE-VIVIER", - "center": "POINT (785003.1610809930134565 2511269.8665832560509443)", - "surface": 8490000, - "canton": null, - "numero_insee": "08023" - } - }, - { - "pk": 19625, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ASFELD", - "center": "POINT (729575.1356487935408950 2498790.1558964448049664)", - "surface": 22120000, - "canton": null, - "numero_insee": "08024" - } - }, - { - "pk": 35045, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ATTIGNY", - "center": "POINT (763085.9253612074535340 2499975.9484778968617320)", - "surface": 11650000, - "canton": null, - "numero_insee": "08025" - } - }, - { - "pk": 16824, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUBIGNY-LES-POTHEES", - "center": "POINT (750808.3736879384377971 2531690.7455086573027074)", - "surface": 14800000, - "canton": null, - "numero_insee": "08026" - } - }, - { - "pk": 11340, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUBONCOURT-VAUZELLES", - "center": "POINT (755407.5840861157048494 2508615.9041299195960164)", - "surface": 5350000, - "canton": null, - "numero_insee": "08027" - } - }, - { - "pk": 4218, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUBRIVES", - "center": "POINT (774109.9110189388738945 2568310.6198118585161865)", - "surface": 10660000, - "canton": null, - "numero_insee": "08028" - } - }, - { - "pk": 29378, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUFLANCE", - "center": "POINT (813970.8799662196543068 2517121.1186057226732373)", - "surface": 6110000, - "canton": null, - "numero_insee": "08029" - } - }, - { - "pk": 34588, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUGE", - "center": "POINT (739016.2751580054173246 2541696.3703503315337002)", - "surface": 4520000, - "canton": null, - "numero_insee": "08030" - } - }, - { - "pk": 37640, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AURE", - "center": "POINT (766477.1063689261209220 2477790.8241209210827947)", - "surface": 12650000, - "canton": null, - "numero_insee": "08031" - } - }, - { - "pk": 35106, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUSSONCE", - "center": "POINT (744702.6115872428053990 2484909.9916075160726905)", - "surface": 19390000, - "canton": null, - "numero_insee": "08032" - } - }, - { - "pk": 10409, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUTHE", - "center": "POINT (784309.5665002027526498 2498756.1921158586628735)", - "surface": 9600000, - "canton": null, - "numero_insee": "08033" - } - }, - { - "pk": 5185, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUTRECOURT-ET-POURRON", - "center": "POINT (793972.9619762611109763 2515449.0451440913602710)", - "surface": 11880000, - "canton": null, - "numero_insee": "08034" - } - }, - { - "pk": 32341, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUTRUCHE", - "center": "POINT (786415.8548866303171962 2498173.8113370249047875)", - "surface": 8330000, - "canton": null, - "numero_insee": "08035" - } - }, - { - "pk": 29763, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUTRY", - "center": "POINT (781593.3831909649306908 2477019.2414583368226886)", - "surface": 16530000, - "canton": null, - "numero_insee": "08036" - } - }, - { - "pk": 26584, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AUVILLERS-LES-FORGES", - "center": "POINT (745710.3672159553971142 2542853.9793010326102376)", - "surface": 8100000, - "canton": null, - "numero_insee": "08037" - } - }, - { - "pk": 25987, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AVANCON", - "center": "POINT (738872.6023300848901272 2499769.7623046096414328)", - "surface": 21360000, - "canton": null, - "numero_insee": "08038" - } - }, - { - "pk": 27819, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "AVAUX", - "center": "POINT (725680.6357911905506626 2497856.5049328384920955)", - "surface": 13300000, - "canton": null, - "numero_insee": "08039" - } - }, - { - "pk": 25798, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LES AYVELLES", - "center": "POINT (774357.4263239714782685 2527588.9345567813143134)", - "surface": 5420000, - "canton": null, - "numero_insee": "08040" - } - }, - { - "pk": 22614, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BAALONS", - "center": "POINT (768569.5261593069881201 2514031.3587894425727427)", - "surface": 14630000, - "canton": null, - "numero_insee": "08041" - } - }, - { - "pk": 34069, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BALAIVES-ET-BUTZ", - "center": "POINT (772103.1676846669288352 2522066.3774174097925425)", - "surface": 11010000, - "canton": null, - "numero_insee": "08042" - } - }, - { - "pk": 12721, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BALAN", - "center": "POINT (789692.8782413122244179 2524517.9880568357184529)", - "surface": 4590000, - "canton": null, - "numero_insee": "08043" - } - }, - { - "pk": 37169, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BALHAM", - "center": "POINT (731559.2292147802654654 2500808.2637761998921633)", - "surface": 1800000, - "canton": null, - "numero_insee": "08044" - } - }, - { - "pk": 4413, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BALLAY", - "center": "POINT (775342.1741100911749527 2494276.8654082939028740)", - "surface": 10430000, - "canton": null, - "numero_insee": "08045" - } - }, - { - "pk": 29129, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BANOGNE-RECOUVRANCE", - "center": "POINT (729983.5768895600922406 2509600.3128556525334716)", - "surface": 19160000, - "canton": null, - "numero_insee": "08046" - } - }, - { - "pk": 30821, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BARBAISE", - "center": "POINT (761995.2275119138648733 2522280.3494437215849757)", - "surface": 6830000, - "canton": null, - "numero_insee": "08047" - } - }, - { - "pk": 31135, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BARBY", - "center": "POINT (743332.5097384584369138 2504810.8092310233041644)", - "surface": 11270000, - "canton": null, - "numero_insee": "08048" - } - }, - { - "pk": 27617, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BAR-LES-BUZANCY", - "center": "POINT (790123.8853156520053744 2497505.0602190233767033)", - "surface": 9300000, - "canton": null, - "numero_insee": "08049" - } - }, - { - "pk": 28519, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BAYONVILLE", - "center": "POINT (794273.2055727497208863 2492037.0745112923905253)", - "surface": 16270000, - "canton": null, - "numero_insee": "08052" - } - }, - { - "pk": 6289, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BAZEILLES", - "center": "POINT (791304.8472665203735232 2523230.9808441647328436)", - "surface": 9250000, - "canton": null, - "numero_insee": "08053" - } - }, - { - "pk": 18823, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BEAUMONT-EN-ARGONNE", - "center": "POINT (795549.0657523658592254 2506657.1072159833274782)", - "surface": 31320000, - "canton": null, - "numero_insee": "08055" - } - }, - { - "pk": 24620, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BEFFU-ET-LE-MORTHOMME", - "center": "POINT (785693.2000351367751136 2489061.9115391769446433)", - "surface": 5570000, - "canton": null, - "numero_insee": "08056" - } - }, - { - "pk": 15747, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BELLEVILLE-ET-CHATILLON-SUR-BAR", - "center": "POINT (779902.8662349458318204 2499218.8688403959386051)", - "surface": 21520000, - "canton": null, - "numero_insee": "08057" - } - }, - { - "pk": 33219, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BELVAL", - "center": "POINT (765905.2051551672630012 2533120.1776643414050341)", - "surface": 4980000, - "canton": null, - "numero_insee": "08058" - } - }, - { - "pk": 17205, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BELVAL-BOIS-DES-DAMES", - "center": "POINT (796293.0875953787472099 2501560.3026654538698494)", - "surface": 17470000, - "canton": null, - "numero_insee": "08059" - } - }, - { - "pk": 9172, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BERGNICOURT", - "center": "POINT (738730.3610068678390235 2492964.2982426332309842)", - "surface": 8350000, - "canton": null, - "numero_insee": "08060" - } - }, - { - "pk": 14316, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA BERLIERE", - "center": "POINT (788447.7561990173999220 2506296.2142600640654564)", - "surface": 10460000, - "canton": null, - "numero_insee": "08061" - } - }, - { - "pk": 17348, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BERTONCOURT", - "center": "POINT (749521.4154801893746480 2506564.5392414052039385)", - "surface": 6800000, - "canton": null, - "numero_insee": "08062" - } - }, - { - "pk": 32710, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA BESACE", - "center": "POINT (790722.4994009414222091 2509417.5712635111995041)", - "surface": 13880000, - "canton": null, - "numero_insee": "08063" - } - }, - { - "pk": 33408, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BIERMES", - "center": "POINT (748480.4424762849230319 2499551.3332138932310045)", - "surface": 7980000, - "canton": null, - "numero_insee": "08064" - } - }, - { - "pk": 5810, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BIEVRES", - "center": "POINT (812925.9967634914210066 2510608.1784077268093824)", - "surface": 7220000, - "canton": null, - "numero_insee": "08065" - } - }, - { - "pk": 25039, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BIGNICOURT", - "center": "POINT (751462.9833420334616676 2490070.7698840699158609)", - "surface": 8690000, - "canton": null, - "numero_insee": "08066" - } - }, - { - "pk": 25489, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BLAGNY", - "center": "POINT (806860.2102430758532137 2517860.7116620321758091)", - "surface": 7370000, - "canton": null, - "numero_insee": "08067" - } - }, - { - "pk": 21872, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BLANCHEFOSSE-ET-BAY", - "center": "POINT (738101.7103509198641405 2531582.6023892569355667)", - "surface": 20480000, - "canton": null, - "numero_insee": "08069" - } - }, - { - "pk": 32932, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BLANZY-LA-SALONNAISE", - "center": "POINT (734363.3199532791040838 2500531.9143123892135918)", - "surface": 12280000, - "canton": null, - "numero_insee": "08070" - } - }, - { - "pk": 14400, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOSSEVAL-ET-BRIANCOURT", - "center": "POINT (782619.9357902740594000 2532562.4201307035982609)", - "surface": 14640000, - "canton": null, - "numero_insee": "08072" - } - }, - { - "pk": 33179, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOSSUS-LES-RUMIGNY", - "center": "POINT (738232.0314916759962216 2539788.5792130031622946)", - "surface": 8210000, - "canton": null, - "numero_insee": "08073" - } - }, - { - "pk": 29553, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOUCONVILLE", - "center": "POINT (777398.6785006760619581 2476082.8490143800154328)", - "surface": 15370000, - "canton": null, - "numero_insee": "08074" - } - }, - { - "pk": 28697, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOULT-AUX-BOIS", - "center": "POINT (781447.2713355480227619 2494128.8615772835910320)", - "surface": 15200000, - "canton": null, - "numero_insee": "08075" - } - }, - { - "pk": 31643, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOULZICOURT", - "center": "POINT (770486.0962403194280341 2523953.7293447619304061)", - "surface": 6690000, - "canton": null, - "numero_insee": "08076" - } - }, - { - "pk": 6948, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOURCQ", - "center": "POINT (765776.0893011027947068 2489592.3582534892484546)", - "surface": 9950000, - "canton": null, - "numero_insee": "08077" - } - }, - { - "pk": 23250, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOURG-FIDELE", - "center": "POINT (759493.6050062358845025 2545773.0235815010964870)", - "surface": 14820000, - "canton": null, - "numero_insee": "08078" - } - }, - { - "pk": 10473, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOUTANCOURT", - "center": "POINT (775695.6914961023721844 2523197.7035658787935972)", - "surface": 2950000, - "canton": null, - "numero_insee": "08079" - } - }, - { - "pk": 30168, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOUVELLEMONT", - "center": "POINT (768486.5411476697772741 2512029.4250389649532735)", - "surface": 4340000, - "canton": null, - "numero_insee": "08080" - } - }, - { - "pk": 23755, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BOGNY-SUR-MEUSE", - "center": "POINT (773836.8119991794228554 2541692.8885877877473831)", - "surface": 23190000, - "canton": null, - "numero_insee": "08081" - } - }, - { - "pk": 22129, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BRECY-BRIERES", - "center": "POINT (775927.8524945375975221 2484275.5404272689484060)", - "surface": 8740000, - "canton": null, - "numero_insee": "08082" - } - }, - { - "pk": 12309, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BREVILLY", - "center": "POINT (798224.7817582718562335 2521389.0040994933806360)", - "surface": 7170000, - "canton": null, - "numero_insee": "08083" - } - }, - { - "pk": 13009, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BRIENNE-SUR-AISNE", - "center": "POINT (725318.6617335875052959 2493350.6134442565962672)", - "surface": 12140000, - "canton": null, - "numero_insee": "08084" - } - }, - { - "pk": 4584, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BRIEULLES-SUR-BAR", - "center": "POINT (783088.3935553340706974 2501147.2586396494880319)", - "surface": 13110000, - "canton": null, - "numero_insee": "08085" - } - }, - { - "pk": 15614, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BRIQUENAY", - "center": "POINT (783963.1898164360318333 2492449.2798574618063867)", - "surface": 14540000, - "canton": null, - "numero_insee": "08086" - } - }, - { - "pk": 14352, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BROGNON", - "center": "POINT (739744.3399125661235303 2550207.5395184382796288)", - "surface": 7440000, - "canton": null, - "numero_insee": "08087" - } - }, - { - "pk": 6290, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BULSON", - "center": "POINT (786349.2060513079632074 2517685.2857188517227769)", - "surface": 6470000, - "canton": null, - "numero_insee": "08088" - } - }, - { - "pk": 16332, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "BUZANCY", - "center": "POINT (791451.1178682120516896 2494414.4595932108350098)", - "surface": 22650000, - "canton": null, - "numero_insee": "08089" - } - }, - { - "pk": 19853, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CARIGNAN", - "center": "POINT (804945.4874543275218457 2519445.2963543236255646)", - "surface": 14170000, - "canton": null, - "numero_insee": "08090" - } - }, - { - "pk": 36014, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CAUROY", - "center": "POINT (754301.1942578824236989 2485792.2209898754954338)", - "surface": 17480000, - "canton": null, - "numero_insee": "08092" - } - }, - { - "pk": 11255, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CERNION", - "center": "POINT (750575.0398550828685984 2535591.0816917298361659)", - "surface": 6690000, - "canton": null, - "numero_insee": "08094" - } - }, - { - "pk": 29991, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHAGNY", - "center": "POINT (770998.1373016315046698 2510850.1139350063167512)", - "surface": 13400000, - "canton": null, - "numero_insee": "08095" - } - }, - { - "pk": 37199, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHALANDRY-ELAIRE", - "center": "POINT (774670.3944103131070733 2526090.7028809576295316)", - "surface": 5200000, - "canton": null, - "numero_insee": "08096" - } - }, - { - "pk": 28831, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHALLERANGE", - "center": "POINT (775250.5145220800768584 2481568.0381479682400823)", - "surface": 11010000, - "canton": null, - "numero_insee": "08097" - } - }, - { - "pk": 24621, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHAMPIGNEULLE", - "center": "POINT (788414.3769457384478301 2486783.7041967590339482)", - "surface": 7700000, - "canton": null, - "numero_insee": "08098" - } - }, - { - "pk": 13686, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHAMPIGNEUL-SUR-VENCE", - "center": "POINT (767971.1132472947938368 2525533.2402474521659315)", - "surface": 4550000, - "canton": null, - "numero_insee": "08099" - } - }, - { - "pk": 6226, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHAMPLIN", - "center": "POINT (743238.8784914094721898 2539330.8814898570999503)", - "surface": 5910000, - "canton": null, - "numero_insee": "08100" - } - }, - { - "pk": 13552, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA CHAPELLE", - "center": "POINT (793826.6664936753222719 2532558.1370698506943882)", - "surface": 7500000, - "canton": null, - "numero_insee": "08101" - } - }, - { - "pk": 30717, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHAPPES", - "center": "POINT (740552.7258412764640525 2513992.8174501820467412)", - "surface": 9710000, - "canton": null, - "numero_insee": "08102" - } - }, - { - "pk": 6268, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHARBOGNE", - "center": "POINT (763357.9410658656852320 2503280.3201981522142887)", - "surface": 9030000, - "canton": null, - "numero_insee": "08103" - } - }, - { - "pk": 10331, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHARDENY", - "center": "POINT (764040.1636588154360652 2493680.1405482487753034)", - "surface": 4980000, - "canton": null, - "numero_insee": "08104" - } - }, - { - "pk": 16228, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHARLEVILLE-MEZIERES", - "center": "POINT (771605.6295730799902231 2533468.9843205609358847)", - "surface": 31770000, - "canton": null, - "numero_insee": "08105" - } - }, - { - "pk": 6173, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHARNOIS", - "center": "POINT (778696.8101708935573697 2570150.8024026309140027)", - "surface": 5620000, - "canton": null, - "numero_insee": "08106" - } - }, - { - "pk": 18308, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHATEAU-PORCIEN", - "center": "POINT (738421.3222563117742538 2505769.6465779738500714)", - "surface": 17330000, - "canton": null, - "numero_insee": "08107" - } - }, - { - "pk": 23025, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHATEL-CHEHERY", - "center": "POINT (790383.8572278630454093 2478795.4310616478323936)", - "surface": 16170000, - "canton": null, - "numero_insee": "08109" - } - }, - { - "pk": 32981, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LE CHATELET-SUR-SORMONNE", - "center": "POINT (757038.3598417625762522 2540348.9229668104089797)", - "surface": 9930000, - "canton": null, - "numero_insee": "08110" - } - }, - { - "pk": 25370, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LE CHATELET-SUR-RETOURNE", - "center": "POINT (740639.9289915950503200 2491979.9124829624779522)", - "surface": 9830000, - "canton": null, - "numero_insee": "08111" - } - }, - { - "pk": 15863, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHAUMONT-PORCIEN", - "center": "POINT (737412.7631749049760401 2518468.8518337812274694)", - "surface": 36100000, - "canton": null, - "numero_insee": "08113" - } - }, - { - "pk": 5211, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHEHERY", - "center": "POINT (783737.5544489411404356 2518863.7043594373390079)", - "surface": 4930000, - "canton": null, - "numero_insee": "08114" - } - }, - { - "pk": 20706, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHEMERY-SUR-BAR", - "center": "POINT (783064.5278277641627938 2515656.0034042014740407)", - "surface": 22940000, - "canton": null, - "numero_insee": "08115" - } - }, - { - "pk": 23741, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LE CHESNE", - "center": "POINT (776357.3785669470671564 2504291.7736830408684909)", - "surface": 23760000, - "canton": null, - "numero_insee": "08116" - } - }, - { - "pk": 7418, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHESNOIS-AUBONCOURT", - "center": "POINT (761504.9295385162113234 2509368.2946814047172666)", - "surface": 4760000, - "canton": null, - "numero_insee": "08117" - } - }, - { - "pk": 9964, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHEVEUGES", - "center": "POINT (784416.5606011070776731 2521371.0240866797976196)", - "surface": 8970000, - "canton": null, - "numero_insee": "08119" - } - }, - { - "pk": 37859, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHEVIERES", - "center": "POINT (785940.3266294208588079 2483560.5297971172258258)", - "surface": 6150000, - "canton": null, - "numero_insee": "08120" - } - }, - { - "pk": 10236, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHILLY", - "center": "POINT (753635.7472699263598770 2540419.9925037100911140)", - "surface": 5900000, - "canton": null, - "numero_insee": "08121" - } - }, - { - "pk": 27358, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHOOZ", - "center": "POINT (776506.8284884931053966 2568831.3655837816186249)", - "surface": 13250000, - "canton": null, - "numero_insee": "08122" - } - }, - { - "pk": 37408, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CHUFFILLY-ROCHE", - "center": "POINT (765811.3018543906509876 2497197.4370943307876587)", - "surface": 7730000, - "canton": null, - "numero_insee": "08123" - } - }, - { - "pk": 37205, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CLAVY-WARBY", - "center": "POINT (759529.9938414625357836 2529763.8524039150215685)", - "surface": 11840000, - "canton": null, - "numero_insee": "08124" - } - }, - { - "pk": 3700, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CLIRON", - "center": "POINT (763870.8864489677362144 2537005.1504220222122967)", - "surface": 6220000, - "canton": null, - "numero_insee": "08125" - } - }, - { - "pk": 10453, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CONDE-LES-HERPY", - "center": "POINT (734812.5524498249869794 2506539.4520776569843292)", - "surface": 11560000, - "canton": null, - "numero_insee": "08126" - } - }, - { - "pk": 15687, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CONDE-LES-AUTRY", - "center": "POINT (783513.2663511382415891 2474834.2225321577861905)", - "surface": 8010000, - "canton": null, - "numero_insee": "08128" - } - }, - { - "pk": 30570, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CONTREUVE", - "center": "POINT (765595.6004812989849597 2487289.3638745280914009)", - "surface": 11130000, - "canton": null, - "numero_insee": "08130" - } - }, - { - "pk": 27681, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CORNAY", - "center": "POINT (788964.2507550010923296 2480984.7077170163393021)", - "surface": 11020000, - "canton": null, - "numero_insee": "08131" - } - }, - { - "pk": 26157, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "CORNY-MACHEROMENIL", - "center": "POINT (753281.7286216756328940 2511499.5787400268018246)", - "surface": 10540000, - "canton": null, - "numero_insee": "08132" - } - }, - { - "pk": 28246, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "COUCY", - "center": "POINT (754051.1409180229529738 2503401.1343256640248001)", - "surface": 6470000, - "canton": null, - "numero_insee": "08133" - } - }, - { - "pk": 34130, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "COULOMMES-ET-MARQUENY", - "center": "POINT (762429.8922974336892366 2494767.1034984136931598)", - "surface": 12130000, - "canton": null, - "numero_insee": "08134" - } - }, - { - "pk": 26392, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DAIGNY", - "center": "POINT (792378.9150977253448218 2526342.0359938247129321)", - "surface": 2770000, - "canton": null, - "numero_insee": "08136" - } - }, - { - "pk": 14996, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DAMOUZY", - "center": "POINT (769073.5935404963092878 2537049.5231092888861895)", - "surface": 8890000, - "canton": null, - "numero_insee": "08137" - } - }, - { - "pk": 33849, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LES DEUX-VILLES", - "center": "POINT (809132.3154405518434942 2521282.2359302174299955)", - "surface": 8210000, - "canton": null, - "numero_insee": "08138" - } - }, - { - "pk": 10856, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DEVILLE", - "center": "POINT (769609.8870139598147944 2544558.5263344128616154)", - "surface": 7820000, - "canton": null, - "numero_insee": "08139" - } - }, - { - "pk": 13682, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DOM-LE-MESNIL", - "center": "POINT (778592.9629037904087454 2523722.7403132999315858)", - "surface": 7900000, - "canton": null, - "numero_insee": "08140" - } - }, - { - "pk": 24848, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DOMMERY", - "center": "POINT (754889.7420902354642749 2522419.9181026672013104)", - "surface": 10640000, - "canton": null, - "numero_insee": "08141" - } - }, - { - "pk": 15641, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DONCHERY", - "center": "POINT (784245.5629547191783786 2529674.5706327226944268)", - "surface": 27540000, - "canton": null, - "numero_insee": "08142" - } - }, - { - "pk": 25012, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DOUMELY-BEGNY", - "center": "POINT (742329.0074419988086447 2516909.6996949333697557)", - "surface": 7800000, - "canton": null, - "numero_insee": "08143" - } - }, - { - "pk": 25753, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DOUX", - "center": "POINT (751543.8072171848034486 2504080.2135039344429970)", - "surface": 6580000, - "canton": null, - "numero_insee": "08144" - } - }, - { - "pk": 13687, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DOUZY", - "center": "POINT (795010.2391532945912331 2522862.4201349038630724)", - "surface": 12750000, - "canton": null, - "numero_insee": "08145" - } - }, - { - "pk": 27258, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DRAIZE", - "center": "POINT (744311.3478434847202152 2519127.9065647386014462)", - "surface": 6770000, - "canton": null, - "numero_insee": "08146" - } - }, - { - "pk": 33668, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "DRICOURT", - "center": "POINT (758262.5181519462494180 2490629.0061242766678333)", - "surface": 7320000, - "canton": null, - "numero_insee": "08147" - } - }, - { - "pk": 37198, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "L'ECAILLE", - "center": "POINT (736038.2186046105343848 2491840.7118655508384109)", - "surface": 9140000, - "canton": null, - "numero_insee": "08148" - } - }, - { - "pk": 24850, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "L'ECHELLE", - "center": "POINT (754671.2116814320906997 2536326.3864320260472596)", - "surface": 9880000, - "canton": null, - "numero_insee": "08149" - } - }, - { - "pk": 11926, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ECLY", - "center": "POINT (741303.3261170656187460 2508095.5817910186015069)", - "surface": 9390000, - "canton": null, - "numero_insee": "08150" - } - }, - { - "pk": 8198, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ECORDAL", - "center": "POINT (763031.3338994091609493 2506379.4559968677349389)", - "surface": 13020000, - "canton": null, - "numero_insee": "08151" - } - }, - { - "pk": 23028, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ELAN", - "center": "POINT (774619.8710822537541389 2520286.7632946921512485)", - "surface": 9900000, - "canton": null, - "numero_insee": "08152" - } - }, - { - "pk": 23597, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ESCOMBRES-ET-LE-CHESNOIS", - "center": "POINT (801388.8201732843881473 2525818.7377590793184936)", - "surface": 8300000, - "canton": null, - "numero_insee": "08153" - } - }, - { - "pk": 36077, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ESTREBAY", - "center": "POINT (744648.1196939232759178 2538342.2835020953789353)", - "surface": 9380000, - "canton": null, - "numero_insee": "08154" - } - }, - { - "pk": 33452, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ETALLE", - "center": "POINT (751824.5899262647144496 2541605.2733716219663620)", - "surface": 4390000, - "canton": null, - "numero_insee": "08155" - } - }, - { - "pk": 35322, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ETEIGNIERES", - "center": "POINT (748588.0098389724735171 2545680.1206479691900313)", - "surface": 11790000, - "canton": null, - "numero_insee": "08156" - } - }, - { - "pk": 8160, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ETREPIGNY", - "center": "POINT (774189.7699515216518193 2523785.2128057545050979)", - "surface": 4200000, - "canton": null, - "numero_insee": "08158" - } - }, - { - "pk": 24966, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "EUILLY-ET-LOMBUT", - "center": "POINT (800754.3670232490403578 2518108.6371009587310255)", - "surface": 10100000, - "canton": null, - "numero_insee": "08159" - } - }, - { - "pk": 28069, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "EVIGNY", - "center": "POINT (768750.1999527425505221 2528041.3903544787317514)", - "surface": 4400000, - "canton": null, - "numero_insee": "08160" - } - }, - { - "pk": 19852, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "EXERMONT", - "center": "POINT (795470.4993210353422910 2480740.1328594721853733)", - "surface": 18240000, - "canton": null, - "numero_insee": "08161" - } - }, - { - "pk": 37846, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FAGNON", - "center": "POINT (764643.7696641118964180 2528506.6678836862556636)", - "surface": 10100000, - "canton": null, - "numero_insee": "08162" - } - }, - { - "pk": 22739, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FAISSAULT", - "center": "POINT (756858.1016594012035057 2514531.8835247610695660)", - "surface": 6010000, - "canton": null, - "numero_insee": "08163" - } - }, - { - "pk": 34305, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FALAISE", - "center": "POINT (774678.5035498635843396 2489968.4919416401535273)", - "surface": 9550000, - "canton": null, - "numero_insee": "08164" - } - }, - { - "pk": 33669, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FAUX", - "center": "POINT (757026.3564005568623543 2506528.4000090556219220)", - "surface": 3240000, - "canton": null, - "numero_insee": "08165" - } - }, - { - "pk": 31904, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FEPIN", - "center": "POINT (770070.1978527031606063 2560971.9764538272283971)", - "surface": 5850000, - "canton": null, - "numero_insee": "08166" - } - }, - { - "pk": 10884, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA FEREE", - "center": "POINT (741910.5145142604596913 2530814.5263997418805957)", - "surface": 11000000, - "canton": null, - "numero_insee": "08167" - } - }, - { - "pk": 35035, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA FERTE-SUR-CHIERS", - "center": "POINT (810110.7674817892257124 2512185.0519646732136607)", - "surface": 6550000, - "canton": null, - "numero_insee": "08168" - } - }, - { - "pk": 17719, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FLAIGNES-HAVYS", - "center": "POINT (748556.1077074788045138 2537675.1362722539342940)", - "surface": 13820000, - "canton": null, - "numero_insee": "08169" - } - }, - { - "pk": 16237, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FLEIGNEUX", - "center": "POINT (789409.8197494981577620 2534221.3919795383699238)", - "surface": 13850000, - "canton": null, - "numero_insee": "08170" - } - }, - { - "pk": 8790, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FLEVILLE", - "center": "POINT (792355.9127106622327119 2482214.4631627816706896)", - "surface": 7830000, - "canton": null, - "numero_insee": "08171" - } - }, - { - "pk": 27370, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FLIGNY", - "center": "POINT (738690.5882494633551687 2544695.3627267205156386)", - "surface": 6750000, - "canton": null, - "numero_insee": "08172" - } - }, - { - "pk": 22812, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FLIZE", - "center": "POINT (776083.0930662659229711 2524701.9169384534470737)", - "surface": 2060000, - "canton": null, - "numero_insee": "08173" - } - }, - { - "pk": 8048, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FLOING", - "center": "POINT (787360.0214413490612060 2528200.2806282937526703)", - "surface": 7420000, - "canton": null, - "numero_insee": "08174" - } - }, - { - "pk": 6616, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FOISCHES", - "center": "POINT (774570.0187417881097645 2573017.2082463935948908)", - "surface": 4650000, - "canton": null, - "numero_insee": "08175" - } - }, - { - "pk": 11099, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FOSSE", - "center": "POINT (793622.3993499975185841 2497935.2173869018442929)", - "surface": 8950000, - "canton": null, - "numero_insee": "08176" - } - }, - { - "pk": 34811, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FRAILLICOURT", - "center": "POINT (732295.5744348170701414 2520126.3736716778948903)", - "surface": 14500000, - "canton": null, - "numero_insee": "08178" - } - }, - { - "pk": 15713, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FRANCHEVAL", - "center": "POINT (797666.3177606262033805 2528188.3365262276493013)", - "surface": 19650000, - "canton": null, - "numero_insee": "08179" - } - }, - { - "pk": 37476, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA FRANCHEVILLE", - "center": "POINT (771052.2679275188129395 2527960.9700205055996776)", - "surface": 6680000, - "canton": null, - "numero_insee": "08180" - } - }, - { - "pk": 21655, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LE FRETY", - "center": "POINT (738931.9174377799499780 2528087.5693771028891206)", - "surface": 7200000, - "canton": null, - "numero_insee": "08182" - } - }, - { - "pk": 22010, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FROMELENNES", - "center": "POINT (780885.0780839670915157 2571670.3403929169289768)", - "surface": 7230000, - "canton": null, - "numero_insee": "08183" - } - }, - { - "pk": 27041, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FROMY", - "center": "POINT (811183.0851598094450310 2515496.2604602435603738)", - "surface": 3760000, - "canton": null, - "numero_insee": "08184" - } - }, - { - "pk": 15969, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "FUMAY", - "center": "POINT (766816.3335646757623181 2555340.9913881476968527)", - "surface": 37620000, - "canton": null, - "numero_insee": "08185" - } - }, - { - "pk": 12025, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GERMONT", - "center": "POINT (784535.3184518420603126 2495756.2419502232223749)", - "surface": 4890000, - "canton": null, - "numero_insee": "08186" - } - }, - { - "pk": 6850, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GERNELLE", - "center": "POINT (779309.6613917526556179 2533534.7459194185212255)", - "surface": 4800000, - "canton": null, - "numero_insee": "08187" - } - }, - { - "pk": 16774, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GESPUNSART", - "center": "POINT (780667.6706570214591920 2538549.3160087671130896)", - "surface": 21170000, - "canton": null, - "numero_insee": "08188" - } - }, - { - "pk": 11367, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GIRONDELLE", - "center": "POINT (747524.0719677249435335 2541368.5358064966276288)", - "surface": 11500000, - "canton": null, - "numero_insee": "08189" - } - }, - { - "pk": 17737, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GIVET", - "center": "POINT (778858.4611881983000785 2574654.7247980041429400)", - "surface": 18610000, - "canton": null, - "numero_insee": "08190" - } - }, - { - "pk": 13792, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GIVRON", - "center": "POINT (741607.3499762283172458 2519405.0796248326078057)", - "surface": 7190000, - "canton": null, - "numero_insee": "08192" - } - }, - { - "pk": 12334, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GIVRY", - "center": "POINT (759072.6382797625847161 2501242.5505105713382363)", - "surface": 11860000, - "canton": null, - "numero_insee": "08193" - } - }, - { - "pk": 28537, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GLAIRE", - "center": "POINT (785465.8568042956758291 2527383.6142235505394638)", - "surface": 6530000, - "canton": null, - "numero_insee": "08194" - } - }, - { - "pk": 30383, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GOMONT", - "center": "POINT (732742.0274186523165554 2502919.6219273740425706)", - "surface": 7130000, - "canton": null, - "numero_insee": "08195" - } - }, - { - "pk": 12451, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GRANDCHAMP", - "center": "POINT (749614.1825716136954725 2519173.0471214111894369)", - "surface": 7360000, - "canton": null, - "numero_insee": "08196" - } - }, - { - "pk": 26830, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GRANDHAM", - "center": "POINT (783269.5683329091407359 2479935.4163668463006616)", - "surface": 6080000, - "canton": null, - "numero_insee": "08197" - } - }, - { - "pk": 19362, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GRANDPRE", - "center": "POINT (783808.3746265358058736 2487144.6067150225862861)", - "surface": 28410000, - "canton": null, - "numero_insee": "08198" - } - }, - { - "pk": 29595, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA GRANDVILLE", - "center": "POINT (777796.9165792436106130 2534922.6637499742209911)", - "surface": 10020000, - "canton": null, - "numero_insee": "08199" - } - }, - { - "pk": 19859, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GRIVY-LOISY", - "center": "POINT (767235.1155098841991276 2494507.8868616851978004)", - "surface": 11610000, - "canton": null, - "numero_insee": "08200" - } - }, - { - "pk": 31452, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GRUYERES", - "center": "POINT (763664.5690784286707640 2525996.8153818692080677)", - "surface": 5430000, - "canton": null, - "numero_insee": "08201" - } - }, - { - "pk": 25398, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GUE-D'HOSSUS", - "center": "POINT (758231.5967185900080949 2552966.4660605718381703)", - "surface": 5240000, - "canton": null, - "numero_insee": "08202" - } - }, - { - "pk": 28738, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GUIGNICOURT-SUR-VENCE", - "center": "POINT (765785.3057434329530224 2523713.5116097861900926)", - "surface": 9530000, - "canton": null, - "numero_insee": "08203" - } - }, - { - "pk": 8031, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "GUINCOURT", - "center": "POINT (765911.5849436274729669 2508905.5574032021686435)", - "surface": 5330000, - "canton": null, - "numero_insee": "08204" - } - }, - { - "pk": 12161, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAGNICOURT", - "center": "POINT (762557.7607117351144552 2514980.7049869233742356)", - "surface": 5720000, - "canton": null, - "numero_insee": "08205" - } - }, - { - "pk": 6400, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAM-LES-MOINES", - "center": "POINT (762283.7011928674764931 2535390.6677547767758369)", - "surface": 3140000, - "canton": null, - "numero_insee": "08206" - } - }, - { - "pk": 12458, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAM-SUR-MEUSE", - "center": "POINT (774906.0368471529800445 2568817.6995388609357178)", - "surface": 6110000, - "canton": null, - "numero_insee": "08207" - } - }, - { - "pk": 8263, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HANNAPPES", - "center": "POINT (736753.3779843511292711 2537174.4653030899353325)", - "surface": 8450000, - "canton": null, - "numero_insee": "08208" - } - }, - { - "pk": 27049, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HANNOGNE-SAINT-MARTIN", - "center": "POINT (780005.6687536723911762 2522333.9559874054975808)", - "surface": 4710000, - "canton": null, - "numero_insee": "08209" - } - }, - { - "pk": 29130, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HANNOGNE-SAINT-REMY", - "center": "POINT (730649.9414809031877667 2513608.4285114612430334)", - "surface": 18120000, - "canton": null, - "numero_insee": "08210" - } - }, - { - "pk": 37456, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HARAUCOURT", - "center": "POINT (789255.0381143365520984 2517209.8128873873502016)", - "surface": 11680000, - "canton": null, - "numero_insee": "08211" - } - }, - { - "pk": 5991, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HARCY", - "center": "POINT (759927.9222133002476767 2541774.3746588258072734)", - "surface": 19150000, - "canton": null, - "numero_insee": "08212" - } - }, - { - "pk": 16897, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HARGNIES", - "center": "POINT (776084.3085445602191612 2559722.5581453847698867)", - "surface": 42640000, - "canton": null, - "numero_insee": "08214" - } - }, - { - "pk": 24227, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HARRICOURT", - "center": "POINT (787730.2527520537842065 2496584.0403307024389505)", - "surface": 7990000, - "canton": null, - "numero_insee": "08215" - } - }, - { - "pk": 26839, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAUDRECY", - "center": "POINT (763994.8257554916199297 2534204.5426845233887434)", - "surface": 3310000, - "canton": null, - "numero_insee": "08216" - } - }, - { - "pk": 7080, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAULME", - "center": "POINT (776728.0610986197134480 2542918.2757133794948459)", - "surface": 3660000, - "canton": null, - "numero_insee": "08217" - } - }, - { - "pk": 15976, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LES HAUTES-RIVIERES", - "center": "POINT (780581.3676317111821845 2548654.5224837725982070)", - "surface": 31400000, - "canton": null, - "numero_insee": "08218" - } - }, - { - "pk": 34855, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAUTEVILLE", - "center": "POINT (741977.3166501326486468 2511203.2224454302340746)", - "surface": 5550000, - "canton": null, - "numero_insee": "08219" - } - }, - { - "pk": 31363, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAUVINE", - "center": "POINT (750933.3629331603879109 2481760.9945783955045044)", - "surface": 14580000, - "canton": null, - "numero_insee": "08220" - } - }, - { - "pk": 16582, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HAYBES", - "center": "POINT (772198.5725560889113694 2557788.2971166390925646)", - "surface": 28330000, - "canton": null, - "numero_insee": "08222" - } - }, - { - "pk": 12978, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HERBEUVAL", - "center": "POINT (818185.1431552688591182 2515756.3721427749842405)", - "surface": 7380000, - "canton": null, - "numero_insee": "08223" - } - }, - { - "pk": 24431, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HERPY-L'ARLESIENNE", - "center": "POINT (734127.4827088089659810 2504732.5150880953297019)", - "surface": 10690000, - "canton": null, - "numero_insee": "08225" - } - }, - { - "pk": 12021, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HIERGES", - "center": "POINT (771697.6232390119694173 2569590.7692845077253878)", - "surface": 4080000, - "canton": null, - "numero_insee": "08226" - } - }, - { - "pk": 8392, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA HORGNE", - "center": "POINT (769248.5658607213990763 2516538.6789990528486669)", - "surface": 5300000, - "canton": null, - "numero_insee": "08228" - } - }, - { - "pk": 9412, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HOUDILCOURT", - "center": "POINT (729823.7124567492865026 2493088.7015956435352564)", - "surface": 11310000, - "canton": null, - "numero_insee": "08229" - } - }, - { - "pk": 23289, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "HOULDIZY", - "center": "POINT (768068.8056690257508308 2537541.2484003431163728)", - "surface": 4610000, - "canton": null, - "numero_insee": "08230" - } - }, - { - "pk": 16835, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ILLY", - "center": "POINT (790629.2638563979417086 2532030.5015125819481909)", - "surface": 15570000, - "canton": null, - "numero_insee": "08232" - } - }, - { - "pk": 27561, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "IMECOURT", - "center": "POINT (791696.5591728751314804 2489113.2139824656769633)", - "surface": 8570000, - "canton": null, - "numero_insee": "08233" - } - }, - { - "pk": 7325, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "INAUMONT", - "center": "POINT (743496.8596553030656651 2509014.8000163300894201)", - "surface": 4740000, - "canton": null, - "numero_insee": "08234" - } - }, - { - "pk": 28294, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ISSANCOURT-ET-RUMEL", - "center": "POINT (779625.1973981470800936 2531736.3651039139367640)", - "surface": 5510000, - "canton": null, - "numero_insee": "08235" - } - }, - { - "pk": 29588, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "JANDUN", - "center": "POINT (760597.0404498986899853 2521968.2493691514246166)", - "surface": 12700000, - "canton": null, - "numero_insee": "08236" - } - }, - { - "pk": 4308, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "JOIGNY-SUR-MEUSE", - "center": "POINT (774752.6492468680953607 2539899.6424612323753536)", - "surface": 3920000, - "canton": null, - "numero_insee": "08237" - } - }, - { - "pk": 37639, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "JONVAL", - "center": "POINT (768400.1420340352924541 2510427.7050225739367306)", - "surface": 2520000, - "canton": null, - "numero_insee": "08238" - } - }, - { - "pk": 27219, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "JUNIVILLE", - "center": "POINT (748357.8449848229065537 2490444.5840046578086913)", - "surface": 26190000, - "canton": null, - "numero_insee": "08239" - } - }, - { - "pk": 33967, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LAIFOUR", - "center": "POINT (769684.3305132761597633 2547560.9198316130787134)", - "surface": 3130000, - "canton": null, - "numero_insee": "08242" - } - }, - { - "pk": 11494, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LALOBBE", - "center": "POINT (746897.4077508433256298 2520951.0095908823423088)", - "surface": 9910000, - "canton": null, - "numero_insee": "08243" - } - }, - { - "pk": 33436, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LAMETZ", - "center": "POINT (770441.3455274343723431 2505742.2176949814893305)", - "surface": 9180000, - "canton": null, - "numero_insee": "08244" - } - }, - { - "pk": 8676, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LANCON", - "center": "POINT (785786.3723911994602531 2478155.7612996576353908)", - "surface": 8280000, - "canton": null, - "numero_insee": "08245" - } - }, - { - "pk": 17306, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LANDRES-ET-SAINT-GEORGES", - "center": "POINT (794515.2370836780173704 2487136.0435719015076756)", - "surface": 20390000, - "canton": null, - "numero_insee": "08246" - } - }, - { - "pk": 31655, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LANDRICHAMPS", - "center": "POINT (778518.0703589923214167 2567647.8567118369974196)", - "surface": 4750000, - "canton": null, - "numero_insee": "08247" - } - }, - { - "pk": 10519, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LAUNOIS-SUR-VENCE", - "center": "POINT (758306.0467266822233796 2520747.9967691018246114)", - "surface": 13670000, - "canton": null, - "numero_insee": "08248" - } - }, - { - "pk": 29810, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LAVAL-MORENCY", - "center": "POINT (755347.7087046199012548 2539133.8087827786803246)", - "surface": 4340000, - "canton": null, - "numero_insee": "08249" - } - }, - { - "pk": 11627, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LEFFINCOURT", - "center": "POINT (760875.0555988659616560 2489350.4497941611334682)", - "surface": 17850000, - "canton": null, - "numero_insee": "08250" - } - }, - { - "pk": 28752, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LEPRON-LES-VALLEES", - "center": "POINT (752923.1109270638553426 2530107.7994666164740920)", - "surface": 6570000, - "canton": null, - "numero_insee": "08251" - } - }, - { - "pk": 19140, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LETANNE", - "center": "POINT (798634.4959824156248942 2508584.6712281228974462)", - "surface": 7540000, - "canton": null, - "numero_insee": "08252" - } - }, - { - "pk": 24807, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LIART", - "center": "POINT (744609.3782700503943488 2531137.6723722070455551)", - "surface": 13530000, - "canton": null, - "numero_insee": "08254" - } - }, - { - "pk": 7997, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LINAY", - "center": "POINT (809168.2992570397909731 2517079.9850459126755595)", - "surface": 7330000, - "canton": null, - "numero_insee": "08255" - } - }, - { - "pk": 36477, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LIRY", - "center": "POINT (767750.5388143985765055 2481003.7322430415078998)", - "surface": 12730000, - "canton": null, - "numero_insee": "08256" - } - }, - { - "pk": 24259, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LOGNY-BOGNY", - "center": "POINT (747896.6304312156280503 2532866.6689038067124784)", - "surface": 10730000, - "canton": null, - "numero_insee": "08257" - } - }, - { - "pk": 28028, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LONGWE", - "center": "POINT (778977.4898694453295320 2490405.4410761124454439)", - "surface": 10880000, - "canton": null, - "numero_insee": "08259" - } - }, - { - "pk": 12878, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LONNY", - "center": "POINT (761963.9266960562672466 2537689.3070250595919788)", - "surface": 4690000, - "canton": null, - "numero_insee": "08260" - } - }, - { - "pk": 16729, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LOUVERGNY", - "center": "POINT (774122.0186832268955186 2508275.1689736833795905)", - "surface": 9040000, - "canton": null, - "numero_insee": "08261" - } - }, - { - "pk": 8525, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LUCQUY", - "center": "POINT (754925.2114358464023098 2506510.4991325996816158)", - "surface": 5060000, - "canton": null, - "numero_insee": "08262" - } - }, - { - "pk": 7201, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LUMES", - "center": "POINT (776745.0282281383406371 2529210.2761069624684751)", - "surface": 6190000, - "canton": null, - "numero_insee": "08263" - } - }, - { - "pk": 28898, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MACHAULT", - "center": "POINT (757801.4560820404440165 2486022.1673692297190428)", - "surface": 16760000, - "canton": null, - "numero_insee": "08264" - } - }, - { - "pk": 25583, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MAIRY", - "center": "POINT (796234.8382695979671553 2520071.1934962579980493)", - "surface": 7450000, - "canton": null, - "numero_insee": "08267" - } - }, - { - "pk": 12026, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MAISONCELLE-ET-VILLERS", - "center": "POINT (786787.0378084228141233 2513286.3361265277490020)", - "surface": 11240000, - "canton": null, - "numero_insee": "08268" - } - }, - { - "pk": 28692, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MALANDRY", - "center": "POINT (805805.8693152847699821 2512448.3786325897090137)", - "surface": 6730000, - "canton": null, - "numero_insee": "08269" - } - }, - { - "pk": 13965, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MANRE", - "center": "POINT (768896.3928743142168969 2475710.1080336975865066)", - "surface": 18370000, - "canton": null, - "numero_insee": "08271" - } - }, - { - "pk": 11485, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARANWEZ", - "center": "POINT (744640.8849389585666358 2527435.7239362448453903)", - "surface": 3110000, - "canton": null, - "numero_insee": "08272" - } - }, - { - "pk": 34882, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARBY", - "center": "POINT (750540.9588377773761749 2539593.1613714252598584)", - "surface": 7420000, - "canton": null, - "numero_insee": "08273" - } - }, - { - "pk": 7536, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARCQ", - "center": "POINT (787949.1499087619595230 2482677.1193721196614206)", - "surface": 10560000, - "canton": null, - "numero_insee": "08274" - } - }, - { - "pk": 9904, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARGNY", - "center": "POINT (818770.8884301055222750 2517462.4321688758209348)", - "surface": 6680000, - "canton": null, - "numero_insee": "08275" - } - }, - { - "pk": 34586, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARGUT", - "center": "POINT (812403.4431303226156160 2513205.3022213829681277)", - "surface": 7540000, - "canton": null, - "numero_insee": "08276" - } - }, - { - "pk": 35565, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARLEMONT", - "center": "POINT (747523.6775495854672045 2529661.5816519795916975)", - "surface": 10080000, - "canton": null, - "numero_insee": "08277" - } - }, - { - "pk": 27011, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARQUIGNY", - "center": "POINT (771520.6041139278095216 2508252.9704254954122007)", - "surface": 6650000, - "canton": null, - "numero_insee": "08278" - } - }, - { - "pk": 28481, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARS-SOUS-BOURCQ", - "center": "POINT (767359.0640670276479796 2491707.1826484072953463)", - "surface": 4720000, - "canton": null, - "numero_insee": "08279" - } - }, - { - "pk": 22344, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MARVAUX-VIEUX", - "center": "POINT (771368.7954537069890648 2479133.3805977110750973)", - "surface": 11540000, - "canton": null, - "numero_insee": "08280" - } - }, - { - "pk": 17596, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MATTON-ET-CLEMENCY", - "center": "POINT (808711.5402435271535069 2523680.0887238187715411)", - "surface": 18100000, - "canton": null, - "numero_insee": "08281" - } - }, - { - "pk": 4465, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MAUBERT-FONTAINE", - "center": "POINT (750796.8075668574310839 2544798.4015728742815554)", - "surface": 10190000, - "canton": null, - "numero_insee": "08282" - } - }, - { - "pk": 14075, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MAZERNY", - "center": "POINT (765059.1068795789033175 2515002.0317412312142551)", - "surface": 12620000, - "canton": null, - "numero_insee": "08283" - } - }, - { - "pk": 22610, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LES MAZURES", - "center": "POINT (765087.9477091581793502 2546821.3042606911621988)", - "surface": 36430000, - "canton": null, - "numero_insee": "08284" - } - }, - { - "pk": 31443, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MENIL-ANNELLES", - "center": "POINT (753319.7305366760119796 2495289.8532702592201531)", - "surface": 9250000, - "canton": null, - "numero_insee": "08286" - } - }, - { - "pk": 29907, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MENIL-LEPINOIS", - "center": "POINT (741773.7402479265583679 2488087.0980425286106765)", - "surface": 17950000, - "canton": null, - "numero_insee": "08287" - } - }, - { - "pk": 27449, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MESMONT", - "center": "POINT (749146.2866616725223139 2515366.7491697715595365)", - "surface": 11350000, - "canton": null, - "numero_insee": "08288" - } - }, - { - "pk": 34426, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MESSINCOURT", - "center": "POINT (803395.0187238184735179 2525235.5438244706019759)", - "surface": 8070000, - "canton": null, - "numero_insee": "08289" - } - }, - { - "pk": 11991, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MOGUES", - "center": "POINT (812928.3460203385911882 2522015.1724909804761410)", - "surface": 8210000, - "canton": null, - "numero_insee": "08291" - } - }, - { - "pk": 11214, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MOIRY", - "center": "POINT (812884.8584328072611243 2515410.7752732094377279)", - "surface": 3850000, - "canton": null, - "numero_insee": "08293" - } - }, - { - "pk": 32087, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA MONCELLE", - "center": "POINT (792090.7315625486662611 2524938.7273399019613862)", - "surface": 1380000, - "canton": null, - "numero_insee": "08294" - } - }, - { - "pk": 8548, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONDIGNY", - "center": "POINT (766063.2801545821130276 2526317.4503650949336588)", - "surface": 5820000, - "canton": null, - "numero_insee": "08295" - } - }, - { - "pk": 34364, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTCHEUTIN", - "center": "POINT (779470.8303885064087808 2479502.7209989493712783)", - "surface": 9620000, - "canton": null, - "numero_insee": "08296" - } - }, - { - "pk": 37454, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTCORNET", - "center": "POINT (766645.8905847833957523 2540130.6506575443781912)", - "surface": 11470000, - "canton": null, - "numero_insee": "08297" - } - }, - { - "pk": 10352, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTCY-NOTRE-DAME", - "center": "POINT (773491.2543821701547131 2535286.1479019699618220)", - "surface": 6120000, - "canton": null, - "numero_insee": "08298" - } - }, - { - "pk": 15152, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LE MONT-DIEU", - "center": "POINT (782724.1343470661668107 2508648.7972135413438082)", - "surface": 18830000, - "canton": null, - "numero_insee": "08300" - } - }, - { - "pk": 13941, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTGON", - "center": "POINT (772655.3534691518871114 2504260.1786357657983899)", - "surface": 8160000, - "canton": null, - "numero_insee": "08301" - } - }, - { - "pk": 14482, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTHERME", - "center": "POINT (773387.9329976446460932 2547392.4061705535277724)", - "surface": 32600000, - "canton": null, - "numero_insee": "08302" - } - }, - { - "pk": 19065, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTHOIS", - "center": "POINT (772247.9638019466074184 2481642.4800693206489086)", - "surface": 12000000, - "canton": null, - "numero_insee": "08303" - } - }, - { - "pk": 31242, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTIGNY-SUR-MEUSE", - "center": "POINT (770246.3952864382881671 2563775.0837266230955720)", - "surface": 8040000, - "canton": null, - "numero_insee": "08304" - } - }, - { - "pk": 30595, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTIGNY-SUR-VENCE", - "center": "POINT (764526.4185967086814344 2518799.8063913611695170)", - "surface": 8250000, - "canton": null, - "numero_insee": "08305" - } - }, - { - "pk": 32906, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONT-LAURENT", - "center": "POINT (755395.3236304483143613 2498309.4103702330030501)", - "surface": 6780000, - "canton": null, - "numero_insee": "08306" - } - }, - { - "pk": 8657, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONTMEILLANT", - "center": "POINT (743764.2504417246673256 2524626.5786074688658118)", - "surface": 7000000, - "canton": null, - "numero_insee": "08307" - } - }, - { - "pk": 26788, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONT-SAINT-MARTIN", - "center": "POINT (767625.7356431563384831 2483904.5170324179343879)", - "surface": 14040000, - "canton": null, - "numero_insee": "08308" - } - }, - { - "pk": 26158, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MONT-SAINT-REMY", - "center": "POINT (755467.7743401650805026 2489804.6901630358770490)", - "surface": 7630000, - "canton": null, - "numero_insee": "08309" - } - }, - { - "pk": 28029, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MOURON", - "center": "POINT (778044.4109649065649137 2482492.4605357577092946)", - "surface": 6390000, - "canton": null, - "numero_insee": "08310" - } - }, - { - "pk": 3533, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MOUZON", - "center": "POINT (798290.6837562724249437 2513684.8689652159810066)", - "surface": 34670000, - "canton": null, - "numero_insee": "08311" - } - }, - { - "pk": 4968, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "MURTIN-ET-BOGNY", - "center": "POINT (758667.3269011740339920 2537060.8518254170194268)", - "surface": 7040000, - "canton": null, - "numero_insee": "08312" - } - }, - { - "pk": 21929, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NANTEUIL-SUR-AISNE", - "center": "POINT (742052.2303382689133286 2502398.4279488432221115)", - "surface": 8010000, - "canton": null, - "numero_insee": "08313" - } - }, - { - "pk": 32712, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NEUFLIZE", - "center": "POINT (743444.8935768632218242 2491603.5254200198687613)", - "surface": 13600000, - "canton": null, - "numero_insee": "08314" - } - }, - { - "pk": 34630, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NEUFMAISON", - "center": "POINT (756916.6897533371811733 2531142.4199549509212375)", - "surface": 7050000, - "canton": null, - "numero_insee": "08315" - } - }, - { - "pk": 30390, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NEUFMANIL", - "center": "POINT (777861.9445786022115499 2539025.6534593715332448)", - "surface": 10200000, - "canton": null, - "numero_insee": "08316" - } - }, - { - "pk": 7784, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA NEUVILLE-A-MAIRE", - "center": "POINT (782294.8616376100108027 2512047.2236059522256255)", - "surface": 7340000, - "canton": null, - "numero_insee": "08317" - } - }, - { - "pk": 27420, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA NEUVILLE-AUX-JOUTES", - "center": "POINT (736842.8624597883317620 2550182.8593311691656709)", - "surface": 13190000, - "canton": null, - "numero_insee": "08318" - } - }, - { - "pk": 16887, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NEUVILLE-LEZ-BEAULIEU", - "center": "POINT (744971.6851701727136970 2547350.3298106249421835)", - "surface": 35980000, - "canton": null, - "numero_insee": "08319" - } - }, - { - "pk": 19901, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA NEUVILLE-EN-TOURNE-A-FUY", - "center": "POINT (749503.6081440849229693 2485150.9845749298110604)", - "surface": 27430000, - "canton": null, - "numero_insee": "08320" - } - }, - { - "pk": 12715, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NEUVILLE-DAY", - "center": "POINT (770666.2093837142456323 2502842.3378285057842731)", - "surface": 7680000, - "canton": null, - "numero_insee": "08321" - } - }, - { - "pk": 12719, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NEUVILLE-LES-THIS", - "center": "POINT (762542.6619308418594301 2528488.7533438880927861)", - "surface": 7790000, - "canton": null, - "numero_insee": "08322" - } - }, - { - "pk": 18462, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA NEUVILLE-LES-WASIGNY", - "center": "POINT (746217.4739331139717251 2518543.7653362369164824)", - "surface": 5260000, - "canton": null, - "numero_insee": "08323" - } - }, - { - "pk": 18525, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NEUVIZY", - "center": "POINT (759241.4879227327182889 2516653.4756322978064418)", - "surface": 8580000, - "canton": null, - "numero_insee": "08324" - } - }, - { - "pk": 7653, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NOIRVAL", - "center": "POINT (778308.8175820921314880 2498404.7588350102305412)", - "surface": 4930000, - "canton": null, - "numero_insee": "08325" - } - }, - { - "pk": 25891, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NOUART", - "center": "POINT (797222.6780161317437887 2498166.1295936917886138)", - "surface": 17780000, - "canton": null, - "numero_insee": "08326" - } - }, - { - "pk": 36048, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NOUVION-SUR-MEUSE", - "center": "POINT (777670.2749094241298735 2526316.4315644805319607)", - "surface": 9020000, - "canton": null, - "numero_insee": "08327" - } - }, - { - "pk": 29808, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NOUZONVILLE", - "center": "POINT (774566.2093003425979987 2538297.1039827899076045)", - "surface": 11020000, - "canton": null, - "numero_insee": "08328" - } - }, - { - "pk": 16331, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NOVION-PORCIEN", - "center": "POINT (751367.9195900986669585 2512984.1990081206895411)", - "surface": 17260000, - "canton": null, - "numero_insee": "08329" - } - }, - { - "pk": 33033, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NOVY-CHEVRIERES", - "center": "POINT (752516.2336524205747992 2507390.5357325640507042)", - "surface": 17280000, - "canton": null, - "numero_insee": "08330" - } - }, - { - "pk": 6864, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "NOYERS-PONT-MAUGIS", - "center": "POINT (787421.5815427587367594 2520996.4568159375339746)", - "surface": 9230000, - "canton": null, - "numero_insee": "08331" - } - }, - { - "pk": 26159, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "OCHES", - "center": "POINT (787865.3837051189038903 2504189.9358151052147150)", - "surface": 6790000, - "canton": null, - "numero_insee": "08332" - } - }, - { - "pk": 23226, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "OLIZY-PRIMAT", - "center": "POINT (777804.1526476476574317 2487193.3988230153918266)", - "surface": 21440000, - "canton": null, - "numero_insee": "08333" - } - }, - { - "pk": 10596, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "OMICOURT", - "center": "POINT (780046.6797008137218654 2517531.3892285907641053)", - "surface": 7470000, - "canton": null, - "numero_insee": "08334" - } - }, - { - "pk": 10096, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "OMONT", - "center": "POINT (773879.2157652773894370 2513276.1715316013433039)", - "surface": 17780000, - "canton": null, - "numero_insee": "08335" - } - }, - { - "pk": 5535, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "OSNES", - "center": "POINT (803826.9153934402856976 2521536.9992405865341425)", - "surface": 5860000, - "canton": null, - "numero_insee": "08336" - } - }, - { - "pk": 32503, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "PAUVRES", - "center": "POINT (757043.9461560025811195 2492719.9459547526203096)", - "surface": 12590000, - "canton": null, - "numero_insee": "08338" - } - }, - { - "pk": 18301, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "PERTHES", - "center": "POINT (746405.6865880291443318 2496431.7357921865768731)", - "surface": 23640000, - "canton": null, - "numero_insee": "08339" - } - }, - { - "pk": 37327, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "POILCOURT-SYDNEY", - "center": "POINT (727625.0400998027762398 2492769.8304066811688244)", - "surface": 7880000, - "canton": null, - "numero_insee": "08340" - } - }, - { - "pk": 8547, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "POIX-TERRON", - "center": "POINT (767428.8246250801021233 2518724.4971547164022923)", - "surface": 14320000, - "canton": null, - "numero_insee": "08341" - } - }, - { - "pk": 31235, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "POURU-AUX-BOIS", - "center": "POINT (799376.6317651299759746 2527102.3053195201791823)", - "surface": 8990000, - "canton": null, - "numero_insee": "08342" - } - }, - { - "pk": 35572, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "POURU-SAINT-REMY", - "center": "POINT (798803.7039503506384790 2523895.4717343663796782)", - "surface": 10410000, - "canton": null, - "numero_insee": "08343" - } - }, - { - "pk": 30815, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "PREZ", - "center": "POINT (745871.7370858332142234 2535651.0977112189866602)", - "surface": 12350000, - "canton": null, - "numero_insee": "08344" - } - }, - { - "pk": 19785, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "PRIX-LES-MEZIERES", - "center": "POINT (769430.0843116785399616 2530448.6297797705046833)", - "surface": 5070000, - "canton": null, - "numero_insee": "08346" - } - }, - { - "pk": 32502, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "PUISEUX", - "center": "POINT (759172.1311524698976427 2513050.6842268039472401)", - "surface": 3480000, - "canton": null, - "numero_insee": "08348" - } - }, - { - "pk": 11734, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "PURE", - "center": "POINT (805404.6451353929005563 2524252.1401903550140560)", - "surface": 6510000, - "canton": null, - "numero_insee": "08349" - } - }, - { - "pk": 37791, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "QUATRE-CHAMPS", - "center": "POINT (777020.0573789828922600 2496992.8808880527503788)", - "surface": 11540000, - "canton": null, - "numero_insee": "08350" - } - }, - { - "pk": 8145, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "QUILLY", - "center": "POINT (763053.2555351452901959 2492070.7201669341884553)", - "surface": 5620000, - "canton": null, - "numero_insee": "08351" - } - }, - { - "pk": 13811, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RAILLICOURT", - "center": "POINT (762918.7379506316501647 2519586.5853368439711630)", - "surface": 6890000, - "canton": null, - "numero_insee": "08352" - } - }, - { - "pk": 33175, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RANCENNES", - "center": "POINT (777978.5238565608160570 2572245.8570509236305952)", - "surface": 6610000, - "canton": null, - "numero_insee": "08353" - } - }, - { - "pk": 30790, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RAUCOURT-ET-FLABA", - "center": "POINT (789988.7666308118496090 2513313.6980813620612025)", - "surface": 21800000, - "canton": null, - "numero_insee": "08354" - } - }, - { - "pk": 5242, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "REGNIOWEZ", - "center": "POINT (749354.3427761794300750 2549688.9825990721583366)", - "surface": 18370000, - "canton": null, - "numero_insee": "08355" - } - }, - { - "pk": 36856, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "REMAUCOURT", - "center": "POINT (737157.7006466910243034 2513163.4505270333029330)", - "surface": 10830000, - "canton": null, - "numero_insee": "08356" - } - }, - { - "pk": 17156, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "REMILLY-AILLICOURT", - "center": "POINT (792032.5917414637515321 2520035.2608052333816886)", - "surface": 13430000, - "canton": null, - "numero_insee": "08357" - } - }, - { - "pk": 33404, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RENNEVILLE", - "center": "POINT (730007.9518036172958091 2518505.9586173864081502)", - "surface": 9930000, - "canton": null, - "numero_insee": "08360" - } - }, - { - "pk": 23552, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RENWEZ", - "center": "POINT (763332.2380043142475188 2541503.2193623729981482)", - "surface": 16270000, - "canton": null, - "numero_insee": "08361" - } - }, - { - "pk": 17720, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RETHEL", - "center": "POINT (748345.4636176675558090 2503652.7328043268062174)", - "surface": 18670000, - "canton": null, - "numero_insee": "08362" - } - }, - { - "pk": 23947, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "REVIN", - "center": "POINT (769253.3972141026752070 2551159.3436686773784459)", - "surface": 38810000, - "canton": null, - "numero_insee": "08363" - } - }, - { - "pk": 13657, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RILLY-SUR-AISNE", - "center": "POINT (766779.4298338725930080 2501008.0648782551288605)", - "surface": 3440000, - "canton": null, - "numero_insee": "08364" - } - }, - { - "pk": 11522, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RIMOGNE", - "center": "POINT (758340.7382437344640493 2540159.9033294059336185)", - "surface": 3810000, - "canton": null, - "numero_insee": "08365" - } - }, - { - "pk": 37736, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ROCQUIGNY", - "center": "POINT (737963.7273676338372752 2524277.0487174559384584)", - "surface": 36820000, - "canton": null, - "numero_insee": "08366" - } - }, - { - "pk": 30031, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ROCROI", - "center": "POINT (759652.7740585653809831 2550577.1839378471486270)", - "surface": 50560000, - "canton": null, - "numero_insee": "08367" - } - }, - { - "pk": 38022, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ROIZY", - "center": "POINT (734221.9046630826778710 2493626.3999793650582433)", - "surface": 11030000, - "canton": null, - "numero_insee": "08368" - } - }, - { - "pk": 36249, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA ROMAGNE", - "center": "POINT (742280.4815653053810820 2522612.7453103559091687)", - "surface": 10040000, - "canton": null, - "numero_insee": "08369" - } - }, - { - "pk": 15643, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "ROUVROY-SUR-AUDRY", - "center": "POINT (756090.6954582999460399 2534137.1720404387451708)", - "surface": 9180000, - "canton": null, - "numero_insee": "08370" - } - }, - { - "pk": 25773, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RUBECOURT-ET-LAMECOURT", - "center": "POINT (793589.8168838191777468 2525151.6651796498335898)", - "surface": 4610000, - "canton": null, - "numero_insee": "08371" - } - }, - { - "pk": 35038, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RUBIGNY", - "center": "POINT (734974.0460045473882928 2522850.7792501999065280)", - "surface": 5090000, - "canton": null, - "numero_insee": "08372" - } - }, - { - "pk": 35199, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "RUMIGNY", - "center": "POINT (739365.7946339396294206 2535895.9146433547139168)", - "surface": 17430000, - "canton": null, - "numero_insee": "08373" - } - }, - { - "pk": 11341, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LA SABOTTERIE", - "center": "POINT (769023.5114212166517973 2507731.3587116692215204)", - "surface": 3640000, - "canton": null, - "numero_insee": "08374" - } - }, - { - "pk": 9633, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SACHY", - "center": "POINT (801615.4670620216056705 2522718.8019968573935330)", - "surface": 5830000, - "canton": null, - "numero_insee": "08375" - } - }, - { - "pk": 33330, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAILLY", - "center": "POINT (805182.4210649288725108 2515144.6985166440717876)", - "surface": 12980000, - "canton": null, - "numero_insee": "08376" - } - }, - { - "pk": 26383, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-AIGNAN", - "center": "POINT (781822.8640701372642070 2520448.3226467175409198)", - "surface": 7780000, - "canton": null, - "numero_insee": "08377" - } - }, - { - "pk": 28030, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-CLEMENT-A-ARNES", - "center": "POINT (752652.2182057095924392 2479674.2907281694933772)", - "surface": 10200000, - "canton": null, - "numero_insee": "08378" - } - }, - { - "pk": 32621, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-ETIENNE-A-ARNES", - "center": "POINT (758244.3094084828626364 2481022.7582717528566718)", - "surface": 29620000, - "canton": null, - "numero_insee": "08379" - } - }, - { - "pk": 32934, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-FERGEUX", - "center": "POINT (734982.8860651161521673 2510043.0558982528746128)", - "surface": 25620000, - "canton": null, - "numero_insee": "08380" - } - }, - { - "pk": 35768, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-JEAN-AUX-BOIS", - "center": "POINT (742142.1187088293954730 2527114.2797522512264550)", - "surface": 8760000, - "canton": null, - "numero_insee": "08382" - } - }, - { - "pk": 33997, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-JUVIN", - "center": "POINT (790328.2717150254175067 2485299.1073799259029329)", - "surface": 9340000, - "canton": null, - "numero_insee": "08383" - } - }, - { - "pk": 3862, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-LAMBERT-ET-MONT-DE-JEUX", - "center": "POINT (765866.9899367716861889 2502401.1546060522086918)", - "surface": 10790000, - "canton": null, - "numero_insee": "08384" - } - }, - { - "pk": 22609, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-LAURENT", - "center": "POINT (775922.4004388166358694 2531804.8110186601988971)", - "surface": 4340000, - "canton": null, - "numero_insee": "08385" - } - }, - { - "pk": 7539, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-LOUP-EN-CHAMPAGNE", - "center": "POINT (736297.5464839105261490 2496645.9279242334887385)", - "surface": 15780000, - "canton": null, - "numero_insee": "08386" - } - }, - { - "pk": 14784, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-LOUP-TERRIER", - "center": "POINT (764796.4837403680430725 2510597.0950318290852010)", - "surface": 15280000, - "canton": null, - "numero_insee": "08387" - } - }, - { - "pk": 27852, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-MARCEAU", - "center": "POINT (772070.7249293602071702 2525868.3964666314423084)", - "surface": 4790000, - "canton": null, - "numero_insee": "08388" - } - }, - { - "pk": 30822, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-MARCEL", - "center": "POINT (761408.8186038773274049 2532381.4220016961917281)", - "surface": 10980000, - "canton": null, - "numero_insee": "08389" - } - }, - { - "pk": 34131, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINTE-MARIE", - "center": "POINT (769688.5117628035368398 2488424.9673174074850976)", - "surface": 5510000, - "canton": null, - "numero_insee": "08390" - } - }, - { - "pk": 26199, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-MENGES", - "center": "POINT (787124.8611509714974090 2532300.7292268029414117)", - "surface": 11800000, - "canton": null, - "numero_insee": "08391" - } - }, - { - "pk": 6379, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-MOREL", - "center": "POINT (771620.3075419288361445 2484839.1637721275910735)", - "surface": 11990000, - "canton": null, - "numero_insee": "08392" - } - }, - { - "pk": 25558, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-PIERRE-A-ARNES", - "center": "POINT (754853.4653470219345763 2479693.0392577485181391)", - "surface": 8520000, - "canton": null, - "numero_insee": "08393" - } - }, - { - "pk": 22202, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-PIERREMONT", - "center": "POINT (789083.1428263909183443 2502199.0994747960940003)", - "surface": 19940000, - "canton": null, - "numero_insee": "08394" - } - }, - { - "pk": 11721, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-PIERRE-SUR-VENCE", - "center": "POINT (769374.4158306785393506 2525245.0299524776637554)", - "surface": 4610000, - "canton": null, - "numero_insee": "08395" - } - }, - { - "pk": 30026, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-QUENTIN-LE-PETIT", - "center": "POINT (726167.9155815952690318 2511168.8733846554532647)", - "surface": 8940000, - "canton": null, - "numero_insee": "08396" - } - }, - { - "pk": 8907, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINT-REMY-LE-PETIT", - "center": "POINT (737648.4696876147063449 2490753.7125019920058548)", - "surface": 7490000, - "canton": null, - "numero_insee": "08397" - } - }, - { - "pk": 24812, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAINTE-VAUBOURG", - "center": "POINT (763602.4082189823966473 2498079.1658339682035148)", - "surface": 6900000, - "canton": null, - "numero_insee": "08398" - } - }, - { - "pk": 27457, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAPOGNE-SUR-MARCHE", - "center": "POINT (815387.9206097378628328 2515232.0962750790640712)", - "surface": 5480000, - "canton": null, - "numero_insee": "08399" - } - }, - { - "pk": 25586, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAPOGNE-ET-FEUCHERES", - "center": "POINT (778017.4167393703246489 2520816.0696000438183546)", - "surface": 10700000, - "canton": null, - "numero_insee": "08400" - } - }, - { - "pk": 7676, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAULCES-CHAMPENOISES", - "center": "POINT (757311.7174919806420803 2496524.6120325322262943)", - "surface": 22770000, - "canton": null, - "numero_insee": "08401" - } - }, - { - "pk": 35846, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAULCES-MONCLIN", - "center": "POINT (757088.9001476734410971 2510931.6437641610391438)", - "surface": 20300000, - "canton": null, - "numero_insee": "08402" - } - }, - { - "pk": 5538, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAULT-LES-RETHEL", - "center": "POINT (746369.0662481000181288 2500734.1074059265665710)", - "surface": 6630000, - "canton": null, - "numero_insee": "08403" - } - }, - { - "pk": 7932, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAULT-SAINT-REMY", - "center": "POINT (732122.4393158497987315 2493408.4271036884747446)", - "surface": 9770000, - "canton": null, - "numero_insee": "08404" - } - }, - { - "pk": 3095, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAUVILLE", - "center": "POINT (777420.3975389183033258 2508703.5695353252813220)", - "surface": 15090000, - "canton": null, - "numero_insee": "08405" - } - }, - { - "pk": 23540, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SAVIGNY-SUR-AISNE", - "center": "POINT (773300.7735926398308948 2487255.0260049682110548)", - "surface": 10290000, - "canton": null, - "numero_insee": "08406" - } - }, - { - "pk": 29168, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SECHAULT", - "center": "POINT (774785.2415894933510572 2477461.4423763081431389)", - "surface": 10950000, - "canton": null, - "numero_insee": "08407" - } - }, - { - "pk": 35818, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SECHEVAL", - "center": "POINT (767924.3744530456606299 2542743.0890667233616114)", - "surface": 13790000, - "canton": null, - "numero_insee": "08408" - } - }, - { - "pk": 36573, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SEDAN", - "center": "POINT (787284.7635058215819299 2525297.8905539577826858)", - "surface": 16220000, - "canton": null, - "numero_insee": "08409" - } - }, - { - "pk": 27874, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SEMIDE", - "center": "POINT (762925.6452961615286767 2483564.2502539884299040)", - "surface": 36950000, - "canton": null, - "numero_insee": "08410" - } - }, - { - "pk": 12109, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SEMUY", - "center": "POINT (768670.2332275003427640 2502224.9381114859133959)", - "surface": 3920000, - "canton": null, - "numero_insee": "08411" - } - }, - { - "pk": 35314, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SENUC", - "center": "POINT (783053.2180494068888947 2481834.7833558972924948)", - "surface": 13540000, - "canton": null, - "numero_insee": "08412" - } - }, - { - "pk": 24806, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SERAINCOURT", - "center": "POINT (733836.3553310283459723 2515436.6139970729127526)", - "surface": 16340000, - "canton": null, - "numero_insee": "08413" - } - }, - { - "pk": 29158, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SERY", - "center": "POINT (746472.9390142176998779 2512041.9716656380333006)", - "surface": 18310000, - "canton": null, - "numero_insee": "08415" - } - }, - { - "pk": 27218, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SEUIL", - "center": "POINT (753484.0485781619790941 2499493.8785683005116880)", - "surface": 11710000, - "canton": null, - "numero_insee": "08416" - } - }, - { - "pk": 7806, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SEVIGNY-LA-FORET", - "center": "POINT (754100.2085499786771834 2544626.4209876349195838)", - "surface": 26290000, - "canton": null, - "numero_insee": "08417" - } - }, - { - "pk": 37896, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SEVIGNY-WALEPPE", - "center": "POINT (726138.1651435437379405 2514670.7623140257783234)", - "surface": 24270000, - "canton": null, - "numero_insee": "08418" - } - }, - { - "pk": 17725, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SIGNY-L'ABBAYE", - "center": "POINT (749266.3156308087054640 2524773.4740097858011723)", - "surface": 62120000, - "canton": null, - "numero_insee": "08419" - } - }, - { - "pk": 23222, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SIGNY-LE-PETIT", - "center": "POINT (740360.8185503466520458 2548311.6771061518229544)", - "surface": 38710000, - "canton": null, - "numero_insee": "08420" - } - }, - { - "pk": 7996, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SIGNY-MONTLIBERT", - "center": "POINT (815206.6719716875813901 2513029.1934369537048042)", - "surface": 6180000, - "canton": null, - "numero_insee": "08421" - } - }, - { - "pk": 32536, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SINGLY", - "center": "POINT (771035.0207705707289279 2518254.9558582846075296)", - "surface": 9900000, - "canton": null, - "numero_insee": "08422" - } - }, - { - "pk": 8264, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SOMMAUTHE", - "center": "POINT (792071.1052199385594577 2503825.6338903503492475)", - "surface": 9900000, - "canton": null, - "numero_insee": "08424" - } - }, - { - "pk": 31207, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SOMMERANCE", - "center": "POINT (793239.3136958850082010 2484223.2907876223325729)", - "surface": 5130000, - "canton": null, - "numero_insee": "08425" - } - }, - { - "pk": 5210, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SON", - "center": "POINT (739678.6251309603685513 2510883.4824160346761346)", - "surface": 9070000, - "canton": null, - "numero_insee": "08426" - } - }, - { - "pk": 32927, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SORBON", - "center": "POINT (747409.1983004985377192 2507847.3590822564437985)", - "surface": 14530000, - "canton": null, - "numero_insee": "08427" - } - }, - { - "pk": 6496, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SORCY-BAUTHEMONT", - "center": "POINT (759423.4014578694477677 2507049.1350632882677019)", - "surface": 11190000, - "canton": null, - "numero_insee": "08428" - } - }, - { - "pk": 5479, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SORMONNE", - "center": "POINT (760469.9693845694418997 2536876.0973672820255160)", - "surface": 4790000, - "canton": null, - "numero_insee": "08429" - } - }, - { - "pk": 36695, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "STONNE", - "center": "POINT (787224.8721996258245781 2508887.3709112843498588)", - "surface": 7350000, - "canton": null, - "numero_insee": "08430" - } - }, - { - "pk": 33817, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SUGNY", - "center": "POINT (768903.4256244231946766 2486617.1300936415791512)", - "surface": 5970000, - "canton": null, - "numero_insee": "08431" - } - }, - { - "pk": 23150, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SURY", - "center": "POINT (764111.9404841592768207 2532204.3484262567944825)", - "surface": 3350000, - "canton": null, - "numero_insee": "08432" - } - }, - { - "pk": 36251, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SUZANNE", - "center": "POINT (766846.2061467746971175 2504911.0564815923571587)", - "surface": 6440000, - "canton": null, - "numero_insee": "08433" - } - }, - { - "pk": 5752, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "SY", - "center": "POINT (783758.0105025072116405 2504755.2159689841791987)", - "surface": 7970000, - "canton": null, - "numero_insee": "08434" - } - }, - { - "pk": 4626, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TAGNON", - "center": "POINT (741903.1969757503829896 2496393.4204353205859661)", - "surface": 23950000, - "canton": null, - "numero_insee": "08435" - } - }, - { - "pk": 25051, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TAILLETTE", - "center": "POINT (753654.8313300162553787 2549925.7257170523516834)", - "surface": 15270000, - "canton": null, - "numero_insee": "08436" - } - }, - { - "pk": 29994, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TAIZY", - "center": "POINT (739243.8863984707277268 2503175.0334641830995679)", - "surface": 9040000, - "canton": null, - "numero_insee": "08438" - } - }, - { - "pk": 4252, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TANNAY", - "center": "POINT (780246.6974730739602819 2505825.9087700792588294)", - "surface": 14030000, - "canton": null, - "numero_insee": "08439" - } - }, - { - "pk": 12062, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TARZY", - "center": "POINT (740998.5804066497366875 2543914.5279698427766562)", - "surface": 10300000, - "canton": null, - "numero_insee": "08440" - } - }, - { - "pk": 23403, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TERMES", - "center": "POINT (780725.4311435377458110 2484916.8798132180236280)", - "surface": 14020000, - "canton": null, - "numero_insee": "08441" - } - }, - { - "pk": 8302, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TERRON-SUR-AISNE", - "center": "POINT (772009.6078384034335613 2497850.6830165497958660)", - "surface": 6520000, - "canton": null, - "numero_insee": "08443" - } - }, - { - "pk": 5995, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TETAIGNE", - "center": "POINT (800934.7842346031684428 2520411.5813432550057769)", - "surface": 5780000, - "canton": null, - "numero_insee": "08444" - } - }, - { - "pk": 32311, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "THELONNE", - "center": "POINT (788531.5748874243581668 2519905.2743563847616315)", - "surface": 3850000, - "canton": null, - "numero_insee": "08445" - } - }, - { - "pk": 9436, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "THILAY", - "center": "POINT (777689.2815440295962617 2547529.1827165833674371)", - "surface": 36130000, - "canton": null, - "numero_insee": "08448" - } - }, - { - "pk": 28522, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "THIN-LE-MOUTIER", - "center": "POINT (757057.6642236277693883 2526340.7418628488667309)", - "surface": 39770000, - "canton": null, - "numero_insee": "08449" - } - }, - { - "pk": 6213, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "THIS", - "center": "POINT (764024.6847237700130790 2530702.7076396606862545)", - "surface": 4440000, - "canton": null, - "numero_insee": "08450" - } - }, - { - "pk": 30629, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "LE THOUR", - "center": "POINT (727006.6018895986489952 2506673.2304978915490210)", - "surface": 16600000, - "canton": null, - "numero_insee": "08451" - } - }, - { - "pk": 6340, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "THUGNY-TRUGNY", - "center": "POINT (751180.2255069015081972 2499774.4450803743675351)", - "surface": 13420000, - "canton": null, - "numero_insee": "08452" - } - }, - { - "pk": 9169, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TOGES", - "center": "POINT (777740.0905025888932869 2494697.5851678638719022)", - "surface": 3510000, - "canton": null, - "numero_insee": "08453" - } - }, - { - "pk": 34174, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TOULIGNY", - "center": "POINT (764596.6120961452834308 2522302.5284754890017211)", - "surface": 7260000, - "canton": null, - "numero_insee": "08454" - } - }, - { - "pk": 33409, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TOURCELLES-CHAUMONT", - "center": "POINT (764460.8600637925555930 2491282.2167050801217556)", - "surface": 4860000, - "canton": null, - "numero_insee": "08455" - } - }, - { - "pk": 8161, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TOURNAVAUX", - "center": "POINT (776114.0856284180190414 2544513.9753788113594055)", - "surface": 1650000, - "canton": null, - "numero_insee": "08456" - } - }, - { - "pk": 6031, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TOURNES", - "center": "POINT (765980.5124668837524951 2536022.5464918836951256)", - "surface": 8220000, - "canton": null, - "numero_insee": "08457" - } - }, - { - "pk": 7060, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TOURTERON", - "center": "POINT (767026.6891658335225657 2507214.0183797921054065)", - "surface": 8910000, - "canton": null, - "numero_insee": "08458" - } - }, - { - "pk": 28509, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TREMBLOIS-LES-CARIGNAN", - "center": "POINT (811224.8679736590711400 2522300.7635369813069701)", - "surface": 4340000, - "canton": null, - "numero_insee": "08459" - } - }, - { - "pk": 6005, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "TREMBLOIS-LES-ROCROI", - "center": "POINT (755833.4762543630786240 2540838.9516424234025180)", - "surface": 1690000, - "canton": null, - "numero_insee": "08460" - } - }, - { - "pk": 17729, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VANDY", - "center": "POINT (772823.7101735016331077 2496256.6278852038085461)", - "surface": 11020000, - "canton": null, - "numero_insee": "08461" - } - }, - { - "pk": 22500, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VAUX-CHAMPAGNE", - "center": "POINT (760513.4881894290447235 2496551.8967108768410981)", - "surface": 10870000, - "canton": null, - "numero_insee": "08462" - } - }, - { - "pk": 28098, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VAUX-EN-DIEULET", - "center": "POINT (792494.4194772386690602 2501127.5726949148811400)", - "surface": 10920000, - "canton": null, - "numero_insee": "08463" - } - }, - { - "pk": 27619, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VAUX-LES-MOURON", - "center": "POINT (778160.6968193817883730 2480592.2397348848171532)", - "surface": 2190000, - "canton": null, - "numero_insee": "08464" - } - }, - { - "pk": 33922, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VAUX-LES-RUBIGNY", - "center": "POINT (733371.4940651326905936 2523037.2747919857501984)", - "surface": 3930000, - "canton": null, - "numero_insee": "08465" - } - }, - { - "pk": 37101, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VAUX-LES-MOUZON", - "center": "POINT (802579.3070308647584170 2515322.5419622617773712)", - "surface": 7600000, - "canton": null, - "numero_insee": "08466" - } - }, - { - "pk": 13548, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VAUX-MONTREUIL", - "center": "POINT (760684.0276820954168215 2511762.7728177681565285)", - "surface": 8390000, - "canton": null, - "numero_insee": "08467" - } - }, - { - "pk": 7143, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VAUX-VILLAINE", - "center": "POINT (754004.9390024689491838 2532318.3295908174477518)", - "surface": 10020000, - "canton": null, - "numero_insee": "08468" - } - }, - { - "pk": 17571, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VENDRESSE", - "center": "POINT (777570.1094935936853290 2514608.4722214778885245)", - "surface": 43420000, - "canton": null, - "numero_insee": "08469" - } - }, - { - "pk": 28758, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VERPEL", - "center": "POINT (788285.2505092043429613 2490184.7543945340439677)", - "surface": 15330000, - "canton": null, - "numero_insee": "08470" - } - }, - { - "pk": 13491, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VERRIERES", - "center": "POINT (784775.6526085640070960 2502762.6672030934132636)", - "surface": 6390000, - "canton": null, - "numero_insee": "08471" - } - }, - { - "pk": 6287, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VIEUX-LES-ASFELD", - "center": "POINT (728395.7287110259057954 2496278.5727085587568581)", - "surface": 6680000, - "canton": null, - "numero_insee": "08473" - } - }, - { - "pk": 19864, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-CERNAY", - "center": "POINT (795747.3444246595026925 2530273.1846936750225723)", - "surface": 21910000, - "canton": null, - "numero_insee": "08475" - } - }, - { - "pk": 6727, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-DEVANT-LE-THOUR", - "center": "POINT (726144.3617026124848053 2502163.1204957556910813)", - "surface": 16440000, - "canton": null, - "numero_insee": "08476" - } - }, - { - "pk": 35078, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-DEVANT-MOUZON", - "center": "POINT (793853.2313464533071965 2517749.4263506415300071)", - "surface": 4510000, - "canton": null, - "numero_insee": "08477" - } - }, - { - "pk": 5679, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-LE-TILLEUL", - "center": "POINT (772846.2311550402082503 2517069.6793400729075074)", - "surface": 8640000, - "canton": null, - "numero_insee": "08478" - } - }, - { - "pk": 28924, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-LE-TOURNEUR", - "center": "POINT (761046.7188661738764495 2516168.5569418002851307)", - "surface": 7860000, - "canton": null, - "numero_insee": "08479" - } - }, - { - "pk": 28734, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-SEMEUSE", - "center": "POINT (774138.5341365477070212 2529788.3872351828031242)", - "surface": 6910000, - "canton": null, - "numero_insee": "08480" - } - }, - { - "pk": 13319, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-SUR-BAR", - "center": "POINT (781897.2809646123787388 2523450.7766021904535592)", - "surface": 5390000, - "canton": null, - "numero_insee": "08481" - } - }, - { - "pk": 20605, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLERS-SUR-LE-MONT", - "center": "POINT (769311.0645226595224813 2520941.8888455531559885)", - "surface": 5290000, - "canton": null, - "numero_insee": "08482" - } - }, - { - "pk": 23595, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLE-SUR-LUMES", - "center": "POINT (777325.6980377652216703 2531516.6114129321649671)", - "surface": 3120000, - "canton": null, - "numero_insee": "08483" - } - }, - { - "pk": 31026, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLE-SUR-RETOURNE", - "center": "POINT (753260.5798708681249991 2490486.3311592089012265)", - "surface": 9660000, - "canton": null, - "numero_insee": "08484" - } - }, - { - "pk": 6374, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VILLY", - "center": "POINT (808689.4482527060899884 2514574.3547815429046750)", - "surface": 7740000, - "canton": null, - "numero_insee": "08485" - } - }, - { - "pk": 9437, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VIREUX-MOLHAIN", - "center": "POINT (769717.9759914687601849 2567072.4571504984050989)", - "surface": 8320000, - "canton": null, - "numero_insee": "08486" - } - }, - { - "pk": 35321, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VIREUX-WALLERAND", - "center": "POINT (772838.2995005461852998 2564897.8302245372906327)", - "surface": 21250000, - "canton": null, - "numero_insee": "08487" - } - }, - { - "pk": 25588, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VIVIER-AU-COURT", - "center": "POINT (779449.0145985133713111 2528933.1827766341157258)", - "surface": 9410000, - "canton": null, - "numero_insee": "08488" - } - }, - { - "pk": 15434, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VONCQ", - "center": "POINT (770091.4870434107724577 2499835.5673833056353033)", - "surface": 19800000, - "canton": null, - "numero_insee": "08489" - } - }, - { - "pk": 14903, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VOUZIERS", - "center": "POINT (771761.5166041756747290 2491744.7366332062520087)", - "surface": 27990000, - "canton": null, - "numero_insee": "08490" - } - }, - { - "pk": 36971, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VRIGNE-AUX-BOIS", - "center": "POINT (781745.1003369155805558 2529553.1516100615262985)", - "surface": 8020000, - "canton": null, - "numero_insee": "08491" - } - }, - { - "pk": 6744, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VRIGNE-MEUSE", - "center": "POINT (780375.1223205869318917 2525939.2864355477504432)", - "surface": 4500000, - "canton": null, - "numero_insee": "08492" - } - }, - { - "pk": 22477, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "VRIZY", - "center": "POINT (769629.6197125361068174 2495328.8126393137499690)", - "surface": 8240000, - "canton": null, - "numero_insee": "08493" - } - }, - { - "pk": 19513, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "WADELINCOURT", - "center": "POINT (787300.1533805563813075 2523496.9343097247183323)", - "surface": 4250000, - "canton": null, - "numero_insee": "08494" - } - }, - { - "pk": 8684, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "WAGNON", - "center": "POINT (752419.9409913518466055 2518696.6366222798824310)", - "surface": 15330000, - "canton": null, - "numero_insee": "08496" - } - }, - { - "pk": 25785, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "WARCQ", - "center": "POINT (768010.5722825244301930 2532637.8360969293862581)", - "surface": 9200000, - "canton": null, - "numero_insee": "08497" - } - }, - { - "pk": 10885, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "WARNECOURT", - "center": "POINT (767344.3405694138491526 2528629.7588874977082014)", - "surface": 5320000, - "canton": null, - "numero_insee": "08498" - } - }, - { - "pk": 31714, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "WASIGNY", - "center": "POINT (746136.1564493904588744 2516341.7339444938115776)", - "surface": 9900000, - "canton": null, - "numero_insee": "08499" - } - }, - { - "pk": 12294, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "WIGNICOURT", - "center": "POINT (762480.7367740676272660 2512278.3951811357401311)", - "surface": 4510000, - "canton": null, - "numero_insee": "08500" - } - }, - { - "pk": 29710, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "WILLIERS", - "center": "POINT (814119.5576007290510461 2523126.0445273960940540)", - "surface": 2290000, - "canton": null, - "numero_insee": "08501" - } - }, - { - "pk": 6637, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "YONCQ", - "center": "POINT (794009.7491468635853380 2511146.7214902136474848)", - "surface": 15570000, - "canton": null, - "numero_insee": "08502" - } - }, - { - "pk": 30610, - "model": "ishtar_common.town", - "fields": { - "departement": 8, - "name": "YVERNAUMONT", - "center": "POINT (767999.2762151148635894 2522231.4868538193404675)", - "surface": 2770000, - "canton": null, - "numero_insee": "08503" - } - }, - { - "pk": 24639, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AIGUES-JUNTES", - "center": "POINT (529311.0278988475911319 1783462.6473466071765870)", - "surface": 7700000, - "canton": null, - "numero_insee": "09001" - } - }, - { - "pk": 3110, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AIGUES-VIVES", - "center": "POINT (562398.3214179469505325 1777631.9709073703270406)", - "surface": 5220000, - "canton": null, - "numero_insee": "09002" - } - }, - { - "pk": 10590, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "L'AIGUILLON", - "center": "POINT (564285.7566678539151326 1767435.7823111256584525)", - "surface": 6460000, - "canton": null, - "numero_insee": "09003" - } - }, - { - "pk": 29292, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ALBIES", - "center": "POINT (547509.2448190448340029 1750275.3486010993365198)", - "surface": 7790000, - "canton": null, - "numero_insee": "09004" - } - }, - { - "pk": 15286, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ALEU", - "center": "POINT (512434.9948308022576384 1766201.8831570385955274)", - "surface": 14100000, - "canton": null, - "numero_insee": "09005" - } - }, - { - "pk": 37054, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ALLIAT", - "center": "POINT (538040.1937843628693372 1757204.5683986712247133)", - "surface": 3450000, - "canton": null, - "numero_insee": "09006" - } - }, - { - "pk": 10584, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ALLIERES", - "center": "POINT (520511.3869250546558760 1782187.8552136509679258)", - "surface": 9120000, - "canton": null, - "numero_insee": "09007" - } - }, - { - "pk": 14622, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ALOS", - "center": "POINT (501115.7854555826052092 1766908.5666884495876729)", - "surface": 23850000, - "canton": null, - "numero_insee": "09008" - } - }, - { - "pk": 3279, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ALZEN", - "center": "POINT (527973.7993459926219657 1775742.4840441071428359)", - "surface": 17940000, - "canton": null, - "numero_insee": "09009" - } - }, - { - "pk": 22791, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ANTRAS", - "center": "POINT (482414.9979306217283010 1764350.2062686686404049)", - "surface": 20190000, - "canton": null, - "numero_insee": "09011" - } - }, - { - "pk": 31723, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "APPY", - "center": "POINT (551168.2006844324059784 1755712.3494645564351231)", - "surface": 6130000, - "canton": null, - "numero_insee": "09012" - } - }, - { - "pk": 8938, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARABAUX", - "center": "POINT (542493.1325760945910588 1775463.2184385978616774)", - "surface": 4590000, - "canton": null, - "numero_insee": "09013" - } - }, - { - "pk": 31307, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARGEIN", - "center": "POINT (489877.5505185219808482 1769918.7238001753576100)", - "surface": 11110000, - "canton": null, - "numero_insee": "09014" - } - }, - { - "pk": 35413, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARIGNAC", - "center": "POINT (539285.6320046433247626 1763922.8966769156977534)", - "surface": 8650000, - "canton": null, - "numero_insee": "09015" - } - }, - { - "pk": 36357, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARNAVE", - "center": "POINT (543412.7674141901079565 1761254.1762701780535281)", - "surface": 8370000, - "canton": null, - "numero_insee": "09016" - } - }, - { - "pk": 5578, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARRIEN-EN-BETHMALE", - "center": "POINT (495506.2399572885478847 1767262.3592295204289258)", - "surface": 14440000, - "canton": null, - "numero_insee": "09017" - } - }, - { - "pk": 10008, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARROUT", - "center": "POINT (492259.3933492697542533 1772441.4713987410068512)", - "surface": 3010000, - "canton": null, - "numero_insee": "09018" - } - }, - { - "pk": 26375, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARTIGAT", - "center": "POINT (527423.0359567068517208 1793758.8778490247204900)", - "surface": 24120000, - "canton": null, - "numero_insee": "09019" - } - }, - { - "pk": 18507, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARTIGUES", - "center": "POINT (575403.2905371917877346 1742999.7797864195890725)", - "surface": 12450000, - "canton": null, - "numero_insee": "09020" - } - }, - { - "pk": 7509, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARTIX", - "center": "POINT (536805.8838351271115243 1785127.0662286684382707)", - "surface": 7440000, - "canton": null, - "numero_insee": "09021" - } - }, - { - "pk": 37190, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ARVIGNA", - "center": "POINT (550329.0446355274179950 1784238.8677541040815413)", - "surface": 8660000, - "canton": null, - "numero_insee": "09022" - } - }, - { - "pk": 23089, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ASCOU", - "center": "POINT (566665.8432679574470967 1746230.5590746207162738)", - "surface": 35800000, - "canton": null, - "numero_insee": "09023" - } - }, - { - "pk": 21495, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ASTON", - "center": "POINT (544273.2929075525607914 1742138.6420148173347116)", - "surface": 154240000, - "canton": null, - "numero_insee": "09024" - } - }, - { - "pk": 11839, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AUCAZEIN", - "center": "POINT (487877.8321006554178894 1769601.7439206680282950)", - "surface": 6050000, - "canton": null, - "numero_insee": "09025" - } - }, - { - "pk": 23010, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AUDRESSEIN", - "center": "POINT (492275.2130647950107232 1770539.3690623578149825)", - "surface": 4050000, - "canton": null, - "numero_insee": "09026" - } - }, - { - "pk": 29210, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AUGIREIN", - "center": "POINT (483781.6095867533003911 1768566.5170252094976604)", - "surface": 9710000, - "canton": null, - "numero_insee": "09027" - } - }, - { - "pk": 35411, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AULOS", - "center": "POINT (545471.8718998007243499 1754463.3190594862680882)", - "surface": 1060000, - "canton": null, - "numero_insee": "09028" - } - }, - { - "pk": 17018, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AULUS-LES-BAINS", - "center": "POINT (519562.1099772332236171 1751944.3429297427646816)", - "surface": 52920000, - "canton": null, - "numero_insee": "09029" - } - }, - { - "pk": 18346, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AUZAT", - "center": "POINT (526530.8002493104431778 1744693.7537800204008818)", - "surface": 163090000, - "canton": null, - "numero_insee": "09030" - } - }, - { - "pk": 11693, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AXIAT", - "center": "POINT (552773.3355019130976871 1755325.2933953106403351)", - "surface": 9640000, - "canton": null, - "numero_insee": "09031" - } - }, - { - "pk": 20824, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "AX-LES-THERMES", - "center": "POINT (557383.8634882875485346 1742748.8332177905831486)", - "surface": 30160000, - "canton": null, - "numero_insee": "09032" - } - }, - { - "pk": 7593, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BAGERT", - "center": "POINT (496642.7629230389138684 1787095.0129084454383701)", - "surface": 3310000, - "canton": null, - "numero_insee": "09033" - } - }, - { - "pk": 9595, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BALACET", - "center": "POINT (489210.0712892102892511 1765908.4603581933770329)", - "surface": 2140000, - "canton": null, - "numero_insee": "09034" - } - }, - { - "pk": 32456, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BALAGUERES", - "center": "POINT (492140.9654774613445625 1774643.0698392081540078)", - "surface": 18070000, - "canton": null, - "numero_insee": "09035" - } - }, - { - "pk": 13769, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BARJAC", - "center": "POINT (501865.1230594012886286 1785136.1419128607958555)", - "surface": 2750000, - "canton": null, - "numero_insee": "09037" - } - }, - { - "pk": 6282, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LA BASTIDE-DE-BESPLAS", - "center": "POINT (513381.0849271919578314 1796845.5187580734491348)", - "surface": 10360000, - "canton": null, - "numero_insee": "09038" - } - }, - { - "pk": 22776, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LA BASTIDE-DE-BOUSIGNAC", - "center": "POINT (563045.4801898424047977 1784044.8661923217587173)", - "surface": 12610000, - "canton": null, - "numero_insee": "09039" - } - }, - { - "pk": 11920, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LA BASTIDE-DE-LORDAT", - "center": "POINT (549252.6465597504284233 1793240.3390913303010166)", - "surface": 5990000, - "canton": null, - "numero_insee": "09040" - } - }, - { - "pk": 6667, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LA BASTIDE-DU-SALAT", - "center": "POINT (490852.2277143614483066 1785144.6342872879467905)", - "surface": 6720000, - "canton": null, - "numero_insee": "09041" - } - }, - { - "pk": 14930, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LA BASTIDE-DE-SEROU", - "center": "POINT (525740.4777831927640364 1779428.1877019270323217)", - "surface": 41380000, - "canton": null, - "numero_insee": "09042" - } - }, - { - "pk": 26828, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LA BASTIDE-SUR-L'HERS", - "center": "POINT (564247.2185850478708744 1772040.8728981916792691)", - "surface": 4800000, - "canton": null, - "numero_insee": "09043" - } - }, - { - "pk": 3902, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BAULOU", - "center": "POINT (535048.2015603242907673 1779806.2043017975520343)", - "surface": 14730000, - "canton": null, - "numero_insee": "09044" - } - }, - { - "pk": 10902, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BEDEILHAC-ET-AYNAT", - "center": "POINT (536979.7330585609888658 1764304.1149759879335761)", - "surface": 6580000, - "canton": null, - "numero_insee": "09045" - } - }, - { - "pk": 22484, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BEDEILLE", - "center": "POINT (499142.1684635839774273 1787516.2756847292184830)", - "surface": 9570000, - "canton": null, - "numero_insee": "09046" - } - }, - { - "pk": 37445, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BELESTA", - "center": "POINT (568505.4969190722331405 1765668.9797810490708798)", - "surface": 26890000, - "canton": null, - "numero_insee": "09047" - } - }, - { - "pk": 28065, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BELLOC", - "center": "POINT (566998.3579084856901318 1778271.1704432608094066)", - "surface": 9710000, - "canton": null, - "numero_insee": "09048" - } - }, - { - "pk": 3630, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BENAC", - "center": "POINT (533802.7561811667401344 1773087.9561858689412475)", - "surface": 2800000, - "canton": null, - "numero_insee": "09049" - } - }, - { - "pk": 9775, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BENAGUES", - "center": "POINT (540600.0154206744628027 1786360.1460666572675109)", - "surface": 3100000, - "canton": null, - "numero_insee": "09050" - } - }, - { - "pk": 20332, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BENAIX", - "center": "POINT (560194.6125197915825993 1765799.6647040182724595)", - "surface": 14690000, - "canton": null, - "numero_insee": "09051" - } - }, - { - "pk": 37196, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BESSET", - "center": "POINT (559928.6820847208146006 1785620.6549407662823796)", - "surface": 8190000, - "canton": null, - "numero_insee": "09052" - } - }, - { - "pk": 5886, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BESTIAC", - "center": "POINT (555989.4682203924749047 1753850.4039703886955976)", - "surface": 6450000, - "canton": null, - "numero_insee": "09053" - } - }, - { - "pk": 18724, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BETCHAT", - "center": "POINT (493233.2105917027802207 1787767.4649537131190300)", - "surface": 22320000, - "canton": null, - "numero_insee": "09054" - } - }, - { - "pk": 22643, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BETHMALE", - "center": "POINT (496851.8289151361677796 1761967.2969202692620456)", - "surface": 31900000, - "canton": null, - "numero_insee": "09055" - } - }, - { - "pk": 30018, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BEZAC", - "center": "POINT (537727.5735495471162722 1794645.8033369923941791)", - "surface": 8300000, - "canton": null, - "numero_insee": "09056" - } - }, - { - "pk": 23132, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BIERT", - "center": "POINT (515829.5908686660695821 1767331.4661607169546187)", - "surface": 23760000, - "canton": null, - "numero_insee": "09057" - } - }, - { - "pk": 6887, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BOMPAS", - "center": "POINT (541300.3963663919130340 1762437.9506733822636306)", - "surface": 2820000, - "canton": null, - "numero_insee": "09058" - } - }, - { - "pk": 19407, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BONNAC", - "center": "POINT (538909.6540348888374865 1796958.3369319746270776)", - "surface": 9760000, - "canton": null, - "numero_insee": "09060" - } - }, - { - "pk": 35158, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LES BORDES-SUR-ARIZE", - "center": "POINT (520842.5506929299444892 1790500.2848892514593899)", - "surface": 12900000, - "canton": null, - "numero_insee": "09061" - } - }, - { - "pk": 15266, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LES BORDES-SUR-LEZ", - "center": "POINT (493266.1407879675389268 1759734.8638384882360697)", - "surface": 49470000, - "canton": null, - "numero_insee": "09062" - } - }, - { - "pk": 17079, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE BOSC", - "center": "POINT (527117.9029139197664335 1770329.0019674440845847)", - "surface": 25460000, - "canton": null, - "numero_insee": "09063" - } - }, - { - "pk": 7116, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BOUAN", - "center": "POINT (543167.6283258229959756 1754644.3060131540987641)", - "surface": 3410000, - "canton": null, - "numero_insee": "09064" - } - }, - { - "pk": 16766, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BRASSAC", - "center": "POINT (532525.5497732708463445 1770173.8875113064423203)", - "surface": 24530000, - "canton": null, - "numero_insee": "09066" - } - }, - { - "pk": 7192, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BRIE", - "center": "POINT (533170.8706864011473954 1800814.9366514498833567)", - "surface": 7200000, - "canton": null, - "numero_insee": "09067" - } - }, - { - "pk": 33777, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BURRET", - "center": "POINT (529302.7968302688095719 1772449.6987490151077509)", - "surface": 4940000, - "canton": null, - "numero_insee": "09068" - } - }, - { - "pk": 5158, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "BUZAN", - "center": "POINT (487343.1553077138960361 1773702.1190279892180115)", - "surface": 8620000, - "canton": null, - "numero_insee": "09069" - } - }, - { - "pk": 37055, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LES CABANNES", - "center": "POINT (546679.0690475691808388 1753772.5744167845696211)", - "surface": 880000, - "canton": null, - "numero_insee": "09070" - } - }, - { - "pk": 22265, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CADARCET", - "center": "POINT (531748.7493817480280995 1779278.0809575780294836)", - "surface": 11050000, - "canton": null, - "numero_insee": "09071" - } - }, - { - "pk": 31634, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CALZAN", - "center": "POINT (551255.1363740089582279 1781243.1065432394389063)", - "surface": 4050000, - "canton": null, - "numero_insee": "09072" - } - }, - { - "pk": 18510, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAMARADE", - "center": "POINT (513473.6701349461218342 1785733.3988677843008190)", - "surface": 28040000, - "canton": null, - "numero_insee": "09073" - } - }, - { - "pk": 35233, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAMON", - "center": "POINT (569287.4787791687995195 1779892.2054872852750123)", - "surface": 10300000, - "canton": null, - "numero_insee": "09074" - } - }, - { - "pk": 33698, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAMPAGNE-SUR-ARIZE", - "center": "POINT (517231.9432553662918508 1791271.1163568659685552)", - "surface": 13370000, - "canton": null, - "numero_insee": "09075" - } - }, - { - "pk": 16514, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CANTE", - "center": "POINT (533833.1944976462982595 1805425.7673349988181144)", - "surface": 9740000, - "canton": null, - "numero_insee": "09076" - } - }, - { - "pk": 13728, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAPOULET-ET-JUNAC", - "center": "POINT (537561.3688887764001265 1754597.4849264561198652)", - "surface": 2850000, - "canton": null, - "numero_insee": "09077" - } - }, - { - "pk": 8044, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CARCANIERES", - "center": "POINT (582495.3390371954301372 1744961.4764101156033576)", - "surface": 6480000, - "canton": null, - "numero_insee": "09078" - } - }, - { - "pk": 27247, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CARLA-BAYLE", - "center": "POINT (521402.3070594271994196 1795410.6365246959030628)", - "surface": 36020000, - "canton": null, - "numero_insee": "09079" - } - }, - { - "pk": 7324, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CARLA-DE-ROQUEFORT", - "center": "POINT (553010.5695632569259033 1774850.2885914724320173)", - "surface": 9550000, - "canton": null, - "numero_insee": "09080" - } - }, - { - "pk": 37299, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE CARLARET", - "center": "POINT (547559.1592295407317579 1792225.0262916863430291)", - "surface": 9500000, - "canton": null, - "numero_insee": "09081" - } - }, - { - "pk": 20895, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CASTELNAU-DURBAN", - "center": "POINT (518350.6942894858075306 1777163.9944033378269523)", - "surface": 13150000, - "canton": null, - "numero_insee": "09082" - } - }, - { - "pk": 25769, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CASTERAS", - "center": "POINT (523933.4138597768615000 1792027.7996437291149050)", - "surface": 1840000, - "canton": null, - "numero_insee": "09083" - } - }, - { - "pk": 8721, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CASTEX", - "center": "POINT (517089.2816213762271218 1796375.8409691217821091)", - "surface": 7160000, - "canton": null, - "numero_insee": "09084" - } - }, - { - "pk": 24726, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CASTILLON-EN-COUSERANS", - "center": "POINT (495191.7489586824085563 1768961.7457534135319293)", - "surface": 5050000, - "canton": null, - "numero_insee": "09085" - } - }, - { - "pk": 35308, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAUSSOU", - "center": "POINT (557705.6036372617818415 1752162.7357712120283395)", - "surface": 15820000, - "canton": null, - "numero_insee": "09087" - } - }, - { - "pk": 4815, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAYCHAX", - "center": "POINT (550062.7882416333304718 1756203.7027585767209530)", - "surface": 5640000, - "canton": null, - "numero_insee": "09088" - } - }, - { - "pk": 32973, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAZALS-DES-BAYLES", - "center": "POINT (567618.6789597357856110 1787887.5678888745605946)", - "surface": 4690000, - "canton": null, - "numero_insee": "09089" - } - }, - { - "pk": 3353, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAZAUX", - "center": "POINT (533213.6358652054332197 1783695.4472265460062772)", - "surface": 7380000, - "canton": null, - "numero_insee": "09090" - } - }, - { - "pk": 13041, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAZAVET", - "center": "POINT (493614.3097931706579402 1778059.3097819676622748)", - "surface": 18140000, - "canton": null, - "numero_insee": "09091" - } - }, - { - "pk": 29007, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CAZENAVE-SERRES-ET-ALLENS", - "center": "POINT (547026.8126733334502205 1760082.9516953486017883)", - "surface": 16370000, - "canton": null, - "numero_insee": "09092" - } - }, - { - "pk": 32150, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CELLES", - "center": "POINT (547658.1542782926699147 1768398.0273608372081071)", - "surface": 10380000, - "canton": null, - "numero_insee": "09093" - } - }, - { - "pk": 15026, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CERIZOLS", - "center": "POINT (496505.1734343562275171 1791599.1011399084236473)", - "surface": 14490000, - "canton": null, - "numero_insee": "09094" - } - }, - { - "pk": 9731, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CESCAU", - "center": "POINT (494579.4250100504723378 1770358.2997630713507533)", - "surface": 5360000, - "canton": null, - "numero_insee": "09095" - } - }, - { - "pk": 6999, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CHATEAU-VERDUN", - "center": "POINT (545881.5203663954744115 1753365.4349102317355573)", - "surface": 810000, - "canton": null, - "numero_insee": "09096" - } - }, - { - "pk": 12713, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CLERMONT", - "center": "POINT (514504.7968110429937951 1782137.7906231845263392)", - "surface": 7460000, - "canton": null, - "numero_insee": "09097" - } - }, - { - "pk": 20000, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CONTRAZY", - "center": "POINT (507777.4278545568813570 1784484.5503373555839062)", - "surface": 8460000, - "canton": null, - "numero_insee": "09098" - } - }, - { - "pk": 9774, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "COS", - "center": "POINT (537186.4516916058491915 1775519.0194427818059921)", - "surface": 6530000, - "canton": null, - "numero_insee": "09099" - } - }, - { - "pk": 15416, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "COUFLENS", - "center": "POINT (505256.0948946489952505 1750623.7224725065752864)", - "surface": 56440000, - "canton": null, - "numero_insee": "09100" - } - }, - { - "pk": 28318, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "COUSSA", - "center": "POINT (547120.5169188890140504 1784812.7526753342244774)", - "surface": 7750000, - "canton": null, - "numero_insee": "09101" - } - }, - { - "pk": 15610, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "COUTENS", - "center": "POINT (558030.7876381779788062 1785104.1968501862138510)", - "surface": 4240000, - "canton": null, - "numero_insee": "09102" - } - }, - { - "pk": 8600, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "CRAMPAGNA", - "center": "POINT (538944.1309874569997191 1780839.9004094416741282)", - "surface": 9960000, - "canton": null, - "numero_insee": "09103" - } - }, - { - "pk": 33696, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "DALOU", - "center": "POINT (543749.4058346480596811 1780880.0344042780343443)", - "surface": 7760000, - "canton": null, - "numero_insee": "09104" - } - }, - { - "pk": 30019, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "DAUMAZAN-SUR-ARIZE", - "center": "POINT (515807.0551225384697318 1794062.4902083179913461)", - "surface": 13980000, - "canton": null, - "numero_insee": "09105" - } - }, - { - "pk": 6965, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "DREUILHE", - "center": "POINT (561850.4298622328788042 1771319.9945318978279829)", - "surface": 7010000, - "canton": null, - "numero_insee": "09106" - } - }, - { - "pk": 6038, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "DUN", - "center": "POINT (555567.3941537649370730 1780378.1082494680304080)", - "surface": 41660000, - "canton": null, - "numero_insee": "09107" - } - }, - { - "pk": 7946, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "DURBAN-SUR-ARIZE", - "center": "POINT (519126.5398457448463887 1780173.9730378808453679)", - "surface": 6860000, - "canton": null, - "numero_insee": "09108" - } - }, - { - "pk": 22134, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "DURFORT", - "center": "POINT (528876.2287449196446687 1799577.7142060487531126)", - "surface": 11070000, - "canton": null, - "numero_insee": "09109" - } - }, - { - "pk": 33697, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ENCOURTIECH", - "center": "POINT (506462.5885164383798838 1774061.4324154839850962)", - "surface": 4900000, - "canton": null, - "numero_insee": "09110" - } - }, - { - "pk": 9384, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ENGOMER", - "center": "POINT (495770.7592426808550954 1771569.6218564659357071)", - "surface": 7630000, - "canton": null, - "numero_insee": "09111" - } - }, - { - "pk": 4733, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ERCE", - "center": "POINT (515293.9992641540011391 1759517.7878746041096747)", - "surface": 41020000, - "canton": null, - "numero_insee": "09113" - } - }, - { - "pk": 9056, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ERP", - "center": "POINT (506989.8181359646841884 1770862.0629858719184995)", - "surface": 9410000, - "canton": null, - "numero_insee": "09114" - } - }, - { - "pk": 34167, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ESCLAGNE", - "center": "POINT (559613.6623313660966232 1775406.0957091175951064)", - "surface": 3540000, - "canton": null, - "numero_insee": "09115" - } - }, - { - "pk": 15581, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ESCOSSE", - "center": "POINT (535747.1236811294220388 1792026.2537107397802174)", - "surface": 14980000, - "canton": null, - "numero_insee": "09116" - } - }, - { - "pk": 10215, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ESPLAS", - "center": "POINT (531788.5665225133998320 1798500.7434459701180458)", - "surface": 7720000, - "canton": null, - "numero_insee": "09117" - } - }, - { - "pk": 17610, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ESPLAS-DE-SEROU", - "center": "POINT (519583.7302106330171227 1773369.8161494815722108)", - "surface": 34580000, - "canton": null, - "numero_insee": "09118" - } - }, - { - "pk": 18145, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "EYCHEIL", - "center": "POINT (503466.7760741628007963 1773135.4324316082056612)", - "surface": 4900000, - "canton": null, - "numero_insee": "09119" - } - }, - { - "pk": 4395, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "FABAS", - "center": "POINT (500310.9889349224977195 1791430.5374956273008138)", - "surface": 23290000, - "canton": null, - "numero_insee": "09120" - } - }, - { - "pk": 10976, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "FERRIERES-SUR-ARIEGE", - "center": "POINT (540329.1652068531839177 1770839.7427155734039843)", - "surface": 3480000, - "canton": null, - "numero_insee": "09121" - } - }, - { - "pk": 10273, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "FORNEX", - "center": "POINT (510782.4259252298506908 1796323.2908380534499884)", - "surface": 9690000, - "canton": null, - "numero_insee": "09123" - } - }, - { - "pk": 33474, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE FOSSAT", - "center": "POINT (524886.0795474806800485 1797842.4651508727110922)", - "surface": 14580000, - "canton": null, - "numero_insee": "09124" - } - }, - { - "pk": 3361, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "FOUGAX-ET-BARRINEUF", - "center": "POINT (564119.8838926674798131 1763329.5566688280086964)", - "surface": 31490000, - "canton": null, - "numero_insee": "09125" - } - }, - { - "pk": 21054, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "FREYCHENET", - "center": "POINT (550285.3012009948724881 1765516.5657180449925363)", - "surface": 25540000, - "canton": null, - "numero_insee": "09126" - } - }, - { - "pk": 32079, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GABRE", - "center": "POINT (525192.3347673617536202 1785130.2723390627652407)", - "surface": 13700000, - "canton": null, - "numero_insee": "09127" - } - }, - { - "pk": 31707, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GAJAN", - "center": "POINT (501788.3451496349298395 1782332.2355730528943241)", - "surface": 8190000, - "canton": null, - "numero_insee": "09128" - } - }, - { - "pk": 33269, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GALEY", - "center": "POINT (482647.9447052411851473 1772461.6841149847023189)", - "surface": 9470000, - "canton": null, - "numero_insee": "09129" - } - }, - { - "pk": 17767, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GANAC", - "center": "POINT (536431.5374179135542363 1770006.2563914824277163)", - "surface": 20420000, - "canton": null, - "numero_insee": "09130" - } - }, - { - "pk": 15857, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GARANOU", - "center": "POINT (551404.4099293977487832 1751409.2141109015792608)", - "surface": 3090000, - "canton": null, - "numero_insee": "09131" - } - }, - { - "pk": 34944, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GAUDIES", - "center": "POINT (550624.0485452751163393 1796855.9722934146411717)", - "surface": 10520000, - "canton": null, - "numero_insee": "09132" - } - }, - { - "pk": 8086, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GENAT", - "center": "POINT (536826.3171433627139777 1758696.2110424265265465)", - "surface": 8240000, - "canton": null, - "numero_insee": "09133" - } - }, - { - "pk": 18936, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GESTIES", - "center": "POINT (538230.5867688048165292 1746393.3101508286781609)", - "surface": 27300000, - "canton": null, - "numero_insee": "09134" - } - }, - { - "pk": 32161, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GOULIER", - "center": "POINT (531799.1656863627722487 1749243.0801092574838549)", - "surface": 10340000, - "canton": null, - "numero_insee": "09135" - } - }, - { - "pk": 8427, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GOURBIT", - "center": "POINT (532621.6344298344338313 1758661.1124282460659742)", - "surface": 18130000, - "canton": null, - "numero_insee": "09136" - } - }, - { - "pk": 30809, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "GUDAS", - "center": "POINT (546277.2473762277513742 1777897.6442864397540689)", - "surface": 10800000, - "canton": null, - "numero_insee": "09137" - } - }, - { - "pk": 23351, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "L'HERM", - "center": "POINT (546204.7410863884724677 1774593.1705433558672667)", - "surface": 14840000, - "canton": null, - "numero_insee": "09138" - } - }, - { - "pk": 6083, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "L'HOSPITALET-PRES-L'ANDORRE", - "center": "POINT (553965.3046599772060290 1732508.0077438054140657)", - "surface": 26810000, - "canton": null, - "numero_insee": "09139" - } - }, - { - "pk": 20517, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "IGNAUX", - "center": "POINT (559735.4790547917364165 1748875.7863724085036665)", - "surface": 5470000, - "canton": null, - "numero_insee": "09140" - } - }, - { - "pk": 9339, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ILLARTEIN", - "center": "POINT (486875.0597132568946108 1769793.6428011271636933)", - "surface": 3960000, - "canton": null, - "numero_insee": "09141" - } - }, - { - "pk": 26193, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ILHAT", - "center": "POINT (554835.1568573846016079 1772162.3742874611634761)", - "surface": 6830000, - "canton": null, - "numero_insee": "09142" - } - }, - { - "pk": 22990, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ILLIER-ET-LARAMADE", - "center": "POINT (534861.6935097561217844 1754174.4712857590056956)", - "surface": 5170000, - "canton": null, - "numero_insee": "09143" - } - }, - { - "pk": 5119, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LES ISSARDS", - "center": "POINT (551211.6211375087732449 1786448.8092472644057125)", - "surface": 3830000, - "canton": null, - "numero_insee": "09145" - } - }, - { - "pk": 5539, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "JUSTINIAC", - "center": "POINT (530960.9662019852548838 1801697.5332104605622590)", - "surface": 4580000, - "canton": null, - "numero_insee": "09146" - } - }, - { - "pk": 31021, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LABATUT", - "center": "POINT (533620.4452370234066620 1806925.7175050133373588)", - "surface": 3600000, - "canton": null, - "numero_insee": "09147" - } - }, - { - "pk": 7711, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LACAVE", - "center": "POINT (491866.6453903747024015 1783551.2039084541611373)", - "surface": 4570000, - "canton": null, - "numero_insee": "09148" - } - }, - { - "pk": 14440, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LACOURT", - "center": "POINT (504588.8291212065378204 1770641.8355183410458267)", - "surface": 16630000, - "canton": null, - "numero_insee": "09149" - } - }, - { - "pk": 4933, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LANOUX", - "center": "POINT (525541.8394531832309440 1791240.2851161388680339)", - "surface": 3760000, - "canton": null, - "numero_insee": "09151" - } - }, - { - "pk": 26723, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LAPEGE", - "center": "POINT (535847.7678402920719236 1755984.8401466165669262)", - "surface": 8390000, - "canton": null, - "numero_insee": "09152" - } - }, - { - "pk": 4464, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LAPENNE", - "center": "POINT (554254.7477525575086474 1793682.6178272247780114)", - "surface": 22060000, - "canton": null, - "numero_insee": "09153" - } - }, - { - "pk": 8804, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LARBONT", - "center": "POINT (523457.1486849110806361 1777106.4519717036746442)", - "surface": 6220000, - "canton": null, - "numero_insee": "09154" - } - }, - { - "pk": 8453, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LARCAT", - "center": "POINT (543290.3202267040032893 1751942.1218403256498277)", - "surface": 9320000, - "canton": null, - "numero_insee": "09155" - } - }, - { - "pk": 10390, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LARNAT", - "center": "POINT (541862.8305063280276954 1755033.8818737994879484)", - "surface": 5620000, - "canton": null, - "numero_insee": "09156" - } - }, - { - "pk": 36087, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LAROQUE-D'OLMES", - "center": "POINT (561928.7624456525081769 1773923.7041216925717890)", - "surface": 14330000, - "canton": null, - "numero_insee": "09157" - } - }, - { - "pk": 27318, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LASSERRE", - "center": "POINT (504255.2527931702206843 1786657.7865847349166870)", - "surface": 8660000, - "canton": null, - "numero_insee": "09158" - } - }, - { - "pk": 10997, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LASSUR", - "center": "POINT (549223.7010623678797856 1748787.8900197446346283)", - "surface": 11930000, - "canton": null, - "numero_insee": "09159" - } - }, - { - "pk": 23438, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LAVELANET", - "center": "POINT (559858.2683934115339071 1770101.9165721489116549)", - "surface": 12770000, - "canton": null, - "numero_insee": "09160" - } - }, - { - "pk": 21113, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LERAN", - "center": "POINT (565817.9845068678259850 1775758.3617762234061956)", - "surface": 12130000, - "canton": null, - "numero_insee": "09161" - } - }, - { - "pk": 15288, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LERCOUL", - "center": "POINT (533532.8258225298486650 1745453.0167129703331739)", - "surface": 19430000, - "canton": null, - "numero_insee": "09162" - } - }, - { - "pk": 24925, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LESCOUSSE", - "center": "POINT (532823.9078914634883404 1794404.6377262864261866)", - "surface": 8510000, - "canton": null, - "numero_insee": "09163" - } - }, - { - "pk": 21238, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LESCURE", - "center": "POINT (510526.2541517397621647 1779001.0196911646053195)", - "surface": 26010000, - "canton": null, - "numero_insee": "09164" - } - }, - { - "pk": 24846, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LESPARROU", - "center": "POINT (567472.5427335670683533 1769464.8102726684883237)", - "surface": 16420000, - "canton": null, - "numero_insee": "09165" - } - }, - { - "pk": 31862, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LEYCHERT", - "center": "POINT (550034.0364663299405947 1771621.6488829674199224)", - "surface": 5880000, - "canton": null, - "numero_insee": "09166" - } - }, - { - "pk": 18509, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LEZAT-SUR-LEZE", - "center": "POINT (519285.8018019350711256 1809108.7938515355344862)", - "surface": 40430000, - "canton": null, - "numero_insee": "09167" - } - }, - { - "pk": 9310, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LIEURAC", - "center": "POINT (555304.7352705938974395 1775870.6435284032486379)", - "surface": 6430000, - "canton": null, - "numero_insee": "09168" - } - }, - { - "pk": 31646, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LIMBRASSAC", - "center": "POINT (559686.1368020250229165 1778710.5679327719844878)", - "surface": 12450000, - "canton": null, - "numero_insee": "09169" - } - }, - { - "pk": 9304, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LISSAC", - "center": "POINT (532814.5681789238005877 1807519.6815426759421825)", - "surface": 3810000, - "canton": null, - "numero_insee": "09170" - } - }, - { - "pk": 21494, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LORDAT", - "center": "POINT (554677.1321657537482679 1755140.9738404224626720)", - "surface": 7470000, - "canton": null, - "numero_insee": "09171" - } - }, - { - "pk": 8805, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LOUBAUT", - "center": "POINT (514164.4381939732120372 1798954.4746209343429655)", - "surface": 2340000, - "canton": null, - "numero_insee": "09172" - } - }, - { - "pk": 25974, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LOUBENS", - "center": "POINT (536126.8460454770829529 1782518.3639220378827304)", - "surface": 11800000, - "canton": null, - "numero_insee": "09173" - } - }, - { - "pk": 17915, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LOUBIERES", - "center": "POINT (539262.0161726009100676 1778740.0988260158337653)", - "surface": 3060000, - "canton": null, - "numero_insee": "09174" - } - }, - { - "pk": 13602, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LUDIES", - "center": "POINT (549471.2717965939082205 1791039.6128552905283868)", - "surface": 1890000, - "canton": null, - "numero_insee": "09175" - } - }, - { - "pk": 17773, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LUZENAC", - "center": "POINT (551246.0297103478806093 1746401.9317206996493042)", - "surface": 26540000, - "canton": null, - "numero_insee": "09176" - } - }, - { - "pk": 5710, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MADIERE", - "center": "POINT (532661.2867466781754047 1789898.0574525431729853)", - "surface": 10420000, - "canton": null, - "numero_insee": "09177" - } - }, - { - "pk": 29801, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MALEGOUDE", - "center": "POINT (567100.5348697033477947 1789985.6728867576457560)", - "surface": 6190000, - "canton": null, - "numero_insee": "09178" - } - }, - { - "pk": 6508, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MALLEON", - "center": "POINT (549252.1026052139932290 1781326.4811082903761417)", - "surface": 6860000, - "canton": null, - "numero_insee": "09179" - } - }, - { - "pk": 33245, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MANSES", - "center": "POINT (557293.1810425773728639 1789503.1498965800274163)", - "surface": 15430000, - "canton": null, - "numero_insee": "09180" - } - }, - { - "pk": 17101, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE MAS-D'AZIL", - "center": "POINT (519381.8043488500989042 1785582.4049474706407636)", - "surface": 39560000, - "canton": null, - "numero_insee": "09181" - } - }, - { - "pk": 18200, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MASSAT", - "center": "POINT (520649.9378214771859348 1765569.5242363824509084)", - "surface": 45170000, - "canton": null, - "numero_insee": "09182" - } - }, - { - "pk": 12085, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MAUVEZIN-DE-PRAT", - "center": "POINT (490178.0981758171110414 1781935.2938146137166768)", - "surface": 1810000, - "canton": null, - "numero_insee": "09183" - } - }, - { - "pk": 31864, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MAUVEZIN-DE-SAINTE-CROIX", - "center": "POINT (509862.2202311486471444 1786604.3615071647800505)", - "surface": 5330000, - "canton": null, - "numero_insee": "09184" - } - }, - { - "pk": 23116, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MAZERES", - "center": "POINT (546465.2199955558171496 1803328.7235849136486650)", - "surface": 44240000, - "canton": null, - "numero_insee": "09185" - } - }, - { - "pk": 18720, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MERCENAC", - "center": "POINT (496466.6977051334688440 1784190.1679955273866653)", - "surface": 13650000, - "canton": null, - "numero_insee": "09187" - } - }, - { - "pk": 21919, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MERCUS-GARRABET", - "center": "POINT (543287.5674229948781431 1764256.6757239054422826)", - "surface": 15060000, - "canton": null, - "numero_insee": "09188" - } - }, - { - "pk": 17051, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MERENS-LES-VALS", - "center": "POINT (558640.4840757016791031 1736151.4342448648530990)", - "surface": 80530000, - "canton": null, - "numero_insee": "09189" - } - }, - { - "pk": 6239, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MERIGON", - "center": "POINT (507646.4714613235555589 1788187.7701549704652280)", - "surface": 6330000, - "canton": null, - "numero_insee": "09190" - } - }, - { - "pk": 13585, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MIGLOS", - "center": "POINT (539975.7564700957154855 1753215.9827478537335992)", - "surface": 18770000, - "canton": null, - "numero_insee": "09192" - } - }, - { - "pk": 16171, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MIJANES", - "center": "POINT (573282.4805609636241570 1745184.6453780236188322)", - "surface": 39750000, - "canton": null, - "numero_insee": "09193" - } - }, - { - "pk": 21356, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MIREPOIX", - "center": "POINT (561796.4219620535150170 1789741.0523815713822842)", - "surface": 47670000, - "canton": null, - "numero_insee": "09194" - } - }, - { - "pk": 8408, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONESPLE", - "center": "POINT (529770.6474581765942276 1788372.1915797421243042)", - "surface": 6120000, - "canton": null, - "numero_insee": "09195" - } - }, - { - "pk": 6164, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTAGAGNE", - "center": "POINT (524485.8029476079391316 1773811.1606285404413939)", - "surface": 6930000, - "canton": null, - "numero_insee": "09196" - } - }, - { - "pk": 6737, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTAILLOU", - "center": "POINT (564306.2881225679302588 1753018.9105980379972607)", - "surface": 8860000, - "canton": null, - "numero_insee": "09197" - } - }, - { - "pk": 4195, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTAUT", - "center": "POINT (544604.1430526190670207 1798407.5179827304091305)", - "surface": 35240000, - "canton": null, - "numero_insee": "09199" - } - }, - { - "pk": 22197, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTBEL", - "center": "POINT (569728.1504828009055927 1775090.2731691636145115)", - "surface": 17550000, - "canton": null, - "numero_insee": "09200" - } - }, - { - "pk": 30669, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTEGUT-EN-COUSERANS", - "center": "POINT (498333.6493214673246257 1776396.5808368213474751)", - "surface": 6300000, - "canton": null, - "numero_insee": "09201" - } - }, - { - "pk": 37036, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTEGUT-PLANTAUREL", - "center": "POINT (531390.7761210366152227 1786183.1491596717387438)", - "surface": 19250000, - "canton": null, - "numero_insee": "09202" - } - }, - { - "pk": 26188, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTELS", - "center": "POINT (529152.5707992794923484 1778455.4815558858681470)", - "surface": 3750000, - "canton": null, - "numero_insee": "09203" - } - }, - { - "pk": 20785, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTESQUIEU-AVANTES", - "center": "POINT (508499.0396359693259001 1781987.6420644298195839)", - "surface": 16600000, - "canton": null, - "numero_insee": "09204" - } - }, - { - "pk": 13958, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTFA", - "center": "POINT (514446.4037943470175378 1789145.4621145941782743)", - "surface": 8760000, - "canton": null, - "numero_insee": "09205" - } - }, - { - "pk": 19844, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTFERRIER", - "center": "POINT (553613.2372677446110174 1762640.9622024379204959)", - "surface": 52110000, - "canton": null, - "numero_insee": "09206" - } - }, - { - "pk": 30083, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTGAUCH", - "center": "POINT (496721.8896457680384628 1777584.5760311640333384)", - "surface": 9080000, - "canton": null, - "numero_insee": "09208" - } - }, - { - "pk": 18736, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTJOIE-EN-COUSERANS", - "center": "POINT (505113.6416083250660449 1779756.8793250927701592)", - "surface": 29920000, - "canton": null, - "numero_insee": "09209" - } - }, - { - "pk": 28593, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTOULIEU", - "center": "POINT (540060.6031867036363110 1767033.0259332482237369)", - "surface": 14280000, - "canton": null, - "numero_insee": "09210" - } - }, - { - "pk": 15284, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTSEGUR", - "center": "POINT (558140.0115645685000345 1760075.7427127743139863)", - "surface": 37450000, - "canton": null, - "numero_insee": "09211" - } - }, - { - "pk": 4327, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MONTSERON", - "center": "POINT (516622.9560395838925615 1780253.2220300226472318)", - "surface": 8740000, - "canton": null, - "numero_insee": "09212" - } - }, - { - "pk": 36049, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MOULIN-NEUF", - "center": "POINT (568239.4482940903399140 1785489.9694241357501596)", - "surface": 2880000, - "canton": null, - "numero_insee": "09213" - } - }, - { - "pk": 15204, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "MOULIS", - "center": "POINT (498670.6352322538150474 1771994.2205056766979396)", - "surface": 36840000, - "canton": null, - "numero_insee": "09214" - } - }, - { - "pk": 6633, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "NESCUS", - "center": "POINT (526261.9039803387131542 1776929.6100750975310802)", - "surface": 3010000, - "canton": null, - "numero_insee": "09216" - } - }, - { - "pk": 23613, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "NIAUX", - "center": "POINT (539541.8676712523447350 1757217.1080175021197647)", - "surface": 3950000, - "canton": null, - "numero_insee": "09217" - } - }, - { - "pk": 11381, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ORGEIX", - "center": "POINT (562100.8828561780974269 1741386.6182440239936113)", - "surface": 18540000, - "canton": null, - "numero_insee": "09218" - } - }, - { - "pk": 8587, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ORGIBET", - "center": "POINT (485570.2910070524085313 1770183.2674570740200579)", - "surface": 7620000, - "canton": null, - "numero_insee": "09219" - } - }, - { - "pk": 15770, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ORLU", - "center": "POINT (567123.2777718444122002 1739426.2550642937421799)", - "surface": 71530000, - "canton": null, - "numero_insee": "09220" - } - }, - { - "pk": 7238, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ORNOLAC-USSAT-LES-BAINS", - "center": "POINT (543341.0901844403706491 1757849.5516551735345274)", - "surface": 12140000, - "canton": null, - "numero_insee": "09221" - } - }, - { - "pk": 34477, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ORUS", - "center": "POINT (532353.0494358409196138 1754854.3636682920623571)", - "surface": 9050000, - "canton": null, - "numero_insee": "09222" - } - }, - { - "pk": 20715, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "OUST", - "center": "POINT (509662.7404456495423801 1762474.4200893379747868)", - "surface": 19080000, - "canton": null, - "numero_insee": "09223" - } - }, - { - "pk": 4633, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PAILHES", - "center": "POINT (527363.0118843980599195 1788952.8030251725576818)", - "surface": 21600000, - "canton": null, - "numero_insee": "09224" - } - }, - { - "pk": 19309, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PAMIERS", - "center": "POINT (541158.0312247842084616 1791470.7376929856836796)", - "surface": 46360000, - "canton": null, - "numero_insee": "09225" - } - }, - { - "pk": 35412, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PECH", - "center": "POINT (546700.8192509121727198 1751169.6644065370783210)", - "surface": 4790000, - "canton": null, - "numero_insee": "09226" - } - }, - { - "pk": 6054, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PEREILLE", - "center": "POINT (556758.1874061389826238 1769675.5158657759893686)", - "surface": 5480000, - "canton": null, - "numero_insee": "09227" - } - }, - { - "pk": 8968, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PERLES-ET-CASTELET", - "center": "POINT (553750.5124966118019074 1746222.6312477660831064)", - "surface": 18020000, - "canton": null, - "numero_insee": "09228" - } - }, - { - "pk": 33706, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE PEYRAT", - "center": "POINT (566545.5702494834549725 1772560.6961386092007160)", - "surface": 6220000, - "canton": null, - "numero_insee": "09229" - } - }, - { - "pk": 15190, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE PLA", - "center": "POINT (576907.4951453829417005 1742712.0220152379479259)", - "surface": 13200000, - "canton": null, - "numero_insee": "09230" - } - }, - { - "pk": 21539, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE PORT", - "center": "POINT (522001.4668079428374767 1759573.7013002810999751)", - "surface": 50220000, - "canton": null, - "numero_insee": "09231" - } - }, - { - "pk": 23129, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PRADES", - "center": "POINT (560891.5964755052700639 1754291.8830190710723400)", - "surface": 29210000, - "canton": null, - "numero_insee": "09232" - } - }, - { - "pk": 9311, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PRADETTES", - "center": "POINT (557801.6298427486326545 1776592.3455649451352656)", - "surface": 3510000, - "canton": null, - "numero_insee": "09233" - } - }, - { - "pk": 23542, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PRADIERES", - "center": "POINT (544313.5171752673340961 1773275.8436183086596429)", - "surface": 6760000, - "canton": null, - "numero_insee": "09234" - } - }, - { - "pk": 21778, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PRAT-BONREPAUX", - "center": "POINT (493183.0604134725872427 1781760.0506367872003466)", - "surface": 14600000, - "canton": null, - "numero_insee": "09235" - } - }, - { - "pk": 11794, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "PRAYOLS", - "center": "POINT (539844.4967384869232774 1768933.4594561699777842)", - "surface": 7920000, - "canton": null, - "numero_insee": "09236" - } - }, - { - "pk": 9770, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE PUCH", - "center": "POINT (580481.3450567421969026 1746346.2687692879699171)", - "surface": 2840000, - "canton": null, - "numero_insee": "09237" - } - }, - { - "pk": 24060, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LES PUJOLS", - "center": "POINT (549498.0461487026186660 1787836.1162974680773914)", - "surface": 13340000, - "canton": null, - "numero_insee": "09238" - } - }, - { - "pk": 14926, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "QUERIGUT", - "center": "POINT (581717.9333651089109480 1742151.6131076258607209)", - "surface": 36370000, - "canton": null, - "numero_insee": "09239" - } - }, - { - "pk": 7971, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "QUIE", - "center": "POINT (538715.8958994569256902 1760213.7646482028067112)", - "surface": 2490000, - "canton": null, - "numero_insee": "09240" - } - }, - { - "pk": 18813, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "RABAT-LES-TROIS-SEIGNEURS", - "center": "POINT (530802.9194492874667048 1760648.3026780695654452)", - "surface": 27010000, - "canton": null, - "numero_insee": "09241" - } - }, - { - "pk": 25054, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "RAISSAC", - "center": "POINT (557347.1294296544510871 1771082.0882464929018170)", - "surface": 3760000, - "canton": null, - "numero_insee": "09242" - } - }, - { - "pk": 10220, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "REGAT", - "center": "POINT (563210.9299965075915679 1776237.1301775688771158)", - "surface": 2170000, - "canton": null, - "numero_insee": "09243" - } - }, - { - "pk": 33445, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "RIEUCROS", - "center": "POINT (553217.1585384036879987 1786065.1092563811689615)", - "surface": 5660000, - "canton": null, - "numero_insee": "09244" - } - }, - { - "pk": 32298, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "RIEUX-DE-PELLEPORT", - "center": "POINT (539817.5316065582446754 1784151.0469936905428767)", - "surface": 8250000, - "canton": null, - "numero_insee": "09245" - } - }, - { - "pk": 16051, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "RIMONT", - "center": "POINT (513950.0163962231017649 1776626.7331848884932697)", - "surface": 29060000, - "canton": null, - "numero_insee": "09246" - } - }, - { - "pk": 3899, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ROQUEFIXADE", - "center": "POINT (553150.0180290492717177 1770145.9330006812233478)", - "surface": 12410000, - "canton": null, - "numero_insee": "09249" - } - }, - { - "pk": 26192, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ROUMENGOUX", - "center": "POINT (566333.1776821815874428 1785974.5952991289086640)", - "surface": 6820000, - "canton": null, - "numero_insee": "09251" - } - }, - { - "pk": 31225, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "ROUZE", - "center": "POINT (578160.3079614142188802 1748529.4438181868754327)", - "surface": 9560000, - "canton": null, - "numero_insee": "09252" - } - }, - { - "pk": 8674, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SABARAT", - "center": "POINT (523560.5268098168889992 1788720.8554373965598643)", - "surface": 9690000, - "canton": null, - "numero_insee": "09253" - } - }, - { - "pk": 13003, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-AMADOU", - "center": "POINT (549279.4203169601969421 1790036.8475928395055234)", - "surface": 4690000, - "canton": null, - "numero_insee": "09254" - } - }, - { - "pk": 11039, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-AMANS", - "center": "POINT (535717.8740880425320938 1795530.0677977383602411)", - "surface": 2700000, - "canton": null, - "numero_insee": "09255" - } - }, - { - "pk": 3885, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINTE-CROIX-VOLVESTRE", - "center": "POINT (504916.0118250386440195 1791468.8703342145308852)", - "surface": 20050000, - "canton": null, - "numero_insee": "09257" - } - }, - { - "pk": 28720, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-FELIX-DE-RIEUTORD", - "center": "POINT (545537.1645556854782626 1782596.9559630083385855)", - "surface": 6850000, - "canton": null, - "numero_insee": "09258" - } - }, - { - "pk": 27667, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-FELIX-DE-TOURNEGAT", - "center": "POINT (552672.2537117765750736 1791366.7182067208923399)", - "surface": 10550000, - "canton": null, - "numero_insee": "09259" - } - }, - { - "pk": 13813, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINTE-FOI", - "center": "POINT (565786.5471389326266944 1791476.4172695796005428)", - "surface": 2460000, - "canton": null, - "numero_insee": "09260" - } - }, - { - "pk": 9829, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-JEAN-D'AIGUES-VIVES", - "center": "POINT (562374.4367518263170496 1768521.0843595173209906)", - "surface": 4480000, - "canton": null, - "numero_insee": "09262" - } - }, - { - "pk": 25839, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-JEAN-DU-CASTILLONNAIS", - "center": "POINT (484845.3852658148971386 1773080.6516249671112746)", - "surface": 4760000, - "canton": null, - "numero_insee": "09263" - } - }, - { - "pk": 18985, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-JEAN-DE-VERGES", - "center": "POINT (542463.0289782821200788 1779067.1839053556323051)", - "surface": 12890000, - "canton": null, - "numero_insee": "09264" - } - }, - { - "pk": 31461, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-JEAN-DU-FALGA", - "center": "POINT (541893.9134757037973031 1787272.0006936297286302)", - "surface": 4050000, - "canton": null, - "numero_insee": "09265" - } - }, - { - "pk": 8282, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-JULIEN-DE-GRAS-CAPOU", - "center": "POINT (560763.0589188175508752 1781622.9679421053733677)", - "surface": 6250000, - "canton": null, - "numero_insee": "09266" - } - }, - { - "pk": 15455, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-LARY", - "center": "POINT (479786.3234591296059079 1767432.0220240084454417)", - "surface": 34260000, - "canton": null, - "numero_insee": "09267" - } - }, - { - "pk": 4369, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-LIZIER", - "center": "POINT (501322.7923505268990993 1778123.4490455905906856)", - "surface": 9090000, - "canton": null, - "numero_insee": "09268" - } - }, - { - "pk": 12447, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-MARTIN-DE-CARALP", - "center": "POINT (534672.8310920601943508 1776799.5590086840093136)", - "surface": 9250000, - "canton": null, - "numero_insee": "09269" - } - }, - { - "pk": 35389, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-MARTIN-D'OYDES", - "center": "POINT (530505.5312672441359609 1796287.4918272257782519)", - "surface": 11900000, - "canton": null, - "numero_insee": "09270" - } - }, - { - "pk": 31635, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-MICHEL", - "center": "POINT (531938.8006672407500446 1792495.0475215704645962)", - "surface": 5870000, - "canton": null, - "numero_insee": "09271" - } - }, - { - "pk": 34703, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-PAUL-DE-JARRAT", - "center": "POINT (545575.0661438952665776 1766077.9104916732758284)", - "surface": 22530000, - "canton": null, - "numero_insee": "09272" - } - }, - { - "pk": 34258, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-PIERRE-DE-RIVIERE", - "center": "POINT (536297.9956997833214700 1774009.8421256851870567)", - "surface": 2360000, - "canton": null, - "numero_insee": "09273" - } - }, - { - "pk": 33995, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-QUENTIN-LA-TOUR", - "center": "POINT (564873.4258092347299680 1780956.5434438346419483)", - "surface": 8900000, - "canton": null, - "numero_insee": "09274" - } - }, - { - "pk": 36267, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-QUIRC", - "center": "POINT (532102.9518147673225030 1808815.2366634842474014)", - "surface": 3730000, - "canton": null, - "numero_insee": "09275" - } - }, - { - "pk": 15582, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-VICTOR-ROUZAUD", - "center": "POINT (535584.5118270517559722 1787519.6654996250290424)", - "surface": 12690000, - "canton": null, - "numero_insee": "09276" - } - }, - { - "pk": 18875, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINT-YBARS", - "center": "POINT (523626.3377135908231139 1804840.0380290844477713)", - "surface": 24610000, - "canton": null, - "numero_insee": "09277" - } - }, - { - "pk": 4863, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SALSEIN", - "center": "POINT (490696.7518097264692187 1767722.9450582950375974)", - "surface": 5790000, - "canton": null, - "numero_insee": "09279" - } - }, - { - "pk": 23930, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAURAT", - "center": "POINT (531869.0545502369059250 1764862.1632019355893135)", - "surface": 44700000, - "canton": null, - "numero_insee": "09280" - } - }, - { - "pk": 9060, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAUTEL", - "center": "POINT (557422.9585655586561188 1773986.1292317577172071)", - "surface": 9300000, - "canton": null, - "numero_insee": "09281" - } - }, - { - "pk": 30090, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAVERDUN", - "center": "POINT (537858.4157242150977254 1802956.4895803879480809)", - "surface": 62110000, - "canton": null, - "numero_insee": "09282" - } - }, - { - "pk": 32160, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAVIGNAC-LES-ORMEAUX", - "center": "POINT (554184.4455875405110419 1742221.4793970747850835)", - "surface": 28150000, - "canton": null, - "numero_insee": "09283" - } - }, - { - "pk": 12861, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SEGURA", - "center": "POINT (547350.8520046862540767 1781210.4753936335910112)", - "surface": 8790000, - "canton": null, - "numero_insee": "09284" - } - }, - { - "pk": 18131, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SEIX", - "center": "POINT (502592.3422482757014222 1757910.2177791025023907)", - "surface": 87490000, - "canton": null, - "numero_insee": "09285" - } - }, - { - "pk": 35641, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SENCONAC", - "center": "POINT (549156.7630826672539115 1756796.8417959613725543)", - "surface": 4600000, - "canton": null, - "numero_insee": "09287" - } - }, - { - "pk": 24112, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LORP-SENTARAILLE", - "center": "POINT (499605.0902426341781393 1780011.3765118964947760)", - "surface": 6140000, - "canton": null, - "numero_insee": "09289" - } - }, - { - "pk": 20876, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SENTEIN", - "center": "POINT (483951.6111491256742738 1760158.0101947351358831)", - "surface": 58650000, - "canton": null, - "numero_insee": "09290" - } - }, - { - "pk": 15183, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SENTENAC-D'OUST", - "center": "POINT (501947.5060173469828442 1763211.1225932431407273)", - "surface": 18600000, - "canton": null, - "numero_insee": "09291" - } - }, - { - "pk": 16050, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SENTENAC-DE-SEROU", - "center": "POINT (523000.8429420994361863 1771796.4275415651500225)", - "surface": 13730000, - "canton": null, - "numero_insee": "09292" - } - }, - { - "pk": 5016, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SERRES-SUR-ARGET", - "center": "POINT (531888.9609878873452544 1774473.6270406814292073)", - "surface": 17840000, - "canton": null, - "numero_insee": "09293" - } - }, - { - "pk": 28721, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SIEURAS", - "center": "POINT (519067.2574311395874247 1799295.6820320035330951)", - "surface": 7690000, - "canton": null, - "numero_insee": "09294" - } - }, - { - "pk": 15287, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SIGUER", - "center": "POINT (535636.8585695826914161 1745270.3413195756729692)", - "surface": 38310000, - "canton": null, - "numero_insee": "09295" - } - }, - { - "pk": 6208, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SINSAT", - "center": "POINT (544462.3902514674700797 1755456.0723386621102691)", - "surface": 4070000, - "canton": null, - "numero_insee": "09296" - } - }, - { - "pk": 36332, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SOR", - "center": "POINT (491584.4288975324016064 1769332.2117564289364964)", - "surface": 1090000, - "canton": null, - "numero_insee": "09297" - } - }, - { - "pk": 31019, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SORGEAT", - "center": "POINT (563138.4547292548231781 1749004.3771165802609175)", - "surface": 19290000, - "canton": null, - "numero_insee": "09298" - } - }, - { - "pk": 11880, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SOUEIX-ROGALLE", - "center": "POINT (506525.1114621317829005 1766553.1293314669746906)", - "surface": 13890000, - "canton": null, - "numero_insee": "09299" - } - }, - { - "pk": 28662, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SOULA", - "center": "POINT (547135.8499175569741055 1770996.7223889720626175)", - "surface": 11340000, - "canton": null, - "numero_insee": "09300" - } - }, - { - "pk": 37287, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SOULAN", - "center": "POINT (510512.0376622645417228 1768688.8097385982982814)", - "surface": 23910000, - "canton": null, - "numero_insee": "09301" - } - }, - { - "pk": 14652, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SUC-ET-SENTENAC", - "center": "POINT (527740.3910958211636171 1755716.9432108663022518)", - "surface": 31630000, - "canton": null, - "numero_insee": "09302" - } - }, - { - "pk": 8590, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SURBA", - "center": "POINT (538099.3451510452432558 1762110.8639374957419932)", - "surface": 2200000, - "canton": null, - "numero_insee": "09303" - } - }, - { - "pk": 19098, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SUZAN", - "center": "POINT (526326.9420918428804725 1781135.0671620562206954)", - "surface": 2400000, - "canton": null, - "numero_insee": "09304" - } - }, - { - "pk": 9432, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TABRE", - "center": "POINT (560607.2272972165374085 1776315.4625729839317501)", - "surface": 2870000, - "canton": null, - "numero_insee": "09305" - } - }, - { - "pk": 15886, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TARASCON-SUR-ARIEGE", - "center": "POINT (539314.0561381027800962 1760519.1146715069189668)", - "surface": 8630000, - "canton": null, - "numero_insee": "09306" - } - }, - { - "pk": 21382, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TAURIGNAN-CASTET", - "center": "POINT (499163.8286268594674766 1784913.4266376567538828)", - "surface": 6830000, - "canton": null, - "numero_insee": "09307" - } - }, - { - "pk": 25088, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TAURIGNAN-VIEUX", - "center": "POINT (500180.7553648377652280 1783019.6728371165227145)", - "surface": 5980000, - "canton": null, - "numero_insee": "09308" - } - }, - { - "pk": 26194, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TEILHET", - "center": "POINT (554799.6576185134472325 1788381.0183696672320366)", - "surface": 8950000, - "canton": null, - "numero_insee": "09309" - } - }, - { - "pk": 6738, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "THOUARS-SUR-ARIZE", - "center": "POINT (510365.3131973846466281 1798322.1304725604131818)", - "surface": 2330000, - "canton": null, - "numero_insee": "09310" - } - }, - { - "pk": 7360, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TIGNAC", - "center": "POINT (555822.7325687891570851 1749844.2513002089690417)", - "surface": 3660000, - "canton": null, - "numero_insee": "09311" - } - }, - { - "pk": 24310, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LA TOUR-DU-CRIEU", - "center": "POINT (545381.0153293235925958 1789303.4576318473555148)", - "surface": 10380000, - "canton": null, - "numero_insee": "09312" - } - }, - { - "pk": 30437, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TOURTOUSE", - "center": "POINT (502139.6197662201011553 1788242.0374953933060169)", - "surface": 11970000, - "canton": null, - "numero_insee": "09313" - } - }, - { - "pk": 33444, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TOURTROL", - "center": "POINT (556127.8686698303790763 1785188.3986620004288852)", - "surface": 5150000, - "canton": null, - "numero_insee": "09314" - } - }, - { - "pk": 6959, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "TREMOULET", - "center": "POINT (549436.1307548150653020 1795244.1908912104554474)", - "surface": 3900000, - "canton": null, - "numero_insee": "09315" - } - }, - { - "pk": 31083, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "UCHENTEIN", - "center": "POINT (491113.0137930474593304 1765824.1663578816223890)", - "surface": 4040000, - "canton": null, - "numero_insee": "09317" - } - }, - { - "pk": 12227, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "UNAC", - "center": "POINT (554213.4052016386995092 1750731.8656043005175889)", - "surface": 2560000, - "canton": null, - "numero_insee": "09318" - } - }, - { - "pk": 27444, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "UNZENT", - "center": "POINT (534505.7049844148568809 1796821.4543713319581002)", - "surface": 7950000, - "canton": null, - "numero_insee": "09319" - } - }, - { - "pk": 11152, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "URS", - "center": "POINT (550590.9616035408107564 1752904.1983774243853986)", - "surface": 890000, - "canton": null, - "numero_insee": "09320" - } - }, - { - "pk": 5688, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "USSAT", - "center": "POINT (541427.2646145850885659 1759235.2242106059566140)", - "surface": 4330000, - "canton": null, - "numero_insee": "09321" - } - }, - { - "pk": 19488, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "USTOU", - "center": "POINT (511945.2568383273319341 1752882.0533324810676277)", - "surface": 99100000, - "canton": null, - "numero_insee": "09322" - } - }, - { - "pk": 7321, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VALS", - "center": "POINT (552593.0676039595855400 1788863.1509153628721833)", - "surface": 4130000, - "canton": null, - "numero_insee": "09323" - } - }, - { - "pk": 11500, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VARILHES", - "center": "POINT (542523.8371257625985891 1783773.1832180940546095)", - "surface": 11700000, - "canton": null, - "numero_insee": "09324" - } - }, - { - "pk": 6393, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VAYCHIS", - "center": "POINT (557731.5611010696738958 1749059.2624478028155863)", - "surface": 4580000, - "canton": null, - "numero_insee": "09325" - } - }, - { - "pk": 9875, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VEBRE", - "center": "POINT (549196.9257254112744704 1751991.4762302110902965)", - "surface": 5230000, - "canton": null, - "numero_insee": "09326" - } - }, - { - "pk": 18252, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VENTENAC", - "center": "POINT (549886.2312625157646835 1777327.1016418202780187)", - "surface": 19900000, - "canton": null, - "numero_insee": "09327" - } - }, - { - "pk": 11844, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VERDUN", - "center": "POINT (547160.3869039474520832 1756079.3274072678759694)", - "surface": 11720000, - "canton": null, - "numero_insee": "09328" - } - }, - { - "pk": 8919, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VERNAJOUL", - "center": "POINT (539076.8434542852919549 1776936.4448052528314292)", - "surface": 9080000, - "canton": null, - "numero_insee": "09329" - } - }, - { - "pk": 25648, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VERNAUX", - "center": "POINT (554488.6281454720301554 1753737.7348069918807596)", - "surface": 6090000, - "canton": null, - "numero_insee": "09330" - } - }, - { - "pk": 3944, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "LE VERNET", - "center": "POINT (540298.6359488709131256 1798471.6708676512353122)", - "surface": 5680000, - "canton": null, - "numero_insee": "09331" - } - }, - { - "pk": 29788, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VERNIOLLE", - "center": "POINT (544802.1050766394473612 1786695.5955306845717132)", - "surface": 11440000, - "canton": null, - "numero_insee": "09332" - } - }, - { - "pk": 12909, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VICDESSOS", - "center": "POINT (532272.1544485987396911 1752550.9554771627299488)", - "surface": 6200000, - "canton": null, - "numero_insee": "09334" - } - }, - { - "pk": 13725, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VILLENEUVE", - "center": "POINT (489252.7462866078712977 1772816.9384981498587877)", - "surface": 5100000, - "canton": null, - "numero_insee": "09335" - } - }, - { - "pk": 34178, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VILLENEUVE-D'OLMES", - "center": "POINT (557776.0405429303646088 1767681.6737195784226060)", - "surface": 6000000, - "canton": null, - "numero_insee": "09336" - } - }, - { - "pk": 31863, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VILLENEUVE-DU-LATOU", - "center": "POINT (526466.1079162685200572 1800458.6483302665874362)", - "surface": 6600000, - "canton": null, - "numero_insee": "09338" - } - }, - { - "pk": 36043, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VILLENEUVE-DU-PAREAGE", - "center": "POINT (543428.7633349845418707 1795294.1114724024664611)", - "surface": 11480000, - "canton": null, - "numero_insee": "09339" - } - }, - { - "pk": 9955, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VIRA", - "center": "POINT (552541.4997259200317785 1783055.9621956278569996)", - "surface": 5300000, - "canton": null, - "numero_insee": "09340" - } - }, - { - "pk": 31236, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "VIVIES", - "center": "POINT (554432.7025661105290055 1784373.2908384138718247)", - "surface": 4410000, - "canton": null, - "numero_insee": "09341" - } - }, - { - "pk": 22872, - "model": "ishtar_common.town", - "fields": { - "departement": 9, - "name": "SAINTE-SUZANNE", - "center": "POINT (521958.7209111442789435 1800721.4050196085590869)", - "surface": 10400000, - "canton": null, - "numero_insee": "09342" - } - }, - { - "pk": 36807, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AILLEVILLE", - "center": "POINT (775049.6245424149092287 2364386.0517984088510275)", - "surface": 4930000, - "canton": null, - "numero_insee": "10002" - } - }, - { - "pk": 17841, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AIX-EN-OTHE", - "center": "POINT (704066.4422209693584591 2356276.9283280326053500)", - "surface": 34780000, - "canton": null, - "numero_insee": "10003" - } - }, - { - "pk": 33368, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ALLIBAUDIERES", - "center": "POINT (731815.2241014254977927 2400043.7369176172651350)", - "surface": 24240000, - "canton": null, - "numero_insee": "10004" - } - }, - { - "pk": 35366, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AMANCE", - "center": "POINT (759507.8643817446427420 2367956.2510490650311112)", - "surface": 23040000, - "canton": null, - "numero_insee": "10005" - } - }, - { - "pk": 5586, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ARCIS-SUR-AUBE", - "center": "POINT (733371.4504638888174668 2393552.3785116472281516)", - "surface": 9440000, - "canton": null, - "numero_insee": "10006" - } - }, - { - "pk": 13596, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ARCONVILLE", - "center": "POINT (777945.4052702145418152 2353402.6595470164902508)", - "surface": 14840000, - "canton": null, - "numero_insee": "10007" - } - }, - { - "pk": 37923, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ARGANCON", - "center": "POINT (767750.7844315569382161 2363623.2884777290746570)", - "surface": 8190000, - "canton": null, - "numero_insee": "10008" - } - }, - { - "pk": 22712, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ARRELLES", - "center": "POINT (744431.9316380597883835 2340307.5671105985529721)", - "surface": 14420000, - "canton": null, - "numero_insee": "10009" - } - }, - { - "pk": 7339, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ARREMBECOURT", - "center": "POINT (767572.7138058608397841 2396245.2285035299137235)", - "surface": 7190000, - "canton": null, - "numero_insee": "10010" - } - }, - { - "pk": 24871, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ARRENTIERES", - "center": "POINT (778338.9901111648650840 2365915.2174562904983759)", - "surface": 13950000, - "canton": null, - "numero_insee": "10011" - } - }, - { - "pk": 6757, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ARSONVAL", - "center": "POINT (771725.2587033072486520 2366959.5941283553838730)", - "surface": 7630000, - "canton": null, - "numero_insee": "10012" - } - }, - { - "pk": 8061, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ASSENAY", - "center": "POINT (728497.9660379011183977 2354682.9067247221246362)", - "surface": 3380000, - "canton": null, - "numero_insee": "10013" - } - }, - { - "pk": 35715, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ASSENCIERES", - "center": "POINT (738236.0976654313271865 2374580.1392835434526205)", - "surface": 7370000, - "canton": null, - "numero_insee": "10014" - } - }, - { - "pk": 31569, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AUBETERRE", - "center": "POINT (730969.3432497604517266 2381823.6283446946181357)", - "surface": 11780000, - "canton": null, - "numero_insee": "10015" - } - }, - { - "pk": 7091, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AULNAY", - "center": "POINT (753627.7460676886839792 2388621.0836143908090889)", - "surface": 10460000, - "canton": null, - "numero_insee": "10017" - } - }, - { - "pk": 23038, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AUXON", - "center": "POINT (718174.2605636839289218 2344787.9766820580698550)", - "surface": 25520000, - "canton": null, - "numero_insee": "10018" - } - }, - { - "pk": 21384, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VAL-D'AUZON", - "center": "POINT (749800.2062403082381934 2379782.1983483606018126)", - "surface": 27640000, - "canton": null, - "numero_insee": "10019" - } - }, - { - "pk": 28159, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AVANT-LES-MARCILLY", - "center": "POINT (690537.3621562543557957 2382181.2183751594275236)", - "surface": 27730000, - "canton": null, - "numero_insee": "10020" - } - }, - { - "pk": 3514, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AVANT-LES-RAMERUPT", - "center": "POINT (742150.1800939931999892 2385020.9037590371444821)", - "surface": 20820000, - "canton": null, - "numero_insee": "10021" - } - }, - { - "pk": 8826, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AVIREY-LINGEY", - "center": "POINT (746150.1123732380801812 2338320.6828903593122959)", - "surface": 17780000, - "canton": null, - "numero_insee": "10022" - } - }, - { - "pk": 29080, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AVON-LA-PEZE", - "center": "POINT (697384.1234930627979338 2377235.6055720574222505)", - "surface": 12820000, - "canton": null, - "numero_insee": "10023" - } - }, - { - "pk": 12964, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "AVREUIL", - "center": "POINT (723814.5707999252481386 2340532.6398885976523161)", - "surface": 10300000, - "canton": null, - "numero_insee": "10024" - } - }, - { - "pk": 22497, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BAGNEUX-LA-FOSSE", - "center": "POINT (745777.9364589122124016 2335015.0309008928015828)", - "surface": 23010000, - "canton": null, - "numero_insee": "10025" - } - }, - { - "pk": 26605, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BAILLY-LE-FRANC", - "center": "POINT (771594.8801127355545759 2393977.9024424594826996)", - "surface": 6070000, - "canton": null, - "numero_insee": "10026" - } - }, - { - "pk": 36082, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BALIGNICOURT", - "center": "POINT (756380.9563039307249710 2394348.5786255523562431)", - "surface": 13060000, - "canton": null, - "numero_insee": "10027" - } - }, - { - "pk": 3979, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BALNOT-LA-GRANGE", - "center": "POINT (738883.4409383015008643 2333755.4848952856846154)", - "surface": 20140000, - "canton": null, - "numero_insee": "10028" - } - }, - { - "pk": 30971, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BALNOT-SUR-LAIGNES", - "center": "POINT (750344.4483709234045818 2339357.1285877889022231)", - "surface": 10200000, - "canton": null, - "numero_insee": "10029" - } - }, - { - "pk": 14053, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BARBEREY-SAINT-SULPICE", - "center": "POINT (724556.0751612466992810 2371061.4320725211873651)", - "surface": 9560000, - "canton": null, - "numero_insee": "10030" - } - }, - { - "pk": 27733, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BARBUISE", - "center": "POINT (690425.5500276169041172 2395389.6541682709939778)", - "surface": 18640000, - "canton": null, - "numero_insee": "10031" - } - }, - { - "pk": 26717, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BAROVILLE", - "center": "POINT (778720.3192711009178311 2356411.4917867244221270)", - "surface": 17430000, - "canton": null, - "numero_insee": "10032" - } - }, - { - "pk": 21857, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BAR-SUR-AUBE", - "center": "POINT (776770.3842744282446802 2362099.0480350358411670)", - "surface": 15920000, - "canton": null, - "numero_insee": "10033" - } - }, - { - "pk": 17840, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BAR-SUR-SEINE", - "center": "POINT (752073.2586590567370877 2347878.2015945864841342)", - "surface": 27540000, - "canton": null, - "numero_insee": "10034" - } - }, - { - "pk": 19338, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BAYEL", - "center": "POINT (782412.5303686278639361 2357643.8939130562357605)", - "surface": 23140000, - "canton": null, - "numero_insee": "10035" - } - }, - { - "pk": 29311, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BERCENAY-EN-OTHE", - "center": "POINT (715977.7503978201420978 2355977.6445508538745344)", - "surface": 17780000, - "canton": null, - "numero_insee": "10037" - } - }, - { - "pk": 26281, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BERCENAY-LE-HAYER", - "center": "POINT (692933.7356789454352111 2370993.4368735007010400)", - "surface": 14850000, - "canton": null, - "numero_insee": "10038" - } - }, - { - "pk": 3467, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BERGERES", - "center": "POINT (773415.9381399467820302 2356466.3067114125005901)", - "surface": 5850000, - "canton": null, - "numero_insee": "10039" - } - }, - { - "pk": 15294, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BERNON", - "center": "POINT (723576.3913814410334453 2333225.1245589395985007)", - "surface": 17930000, - "canton": null, - "numero_insee": "10040" - } - }, - { - "pk": 30713, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BERTIGNOLLES", - "center": "POINT (761956.0361269139684737 2350764.4569020145572722)", - "surface": 6240000, - "canton": null, - "numero_insee": "10041" - } - }, - { - "pk": 6301, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BERULLE", - "center": "POINT (699288.6830751079833135 2353234.2294296026229858)", - "surface": 16830000, - "canton": null, - "numero_insee": "10042" - } - }, - { - "pk": 10306, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BESSY", - "center": "POINT (724654.0240770587697625 2394879.3065868159756064)", - "surface": 7170000, - "canton": null, - "numero_insee": "10043" - } - }, - { - "pk": 29400, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BETIGNICOURT", - "center": "POINT (756656.0869806834962219 2385544.6623098356649280)", - "surface": 3250000, - "canton": null, - "numero_insee": "10044" - } - }, - { - "pk": 19557, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BEUREY", - "center": "POINT (758817.3048845466692001 2355040.9003662057220936)", - "surface": 17330000, - "canton": null, - "numero_insee": "10045" - } - }, - { - "pk": 36534, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BLAINCOURT-SUR-AUBE", - "center": "POINT (756720.8624288386199623 2377939.7583843525499105)", - "surface": 5850000, - "canton": null, - "numero_insee": "10046" - } - }, - { - "pk": 36085, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BLIGNICOURT", - "center": "POINT (763055.9332201199140400 2386099.5475138858892024)", - "surface": 4310000, - "canton": null, - "numero_insee": "10047" - } - }, - { - "pk": 22424, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BLIGNY", - "center": "POINT (768623.8357843752019107 2355124.4774963376112282)", - "surface": 22990000, - "canton": null, - "numero_insee": "10048" - } - }, - { - "pk": 35251, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LES BORDES-AUMONT", - "center": "POINT (732491.2773279780521989 2355817.6474537011235952)", - "surface": 5600000, - "canton": null, - "numero_insee": "10049" - } - }, - { - "pk": 32335, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOSSANCOURT", - "center": "POINT (768819.9399976417189464 2367335.1093989941291511)", - "surface": 6970000, - "canton": null, - "numero_insee": "10050" - } - }, - { - "pk": 10941, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOUILLY", - "center": "POINT (722987.5044247456826270 2355436.6988608930259943)", - "surface": 15500000, - "canton": null, - "numero_insee": "10051" - } - }, - { - "pk": 27447, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOULAGES", - "center": "POINT (717005.8943605208769441 2399917.9716038582846522)", - "surface": 11630000, - "canton": null, - "numero_insee": "10052" - } - }, - { - "pk": 11745, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOURANTON", - "center": "POINT (736774.2546681876992807 2369964.3760118293575943)", - "surface": 8250000, - "canton": null, - "numero_insee": "10053" - } - }, - { - "pk": 37086, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOURDENAY", - "center": "POINT (692905.7765072109177709 2374295.5880985599942505)", - "surface": 18560000, - "canton": null, - "numero_insee": "10054" - } - }, - { - "pk": 3989, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOURGUIGNONS", - "center": "POINT (750745.9793979321839288 2350969.2068403963930905)", - "surface": 16630000, - "canton": null, - "numero_insee": "10055" - } - }, - { - "pk": 8121, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOUY-LUXEMBOURG", - "center": "POINT (741219.3260679184459150 2376807.0976409399881959)", - "surface": 12100000, - "canton": null, - "numero_insee": "10056" - } - }, - { - "pk": 15947, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BOUY-SUR-ORVIN", - "center": "POINT (685943.7120403584558517 2381041.5526275956071913)", - "surface": 6630000, - "canton": null, - "numero_insee": "10057" - } - }, - { - "pk": 21813, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BRAGELOGNE-BEAUVOIR", - "center": "POINT (744104.0171959389699623 2331798.3719814070500433)", - "surface": 23580000, - "canton": null, - "numero_insee": "10058" - } - }, - { - "pk": 28961, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BRAUX", - "center": "POINT (756824.6792818207759410 2389248.7377960067242384)", - "surface": 15330000, - "canton": null, - "numero_insee": "10059" - } - }, - { - "pk": 35011, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BREVIANDES", - "center": "POINT (731426.8404082198394462 2363314.1130592497065663)", - "surface": 6200000, - "canton": null, - "numero_insee": "10060" - } - }, - { - "pk": 18187, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BREVONNES", - "center": "POINT (753550.3139603962190449 2374210.0847137193195522)", - "surface": 20110000, - "canton": null, - "numero_insee": "10061" - } - }, - { - "pk": 31943, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BRIEL-SUR-BARSE", - "center": "POINT (749877.3047665033955127 2358967.7234800173901021)", - "surface": 12560000, - "canton": null, - "numero_insee": "10062" - } - }, - { - "pk": 15733, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BRIENNE-LA-VIEILLE", - "center": "POINT (763732.2232202220475301 2377198.9203163790516555)", - "surface": 16420000, - "canton": null, - "numero_insee": "10063" - } - }, - { - "pk": 31902, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BRIENNE-LE-CHATEAU", - "center": "POINT (763108.8078878202941269 2379895.5525647224858403)", - "surface": 21680000, - "canton": null, - "numero_insee": "10064" - } - }, - { - "pk": 8364, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BRILLECOURT", - "center": "POINT (750427.4025836018845439 2388393.6933271591551602)", - "surface": 5840000, - "canton": null, - "numero_insee": "10065" - } - }, - { - "pk": 33376, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BUCEY-EN-OTHE", - "center": "POINT (713618.4966993664857000 2362762.6233768528327346)", - "surface": 13030000, - "canton": null, - "numero_insee": "10066" - } - }, - { - "pk": 27188, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BUCHERES", - "center": "POINT (732045.9434831647668034 2361117.7620010110549629)", - "surface": 7200000, - "canton": null, - "numero_insee": "10067" - } - }, - { - "pk": 25479, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BUXEUIL", - "center": "POINT (754230.0538732106797397 2341391.7087182309478521)", - "surface": 4280000, - "canton": null, - "numero_insee": "10068" - } - }, - { - "pk": 30450, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "BUXIERES-SUR-ARCE", - "center": "POINT (757753.2230312667088583 2350728.6511940113268793)", - "surface": 10660000, - "canton": null, - "numero_insee": "10069" - } - }, - { - "pk": 33568, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CELLES-SUR-OURCE", - "center": "POINT (755412.1189296744996682 2343603.4217536333017051)", - "surface": 9480000, - "canton": null, - "numero_insee": "10070" - } - }, - { - "pk": 32376, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHACENAY", - "center": "POINT (763484.3304305337369442 2347575.1005310243926942)", - "surface": 7780000, - "canton": null, - "numero_insee": "10071" - } - }, - { - "pk": 35357, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA CHAISE", - "center": "POINT (773051.0625895062694326 2375777.2961758845485747)", - "surface": 8720000, - "canton": null, - "numero_insee": "10072" - } - }, - { - "pk": 7340, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHALETTE-SUR-VOIRE", - "center": "POINT (754453.8219810869777575 2385625.9776082555763423)", - "surface": 5680000, - "canton": null, - "numero_insee": "10073" - } - }, - { - "pk": 35717, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAMPFLEURY", - "center": "POINT (724985.4429848303552717 2402987.8188429852016270)", - "surface": 18190000, - "canton": null, - "numero_insee": "10075" - } - }, - { - "pk": 3741, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAMPIGNY-SUR-AUBE", - "center": "POINT (728130.7428738269954920 2397910.9536136318929493)", - "surface": 6650000, - "canton": null, - "numero_insee": "10077" - } - }, - { - "pk": 18167, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAMP-SUR-BARSE", - "center": "POINT (754254.6600890889531001 2362007.1937806126661599)", - "surface": 7090000, - "canton": null, - "numero_insee": "10078" - } - }, - { - "pk": 19171, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHANNES", - "center": "POINT (744131.2572705034399405 2328596.1774698174558580)", - "surface": 14280000, - "canton": null, - "numero_insee": "10079" - } - }, - { - "pk": 18431, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAOURCE", - "center": "POINT (734418.3496930727269500 2341023.0196332354098558)", - "surface": 30980000, - "canton": null, - "numero_insee": "10080" - } - }, - { - "pk": 9012, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA CHAPELLE-SAINT-LUC", - "center": "POINT (725967.1881759014213458 2369872.5447633690200746)", - "surface": 10480000, - "canton": null, - "numero_insee": "10081" - } - }, - { - "pk": 9281, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAPELLE-VALLON", - "center": "POINT (726155.1993571600178257 2383083.6622272939421237)", - "surface": 19370000, - "canton": null, - "numero_insee": "10082" - } - }, - { - "pk": 29312, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAPPES", - "center": "POINT (742817.7088404675014317 2353603.7440533135086298)", - "surface": 9710000, - "canton": null, - "numero_insee": "10083" - } - }, - { - "pk": 35239, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHARMONT-SOUS-BARBUISE", - "center": "POINT (736478.8450240388046950 2381169.9535287949256599)", - "surface": 38170000, - "canton": null, - "numero_insee": "10084" - } - }, - { - "pk": 6894, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHARMOY", - "center": "POINT (692075.6046369953546673 2377791.0825499384663999)", - "surface": 6950000, - "canton": null, - "numero_insee": "10085" - } - }, - { - "pk": 31798, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHARNY-LE-BACHOT", - "center": "POINT (719253.1461562422337011 2394533.2396714319474995)", - "surface": 13750000, - "canton": null, - "numero_insee": "10086" - } - }, - { - "pk": 23486, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHASEREY", - "center": "POINT (729812.0818616822361946 2329575.2841175510548055)", - "surface": 6950000, - "canton": null, - "numero_insee": "10087" - } - }, - { - "pk": 34547, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHATRES", - "center": "POINT (710891.9464447655482218 2389258.6111522484570742)", - "surface": 15810000, - "canton": null, - "numero_insee": "10089" - } - }, - { - "pk": 24177, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAUCHIGNY", - "center": "POINT (721660.7974866192089394 2382044.7810394125990570)", - "surface": 9770000, - "canton": null, - "numero_insee": "10090" - } - }, - { - "pk": 31375, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAUDREY", - "center": "POINT (741115.4943984465207905 2389014.9560806243680418)", - "surface": 13850000, - "canton": null, - "numero_insee": "10091" - } - }, - { - "pk": 15212, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAUFFOUR-LES-BAILLY", - "center": "POINT (746701.5787426491733640 2355838.4122176589444280)", - "surface": 19020000, - "canton": null, - "numero_insee": "10092" - } - }, - { - "pk": 9987, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAUMESNIL", - "center": "POINT (768649.0550522397970781 2375639.6805900307372212)", - "surface": 11080000, - "canton": null, - "numero_insee": "10093" - } - }, - { - "pk": 3142, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHAVANGES", - "center": "POINT (764697.3173956549726427 2393118.5204252232797444)", - "surface": 29970000, - "canton": null, - "numero_insee": "10094" - } - }, - { - "pk": 3303, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LE CHENE", - "center": "POINT (735738.9493365521775559 2397575.3282138360664248)", - "surface": 21030000, - "canton": null, - "numero_insee": "10095" - } - }, - { - "pk": 12274, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHENNEGY", - "center": "POINT (712353.2875503865070641 2358548.8103590589016676)", - "surface": 23230000, - "canton": null, - "numero_insee": "10096" - } - }, - { - "pk": 37554, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHERVEY", - "center": "POINT (760256.6025750833796337 2350549.8284610747359693)", - "surface": 13500000, - "canton": null, - "numero_insee": "10097" - } - }, - { - "pk": 31903, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHESLEY", - "center": "POINT (732490.9751674875151366 2332300.0901125068776309)", - "surface": 21260000, - "canton": null, - "numero_insee": "10098" - } - }, - { - "pk": 5903, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CHESSY-LES-PRES", - "center": "POINT (719148.7558778377715498 2336089.7259412473067641)", - "surface": 25700000, - "canton": null, - "numero_insee": "10099" - } - }, - { - "pk": 22558, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CLEREY", - "center": "POINT (737975.3690365058137104 2358165.9579781051725149)", - "surface": 18960000, - "canton": null, - "numero_insee": "10100" - } - }, - { - "pk": 12139, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COCLOIS", - "center": "POINT (747432.2956371791660786 2387567.6301323208026588)", - "surface": 6860000, - "canton": null, - "numero_insee": "10101" - } - }, - { - "pk": 7818, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COLOMBE-LA-FOSSE", - "center": "POINT (782138.0737026684219018 2366347.9383215680718422)", - "surface": 9330000, - "canton": null, - "numero_insee": "10102" - } - }, - { - "pk": 28160, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COLOMBE-LE-SEC", - "center": "POINT (783153.2559447727398947 2364655.3622540207579732)", - "surface": 8780000, - "canton": null, - "numero_insee": "10103" - } - }, - { - "pk": 29395, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CORMOST", - "center": "POINT (733621.7750959871336818 2352324.6679024631157517)", - "surface": 11370000, - "canton": null, - "numero_insee": "10104" - } - }, - { - "pk": 8567, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COURCELLES-SUR-VOIRE", - "center": "POINT (762128.0675664059817791 2389293.9224082361906767)", - "surface": 4920000, - "canton": null, - "numero_insee": "10105" - } - }, - { - "pk": 20152, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COURCEROY", - "center": "POINT (679197.0809573263395578 2385988.0578597411513329)", - "surface": 6750000, - "canton": null, - "numero_insee": "10106" - } - }, - { - "pk": 9020, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COURSAN-EN-OTHE", - "center": "POINT (710983.8347387134563178 2343025.7059189621359110)", - "surface": 9400000, - "canton": null, - "numero_insee": "10107" - } - }, - { - "pk": 13642, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COURTENOT", - "center": "POINT (747030.7297130253864452 2352438.6990337898023427)", - "surface": 8370000, - "canton": null, - "numero_insee": "10109" - } - }, - { - "pk": 31808, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COURTERANGES", - "center": "POINT (740219.8796356865204871 2364889.9574477472342551)", - "surface": 6400000, - "canton": null, - "numero_insee": "10110" - } - }, - { - "pk": 11047, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COURTERON", - "center": "POINT (758567.9137336374260485 2337325.5717869270592928)", - "surface": 10330000, - "canton": null, - "numero_insee": "10111" - } - }, - { - "pk": 30447, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COUSSEGREY", - "center": "POINT (726513.2172047551721334 2329146.9596887114457786)", - "surface": 15900000, - "canton": null, - "numero_insee": "10112" - } - }, - { - "pk": 26673, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "COUVIGNON", - "center": "POINT (773397.1590248312568292 2358667.7688773865811527)", - "surface": 13350000, - "canton": null, - "numero_insee": "10113" - } - }, - { - "pk": 4364, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CRANCEY", - "center": "POINT (696059.6095329037634656 2391834.8151030344888568)", - "surface": 8850000, - "canton": null, - "numero_insee": "10114" - } - }, - { - "pk": 27177, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CRENEY-PRES-TROYES", - "center": "POINT (733545.7964634996606037 2373039.1817450877279043)", - "surface": 15780000, - "canton": null, - "numero_insee": "10115" - } - }, - { - "pk": 7889, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CRESANTIGNES", - "center": "POINT (725230.6084532845998183 2350552.1208683359436691)", - "surface": 2090000, - "canton": null, - "numero_insee": "10116" - } - }, - { - "pk": 29182, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CRESPY-LE-NEUF", - "center": "POINT (768310.4648272888734937 2380140.0390107356943190)", - "surface": 10130000, - "canton": null, - "numero_insee": "10117" - } - }, - { - "pk": 26528, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LES CROUTES", - "center": "POINT (713964.7396359151462093 2333744.0051120519638062)", - "surface": 7160000, - "canton": null, - "numero_insee": "10118" - } - }, - { - "pk": 22445, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CUNFIN", - "center": "POINT (773949.3690317219588906 2340859.2434235168620944)", - "surface": 33130000, - "canton": null, - "numero_insee": "10119" - } - }, - { - "pk": 16928, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "CUSSANGY", - "center": "POINT (730846.5198010051390156 2337389.9638516576960683)", - "surface": 21330000, - "canton": null, - "numero_insee": "10120" - } - }, - { - "pk": 37305, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DAMPIERRE", - "center": "POINT (749643.4814370222156867 2398193.9635504968464375)", - "surface": 29400000, - "canton": null, - "numero_insee": "10121" - } - }, - { - "pk": 9718, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DAVREY", - "center": "POINT (721019.4695634940871969 2339708.3101344145834446)", - "surface": 9570000, - "canton": null, - "numero_insee": "10122" - } - }, - { - "pk": 22087, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DIENVILLE", - "center": "POINT (761372.4465556959621608 2372275.2646599770523608)", - "surface": 20490000, - "canton": null, - "numero_insee": "10123" - } - }, - { - "pk": 29079, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DIERREY-SAINT-JULIEN", - "center": "POINT (711069.3210090522188693 2368345.0865020421333611)", - "surface": 21310000, - "canton": null, - "numero_insee": "10124" - } - }, - { - "pk": 26745, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DIERREY-SAINT-PIERRE", - "center": "POINT (710842.8812905712984502 2371445.4170784885063767)", - "surface": 21750000, - "canton": null, - "numero_insee": "10125" - } - }, - { - "pk": 36610, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DOLANCOURT", - "center": "POINT (768636.0200439004693180 2365432.1535092988051474)", - "surface": 4890000, - "canton": null, - "numero_insee": "10126" - } - }, - { - "pk": 33367, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DOMMARTIN-LE-COQ", - "center": "POINT (749207.8967692401492968 2390584.8778871414251626)", - "surface": 6430000, - "canton": null, - "numero_insee": "10127" - } - }, - { - "pk": 21197, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DONNEMENT", - "center": "POINT (754489.1230351690901443 2393231.6871068524196744)", - "surface": 11260000, - "canton": null, - "numero_insee": "10128" - } - }, - { - "pk": 37048, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DOSNON", - "center": "POINT (740792.8125473912805319 2403422.3772727418690920)", - "surface": 28770000, - "canton": null, - "numero_insee": "10130" - } - }, - { - "pk": 26125, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DROUPT-SAINT-BASLE", - "center": "POINT (719808.6738503770902753 2388033.3442194932140410)", - "surface": 18680000, - "canton": null, - "numero_insee": "10131" - } - }, - { - "pk": 33810, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "DROUPT-SAINTE-MARIE", - "center": "POINT (718387.3953902869252488 2390422.9869169630110264)", - "surface": 14600000, - "canton": null, - "numero_insee": "10132" - } - }, - { - "pk": 24988, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "EAUX-PUISEAUX", - "center": "POINT (715349.4501688815653324 2347466.0185326077044010)", - "surface": 8670000, - "canton": null, - "numero_insee": "10133" - } - }, - { - "pk": 31797, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ECHEMINES", - "center": "POINT (710988.6962301512248814 2377851.2770203901454806)", - "surface": 18640000, - "canton": null, - "numero_insee": "10134" - } - }, - { - "pk": 12200, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ECLANCE", - "center": "POINT (771098.4080310063436627 2370056.5068255518563092)", - "surface": 11460000, - "canton": null, - "numero_insee": "10135" - } - }, - { - "pk": 23103, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "EGUILLY-SOUS-BOIS", - "center": "POINT (763854.7502607913920656 2351080.8602103199809790)", - "surface": 10150000, - "canton": null, - "numero_insee": "10136" - } - }, - { - "pk": 26860, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ENGENTE", - "center": "POINT (780128.2166888702195138 2367331.5113139986060560)", - "surface": 5120000, - "canton": null, - "numero_insee": "10137" - } - }, - { - "pk": 23704, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "EPAGNE", - "center": "POINT (757906.2970993404742330 2379751.1522380234673619)", - "surface": 4050000, - "canton": null, - "numero_insee": "10138" - } - }, - { - "pk": 26908, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "EPOTHEMONT", - "center": "POINT (772096.7051646478939801 2382073.6947157457470894)", - "surface": 10400000, - "canton": null, - "numero_insee": "10139" - } - }, - { - "pk": 29434, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ERVY-LE-CHATEL", - "center": "POINT (716907.3492106844205409 2340774.2349208639934659)", - "surface": 21560000, - "canton": null, - "numero_insee": "10140" - } - }, - { - "pk": 21982, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ESSOYES", - "center": "POINT (764139.3158254090230912 2341175.8982134652324021)", - "surface": 35800000, - "canton": null, - "numero_insee": "10141" - } - }, - { - "pk": 23330, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ESTISSAC", - "center": "POINT (709414.8769565100083128 2362827.0434080762788653)", - "surface": 25520000, - "canton": null, - "numero_insee": "10142" - } - }, - { - "pk": 30318, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ETOURVY", - "center": "POINT (733716.4585577279794961 2329408.3078220873139799)", - "surface": 15490000, - "canton": null, - "numero_insee": "10143" - } - }, - { - "pk": 7928, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ETRELLES-SUR-AUBE", - "center": "POINT (713730.9793762541376054 2396687.9317904822528362)", - "surface": 10490000, - "canton": null, - "numero_insee": "10144" - } - }, - { - "pk": 29303, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FAUX-VILLECERF", - "center": "POINT (704041.8339378680102527 2370987.4648722438141704)", - "surface": 21380000, - "canton": null, - "numero_insee": "10145" - } - }, - { - "pk": 36846, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FAY-LES-MARCILLY", - "center": "POINT (693968.3620879538357258 2378807.8278650045394897)", - "surface": 5700000, - "canton": null, - "numero_insee": "10146" - } - }, - { - "pk": 10737, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FAYS-LA-CHAPELLE", - "center": "POINT (725241.6556702479720116 2349251.2497648997232318)", - "surface": 580000, - "canton": null, - "numero_insee": "10147" - } - }, - { - "pk": 22246, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FERREUX-QUINCEY", - "center": "POINT (693511.3341086960863322 2385508.7557439547963440)", - "surface": 15330000, - "canton": null, - "numero_insee": "10148" - } - }, - { - "pk": 5521, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FEUGES", - "center": "POINT (731194.1304829992586747 2378923.4553812211379409)", - "surface": 11050000, - "canton": null, - "numero_insee": "10149" - } - }, - { - "pk": 3794, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FONTAINE", - "center": "POINT (776994.4252260382054374 2359298.9016185230575502)", - "surface": 5690000, - "canton": null, - "numero_insee": "10150" - } - }, - { - "pk": 27776, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FONTAINE-LES-GRES", - "center": "POINT (714869.9980557487579063 2380385.9988495777361095)", - "surface": 12240000, - "canton": null, - "numero_insee": "10151" - } - }, - { - "pk": 35444, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FONTAINE-MACON", - "center": "POINT (686511.9228237891802564 2384849.0789940762333572)", - "surface": 15940000, - "canton": null, - "numero_insee": "10153" - } - }, - { - "pk": 9119, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FONTENAY-DE-BOSSERY", - "center": "POINT (683416.7040897903498262 2384022.3197106211446226)", - "surface": 8320000, - "canton": null, - "numero_insee": "10154" - } - }, - { - "pk": 33522, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FONTETTE", - "center": "POINT (769816.7250055600889027 2344326.6192665947601199)", - "surface": 19460000, - "canton": null, - "numero_insee": "10155" - } - }, - { - "pk": 26320, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FONTVANNES", - "center": "POINT (713892.3786472594365478 2365867.2117217308841646)", - "surface": 12950000, - "canton": null, - "numero_insee": "10156" - } - }, - { - "pk": 31539, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA FOSSE-CORDUAN", - "center": "POINT (697434.1792647924739867 2383140.2641746979206800)", - "surface": 3710000, - "canton": null, - "numero_insee": "10157" - } - }, - { - "pk": 8248, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FOUCHERES", - "center": "POINT (743935.4681527481880039 2351611.7712076660245657)", - "surface": 8650000, - "canton": null, - "numero_insee": "10158" - } - }, - { - "pk": 5709, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FRALIGNES", - "center": "POINT (751924.6335361885139719 2353581.1670714546926320)", - "surface": 5060000, - "canton": null, - "numero_insee": "10159" - } - }, - { - "pk": 26438, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FRAVAUX", - "center": "POINT (771165.8289698620792478 2362151.3098789243958890)", - "surface": 3610000, - "canton": null, - "numero_insee": "10160" - } - }, - { - "pk": 33742, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FRESNAY", - "center": "POINT (779500.4913936716038734 2370528.4849737808108330)", - "surface": 7570000, - "canton": null, - "numero_insee": "10161" - } - }, - { - "pk": 7160, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FRESNOY-LE-CHATEAU", - "center": "POINT (740965.4455283891875297 2359592.4139136523008347)", - "surface": 11480000, - "canton": null, - "numero_insee": "10162" - } - }, - { - "pk": 12467, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "FULIGNY", - "center": "POINT (775068.5843283690046519 2373893.1328089041635394)", - "surface": 10330000, - "canton": null, - "numero_insee": "10163" - } - }, - { - "pk": 27577, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "GELANNES", - "center": "POINT (698401.7629324119770899 2387051.2446364485658705)", - "surface": 12100000, - "canton": null, - "numero_insee": "10164" - } - }, - { - "pk": 33615, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LES GRANDES-CHAPELLES", - "center": "POINT (725023.0484804088482633 2386776.6907108277082443)", - "surface": 22070000, - "canton": null, - "numero_insee": "10166" - } - }, - { - "pk": 11317, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "GRANDVILLE", - "center": "POINT (740011.8834913456812501 2401114.1228270223364234)", - "surface": 9200000, - "canton": null, - "numero_insee": "10167" - } - }, - { - "pk": 30593, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LES GRANGES", - "center": "POINT (728613.5722691096598282 2341073.7715442785993218)", - "surface": 1610000, - "canton": null, - "numero_insee": "10168" - } - }, - { - "pk": 7489, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "GUMERY", - "center": "POINT (680324.8664008302148432 2382795.3100788132287562)", - "surface": 10920000, - "canton": null, - "numero_insee": "10169" - } - }, - { - "pk": 17697, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "GYE-SUR-SEINE", - "center": "POINT (757650.2548867203295231 2339319.2596602025441825)", - "surface": 23560000, - "canton": null, - "numero_insee": "10170" - } - }, - { - "pk": 11131, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "HAMPIGNY", - "center": "POINT (767451.0789832128211856 2387037.6566629083827138)", - "surface": 9550000, - "canton": null, - "numero_insee": "10171" - } - }, - { - "pk": 12406, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "HERBISSE", - "center": "POINT (731587.8871595748933032 2403244.0495133576914668)", - "surface": 21920000, - "canton": null, - "numero_insee": "10172" - } - }, - { - "pk": 36443, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ISLE-AUMONT", - "center": "POINT (732675.2531984054949135 2357720.6111850761808455)", - "surface": 3540000, - "canton": null, - "numero_insee": "10173" - } - }, - { - "pk": 4363, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ISLE-AUBIGNY", - "center": "POINT (743660.9713649712502956 2395641.2889903681352735)", - "surface": 18800000, - "canton": null, - "numero_insee": "10174" - } - }, - { - "pk": 8178, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JASSEINES", - "center": "POINT (751997.7562401499599218 2392009.6219808990135789)", - "surface": 16350000, - "canton": null, - "numero_insee": "10175" - } - }, - { - "pk": 13473, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JAUCOURT", - "center": "POINT (771048.6944916780339554 2364151.7768055619671941)", - "surface": 6600000, - "canton": null, - "numero_insee": "10176" - } - }, - { - "pk": 3799, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JAVERNANT", - "center": "POINT (723614.2433027897495776 2352339.7292373692616820)", - "surface": 5620000, - "canton": null, - "numero_insee": "10177" - } - }, - { - "pk": 34650, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JESSAINS", - "center": "POINT (765717.0509119433118030 2367408.7281736503355205)", - "surface": 10940000, - "canton": null, - "numero_insee": "10178" - } - }, - { - "pk": 11754, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JEUGNY", - "center": "POINT (727856.9990182638866827 2347672.2728921980597079)", - "surface": 16130000, - "canton": null, - "numero_insee": "10179" - } - }, - { - "pk": 37003, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JONCREUIL", - "center": "POINT (768888.8971747094765306 2394455.1783634796738625)", - "surface": 10640000, - "canton": null, - "numero_insee": "10180" - } - }, - { - "pk": 16467, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JULLY-SUR-SARCE", - "center": "POINT (744572.4757748164702207 2347313.9952503396198153)", - "surface": 30490000, - "canton": null, - "numero_insee": "10181" - } - }, - { - "pk": 6221, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JUVANCOURT", - "center": "POINT (784285.5002068746834993 2349253.6611817078664899)", - "surface": 8330000, - "canton": null, - "numero_insee": "10182" - } - }, - { - "pk": 33243, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JUVANZE", - "center": "POINT (766981.2209971642587334 2371722.6345463660545647)", - "surface": 4960000, - "canton": null, - "numero_insee": "10183" - } - }, - { - "pk": 12331, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "JUZANVIGNY", - "center": "POINT (768293.4002611272735521 2382141.3308014338836074)", - "surface": 7630000, - "canton": null, - "numero_insee": "10184" - } - }, - { - "pk": 28213, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LAGESSE", - "center": "POINT (733954.5809393589152023 2336715.8481452683918178)", - "surface": 12670000, - "canton": null, - "numero_insee": "10185" - } - }, - { - "pk": 29153, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LAINES-AUX-BOIS", - "center": "POINT (721947.7601523324847221 2360031.2569385478273034)", - "surface": 16410000, - "canton": null, - "numero_insee": "10186" - } - }, - { - "pk": 31127, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LANDREVILLE", - "center": "POINT (758615.9849174984265119 2343430.5597257697954774)", - "surface": 14150000, - "canton": null, - "numero_insee": "10187" - } - }, - { - "pk": 29214, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LANTAGES", - "center": "POINT (739300.3955506969941780 2343566.3941330262459815)", - "surface": 18910000, - "canton": null, - "numero_insee": "10188" - } - }, - { - "pk": 27678, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LASSICOURT", - "center": "POINT (760071.0592675094958395 2384072.6811869745142758)", - "surface": 7710000, - "canton": null, - "numero_insee": "10189" - } - }, - { - "pk": 37604, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LAUBRESSEL", - "center": "POINT (740189.2441804569680244 2368492.3225393542088568)", - "surface": 16440000, - "canton": null, - "numero_insee": "10190" - } - }, - { - "pk": 16662, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LAVAU", - "center": "POINT (730152.9323194191092625 2371909.5529964575544000)", - "surface": 5730000, - "canton": null, - "numero_insee": "10191" - } - }, - { - "pk": 3136, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LENTILLES", - "center": "POINT (769426.7614802434109151 2390056.6417355425655842)", - "surface": 17280000, - "canton": null, - "numero_insee": "10192" - } - }, - { - "pk": 21095, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LESMONT", - "center": "POINT (754474.2732376076746732 2383224.4341765800490975)", - "surface": 9990000, - "canton": null, - "numero_insee": "10193" - } - }, - { - "pk": 10866, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LEVIGNY", - "center": "POINT (775910.0887951098848134 2369096.8255710843950510)", - "surface": 13670000, - "canton": null, - "numero_insee": "10194" - } - }, - { - "pk": 17824, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LHUITRE", - "center": "POINT (742925.6268160397885367 2399737.9230757271870971)", - "surface": 36000000, - "canton": null, - "numero_insee": "10195" - } - }, - { - "pk": 30848, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LIGNIERES", - "center": "POINT (721503.8388601180631667 2329804.9564359891228378)", - "surface": 25940000, - "canton": null, - "numero_insee": "10196" - } - }, - { - "pk": 16356, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LIGNOL-LE-CHATEAU", - "center": "POINT (783893.8755903447745368 2359958.2361757420003414)", - "surface": 21810000, - "canton": null, - "numero_insee": "10197" - } - }, - { - "pk": 32242, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LIREY", - "center": "POINT (726614.5478839590214193 2352565.3562066652812064)", - "surface": 4820000, - "canton": null, - "numero_insee": "10198" - } - }, - { - "pk": 22336, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LOCHES-SUR-OURCE", - "center": "POINT (761518.7966313806828111 2343355.2153497212566435)", - "surface": 13710000, - "canton": null, - "numero_insee": "10199" - } - }, - { - "pk": 7375, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA LOGE-AUX-CHEVRES", - "center": "POINT (753726.2119839558145031 2365305.1098903939127922)", - "surface": 2840000, - "canton": null, - "numero_insee": "10200" - } - }, - { - "pk": 34559, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA LOGE-POMBLIN", - "center": "POINT (727202.4252001310233027 2342262.6836109482683241)", - "surface": 5220000, - "canton": null, - "numero_insee": "10201" - } - }, - { - "pk": 17426, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LONGCHAMP-SUR-AUJON", - "center": "POINT (784651.5897654050495476 2353259.7581324335187674)", - "surface": 16530000, - "canton": null, - "numero_insee": "10203" - } - }, - { - "pk": 25162, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LONGEVILLE-SUR-MOGNE", - "center": "POINT (728528.5677361506968737 2351080.5027928608469665)", - "surface": 4190000, - "canton": null, - "numero_insee": "10204" - } - }, - { - "pk": 35928, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LONGPRE-LE-SEC", - "center": "POINT (762908.0983987726503983 2356476.7893104348331690)", - "surface": 15710000, - "canton": null, - "numero_insee": "10205" - } - }, - { - "pk": 26744, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LONGSOLS", - "center": "POINT (744172.7479538187617436 2382536.3198503996245563)", - "surface": 12560000, - "canton": null, - "numero_insee": "10206" - } - }, - { - "pk": 10467, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LONGUEVILLE-SUR-AUBE", - "center": "POINT (716340.2670461068628356 2395809.4362655365839601)", - "surface": 11680000, - "canton": null, - "numero_insee": "10207" - } - }, - { - "pk": 34416, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA LOUPTIERE-THENARD", - "center": "POINT (681477.2013923481572419 2376700.6774674803018570)", - "surface": 13740000, - "canton": null, - "numero_insee": "10208" - } - }, - { - "pk": 18409, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LUSIGNY-SUR-BARSE", - "center": "POINT (744026.6379138517659158 2364421.9712476036511362)", - "surface": 38130000, - "canton": null, - "numero_insee": "10209" - } - }, - { - "pk": 29081, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LUYERES", - "center": "POINT (737612.7359056038549170 2377276.7884080256335437)", - "surface": 17570000, - "canton": null, - "numero_insee": "10210" - } - }, - { - "pk": 34085, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MACEY", - "center": "POINT (716972.3385928472271189 2368495.2380349496379495)", - "surface": 20780000, - "canton": null, - "numero_insee": "10211" - } - }, - { - "pk": 35735, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MACHY", - "center": "POINT (726428.0123871604446322 2350962.5866332170553505)", - "surface": 2770000, - "canton": null, - "numero_insee": "10212" - } - }, - { - "pk": 27348, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAGNANT", - "center": "POINT (755022.4419428338296711 2354107.9132558219134808)", - "surface": 15280000, - "canton": null, - "numero_insee": "10213" - } - }, - { - "pk": 36083, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAGNICOURT", - "center": "POINT (751245.8040379974991083 2386299.1626021778210998)", - "surface": 7800000, - "canton": null, - "numero_insee": "10214" - } - }, - { - "pk": 9871, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAGNY-FOUCHARD", - "center": "POINT (764063.6950535365613177 2361790.5382447149604559)", - "surface": 15130000, - "canton": null, - "numero_insee": "10215" - } - }, - { - "pk": 24979, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAILLY-LE-CAMP", - "center": "POINT (736133.7779375693062320 2409987.3625886472873390)", - "surface": 42960000, - "canton": null, - "numero_insee": "10216" - } - }, - { - "pk": 11716, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAISON-DES-CHAMPS", - "center": "POINT (765956.4210549064446241 2362807.4048629309982061)", - "surface": 4340000, - "canton": null, - "numero_insee": "10217" - } - }, - { - "pk": 12540, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAISONS-LES-CHAOURCE", - "center": "POINT (736262.9512950573116541 2335934.8661114391870797)", - "surface": 5900000, - "canton": null, - "numero_insee": "10218" - } - }, - { - "pk": 5227, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAISONS-LES-SOULAINES", - "center": "POINT (781514.6141644458984956 2369044.5858911802060902)", - "surface": 6090000, - "canton": null, - "numero_insee": "10219" - } - }, - { - "pk": 13499, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAIZIERES-LA-GRANDE-PAROISSE", - "center": "POINT (707379.5297985635697842 2390429.6781403254717588)", - "surface": 20460000, - "canton": null, - "numero_insee": "10220" - } - }, - { - "pk": 26654, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAIZIERES-LES-BRIENNE", - "center": "POINT (767580.1510926001938060 2383636.3251443081535399)", - "surface": 9450000, - "canton": null, - "numero_insee": "10221" - } - }, - { - "pk": 16293, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MARAYE-EN-OTHE", - "center": "POINT (713714.4200036921538413 2351455.1168282981961966)", - "surface": 42370000, - "canton": null, - "numero_insee": "10222" - } - }, - { - "pk": 17823, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MARCILLY-LE-HAYER", - "center": "POINT (696936.3483582397457212 2371027.3331275880336761)", - "surface": 34280000, - "canton": null, - "numero_insee": "10223" - } - }, - { - "pk": 36888, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MARIGNY-LE-CHATEL", - "center": "POINT (702473.0134258419275284 2378979.9445707998238504)", - "surface": 20280000, - "canton": null, - "numero_insee": "10224" - } - }, - { - "pk": 30484, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MARNAY-SUR-SEINE", - "center": "POINT (689959.1139525546459481 2391382.8772851941175759)", - "surface": 9960000, - "canton": null, - "numero_insee": "10225" - } - }, - { - "pk": 4422, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAROLLES-LES-BAILLY", - "center": "POINT (749404.2275789660634473 2355761.3386421184986830)", - "surface": 4320000, - "canton": null, - "numero_insee": "10226" - } - }, - { - "pk": 29096, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAROLLES-SOUS-LIGNIERES", - "center": "POINT (718198.1787061304785311 2330177.2023404208011925)", - "surface": 15080000, - "canton": null, - "numero_insee": "10227" - } - }, - { - "pk": 15041, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MATHAUX", - "center": "POINT (757446.0346593313151971 2375043.8413961897604167)", - "surface": 12530000, - "canton": null, - "numero_insee": "10228" - } - }, - { - "pk": 12541, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MAUPAS", - "center": "POINT (729637.8051474044332281 2350089.1842053541913629)", - "surface": 4220000, - "canton": null, - "numero_insee": "10229" - } - }, - { - "pk": 36202, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MERGEY", - "center": "POINT (725592.2060517788631842 2378675.7224479895085096)", - "surface": 15100000, - "canton": null, - "numero_insee": "10230" - } - }, - { - "pk": 33720, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LE MERIOT", - "center": "POINT (681658.9050012177322060 2390712.2195453909225762)", - "surface": 12690000, - "canton": null, - "numero_insee": "10231" - } - }, - { - "pk": 3758, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MERREY-SUR-ARCE", - "center": "POINT (753989.8722459287382662 2346093.1782773341983557)", - "surface": 8510000, - "canton": null, - "numero_insee": "10232" - } - }, - { - "pk": 13170, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MERY-SUR-SEINE", - "center": "POINT (715379.5383197475457564 2391097.9585028174333274)", - "surface": 12450000, - "canton": null, - "numero_insee": "10233" - } - }, - { - "pk": 33870, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MESGRIGNY", - "center": "POINT (712905.1078230305574834 2387874.6912657162174582)", - "surface": 7310000, - "canton": null, - "numero_insee": "10234" - } - }, - { - "pk": 13910, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MESNIL-LA-COMTESSE", - "center": "POINT (737501.2819015861023217 2390385.2164859520271420)", - "surface": 940000, - "canton": null, - "numero_insee": "10235" - } - }, - { - "pk": 8006, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MESNIL-LETTRE", - "center": "POINT (742138.2638549085240811 2386421.8024429073557258)", - "surface": 8810000, - "canton": null, - "numero_insee": "10236" - } - }, - { - "pk": 34548, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MESNIL-SAINT-LOUP", - "center": "POINT (706463.7613273955648765 2368606.2521074954420328)", - "surface": 11420000, - "canton": null, - "numero_insee": "10237" - } - }, - { - "pk": 3837, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MESNIL-SAINT-PERE", - "center": "POINT (749141.0697349336696789 2363164.5398889840580523)", - "surface": 17580000, - "canton": null, - "numero_insee": "10238" - } - }, - { - "pk": 27383, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MESNIL-SELLIERES", - "center": "POINT (738655.0770572158508003 2372382.1092250840738416)", - "surface": 8480000, - "canton": null, - "numero_insee": "10239" - } - }, - { - "pk": 28127, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MESSON", - "center": "POINT (717211.5312156521249563 2363893.9134902711957693)", - "surface": 11490000, - "canton": null, - "numero_insee": "10240" - } - }, - { - "pk": 33536, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "METZ-ROBERT", - "center": "POINT (731402.7140391138382256 2342598.5905893598683178)", - "surface": 4240000, - "canton": null, - "numero_insee": "10241" - } - }, - { - "pk": 3954, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MEURVILLE", - "center": "POINT (768594.8264290958177298 2358526.7389493575319648)", - "surface": 16410000, - "canton": null, - "numero_insee": "10242" - } - }, - { - "pk": 12660, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MOLINS-SUR-AUBE", - "center": "POINT (751769.9786194348707795 2383501.6226028422825038)", - "surface": 6240000, - "canton": null, - "numero_insee": "10243" - } - }, - { - "pk": 34435, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTAULIN", - "center": "POINT (738138.0658606112701818 2362570.5721489470452070)", - "surface": 12540000, - "canton": null, - "numero_insee": "10245" - } - }, - { - "pk": 9271, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTCEAUX-LES-VAUDES", - "center": "POINT (734536.8353502096142620 2350631.1851004632189870)", - "surface": 10060000, - "canton": null, - "numero_insee": "10246" - } - }, - { - "pk": 8778, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTFEY", - "center": "POINT (714396.3180835385574028 2341853.7537806406617165)", - "surface": 11500000, - "canton": null, - "numero_insee": "10247" - } - }, - { - "pk": 29302, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTGUEUX", - "center": "POINT (719981.0995955643011257 2367720.1915469672530890)", - "surface": 11220000, - "canton": null, - "numero_insee": "10248" - } - }, - { - "pk": 26823, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTIERAMEY", - "center": "POINT (746854.8791996566578746 2361343.7641648543067276)", - "surface": 6690000, - "canton": null, - "numero_insee": "10249" - } - }, - { - "pk": 31503, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTIER-EN-L'ISLE", - "center": "POINT (774135.3725716170156375 2365979.4222814985550940)", - "surface": 10580000, - "canton": null, - "numero_insee": "10250" - } - }, - { - "pk": 19698, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTIGNY-LES-MONTS", - "center": "POINT (721276.3500656696269289 2344814.3064406164921820)", - "surface": 14630000, - "canton": null, - "numero_insee": "10251" - } - }, - { - "pk": 13869, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTMARTIN-LE-HAUT", - "center": "POINT (764487.8405692043015733 2358992.0954490378499031)", - "surface": 1630000, - "canton": null, - "numero_insee": "10252" - } - }, - { - "pk": 37001, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTMORENCY-BEAUFORT", - "center": "POINT (764025.8706779927015305 2389710.3817767007276416)", - "surface": 9460000, - "canton": null, - "numero_insee": "10253" - } - }, - { - "pk": 19668, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTPOTHIER", - "center": "POINT (687000.5317555539077148 2398062.5671879341825843)", - "surface": 7900000, - "canton": null, - "numero_insee": "10254" - } - }, - { - "pk": 16926, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTREUIL-SUR-BARSE", - "center": "POINT (744870.5836183137726039 2359325.4115521009080112)", - "surface": 13070000, - "canton": null, - "numero_insee": "10255" - } - }, - { - "pk": 5130, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MONTSUZAIN", - "center": "POINT (733448.8432599001098424 2384446.5616093822754920)", - "surface": 19730000, - "canton": null, - "numero_insee": "10256" - } - }, - { - "pk": 4610, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MOREMBERT", - "center": "POINT (747400.7870754308532923 2391269.9945975090377033)", - "surface": 2500000, - "canton": null, - "numero_insee": "10257" - } - }, - { - "pk": 34656, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MORVILLIERS", - "center": "POINT (770230.4678124415222555 2377954.8270936617627740)", - "surface": 15660000, - "canton": null, - "numero_insee": "10258" - } - }, - { - "pk": 26473, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA MOTTE-TILLY", - "center": "POINT (681591.0027169176610187 2386908.9449005392380059)", - "surface": 11660000, - "canton": null, - "numero_insee": "10259" - } - }, - { - "pk": 31583, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MOUSSEY", - "center": "POINT (730461.0393936590990052 2359202.8998003890737891)", - "surface": 7310000, - "canton": null, - "numero_insee": "10260" - } - }, - { - "pk": 22852, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "MUSSY-SUR-SEINE", - "center": "POINT (762000.0701619308674708 2333852.1716882544569671)", - "surface": 28000000, - "canton": null, - "numero_insee": "10261" - } - }, - { - "pk": 15691, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "NEUVILLE-SUR-SEINE", - "center": "POINT (754448.0828957399353385 2339291.9892033021897078)", - "surface": 14580000, - "canton": null, - "numero_insee": "10262" - } - }, - { - "pk": 34659, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "NEUVILLE-SUR-VANNE", - "center": "POINT (706816.5550274389097467 2362404.7198988548479974)", - "surface": 17130000, - "canton": null, - "numero_insee": "10263" - } - }, - { - "pk": 37351, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "NOE-LES-MALLETS", - "center": "POINT (765693.4863330941880122 2346693.2585548893548548)", - "surface": 8530000, - "canton": null, - "numero_insee": "10264" - } - }, - { - "pk": 8071, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LES NOES-PRES-TROYES", - "center": "POINT (726479.4139373531797901 2368475.8773602731525898)", - "surface": 750000, - "canton": null, - "numero_insee": "10265" - } - }, - { - "pk": 30542, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "NOGENT-EN-OTHE", - "center": "POINT (708632.2213316030101851 2348910.1599392560310662)", - "surface": 9120000, - "canton": null, - "numero_insee": "10266" - } - }, - { - "pk": 23309, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "NOGENT-SUR-AUBE", - "center": "POINT (745017.9875931619899347 2389048.1543189021758735)", - "surface": 15970000, - "canton": null, - "numero_insee": "10267" - } - }, - { - "pk": 27502, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "NOGENT-SUR-SEINE", - "center": "POINT (685975.1934466244420037 2389147.5994264786131680)", - "surface": 19890000, - "canton": null, - "numero_insee": "10268" - } - }, - { - "pk": 9263, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "NOZAY", - "center": "POINT (728995.0076946965418756 2390412.9913004832342267)", - "surface": 15980000, - "canton": null, - "numero_insee": "10269" - } - }, - { - "pk": 24585, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ONJON", - "center": "POINT (743597.8993507472332567 2379529.2751281764358282)", - "surface": 22470000, - "canton": null, - "numero_insee": "10270" - } - }, - { - "pk": 30529, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ORIGNY-LE-SEC", - "center": "POINT (706718.1073546310653910 2385820.7969225575216115)", - "surface": 16460000, - "canton": null, - "numero_insee": "10271" - } - }, - { - "pk": 30751, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ORMES", - "center": "POINT (731143.6929660793393850 2396635.6365839545615017)", - "surface": 10200000, - "canton": null, - "numero_insee": "10272" - } - }, - { - "pk": 32231, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ORTILLON", - "center": "POINT (739907.9193809912540019 2389805.2548437034711242)", - "surface": 8050000, - "canton": null, - "numero_insee": "10273" - } - }, - { - "pk": 30188, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ORVILLIERS-SAINT-JULIEN", - "center": "POINT (709942.2238279085140675 2383246.2775174956768751)", - "surface": 24100000, - "canton": null, - "numero_insee": "10274" - } - }, - { - "pk": 33366, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "OSSEY-LES-TROIS-MAISONS", - "center": "POINT (704139.3393034650944173 2383097.0075402972288430)", - "surface": 16230000, - "canton": null, - "numero_insee": "10275" - } - }, - { - "pk": 19794, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PAISY-COSDON", - "center": "POINT (701248.4705079086124897 2358154.4459283347241580)", - "surface": 17660000, - "canton": null, - "numero_insee": "10276" - } - }, - { - "pk": 29949, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PALIS", - "center": "POINT (701179.7907391607295722 2366259.7934406590647995)", - "surface": 21140000, - "canton": null, - "numero_insee": "10277" - } - }, - { - "pk": 33148, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PARGUES", - "center": "POINT (739355.7031947195064276 2337061.9886055183596909)", - "surface": 14050000, - "canton": null, - "numero_insee": "10278" - } - }, - { - "pk": 9986, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PARS-LES-CHAVANGES", - "center": "POINT (760094.3904130418086424 2393079.2926807510666549)", - "surface": 8440000, - "canton": null, - "numero_insee": "10279" - } - }, - { - "pk": 29511, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PARS-LES-ROMILLY", - "center": "POINT (702898.7087167255813256 2387789.8468532892875373)", - "surface": 18020000, - "canton": null, - "numero_insee": "10280" - } - }, - { - "pk": 18871, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LE PAVILLON-SAINTE-JULIE", - "center": "POINT (715913.9465289695654064 2375291.1848124950192869)", - "surface": 22920000, - "canton": null, - "numero_insee": "10281" - } - }, - { - "pk": 3235, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PAYNS", - "center": "POINT (720108.1821430476848036 2376327.5023014824837446)", - "surface": 17120000, - "canton": null, - "numero_insee": "10282" - } - }, - { - "pk": 10364, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PEL-ET-DER", - "center": "POINT (753506.8593311578733847 2379313.3954238961450756)", - "surface": 13410000, - "canton": null, - "numero_insee": "10283" - } - }, - { - "pk": 8485, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PERIGNY-LA-ROSE", - "center": "POINT (695025.9232475629542023 2395728.8174541601911187)", - "surface": 6920000, - "canton": null, - "numero_insee": "10284" - } - }, - { - "pk": 31677, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PERTHES-LES-BRIENNE", - "center": "POINT (763174.7595934290438890 2383898.9862649836577475)", - "surface": 3780000, - "canton": null, - "numero_insee": "10285" - } - }, - { - "pk": 30292, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PETIT-MESNIL", - "center": "POINT (769465.7881394268479198 2373745.2698883800767362)", - "surface": 14770000, - "canton": null, - "numero_insee": "10286" - } - }, - { - "pk": 14451, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PINEY", - "center": "POINT (749965.0051053557544947 2372178.1121505950577557)", - "surface": 71500000, - "canton": null, - "numero_insee": "10287" - } - }, - { - "pk": 12352, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PLAINES-SAINT-LANGE", - "center": "POINT (759486.4278608681634068 2335231.8131797271780670)", - "surface": 10700000, - "canton": null, - "numero_insee": "10288" - } - }, - { - "pk": 21964, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PLANCY-L'ABBAYE", - "center": "POINT (721610.4931788640096784 2399756.9160516620613635)", - "surface": 41790000, - "canton": null, - "numero_insee": "10289" - } - }, - { - "pk": 10773, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PLANTY", - "center": "POINT (697496.0072876996127889 2364026.9793482180684805)", - "surface": 10720000, - "canton": null, - "numero_insee": "10290" - } - }, - { - "pk": 13472, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PLESSIS-BARBUISE", - "center": "POINT (692206.3580083417473361 2397806.4214248559437692)", - "surface": 5560000, - "canton": null, - "numero_insee": "10291" - } - }, - { - "pk": 3035, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "POIVRES", - "center": "POINT (742929.4987691512797028 2411045.8514143852517009)", - "surface": 42560000, - "canton": null, - "numero_insee": "10293" - } - }, - { - "pk": 12411, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "POLIGNY", - "center": "POINT (749412.7445658321958035 2354760.6725343074649572)", - "surface": 1480000, - "canton": null, - "numero_insee": "10294" - } - }, - { - "pk": 32894, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "POLISOT", - "center": "POINT (750309.5264537575421855 2343459.9044484891928732)", - "surface": 10530000, - "canton": null, - "numero_insee": "10295" - } - }, - { - "pk": 27394, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "POLISY", - "center": "POINT (750925.2641330123879015 2341663.7980757905170321)", - "surface": 11410000, - "canton": null, - "numero_insee": "10296" - } - }, - { - "pk": 10679, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PONT-SAINTE-MARIE", - "center": "POINT (730766.9278260407736525 2370313.6089134113863111)", - "surface": 4000000, - "canton": null, - "numero_insee": "10297" - } - }, - { - "pk": 18867, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PONT-SUR-SEINE", - "center": "POINT (693166.2359658501809463 2390809.6036875704303384)", - "surface": 16060000, - "canton": null, - "numero_insee": "10298" - } - }, - { - "pk": 26966, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "POUAN-LES-VALLEES", - "center": "POINT (727362.5370486382162198 2394101.7457235539332032)", - "surface": 16710000, - "canton": null, - "numero_insee": "10299" - } - }, - { - "pk": 17827, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "POUGY", - "center": "POINT (748864.7049353838665411 2383877.1776865930296481)", - "surface": 8890000, - "canton": null, - "numero_insee": "10300" - } - }, - { - "pk": 30319, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "POUY-SUR-VANNES", - "center": "POINT (693666.3904438831377774 2367196.8799537103623152)", - "surface": 15680000, - "canton": null, - "numero_insee": "10301" - } - }, - { - "pk": 33378, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PRASLIN", - "center": "POINT (739429.3935118959052488 2340164.9447461832314730)", - "surface": 12040000, - "canton": null, - "numero_insee": "10302" - } - }, - { - "pk": 10484, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PRECY-NOTRE-DAME", - "center": "POINT (755400.4190278759924695 2380230.1679762401618063)", - "surface": 4590000, - "canton": null, - "numero_insee": "10303" - } - }, - { - "pk": 3861, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PRECY-SAINT-MARTIN", - "center": "POINT (756887.7514752644347027 2381843.9852300109341741)", - "surface": 6460000, - "canton": null, - "numero_insee": "10304" - } - }, - { - "pk": 5413, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PREMIERFAIT", - "center": "POINT (724589.6510560881579295 2390675.7850445387884974)", - "surface": 14910000, - "canton": null, - "numero_insee": "10305" - } - }, - { - "pk": 8097, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PROVERVILLE", - "center": "POINT (773470.7636003370862454 2361770.6763137942180037)", - "surface": 7040000, - "canton": null, - "numero_insee": "10306" - } - }, - { - "pk": 25038, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PRUGNY", - "center": "POINT (719228.1369042716687545 2362109.7109333151020110)", - "surface": 8540000, - "canton": null, - "numero_insee": "10307" - } - }, - { - "pk": 30527, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PRUNAY-BELLEVILLE", - "center": "POINT (707109.0756890925113112 2375116.4323194134049118)", - "surface": 25750000, - "canton": null, - "numero_insee": "10308" - } - }, - { - "pk": 6127, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PRUSY", - "center": "POINT (727991.2971980402944610 2331861.5590935833752155)", - "surface": 3950000, - "canton": null, - "numero_insee": "10309" - } - }, - { - "pk": 31494, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "PUITS-ET-NUISEMENT", - "center": "POINT (761581.6535815146053210 2359467.6964180171489716)", - "surface": 12100000, - "canton": null, - "numero_insee": "10310" - } - }, - { - "pk": 7039, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RACINES", - "center": "POINT (712512.0085937399417162 2339836.2713892008177936)", - "surface": 7540000, - "canton": null, - "numero_insee": "10312" - } - }, - { - "pk": 20334, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RADONVILLIERS", - "center": "POINT (758467.1437257246579975 2372650.8017173637636006)", - "surface": 23360000, - "canton": null, - "numero_insee": "10313" - } - }, - { - "pk": 13315, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RAMERUPT", - "center": "POINT (745382.4834703020751476 2393254.2380519374273717)", - "surface": 13680000, - "canton": null, - "numero_insee": "10314" - } - }, - { - "pk": 32116, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RANCES", - "center": "POINT (764048.0460967911640182 2387108.7176021896302700)", - "surface": 3880000, - "canton": null, - "numero_insee": "10315" - } - }, - { - "pk": 13739, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RHEGES", - "center": "POINT (722461.1243565282784402 2393859.9784856694750488)", - "surface": 14770000, - "canton": null, - "numero_insee": "10316" - } - }, - { - "pk": 29441, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LES RICEYS", - "center": "POINT (751691.3307040574727580 2333964.5257846275344491)", - "surface": 43070000, - "canton": null, - "numero_insee": "10317" - } - }, - { - "pk": 26743, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RIGNY-LA-NONNEUSE", - "center": "POINT (697158.5662182316882536 2380235.8516277750022709)", - "surface": 18230000, - "canton": null, - "numero_insee": "10318" - } - }, - { - "pk": 8014, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RIGNY-LE-FERRON", - "center": "POINT (695957.6668340507894754 2356608.5224147066473961)", - "surface": 19030000, - "canton": null, - "numero_insee": "10319" - } - }, - { - "pk": 9516, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RILLY-SAINTE-SYRE", - "center": "POINT (720637.2176671246998012 2384738.0237201480194926)", - "surface": 14140000, - "canton": null, - "numero_insee": "10320" - } - }, - { - "pk": 37217, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA RIVIERE-DE-CORPS", - "center": "POINT (724500.1964461099123582 2365857.1741721453145146)", - "surface": 7390000, - "canton": null, - "numero_insee": "10321" - } - }, - { - "pk": 3399, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ROMILLY-SUR-SEINE", - "center": "POINT (702262.7088057709624991 2391987.4394206828437746)", - "surface": 25450000, - "canton": null, - "numero_insee": "10323" - } - }, - { - "pk": 23757, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RONCENAY", - "center": "POINT (726980.8179061994887888 2356571.4215070097707212)", - "surface": 3790000, - "canton": null, - "numero_insee": "10324" - } - }, - { - "pk": 5816, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ROSIERES-PRES-TROYES", - "center": "POINT (728218.7796940279658884 2363987.3694005147553980)", - "surface": 6250000, - "canton": null, - "numero_insee": "10325" - } - }, - { - "pk": 8181, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ROSNAY-L'HOPITAL", - "center": "POINT (760450.8539398743305355 2386477.6335748415440321)", - "surface": 12700000, - "canton": null, - "numero_insee": "10326" - } - }, - { - "pk": 31467, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA ROTHIERE", - "center": "POINT (766667.3756176442839205 2373321.1195715358480811)", - "surface": 7250000, - "canton": null, - "numero_insee": "10327" - } - }, - { - "pk": 17239, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ROUILLY-SACEY", - "center": "POINT (743547.2076753684086725 2373724.6588333472609520)", - "surface": 19180000, - "canton": null, - "numero_insee": "10328" - } - }, - { - "pk": 32106, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ROUILLY-SAINT-LOUP", - "center": "POINT (734520.3796335476217791 2364341.1349280145950615)", - "surface": 11320000, - "canton": null, - "numero_insee": "10329" - } - }, - { - "pk": 37467, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "ROUVRES-LES-VIGNES", - "center": "POINT (784970.6783081113826483 2362769.4884234089404345)", - "surface": 8230000, - "canton": null, - "numero_insee": "10330" - } - }, - { - "pk": 32342, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RUMILLY-LES-VAUDES", - "center": "POINT (738353.8436908994335681 2348962.3710879948921502)", - "surface": 42570000, - "canton": null, - "numero_insee": "10331" - } - }, - { - "pk": 28869, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "RUVIGNY", - "center": "POINT (737414.6331536720972508 2365266.3962869858369231)", - "surface": 4150000, - "canton": null, - "numero_insee": "10332" - } - }, - { - "pk": 35649, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-ANDRE-LES-VERGERS", - "center": "POINT (727003.5399638551753014 2365678.2886840924620628)", - "surface": 5830000, - "canton": null, - "numero_insee": "10333" - } - }, - { - "pk": 24663, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-AUBIN", - "center": "POINT (689889.5427469974383712 2387779.7318773386068642)", - "surface": 17840000, - "canton": null, - "numero_insee": "10334" - } - }, - { - "pk": 24989, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-BENOIST-SUR-VANNE", - "center": "POINT (698928.2949859168147668 2360336.4038980067707598)", - "surface": 16650000, - "canton": null, - "numero_insee": "10335" - } - }, - { - "pk": 28200, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-BENOIT-SUR-SEINE", - "center": "POINT (727007.5614596810191870 2376986.5193663169629872)", - "surface": 11760000, - "canton": null, - "numero_insee": "10336" - } - }, - { - "pk": 12402, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-CHRISTOPHE-DODINICOURT", - "center": "POINT (758073.1821017927723005 2383655.3737390441820025)", - "surface": 4970000, - "canton": null, - "numero_insee": "10337" - } - }, - { - "pk": 8242, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-ETIENNE-SOUS-BARBUISE", - "center": "POINT (731503.4053470481885597 2389633.7361062900163233)", - "surface": 10950000, - "canton": null, - "numero_insee": "10338" - } - }, - { - "pk": 11972, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-FLAVY", - "center": "POINT (706571.4240367745514959 2379515.0429175714962184)", - "surface": 17120000, - "canton": null, - "numero_insee": "10339" - } - }, - { - "pk": 31640, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-GERMAIN", - "center": "POINT (724325.5567334685474634 2362853.4987273900769651)", - "surface": 13860000, - "canton": null, - "numero_insee": "10340" - } - }, - { - "pk": 20787, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-HILAIRE-SOUS-ROMILLY", - "center": "POINT (697580.0599087554728612 2389546.0621246867813170)", - "surface": 20170000, - "canton": null, - "numero_insee": "10341" - } - }, - { - "pk": 12410, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-JEAN-DE-BONNEVAL", - "center": "POINT (727404.0327760553918779 2353873.0233588027767837)", - "surface": 6190000, - "canton": null, - "numero_insee": "10342" - } - }, - { - "pk": 31047, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-JULIEN-LES-VILLAS", - "center": "POINT (731108.7870075635146350 2365412.9455376835539937)", - "surface": 5220000, - "canton": null, - "numero_insee": "10343" - } - }, - { - "pk": 19231, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-LEGER-PRES-TROYES", - "center": "POINT (728941.3432944556698203 2361391.6037949356250465)", - "surface": 9160000, - "canton": null, - "numero_insee": "10344" - } - }, - { - "pk": 8571, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-LEGER-SOUS-MARGERIE", - "center": "POINT (758780.7758780850563198 2394569.1631745025515556)", - "surface": 6640000, - "canton": null, - "numero_insee": "10346" - } - }, - { - "pk": 25675, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-LOUP-DE-BUFFIGNY", - "center": "POINT (695728.8478148521389812 2383626.1776386741548777)", - "surface": 10200000, - "canton": null, - "numero_insee": "10347" - } - }, - { - "pk": 37603, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-LUPIEN", - "center": "POINT (701007.6544198541669175 2374764.5012905383482575)", - "surface": 23030000, - "canton": null, - "numero_insee": "10348" - } - }, - { - "pk": 5962, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-LYE", - "center": "POINT (721838.1699517106171697 2372939.7316150064580142)", - "surface": 32840000, - "canton": null, - "numero_insee": "10349" - } - }, - { - "pk": 18516, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-MARDS-EN-OTHE", - "center": "POINT (708001.2754834422376007 2352507.4787451061420143)", - "surface": 31430000, - "canton": null, - "numero_insee": "10350" - } - }, - { - "pk": 31162, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-MARTIN-DE-BOSSENAY", - "center": "POINT (700031.6134580170037225 2383662.6264279680326581)", - "surface": 16520000, - "canton": null, - "numero_insee": "10351" - } - }, - { - "pk": 3036, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINTE-MAURE", - "center": "POINT (728629.8512588368030265 2374498.4953892333433032)", - "surface": 20900000, - "canton": null, - "numero_insee": "10352" - } - }, - { - "pk": 13635, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-MESMIN", - "center": "POINT (715547.5258864280767739 2383093.6829919009469450)", - "surface": 16350000, - "canton": null, - "numero_insee": "10353" - } - }, - { - "pk": 29510, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-NABORD-SUR-AUBE", - "center": "POINT (737787.0093915844336152 2392088.8526425375603139)", - "surface": 8590000, - "canton": null, - "numero_insee": "10354" - } - }, - { - "pk": 12597, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-NICOLAS-LA-CHAPELLE", - "center": "POINT (684348.7741544776363298 2392135.9659311296418309)", - "surface": 11590000, - "canton": null, - "numero_insee": "10355" - } - }, - { - "pk": 9011, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-OULPH", - "center": "POINT (713561.4131059643113986 2393083.9502545516006649)", - "surface": 10950000, - "canton": null, - "numero_insee": "10356" - } - }, - { - "pk": 22333, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-PARRES-AUX-TERTRES", - "center": "POINT (733294.0759849527385086 2367332.9018324813805521)", - "surface": 11880000, - "canton": null, - "numero_insee": "10357" - } - }, - { - "pk": 32673, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-PARRES-LES-VAUDES", - "center": "POINT (739808.8993887610267848 2354378.7459177877753973)", - "surface": 3110000, - "canton": null, - "numero_insee": "10358" - } - }, - { - "pk": 20692, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-PHAL", - "center": "POINT (723956.9279047790914774 2347338.9276728094555438)", - "surface": 33390000, - "canton": null, - "numero_insee": "10359" - } - }, - { - "pk": 22631, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-POUANGE", - "center": "POINT (726554.2051299505401403 2359670.0790317147038877)", - "surface": 10030000, - "canton": null, - "numero_insee": "10360" - } - }, - { - "pk": 30959, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-REMY-SOUS-BARBUISE", - "center": "POINT (732617.7144012479111552 2388042.0671620885841548)", - "surface": 15640000, - "canton": null, - "numero_insee": "10361" - } - }, - { - "pk": 30528, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINTE-SAVINE", - "center": "POINT (725085.2947019259445369 2367663.4549371725879610)", - "surface": 7610000, - "canton": null, - "numero_insee": "10362" - } - }, - { - "pk": 33630, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-THIBAULT", - "center": "POINT (734580.7673800101038069 2357236.4377458179369569)", - "surface": 11810000, - "canton": null, - "numero_insee": "10363" - } - }, - { - "pk": 14712, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAINT-USAGE", - "center": "POINT (771096.2675845033954829 2346839.3978194305673242)", - "surface": 16520000, - "canton": null, - "numero_insee": "10364" - } - }, - { - "pk": 37848, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SALON", - "center": "POINT (723857.5609249257249758 2406180.4769438300281763)", - "surface": 22050000, - "canton": null, - "numero_insee": "10365" - } - }, - { - "pk": 33484, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAULCY", - "center": "POINT (785433.4080222616903484 2367176.6605629567056894)", - "surface": 11330000, - "canton": null, - "numero_insee": "10366" - } - }, - { - "pk": 35673, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA SAULSOTTE", - "center": "POINT (686324.6448583020828664 2395154.8046111841686070)", - "surface": 18980000, - "canton": null, - "numero_insee": "10367" - } - }, - { - "pk": 3034, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SAVIERES", - "center": "POINT (718378.2034852498909459 2379715.2660947339609265)", - "surface": 18490000, - "canton": null, - "numero_insee": "10368" - } - }, - { - "pk": 26964, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SEMOINE", - "center": "POINT (729431.3073761182604358 2409730.2584692742675543)", - "surface": 22410000, - "canton": null, - "numero_insee": "10369" - } - }, - { - "pk": 5665, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SOLIGNY-LES-ETANGS", - "center": "POINT (687364.0919181396020576 2378751.9211253011599183)", - "surface": 15970000, - "canton": null, - "numero_insee": "10370" - } - }, - { - "pk": 24782, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SOMMEVAL", - "center": "POINT (720412.1053228912642226 2352312.5441576321609318)", - "surface": 9570000, - "canton": null, - "numero_insee": "10371" - } - }, - { - "pk": 7819, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SOULAINES-DHUYS", - "center": "POINT (776433.6343740774318576 2378107.8165039424784482)", - "surface": 20160000, - "canton": null, - "numero_insee": "10372" - } - }, - { - "pk": 13243, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SOULIGNY", - "center": "POINT (723167.2464530463330448 2357839.9934905525296926)", - "surface": 10620000, - "canton": null, - "numero_insee": "10373" - } - }, - { - "pk": 25997, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "SPOY", - "center": "POINT (769173.0397714027203619 2361133.5815929546952248)", - "surface": 10440000, - "canton": null, - "numero_insee": "10374" - } - }, - { - "pk": 9916, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "THENNELIERES", - "center": "POINT (737198.3373467740602791 2367165.9436735049821436)", - "surface": 6800000, - "canton": null, - "numero_insee": "10375" - } - }, - { - "pk": 9889, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "THIEFFRAIN", - "center": "POINT (756192.5619270877214149 2357720.5359351141378284)", - "surface": 7440000, - "canton": null, - "numero_insee": "10376" - } - }, - { - "pk": 31262, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "THORS", - "center": "POINT (783103.7018797869095579 2370459.1721894764341414)", - "surface": 8340000, - "canton": null, - "numero_insee": "10378" - } - }, - { - "pk": 11971, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TORCY-LE-GRAND", - "center": "POINT (735276.0605717516737059 2393168.2846032949164510)", - "surface": 7520000, - "canton": null, - "numero_insee": "10379" - } - }, - { - "pk": 28433, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TORCY-LE-PETIT", - "center": "POINT (736677.8015823627356440 2393080.1305033448152244)", - "surface": 7230000, - "canton": null, - "numero_insee": "10380" - } - }, - { - "pk": 31796, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TORVILLIERS", - "center": "POINT (721403.2553343117469922 2365230.4413502980023623)", - "surface": 12130000, - "canton": null, - "numero_insee": "10381" - } - }, - { - "pk": 31668, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TRAINEL", - "center": "POINT (682850.1764838244998828 2380014.6631834954023361)", - "surface": 19980000, - "canton": null, - "numero_insee": "10382" - } - }, - { - "pk": 29167, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TRANCAULT", - "center": "POINT (688593.6631151597248390 2375359.8789630210958421)", - "surface": 26890000, - "canton": null, - "numero_insee": "10383" - } - }, - { - "pk": 37992, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TRANNES", - "center": "POINT (767797.1007539466954768 2369928.2823790446855128)", - "surface": 9780000, - "canton": null, - "numero_insee": "10384" - } - }, - { - "pk": 20356, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TROUANS", - "center": "POINT (740969.9587005494395271 2406125.7716884715482593)", - "surface": 29700000, - "canton": null, - "numero_insee": "10386" - } - }, - { - "pk": 21051, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TROYES", - "center": "POINT (729187.1343266543699428 2367798.3685792949981987)", - "surface": 13390000, - "canton": null, - "numero_insee": "10387" - } - }, - { - "pk": 29860, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "TURGY", - "center": "POINT (727938.5979895549826324 2338065.7866876837797463)", - "surface": 10010000, - "canton": null, - "numero_insee": "10388" - } - }, - { - "pk": 29625, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "UNIENVILLE", - "center": "POINT (763985.2311900395434350 2370996.5873099546879530)", - "surface": 11690000, - "canton": null, - "numero_insee": "10389" - } - }, - { - "pk": 11836, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "URVILLE", - "center": "POINT (773433.0100258645834401 2354464.9741518646478653)", - "surface": 12190000, - "canton": null, - "numero_insee": "10390" - } - }, - { - "pk": 12268, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VAILLY", - "center": "POINT (732517.9322569603100419 2376232.7594292284920812)", - "surface": 11260000, - "canton": null, - "numero_insee": "10391" - } - }, - { - "pk": 7829, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VALLANT-SAINT-GEORGES", - "center": "POINT (714624.8731542109744623 2385687.7129407804459333)", - "surface": 17860000, - "canton": null, - "numero_insee": "10392" - } - }, - { - "pk": 15259, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VALLENTIGNY", - "center": "POINT (768568.8494162441929802 2385045.7579902824945748)", - "surface": 15700000, - "canton": null, - "numero_insee": "10393" - } - }, - { - "pk": 6253, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VALLIERES", - "center": "POINT (728667.9750286827329546 2334669.4221792896278203)", - "surface": 8410000, - "canton": null, - "numero_insee": "10394" - } - }, - { - "pk": 20612, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VANLAY", - "center": "POINT (725447.0969671534840018 2336843.7235752213746309)", - "surface": 25880000, - "canton": null, - "numero_insee": "10395" - } - }, - { - "pk": 14861, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VAUCHASSIS", - "center": "POINT (718163.9275944116525352 2357797.5218897452577949)", - "surface": 24110000, - "canton": null, - "numero_insee": "10396" - } - }, - { - "pk": 37088, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VAUCHONVILLIERS", - "center": "POINT (763033.1863920206669718 2365284.3191365473903716)", - "surface": 11670000, - "canton": null, - "numero_insee": "10397" - } - }, - { - "pk": 25106, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VAUCOGNE", - "center": "POINT (748273.2562223058193922 2394579.7588565577752888)", - "surface": 16420000, - "canton": null, - "numero_insee": "10398" - } - }, - { - "pk": 35250, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VAUDES", - "center": "POINT (737206.3153194689657539 2354456.6908124163746834)", - "surface": 7530000, - "canton": null, - "numero_insee": "10399" - } - }, - { - "pk": 27176, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VAUPOISSON", - "center": "POINT (738899.6225827413145453 2390697.3198308548890054)", - "surface": 10870000, - "canton": null, - "numero_insee": "10400" - } - }, - { - "pk": 15085, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VENDEUVRE-SUR-BARSE", - "center": "POINT (757750.1540677252924070 2362837.5502052651718259)", - "surface": 52350000, - "canton": null, - "numero_insee": "10401" - } - }, - { - "pk": 37374, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA VENDUE-MIGNOT", - "center": "POINT (731431.3585872879484668 2351005.0905411862768233)", - "surface": 10560000, - "canton": null, - "numero_insee": "10402" - } - }, - { - "pk": 31468, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VERNONVILLIERS", - "center": "POINT (773692.4275149332825094 2370979.2876999704167247)", - "surface": 7550000, - "canton": null, - "numero_insee": "10403" - } - }, - { - "pk": 18166, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VERPILLIERES-SUR-OURCE", - "center": "POINT (767649.3647698126733303 2340305.1424713833257556)", - "surface": 18130000, - "canton": null, - "numero_insee": "10404" - } - }, - { - "pk": 18868, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VERRICOURT", - "center": "POINT (747749.5198863437399268 2385568.9022926799952984)", - "surface": 6960000, - "canton": null, - "numero_insee": "10405" - } - }, - { - "pk": 38011, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VERRIERES", - "center": "POINT (735048.7778791901655495 2361043.2094454816542566)", - "surface": 10090000, - "canton": null, - "numero_insee": "10406" - } - }, - { - "pk": 7153, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VIAPRES-LE-PETIT", - "center": "POINT (726716.2588066556490958 2399500.0638745203614235)", - "surface": 11340000, - "canton": null, - "numero_insee": "10408" - } - }, - { - "pk": 32463, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLACERF", - "center": "POINT (723278.8220260408706963 2380057.0837075687013566)", - "surface": 9670000, - "canton": null, - "numero_insee": "10409" - } - }, - { - "pk": 10053, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLADIN", - "center": "POINT (700352.1344646720681340 2369455.1088034464046359)", - "surface": 12550000, - "canton": null, - "numero_insee": "10410" - } - }, - { - "pk": 12955, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA VILLE-AUX-BOIS", - "center": "POINT (774008.1752177814487368 2380889.1383784227073193)", - "surface": 5560000, - "canton": null, - "numero_insee": "10411" - } - }, - { - "pk": 11598, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLECHETIF", - "center": "POINT (734469.3475947588449344 2370345.0732865361496806)", - "surface": 12250000, - "canton": null, - "numero_insee": "10412" - } - }, - { - "pk": 33871, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLELOUP", - "center": "POINT (713524.2710606004111469 2373869.8987264931201935)", - "surface": 16540000, - "canton": null, - "numero_insee": "10414" - } - }, - { - "pk": 20059, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLEMAUR-SUR-VANNE", - "center": "POINT (703404.9820764303440228 2363476.6064625377766788)", - "surface": 19640000, - "canton": null, - "numero_insee": "10415" - } - }, - { - "pk": 7763, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLEMEREUIL", - "center": "POINT (729777.5784847582690418 2357195.6213945765048265)", - "surface": 7620000, - "canton": null, - "numero_insee": "10416" - } - }, - { - "pk": 11642, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLEMOIRON-EN-OTHE", - "center": "POINT (708166.6228467831388116 2356611.9073254866525531)", - "surface": 12500000, - "canton": null, - "numero_insee": "10417" - } - }, - { - "pk": 12275, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLEMORIEN", - "center": "POINT (745901.4462802899070084 2344022.8399511198513210)", - "surface": 13900000, - "canton": null, - "numero_insee": "10418" - } - }, - { - "pk": 10314, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLEMOYENNE", - "center": "POINT (741996.7482521727215499 2355998.5342210843227804)", - "surface": 12270000, - "canton": null, - "numero_insee": "10419" - } - }, - { - "pk": 12927, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLENAUXE-LA-GRANDE", - "center": "POINT (689284.1981839154614136 2400183.3702137023210526)", - "surface": 18090000, - "canton": null, - "numero_insee": "10420" - } - }, - { - "pk": 31750, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA VILLENEUVE-AU-CHATELOT", - "center": "POINT (693829.3996258290717378 2395218.3320256224833429)", - "surface": 6350000, - "canton": null, - "numero_insee": "10421" - } - }, - { - "pk": 25718, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLENEUVE-AU-CHEMIN", - "center": "POINT (711973.4765372056281194 2344335.0702184257097542)", - "surface": 3390000, - "canton": null, - "numero_insee": "10422" - } - }, - { - "pk": 18149, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "LA VILLENEUVE-AU-CHENE", - "center": "POINT (752545.0171440136618912 2362993.3698322777636349)", - "surface": 10910000, - "canton": null, - "numero_insee": "10423" - } - }, - { - "pk": 12201, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLERET", - "center": "POINT (766330.7527694613672793 2389329.7449309490621090)", - "surface": 3260000, - "canton": null, - "numero_insee": "10424" - } - }, - { - "pk": 5234, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLERY", - "center": "POINT (725001.5823415346676484 2353952.6932734888978302)", - "surface": 3620000, - "canton": null, - "numero_insee": "10425" - } - }, - { - "pk": 18073, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLE-SOUS-LA-FERTE", - "center": "POINT (781265.5479381590848789 2351329.4395542633719742)", - "surface": 19670000, - "canton": null, - "numero_insee": "10426" - } - }, - { - "pk": 36161, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLE-SUR-ARCE", - "center": "POINT (756979.1081160278990865 2347619.7525119828060269)", - "surface": 16290000, - "canton": null, - "numero_insee": "10427" - } - }, - { - "pk": 20576, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLE-SUR-TERRE", - "center": "POINT (777774.6138426667312160 2373415.8610467715188861)", - "surface": 16040000, - "canton": null, - "numero_insee": "10428" - } - }, - { - "pk": 30530, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLETTE-SUR-AUBE", - "center": "POINT (730869.0112411999143660 2393631.1827567587606609)", - "surface": 7370000, - "canton": null, - "numero_insee": "10429" - } - }, - { - "pk": 32232, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLIERS-HERBISSE", - "center": "POINT (731661.5891451120842248 2406346.8424545368179679)", - "surface": 26410000, - "canton": null, - "numero_insee": "10430" - } - }, - { - "pk": 12680, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLIERS-LE-BOIS", - "center": "POINT (738414.5792577951215208 2330048.6985516683198512)", - "surface": 5210000, - "canton": null, - "numero_insee": "10431" - } - }, - { - "pk": 33379, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLIERS-SOUS-PRASLIN", - "center": "POINT (742717.1608772948384285 2341894.1798597094602883)", - "surface": 8390000, - "canton": null, - "numero_insee": "10432" - } - }, - { - "pk": 23822, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLY-EN-TRODES", - "center": "POINT (752593.5785419959574938 2357289.5947588682174683)", - "surface": 18130000, - "canton": null, - "numero_insee": "10433" - } - }, - { - "pk": 34558, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLY-LE-BOIS", - "center": "POINT (730409.4344162910711020 2353498.2588746929541230)", - "surface": 5400000, - "canton": null, - "numero_insee": "10434" - } - }, - { - "pk": 10059, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VILLY-LE-MARECHAL", - "center": "POINT (729189.0813263582531363 2355789.5897466684691608)", - "surface": 3450000, - "canton": null, - "numero_insee": "10435" - } - }, - { - "pk": 14841, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VINETS", - "center": "POINT (739457.4574928204528987 2395705.6051509184762836)", - "surface": 9280000, - "canton": null, - "numero_insee": "10436" - } - }, - { - "pk": 6602, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VIREY-SOUS-BAR", - "center": "POINT (746549.9793251927476376 2350132.9024086184799671)", - "surface": 10750000, - "canton": null, - "numero_insee": "10437" - } - }, - { - "pk": 32419, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VITRY-LE-CROISE", - "center": "POINT (766851.6406057178974152 2351706.8503746460191905)", - "surface": 32450000, - "canton": null, - "numero_insee": "10438" - } - }, - { - "pk": 30448, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VIVIERS-SUR-ARTAUT", - "center": "POINT (760891.9609091244637966 2346452.1903860704042017)", - "surface": 6160000, - "canton": null, - "numero_insee": "10439" - } - }, - { - "pk": 37046, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VOIGNY", - "center": "POINT (780370.2017443673685193 2362429.9907394377514720)", - "surface": 7070000, - "canton": null, - "numero_insee": "10440" - } - }, - { - "pk": 25918, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VOSNON", - "center": "POINT (711554.5353032073471695 2346533.1570230475626886)", - "surface": 12770000, - "canton": null, - "numero_insee": "10441" - } - }, - { - "pk": 35970, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VOUE", - "center": "POINT (732234.4659062908031046 2386037.3840694674290717)", - "surface": 13620000, - "canton": null, - "numero_insee": "10442" - } - }, - { - "pk": 31177, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VOUGREY", - "center": "POINT (741491.6682408645283431 2344785.9252772456966341)", - "surface": 4190000, - "canton": null, - "numero_insee": "10443" - } - }, - { - "pk": 26208, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "VULAINES", - "center": "POINT (695821.1590896856505424 2360910.5253337817266583)", - "surface": 8660000, - "canton": null, - "numero_insee": "10444" - } - }, - { - "pk": 32558, - "model": "ishtar_common.town", - "fields": { - "departement": 10, - "name": "YEVRES-LE-PETIT", - "center": "POINT (759329.6876160863321275 2388869.7927212207578123)", - "surface": 8260000, - "canton": null, - "numero_insee": "10445" - } - }, - { - "pk": 11231, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "AIGUES-VIVES", - "center": "POINT (615942.8421760163037106 1803610.6426877153571695)", - "surface": 10550000, - "canton": null, - "numero_insee": "11001" - } - }, - { - "pk": 10344, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "AIROUX", - "center": "POINT (562457.0069958713138476 1818479.6425211068708450)", - "surface": 5630000, - "canton": null, - "numero_insee": "11002" - } - }, - { - "pk": 27256, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "AJAC", - "center": "POINT (583683.1666884528240189 1782415.6070343377068639)", - "surface": 5430000, - "canton": null, - "numero_insee": "11003" - } - }, - { - "pk": 23695, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ALAIGNE", - "center": "POINT (580029.7209952460834756 1788291.8638738172594458)", - "surface": 14400000, - "canton": null, - "numero_insee": "11004" - } - }, - { - "pk": 36490, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ALBAS", - "center": "POINT (631875.5360677558928728 1778114.9156318109016865)", - "surface": 22880000, - "canton": null, - "numero_insee": "11006" - } - }, - { - "pk": 10340, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ALBIERES", - "center": "POINT (608904.0536776144290343 1771514.2433141437359154)", - "surface": 17450000, - "canton": null, - "numero_insee": "11007" - } - }, - { - "pk": 3802, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ALET-LES-BAINS", - "center": "POINT (593541.7926207304699346 1776791.6140948219690472)", - "surface": 24260000, - "canton": null, - "numero_insee": "11008" - } - }, - { - "pk": 19902, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ALZONNE", - "center": "POINT (586781.1383939387742430 1806969.9709948741365224)", - "surface": 22290000, - "canton": null, - "numero_insee": "11009" - } - }, - { - "pk": 7557, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ANTUGNAC", - "center": "POINT (590267.5458731282269582 1773260.0428652747068554)", - "surface": 9870000, - "canton": null, - "numero_insee": "11010" - } - }, - { - "pk": 22143, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARAGON", - "center": "POINT (597562.5521250875899568 1810664.5462153267581016)", - "surface": 21460000, - "canton": null, - "numero_insee": "11011" - } - }, - { - "pk": 35207, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARGELIERS", - "center": "POINT (646606.0233112954301760 1812178.2672368059866130)", - "surface": 10940000, - "canton": null, - "numero_insee": "11012" - } - }, - { - "pk": 35304, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARGENS-MINERVOIS", - "center": "POINT (635254.4478554124943912 1804874.3708987804129720)", - "surface": 4650000, - "canton": null, - "numero_insee": "11013" - } - }, - { - "pk": 24095, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARMISSAN", - "center": "POINT (661237.3465039185248315 1798585.8759208340197802)", - "surface": 12490000, - "canton": null, - "numero_insee": "11014" - } - }, - { - "pk": 21187, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARQUES", - "center": "POINT (604097.9090887958882377 1771573.9947721965145320)", - "surface": 19010000, - "canton": null, - "numero_insee": "11015" - } - }, - { - "pk": 32290, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARQUETTES-EN-VAL", - "center": "POINT (612961.4708956171525642 1789068.7972832936793566)", - "surface": 9630000, - "canton": null, - "numero_insee": "11016" - } - }, - { - "pk": 31861, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARTIGUES", - "center": "POINT (589325.8521388600347564 1754229.7038281394634396)", - "surface": 6550000, - "canton": null, - "numero_insee": "11017" - } - }, - { - "pk": 23515, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ARZENS", - "center": "POINT (589244.1767020742408931 1799782.3260538005270064)", - "surface": 21890000, - "canton": null, - "numero_insee": "11018" - } - }, - { - "pk": 24833, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "AUNAT", - "center": "POINT (580617.8073558069299906 1753956.4626020917203277)", - "surface": 10840000, - "canton": null, - "numero_insee": "11019" - } - }, - { - "pk": 29466, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "AURIAC", - "center": "POINT (612828.5533437349367887 1769144.3933061046991497)", - "surface": 21510000, - "canton": null, - "numero_insee": "11020" - } - }, - { - "pk": 35071, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "AXAT", - "center": "POINT (592123.9422834748402238 1754853.8856631556991488)", - "surface": 12030000, - "canton": null, - "numero_insee": "11021" - } - }, - { - "pk": 16749, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "AZILLE", - "center": "POINT (626018.3956228486495093 1807900.2052591308020055)", - "surface": 24370000, - "canton": null, - "numero_insee": "11022" - } - }, - { - "pk": 26369, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BADENS", - "center": "POINT (613653.8148790466366336 1801989.5587826150003821)", - "surface": 9940000, - "canton": null, - "numero_insee": "11023" - } - }, - { - "pk": 27290, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BAGES", - "center": "POINT (652193.3086322806775570 1790700.5463135493919253)", - "surface": 22330000, - "canton": null, - "numero_insee": "11024" - } - }, - { - "pk": 29806, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BAGNOLES", - "center": "POINT (609104.3692270395113155 1807257.4373940492514521)", - "surface": 5800000, - "canton": null, - "numero_insee": "11025" - } - }, - { - "pk": 12585, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BARAIGNE", - "center": "POINT (558186.7281250033993274 1814339.2326448685489595)", - "surface": 4720000, - "canton": null, - "numero_insee": "11026" - } - }, - { - "pk": 32958, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BARBAIRA", - "center": "POINT (614496.7497744512511417 1796990.8653532243333757)", - "surface": 9370000, - "canton": null, - "numero_insee": "11027" - } - }, - { - "pk": 25647, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELCAIRE", - "center": "POINT (567962.6570587354945019 1758756.2785081053152680)", - "surface": 31870000, - "canton": null, - "numero_insee": "11028" - } - }, - { - "pk": 9431, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELCASTEL-ET-BUC", - "center": "POINT (601018.9564435741631314 1780558.6947766887024045)", - "surface": 14570000, - "canton": null, - "numero_insee": "11029" - } - }, - { - "pk": 9184, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELFLOU", - "center": "POINT (556195.4618829124374315 1813021.0905409799888730)", - "surface": 9340000, - "canton": null, - "numero_insee": "11030" - } - }, - { - "pk": 31633, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELFORT-SUR-REBENTY", - "center": "POINT (576474.6453451629495248 1758527.2052997220307589)", - "surface": 5230000, - "canton": null, - "numero_insee": "11031" - } - }, - { - "pk": 22743, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELLEGARDE-DU-RAZES", - "center": "POINT (576615.9404389878036454 1789464.6568473584484309)", - "surface": 6800000, - "canton": null, - "numero_insee": "11032" - } - }, - { - "pk": 18534, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELPECH", - "center": "POINT (553299.3644035351462662 1800182.1517966489773244)", - "surface": 43850000, - "canton": null, - "numero_insee": "11033" - } - }, - { - "pk": 35566, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELVEZE-DU-RAZES", - "center": "POINT (580004.5541355184977874 1791295.1400990257970989)", - "surface": 4590000, - "canton": null, - "numero_insee": "11034" - } - }, - { - "pk": 7551, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELVIANES-ET-CAVIRAC", - "center": "POINT (589774.3540279114386067 1760440.8166740983724594)", - "surface": 11940000, - "canton": null, - "numero_insee": "11035" - } - }, - { - "pk": 19094, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BELVIS", - "center": "POINT (578552.6600579221267253 1761448.0480821994133294)", - "surface": 24250000, - "canton": null, - "numero_insee": "11036" - } - }, - { - "pk": 12751, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BERRIAC", - "center": "POINT (605751.1439198430161923 1801222.3595131505280733)", - "surface": 2670000, - "canton": null, - "numero_insee": "11037" - } - }, - { - "pk": 12176, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BESSEDE-DE-SAULT", - "center": "POINT (583725.4683240094454959 1753481.9152274115476757)", - "surface": 15480000, - "canton": null, - "numero_insee": "11038" - } - }, - { - "pk": 12312, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA BEZOLE", - "center": "POINT (580293.6973866362823173 1780685.2129326907452196)", - "surface": 6690000, - "canton": null, - "numero_insee": "11039" - } - }, - { - "pk": 16915, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BIZANET", - "center": "POINT (643455.1389173602219671 1794030.8433317444287241)", - "surface": 37580000, - "canton": null, - "numero_insee": "11040" - } - }, - { - "pk": 19803, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BIZE-MINERVOIS", - "center": "POINT (643385.7125620837323368 1814153.4227809652220458)", - "surface": 20980000, - "canton": null, - "numero_insee": "11041" - } - }, - { - "pk": 16751, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BLOMAC", - "center": "POINT (620467.9134647805476561 1801245.9179026221390814)", - "surface": 8470000, - "canton": null, - "numero_insee": "11042" - } - }, - { - "pk": 31015, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BOUILHONNAC", - "center": "POINT (608737.5755886893020943 1803249.7507060579955578)", - "surface": 6140000, - "canton": null, - "numero_insee": "11043" - } - }, - { - "pk": 35571, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BOUISSE", - "center": "POINT (607868.4713445376837626 1775610.3582619989756495)", - "surface": 26270000, - "canton": null, - "numero_insee": "11044" - } - }, - { - "pk": 37446, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BOURIEGE", - "center": "POINT (585631.4134432033170015 1776925.5063493663910776)", - "surface": 10910000, - "canton": null, - "numero_insee": "11045" - } - }, - { - "pk": 27846, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BOURIGEOLE", - "center": "POINT (582537.2294722741935402 1775798.2792786527425051)", - "surface": 9330000, - "canton": null, - "numero_insee": "11046" - } - }, - { - "pk": 29578, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LE BOUSQUET", - "center": "POINT (586692.5057250706013292 1745897.7369878822937608)", - "surface": 26080000, - "canton": null, - "numero_insee": "11047" - } - }, - { - "pk": 5938, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BOUTENAC", - "center": "POINT (637550.4019671982387081 1793780.8739818772301078)", - "surface": 23210000, - "canton": null, - "numero_insee": "11048" - } - }, - { - "pk": 22375, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BRAM", - "center": "POINT (581588.1091090788831934 1805424.7132900236174464)", - "surface": 17830000, - "canton": null, - "numero_insee": "11049" - } - }, - { - "pk": 29837, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BRENAC", - "center": "POINT (584220.3963502616388723 1766100.9815731882117689)", - "surface": 14110000, - "canton": null, - "numero_insee": "11050" - } - }, - { - "pk": 36276, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BREZILHAC", - "center": "POINT (578662.8736763286869973 1796089.4636663256678730)", - "surface": 7260000, - "canton": null, - "numero_insee": "11051" - } - }, - { - "pk": 29888, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BROUSSES-ET-VILLARET", - "center": "POINT (592415.0714814442908391 1815627.0840726383030415)", - "surface": 11540000, - "canton": null, - "numero_insee": "11052" - } - }, - { - "pk": 3364, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BRUGAIROLLES", - "center": "POINT (585600.5917753280373290 1792543.4379786262288690)", - "surface": 8900000, - "canton": null, - "numero_insee": "11053" - } - }, - { - "pk": 14982, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LES BRUNELS", - "center": "POINT (576534.3763865404762328 1823102.6295050496701151)", - "surface": 12290000, - "canton": null, - "numero_insee": "11054" - } - }, - { - "pk": 27126, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "BUGARACH", - "center": "POINT (601059.1962749785743654 1763839.4084679726511240)", - "surface": 27560000, - "canton": null, - "numero_insee": "11055" - } - }, - { - "pk": 22086, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CABRESPINE", - "center": "POINT (610905.4868130399845541 1819286.3160593849606812)", - "surface": 18110000, - "canton": null, - "numero_insee": "11056" - } - }, - { - "pk": 26829, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAHUZAC", - "center": "POINT (560719.1168100864160806 1798842.5871981391683221)", - "surface": 3140000, - "canton": null, - "numero_insee": "11057" - } - }, - { - "pk": 30039, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAILHAU", - "center": "POINT (583088.6364299892447889 1793623.6565161559265107)", - "surface": 10100000, - "canton": null, - "numero_insee": "11058" - } - }, - { - "pk": 38023, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAILHAVEL", - "center": "POINT (582669.7409116076305509 1795822.6948268455453217)", - "surface": 5630000, - "canton": null, - "numero_insee": "11059" - } - }, - { - "pk": 35800, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAILLA", - "center": "POINT (588507.3278755521168932 1756325.3325224951840937)", - "surface": 7710000, - "canton": null, - "numero_insee": "11060" - } - }, - { - "pk": 10852, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAMBIEURE", - "center": "POINT (582906.0396778458962217 1791519.6892022131942213)", - "surface": 3360000, - "canton": null, - "numero_insee": "11061" - } - }, - { - "pk": 23766, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAMPAGNA-DE-SAULT", - "center": "POINT (575941.0673976195976138 1750513.2339396076276898)", - "surface": 10780000, - "canton": null, - "numero_insee": "11062" - } - }, - { - "pk": 7323, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAMPAGNE-SUR-AUDE", - "center": "POINT (589009.7678418960422277 1768043.3781425254419446)", - "surface": 6130000, - "canton": null, - "numero_insee": "11063" - } - }, - { - "pk": 8801, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAMPLONG-D'AUDE", - "center": "POINT (625848.6106414361856878 1792380.8719907947815955)", - "surface": 12630000, - "canton": null, - "numero_insee": "11064" - } - }, - { - "pk": 23288, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAMPS-SUR-L'AGLY", - "center": "POINT (606678.8682612635893747 1762284.7060333420522511)", - "surface": 26550000, - "canton": null, - "numero_insee": "11065" - } - }, - { - "pk": 5590, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAMURAC", - "center": "POINT (566090.7049828835297376 1755136.3397426772862673)", - "surface": 11550000, - "canton": null, - "numero_insee": "11066" - } - }, - { - "pk": 25766, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CANET", - "center": "POINT (640178.2946621731389314 1802713.3004690774250776)", - "surface": 14020000, - "canton": null, - "numero_insee": "11067" - } - }, - { - "pk": 34382, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAPENDU", - "center": "POINT (617692.6524251156952232 1797918.7706180475652218)", - "surface": 15960000, - "canton": null, - "numero_insee": "11068" - } - }, - { - "pk": 34620, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CARCASSONNE", - "center": "POINT (600549.7108013833640143 1800678.1088573890738189)", - "surface": 65130000, - "canton": null, - "numero_insee": "11069" - } - }, - { - "pk": 9309, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CARLIPA", - "center": "POINT (582437.8994995774701238 1811538.8438622069079429)", - "surface": 5500000, - "canton": null, - "numero_insee": "11070" - } - }, - { - "pk": 3075, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CASCASTEL-DES-CORBIERES", - "center": "POINT (633500.8931788165355101 1775325.3155231606215239)", - "surface": 15710000, - "canton": null, - "numero_insee": "11071" - } - }, - { - "pk": 31870, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA CASSAIGNE", - "center": "POINT (571728.5440104876179248 1799235.0810362021438777)", - "surface": 12510000, - "canton": null, - "numero_insee": "11072" - } - }, - { - "pk": 27452, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CASSAIGNES", - "center": "POINT (596688.8920079210074618 1771611.9175225608050823)", - "surface": 3890000, - "canton": null, - "numero_insee": "11073" - } - }, - { - "pk": 24501, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LES CASSES", - "center": "POINT (561701.8166764444904402 1824980.7294976108241826)", - "surface": 7270000, - "canton": null, - "numero_insee": "11074" - } - }, - { - "pk": 14395, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CASTANS", - "center": "POINT (612271.6551765879848972 1823502.5820654798299074)", - "surface": 17370000, - "canton": null, - "numero_insee": "11075" - } - }, - { - "pk": 22550, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CASTELNAUDARY", - "center": "POINT (569407.1434412556700408 1813431.9802407054230571)", - "surface": 47890000, - "canton": null, - "numero_insee": "11076" - } - }, - { - "pk": 32088, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CASTELNAU-D'AUDE", - "center": "POINT (627658.0257253086892888 1803408.8199419390875846)", - "surface": 7460000, - "canton": null, - "numero_insee": "11077" - } - }, - { - "pk": 16328, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CASTELRENG", - "center": "POINT (582904.9448056007968262 1779705.9284429890103638)", - "surface": 11330000, - "canton": null, - "numero_insee": "11078" - } - }, - { - "pk": 28511, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAUDEBRONDE", - "center": "POINT (597179.8979067303007469 1820472.5445530402939767)", - "surface": 6520000, - "canton": null, - "numero_insee": "11079" - } - }, - { - "pk": 24643, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAUDEVAL", - "center": "POINT (570439.3432071638526395 1785808.7368635272141546)", - "surface": 7260000, - "canton": null, - "numero_insee": "11080" - } - }, - { - "pk": 19272, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAUNES-MINERVOIS", - "center": "POINT (614549.7261240306543186 1814511.4535583513788879)", - "surface": 28690000, - "canton": null, - "numero_insee": "11081" - } - }, - { - "pk": 3076, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAUNETTE-SUR-LAUQUET", - "center": "POINT (607326.7177073134807870 1780511.5452517487574369)", - "surface": 5110000, - "canton": null, - "numero_insee": "11082" - } - }, - { - "pk": 37903, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAUNETTES-EN-VAL", - "center": "POINT (618405.2438729706918821 1784609.3136344496160746)", - "surface": 8740000, - "canton": null, - "numero_insee": "11083" - } - }, - { - "pk": 25221, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAUX-ET-SAUZENS", - "center": "POINT (593225.8400605362839997 1802518.8400309486314654)", - "surface": 9190000, - "canton": null, - "numero_insee": "11084" - } - }, - { - "pk": 9828, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAVANAC", - "center": "POINT (599786.6575384688330814 1796166.5005313486326486)", - "surface": 8940000, - "canton": null, - "numero_insee": "11085" - } - }, - { - "pk": 12301, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAVES", - "center": "POINT (650961.4245478640077636 1770566.6544719636440277)", - "surface": 9020000, - "canton": null, - "numero_insee": "11086" - } - }, - { - "pk": 4024, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAZALRENOUX", - "center": "POINT (568230.6115022808080539 1798504.9853725857101381)", - "surface": 13750000, - "canton": null, - "numero_insee": "11087" - } - }, - { - "pk": 9959, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CAZILHAC", - "center": "POINT (601779.5870744243729860 1797284.5038300112355500)", - "surface": 4110000, - "canton": null, - "numero_insee": "11088" - } - }, - { - "pk": 33813, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CENNE-MONESTIES", - "center": "POINT (583122.7100692581152543 1813446.7611735996324569)", - "surface": 7780000, - "canton": null, - "numero_insee": "11089" - } - }, - { - "pk": 4383, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CEPIE", - "center": "POINT (591934.3306370488135144 1789392.8363138251006603)", - "surface": 6830000, - "canton": null, - "numero_insee": "11090" - } - }, - { - "pk": 13850, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CHALABRE", - "center": "POINT (573329.6048920501489192 1775420.7827417457010597)", - "surface": 16050000, - "canton": null, - "numero_insee": "11091" - } - }, - { - "pk": 4540, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CITOU", - "center": "POINT (615811.5737399740610272 1819227.4316208281088620)", - "surface": 17650000, - "canton": null, - "numero_insee": "11092" - } - }, - { - "pk": 26187, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LE CLAT", - "center": "POINT (586627.0318723411764950 1753706.4784977284725755)", - "surface": 10550000, - "canton": null, - "numero_insee": "11093" - } - }, - { - "pk": 6188, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CLERMONT-SUR-LAUQUET", - "center": "POINT (607509.2789311395026743 1782615.5323265127371997)", - "surface": 18710000, - "canton": null, - "numero_insee": "11094" - } - }, - { - "pk": 13406, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COMIGNE", - "center": "POINT (620213.0446546475868672 1795837.5309224296361208)", - "surface": 9600000, - "canton": null, - "numero_insee": "11095" - } - }, - { - "pk": 29490, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COMUS", - "center": "POINT (563259.9321057186461985 1758416.5631344318389893)", - "surface": 14450000, - "canton": null, - "numero_insee": "11096" - } - }, - { - "pk": 4747, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CONILHAC-DE-LA-MONTAGNE", - "center": "POINT (589251.3296971194213256 1775053.6325786197558045)", - "surface": 4630000, - "canton": null, - "numero_insee": "11097" - } - }, - { - "pk": 31219, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CONILHAC-CORBIERES", - "center": "POINT (630806.8770384016679600 1798029.0824563154019415)", - "surface": 12250000, - "canton": null, - "numero_insee": "11098" - } - }, - { - "pk": 22501, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CONQUES-SUR-ORBIEL", - "center": "POINT (603883.6262212725123391 1809015.6579274183604866)", - "surface": 25900000, - "canton": null, - "numero_insee": "11099" - } - }, - { - "pk": 32078, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COUDONS", - "center": "POINT (582250.0632444000802934 1762279.9789139218628407)", - "surface": 9730000, - "canton": null, - "numero_insee": "11101" - } - }, - { - "pk": 18551, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COUFFOULENS", - "center": "POINT (597396.6501138323219493 1794644.7032446246594191)", - "surface": 10080000, - "canton": null, - "numero_insee": "11102" - } - }, - { - "pk": 18054, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COUIZA", - "center": "POINT (594498.2203602384543046 1770191.8891157563775778)", - "surface": 6940000, - "canton": null, - "numero_insee": "11103" - } - }, - { - "pk": 32737, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COUNOZOULS", - "center": "POINT (591211.8367390860803425 1744233.6069990028627217)", - "surface": 27940000, - "canton": null, - "numero_insee": "11104" - } - }, - { - "pk": 36968, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COURNANEL", - "center": "POINT (591707.0601656691869721 1780680.7871542540378869)", - "surface": 6420000, - "canton": null, - "numero_insee": "11105" - } - }, - { - "pk": 37953, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COURSAN", - "center": "POINT (658779.0004231896018609 1805172.7518565128557384)", - "surface": 24560000, - "canton": null, - "numero_insee": "11106" - } - }, - { - "pk": 24070, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COURTAULY", - "center": "POINT (576077.3424488713499159 1782051.5219332189299166)", - "surface": 7810000, - "canton": null, - "numero_insee": "11107" - } - }, - { - "pk": 30816, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA COURTETE", - "center": "POINT (575182.5463911903789267 1793257.0622342214919627)", - "surface": 5670000, - "canton": null, - "numero_insee": "11108" - } - }, - { - "pk": 3817, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COUSTAUSSA", - "center": "POINT (595797.9780688780592754 1770403.0303007490001619)", - "surface": 4680000, - "canton": null, - "numero_insee": "11109" - } - }, - { - "pk": 10211, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "COUSTOUGE", - "center": "POINT (633229.0406001439550892 1783832.9721637004986405)", - "surface": 9730000, - "canton": null, - "numero_insee": "11110" - } - }, - { - "pk": 32734, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CRUSCADES", - "center": "POINT (639001.4467629111604765 1799800.0403096063528210)", - "surface": 9740000, - "canton": null, - "numero_insee": "11111" - } - }, - { - "pk": 5532, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CUBIERES-SUR-CINOBLE", - "center": "POINT (610584.0444894087268040 1762217.3927810271270573)", - "surface": 14840000, - "canton": null, - "numero_insee": "11112" - } - }, - { - "pk": 30442, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CUCUGNAN", - "center": "POINT (622308.8369296650635079 1760914.2951747532933950)", - "surface": 15110000, - "canton": null, - "numero_insee": "11113" - } - }, - { - "pk": 36277, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CUMIES", - "center": "POINT (558916.7875302663305774 1810841.3283611224032938)", - "surface": 4040000, - "canton": null, - "numero_insee": "11114" - } - }, - { - "pk": 20990, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CUXAC-CABARDES", - "center": "POINT (595273.6654725718544796 1820957.1186428554356098)", - "surface": 25610000, - "canton": null, - "numero_insee": "11115" - } - }, - { - "pk": 28342, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "CUXAC-D'AUDE", - "center": "POINT (654364.1149231125600636 1806336.8943041367456317)", - "surface": 21790000, - "canton": null, - "numero_insee": "11116" - } - }, - { - "pk": 8536, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "DAVEJEAN", - "center": "POINT (622008.4245146072935313 1772825.7993806693702936)", - "surface": 13640000, - "canton": null, - "numero_insee": "11117" - } - }, - { - "pk": 9426, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "DERNACUEILLETTE", - "center": "POINT (621335.4336955837206915 1769516.2590373724233359)", - "surface": 7900000, - "canton": null, - "numero_insee": "11118" - } - }, - { - "pk": 25986, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA DIGNE-D'AMONT", - "center": "POINT (585590.2873925566673279 1781830.8939645709469914)", - "surface": 3750000, - "canton": null, - "numero_insee": "11119" - } - }, - { - "pk": 35085, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA DIGNE-D'AVAL", - "center": "POINT (587086.0580881438218057 1782544.2525607771240175)", - "surface": 3220000, - "canton": null, - "numero_insee": "11120" - } - }, - { - "pk": 11799, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "DONAZAC", - "center": "POINT (582349.8555177248781547 1786208.8632857075426728)", - "surface": 5190000, - "canton": null, - "numero_insee": "11121" - } - }, - { - "pk": 25205, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "DOUZENS", - "center": "POINT (622402.8077750356169418 1797357.6822423886042088)", - "surface": 14720000, - "canton": null, - "numero_insee": "11122" - } - }, - { - "pk": 8861, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "DUILHAC-SOUS-PEYREPERTUSE", - "center": "POINT (618891.5870827001053840 1762487.4520830549299717)", - "surface": 21210000, - "canton": null, - "numero_insee": "11123" - } - }, - { - "pk": 27834, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "DURBAN-CORBIERES", - "center": "POINT (638890.8247961228480563 1777272.9271398596465588)", - "surface": 25660000, - "canton": null, - "numero_insee": "11124" - } - }, - { - "pk": 31961, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "EMBRES-ET-CASTELMAURE", - "center": "POINT (639355.3458657223964110 1769667.9135973763186485)", - "surface": 32690000, - "canton": null, - "numero_insee": "11125" - } - }, - { - "pk": 26810, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ESCALES", - "center": "POINT (630169.9979740267153829 1802328.6896174896974117)", - "surface": 10380000, - "canton": null, - "numero_insee": "11126" - } - }, - { - "pk": 23817, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ESCOULOUBRE", - "center": "POINT (583174.3077190308831632 1747570.2708767789881676)", - "surface": 32320000, - "canton": null, - "numero_insee": "11127" - } - }, - { - "pk": 3362, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ESCUEILLENS-ET-SAINT-JUST-DE-BELENGARD", - "center": "POINT (574220.0266546050552279 1788643.6571628123056144)", - "surface": 11680000, - "canton": null, - "numero_insee": "11128" - } - }, - { - "pk": 29802, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ESPERAZA", - "center": "POINT (590496.3152062612352893 1769857.9648816389963031)", - "surface": 10580000, - "canton": null, - "numero_insee": "11129" - } - }, - { - "pk": 21573, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ESPEZEL", - "center": "POINT (574459.8383496643509716 1760012.1043828239198774)", - "surface": 14550000, - "canton": null, - "numero_insee": "11130" - } - }, - { - "pk": 8682, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FA", - "center": "POINT (587096.7508760708151385 1769328.8671157979406416)", - "surface": 11940000, - "canton": null, - "numero_insee": "11131" - } - }, - { - "pk": 4664, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FABREZAN", - "center": "POINT (629960.6614177929004654 1791514.4267930879723281)", - "surface": 28940000, - "canton": null, - "numero_insee": "11132" - } - }, - { - "pk": 27835, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FAJAC-EN-VAL", - "center": "POINT (610243.3823093157261610 1790848.0508160176686943)", - "surface": 14040000, - "canton": null, - "numero_insee": "11133" - } - }, - { - "pk": 30808, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FAJAC-LA-RELENQUE", - "center": "POINT (550421.8560467342613265 1809068.3471379471011460)", - "surface": 3730000, - "canton": null, - "numero_insee": "11134" - } - }, - { - "pk": 20567, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA FAJOLLE", - "center": "POINT (569437.9761658238712698 1749958.1771027257200330)", - "surface": 15790000, - "canton": null, - "numero_insee": "11135" - } - }, - { - "pk": 18664, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FANJEAUX", - "center": "POINT (575541.0537961721420288 1798265.8555690543726087)", - "surface": 24880000, - "canton": null, - "numero_insee": "11136" - } - }, - { - "pk": 24446, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FELINES-TERMENES", - "center": "POINT (622684.7800169356632978 1775734.8915066649205983)", - "surface": 10360000, - "canton": null, - "numero_insee": "11137" - } - }, - { - "pk": 11506, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FENDEILLE", - "center": "POINT (568354.5666458709165454 1807616.5134361325763166)", - "surface": 7340000, - "canton": null, - "numero_insee": "11138" - } - }, - { - "pk": 34619, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FENOUILLET-DU-RAZES", - "center": "POINT (574968.9120190093526617 1794857.1276498734951019)", - "surface": 7580000, - "canton": null, - "numero_insee": "11139" - } - }, - { - "pk": 19084, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FERRALS-LES-CORBIERES", - "center": "POINT (632747.7036013890756294 1793440.0899137505330145)", - "surface": 16140000, - "canton": null, - "numero_insee": "11140" - } - }, - { - "pk": 8811, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FERRAN", - "center": "POINT (579877.6007733230944723 1794497.7887067010160536)", - "surface": 6120000, - "canton": null, - "numero_insee": "11141" - } - }, - { - "pk": 21553, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FESTES-ET-SAINT-ANDRE", - "center": "POINT (581858.2730806245235726 1773189.5378767943475395)", - "surface": 18530000, - "canton": null, - "numero_insee": "11142" - } - }, - { - "pk": 25617, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FITOU", - "center": "POINT (651499.9591711428947747 1766065.8925780055578798)", - "surface": 30700000, - "canton": null, - "numero_insee": "11144" - } - }, - { - "pk": 18860, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FLEURY", - "center": "POINT (668319.6945294984616339 1801649.1233308669179678)", - "surface": 52180000, - "canton": null, - "numero_insee": "11145" - } - }, - { - "pk": 8926, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FLOURE", - "center": "POINT (612091.6182885122252628 1797271.0004482963122427)", - "surface": 4620000, - "canton": null, - "numero_insee": "11146" - } - }, - { - "pk": 21823, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FONTANES-DE-SAULT", - "center": "POINT (579035.3126825961517170 1751640.4670944365207106)", - "surface": 5550000, - "canton": null, - "numero_insee": "11147" - } - }, - { - "pk": 13669, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FONTCOUVERTE", - "center": "POINT (628419.4338937756838277 1796206.9077299176715314)", - "surface": 10220000, - "canton": null, - "numero_insee": "11148" - } - }, - { - "pk": 32540, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FONTERS-DU-RAZES", - "center": "POINT (566382.5721927565755323 1803995.8636869406327605)", - "surface": 12620000, - "canton": null, - "numero_insee": "11149" - } - }, - { - "pk": 5073, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FONTIERS-CABARDES", - "center": "POINT (593186.5363572333008051 1819137.5546388512011617)", - "surface": 8820000, - "canton": null, - "numero_insee": "11150" - } - }, - { - "pk": 26811, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FONTIES-D'AUDE", - "center": "POINT (609780.7091678146971390 1798252.7408809121698141)", - "surface": 6130000, - "canton": null, - "numero_insee": "11151" - } - }, - { - "pk": 35810, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FONTJONCOUSE", - "center": "POINT (637245.2267084043705836 1782465.1519348644651473)", - "surface": 27730000, - "canton": null, - "numero_insee": "11152" - } - }, - { - "pk": 10348, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA FORCE", - "center": "POINT (579436.0617484302492812 1799399.7591935524251312)", - "surface": 4720000, - "canton": null, - "numero_insee": "11153" - } - }, - { - "pk": 5911, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FOURNES-CABARDES", - "center": "POINT (605917.7895293079782277 1817142.0201807350385934)", - "surface": 12870000, - "canton": null, - "numero_insee": "11154" - } - }, - { - "pk": 28095, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FOURTOU", - "center": "POINT (608639.0427961965324357 1767307.0731043706182390)", - "surface": 21050000, - "canton": null, - "numero_insee": "11155" - } - }, - { - "pk": 25774, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FRAISSE-CABARDES", - "center": "POINT (594630.8715588208287954 1814043.8424754003062844)", - "surface": 7520000, - "canton": null, - "numero_insee": "11156" - } - }, - { - "pk": 36944, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "FRAISSE-DES-CORBIERES", - "center": "POINT (643729.8473163577727973 1773308.9975279204081744)", - "surface": 19080000, - "canton": null, - "numero_insee": "11157" - } - }, - { - "pk": 28516, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GAJA-ET-VILLEDIEU", - "center": "POINT (587655.6567239108262584 1786253.3439258448779583)", - "surface": 8020000, - "canton": null, - "numero_insee": "11158" - } - }, - { - "pk": 22889, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GAJA-LA-SELVE", - "center": "POINT (563114.1835160765331239 1799763.6660352870821953)", - "surface": 11760000, - "canton": null, - "numero_insee": "11159" - } - }, - { - "pk": 34623, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GARDIE", - "center": "POINT (596870.7664370246930048 1785729.9468449503183365)", - "surface": 4790000, - "canton": null, - "numero_insee": "11161" - } - }, - { - "pk": 16660, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GENERVILLE", - "center": "POINT (567009.1976381835993379 1800897.5336229410022497)", - "surface": 10390000, - "canton": null, - "numero_insee": "11162" - } - }, - { - "pk": 12577, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GINCLA", - "center": "POINT (599564.1403161223279312 1751111.8005582266487181)", - "surface": 7870000, - "canton": null, - "numero_insee": "11163" - } - }, - { - "pk": 24131, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GINESTAS", - "center": "POINT (643936.0154611940961331 1808251.2901888254564255)", - "surface": 9510000, - "canton": null, - "numero_insee": "11164" - } - }, - { - "pk": 35558, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GINOLES", - "center": "POINT (585252.5592430082615465 1762405.2657604673877358)", - "surface": 6420000, - "canton": null, - "numero_insee": "11165" - } - }, - { - "pk": 24462, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GOURVIEILLE", - "center": "POINT (555477.9669824601151049 1815017.3804056565277278)", - "surface": 3210000, - "canton": null, - "numero_insee": "11166" - } - }, - { - "pk": 5812, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GRAMAZIE", - "center": "POINT (580493.3546272130915895 1792700.8613292635418475)", - "surface": 1980000, - "canton": null, - "numero_insee": "11167" - } - }, - { - "pk": 13414, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GRANES", - "center": "POINT (593133.6255755933234468 1765775.2568864920176566)", - "surface": 5600000, - "canton": null, - "numero_insee": "11168" - } - }, - { - "pk": 17231, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GRUISSAN", - "center": "POINT (660815.3616471057757735 1789271.5274265061598271)", - "surface": 62700000, - "canton": null, - "numero_insee": "11170" - } - }, - { - "pk": 17376, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "GUEYTES-ET-LABASTIDE", - "center": "POINT (572941.2422982943244278 1785929.8038668741937727)", - "surface": 5050000, - "canton": null, - "numero_insee": "11171" - } - }, - { - "pk": 4437, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "HOMPS", - "center": "POINT (631229.9026440674206242 1807243.2541020815260708)", - "surface": 3090000, - "canton": null, - "numero_insee": "11172" - } - }, - { - "pk": 31496, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "HOUNOUX", - "center": "POINT (572787.4766396830091253 1792335.9582622300367802)", - "surface": 7940000, - "canton": null, - "numero_insee": "11173" - } - }, - { - "pk": 30384, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LES ILHES", - "center": "POINT (603113.1064782027387992 1817318.6966808624565601)", - "surface": 4170000, - "canton": null, - "numero_insee": "11174" - } - }, - { - "pk": 17677, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ISSEL", - "center": "POINT (572469.3982187652727589 1818363.2242585630156100)", - "surface": 18220000, - "canton": null, - "numero_insee": "11175" - } - }, - { - "pk": 7427, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "JONQUIERES", - "center": "POINT (631543.1869111430132762 1781916.5630814037285745)", - "surface": 13590000, - "canton": null, - "numero_insee": "11176" - } - }, - { - "pk": 26819, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "JOUCOU", - "center": "POINT (579282.7992061390541494 1757950.0220712230075151)", - "surface": 6750000, - "canton": null, - "numero_insee": "11177" - } - }, - { - "pk": 6847, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LABASTIDE-D'ANJOU", - "center": "POINT (560674.3400043328292668 1816162.1003237732220441)", - "surface": 8600000, - "canton": null, - "numero_insee": "11178" - } - }, - { - "pk": 28147, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LABASTIDE-EN-VAL", - "center": "POINT (610896.1861987675074488 1784646.3188730455003679)", - "surface": 12050000, - "canton": null, - "numero_insee": "11179" - } - }, - { - "pk": 4879, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LABASTIDE-ESPARBAIRENQUE", - "center": "POINT (605382.7846671995939687 1821242.2062836161348969)", - "surface": 17120000, - "canton": null, - "numero_insee": "11180" - } - }, - { - "pk": 22864, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LABECEDE-LAURAGAIS", - "center": "POINT (573543.7480988457100466 1821575.8714177194051445)", - "surface": 20470000, - "canton": null, - "numero_insee": "11181" - } - }, - { - "pk": 5068, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LADERN-SUR-LAUQUET", - "center": "POINT (604054.2706506317481399 1788693.6253000004217029)", - "surface": 25560000, - "canton": null, - "numero_insee": "11183" - } - }, - { - "pk": 14918, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAGRASSE", - "center": "POINT (621779.5018687199335545 1788141.7640505603048950)", - "surface": 32470000, - "canton": null, - "numero_insee": "11185" - } - }, - { - "pk": 26571, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAIRIERE", - "center": "POINT (611736.5981235805666074 1779947.8911387766711414)", - "surface": 13510000, - "canton": null, - "numero_insee": "11186" - } - }, - { - "pk": 8537, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LANET", - "center": "POINT (612190.0343227412085980 1773644.3185563096776605)", - "surface": 8910000, - "canton": null, - "numero_insee": "11187" - } - }, - { - "pk": 6653, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA PALME", - "center": "POINT (653536.4404923134716228 1773892.2451857794076204)", - "surface": 32490000, - "canton": null, - "numero_insee": "11188" - } - }, - { - "pk": 14734, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAPRADE", - "center": "POINT (593125.2299140404211357 1826445.3521248805336654)", - "surface": 4730000, - "canton": null, - "numero_insee": "11189" - } - }, - { - "pk": 11108, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA REDORTE", - "center": "POINT (625442.1709484414895996 1804992.0208980522584170)", - "surface": 13580000, - "canton": null, - "numero_insee": "11190" - } - }, - { - "pk": 23477, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAROQUE-DE-FA", - "center": "POINT (618111.6938567413017154 1771891.9758421506267041)", - "surface": 20830000, - "canton": null, - "numero_insee": "11191" - } - }, - { - "pk": 23058, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LASBORDES", - "center": "POINT (577738.7114512500120327 1810798.6628319541923702)", - "surface": 15560000, - "canton": null, - "numero_insee": "11192" - } - }, - { - "pk": 30382, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LASSERRE-DE-PROUILLE", - "center": "POINT (579451.1609708950854838 1797597.8047334305010736)", - "surface": 4370000, - "canton": null, - "numero_insee": "11193" - } - }, - { - "pk": 24071, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LASTOURS", - "center": "POINT (603343.5808688759570941 1813716.5137796651106328)", - "surface": 2840000, - "canton": null, - "numero_insee": "11194" - } - }, - { - "pk": 35083, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAURABUC", - "center": "POINT (572168.7277023253263906 1806447.0683828333858401)", - "surface": 8440000, - "canton": null, - "numero_insee": "11195" - } - }, - { - "pk": 9202, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAURAC", - "center": "POINT (570094.1188172335969284 1803125.8968484969809651)", - "surface": 12140000, - "canton": null, - "numero_insee": "11196" - } - }, - { - "pk": 30598, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAURAGUEL", - "center": "POINT (586338.2861161807086319 1788144.5100952247157693)", - "surface": 7190000, - "canton": null, - "numero_insee": "11197" - } - }, - { - "pk": 17903, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAURE-MINERVOIS", - "center": "POINT (614007.1333341310964897 1807598.9777084928937256)", - "surface": 40540000, - "canton": null, - "numero_insee": "11198" - } - }, - { - "pk": 37448, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LAVALETTE", - "center": "POINT (594558.3251340891001746 1798825.7473048088140786)", - "surface": 6760000, - "canton": null, - "numero_insee": "11199" - } - }, - { - "pk": 27670, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LESPINASSIERE", - "center": "POINT (617081.8281936582643539 1822942.3272593857254833)", - "surface": 16680000, - "canton": null, - "numero_insee": "11200" - } - }, - { - "pk": 11949, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LEUC", - "center": "POINT (600212.3027852621162310 1793166.5966552360914648)", - "surface": 11730000, - "canton": null, - "numero_insee": "11201" - } - }, - { - "pk": 3479, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LEUCATE", - "center": "POINT (656402.8585411229869351 1766407.5919076635036618)", - "surface": 48000000, - "canton": null, - "numero_insee": "11202" - } - }, - { - "pk": 16160, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LEZIGNAN-CORBIERES", - "center": "POINT (634593.3036976580042392 1800163.3829971621744335)", - "surface": 38150000, - "canton": null, - "numero_insee": "11203" - } - }, - { - "pk": 12864, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LIGNAIROLLES", - "center": "POINT (572623.3081257430603728 1788029.5864943501073867)", - "surface": 7520000, - "canton": null, - "numero_insee": "11204" - } - }, - { - "pk": 16796, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LIMOUSIS", - "center": "POINT (605444.9968085816362873 1813834.2745412983931601)", - "surface": 10300000, - "canton": null, - "numero_insee": "11205" - } - }, - { - "pk": 15620, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LIMOUX", - "center": "POINT (591988.0751415278064087 1782985.8311144146136940)", - "surface": 32520000, - "canton": null, - "numero_insee": "11206" - } - }, - { - "pk": 32089, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LOUPIA", - "center": "POINT (582766.2361981394933537 1784310.1385202561505139)", - "surface": 4660000, - "canton": null, - "numero_insee": "11207" - } - }, - { - "pk": 8175, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA LOUVIERE-LAURAGAIS", - "center": "POINT (552338.1320946178166196 1807382.4120574132539332)", - "surface": 6210000, - "canton": null, - "numero_insee": "11208" - } - }, - { - "pk": 7933, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LUC-SUR-AUDE", - "center": "POINT (595472.4456401128554717 1773403.8245945372618735)", - "surface": 8020000, - "canton": null, - "numero_insee": "11209" - } - }, - { - "pk": 37806, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LUC-SUR-ORBIEU", - "center": "POINT (636721.7127119642682374 1797077.7192122060805559)", - "surface": 9860000, - "canton": null, - "numero_insee": "11210" - } - }, - { - "pk": 33960, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAGRIE", - "center": "POINT (589108.4018038845388219 1780158.4068666687235236)", - "surface": 10290000, - "canton": null, - "numero_insee": "11211" - } - }, - { - "pk": 9300, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAILHAC", - "center": "POINT (640101.5618538842536509 1811823.1203795492183417)", - "surface": 10580000, - "canton": null, - "numero_insee": "11212" - } - }, - { - "pk": 33437, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAISONS", - "center": "POINT (624839.3057629013201222 1769545.7291993163526058)", - "surface": 12310000, - "canton": null, - "numero_insee": "11213" - } - }, - { - "pk": 33961, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MALRAS", - "center": "POINT (586170.8017480552662164 1784238.5624235582072288)", - "surface": 4400000, - "canton": null, - "numero_insee": "11214" - } - }, - { - "pk": 27233, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MALVES-EN-MINERVOIS", - "center": "POINT (609421.5130114099010825 1805257.8004045707639307)", - "surface": 5080000, - "canton": null, - "numero_insee": "11215" - } - }, - { - "pk": 29065, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MALVIES", - "center": "POINT (587520.2908818488940597 1790457.0952572531532496)", - "surface": 7430000, - "canton": null, - "numero_insee": "11216" - } - }, - { - "pk": 10088, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MARCORIGNAN", - "center": "POINT (646987.3420242605498061 1802570.4397524823434651)", - "surface": 5730000, - "canton": null, - "numero_insee": "11217" - } - }, - { - "pk": 29455, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MARQUEIN", - "center": "POINT (550105.6348727897275239 1810967.8848329572938383)", - "surface": 5690000, - "canton": null, - "numero_insee": "11218" - } - }, - { - "pk": 9868, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MARSA", - "center": "POINT (583792.8513547681504861 1757387.1095616335514933)", - "surface": 19930000, - "canton": null, - "numero_insee": "11219" - } - }, - { - "pk": 24447, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MARSEILLETTE", - "center": "POINT (617266.9708958338014781 1800918.6588653251528740)", - "surface": 11160000, - "canton": null, - "numero_insee": "11220" - } - }, - { - "pk": 4912, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LES MARTYS", - "center": "POINT (597847.8806899267947301 1824382.5921364133246243)", - "surface": 19470000, - "canton": null, - "numero_insee": "11221" - } - }, - { - "pk": 21526, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAS-CABARDES", - "center": "POINT (601672.9456861508078873 1821911.8536247285082936)", - "surface": 9350000, - "canton": null, - "numero_insee": "11222" - } - }, - { - "pk": 7316, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAS-DES-COURS", - "center": "POINT (607330.1278748124605045 1792024.9716326247435063)", - "surface": 7490000, - "canton": null, - "numero_insee": "11223" - } - }, - { - "pk": 9819, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MASSAC", - "center": "POINT (618043.5657650275388733 1768086.9312994398642331)", - "surface": 12330000, - "canton": null, - "numero_insee": "11224" - } - }, - { - "pk": 22243, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAS-SAINTES-PUELLES", - "center": "POINT (562707.4783982051303610 1812474.8753187812399119)", - "surface": 29030000, - "canton": null, - "numero_insee": "11225" - } - }, - { - "pk": 11115, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAYREVILLE", - "center": "POINT (560182.5633304174989462 1803143.0619576682802290)", - "surface": 8280000, - "canton": null, - "numero_insee": "11226" - } - }, - { - "pk": 12998, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAYRONNES", - "center": "POINT (615719.1153421896742657 1782584.3988693603314459)", - "surface": 12200000, - "canton": null, - "numero_insee": "11227" - } - }, - { - "pk": 11236, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAZEROLLES-DU-RAZES", - "center": "POINT (577890.5206975889159366 1792679.0516664150636643)", - "surface": 8580000, - "canton": null, - "numero_insee": "11228" - } - }, - { - "pk": 4905, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MAZUBY", - "center": "POINT (575112.4979974025627598 1753810.2181657417677343)", - "surface": 8840000, - "canton": null, - "numero_insee": "11229" - } - }, - { - "pk": 19095, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MERIAL", - "center": "POINT (569708.9755589083069935 1753464.6099269660189748)", - "surface": 16670000, - "canton": null, - "numero_insee": "11230" - } - }, - { - "pk": 10644, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MEZERVILLE", - "center": "POINT (555056.9516472708201036 1805502.9578300509601831)", - "surface": 7670000, - "canton": null, - "numero_insee": "11231" - } - }, - { - "pk": 19970, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MIRAVAL-CABARDES", - "center": "POINT (600288.2561200688360259 1819897.9493725749198347)", - "surface": 12560000, - "canton": null, - "numero_insee": "11232" - } - }, - { - "pk": 10287, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MIREPEISSET", - "center": "POINT (645529.3047725351061672 1809265.8649937205482274)", - "surface": 5300000, - "canton": null, - "numero_insee": "11233" - } - }, - { - "pk": 25393, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MIREVAL-LAURAGAIS", - "center": "POINT (569962.9987661752384156 1806829.0592587844002992)", - "surface": 10670000, - "canton": null, - "numero_insee": "11234" - } - }, - { - "pk": 13815, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MISSEGRE", - "center": "POINT (602945.4196096578380093 1777671.4752077688463032)", - "surface": 7480000, - "canton": null, - "numero_insee": "11235" - } - }, - { - "pk": 20225, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MOLANDIER", - "center": "POINT (550149.9810538948513567 1805662.1658037411980331)", - "surface": 20640000, - "canton": null, - "numero_insee": "11236" - } - }, - { - "pk": 7800, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MOLLEVILLE", - "center": "POINT (559305.4950596052221954 1812246.1850883867591619)", - "surface": 3590000, - "canton": null, - "numero_insee": "11238" - } - }, - { - "pk": 30025, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTAURIOL", - "center": "POINT (558939.3960917544318363 1808138.4174785069189966)", - "surface": 8340000, - "canton": null, - "numero_insee": "11239" - } - }, - { - "pk": 8925, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTAZELS", - "center": "POINT (592279.8310259736608714 1772075.5121163656003773)", - "surface": 4440000, - "canton": null, - "numero_insee": "11240" - } - }, - { - "pk": 28268, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTBRUN-DES-CORBIERES", - "center": "POINT (627988.6746093879919499 1799807.4472821676172316)", - "surface": 10660000, - "canton": null, - "numero_insee": "11241" - } - }, - { - "pk": 32323, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTCLAR", - "center": "POINT (592307.0547955948859453 1792699.7958941415417939)", - "surface": 11630000, - "canton": null, - "numero_insee": "11242" - } - }, - { - "pk": 4155, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTFERRAND", - "center": "POINT (558652.0976763591170311 1818547.9261612482368946)", - "surface": 17890000, - "canton": null, - "numero_insee": "11243" - } - }, - { - "pk": 33043, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTFORT-SUR-BOULZANE", - "center": "POINT (597592.9880239280173555 1747390.8476157695986331)", - "surface": 34120000, - "canton": null, - "numero_insee": "11244" - } - }, - { - "pk": 34047, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTGAILLARD", - "center": "POINT (623860.9350892740767449 1766834.3185685367789119)", - "surface": 16860000, - "canton": null, - "numero_insee": "11245" - } - }, - { - "pk": 30027, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTGRADAIL", - "center": "POINT (575200.1558486038120463 1791154.7724239013623446)", - "surface": 4470000, - "canton": null, - "numero_insee": "11246" - } - }, - { - "pk": 7436, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTHAUT", - "center": "POINT (577341.0274632053915411 1786567.3567838994786143)", - "surface": 7030000, - "canton": null, - "numero_insee": "11247" - } - }, - { - "pk": 15737, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTJARDIN", - "center": "POINT (576535.6486208831192926 1775147.2853854461573064)", - "surface": 14560000, - "canton": null, - "numero_insee": "11249" - } - }, - { - "pk": 36713, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTJOI", - "center": "POINT (611561.6134906779043376 1776942.9088100579101592)", - "surface": 7410000, - "canton": null, - "numero_insee": "11250" - } - }, - { - "pk": 18492, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTLAUR", - "center": "POINT (618545.7043119346490130 1791718.7570100638549775)", - "surface": 35130000, - "canton": null, - "numero_insee": "11251" - } - }, - { - "pk": 14389, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTREAL", - "center": "POINT (584640.0258124858373776 1799643.6058544181287289)", - "surface": 56440000, - "canton": null, - "numero_insee": "11254" - } - }, - { - "pk": 25381, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTREDON-DES-CORBIERES", - "center": "POINT (647828.7090671674814075 1797771.9854764181654900)", - "surface": 17360000, - "canton": null, - "numero_insee": "11255" - } - }, - { - "pk": 3709, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONTSERET", - "center": "POINT (638289.1030701539712027 1789281.8683414768893272)", - "surface": 11410000, - "canton": null, - "numero_insee": "11256" - } - }, - { - "pk": 29362, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MONZE", - "center": "POINT (610513.4304024672601372 1794454.4972617444582283)", - "surface": 14620000, - "canton": null, - "numero_insee": "11257" - } - }, - { - "pk": 6352, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MOUSSAN", - "center": "POINT (650385.1146357374964282 1803299.8877028389833868)", - "surface": 15040000, - "canton": null, - "numero_insee": "11258" - } - }, - { - "pk": 13551, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MOUSSOULENS", - "center": "POINT (591972.4765612643677741 1808715.4620551813859493)", - "surface": 19570000, - "canton": null, - "numero_insee": "11259" - } - }, - { - "pk": 36945, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MOUTHOUMET", - "center": "POINT (615896.6413194761844352 1773375.1175794831942767)", - "surface": 13990000, - "canton": null, - "numero_insee": "11260" - } - }, - { - "pk": 28962, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "MOUX", - "center": "POINT (625111.6357083725742996 1796679.6567294294945896)", - "surface": 16070000, - "canton": null, - "numero_insee": "11261" - } - }, - { - "pk": 21250, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "NARBONNE", - "center": "POINT (655652.3770675287814811 1796035.8660617433488369)", - "surface": 174930000, - "canton": null, - "numero_insee": "11262" - } - }, - { - "pk": 16203, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "NEBIAS", - "center": "POINT (581024.3982861883705482 1765173.1317465861793607)", - "surface": 12980000, - "canton": null, - "numero_insee": "11263" - } - }, - { - "pk": 31683, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "NEVIAN", - "center": "POINT (644704.2539423017296940 1800248.5446014534682035)", - "surface": 14370000, - "canton": null, - "numero_insee": "11264" - } - }, - { - "pk": 27508, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PORT-LA-NOUVELLE", - "center": "POINT (657389.2299891966395080 1780031.8894316568039358)", - "surface": 37470000, - "canton": null, - "numero_insee": "11266" - } - }, - { - "pk": 31265, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ORNAISONS", - "center": "POINT (640723.5286336155841127 1797411.7698472738265991)", - "surface": 10820000, - "canton": null, - "numero_insee": "11267" - } - }, - { - "pk": 36803, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ORSANS", - "center": "POINT (570865.2874524084618315 1794722.6452465960755944)", - "surface": 10320000, - "canton": null, - "numero_insee": "11268" - } - }, - { - "pk": 13069, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "OUVEILLAN", - "center": "POINT (651428.0663697152631357 1810216.6198930772952735)", - "surface": 30160000, - "canton": null, - "numero_insee": "11269" - } - }, - { - "pk": 27335, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PADERN", - "center": "POINT (625696.6176031142240390 1762845.0381267878692597)", - "surface": 30180000, - "canton": null, - "numero_insee": "11270" - } - }, - { - "pk": 37729, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PALAIRAC", - "center": "POINT (626213.9032189986901358 1772761.0561991538852453)", - "surface": 18420000, - "canton": null, - "numero_insee": "11271" - } - }, - { - "pk": 13953, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PARAZA", - "center": "POINT (638945.7998726156074554 1806407.1822961880825460)", - "surface": 9560000, - "canton": null, - "numero_insee": "11273" - } - }, - { - "pk": 25287, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PAULIGNE", - "center": "POINT (584556.4597433041781187 1785726.7771029900759459)", - "surface": 6350000, - "canton": null, - "numero_insee": "11274" - } - }, - { - "pk": 24930, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PAYRA-SUR-L'HERS", - "center": "POINT (562355.6288278531283140 1806665.2724368772469461)", - "surface": 25310000, - "canton": null, - "numero_insee": "11275" - } - }, - { - "pk": 3029, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PAZIOLS", - "center": "POINT (631015.9874361781403422 1761287.9059129913803190)", - "surface": 28360000, - "canton": null, - "numero_insee": "11276" - } - }, - { - "pk": 33959, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PECHARIC-ET-LE-PY", - "center": "POINT (558514.2161325108027086 1799124.4897408518008888)", - "surface": 5930000, - "canton": null, - "numero_insee": "11277" - } - }, - { - "pk": 12454, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PECH-LUNA", - "center": "POINT (559300.0115056023932993 1800933.1415257926564664)", - "surface": 6790000, - "canton": null, - "numero_insee": "11278" - } - }, - { - "pk": 17374, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PENNAUTIER", - "center": "POINT (598007.5121302459156141 1805362.1892616027034819)", - "surface": 18530000, - "canton": null, - "numero_insee": "11279" - } - }, - { - "pk": 32071, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEPIEUX", - "center": "POINT (628399.0827982980990782 1810523.2222250653430820)", - "surface": 10280000, - "canton": null, - "numero_insee": "11280" - } - }, - { - "pk": 14225, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEXIORA", - "center": "POINT (575865.1768452601972967 1807379.0627042218111455)", - "surface": 13660000, - "canton": null, - "numero_insee": "11281" - } - }, - { - "pk": 29375, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEYREFITTE-DU-RAZES", - "center": "POINT (574258.5968733723275363 1784038.6219298141077161)", - "surface": 6970000, - "canton": null, - "numero_insee": "11282" - } - }, - { - "pk": 10985, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEYREFITTE-SUR-L'HERS", - "center": "POINT (557664.7858027182519436 1804924.0756235690787435)", - "surface": 6670000, - "canton": null, - "numero_insee": "11283" - } - }, - { - "pk": 7202, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEYRENS", - "center": "POINT (569371.1050241820048541 1817736.5966525333933532)", - "surface": 4970000, - "canton": null, - "numero_insee": "11284" - } - }, - { - "pk": 25417, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEYRIAC-DE-MER", - "center": "POINT (649916.1170637668110430 1787677.8577741333283484)", - "surface": 35470000, - "canton": null, - "numero_insee": "11285" - } - }, - { - "pk": 4256, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEYRIAC-MINERVOIS", - "center": "POINT (618293.2566484668059275 1809837.5335464670788497)", - "surface": 10220000, - "canton": null, - "numero_insee": "11286" - } - }, - { - "pk": 35316, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEYROLLES", - "center": "POINT (600078.3628533141454682 1773342.3627665862441063)", - "surface": 14970000, - "canton": null, - "numero_insee": "11287" - } - }, - { - "pk": 25776, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PEZENS", - "center": "POINT (592697.5853653581580147 1805818.2102461033500731)", - "surface": 11260000, - "canton": null, - "numero_insee": "11288" - } - }, - { - "pk": 15611, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PLAIGNE", - "center": "POINT (556834.1382794630480930 1796507.4310170919634402)", - "surface": 13700000, - "canton": null, - "numero_insee": "11290" - } - }, - { - "pk": 16206, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PLAVILLA", - "center": "POINT (564970.5937628222163767 1793271.6772220665588975)", - "surface": 12720000, - "canton": null, - "numero_insee": "11291" - } - }, - { - "pk": 31918, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA POMAREDE", - "center": "POINT (568127.0802020748378709 1822831.9980230624787509)", - "surface": 13410000, - "canton": null, - "numero_insee": "11292" - } - }, - { - "pk": 34861, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "POMAS", - "center": "POINT (595338.8841456978116184 1789321.2828670956660062)", - "surface": 10630000, - "canton": null, - "numero_insee": "11293" - } - }, - { - "pk": 9433, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "POMY", - "center": "POINT (577361.1564504483249038 1784164.7280970786232501)", - "surface": 6100000, - "canton": null, - "numero_insee": "11294" - } - }, - { - "pk": 23791, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PORTEL-DES-CORBIERES", - "center": "POINT (646448.5689514252590016 1783343.6171943992376328)", - "surface": 34980000, - "canton": null, - "numero_insee": "11295" - } - }, - { - "pk": 7275, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "POUZOLS-MINERVOIS", - "center": "POINT (638621.0258046016097069 1809307.7811381970532238)", - "surface": 10220000, - "canton": null, - "numero_insee": "11296" - } - }, - { - "pk": 16305, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PRADELLES-CABARDES", - "center": "POINT (608269.0669900783104822 1823268.7264623343944550)", - "surface": 21370000, - "canton": null, - "numero_insee": "11297" - } - }, - { - "pk": 37874, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PRADELLES-EN-VAL", - "center": "POINT (614526.1978941312991083 1793487.0577295182738453)", - "surface": 16650000, - "canton": null, - "numero_insee": "11298" - } - }, - { - "pk": 34859, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PREIXAN", - "center": "POINT (595404.5532580468570814 1793426.5951644331216812)", - "surface": 8570000, - "canton": null, - "numero_insee": "11299" - } - }, - { - "pk": 33688, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PUGINIER", - "center": "POINT (566648.9388106903061271 1820016.4344710409641266)", - "surface": 6930000, - "canton": null, - "numero_insee": "11300" - } - }, - { - "pk": 10842, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PUICHERIC", - "center": "POINT (622355.6591767157660797 1802963.7543487253133208)", - "surface": 13890000, - "canton": null, - "numero_insee": "11301" - } - }, - { - "pk": 26578, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PUILAURENS", - "center": "POINT (596814.9099051208468154 1756595.2617793614044785)", - "surface": 33840000, - "canton": null, - "numero_insee": "11302" - } - }, - { - "pk": 19460, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "PUIVERT", - "center": "POINT (577301.8402749784290791 1767344.5338344732299447)", - "surface": 42790000, - "canton": null, - "numero_insee": "11303" - } - }, - { - "pk": 21058, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "QUILLAN", - "center": "POINT (588045.5979050806490704 1763630.1023453255183995)", - "surface": 21950000, - "canton": null, - "numero_insee": "11304" - } - }, - { - "pk": 28963, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "QUINTILLAN", - "center": "POINT (629917.1453550910810009 1772892.3339293580502272)", - "surface": 16510000, - "canton": null, - "numero_insee": "11305" - } - }, - { - "pk": 27443, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "QUIRBAJOU", - "center": "POINT (586180.4193714146967977 1759209.2586631581652910)", - "surface": 14060000, - "canton": null, - "numero_insee": "11306" - } - }, - { - "pk": 11507, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RAISSAC-SUR-LAMPY", - "center": "POINT (585669.0400882897665724 1808262.1413299278356135)", - "surface": 5410000, - "canton": null, - "numero_insee": "11308" - } - }, - { - "pk": 24260, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RENNES-LE-CHATEAU", - "center": "POINT (594818.7115911053260788 1767791.7524648190010339)", - "surface": 15030000, - "canton": null, - "numero_insee": "11309" - } - }, - { - "pk": 21761, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RENNES-LES-BAINS", - "center": "POINT (600314.7194312917999923 1769039.2908060965128243)", - "surface": 19280000, - "canton": null, - "numero_insee": "11310" - } - }, - { - "pk": 37184, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RIBAUTE", - "center": "POINT (624772.6752306504640728 1789368.3353463211096823)", - "surface": 9500000, - "canton": null, - "numero_insee": "11311" - } - }, - { - "pk": 4217, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RIBOUISSE", - "center": "POINT (564742.7287093494087458 1796573.5938059566542506)", - "surface": 10540000, - "canton": null, - "numero_insee": "11312" - } - }, - { - "pk": 7675, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RICAUD", - "center": "POINT (564178.9339613784104586 1816091.3089636762160808)", - "surface": 6200000, - "canton": null, - "numero_insee": "11313" - } - }, - { - "pk": 29145, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RIEUX-EN-VAL", - "center": "POINT (616589.8074738197028637 1786195.9168515792116523)", - "surface": 7330000, - "canton": null, - "numero_insee": "11314" - } - }, - { - "pk": 16161, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RIEUX-MINERVOIS", - "center": "POINT (620616.7796340022468939 1807354.1976163731887937)", - "surface": 21920000, - "canton": null, - "numero_insee": "11315" - } - }, - { - "pk": 10672, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RODOME", - "center": "POINT (577907.2403332873946056 1754834.8187171276658773)", - "surface": 12010000, - "canton": null, - "numero_insee": "11317" - } - }, - { - "pk": 26809, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROQUECOURBE-MINERVOIS", - "center": "POINT (625772.8137157753808424 1801390.6518330988474190)", - "surface": 3660000, - "canton": null, - "numero_insee": "11318" - } - }, - { - "pk": 11127, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROQUEFERE", - "center": "POINT (603080.3255777296144515 1821222.8721008333377540)", - "surface": 8260000, - "canton": null, - "numero_insee": "11319" - } - }, - { - "pk": 17914, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROQUEFEUIL", - "center": "POINT (571953.7011956783244386 1760391.5888486853800714)", - "surface": 22720000, - "canton": null, - "numero_insee": "11320" - } - }, - { - "pk": 23167, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROQUEFORT-DE-SAULT", - "center": "POINT (588774.7154822621960193 1748318.0605233812239021)", - "surface": 22300000, - "canton": null, - "numero_insee": "11321" - } - }, - { - "pk": 31855, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROQUEFORT-DES-CORBIERES", - "center": "POINT (648406.3438546460820362 1776752.3970192493870854)", - "surface": 45550000, - "canton": null, - "numero_insee": "11322" - } - }, - { - "pk": 8683, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROQUETAILLADE", - "center": "POINT (589332.9692375544691458 1777256.8961057695560157)", - "surface": 11750000, - "canton": null, - "numero_insee": "11323" - } - }, - { - "pk": 4539, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROUBIA", - "center": "POINT (637453.4535580440424383 1805293.3479711057152599)", - "surface": 7570000, - "canton": null, - "numero_insee": "11324" - } - }, - { - "pk": 12717, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROUFFIAC-D'AUDE", - "center": "POINT (595622.4114496853435412 1791325.9860100066289306)", - "surface": 5550000, - "canton": null, - "numero_insee": "11325" - } - }, - { - "pk": 3776, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROUFFIAC-DES-CORBIERES", - "center": "POINT (617868.5932168969884515 1765081.9226167059969157)", - "surface": 16140000, - "canton": null, - "numero_insee": "11326" - } - }, - { - "pk": 19681, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROULLENS", - "center": "POINT (594482.5745486494852230 1795921.7565509823616594)", - "surface": 8150000, - "canton": null, - "numero_insee": "11327" - } - }, - { - "pk": 31028, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROUTIER", - "center": "POINT (583225.6667866538045928 1789219.6957916438113898)", - "surface": 11880000, - "canton": null, - "numero_insee": "11328" - } - }, - { - "pk": 28380, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "ROUVENAC", - "center": "POINT (584487.1595483898418024 1770107.9297262914478779)", - "surface": 12740000, - "canton": null, - "numero_insee": "11329" - } - }, - { - "pk": 24827, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "RUSTIQUES", - "center": "POINT (611554.0640110223321244 1801671.5679314141161740)", - "surface": 6570000, - "canton": null, - "numero_insee": "11330" - } - }, - { - "pk": 27038, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-AMANS", - "center": "POINT (563288.4324703887104988 1802868.7016283250413835)", - "surface": 8630000, - "canton": null, - "numero_insee": "11331" - } - }, - { - "pk": 14498, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-ANDRE-DE-ROQUELONGUE", - "center": "POINT (641804.7319973320700228 1787909.8513098673429340)", - "surface": 30000000, - "canton": null, - "numero_insee": "11332" - } - }, - { - "pk": 15456, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-BENOIT", - "center": "POINT (577708.4544878347078338 1778561.0945627132896334)", - "surface": 21460000, - "canton": null, - "numero_insee": "11333" - } - }, - { - "pk": 23499, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINTE-CAMELLE", - "center": "POINT (555038.5359401402529329 1807705.3343460310716182)", - "surface": 9890000, - "canton": null, - "numero_insee": "11334" - } - }, - { - "pk": 17913, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINTE-COLOMBE-SUR-GUETTE", - "center": "POINT (592666.4925135454395786 1749852.4905788514297456)", - "surface": 21270000, - "canton": null, - "numero_insee": "11335" - } - }, - { - "pk": 27453, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINTE-COLOMBE-SUR-L'HERS", - "center": "POINT (569357.8826048844493926 1771482.9459693564567715)", - "surface": 11030000, - "canton": null, - "numero_insee": "11336" - } - }, - { - "pk": 14200, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-COUAT-D'AUDE", - "center": "POINT (624377.1915553522994742 1800678.1034043892286718)", - "surface": 5400000, - "canton": null, - "numero_insee": "11337" - } - }, - { - "pk": 7200, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-COUAT-DU-RAZES", - "center": "POINT (581224.0508142714388669 1777188.9140019631013274)", - "surface": 6620000, - "canton": null, - "numero_insee": "11338" - } - }, - { - "pk": 33767, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-DENIS", - "center": "POINT (590300.2232946747681126 1817111.0598036369774491)", - "surface": 8620000, - "canton": null, - "numero_insee": "11339" - } - }, - { - "pk": 11369, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINTE-EULALIE", - "center": "POINT (589305.6656597258988768 1804388.1480335784144700)", - "surface": 6360000, - "canton": null, - "numero_insee": "11340" - } - }, - { - "pk": 29589, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-FERRIOL", - "center": "POINT (590831.0744045984465629 1765755.9420362617820501)", - "surface": 10100000, - "canton": null, - "numero_insee": "11341" - } - }, - { - "pk": 33217, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-FRICHOUX", - "center": "POINT (618033.3312449899967760 1805029.8290693834424019)", - "surface": 6380000, - "canton": null, - "numero_insee": "11342" - } - }, - { - "pk": 35358, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-GAUDERIC", - "center": "POINT (569089.3091916672419757 1791604.1799737156834453)", - "surface": 11470000, - "canton": null, - "numero_insee": "11343" - } - }, - { - "pk": 23696, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-HILAIRE", - "center": "POINT (600070.9084550525294617 1786157.2719629658386111)", - "surface": 23840000, - "canton": null, - "numero_insee": "11344" - } - }, - { - "pk": 12710, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-JEAN-DE-BARROU", - "center": "POINT (640126.7178111736429855 1773178.5263730781152844)", - "surface": 7570000, - "canton": null, - "numero_insee": "11345" - } - }, - { - "pk": 3090, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-JEAN-DE-PARACOL", - "center": "POINT (581379.5353383511537686 1770582.4699222617782652)", - "surface": 7320000, - "canton": null, - "numero_insee": "11346" - } - }, - { - "pk": 30740, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-JULIA-DE-BEC", - "center": "POINT (593166.3801681523909792 1761870.9254955137148499)", - "surface": 14140000, - "canton": null, - "numero_insee": "11347" - } - }, - { - "pk": 16818, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-JULIEN-DE-BRIOLA", - "center": "POINT (568056.3731228531105444 1795399.9394789219368249)", - "surface": 11750000, - "canton": null, - "numero_insee": "11348" - } - }, - { - "pk": 13279, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-JUST-ET-LE-BEZU", - "center": "POINT (595952.6924056165153161 1763896.6670141904614866)", - "surface": 13890000, - "canton": null, - "numero_insee": "11350" - } - }, - { - "pk": 37810, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-LOUIS-ET-PARAHOU", - "center": "POINT (598781.0097424512496218 1760916.8568392212036997)", - "surface": 16030000, - "canton": null, - "numero_insee": "11352" - } - }, - { - "pk": 12036, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-MARCEL-SUR-AUDE", - "center": "POINT (647762.8949092259863392 1805580.4338704599067569)", - "surface": 8440000, - "canton": null, - "numero_insee": "11353" - } - }, - { - "pk": 9052, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-MARTIN-DES-PUITS", - "center": "POINT (619432.4331365602556616 1781514.3310606335289776)", - "surface": 7110000, - "canton": null, - "numero_insee": "11354" - } - }, - { - "pk": 26915, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-MARTIN-DE-VILLEREGLAN", - "center": "POINT (589735.2860705880448222 1788973.9265098290052265)", - "surface": 9700000, - "canton": null, - "numero_insee": "11355" - } - }, - { - "pk": 21266, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-MARTIN-LALANDE", - "center": "POINT (573932.1036937189055607 1811067.1201121634803712)", - "surface": 12710000, - "canton": null, - "numero_insee": "11356" - } - }, - { - "pk": 33551, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-MARTIN-LE-VIEIL", - "center": "POINT (585152.5550292740808800 1810159.9932544697076082)", - "surface": 13660000, - "canton": null, - "numero_insee": "11357" - } - }, - { - "pk": 37189, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-MARTIN-LYS", - "center": "POINT (591898.5255201490363106 1757855.5540090638678521)", - "surface": 10260000, - "canton": null, - "numero_insee": "11358" - } - }, - { - "pk": 21327, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-MICHEL-DE-LANES", - "center": "POINT (552383.8427174078533426 1813890.2517616660334170)", - "surface": 13020000, - "canton": null, - "numero_insee": "11359" - } - }, - { - "pk": 32583, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-NAZAIRE-D'AUDE", - "center": "POINT (645062.5088246142258868 1805257.3306310267653316)", - "surface": 8720000, - "canton": null, - "numero_insee": "11360" - } - }, - { - "pk": 22434, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-PAPOUL", - "center": "POINT (576201.8748813639394939 1814990.5999186770059168)", - "surface": 27400000, - "canton": null, - "numero_insee": "11361" - } - }, - { - "pk": 8463, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-PAULET", - "center": "POINT (563023.3067493966082111 1822589.0555495368316770)", - "surface": 7520000, - "canton": null, - "numero_insee": "11362" - } - }, - { - "pk": 31431, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-PIERRE-DES-CHAMPS", - "center": "POINT (622123.6099149729125202 1782938.5966560109518468)", - "surface": 16680000, - "canton": null, - "numero_insee": "11363" - } - }, - { - "pk": 7074, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-POLYCARPE", - "center": "POINT (597009.5215190562885255 1781125.7430210653692484)", - "surface": 14110000, - "canton": null, - "numero_insee": "11364" - } - }, - { - "pk": 29157, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINT-SERNIN", - "center": "POINT (556779.7194436877034605 1803014.4844773877412081)", - "surface": 6810000, - "canton": null, - "numero_insee": "11365" - } - }, - { - "pk": 26292, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAINTE-VALIERE", - "center": "POINT (641334.0549802990863100 1808129.2540096684824675)", - "surface": 6510000, - "canton": null, - "numero_insee": "11366" - } - }, - { - "pk": 20913, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SAISSAC", - "center": "POINT (585786.1658502407371998 1818174.4637095378711820)", - "surface": 59110000, - "canton": null, - "numero_insee": "11367" - } - }, - { - "pk": 4002, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SALLELES-D'AUDE", - "center": "POINT (648646.1466855378821492 1807690.2951228907331824)", - "surface": 12550000, - "canton": null, - "numero_insee": "11369" - } - }, - { - "pk": 12881, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SALLES-D'AUDE", - "center": "POINT (662693.3527259577531368 1804004.3981050243601203)", - "surface": 18300000, - "canton": null, - "numero_insee": "11370" - } - }, - { - "pk": 5961, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SALLES-SUR-L'HERS", - "center": "POINT (554816.5565300219459459 1810306.4643211551010609)", - "surface": 19990000, - "canton": null, - "numero_insee": "11371" - } - }, - { - "pk": 27695, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SALSIGNE", - "center": "POINT (601545.8486914838431403 1813200.8474951144307852)", - "surface": 11870000, - "canton": null, - "numero_insee": "11372" - } - }, - { - "pk": 20096, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SALVEZINES", - "center": "POINT (595748.9648363570449874 1752381.3282015710137784)", - "surface": 20150000, - "canton": null, - "numero_insee": "11373" - } - }, - { - "pk": 3344, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SALZA", - "center": "POINT (613774.1317476164549589 1775760.0945918459910899)", - "surface": 8510000, - "canton": null, - "numero_insee": "11374" - } - }, - { - "pk": 8283, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SEIGNALENS", - "center": "POINT (569816.0557465141173452 1788506.6617373989429325)", - "surface": 6390000, - "canton": null, - "numero_insee": "11375" - } - }, - { - "pk": 32742, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA SERPENT", - "center": "POINT (586661.0537834224523976 1773530.1513770062010735)", - "surface": 10070000, - "canton": null, - "numero_insee": "11376" - } - }, - { - "pk": 8923, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SERRES", - "center": "POINT (599295.1260786362690851 1771233.3207443694118410)", - "surface": 4290000, - "canton": null, - "numero_insee": "11377" - } - }, - { - "pk": 8277, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SERVIES-EN-VAL", - "center": "POINT (615373.3482707738876343 1787987.7877779125701636)", - "surface": 6730000, - "canton": null, - "numero_insee": "11378" - } - }, - { - "pk": 32118, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SIGEAN", - "center": "POINT (652567.0739143933169544 1781993.5594323044642806)", - "surface": 40560000, - "canton": null, - "numero_insee": "11379" - } - }, - { - "pk": 21172, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SONNAC-SUR-L'HERS", - "center": "POINT (572597.8132827149238437 1779118.9881893361452967)", - "surface": 13740000, - "canton": null, - "numero_insee": "11380" - } - }, - { - "pk": 4475, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SOUGRAIGNE", - "center": "POINT (603036.2001865177880973 1766859.5467857136391103)", - "surface": 18980000, - "canton": null, - "numero_insee": "11381" - } - }, - { - "pk": 10227, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SOUILHANELS", - "center": "POINT (565872.3799845534376800 1817106.6242304865736514)", - "surface": 2780000, - "canton": null, - "numero_insee": "11382" - } - }, - { - "pk": 27268, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SOUILHE", - "center": "POINT (565860.6501447351183742 1818508.1250532520934939)", - "surface": 4370000, - "canton": null, - "numero_insee": "11383" - } - }, - { - "pk": 4980, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SOULATGE", - "center": "POINT (613672.3464418502990156 1764045.4704259843565524)", - "surface": 24770000, - "canton": null, - "numero_insee": "11384" - } - }, - { - "pk": 31719, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "SOUPEX", - "center": "POINT (563745.8346199472434819 1819992.1384186819195747)", - "surface": 7590000, - "canton": null, - "numero_insee": "11385" - } - }, - { - "pk": 27232, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TALAIRAN", - "center": "POINT (627147.6235630114097148 1780778.2877297580707818)", - "surface": 37910000, - "canton": null, - "numero_insee": "11386" - } - }, - { - "pk": 26370, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TAURIZE", - "center": "POINT (613800.2044650248717517 1784570.6048507054802030)", - "surface": 8620000, - "canton": null, - "numero_insee": "11387" - } - }, - { - "pk": 11789, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TERMES", - "center": "POINT (619063.1373038340825588 1777806.8975862851366401)", - "surface": 19080000, - "canton": null, - "numero_insee": "11388" - } - }, - { - "pk": 18491, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "THEZAN-DES-CORBIERES", - "center": "POINT (636402.2013107591774315 1787463.8840016748290509)", - "surface": 26510000, - "canton": null, - "numero_insee": "11390" - } - }, - { - "pk": 30045, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "LA TOURETTE-CABARDES", - "center": "POINT (599086.1316702233161777 1819987.9729215381667018)", - "surface": 5210000, - "canton": null, - "numero_insee": "11391" - } - }, - { - "pk": 20327, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TOURNISSAN", - "center": "POINT (626396.3205502479104325 1786778.9683679109439254)", - "surface": 12010000, - "canton": null, - "numero_insee": "11392" - } - }, - { - "pk": 28714, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TOUROUZELLE", - "center": "POINT (631748.9796701751183718 1805045.0911796421278268)", - "surface": 14330000, - "canton": null, - "numero_insee": "11393" - } - }, - { - "pk": 11235, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TOURREILLES", - "center": "POINT (586309.5216179490089417 1779634.3524954214226454)", - "surface": 6450000, - "canton": null, - "numero_insee": "11394" - } - }, - { - "pk": 10235, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TRASSANEL", - "center": "POINT (608629.0935682406416163 1816163.6503653735853732)", - "surface": 4530000, - "canton": null, - "numero_insee": "11395" - } - }, - { - "pk": 32291, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TRAUSSE", - "center": "POINT (618768.5450838457327336 1812844.9705968881025910)", - "surface": 11040000, - "canton": null, - "numero_insee": "11396" - } - }, - { - "pk": 29032, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TREILLES", - "center": "POINT (649577.5988706935895607 1768452.5159592044074088)", - "surface": 12580000, - "canton": null, - "numero_insee": "11398" - } - }, - { - "pk": 31530, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TREVILLE", - "center": "POINT (568950.5625860943691805 1820135.8151154892984778)", - "surface": 5440000, - "canton": null, - "numero_insee": "11399" - } - }, - { - "pk": 13148, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TREZIERS", - "center": "POINT (569455.8491261117160320 1783698.0539176138117909)", - "surface": 6570000, - "canton": null, - "numero_insee": "11400" - } - }, - { - "pk": 29222, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "TUCHAN", - "center": "POINT (631968.2261739923851565 1767102.7707112438511103)", - "surface": 59650000, - "canton": null, - "numero_insee": "11401" - } - }, - { - "pk": 31871, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VALMIGERE", - "center": "POINT (603864.0631434191018343 1775576.7276578010059893)", - "surface": 6040000, - "canton": null, - "numero_insee": "11402" - } - }, - { - "pk": 20811, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VENTENAC-CABARDES", - "center": "POINT (595582.2383764137048274 1808044.9424140111077577)", - "surface": 10840000, - "canton": null, - "numero_insee": "11404" - } - }, - { - "pk": 24075, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VENTENAC-EN-MINERVOIS", - "center": "POINT (642156.0018099721055478 1805633.3022125116549432)", - "surface": 6150000, - "canton": null, - "numero_insee": "11405" - } - }, - { - "pk": 28930, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VERAZA", - "center": "POINT (597647.9880985294003040 1776625.8349173392634839)", - "surface": 15120000, - "canton": null, - "numero_insee": "11406" - } - }, - { - "pk": 28732, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VERZEILLE", - "center": "POINT (599331.4890662949765101 1790756.4169797655194998)", - "surface": 5470000, - "canton": null, - "numero_insee": "11408" - } - }, - { - "pk": 36712, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VIGNEVIEILLE", - "center": "POINT (615747.7253483928507194 1779180.6649358815047890)", - "surface": 16910000, - "canton": null, - "numero_insee": "11409" - } - }, - { - "pk": 37428, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLALIER", - "center": "POINT (606616.8054730140138417 1805434.4713127522263676)", - "surface": 8010000, - "canton": null, - "numero_insee": "11410" - } - }, - { - "pk": 31485, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLANIERE", - "center": "POINT (601020.0994943391997367 1816199.8672653678804636)", - "surface": 7210000, - "canton": null, - "numero_insee": "11411" - } - }, - { - "pk": 27451, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLARDEBELLE", - "center": "POINT (605539.0329258644487709 1778794.5422310717403889)", - "surface": 13420000, - "canton": null, - "numero_insee": "11412" - } - }, - { - "pk": 34038, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLARDONNEL", - "center": "POINT (598129.5909179480513558 1814673.8889006420504302)", - "surface": 17150000, - "canton": null, - "numero_insee": "11413" - } - }, - { - "pk": 32072, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLAR-EN-VAL", - "center": "POINT (608778.7481612969422713 1786430.6277704536914825)", - "surface": 11870000, - "canton": null, - "numero_insee": "11414" - } - }, - { - "pk": 30267, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLAR-SAINT-ANSELME", - "center": "POINT (596886.7285779251251370 1783827.8653224308509380)", - "surface": 6090000, - "canton": null, - "numero_insee": "11415" - } - }, - { - "pk": 28269, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLARZEL-CABARDES", - "center": "POINT (610690.9563243436859921 1809072.8354248781688511)", - "surface": 6640000, - "canton": null, - "numero_insee": "11416" - } - }, - { - "pk": 3230, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLARZEL-DU-RAZES", - "center": "POINT (589098.5299260794417933 1793273.5805272450670600)", - "surface": 13030000, - "canton": null, - "numero_insee": "11417" - } - }, - { - "pk": 18533, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLASAVARY", - "center": "POINT (575298.9092861687531695 1803269.5995380813255906)", - "surface": 34240000, - "canton": null, - "numero_insee": "11418" - } - }, - { - "pk": 12349, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLAUTOU", - "center": "POINT (559245.1220751549117267 1795526.4385364905465394)", - "surface": 6110000, - "canton": null, - "numero_insee": "11419" - } - }, - { - "pk": 29916, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEDAIGNE", - "center": "POINT (642194.7966260755201802 1801028.3252574056386948)", - "surface": 2480000, - "canton": null, - "numero_insee": "11421" - } - }, - { - "pk": 10714, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEDUBERT", - "center": "POINT (606535.1948769664159045 1803231.2514674367848784)", - "surface": 3230000, - "canton": null, - "numero_insee": "11422" - } - }, - { - "pk": 19234, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEFLOURE", - "center": "POINT (604228.4293873406713828 1791798.6903744312003255)", - "surface": 17370000, - "canton": null, - "numero_insee": "11423" - } - }, - { - "pk": 20094, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEFORT", - "center": "POINT (576361.4261665223166347 1772042.1864416990429163)", - "surface": 12740000, - "canton": null, - "numero_insee": "11424" - } - }, - { - "pk": 30266, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEGAILHENC", - "center": "POINT (600791.2092574933776632 1807688.2007088228128850)", - "surface": 5040000, - "canton": null, - "numero_insee": "11425" - } - }, - { - "pk": 7918, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEGLY", - "center": "POINT (608079.7446789833484218 1810052.0471046874299645)", - "surface": 10280000, - "canton": null, - "numero_insee": "11426" - } - }, - { - "pk": 23480, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLELONGUE-D'AUDE", - "center": "POINT (580069.1493571586906910 1783586.7180895407218486)", - "surface": 13560000, - "canton": null, - "numero_insee": "11427" - } - }, - { - "pk": 37030, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEMAGNE", - "center": "POINT (581479.8802013330860063 1818338.5954404030926526)", - "surface": 11050000, - "canton": null, - "numero_insee": "11428" - } - }, - { - "pk": 12310, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEMOUSTAUSSOU", - "center": "POINT (602313.8399008810520172 1805198.1074669016525149)", - "surface": 12700000, - "canton": null, - "numero_insee": "11429" - } - }, - { - "pk": 17021, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLENEUVE-LA-COMPTAL", - "center": "POINT (566038.6782491324702278 1809198.9665998234413564)", - "surface": 15610000, - "canton": null, - "numero_insee": "11430" - } - }, - { - "pk": 9760, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLENEUVE-LES-CORBIERES", - "center": "POINT (635424.0593448439612985 1772838.5715433538425714)", - "surface": 24380000, - "canton": null, - "numero_insee": "11431" - } - }, - { - "pk": 10723, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLENEUVE-LES-MONTREAL", - "center": "POINT (581756.1767706798855215 1797316.7741655169520527)", - "surface": 2170000, - "canton": null, - "numero_insee": "11432" - } - }, - { - "pk": 27339, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLENEUVE-MINERVOIS", - "center": "POINT (610648.9019150607055053 1814078.2160842125304043)", - "surface": 24570000, - "canton": null, - "numero_insee": "11433" - } - }, - { - "pk": 17370, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEPINTE", - "center": "POINT (580359.1283225928200409 1808718.2086424701847136)", - "surface": 15460000, - "canton": null, - "numero_insee": "11434" - } - }, - { - "pk": 35790, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLEROUGE-TERMENES", - "center": "POINT (624267.1749766987049952 1778050.8963716241996735)", - "surface": 20040000, - "canton": null, - "numero_insee": "11435" - } - }, - { - "pk": 32208, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLESEQUE-DES-CORBIERES", - "center": "POINT (642475.3891488087829202 1779605.8143660558853298)", - "surface": 32020000, - "canton": null, - "numero_insee": "11436" - } - }, - { - "pk": 9831, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLESEQUELANDE", - "center": "POINT (591317.0651948512531817 1803303.7504785710480064)", - "surface": 5390000, - "canton": null, - "numero_insee": "11437" - } - }, - { - "pk": 27259, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLESISCLE", - "center": "POINT (579908.0824730441672727 1802807.6388583448715508)", - "surface": 5630000, - "canton": null, - "numero_insee": "11438" - } - }, - { - "pk": 10986, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLESPY", - "center": "POINT (580620.8615217484766617 1813325.6784987894352525)", - "surface": 6640000, - "canton": null, - "numero_insee": "11439" - } - }, - { - "pk": 34149, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VILLETRITOULS", - "center": "POINT (612388.5759446253068745 1785760.1411317070014775)", - "surface": 4820000, - "canton": null, - "numero_insee": "11440" - } - }, - { - "pk": 27676, - "model": "ishtar_common.town", - "fields": { - "departement": 11, - "name": "VINASSAN", - "center": "POINT (661720.9936404363252223 1800592.2689450348261744)", - "surface": 8940000, - "canton": null, - "numero_insee": "11441" - } - }, - { - "pk": 5613, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AGEN-D'AVEYRON", - "center": "POINT (628412.8879734722431749 1927852.8513131248764694)", - "surface": 22080000, - "canton": null, - "numero_insee": "12001" - } - }, - { - "pk": 16657, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AGUESSAC", - "center": "POINT (658621.6639722773106769 1906884.7040673333685845)", - "surface": 17750000, - "canton": null, - "numero_insee": "12002" - } - }, - { - "pk": 35342, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LES ALBRES", - "center": "POINT (587493.7607000146526843 1948831.5943239170592278)", - "surface": 15310000, - "canton": null, - "numero_insee": "12003" - } - }, - { - "pk": 15696, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ALMONT-LES-JUNIES", - "center": "POINT (597948.5644193136831746 1955526.1859901787247509)", - "surface": 23720000, - "canton": null, - "numero_insee": "12004" - } - }, - { - "pk": 36740, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ALPUECH", - "center": "POINT (642856.4647421580739319 1972020.4917859216220677)", - "surface": 15030000, - "canton": null, - "numero_insee": "12005" - } - }, - { - "pk": 19549, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ALRANCE", - "center": "POINT (627113.5348616865230724 1903816.2141842776909471)", - "surface": 35880000, - "canton": null, - "numero_insee": "12006" - } - }, - { - "pk": 19622, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AMBEYRAC", - "center": "POINT (568015.7792293516686186 1943763.2792637923266739)", - "surface": 11100000, - "canton": null, - "numero_insee": "12007" - } - }, - { - "pk": 20236, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ANGLARS-SAINT-FELIX", - "center": "POINT (592114.8622674727812409 1934955.7318571945652366)", - "surface": 22220000, - "canton": null, - "numero_insee": "12008" - } - }, - { - "pk": 4501, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ARNAC-SUR-DOURDOU", - "center": "POINT (649126.8667713047470897 1857550.7148898241575807)", - "surface": 16610000, - "canton": null, - "numero_insee": "12009" - } - }, - { - "pk": 17957, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ARQUES", - "center": "POINT (637249.4287926845718175 1924623.7291833646595478)", - "surface": 11230000, - "canton": null, - "numero_insee": "12010" - } - }, - { - "pk": 20882, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ARVIEU", - "center": "POINT (626461.5559501805109903 1909917.3018393816892058)", - "surface": 49700000, - "canton": null, - "numero_insee": "12011" - } - }, - { - "pk": 18256, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ASPRIERES", - "center": "POINT (584176.2757524587213993 1950505.5600516912527382)", - "surface": 17240000, - "canton": null, - "numero_insee": "12012" - } - }, - { - "pk": 4778, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AUBIN", - "center": "POINT (593508.8539877185830846 1947780.8911629756912589)", - "surface": 27090000, - "canton": null, - "numero_insee": "12013" - } - }, - { - "pk": 3141, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AURELLE-VERLAC", - "center": "POINT (655264.8781136451289058 1948800.9035634577739984)", - "surface": 54270000, - "canton": null, - "numero_insee": "12014" - } - }, - { - "pk": 21505, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AURIAC-LAGAST", - "center": "POINT (620798.7607163505163044 1904764.1764743886888027)", - "surface": 30600000, - "canton": null, - "numero_insee": "12015" - } - }, - { - "pk": 21151, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AUZITS", - "center": "POINT (598744.1776338268537074 1944221.0464522140100598)", - "surface": 24410000, - "canton": null, - "numero_insee": "12016" - } - }, - { - "pk": 21819, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "AYSSENES", - "center": "POINT (634362.0944113422883675 1898971.9219628914725035)", - "surface": 23080000, - "canton": null, - "numero_insee": "12017" - } - }, - { - "pk": 24478, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BALAGUIER-D'OLT", - "center": "POINT (571396.4821906372671947 1946494.4140621488913894)", - "surface": 10980000, - "canton": null, - "numero_insee": "12018" - } - }, - { - "pk": 30253, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BALAGUIER-SUR-RANCE", - "center": "POINT (619229.2431894516339526 1877120.9176945711951703)", - "surface": 9770000, - "canton": null, - "numero_insee": "12019" - } - }, - { - "pk": 30607, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BALSAC", - "center": "POINT (609447.9000865581911057 1933199.2260893085040152)", - "surface": 15560000, - "canton": null, - "numero_insee": "12020" - } - }, - { - "pk": 27064, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA BASTIDE-L'EVEQUE", - "center": "POINT (584578.6890830082120374 1926383.5290126097388566)", - "surface": 44010000, - "canton": null, - "numero_insee": "12021" - } - }, - { - "pk": 37032, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA BASTIDE-PRADINES", - "center": "POINT (657761.6851630298187956 1890159.3460840182378888)", - "surface": 20540000, - "canton": null, - "numero_insee": "12022" - } - }, - { - "pk": 24826, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA BASTIDE-SOLAGES", - "center": "POINT (615074.5441541832406074 1883092.5733971146401018)", - "surface": 7010000, - "canton": null, - "numero_insee": "12023" - } - }, - { - "pk": 18616, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BELCASTEL", - "center": "POINT (599543.1650609152857214 1932515.4180819655302912)", - "surface": 10890000, - "canton": null, - "numero_insee": "12024" - } - }, - { - "pk": 37264, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BELMONT-SUR-RANCE", - "center": "POINT (633310.2140507251024246 1869330.6766615360975266)", - "surface": 44220000, - "canton": null, - "numero_insee": "12025" - } - }, - { - "pk": 21827, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BERTHOLENE", - "center": "POINT (635579.5680328104645014 1932718.2669537453912199)", - "surface": 46820000, - "canton": null, - "numero_insee": "12026" - } - }, - { - "pk": 21828, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BESSUEJOULS", - "center": "POINT (630157.2327348153339699 1946587.2646520792040974)", - "surface": 11340000, - "canton": null, - "numero_insee": "12027" - } - }, - { - "pk": 29835, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BOISSE-PENCHOT", - "center": "POINT (590059.3612299247179180 1953257.7059548874385655)", - "surface": 4500000, - "canton": null, - "numero_insee": "12028" - } - }, - { - "pk": 16834, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BOR-ET-BAR", - "center": "POINT (579903.0929573837202042 1910927.8853588714264333)", - "surface": 13110000, - "canton": null, - "numero_insee": "12029" - } - }, - { - "pk": 4757, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BOURNAZEL", - "center": "POINT (597279.6694023496238515 1939804.1287493268027902)", - "surface": 16520000, - "canton": null, - "numero_insee": "12031" - } - }, - { - "pk": 6015, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BOUSSAC", - "center": "POINT (603239.1731965317158028 1921534.7575669535435736)", - "surface": 18110000, - "canton": null, - "numero_insee": "12032" - } - }, - { - "pk": 17959, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BOZOULS", - "center": "POINT (629505.4073855489259586 1940775.6858833075966686)", - "surface": 69530000, - "canton": null, - "numero_insee": "12033" - } - }, - { - "pk": 4450, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BRANDONNET", - "center": "POINT (584037.9179573147557676 1931184.0899479477666318)", - "surface": 11930000, - "canton": null, - "numero_insee": "12034" - } - }, - { - "pk": 17148, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BRASC", - "center": "POINT (618950.7637830077437684 1886428.7678501186892390)", - "surface": 20330000, - "canton": null, - "numero_insee": "12035" - } - }, - { - "pk": 19553, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BROMMAT", - "center": "POINT (629067.5190591788850725 1980913.6179813006892800)", - "surface": 43560000, - "canton": null, - "numero_insee": "12036" - } - }, - { - "pk": 19265, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BROQUIES", - "center": "POINT (629626.3131752935005352 1890723.1502417668234557)", - "surface": 37930000, - "canton": null, - "numero_insee": "12037" - } - }, - { - "pk": 15379, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BROUSSE-LE-CHATEAU", - "center": "POINT (624131.6576151248300448 1889375.5031170584261417)", - "surface": 15390000, - "canton": null, - "numero_insee": "12038" - } - }, - { - "pk": 17906, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CABANES", - "center": "POINT (596428.8972723882179707 1909965.2777618812397122)", - "surface": 15990000, - "canton": null, - "numero_insee": "12041" - } - }, - { - "pk": 18908, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CALMELS-ET-LE-VIALA", - "center": "POINT (633888.7395981353474781 1883851.4936806662008166)", - "surface": 23070000, - "canton": null, - "numero_insee": "12042" - } - }, - { - "pk": 21146, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CALMONT", - "center": "POINT (614985.3209737817524001 1917529.0539633003063500)", - "surface": 30690000, - "canton": null, - "numero_insee": "12043" - } - }, - { - "pk": 21602, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CAMARES", - "center": "POINT (644128.1296960854670033 1868620.9036686590407044)", - "surface": 41940000, - "canton": null, - "numero_insee": "12044" - } - }, - { - "pk": 23347, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CAMPAGNAC", - "center": "POINT (659897.6531803454272449 1933623.9875679360702634)", - "surface": 41850000, - "canton": null, - "numero_insee": "12047" - } - }, - { - "pk": 18050, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CAMPOURIEZ", - "center": "POINT (621194.5844179962296039 1964830.9240826878231019)", - "surface": 18290000, - "canton": null, - "numero_insee": "12048" - } - }, - { - "pk": 17394, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CAMPUAC", - "center": "POINT (619703.2996631867717952 1951704.7640001152176410)", - "surface": 19130000, - "canton": null, - "numero_insee": "12049" - } - }, - { - "pk": 36515, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CANET-DE-SALARS", - "center": "POINT (632027.5787344221025705 1914669.1884283060207963)", - "surface": 34050000, - "canton": null, - "numero_insee": "12050" - } - }, - { - "pk": 23971, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CANTOIN", - "center": "POINT (638567.2896304455352947 1982094.7213833292480558)", - "surface": 44070000, - "canton": null, - "numero_insee": "12051" - } - }, - { - "pk": 21664, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CAPDENAC-GARE", - "center": "POINT (578666.7205349953146651 1950959.9110446178819984)", - "surface": 20170000, - "canton": null, - "numero_insee": "12052" - } - }, - { - "pk": 17071, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA CAPELLE-BALAGUIER", - "center": "POINT (567266.9393003123113886 1937550.4861315102316439)", - "surface": 13450000, - "canton": null, - "numero_insee": "12053" - } - }, - { - "pk": 22647, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA CAPELLE-BLEYS", - "center": "POINT (587414.2014236275572330 1922503.1498531340621412)", - "surface": 15640000, - "canton": null, - "numero_insee": "12054" - } - }, - { - "pk": 22379, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA CAPELLE-BONANCE", - "center": "POINT (654946.3819356963504106 1939088.0265408223494887)", - "surface": 13850000, - "canton": null, - "numero_insee": "12055" - } - }, - { - "pk": 23218, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "BARAQUEVILLE", - "center": "POINT (608958.3047991282073781 1919981.0820296693127602)", - "surface": 34340000, - "canton": null, - "numero_insee": "12056" - } - }, - { - "pk": 32732, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CASSAGNES-BEGONHES", - "center": "POINT (614159.2958004100946710 1908612.5624046341981739)", - "surface": 30770000, - "canton": null, - "numero_insee": "12057" - } - }, - { - "pk": 3368, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CASSUEJOULS", - "center": "POINT (637574.9874718979699537 1969173.1161541359033436)", - "surface": 10520000, - "canton": null, - "numero_insee": "12058" - } - }, - { - "pk": 18647, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CASTANET", - "center": "POINT (597735.3748498177155852 1921288.3433376778848469)", - "surface": 30880000, - "canton": null, - "numero_insee": "12059" - } - }, - { - "pk": 3521, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CASTELMARY", - "center": "POINT (592542.6129072287585586 1907830.4125571330077946)", - "surface": 11780000, - "canton": null, - "numero_insee": "12060" - } - }, - { - "pk": 20541, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CASTELNAU-DE-MANDAILLES", - "center": "POINT (643760.4039022694341838 1947903.0775063522160053)", - "surface": 35940000, - "canton": null, - "numero_insee": "12061" - } - }, - { - "pk": 15222, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CASTELNAU-PEGAYROLS", - "center": "POINT (647329.6944828907726333 1904486.9999329359270632)", - "surface": 53040000, - "canton": null, - "numero_insee": "12062" - } - }, - { - "pk": 22850, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA CAVALERIE", - "center": "POINT (667971.2317800493910909 1890345.6233510435558856)", - "surface": 40860000, - "canton": null, - "numero_insee": "12063" - } - }, - { - "pk": 9565, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LE CAYROL", - "center": "POINT (635500.9836515962379053 1953939.8828851827420294)", - "surface": 22450000, - "canton": null, - "numero_insee": "12064" - } - }, - { - "pk": 17726, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CENTRES", - "center": "POINT (608263.4535542046651244 1907361.7321807728148997)", - "surface": 36700000, - "canton": null, - "numero_insee": "12065" - } - }, - { - "pk": 23849, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CLAIRVAUX-D'AVEYRON", - "center": "POINT (605737.5213045158889145 1933968.9067255619447678)", - "surface": 24560000, - "canton": null, - "numero_insee": "12066" - } - }, - { - "pk": 20198, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LE CLAPIER", - "center": "POINT (667342.8329941378906369 1869917.9274481642059982)", - "surface": 19670000, - "canton": null, - "numero_insee": "12067" - } - }, - { - "pk": 14484, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COLOMBIES", - "center": "POINT (599289.9185496508143842 1926907.3530115354806185)", - "surface": 55230000, - "canton": null, - "numero_insee": "12068" - } - }, - { - "pk": 22207, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COMBRET", - "center": "POINT (627990.4138326087268069 1870987.7806964279152453)", - "surface": 50130000, - "canton": null, - "numero_insee": "12069" - } - }, - { - "pk": 6806, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COMPEYRE", - "center": "POINT (661310.8658654147293419 1908509.1190907252021134)", - "surface": 10410000, - "canton": null, - "numero_insee": "12070" - } - }, - { - "pk": 5943, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COMPOLIBAT", - "center": "POINT (587944.2934052182827145 1930916.5219284521881491)", - "surface": 16890000, - "canton": null, - "numero_insee": "12071" - } - }, - { - "pk": 4456, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COMPREGNAC", - "center": "POINT (651475.1857299184193835 1899616.6487769270315766)", - "surface": 11250000, - "canton": null, - "numero_insee": "12072" - } - }, - { - "pk": 18569, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COMPS-LA-GRAND-VILLE", - "center": "POINT (618521.6395086211850867 1913654.6040604251902550)", - "surface": 21860000, - "canton": null, - "numero_insee": "12073" - } - }, - { - "pk": 15638, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CONDOM-D'AUBRAC", - "center": "POINT (643189.9129805106204003 1956206.9396296855993569)", - "surface": 45950000, - "canton": null, - "numero_insee": "12074" - } - }, - { - "pk": 17727, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CONNAC", - "center": "POINT (620614.6210042828461155 1890947.6670994153246284)", - "surface": 10830000, - "canton": null, - "numero_insee": "12075" - } - }, - { - "pk": 21431, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CORNUS", - "center": "POINT (669485.0876713577890769 1877043.8436109772883356)", - "surface": 93150000, - "canton": null, - "numero_insee": "12077" - } - }, - { - "pk": 21946, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LES COSTES-GOZON", - "center": "POINT (637135.6375548118958250 1890586.1490742124151438)", - "surface": 20430000, - "canton": null, - "numero_insee": "12078" - } - }, - { - "pk": 19444, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COUPIAC", - "center": "POINT (620582.7020567229483277 1882838.5523299933411181)", - "surface": 24920000, - "canton": null, - "numero_insee": "12080" - } - }, - { - "pk": 5813, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "COUSSERGUES", - "center": "POINT (642969.1652277176035568 1934882.7302277686540037)", - "surface": 10800000, - "canton": null, - "numero_insee": "12081" - } - }, - { - "pk": 36558, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA COUVERTOIRADE", - "center": "POINT (676556.8633195627480745 1881308.1940223677083850)", - "surface": 63110000, - "canton": null, - "numero_insee": "12082" - } - }, - { - "pk": 30632, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CRANSAC", - "center": "POINT (596023.0548706952249631 1946400.5187001032754779)", - "surface": 6940000, - "canton": null, - "numero_insee": "12083" - } - }, - { - "pk": 20426, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CREISSELS", - "center": "POINT (657911.2191654999041930 1896167.1350708403624594)", - "surface": 28620000, - "canton": null, - "numero_insee": "12084" - } - }, - { - "pk": 5678, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CRESPIN", - "center": "POINT (593560.4145901330048218 1905836.7960505033843219)", - "surface": 18450000, - "canton": null, - "numero_insee": "12085" - } - }, - { - "pk": 26310, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA CRESSE", - "center": "POINT (665622.7945659749675542 1907644.5446486221626401)", - "surface": 19060000, - "canton": null, - "numero_insee": "12086" - } - }, - { - "pk": 24076, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CRUEJOULS", - "center": "POINT (641940.3497491296147928 1938177.5467251576483250)", - "surface": 18240000, - "canton": null, - "numero_insee": "12087" - } - }, - { - "pk": 16233, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CURIERES", - "center": "POINT (644050.2998436735942960 1961019.1796083662193269)", - "surface": 36220000, - "canton": null, - "numero_insee": "12088" - } - }, - { - "pk": 14402, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "DRUELLE", - "center": "POINT (611086.4859041274758056 1928808.3299673495348543)", - "surface": 35600000, - "canton": null, - "numero_insee": "12090" - } - }, - { - "pk": 23848, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "DRULHE", - "center": "POINT (583869.0176862669177353 1939391.3370511508546770)", - "surface": 17940000, - "canton": null, - "numero_insee": "12091" - } - }, - { - "pk": 16671, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "DURENQUE", - "center": "POINT (622842.0314222199376673 1899876.0641517438925803)", - "surface": 33340000, - "canton": null, - "numero_insee": "12092" - } - }, - { - "pk": 19377, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LE FEL", - "center": "POINT (614301.3926370053086430 1963171.3158522518351674)", - "surface": 24880000, - "canton": null, - "numero_insee": "12093" - } - }, - { - "pk": 17398, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ENTRAYGUES-SUR-TRUYERE", - "center": "POINT (619120.3333905326435342 1961510.0630455831997097)", - "surface": 30790000, - "canton": null, - "numero_insee": "12094" - } - }, - { - "pk": 4955, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ESCANDOLIERES", - "center": "POINT (600972.3812847080407664 1941136.4914224653039128)", - "surface": 13550000, - "canton": null, - "numero_insee": "12095" - } - }, - { - "pk": 17391, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ESPALION", - "center": "POINT (633961.7897236495045945 1946519.1850741480011493)", - "surface": 36690000, - "canton": null, - "numero_insee": "12096" - } - }, - { - "pk": 17963, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ESPEYRAC", - "center": "POINT (614448.6005318417446688 1957566.7398131266236305)", - "surface": 22160000, - "canton": null, - "numero_insee": "12097" - } - }, - { - "pk": 14399, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ESTAING", - "center": "POINT (627808.6596849479246885 1952073.2555144387297332)", - "surface": 16900000, - "canton": null, - "numero_insee": "12098" - } - }, - { - "pk": 4760, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "FIRMI", - "center": "POINT (598999.1035861589480191 1949628.8448751580435783)", - "surface": 29180000, - "canton": null, - "numero_insee": "12100" - } - }, - { - "pk": 19179, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "FLAGNAC", - "center": "POINT (594251.6897559256758541 1954694.3317072566132993)", - "surface": 12980000, - "canton": null, - "numero_insee": "12101" - } - }, - { - "pk": 14997, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "FLAVIN", - "center": "POINT (622766.1710198604268953 1920797.8934292113408446)", - "surface": 50760000, - "canton": null, - "numero_insee": "12102" - } - }, - { - "pk": 26035, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "FLORENTIN-LA-CAPELLE", - "center": "POINT (624340.5150774117792025 1959752.0965392778161913)", - "surface": 36520000, - "canton": null, - "numero_insee": "12103" - } - }, - { - "pk": 4469, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "FOISSAC", - "center": "POINT (573811.4035346515011042 1945013.0630334529560059)", - "surface": 9730000, - "canton": null, - "numero_insee": "12104" - } - }, - { - "pk": 27867, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA FOUILLADE", - "center": "POINT (576867.3774546082131565 1914806.6359920904505998)", - "surface": 32880000, - "canton": null, - "numero_insee": "12105" - } - }, - { - "pk": 11132, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GABRIAC", - "center": "POINT (637218.8672946904553100 1940139.8849827484227717)", - "surface": 25660000, - "canton": null, - "numero_insee": "12106" - } - }, - { - "pk": 3127, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GALGAN", - "center": "POINT (587528.1718523879535496 1944727.5861140827182680)", - "surface": 20390000, - "canton": null, - "numero_insee": "12108" - } - }, - { - "pk": 23404, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GISSAC", - "center": "POINT (645782.6461376522202045 1874241.0263615872245282)", - "surface": 31270000, - "canton": null, - "numero_insee": "12109" - } - }, - { - "pk": 19556, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GOLINHAC", - "center": "POINT (619775.6217713751830161 1955008.8150204452686012)", - "surface": 32240000, - "canton": null, - "numero_insee": "12110" - } - }, - { - "pk": 15055, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GOUTRENS", - "center": "POINT (602304.7519161013187841 1937443.7787214042618871)", - "surface": 26050000, - "canton": null, - "numero_insee": "12111" - } - }, - { - "pk": 14977, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GRAISSAC", - "center": "POINT (635418.1862867090385407 1975661.6445382195524871)", - "surface": 22910000, - "canton": null, - "numero_insee": "12112" - } - }, - { - "pk": 22913, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GRAMOND", - "center": "POINT (602468.6314080677693710 1917924.4433285666164011)", - "surface": 13280000, - "canton": null, - "numero_insee": "12113" - } - }, - { - "pk": 23812, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "GRAND-VABRE", - "center": "POINT (602031.5365493848221377 1958063.0598742286674678)", - "surface": 29400000, - "canton": null, - "numero_insee": "12114" - } - }, - { - "pk": 26955, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "L'HOSPITALET-DU-LARZAC", - "center": "POINT (670008.7750356539618224 1886158.2443478289060295)", - "surface": 12320000, - "canton": null, - "numero_insee": "12115" - } - }, - { - "pk": 22578, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "HUPARLAC", - "center": "POINT (632980.6797026015119627 1967933.1932511294726282)", - "surface": 24750000, - "canton": null, - "numero_insee": "12116" - } - }, - { - "pk": 21088, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LACALM", - "center": "POINT (644539.5373906017048284 1974236.9373907821718603)", - "surface": 26750000, - "canton": null, - "numero_insee": "12117" - } - }, - { - "pk": 14976, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LACROIX-BARREZ", - "center": "POINT (624214.2151087599340826 1974766.5299371476285160)", - "surface": 27870000, - "canton": null, - "numero_insee": "12118" - } - }, - { - "pk": 32319, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LAGUIOLE", - "center": "POINT (642006.2005823809886351 1966007.1365076540969312)", - "surface": 63880000, - "canton": null, - "numero_insee": "12119" - } - }, - { - "pk": 19159, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LAISSAC", - "center": "POINT (638310.8983181298244745 1929337.6642309706658125)", - "surface": 20160000, - "canton": null, - "numero_insee": "12120" - } - }, - { - "pk": 22242, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LANUEJOULS", - "center": "POINT (586001.2930193217471242 1935805.4146059209015220)", - "surface": 11840000, - "canton": null, - "numero_insee": "12121" - } - }, - { - "pk": 19401, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LAPANOUSE-DE-CERNON", - "center": "POINT (660969.1690106827300042 1889685.8637893807608634)", - "surface": 22930000, - "canton": null, - "numero_insee": "12122" - } - }, - { - "pk": 31910, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LAPANOUSE", - "center": "POINT (654840.7427082296926528 1927875.2827079785056412)", - "surface": 26950000, - "canton": null, - "numero_insee": "12123" - } - }, - { - "pk": 33490, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LASSOUTS", - "center": "POINT (641199.1846912720939144 1942976.3567258319817483)", - "surface": 30880000, - "canton": null, - "numero_insee": "12124" - } - }, - { - "pk": 23811, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LAVAL-ROQUECEZIERE", - "center": "POINT (624012.3848617249168456 1867850.8882204687688500)", - "surface": 30750000, - "canton": null, - "numero_insee": "12125" - } - }, - { - "pk": 4925, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LAVERNHE", - "center": "POINT (653481.5632906658574939 1922858.4984183369670063)", - "surface": 26630000, - "canton": null, - "numero_insee": "12126" - } - }, - { - "pk": 22945, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LEDERGUES", - "center": "POINT (608244.9155404255725443 1897651.0942896949127316)", - "surface": 36640000, - "canton": null, - "numero_insee": "12127" - } - }, - { - "pk": 34679, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LESCURE-JAOUL", - "center": "POINT (584784.5169632745673880 1913771.8021896034479141)", - "surface": 18600000, - "canton": null, - "numero_insee": "12128" - } - }, - { - "pk": 18310, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LESTRADE-ET-THOUELS", - "center": "POINT (624887.0008690701797605 1894787.7342760935425758)", - "surface": 42150000, - "canton": null, - "numero_insee": "12129" - } - }, - { - "pk": 18633, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LIVINHAC-LE-HAUT", - "center": "POINT (590444.6392150179017335 1955062.8137747745495290)", - "surface": 10920000, - "canton": null, - "numero_insee": "12130" - } - }, - { - "pk": 23009, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA LOUBIERE", - "center": "POINT (624972.4665558764245361 1932228.5713225998915732)", - "surface": 28710000, - "canton": null, - "numero_insee": "12131" - } - }, - { - "pk": 24507, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LUC-LA-PRIMAUBE", - "center": "POINT (615942.5665355598321185 1922742.6522375782951713)", - "surface": 26920000, - "canton": null, - "numero_insee": "12133" - } - }, - { - "pk": 18016, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LUNAC", - "center": "POINT (581066.5493241481017321 1915442.4618778307922184)", - "surface": 18920000, - "canton": null, - "numero_insee": "12135" - } - }, - { - "pk": 35834, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MALEVILLE", - "center": "POINT (581418.5689806016162038 1933164.2538952359464020)", - "surface": 35700000, - "canton": null, - "numero_insee": "12136" - } - }, - { - "pk": 35356, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MARCILLAC-VALLON", - "center": "POINT (610177.2069603054551408 1941714.3203561524860561)", - "surface": 14520000, - "canton": null, - "numero_insee": "12138" - } - }, - { - "pk": 3027, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MARNHAGUES-ET-LATOUR", - "center": "POINT (656683.7450609619263560 1875534.2593013090081513)", - "surface": 21930000, - "canton": null, - "numero_insee": "12139" - } - }, - { - "pk": 16294, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MARTIEL", - "center": "POINT (566219.4714496789965779 1931134.9538355874828994)", - "surface": 46670000, - "canton": null, - "numero_insee": "12140" - } - }, - { - "pk": 20121, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MARTRIN", - "center": "POINT (623903.7644062116742134 1880764.1820642340462655)", - "surface": 23330000, - "canton": null, - "numero_insee": "12141" - } - }, - { - "pk": 23249, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MELAGUES", - "center": "POINT (654823.5226647338131443 1858699.9730393264908344)", - "surface": 44730000, - "canton": null, - "numero_insee": "12143" - } - }, - { - "pk": 36997, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MELJAC", - "center": "POINT (607694.8005336394999176 1903552.8573752506636083)", - "surface": 9500000, - "canton": null, - "numero_insee": "12144" - } - }, - { - "pk": 18394, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MILLAU", - "center": "POINT (662485.4716709217755124 1899809.6367828929796815)", - "surface": 170080000, - "canton": null, - "numero_insee": "12145" - } - }, - { - "pk": 16798, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LE MONASTERE", - "center": "POINT (619922.9791710604913533 1925579.0977147780358791)", - "surface": 6720000, - "canton": null, - "numero_insee": "12146" - } - }, - { - "pk": 23873, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTAGNOL", - "center": "POINT (655327.8962209796300158 1870116.8680790923535824)", - "surface": 34710000, - "canton": null, - "numero_insee": "12147" - } - }, - { - "pk": 21270, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTBAZENS", - "center": "POINT (590055.8041488083545119 1941745.6303224975708872)", - "surface": 17440000, - "canton": null, - "numero_insee": "12148" - } - }, - { - "pk": 23464, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTCLAR", - "center": "POINT (623555.4634025228442624 1886467.4913759545888752)", - "surface": 12720000, - "canton": null, - "numero_insee": "12149" - } - }, - { - "pk": 16285, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTEZIC", - "center": "POINT (624067.0685357222100720 1968458.8042354462668300)", - "surface": 18830000, - "canton": null, - "numero_insee": "12151" - } - }, - { - "pk": 6839, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTFRANC", - "center": "POINT (619580.8953116629272699 1871017.1553195533342659)", - "surface": 6190000, - "canton": null, - "numero_insee": "12152" - } - }, - { - "pk": 19266, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTJAUX", - "center": "POINT (645465.7396942923078313 1899966.4253632654435933)", - "surface": 31620000, - "canton": null, - "numero_insee": "12153" - } - }, - { - "pk": 37670, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTLAUR", - "center": "POINT (639980.0419456751551479 1873791.6969300843775272)", - "surface": 41510000, - "canton": null, - "numero_insee": "12154" - } - }, - { - "pk": 20070, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "FONDAMENTE", - "center": "POINT (662606.7158807207597420 1873582.0314782571513206)", - "surface": 50980000, - "canton": null, - "numero_insee": "12155" - } - }, - { - "pk": 26227, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTPEYROUX", - "center": "POINT (635355.3738985199015588 1959344.2782559755723923)", - "surface": 61940000, - "canton": null, - "numero_insee": "12156" - } - }, - { - "pk": 23444, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTROZIER", - "center": "POINT (630674.7283858803566545 1932676.9762636767700315)", - "surface": 47300000, - "canton": null, - "numero_insee": "12157" - } - }, - { - "pk": 30836, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MONTSALES", - "center": "POINT (571227.2961565719451755 1942789.1142621301114559)", - "surface": 12500000, - "canton": null, - "numero_insee": "12158" - } - }, - { - "pk": 31669, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MORLHON-LE-HAUT", - "center": "POINT (579588.8228751585120335 1924539.7951372112147510)", - "surface": 22230000, - "canton": null, - "numero_insee": "12159" - } - }, - { - "pk": 7603, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MOSTUEJOULS", - "center": "POINT (667570.7135903824819252 1914067.8709678899031132)", - "surface": 31330000, - "canton": null, - "numero_insee": "12160" - } - }, - { - "pk": 31036, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MOURET", - "center": "POINT (614647.1286561200395226 1945856.1879597592633218)", - "surface": 31140000, - "canton": null, - "numero_insee": "12161" - } - }, - { - "pk": 28525, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MOYRAZES", - "center": "POINT (607213.7304646598640829 1925071.8640166206751019)", - "surface": 48700000, - "canton": null, - "numero_insee": "12162" - } - }, - { - "pk": 19569, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MURASSON", - "center": "POINT (634270.9815441634273157 1862230.9006973726209253)", - "surface": 40400000, - "canton": null, - "numero_insee": "12163" - } - }, - { - "pk": 20030, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MUR-DE-BARREZ", - "center": "POINT (627121.9154535360867158 1986102.5556081964168698)", - "surface": 20290000, - "canton": null, - "numero_insee": "12164" - } - }, - { - "pk": 17941, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MURET-LE-CHATEAU", - "center": "POINT (618668.7143554894719273 1943787.7903043662663549)", - "surface": 14790000, - "canton": null, - "numero_insee": "12165" - } - }, - { - "pk": 14979, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MUROLS", - "center": "POINT (619021.0229071631329134 1973321.4162580836564302)", - "surface": 13850000, - "canton": null, - "numero_insee": "12166" - } - }, - { - "pk": 20982, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "NAJAC", - "center": "POINT (570081.5199329708702862 1912247.1263226256705821)", - "surface": 54100000, - "canton": null, - "numero_insee": "12167" - } - }, - { - "pk": 18739, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "NANT", - "center": "POINT (676171.1266765918117017 1891415.9751394900958985)", - "surface": 109380000, - "canton": null, - "numero_insee": "12168" - } - }, - { - "pk": 15377, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "NAUCELLE", - "center": "POINT (600534.6965702769812196 1909799.5223214775323868)", - "surface": 23350000, - "canton": null, - "numero_insee": "12169" - } - }, - { - "pk": 20437, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "NAUSSAC", - "center": "POINT (580918.3541966590564698 1945072.6000555192586035)", - "surface": 14830000, - "canton": null, - "numero_insee": "12170" - } - }, - { - "pk": 19415, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "NAUVIALE", - "center": "POINT (607640.2818608214147389 1945797.3151102145202458)", - "surface": 25460000, - "canton": null, - "numero_insee": "12171" - } - }, - { - "pk": 14398, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LE NAYRAC", - "center": "POINT (626373.6104132336331531 1956065.3523999713361263)", - "surface": 36530000, - "canton": null, - "numero_insee": "12172" - } - }, - { - "pk": 19691, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "NOAILHAC", - "center": "POINT (601978.4995711551746354 1952456.7806065287441015)", - "surface": 16090000, - "canton": null, - "numero_insee": "12173" - } - }, - { - "pk": 8554, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "OLEMPS", - "center": "POINT (616813.1691257776692510 1926353.8027858447749168)", - "surface": 12760000, - "canton": null, - "numero_insee": "12174" - } - }, - { - "pk": 9577, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "OLS-ET-RINHODES", - "center": "POINT (568947.6646801515016705 1940067.1891978746280074)", - "surface": 10880000, - "canton": null, - "numero_insee": "12175" - } - }, - { - "pk": 14401, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ONET-LE-CHATEAU", - "center": "POINT (617772.9260657959384844 1931267.0719487611204386)", - "surface": 40130000, - "canton": null, - "numero_insee": "12176" - } - }, - { - "pk": 4329, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PALMAS", - "center": "POINT (640279.1507671567378566 1933358.4813851253129542)", - "surface": 14440000, - "canton": null, - "numero_insee": "12177" - } - }, - { - "pk": 24381, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PAULHE", - "center": "POINT (662036.9134926954284310 1905512.0128987997304648)", - "surface": 4820000, - "canton": null, - "numero_insee": "12178" - } - }, - { - "pk": 30872, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PEUX-ET-COUFFOULEUX", - "center": "POINT (643779.1672201968031004 1862511.2050648925360292)", - "surface": 21960000, - "canton": null, - "numero_insee": "12179" - } - }, - { - "pk": 19160, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PEYRUSSE-LE-ROC", - "center": "POINT (583825.3880971076432616 1944596.4391625616699457)", - "surface": 13740000, - "canton": null, - "numero_insee": "12181" - } - }, - { - "pk": 18557, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PIERREFICHE", - "center": "POINT (646554.1545099985087290 1937115.2645875681191683)", - "surface": 17100000, - "canton": null, - "numero_insee": "12182" - } - }, - { - "pk": 18048, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "POMAYROLS", - "center": "POINT (657415.0609958028653637 1943113.0614962545223534)", - "surface": 23200000, - "canton": null, - "numero_insee": "12184" - } - }, - { - "pk": 18735, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PONT-DE-SALARS", - "center": "POINT (629683.1554817608557642 1919654.8064856394194067)", - "surface": 45770000, - "canton": null, - "numero_insee": "12185" - } - }, - { - "pk": 5718, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "POUSTHOMY", - "center": "POINT (621068.1339209683937952 1872731.5365976160392165)", - "surface": 17420000, - "canton": null, - "numero_insee": "12186" - } - }, - { - "pk": 24291, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PRADES-D'AUBRAC", - "center": "POINT (650356.7210521624656394 1949159.9322280876804143)", - "surface": 46550000, - "canton": null, - "numero_insee": "12187" - } - }, - { - "pk": 23096, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PRADES-SALARS", - "center": "POINT (636416.8103027081815526 1916508.0700932838954031)", - "surface": 30640000, - "canton": null, - "numero_insee": "12188" - } - }, - { - "pk": 17455, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PRADINAS", - "center": "POINT (594474.9184709812980145 1916155.5341019309125841)", - "surface": 22960000, - "canton": null, - "numero_insee": "12189" - } - }, - { - "pk": 23518, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PREVINQUIERES", - "center": "POINT (592562.2788262880640104 1929353.5557648243848234)", - "surface": 20930000, - "canton": null, - "numero_insee": "12190" - } - }, - { - "pk": 18014, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PRIVEZAC", - "center": "POINT (588616.4465835459996015 1934325.7568244771100581)", - "surface": 10930000, - "canton": null, - "numero_insee": "12191" - } - }, - { - "pk": 37222, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "MOUNES-PROHENCOUX", - "center": "POINT (638841.1946105731185526 1866373.9308613585308194)", - "surface": 37880000, - "canton": null, - "numero_insee": "12192" - } - }, - { - "pk": 16829, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "PRUINES", - "center": "POINT (611925.1425585605902597 1948135.7233137525618076)", - "surface": 18910000, - "canton": null, - "numero_insee": "12193" - } - }, - { - "pk": 31254, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "QUINS", - "center": "POINT (603300.5282017954159528 1914227.4666235598269850)", - "surface": 38650000, - "canton": null, - "numero_insee": "12194" - } - }, - { - "pk": 5742, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "REBOURGUIL", - "center": "POINT (633755.1105080094421282 1875941.6995457678567618)", - "surface": 35350000, - "canton": null, - "numero_insee": "12195" - } - }, - { - "pk": 37263, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "RECOULES-PREVINQUIERES", - "center": "POINT (649355.5437816869234666 1925426.4780922736972570)", - "surface": 25650000, - "canton": null, - "numero_insee": "12196" - } - }, - { - "pk": 15378, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "REQUISTA", - "center": "POINT (617000.0152650037780404 1892218.6915825014002621)", - "surface": 59440000, - "canton": null, - "numero_insee": "12197" - } - }, - { - "pk": 31050, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "RIEUPEYROUX", - "center": "POINT (591413.9851445730309933 1923037.2257997186388820)", - "surface": 54830000, - "canton": null, - "numero_insee": "12198" - } - }, - { - "pk": 26857, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "RIGNAC", - "center": "POINT (596430.8625655265059322 1933590.4620108371600509)", - "surface": 33410000, - "canton": null, - "numero_insee": "12199" - } - }, - { - "pk": 14835, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "RIVIERE-SUR-TARN", - "center": "POINT (663279.9260200724238530 1912429.9309404015075415)", - "surface": 26230000, - "canton": null, - "numero_insee": "12200" - } - }, - { - "pk": 20428, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "RODELLE", - "center": "POINT (622686.1028524497523904 1942219.8918562436010689)", - "surface": 53660000, - "canton": null, - "numero_insee": "12201" - } - }, - { - "pk": 16242, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "RODEZ", - "center": "POINT (618396.2420951885869727 1928569.4488049047067761)", - "surface": 11300000, - "canton": null, - "numero_insee": "12202" - } - }, - { - "pk": 22694, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ROQUEFORT-SUR-SOULZON", - "center": "POINT (651793.5540586721617728 1885604.0977518642321229)", - "surface": 16850000, - "canton": null, - "numero_insee": "12203" - } - }, - { - "pk": 20784, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA ROQUE-SAINTE-MARGUERITE", - "center": "POINT (672483.7512931814417243 1901295.5720361003186554)", - "surface": 49600000, - "canton": null, - "numero_insee": "12204" - } - }, - { - "pk": 15707, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA ROUQUETTE", - "center": "POINT (571091.2683488660259172 1923167.2362523789051920)", - "surface": 29960000, - "canton": null, - "numero_insee": "12205" - } - }, - { - "pk": 31460, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "ROUSSENNAC", - "center": "POINT (593386.7535233842208982 1938470.0953054034616798)", - "surface": 17290000, - "canton": null, - "numero_insee": "12206" - } - }, - { - "pk": 16159, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "RULLAC-SAINT-CIRQ", - "center": "POINT (611211.7898604765068740 1901980.6746980911120772)", - "surface": 32810000, - "canton": null, - "numero_insee": "12207" - } - }, - { - "pk": 16580, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-AFFRIQUE", - "center": "POINT (642488.2643083567963913 1885025.1217141381930560)", - "surface": 110850000, - "canton": null, - "numero_insee": "12208" - } - }, - { - "pk": 16810, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-AMANS-DES-COTS", - "center": "POINT (628099.5513020361540839 1965089.2168147249612957)", - "surface": 41330000, - "canton": null, - "numero_insee": "12209" - } - }, - { - "pk": 23606, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-ANDRE-DE-NAJAC", - "center": "POINT (574716.3163392873248085 1908682.0683389622718096)", - "surface": 25270000, - "canton": null, - "numero_insee": "12210" - } - }, - { - "pk": 19613, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-BEAULIZE", - "center": "POINT (661363.2413039663806558 1878577.0397039663512260)", - "surface": 20110000, - "canton": null, - "numero_insee": "12212" - } - }, - { - "pk": 15711, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-BEAUZELY", - "center": "POINT (650405.8141659670509398 1907716.3817294298205525)", - "surface": 30920000, - "canton": null, - "numero_insee": "12213" - } - }, - { - "pk": 23935, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-CHELY-D'AUBRAC", - "center": "POINT (648408.4591003168607131 1954649.2531396511476487)", - "surface": 76820000, - "canton": null, - "numero_insee": "12214" - } - }, - { - "pk": 11894, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-CHRISTOPHE-VALLON", - "center": "POINT (604768.5462606981163844 1942069.3110671530012041)", - "surface": 23320000, - "canton": null, - "numero_insee": "12215" - } - }, - { - "pk": 17939, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-COME-D'OLT", - "center": "POINT (638555.3262744097737595 1947859.2282761824317276)", - "surface": 30120000, - "canton": null, - "numero_insee": "12216" - } - }, - { - "pk": 22987, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINTE-CROIX", - "center": "POINT (570592.8159663805272430 1934875.4769735448062420)", - "surface": 26220000, - "canton": null, - "numero_insee": "12217" - } - }, - { - "pk": 22698, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-CYPRIEN-SUR-DOURDOU", - "center": "POINT (604912.4233614455442876 1948777.5480050188489258)", - "surface": 30250000, - "canton": null, - "numero_insee": "12218" - } - }, - { - "pk": 17954, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINTE-EULALIE-D'OLT", - "center": "POINT (646323.5866434917552397 1940717.1164185125380754)", - "surface": 17540000, - "canton": null, - "numero_insee": "12219" - } - }, - { - "pk": 14569, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINTE-EULALIE-DE-CERNON", - "center": "POINT (664415.7275974215008318 1884609.3810542658902705)", - "surface": 46590000, - "canton": null, - "numero_insee": "12220" - } - }, - { - "pk": 14405, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-FELIX-DE-LUNEL", - "center": "POINT (613999.4317289717728272 1951456.6060863009188324)", - "surface": 19020000, - "canton": null, - "numero_insee": "12221" - } - }, - { - "pk": 17808, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-FELIX-DE-SORGUES", - "center": "POINT (652276.6828339626081288 1875797.4213539564516395)", - "surface": 31040000, - "canton": null, - "numero_insee": "12222" - } - }, - { - "pk": 19271, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINTE-GENEVIEVE-SUR-ARGENCE", - "center": "POINT (632197.4329921477474272 1977736.6839837380684912)", - "surface": 43940000, - "canton": null, - "numero_insee": "12223" - } - }, - { - "pk": 18959, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-GENIEZ-D'OLT", - "center": "POINT (651321.7431925766868517 1941560.0926367933861911)", - "surface": 35050000, - "canton": null, - "numero_insee": "12224" - } - }, - { - "pk": 17224, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-GEORGES-DE-LUZENCON", - "center": "POINT (652112.9318832020508125 1895217.2533830471802503)", - "surface": 48240000, - "canton": null, - "numero_insee": "12225" - } - }, - { - "pk": 20188, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-HIPPOLYTE", - "center": "POINT (619554.3260015693958849 1969421.8834937398787588)", - "surface": 36710000, - "canton": null, - "numero_insee": "12226" - } - }, - { - "pk": 23192, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-IZAIRE", - "center": "POINT (629369.8127732381690294 1885515.3167924524750561)", - "surface": 34390000, - "canton": null, - "numero_insee": "12228" - } - }, - { - "pk": 12997, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-JEAN-D'ALCAPIES", - "center": "POINT (650612.5825019336771220 1883191.5142947952263057)", - "surface": 8580000, - "canton": null, - "numero_insee": "12229" - } - }, - { - "pk": 21465, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-JEAN-DELNOUS", - "center": "POINT (612486.1836903952062130 1893281.9502596412785351)", - "surface": 18400000, - "canton": null, - "numero_insee": "12230" - } - }, - { - "pk": 22330, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-JEAN-DU-BRUEL", - "center": "POINT (683873.0398522268515080 1892181.8380968107376248)", - "surface": 37470000, - "canton": null, - "numero_insee": "12231" - } - }, - { - "pk": 22508, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-JEAN-ET-SAINT-PAUL", - "center": "POINT (655636.2773346621543169 1881031.4671116215176880)", - "surface": 37970000, - "canton": null, - "numero_insee": "12232" - } - }, - { - "pk": 20064, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-JUERY", - "center": "POINT (628913.1051408569328487 1880305.7788296660874039)", - "surface": 29040000, - "canton": null, - "numero_insee": "12233" - } - }, - { - "pk": 22009, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINTE-JULIETTE-SUR-VIAUR", - "center": "POINT (613121.2771489996230230 1913008.5670365672558546)", - "surface": 16740000, - "canton": null, - "numero_insee": "12234" - } - }, - { - "pk": 5859, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-LAURENT-DE-LEVEZOU", - "center": "POINT (648066.3743746229447424 1912101.3924333206377923)", - "surface": 23360000, - "canton": null, - "numero_insee": "12236" - } - }, - { - "pk": 17930, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-LAURENT-D'OLT", - "center": "POINT (660854.7152085546404123 1938837.5565699101425707)", - "surface": 28790000, - "canton": null, - "numero_insee": "12237" - } - }, - { - "pk": 19329, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-LEONS", - "center": "POINT (651556.3796268113655970 1913732.5324078833218664)", - "surface": 32770000, - "canton": null, - "numero_insee": "12238" - } - }, - { - "pk": 19332, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-MARTIN-DE-LENNE", - "center": "POINT (650066.8828817468602210 1936043.7137471763417125)", - "surface": 9470000, - "canton": null, - "numero_insee": "12239" - } - }, - { - "pk": 4940, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-PARTHEM", - "center": "POINT (596416.8697711570421234 1959117.0770499843638390)", - "surface": 18800000, - "canton": null, - "numero_insee": "12240" - } - }, - { - "pk": 21407, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINTE-RADEGONDE", - "center": "POINT (623626.6531114029930905 1925610.2456046596635133)", - "surface": 30810000, - "canton": null, - "numero_insee": "12241" - } - }, - { - "pk": 5681, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-REMY", - "center": "POINT (576416.9843506559263915 1932721.9249303813558072)", - "surface": 8990000, - "canton": null, - "numero_insee": "12242" - } - }, - { - "pk": 16654, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-ROME-DE-CERNON", - "center": "POINT (651857.3619788235519081 1889909.3305017116945237)", - "surface": 37670000, - "canton": null, - "numero_insee": "12243" - } - }, - { - "pk": 23764, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-ROME-DE-TARN", - "center": "POINT (644427.8897041800664738 1892449.5379287744872272)", - "surface": 52160000, - "canton": null, - "numero_insee": "12244" - } - }, - { - "pk": 12735, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-SALVADOU", - "center": "POINT (581323.2283408285584301 1920650.1723272688686848)", - "surface": 15540000, - "canton": null, - "numero_insee": "12245" - } - }, - { - "pk": 17456, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-SANTIN", - "center": "POINT (593705.0178602539235726 1960195.4661270880606025)", - "surface": 23000000, - "canton": null, - "numero_insee": "12246" - } - }, - { - "pk": 15648, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-SATURNIN-DE-LENNE", - "center": "POINT (654585.6682811111677438 1934380.0214815053623170)", - "surface": 34080000, - "canton": null, - "numero_insee": "12247" - } - }, - { - "pk": 5900, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-SERNIN-SUR-RANCE", - "center": "POINT (623049.1483979866607115 1875250.9511381611227989)", - "surface": 11170000, - "canton": null, - "numero_insee": "12248" - } - }, - { - "pk": 23557, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-SEVER-DU-MOUSTIER", - "center": "POINT (628655.0531025180825964 1863384.9633936895988882)", - "surface": 26010000, - "canton": null, - "numero_insee": "12249" - } - }, - { - "pk": 15631, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-SYMPHORIEN-DE-THENIERES", - "center": "POINT (629450.3575462811859325 1971106.7789912922307849)", - "surface": 31420000, - "canton": null, - "numero_insee": "12250" - } - }, - { - "pk": 19158, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAINT-VICTOR-ET-MELVIEU", - "center": "POINT (637904.4171904169488698 1894396.7584454352036119)", - "surface": 18040000, - "canton": null, - "numero_insee": "12251" - } - }, - { - "pk": 22818, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SALLES-COURBATIES", - "center": "POINT (579940.8600014041876420 1942261.4683572931680828)", - "surface": 13530000, - "canton": null, - "numero_insee": "12252" - } - }, - { - "pk": 16747, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SALLES-CURAN", - "center": "POINT (636000.5987520250491798 1906493.8228444717824459)", - "surface": 99380000, - "canton": null, - "numero_insee": "12253" - } - }, - { - "pk": 16826, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SALLES-LA-SOURCE", - "center": "POINT (615013.0454994126921520 1938051.0603262470103800)", - "surface": 76990000, - "canton": null, - "numero_insee": "12254" - } - }, - { - "pk": 22061, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SALMIECH", - "center": "POINT (620051.7603898741072044 1910263.8187129925936460)", - "surface": 28170000, - "canton": null, - "numero_insee": "12255" - } - }, - { - "pk": 15066, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SALVAGNAC-CAJARC", - "center": "POINT (562947.6304661569884047 1939316.2382381292991340)", - "surface": 23250000, - "canton": null, - "numero_insee": "12256" - } - }, - { - "pk": 15068, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CAUSSE-ET-DIEGE", - "center": "POINT (575993.4345988734858111 1947433.8546489833388478)", - "surface": 29970000, - "canton": null, - "numero_insee": "12257" - } - }, - { - "pk": 19869, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA SALVETAT-PEYRALES", - "center": "POINT (588792.7215514717390761 1913304.8720704007428139)", - "surface": 54610000, - "canton": null, - "numero_insee": "12258" - } - }, - { - "pk": 17463, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SANVENSA", - "center": "POINT (576319.9207155094482005 1920408.0388527202885598)", - "surface": 25860000, - "canton": null, - "numero_insee": "12259" - } - }, - { - "pk": 20434, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAUCLIERES", - "center": "POINT (683416.5417552924482152 1886972.3057925875764340)", - "surface": 38560000, - "canton": null, - "numero_insee": "12260" - } - }, - { - "pk": 26891, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAUJAC", - "center": "POINT (565328.2110867260489613 1941938.8943524693604559)", - "surface": 12330000, - "canton": null, - "numero_insee": "12261" - } - }, - { - "pk": 15697, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAUVETERRE-DE-ROUERGUE", - "center": "POINT (598277.8785177385434508 1916287.5531386081129313)", - "surface": 23690000, - "canton": null, - "numero_insee": "12262" - } - }, - { - "pk": 15337, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SAVIGNAC", - "center": "POINT (569843.1451906799338758 1928762.7409443245269358)", - "surface": 15280000, - "canton": null, - "numero_insee": "12263" - } - }, - { - "pk": 14993, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SEBAZAC-CONCOURES", - "center": "POINT (619943.9585983077995479 1934989.2410844208206981)", - "surface": 27200000, - "canton": null, - "numero_insee": "12264" - } - }, - { - "pk": 14404, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SEBRAZAC", - "center": "POINT (625236.4435473935445771 1948447.8497828883118927)", - "surface": 25240000, - "canton": null, - "numero_insee": "12265" - } - }, - { - "pk": 14733, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SEGUR", - "center": "POINT (640482.1206515897065401 1921147.2259680714923888)", - "surface": 67730000, - "canton": null, - "numero_insee": "12266" - } - }, - { - "pk": 23056, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA SELVE", - "center": "POINT (615929.1596268032444641 1900518.6969093342777342)", - "surface": 48370000, - "canton": null, - "numero_insee": "12267" - } - }, - { - "pk": 20285, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SENERGUES", - "center": "POINT (609956.0112386328401044 1956127.5317742035258561)", - "surface": 44910000, - "canton": null, - "numero_insee": "12268" - } - }, - { - "pk": 19443, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA SERRE", - "center": "POINT (625638.3516409024596214 1876874.4911425842437893)", - "surface": 18510000, - "canton": null, - "numero_insee": "12269" - } - }, - { - "pk": 36998, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SEVERAC-LE-CHATEAU", - "center": "POINT (660093.1972144051687792 1922313.6324037711601704)", - "surface": 108500000, - "canton": null, - "numero_insee": "12270" - } - }, - { - "pk": 25045, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SEVERAC-L'EGLISE", - "center": "POINT (641118.7302097619976848 1928760.6782957219984382)", - "surface": 13730000, - "canton": null, - "numero_insee": "12271" - } - }, - { - "pk": 17462, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SONNAC", - "center": "POINT (582290.3627252475125715 1948587.7658076861407608)", - "surface": 11980000, - "canton": null, - "numero_insee": "12272" - } - }, - { - "pk": 16533, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SOULAGES-BONNEVAL", - "center": "POINT (634715.1826234922045842 1964043.7630929287988693)", - "surface": 15330000, - "canton": null, - "numero_insee": "12273" - } - }, - { - "pk": 20108, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "SYLVANES", - "center": "POINT (649627.0686433664523065 1869468.1341498498804867)", - "surface": 17030000, - "canton": null, - "numero_insee": "12274" - } - }, - { - "pk": 36756, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "TAURIAC-DE-CAMARES", - "center": "POINT (655879.0737230097874999 1864114.8756027584895492)", - "surface": 24550000, - "canton": null, - "numero_insee": "12275" - } - }, - { - "pk": 36742, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "TAUSSAC", - "center": "POINT (623665.7455520357470959 1980467.7610493621323258)", - "surface": 39440000, - "canton": null, - "numero_insee": "12277" - } - }, - { - "pk": 15570, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "TAYRAC", - "center": "POINT (592513.2234952901490033 1911333.9298223485238850)", - "surface": 15910000, - "canton": null, - "numero_insee": "12278" - } - }, - { - "pk": 17948, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LA TERRISSE", - "center": "POINT (638656.6538021476007998 1971484.5971867947373539)", - "surface": 27980000, - "canton": null, - "numero_insee": "12279" - } - }, - { - "pk": 15629, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "THERONDELS", - "center": "POINT (632008.8677367159398273 1988245.8220150505658239)", - "surface": 38710000, - "canton": null, - "numero_insee": "12280" - } - }, - { - "pk": 33476, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "TOULONJAC", - "center": "POINT (573027.0367584908381104 1931091.8384915131609887)", - "surface": 7470000, - "canton": null, - "numero_insee": "12281" - } - }, - { - "pk": 37508, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "TOURNEMIRE", - "center": "POINT (655398.9224707302637398 1885434.2837596051394939)", - "surface": 8930000, - "canton": null, - "numero_insee": "12282" - } - }, - { - "pk": 5564, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "TREMOUILLES", - "center": "POINT (624012.8348511244403198 1915402.6051187503617257)", - "surface": 29000000, - "canton": null, - "numero_insee": "12283" - } - }, - { - "pk": 20282, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LE TRUEL", - "center": "POINT (632895.9675272919703275 1894755.0223694951273501)", - "surface": 26600000, - "canton": null, - "numero_insee": "12284" - } - }, - { - "pk": 35832, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VABRE-TIZAC", - "center": "POINT (583942.6013425268465653 1918669.9900992172770202)", - "surface": 22680000, - "canton": null, - "numero_insee": "12285" - } - }, - { - "pk": 9759, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VABRES-L'ABBAYE", - "center": "POINT (638825.7924412362044677 1880088.9022224491927773)", - "surface": 41210000, - "canton": null, - "numero_insee": "12286" - } - }, - { - "pk": 15708, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VAILHOURLES", - "center": "POINT (565886.9311220970703289 1923023.5649176700972021)", - "surface": 32460000, - "canton": null, - "numero_insee": "12287" - } - }, - { - "pk": 32331, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VALZERGUES", - "center": "POINT (590830.5632641362026334 1944855.3849221887066960)", - "surface": 6600000, - "canton": null, - "numero_insee": "12289" - } - }, - { - "pk": 15083, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VAUREILLES", - "center": "POINT (587975.5661540173459798 1939125.4487281930632889)", - "surface": 14310000, - "canton": null, - "numero_insee": "12290" - } - }, - { - "pk": 22122, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VERRIERES", - "center": "POINT (657067.7992132818326354 1913078.2637023641727865)", - "surface": 53520000, - "canton": null, - "numero_insee": "12291" - } - }, - { - "pk": 5015, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VERSOLS-ET-LAPEYRE", - "center": "POINT (648155.5868078065104783 1877764.8773588673211634)", - "surface": 27970000, - "canton": null, - "numero_insee": "12292" - } - }, - { - "pk": 18740, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VEYREAU", - "center": "POINT (677621.3315885390620679 1909347.6131969781126827)", - "surface": 41240000, - "canton": null, - "numero_insee": "12293" - } - }, - { - "pk": 18027, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VEZINS-DE-LEVEZOU", - "center": "POINT (647009.6877516778185964 1918699.5576574020087719)", - "surface": 78950000, - "canton": null, - "numero_insee": "12294" - } - }, - { - "pk": 17809, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VIALA-DU-PAS-DE-JAUX", - "center": "POINT (658710.7415418052114546 1884461.1273466199636459)", - "surface": 18990000, - "canton": null, - "numero_insee": "12295" - } - }, - { - "pk": 17147, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VIALA-DU-TARN", - "center": "POINT (640273.9700640011578798 1898320.9492537807673216)", - "surface": 38560000, - "canton": null, - "numero_insee": "12296" - } - }, - { - "pk": 19685, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "LE VIBAL", - "center": "POINT (632245.3032323896186426 1924481.4903565812855959)", - "surface": 25930000, - "canton": null, - "numero_insee": "12297" - } - }, - { - "pk": 20041, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VILLECOMTAL", - "center": "POINT (618924.4025776134803891 1949095.4966106088832021)", - "surface": 13960000, - "canton": null, - "numero_insee": "12298" - } - }, - { - "pk": 20968, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VILLEFRANCHE-DE-PANAT", - "center": "POINT (630352.9897151946788654 1899538.8244167484808713)", - "surface": 30570000, - "canton": null, - "numero_insee": "12299" - } - }, - { - "pk": 22152, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VILLEFRANCHE-DE-ROUERGUE", - "center": "POINT (575558.8550325331743807 1927609.3299413518980145)", - "surface": 45740000, - "canton": null, - "numero_insee": "12300" - } - }, - { - "pk": 31672, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VILLENEUVE", - "center": "POINT (575368.2066971677122638 1938419.1605461537837982)", - "surface": 65530000, - "canton": null, - "numero_insee": "12301" - } - }, - { - "pk": 34863, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VIMENET", - "center": "POINT (647186.8057653388241306 1933316.5805616870056838)", - "surface": 21050000, - "canton": null, - "numero_insee": "12303" - } - }, - { - "pk": 3367, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VITRAC-EN-VIADENE", - "center": "POINT (639611.2404088182374835 1976998.2916673170402646)", - "surface": 17040000, - "canton": null, - "numero_insee": "12304" - } - }, - { - "pk": 13583, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "VIVIEZ", - "center": "POINT (590682.6120773840229958 1950560.1137103938963264)", - "surface": 6520000, - "canton": null, - "numero_insee": "12305" - } - }, - { - "pk": 3343, - "model": "ishtar_common.town", - "fields": { - "departement": 12, - "name": "CURAN", - "center": "POINT (641369.7749049996491522 1910843.6723251699004322)", - "surface": 40910000, - "canton": null, - "numero_insee": "12307" - } - }, - { - "pk": 35132, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "AIX-EN-PROVENCE", - "center": "POINT (847782.0989591346587986 1841920.2419959809631109)", - "surface": 187590000, - "canton": null, - "numero_insee": "13001" - } - }, - { - "pk": 23381, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ALLAUCH", - "center": "POINT (857664.1335369247244671 1821982.2616837460082024)", - "surface": 50370000, - "canton": null, - "numero_insee": "13002" - } - }, - { - "pk": 26399, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ALLEINS", - "center": "POINT (827002.7016053909901530 1860162.8934518066234887)", - "surface": 16870000, - "canton": null, - "numero_insee": "13003" - } - }, - { - "pk": 19106, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ARLES", - "center": "POINT (788122.6048873821273446 1841009.5803728939499706)", - "surface": 757790000, - "canton": null, - "numero_insee": "13004" - } - }, - { - "pk": 20099, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "AUBAGNE", - "center": "POINT (862225.6624655474442989 1815413.8393881937954575)", - "surface": 54840000, - "canton": null, - "numero_insee": "13005" - } - }, - { - "pk": 6099, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "AUREILLE", - "center": "POINT (810495.7732192174298689 1858820.3699591974727809)", - "surface": 21600000, - "canton": null, - "numero_insee": "13006" - } - }, - { - "pk": 21636, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "AURIOL", - "center": "POINT (869566.5565639140550047 1823285.8113770496565849)", - "surface": 44640000, - "canton": null, - "numero_insee": "13007" - } - }, - { - "pk": 7334, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "AURONS", - "center": "POINT (827036.9734056296292692 1856158.7185275591909885)", - "surface": 12540000, - "canton": null, - "numero_insee": "13008" - } - }, - { - "pk": 34280, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LA BARBEN", - "center": "POINT (832491.4768224214203656 1850499.0261492785066366)", - "surface": 22960000, - "canton": null, - "numero_insee": "13009" - } - }, - { - "pk": 6165, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "BARBENTANE", - "center": "POINT (793997.6381536540575325 1879902.9482627413235605)", - "surface": 27340000, - "canton": null, - "numero_insee": "13010" - } - }, - { - "pk": 34529, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LES BAUX-DE-PROVENCE", - "center": "POINT (798742.5438027288764715 1863525.3124283624347299)", - "surface": 18060000, - "canton": null, - "numero_insee": "13011" - } - }, - { - "pk": 11546, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "BEAURECUEIL", - "center": "POINT (859704.9749324335716665 1840821.1595932936761528)", - "surface": 10060000, - "canton": null, - "numero_insee": "13012" - } - }, - { - "pk": 9447, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "BELCODENE", - "center": "POINT (863203.0992862884886563 1829838.7029155578929931)", - "surface": 13110000, - "canton": null, - "numero_insee": "13013" - } - }, - { - "pk": 22275, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "BERRE-L'ETANG", - "center": "POINT (828597.8168063025223091 1837551.1478155539371073)", - "surface": 43960000, - "canton": null, - "numero_insee": "13014" - } - }, - { - "pk": 17738, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LA BOUILLADISSE", - "center": "POINT (866329.6095605129376054 1827162.4682248588651419)", - "surface": 12740000, - "canton": null, - "numero_insee": "13016" - } - }, - { - "pk": 24252, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "BOULBON", - "center": "POINT (789919.0500220386311412 1876864.8376926230266690)", - "surface": 19300000, - "canton": null, - "numero_insee": "13017" - } - }, - { - "pk": 12116, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CABANNES", - "center": "POINT (810945.8049075179733336 1876443.7469817700330168)", - "surface": 15450000, - "canton": null, - "numero_insee": "13018" - } - }, - { - "pk": 14723, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CABRIES", - "center": "POINT (844161.4176365151070058 1832178.2148518194444478)", - "surface": 36680000, - "canton": null, - "numero_insee": "13019" - } - }, - { - "pk": 23801, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CADOLIVE", - "center": "POINT (859227.1886757396860048 1826500.8160394020378590)", - "surface": 4210000, - "canton": null, - "numero_insee": "13020" - } - }, - { - "pk": 8112, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CARRY-LE-ROUET", - "center": "POINT (828751.1946750910719857 1819632.0806964354123920)", - "surface": 10020000, - "canton": null, - "numero_insee": "13021" - } - }, - { - "pk": 16633, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CASSIS", - "center": "POINT (861491.8191835698671639 1807598.5554485290776938)", - "surface": 26170000, - "canton": null, - "numero_insee": "13022" - } - }, - { - "pk": 16016, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CEYRESTE", - "center": "POINT (868396.6995069783879444 1807958.1807894746307284)", - "surface": 23140000, - "canton": null, - "numero_insee": "13023" - } - }, - { - "pk": 32425, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CHARLEVAL", - "center": "POINT (834595.1907554973149672 1862029.9061687721405178)", - "surface": 14360000, - "canton": null, - "numero_insee": "13024" - } - }, - { - "pk": 4843, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CHATEAUNEUF-LE-ROUGE", - "center": "POINT (861636.1982500149169937 1837433.8863435941748321)", - "surface": 13210000, - "canton": null, - "numero_insee": "13025" - } - }, - { - "pk": 21062, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CHATEAUNEUF-LES-MARTIGUES", - "center": "POINT (828008.4612780634779483 1824531.3254503058269620)", - "surface": 32750000, - "canton": null, - "numero_insee": "13026" - } - }, - { - "pk": 26294, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CHATEAURENARD", - "center": "POINT (801315.3973257075995207 1878764.1074832824524492)", - "surface": 34870000, - "canton": null, - "numero_insee": "13027" - } - }, - { - "pk": 20165, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LA CIOTAT", - "center": "POINT (866724.9465582577977329 1804439.7796042796690017)", - "surface": 32240000, - "canton": null, - "numero_insee": "13028" - } - }, - { - "pk": 15699, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CORNILLON-CONFOUX", - "center": "POINT (821521.0404662699438632 1845599.7357397703453898)", - "surface": 14860000, - "canton": null, - "numero_insee": "13029" - } - }, - { - "pk": 23933, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CUGES-LES-PINS", - "center": "POINT (874147.0619748702738434 1814515.0661083208397031)", - "surface": 39720000, - "canton": null, - "numero_insee": "13030" - } - }, - { - "pk": 34879, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LA DESTROUSSE", - "center": "POINT (864647.5631487920181826 1824845.4004145155195147)", - "surface": 2980000, - "canton": null, - "numero_insee": "13031" - } - }, - { - "pk": 15958, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "EGUILLES", - "center": "POINT (841944.2344377498375252 1845574.3762378431856632)", - "surface": 34130000, - "canton": null, - "numero_insee": "13032" - } - }, - { - "pk": 18291, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ENSUES-LA-REDONNE", - "center": "POINT (832444.0173789417603984 1820965.1816693400032818)", - "surface": 26110000, - "canton": null, - "numero_insee": "13033" - } - }, - { - "pk": 10358, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "EYGALIERES", - "center": "POINT (810838.0077050478430465 1865630.8677020799368620)", - "surface": 34020000, - "canton": null, - "numero_insee": "13034" - } - }, - { - "pk": 23910, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "EYGUIERES", - "center": "POINT (816098.1898086367873475 1859268.7118353401310742)", - "surface": 68790000, - "canton": null, - "numero_insee": "13035" - } - }, - { - "pk": 26939, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "EYRAGUES", - "center": "POINT (801752.5730423141503707 1874463.0989893702790141)", - "surface": 20790000, - "canton": null, - "numero_insee": "13036" - } - }, - { - "pk": 24750, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LA FARE-LES-OLIVIERS", - "center": "POINT (831851.5979495667852461 1843385.5570911199320108)", - "surface": 14210000, - "canton": null, - "numero_insee": "13037" - } - }, - { - "pk": 19142, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "FONTVIEILLE", - "center": "POINT (792459.0620237812399864 1860768.6690473856870085)", - "surface": 40290000, - "canton": null, - "numero_insee": "13038" - } - }, - { - "pk": 21874, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "FOS-SUR-MER", - "center": "POINT (808025.6219120217720047 1831568.6349822909105569)", - "surface": 88640000, - "canton": null, - "numero_insee": "13039" - } - }, - { - "pk": 5753, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "FUVEAU", - "center": "POINT (860565.1041905565652996 1833920.7223135537933558)", - "surface": 30090000, - "canton": null, - "numero_insee": "13040" - } - }, - { - "pk": 3613, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "GEMENOS", - "center": "POINT (868725.7750470945611596 1816270.5665197558701038)", - "surface": 32960000, - "canton": null, - "numero_insee": "13042" - } - }, - { - "pk": 25301, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "GIGNAC-LA-NERTHE", - "center": "POINT (834610.3673489957582206 1825188.5310576972551644)", - "surface": 8580000, - "canton": null, - "numero_insee": "13043" - } - }, - { - "pk": 37097, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "GRANS", - "center": "POINT (818783.9509921022690833 1849580.8213958381675184)", - "surface": 27670000, - "canton": null, - "numero_insee": "13044" - } - }, - { - "pk": 16771, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "GRAVESON", - "center": "POINT (795537.6331999631365761 1875411.1350057339295745)", - "surface": 23810000, - "canton": null, - "numero_insee": "13045" - } - }, - { - "pk": 25413, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "GREASQUE", - "center": "POINT (860197.3269539966713637 1830113.2448407905176282)", - "surface": 6220000, - "canton": null, - "numero_insee": "13046" - } - }, - { - "pk": 17709, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ISTRES", - "center": "POINT (811538.7500339983962476 1842210.6571472594514489)", - "surface": 114420000, - "canton": null, - "numero_insee": "13047" - } - }, - { - "pk": 15071, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "JOUQUES", - "center": "POINT (868204.8751160642132163 1853608.4387034298852086)", - "surface": 80260000, - "canton": null, - "numero_insee": "13048" - } - }, - { - "pk": 27864, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LAMANON", - "center": "POINT (822000.9162334077991545 1859719.6457392792217433)", - "surface": 19450000, - "canton": null, - "numero_insee": "13049" - } - }, - { - "pk": 21282, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LAMBESC", - "center": "POINT (835352.5078663292806596 1855429.0208829008042812)", - "surface": 65160000, - "canton": null, - "numero_insee": "13050" - } - }, - { - "pk": 23501, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LANCON-PROVENCE", - "center": "POINT (828228.0940111492527649 1845657.1289987778291106)", - "surface": 69170000, - "canton": null, - "numero_insee": "13051" - } - }, - { - "pk": 6283, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MAILLANE", - "center": "POINT (797068.2369137415662408 1872020.4453772301785648)", - "surface": 16900000, - "canton": null, - "numero_insee": "13052" - } - }, - { - "pk": 26854, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MALLEMORT", - "center": "POINT (829583.9867933843052015 1862687.7761396854184568)", - "surface": 28600000, - "canton": null, - "numero_insee": "13053" - } - }, - { - "pk": 22492, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARIGNANE", - "center": "POINT (833184.0142004754161462 1828079.6232738564722240)", - "surface": 23550000, - "canton": null, - "numero_insee": "13054" - } - }, - { - "pk": 17710, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARTIGUES", - "center": "POINT (820108.5859492563176900 1823462.5921531957574189)", - "surface": 74480000, - "canton": null, - "numero_insee": "13056" - } - }, - { - "pk": 3644, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MAS-BLANC-DES-ALPILLES", - "center": "POINT (795499.9102505702758208 1868102.7373765045776963)", - "surface": 1560000, - "canton": null, - "numero_insee": "13057" - } - }, - { - "pk": 15159, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MAUSSANE-LES-ALPILLES", - "center": "POINT (801374.3138806289061904 1860144.0002626006025821)", - "surface": 31640000, - "canton": null, - "numero_insee": "13058" - } - }, - { - "pk": 18541, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MEYRARGUES", - "center": "POINT (857405.5848301345249638 1852114.1576603620778769)", - "surface": 41770000, - "canton": null, - "numero_insee": "13059" - } - }, - { - "pk": 14455, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MEYREUIL", - "center": "POINT (856232.1951450486667454 1837187.2847945746034384)", - "surface": 20150000, - "canton": null, - "numero_insee": "13060" - } - }, - { - "pk": 35803, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-PIERRE-DE-MEZOARGUES", - "center": "POINT (786722.5868839160539210 1876036.6856198592577130)", - "surface": 4340000, - "canton": null, - "numero_insee": "13061" - } - }, - { - "pk": 25443, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MIMET", - "center": "POINT (856407.0229750069556758 1828478.8982094714883715)", - "surface": 18870000, - "canton": null, - "numero_insee": "13062" - } - }, - { - "pk": 33583, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MOLLEGES", - "center": "POINT (810395.6678720425115898 1870532.5227098432369530)", - "surface": 14230000, - "canton": null, - "numero_insee": "13064" - } - }, - { - "pk": 20456, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MOURIES", - "center": "POINT (806091.1844110614620149 1858782.7308306065388024)", - "surface": 38350000, - "canton": null, - "numero_insee": "13065" - } - }, - { - "pk": 27550, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "NOVES", - "center": "POINT (806241.8188156000105664 1876303.4361296109855175)", - "surface": 26490000, - "canton": null, - "numero_insee": "13066" - } - }, - { - "pk": 33032, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ORGON", - "center": "POINT (816424.9877013660734519 1867881.0764725534245372)", - "surface": 34780000, - "canton": null, - "numero_insee": "13067" - } - }, - { - "pk": 12119, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PARADOU", - "center": "POINT (796976.5668584762606770 1859305.5565459013450891)", - "surface": 15860000, - "canton": null, - "numero_insee": "13068" - } - }, - { - "pk": 17135, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PELISSANNE", - "center": "POINT (828076.5773831636179239 1851662.5760550335980952)", - "surface": 19140000, - "canton": null, - "numero_insee": "13069" - } - }, - { - "pk": 32010, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LA PENNE-SUR-HUVEAUNE", - "center": "POINT (858638.1120643547037616 1813480.8663490056060255)", - "surface": 3640000, - "canton": null, - "numero_insee": "13070" - } - }, - { - "pk": 5960, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LES PENNES-MIRABEAU", - "center": "POINT (841604.1173145594075322 1826850.2662218308541924)", - "surface": 33720000, - "canton": null, - "numero_insee": "13071" - } - }, - { - "pk": 34463, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PEYNIER", - "center": "POINT (866489.4218400218524039 1831869.1944230962544680)", - "surface": 24810000, - "canton": null, - "numero_insee": "13072" - } - }, - { - "pk": 8176, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PEYPIN", - "center": "POINT (862438.3378351707942784 1825627.3488707190845162)", - "surface": 13290000, - "canton": null, - "numero_insee": "13073" - } - }, - { - "pk": 3423, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PEYROLLES-EN-PROVENCE", - "center": "POINT (861704.9386655117850751 1852751.7300894199870527)", - "surface": 35050000, - "canton": null, - "numero_insee": "13074" - } - }, - { - "pk": 18902, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PLAN-DE-CUQUES", - "center": "POINT (853848.0442129756556824 1823351.1251275846734643)", - "surface": 8510000, - "canton": null, - "numero_insee": "13075" - } - }, - { - "pk": 13082, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PLAN-D'ORGON", - "center": "POINT (814587.1737686953274533 1872070.0155495018698275)", - "surface": 14990000, - "canton": null, - "numero_insee": "13076" - } - }, - { - "pk": 14456, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PORT-DE-BOUC", - "center": "POINT (815363.3360504724550992 1828127.3722187890671194)", - "surface": 11780000, - "canton": null, - "numero_insee": "13077" - } - }, - { - "pk": 15987, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PORT-SAINT-LOUIS-DU-RHONE", - "center": "POINT (800257.5091819318477064 1826796.9358684297185391)", - "surface": 83270000, - "canton": null, - "numero_insee": "13078" - } - }, - { - "pk": 16886, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "PUYLOUBIER", - "center": "POINT (870416.2853839781600982 1840913.1281625935807824)", - "surface": 40940000, - "canton": null, - "numero_insee": "13079" - } - }, - { - "pk": 24476, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LE PUY-SAINTE-REPARADE", - "center": "POINT (850574.4159539000829682 1854858.6965141450054944)", - "surface": 44880000, - "canton": null, - "numero_insee": "13080" - } - }, - { - "pk": 24864, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ROGNAC", - "center": "POINT (834408.2438937568804249 1837100.3290303009562194)", - "surface": 17630000, - "canton": null, - "numero_insee": "13081" - } - }, - { - "pk": 36869, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ROGNES", - "center": "POINT (843455.8318170022685081 1856099.1212081939447671)", - "surface": 58300000, - "canton": null, - "numero_insee": "13082" - } - }, - { - "pk": 11057, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ROGNONAS", - "center": "POINT (797895.6617703342344612 1880636.9954560985788703)", - "surface": 8400000, - "canton": null, - "numero_insee": "13083" - } - }, - { - "pk": 30509, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ROQUEFORT-LA-BEDOULE", - "center": "POINT (867670.1537677296437323 1810955.4026906292419881)", - "surface": 30970000, - "canton": null, - "numero_insee": "13085" - } - }, - { - "pk": 7109, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ROQUEVAIRE", - "center": "POINT (864779.4699271391145885 1821142.3008732530288398)", - "surface": 23990000, - "canton": null, - "numero_insee": "13086" - } - }, - { - "pk": 23353, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "ROUSSET", - "center": "POINT (866246.2295211481396109 1836872.7842690572142601)", - "surface": 19540000, - "canton": null, - "numero_insee": "13087" - } - }, - { - "pk": 5831, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LE ROVE", - "center": "POINT (836635.6533694553654641 1822502.7924397566821426)", - "surface": 23110000, - "canton": null, - "numero_insee": "13088" - } - }, - { - "pk": 34528, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-ANDIOL", - "center": "POINT (810371.7108198297210038 1873335.4162633141968399)", - "surface": 16110000, - "canton": null, - "numero_insee": "13089" - } - }, - { - "pk": 17166, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-ANTONIN-SUR-BAYON", - "center": "POINT (863612.5348678986774758 1840454.2483491091988981)", - "surface": 17580000, - "canton": null, - "numero_insee": "13090" - } - }, - { - "pk": 32624, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-CANNAT", - "center": "POINT (840001.9206953542307019 1850263.0200359886512160)", - "surface": 36820000, - "canton": null, - "numero_insee": "13091" - } - }, - { - "pk": 16287, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-CHAMAS", - "center": "POINT (821453.4769923092098907 1841794.8736784292850643)", - "surface": 26880000, - "canton": null, - "numero_insee": "13092" - } - }, - { - "pk": 13475, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-ESTEVE-JANSON", - "center": "POINT (846332.2597597471904010 1859227.2436834429390728)", - "surface": 6790000, - "canton": null, - "numero_insee": "13093" - } - }, - { - "pk": 37907, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-ETIENNE-DU-GRES", - "center": "POINT (793301.0486371626611799 1867683.5252939609345049)", - "surface": 29220000, - "canton": null, - "numero_insee": "13094" - } - }, - { - "pk": 15399, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-MARC-JAUMEGARDE", - "center": "POINT (857671.0784384526778013 1844507.8841844170819968)", - "surface": 23290000, - "canton": null, - "numero_insee": "13095" - } - }, - { - "pk": 16605, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINTES-MARIES-DE-LA-MER", - "center": "POINT (772248.4624318301212043 1835868.6090117269195616)", - "surface": 372410000, - "canton": null, - "numero_insee": "13096" - } - }, - { - "pk": 24353, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-MARTIN-DE-CRAU", - "center": "POINT (803674.0860043809516355 1848750.8859937477391213)", - "surface": 215120000, - "canton": null, - "numero_insee": "13097" - } - }, - { - "pk": 17136, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-MITRE-LES-REMPARTS", - "center": "POINT (817034.3302834779024124 1831745.7539458007086068)", - "surface": 21150000, - "canton": null, - "numero_insee": "13098" - } - }, - { - "pk": 36301, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-PAUL-LES-DURANCE", - "center": "POINT (875761.2194338641129434 1859680.0778987801168114)", - "surface": 45860000, - "canton": null, - "numero_insee": "13099" - } - }, - { - "pk": 19579, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-REMY-DE-PROVENCE", - "center": "POINT (802810.0380115879233927 1867864.8258227328769863)", - "surface": 89930000, - "canton": null, - "numero_insee": "13100" - } - }, - { - "pk": 24866, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-SAVOURNIN", - "center": "POINT (859015.8075437131337821 1827800.4848513540346175)", - "surface": 5910000, - "canton": null, - "numero_insee": "13101" - } - }, - { - "pk": 24148, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAINT-VICTORET", - "center": "POINT (836589.3523009531199932 1827908.5585839343257248)", - "surface": 4690000, - "canton": null, - "numero_insee": "13102" - } - }, - { - "pk": 15961, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SALON-DE-PROVENCE", - "center": "POINT (820555.0133253729436547 1853200.0085231414996088)", - "surface": 70570000, - "canton": null, - "numero_insee": "13103" - } - }, - { - "pk": 4136, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SAUSSET-LES-PINS", - "center": "POINT (825745.4098605865146965 1819906.6999654015526175)", - "surface": 12290000, - "canton": null, - "numero_insee": "13104" - } - }, - { - "pk": 34876, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SENAS", - "center": "POINT (821763.0252082417719066 1864122.5128525954205543)", - "surface": 30670000, - "canton": null, - "numero_insee": "13105" - } - }, - { - "pk": 5906, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SEPTEMES-LES-VALLONS", - "center": "POINT (846917.4945471949176863 1825994.7789220619015396)", - "surface": 17750000, - "canton": null, - "numero_insee": "13106" - } - }, - { - "pk": 17363, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "SIMIANE-COLLONGUE", - "center": "POINT (851504.3761513398494571 1828136.5027458809781820)", - "surface": 30190000, - "canton": null, - "numero_insee": "13107" - } - }, - { - "pk": 15953, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "TARASCON", - "center": "POINT (789289.2172560549806803 1868550.2890948364511132)", - "surface": 74320000, - "canton": null, - "numero_insee": "13108" - } - }, - { - "pk": 3831, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "LE THOLONET", - "center": "POINT (856705.2397692073136568 1840394.9660891816020012)", - "surface": 10850000, - "canton": null, - "numero_insee": "13109" - } - }, - { - "pk": 23677, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "TRETS", - "center": "POINT (872595.9101098205428571 1831921.6436293683946133)", - "surface": 70150000, - "canton": null, - "numero_insee": "13110" - } - }, - { - "pk": 23924, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "VAUVENARGUES", - "center": "POINT (864973.6177276035305113 1845171.2424439522437751)", - "surface": 54350000, - "canton": null, - "numero_insee": "13111" - } - }, - { - "pk": 3250, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "VELAUX", - "center": "POINT (835784.0048553966917098 1840115.5060639560688287)", - "surface": 25150000, - "canton": null, - "numero_insee": "13112" - } - }, - { - "pk": 8220, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "VENELLES", - "center": "POINT (855033.9851929727010429 1848489.7639494971372187)", - "surface": 20520000, - "canton": null, - "numero_insee": "13113" - } - }, - { - "pk": 3434, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "VENTABREN", - "center": "POINT (840270.7491549294209108 1842256.3144649972673506)", - "surface": 26370000, - "canton": null, - "numero_insee": "13114" - } - }, - { - "pk": 37321, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "VERNEGUES", - "center": "POINT (830127.3581864767475054 1857686.8496062620542943)", - "surface": 15940000, - "canton": null, - "numero_insee": "13115" - } - }, - { - "pk": 30497, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "VERQUIERES", - "center": "POINT (807862.2865067539969459 1874114.8539418764412403)", - "surface": 4610000, - "canton": null, - "numero_insee": "13116" - } - }, - { - "pk": 15362, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "VITROLLES", - "center": "POINT (837155.6927198423072696 1831917.9609337165020406)", - "surface": 36750000, - "canton": null, - "numero_insee": "13117" - } - }, - { - "pk": 8994, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "COUDOUX", - "center": "POINT (835949.9197036176919937 1844121.4430590770207345)", - "surface": 12660000, - "canton": null, - "numero_insee": "13118" - } - }, - { - "pk": 32011, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "CARNOUX-EN-PROVENCE", - "center": "POINT (862558.6375471125356853 1811612.3253745641559362)", - "surface": 3710000, - "canton": null, - "numero_insee": "13119" - } - }, - { - "pk": 14361, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--1ER-ARRONDISSEMENT", - "center": "POINT (847407.1738158507505432 1815587.0710851289331913)", - "surface": 1780000, - "canton": null, - "numero_insee": "13201" - } - }, - { - "pk": 38076, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--2E--ARRONDISSEMENT", - "center": "POINT (845893.5482885005185381 1816975.7033073119819164)", - "surface": 3640000, - "canton": null, - "numero_insee": "13202" - } - }, - { - "pk": 14362, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--3E--ARRONDISSEMENT", - "center": "POINT (847195.8025634775403887 1816886.7515724820550531)", - "surface": 2540000, - "canton": null, - "numero_insee": "13203" - } - }, - { - "pk": 38077, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--4E--ARRONDISSEMENT", - "center": "POINT (848901.9198804511688650 1816400.8044729477260262)", - "surface": 2880000, - "canton": null, - "numero_insee": "13204" - } - }, - { - "pk": 14363, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--5E--ARRONDISSEMENT", - "center": "POINT (848715.4375075215939432 1814797.3679092100355774)", - "surface": 2180000, - "canton": null, - "numero_insee": "13205" - } - }, - { - "pk": 38078, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--6E--ARRONDISSEMENT", - "center": "POINT (847419.1884279857622460 1814185.5654173924122006)", - "surface": 2060000, - "canton": null, - "numero_insee": "13206" - } - }, - { - "pk": 14364, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--7E--ARRONDISSEMENT", - "center": "POINT (846022.8306032456457615 1813572.9058223958127201)", - "surface": 5840000, - "canton": null, - "numero_insee": "13207" - } - }, - { - "pk": 38079, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--8E--ARRONDISSEMENT", - "center": "POINT (847062.5238461801782250 1809076.6358555909246206)", - "surface": 20770000, - "canton": null, - "numero_insee": "13208" - } - }, - { - "pk": 38080, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE--9E--ARRONDISSEMENT", - "center": "POINT (853474.5854914044030011 1808530.9242009681183845)", - "surface": 63580000, - "canton": null, - "numero_insee": "13209" - } - }, - { - "pk": 14365, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE-10E--ARRONDISSEMENT", - "center": "POINT (851133.4710017037577927 1813016.0314580574631691)", - "surface": 10740000, - "canton": null, - "numero_insee": "13210" - } - }, - { - "pk": 38081, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE-11E--ARRONDISSEMENT", - "center": "POINT (855724.6842588636791334 1814657.2500804215669632)", - "surface": 33510000, - "canton": null, - "numero_insee": "13211" - } - }, - { - "pk": 38082, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE-12E--ARRONDISSEMENT", - "center": "POINT (852103.6409507603384554 1816628.4885570222977549)", - "surface": 14070000, - "canton": null, - "numero_insee": "13212" - } - }, - { - "pk": 14366, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE-13E--ARRONDISSEMENT", - "center": "POINT (851363.3987915550824255 1821227.4131980501115322)", - "surface": 28000000, - "canton": null, - "numero_insee": "13213" - } - }, - { - "pk": 38083, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE-14E--ARRONDISSEMENT", - "center": "POINT (848164.2630708853248507 1820699.4098256770521402)", - "surface": 16370000, - "canton": null, - "numero_insee": "13214" - } - }, - { - "pk": 38084, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE-15E--ARRONDISSEMENT", - "center": "POINT (845649.5719148176722229 1822079.4548206520266831)", - "surface": 16630000, - "canton": null, - "numero_insee": "13215" - } - }, - { - "pk": 38085, - "model": "ishtar_common.town", - "fields": { - "departement": 13, - "name": "MARSEILLE-16E--ARRONDISSEMENT", - "center": "POINT (841641.0022150977747515 1822545.6726556918583810)", - "surface": 14290000, - "canton": null, - "numero_insee": "13216" - } - }, - { - "pk": 16672, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ABLON", - "center": "POINT (451070.9795801384607330 2490451.0190591891296208)", - "surface": 12210000, - "canton": null, - "numero_insee": "14001" - } - }, - { - "pk": 7845, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ACQUEVILLE", - "center": "POINT (401715.4499108702293597 2444814.3703869050368667)", - "surface": 6720000, - "canton": null, - "numero_insee": "14002" - } - }, - { - "pk": 6810, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AGY", - "center": "POINT (372943.6729515909100883 2475598.0918193021789193)", - "surface": 4240000, - "canton": null, - "numero_insee": "14003" - } - }, - { - "pk": 14317, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AIGNERVILLE", - "center": "POINT (363153.5578867375152186 2485824.3300758684054017)", - "surface": 4450000, - "canton": null, - "numero_insee": "14004" - } - }, - { - "pk": 30475, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AIRAN", - "center": "POINT (418617.5134513811208308 2458062.3233177065849304)", - "surface": 13420000, - "canton": null, - "numero_insee": "14005" - } - }, - { - "pk": 37273, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AMAYE-SUR-ORNE", - "center": "POINT (397501.8105718842707574 2458288.6097957878373563)", - "surface": 5210000, - "canton": null, - "numero_insee": "14006" - } - }, - { - "pk": 14214, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AMAYE-SUR-SEULLES", - "center": "POINT (376689.5662272548652254 2458117.4842295129783452)", - "surface": 5630000, - "canton": null, - "numero_insee": "14007" - } - }, - { - "pk": 30750, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AMBLIE", - "center": "POINT (393320.0030971878441051 2480068.3103674827143550)", - "surface": 5890000, - "canton": null, - "numero_insee": "14008" - } - }, - { - "pk": 24345, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AMFREVILLE", - "center": "POINT (412169.4866569750593044 2475520.5142814349383116)", - "surface": 6040000, - "canton": null, - "numero_insee": "14009" - } - }, - { - "pk": 14711, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ANCTOVILLE", - "center": "POINT (378863.7344624193501659 2461437.5071551045402884)", - "surface": 17690000, - "canton": null, - "numero_insee": "14011" - } - }, - { - "pk": 35439, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ANGERVILLE", - "center": "POINT (427689.1132849099813029 2474347.6891873981803656)", - "surface": 3880000, - "canton": null, - "numero_insee": "14012" - } - }, - { - "pk": 26419, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ANGOVILLE", - "center": "POINT (401339.9277931774267927 2441809.2743938821367919)", - "surface": 3730000, - "canton": null, - "numero_insee": "14013" - } - }, - { - "pk": 13191, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ANGUERNY", - "center": "POINT (400844.8769522332586348 2477628.6394157693721354)", - "surface": 2900000, - "canton": null, - "numero_insee": "14014" - } - }, - { - "pk": 37548, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ANISY", - "center": "POINT (400657.9422707629855722 2476026.0747803924605250)", - "surface": 4120000, - "canton": null, - "numero_insee": "14015" - } - }, - { - "pk": 5803, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ANNEBAULT", - "center": "POINT (433690.0789451744058169 2474697.4313425123691559)", - "surface": 5750000, - "canton": null, - "numero_insee": "14016" - } - }, - { - "pk": 27175, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ARGANCHY", - "center": "POINT (376354.6682018400751986 2474525.3948442093096673)", - "surface": 7080000, - "canton": null, - "numero_insee": "14019" - } - }, - { - "pk": 25180, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ARGENCES", - "center": "POINT (417781.5607408593641594 2462358.2412955882027745)", - "surface": 9870000, - "canton": null, - "numero_insee": "14020" - } - }, - { - "pk": 8807, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ARROMANCHES-LES-BAINS", - "center": "POINT (384865.8595418421900831 2486002.6082726954482496)", - "surface": 1350000, - "canton": null, - "numero_insee": "14021" - } - }, - { - "pk": 27381, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ASNELLES", - "center": "POINT (387469.7999455214012414 2485723.8243380761705339)", - "surface": 2670000, - "canton": null, - "numero_insee": "14022" - } - }, - { - "pk": 34084, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ASNIERES-EN-BESSIN", - "center": "POINT (361921.6950068547739647 2489616.6330844247713685)", - "surface": 4590000, - "canton": null, - "numero_insee": "14023" - } - }, - { - "pk": 14129, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AUBERVILLE", - "center": "POINT (427927.3405090084997937 2481854.4513809545896947)", - "surface": 2650000, - "canton": null, - "numero_insee": "14024" - } - }, - { - "pk": 25695, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AUBIGNY", - "center": "POINT (412778.1236091764876619 2438100.9644687562249601)", - "surface": 4960000, - "canton": null, - "numero_insee": "14025" - } - }, - { - "pk": 28862, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AUDRIEU", - "center": "POINT (385586.2864764615660533 2471399.1878824294544756)", - "surface": 11230000, - "canton": null, - "numero_insee": "14026" - } - }, - { - "pk": 9686, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AUNAY-SUR-ODON", - "center": "POINT (382557.1271178326569498 2450360.5492457919754088)", - "surface": 12960000, - "canton": null, - "numero_insee": "14027" - } - }, - { - "pk": 32830, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AUQUAINVILLE", - "center": "POINT (446679.4654309288598597 2452790.4693944896571338)", - "surface": 9660000, - "canton": null, - "numero_insee": "14028" - } - }, - { - "pk": 22677, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES AUTELS-SAINT-BAZILE", - "center": "POINT (436269.9814732068334706 2440996.6499308766797185)", - "surface": 5540000, - "canton": null, - "numero_insee": "14029" - } - }, - { - "pk": 24251, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AUTHIE", - "center": "POINT (398196.8615824294975027 2471102.6616142373532057)", - "surface": 3230000, - "canton": null, - "numero_insee": "14030" - } - }, - { - "pk": 29056, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES AUTHIEUX-PAPION", - "center": "POINT (432959.7954705788288265 2454078.0021320497617126)", - "surface": 4320000, - "canton": null, - "numero_insee": "14031" - } - }, - { - "pk": 30711, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES AUTHIEUX-SUR-CALONNE", - "center": "POINT (449871.2274365997291170 2478233.3591668587177992)", - "surface": 10260000, - "canton": null, - "numero_insee": "14032" - } - }, - { - "pk": 17543, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AUVILLARS", - "center": "POINT (435038.7631332179298624 2468904.8339573498815298)", - "surface": 11770000, - "canton": null, - "numero_insee": "14033" - } - }, - { - "pk": 5092, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "AVENAY", - "center": "POINT (395295.5761471917503513 2458870.8464085576124489)", - "surface": 5790000, - "canton": null, - "numero_insee": "14034" - } - }, - { - "pk": 7398, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BALLEROY", - "center": "POINT (368291.8801071645575576 2469355.9060736997053027)", - "surface": 4350000, - "canton": null, - "numero_insee": "14035" - } - }, - { - "pk": 10046, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BANNEVILLE-LA-CAMPAGNE", - "center": "POINT (413145.0564728549215943 2466422.6815358349122107)", - "surface": 6470000, - "canton": null, - "numero_insee": "14036" - } - }, - { - "pk": 30787, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BANNEVILLE-SUR-AJON", - "center": "POINT (387619.0225650455104187 2455405.4658978516235948)", - "surface": 5590000, - "canton": null, - "numero_insee": "14037" - } - }, - { - "pk": 11597, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BANVILLE", - "center": "POINT (394599.3410373316146433 2482680.4932369212619960)", - "surface": 4710000, - "canton": null, - "numero_insee": "14038" - } - }, - { - "pk": 31194, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BARBERY", - "center": "POINT (403677.9153040495002642 2449533.6562863835133612)", - "surface": 8690000, - "canton": null, - "numero_insee": "14039" - } - }, - { - "pk": 8004, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BARBEVILLE", - "center": "POINT (374812.7211810200242326 2479515.9391031274572015)", - "surface": 3570000, - "canton": null, - "numero_insee": "14040" - } - }, - { - "pk": 5078, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BARNEVILLE-LA-BERTRAN", - "center": "POINT (443467.5454390150262043 2490288.0765187172219157)", - "surface": 4190000, - "canton": null, - "numero_insee": "14041" - } - }, - { - "pk": 27423, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BARON-SUR-ODON", - "center": "POINT (394164.4682267525931820 2462563.9594866135157645)", - "surface": 6460000, - "canton": null, - "numero_insee": "14042" - } - }, - { - "pk": 8862, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BAROU-EN-AUGE", - "center": "POINT (425876.1198062697658315 2439409.8117616930976510)", - "surface": 8390000, - "canton": null, - "numero_insee": "14043" - } - }, - { - "pk": 13235, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BASLY", - "center": "POINT (398833.8487196583300829 2478812.8525851918384433)", - "surface": 4050000, - "canton": null, - "numero_insee": "14044" - } - }, - { - "pk": 9503, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BASSENEVILLE", - "center": "POINT (419715.8788593255449086 2470479.4516826262697577)", - "surface": 10790000, - "canton": null, - "numero_insee": "14045" - } - }, - { - "pk": 34306, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BAVENT", - "center": "POINT (416295.7642646839958616 2472652.6654821331612766)", - "surface": 18530000, - "canton": null, - "numero_insee": "14046" - } - }, - { - "pk": 6595, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BAYEUX", - "center": "POINT (378513.1934290640638210 2479746.4599775574170053)", - "surface": 7090000, - "canton": null, - "numero_insee": "14047" - } - }, - { - "pk": 33869, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BAZENVILLE", - "center": "POINT (387400.1811348375631496 2482020.8999655479565263)", - "surface": 4010000, - "canton": null, - "numero_insee": "14049" - } - }, - { - "pk": 6946, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BEAULIEU", - "center": "POINT (368732.6225099450675771 2440040.1964050256647170)", - "surface": 3200000, - "canton": null, - "numero_insee": "14052" - } - }, - { - "pk": 6671, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BEAUMAIS", - "center": "POINT (423401.8618307372089475 2436087.1744071100838482)", - "surface": 10650000, - "canton": null, - "numero_insee": "14053" - } - }, - { - "pk": 6146, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BEAUMESNIL", - "center": "POINT (357539.8027438945136964 2438247.2300134859979153)", - "surface": 5010000, - "canton": null, - "numero_insee": "14054" - } - }, - { - "pk": 37843, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BEAUMONT-EN-AUGE", - "center": "POINT (437776.7232322752824984 2476632.4092758111655712)", - "surface": 8130000, - "canton": null, - "numero_insee": "14055" - } - }, - { - "pk": 8390, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BAUQUAY", - "center": "POINT (383640.5098965067882091 2452470.8439109683968127)", - "surface": 1800000, - "canton": null, - "numero_insee": "14056" - } - }, - { - "pk": 9341, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BELLENGREVILLE", - "center": "POINT (412289.0683152166893706 2461012.1087289298884571)", - "surface": 10240000, - "canton": null, - "numero_insee": "14057" - } - }, - { - "pk": 33650, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BELLOU", - "center": "POINT (445240.6347016982035711 2445273.6019210265949368)", - "surface": 7560000, - "canton": null, - "numero_insee": "14058" - } - }, - { - "pk": 13340, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BENERVILLE-SUR-MER", - "center": "POINT (433506.5572709158295766 2484802.3593588662333786)", - "surface": 3090000, - "canton": null, - "numero_insee": "14059" - } - }, - { - "pk": 18877, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BENOUVILLE", - "center": "POINT (408772.4817545202095062 2474892.1355639789253473)", - "surface": 5400000, - "canton": null, - "numero_insee": "14060" - } - }, - { - "pk": 34632, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE BENY-BOCAGE", - "center": "POINT (367918.9993256190209650 2441634.5914711095392704)", - "surface": 9090000, - "canton": null, - "numero_insee": "14061" - } - }, - { - "pk": 34779, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BENY-SUR-MER", - "center": "POINT (398119.4486095152096823 2480508.0584314963780344)", - "surface": 6800000, - "canton": null, - "numero_insee": "14062" - } - }, - { - "pk": 5748, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BERNESQ", - "center": "POINT (362000.4718176602618769 2480011.1774655608460307)", - "surface": 6090000, - "canton": null, - "numero_insee": "14063" - } - }, - { - "pk": 3795, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BERNIERES-D'AILLY", - "center": "POINT (421255.1870878495974466 2441573.1528857983648777)", - "surface": 9400000, - "canton": null, - "numero_insee": "14064" - } - }, - { - "pk": 14819, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BERNIERES-LE-PATRY", - "center": "POINT (373436.4711096695391461 2427770.4990808633156121)", - "surface": 15950000, - "canton": null, - "numero_insee": "14065" - } - }, - { - "pk": 20655, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BERNIERES-SUR-MER", - "center": "POINT (399593.9476983679342084 2483722.2329375785775483)", - "surface": 7660000, - "canton": null, - "numero_insee": "14066" - } - }, - { - "pk": 27345, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BIEVILLE-BEUVILLE", - "center": "POINT (405172.8857447128975764 2474562.2899509239941835)", - "surface": 11280000, - "canton": null, - "numero_insee": "14068" - } - }, - { - "pk": 10017, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BEUVILLERS", - "center": "POINT (447514.6188544094329700 2460702.5611210577189922)", - "surface": 4910000, - "canton": null, - "numero_insee": "14069" - } - }, - { - "pk": 7856, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BEUVRON-EN-AUGE", - "center": "POINT (426432.1357137723243795 2469033.8975662686862051)", - "surface": 9780000, - "canton": null, - "numero_insee": "14070" - } - }, - { - "pk": 36475, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA BIGNE", - "center": "POINT (376454.3178814017446712 2450210.3391142487525940)", - "surface": 3850000, - "canton": null, - "numero_insee": "14073" - } - }, - { - "pk": 31324, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BILLY", - "center": "POINT (414920.2885749259730801 2457431.4417539257556200)", - "surface": 6790000, - "canton": null, - "numero_insee": "14074" - } - }, - { - "pk": 20403, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BISSIERES", - "center": "POINT (422704.2365812729694881 2459997.2801042110659182)", - "surface": 1520000, - "canton": null, - "numero_insee": "14075" - } - }, - { - "pk": 19221, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BLAINVILLE-SUR-ORNE", - "center": "POINT (407485.7479961850913242 2473180.4411638067103922)", - "surface": 7120000, - "canton": null, - "numero_insee": "14076" - } - }, - { - "pk": 30186, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BLAY", - "center": "POINT (369001.1909105341183022 2480468.8689244496636093)", - "surface": 7100000, - "canton": null, - "numero_insee": "14078" - } - }, - { - "pk": 13877, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BLONVILLE-SUR-MER", - "center": "POINT (432321.5775265991687775 2482891.3672989928163588)", - "surface": 6850000, - "canton": null, - "numero_insee": "14079" - } - }, - { - "pk": 36693, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE BO", - "center": "POINT (396169.7410910950275138 2437764.0288417083211243)", - "surface": 3940000, - "canton": null, - "numero_insee": "14080" - } - }, - { - "pk": 31495, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BOISSEY", - "center": "POINT (432599.2260336230974644 2449271.8532830476760864)", - "surface": 5330000, - "canton": null, - "numero_insee": "14081" - } - }, - { - "pk": 35752, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA BOISSIERE", - "center": "POINT (439003.8601033379090950 2461332.6567101320251822)", - "surface": 2040000, - "canton": null, - "numero_insee": "14082" - } - }, - { - "pk": 14128, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BONNEBOSQ", - "center": "POINT (436220.4448093281826004 2471216.0810926915146410)", - "surface": 12390000, - "canton": null, - "numero_insee": "14083" - } - }, - { - "pk": 33454, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BONNEMAISON", - "center": "POINT (386070.7271549188299105 2448988.5038583911955357)", - "surface": 8600000, - "canton": null, - "numero_insee": "14084" - } - }, - { - "pk": 22074, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BONNEVILLE-LA-LOUVET", - "center": "POINT (454685.5584162838058546 2476872.2988115483894944)", - "surface": 20850000, - "canton": null, - "numero_insee": "14085" - } - }, - { - "pk": 32181, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BONNEVILLE-SUR-TOUQUES", - "center": "POINT (438619.3628832916729152 2483643.8350518634542823)", - "surface": 6660000, - "canton": null, - "numero_insee": "14086" - } - }, - { - "pk": 10605, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BONNOEIL", - "center": "POINT (401860.0036061432329006 2439411.9487248947843909)", - "surface": 7240000, - "canton": null, - "numero_insee": "14087" - } - }, - { - "pk": 33170, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BONS-TASSILLY", - "center": "POINT (411936.4017938714241609 2443097.3754259273409843)", - "surface": 9360000, - "canton": null, - "numero_insee": "14088" - } - }, - { - "pk": 29760, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BOUGY", - "center": "POINT (391079.1153258226113394 2460537.2702486221678555)", - "surface": 3040000, - "canton": null, - "numero_insee": "14089" - } - }, - { - "pk": 18818, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BOULON", - "center": "POINT (401445.2981334960786626 2453317.7841372201219201)", - "surface": 13860000, - "canton": null, - "numero_insee": "14090" - } - }, - { - "pk": 26071, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BOURGEAUVILLE", - "center": "POINT (434072.9533278543967754 2476801.9402268100529909)", - "surface": 6240000, - "canton": null, - "numero_insee": "14091" - } - }, - { - "pk": 24091, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BOURGUEBUS", - "center": "POINT (408189.1406213361769915 2460678.1257614628411829)", - "surface": 5530000, - "canton": null, - "numero_insee": "14092" - } - }, - { - "pk": 31535, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRANVILLE", - "center": "POINT (431468.9871206966927275 2477080.6273714727722108)", - "surface": 6380000, - "canton": null, - "numero_insee": "14093" - } - }, - { - "pk": 8813, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BREMOY", - "center": "POINT (371761.3768562909681350 2448971.0033668908290565)", - "surface": 12710000, - "canton": null, - "numero_insee": "14096" - } - }, - { - "pk": 11766, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRETTEVILLE-LE-RABET", - "center": "POINT (410069.3536566944094375 2451087.3050983059220016)", - "surface": 4550000, - "canton": null, - "numero_insee": "14097" - } - }, - { - "pk": 11161, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRETTEVILLE-L'ORGUEILLEUSE", - "center": "POINT (391982.5780240091262385 2472352.3671427420340478)", - "surface": 6360000, - "canton": null, - "numero_insee": "14098" - } - }, - { - "pk": 7642, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRETTEVILLE-SUR-DIVES", - "center": "POINT (429181.5090264249010943 2451144.8882566047832370)", - "surface": 6980000, - "canton": null, - "numero_insee": "14099" - } - }, - { - "pk": 12836, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRETTEVILLE-SUR-LAIZE", - "center": "POINT (405246.7234498735051602 2453449.1568608554080129)", - "surface": 9820000, - "canton": null, - "numero_insee": "14100" - } - }, - { - "pk": 6923, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRETTEVILLE-SUR-ODON", - "center": "POINT (398727.6241220440133475 2467404.6358268354088068)", - "surface": 6510000, - "canton": null, - "numero_insee": "14101" - } - }, - { - "pk": 26961, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE BREUIL-EN-BESSIN", - "center": "POINT (367423.2660065717645921 2477654.1275443895719945)", - "surface": 4410000, - "canton": null, - "numero_insee": "14103" - } - }, - { - "pk": 33132, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE BREVEDENT", - "center": "POINT (451024.8340631794999354 2471838.7970978193916380)", - "surface": 4490000, - "canton": null, - "numero_insee": "14104" - } - }, - { - "pk": 3055, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA BREVIERE", - "center": "POINT (441047.2246849226648919 2444138.1997062321752310)", - "surface": 3550000, - "canton": null, - "numero_insee": "14105" - } - }, - { - "pk": 25292, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BREVILLE-LES-MONTS", - "center": "POINT (413583.4865876331459731 2473931.1413547876290977)", - "surface": 4820000, - "canton": null, - "numero_insee": "14106" - } - }, - { - "pk": 33365, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRICQUEVILLE", - "center": "POINT (360184.6735040757921524 2481797.4364382326602936)", - "surface": 6940000, - "canton": null, - "numero_insee": "14107" - } - }, - { - "pk": 9262, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BROUAY", - "center": "POINT (388584.7295004331972450 2471824.0990663645789027)", - "surface": 4080000, - "canton": null, - "numero_insee": "14109" - } - }, - { - "pk": 10905, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BRUCOURT", - "center": "POINT (422181.8268373180762865 2474802.5626585059799254)", - "surface": 6680000, - "canton": null, - "numero_insee": "14110" - } - }, - { - "pk": 18999, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BUCEELS", - "center": "POINT (382900.3497276692651212 2469475.8818716104142368)", - "surface": 4850000, - "canton": null, - "numero_insee": "14111" - } - }, - { - "pk": 18574, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BURCY", - "center": "POINT (369377.3393672279780731 2434641.8516018497757614)", - "surface": 11760000, - "canton": null, - "numero_insee": "14113" - } - }, - { - "pk": 7807, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BURES-LES-MONTS", - "center": "POINT (357889.9976854551350698 2444354.1924824807792902)", - "surface": 5270000, - "canton": null, - "numero_insee": "14115" - } - }, - { - "pk": 36457, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE BU-SUR-ROUVRES", - "center": "POINT (416072.9141609196085483 2451136.7947696195915341)", - "surface": 2870000, - "canton": null, - "numero_insee": "14116" - } - }, - { - "pk": 6446, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CABOURG", - "center": "POINT (420746.3580306429648772 2478993.4110747780650854)", - "surface": 5530000, - "canton": null, - "numero_insee": "14117" - } - }, - { - "pk": 15916, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAEN", - "center": "POINT (402520.7678853786201216 2468536.5774379046633840)", - "surface": 25730000, - "canton": null, - "numero_insee": "14118" - } - }, - { - "pk": 9846, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAGNY", - "center": "POINT (410355.7975489895325154 2464898.7180176884867251)", - "surface": 8580000, - "canton": null, - "numero_insee": "14119" - } - }, - { - "pk": 33802, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAHAGNES", - "center": "POINT (373399.9461629682336934 2456589.4815378212369978)", - "surface": 24690000, - "canton": null, - "numero_insee": "14120" - } - }, - { - "pk": 13100, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAHAGNOLLES", - "center": "POINT (372811.7438272914150730 2467291.6463271705433726)", - "surface": 7200000, - "canton": null, - "numero_insee": "14121" - } - }, - { - "pk": 26474, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA CAINE", - "center": "POINT (391346.7238896898925304 2452334.0787620134651661)", - "surface": 2430000, - "canton": null, - "numero_insee": "14122" - } - }, - { - "pk": 35238, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAIRON", - "center": "POINT (397771.1011874018004164 2474201.1551438369788229)", - "surface": 6010000, - "canton": null, - "numero_insee": "14123" - } - }, - { - "pk": 25905, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA CAMBE", - "center": "POINT (356730.2415842578629963 2488173.1830760138109326)", - "surface": 11300000, - "canton": null, - "numero_insee": "14124" - } - }, - { - "pk": 8338, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAMBES-EN-PLAINE", - "center": "POINT (401776.6978608245262876 2473833.8720994512550533)", - "surface": 3180000, - "canton": null, - "numero_insee": "14125" - } - }, - { - "pk": 16725, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAMPAGNOLLES", - "center": "POINT (359949.4628492391202599 2437266.3165496783331037)", - "surface": 10260000, - "canton": null, - "numero_insee": "14127" - } - }, - { - "pk": 11814, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAMPANDRE-VALCONGRAIN", - "center": "POINT (385991.2342767181107774 2446486.1883887220174074)", - "surface": 6740000, - "canton": null, - "numero_insee": "14128" - } - }, - { - "pk": 36976, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAMPEAUX", - "center": "POINT (360892.6209296435699798 2444278.7490298799239099)", - "surface": 8390000, - "canton": null, - "numero_insee": "14129" - } - }, - { - "pk": 12267, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAMPIGNY", - "center": "POINT (371432.1319617383414879 2476886.5172694250941277)", - "surface": 5640000, - "canton": null, - "numero_insee": "14130" - } - }, - { - "pk": 7484, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CANAPVILLE", - "center": "POINT (439832.4456986775039695 2482152.9064338076859713)", - "surface": 2490000, - "canton": null, - "numero_insee": "14131" - } - }, - { - "pk": 31777, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CANCHY", - "center": "POINT (358345.0916965187061578 2486485.3437033342197537)", - "surface": 5780000, - "canton": null, - "numero_insee": "14132" - } - }, - { - "pk": 26289, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CANTELOUP", - "center": "POINT (420481.4872540106880479 2462580.6405629371292889)", - "surface": 2410000, - "canton": null, - "numero_insee": "14134" - } - }, - { - "pk": 9077, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CARCAGNY", - "center": "POINT (384953.8624732753960416 2475296.5014993567019701)", - "surface": 4300000, - "canton": null, - "numero_insee": "14135" - } - }, - { - "pk": 10678, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CARDONVILLE", - "center": "POINT (353525.9711217129370198 2488447.1119587179273367)", - "surface": 3400000, - "canton": null, - "numero_insee": "14136" - } - }, - { - "pk": 24977, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CARPIQUET", - "center": "POINT (396613.2291071645449847 2468988.2701046420261264)", - "surface": 5950000, - "canton": null, - "numero_insee": "14137" - } - }, - { - "pk": 17681, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CARTIGNY-L'EPINAY", - "center": "POINT (356325.9155925889499485 2476462.4070121436379850)", - "surface": 10510000, - "canton": null, - "numero_insee": "14138" - } - }, - { - "pk": 16628, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CARVILLE", - "center": "POINT (364812.2047646482242271 2442209.4982046843506396)", - "surface": 10620000, - "canton": null, - "numero_insee": "14139" - } - }, - { - "pk": 11261, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CASTILLON", - "center": "POINT (371381.3581200093030930 2470882.2356426394544542)", - "surface": 11080000, - "canton": null, - "numero_insee": "14140" - } - }, - { - "pk": 32263, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CASTILLON-EN-AUGE", - "center": "POINT (435788.7276462529553100 2450799.1924879397265613)", - "surface": 7410000, - "canton": null, - "numero_insee": "14141" - } - }, - { - "pk": 32008, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CASTILLY", - "center": "POINT (355894.5204880518140271 2480261.3066191128455102)", - "surface": 12460000, - "canton": null, - "numero_insee": "14142" - } - }, - { - "pk": 15537, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAUMONT-L'EVENTE", - "center": "POINT (369869.9536586998729035 2459962.7331877360120416)", - "surface": 6400000, - "canton": null, - "numero_insee": "14143" - } - }, - { - "pk": 30239, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAUMONT-SUR-ORNE", - "center": "POINT (394226.6007860179524869 2442851.4574676328338683)", - "surface": 920000, - "canton": null, - "numero_insee": "14144" - } - }, - { - "pk": 25937, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAUVICOURT", - "center": "POINT (410053.6865752789890394 2452988.4314170163124800)", - "surface": 9680000, - "canton": null, - "numero_insee": "14145" - } - }, - { - "pk": 12374, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CAUVILLE", - "center": "POINT (387419.2237857674481347 2443195.7286666180007160)", - "surface": 5910000, - "canton": null, - "numero_insee": "14146" - } - }, - { - "pk": 6037, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CERNAY", - "center": "POINT (452620.2116493367357180 2448336.6401424892246723)", - "surface": 5840000, - "canton": null, - "numero_insee": "14147" - } - }, - { - "pk": 34254, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CERQUEUX", - "center": "POINT (454339.4413092435570434 2446149.4078926215879619)", - "surface": 5680000, - "canton": null, - "numero_insee": "14148" - } - }, - { - "pk": 10069, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CESNY-AUX-VIGNES", - "center": "POINT (420327.5916701898677275 2456975.7068614279851317)", - "surface": 4150000, - "canton": null, - "numero_insee": "14149" - } - }, - { - "pk": 9961, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CESNY-BOIS-HALBOUT", - "center": "POINT (400001.2509803601424210 2446401.3218612694181502)", - "surface": 6650000, - "canton": null, - "numero_insee": "14150" - } - }, - { - "pk": 28362, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CHAMP-DU-BOULT", - "center": "POINT (354734.8326253943378106 2426416.2345698224380612)", - "surface": 14140000, - "canton": null, - "numero_insee": "14151" - } - }, - { - "pk": 37789, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA CHAPELLE-ENGERBOLD", - "center": "POINT (384474.1793487996328622 2436266.8834045273251832)", - "surface": 4100000, - "canton": null, - "numero_insee": "14152" - } - }, - { - "pk": 29670, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA CHAPELLE-HAUTE-GRUE", - "center": "POINT (439457.0182332557742484 2442824.1889443579129875)", - "surface": 2940000, - "canton": null, - "numero_insee": "14153" - } - }, - { - "pk": 6014, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CHEFFREVILLE-TONNENCOURT", - "center": "POINT (446003.8757264293963090 2449782.9002233669161797)", - "surface": 7830000, - "canton": null, - "numero_insee": "14155" - } - }, - { - "pk": 35336, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CHENEDOLLE", - "center": "POINT (372300.4653995565604419 2432064.0915617486461997)", - "surface": 6800000, - "canton": null, - "numero_insee": "14156" - } - }, - { - "pk": 25330, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CHEUX", - "center": "POINT (390823.8570682723657228 2467239.5368926231749356)", - "surface": 14390000, - "canton": null, - "numero_insee": "14157" - } - }, - { - "pk": 33130, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CHICHEBOVILLE", - "center": "POINT (413203.6169634816469625 2459318.5351497787050903)", - "surface": 7470000, - "canton": null, - "numero_insee": "14158" - } - }, - { - "pk": 9915, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CHOUAIN", - "center": "POINT (382878.9690734441392124 2472077.3866230533458292)", - "surface": 3150000, - "canton": null, - "numero_insee": "14159" - } - }, - { - "pk": 17212, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CINTHEAUX", - "center": "POINT (408335.3668765177135356 2455075.6563829900696874)", - "surface": 7540000, - "canton": null, - "numero_insee": "14160" - } - }, - { - "pk": 37308, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CLARBEC", - "center": "POINT (439502.5019197102519684 2473644.7450408539734781)", - "surface": 9650000, - "canton": null, - "numero_insee": "14161" - } - }, - { - "pk": 16781, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CLECY", - "center": "POINT (392369.0893499564845115 2437532.6197908013127744)", - "surface": 24490000, - "canton": null, - "numero_insee": "14162" - } - }, - { - "pk": 9239, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CLEVILLE", - "center": "POINT (422476.0507591014029458 2463397.6167114605195820)", - "surface": 8730000, - "canton": null, - "numero_insee": "14163" - } - }, - { - "pk": 25497, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CLINCHAMPS-SUR-ORNE", - "center": "POINT (399611.2829644185258076 2457305.3176501328125596)", - "surface": 6300000, - "canton": null, - "numero_insee": "14164" - } - }, - { - "pk": 33613, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COLLEVILLE-SUR-MER", - "center": "POINT (368436.8579582657548599 2488269.1965417088940740)", - "surface": 7010000, - "canton": null, - "numero_insee": "14165" - } - }, - { - "pk": 12242, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COLLEVILLE-MONTGOMERY", - "center": "POINT (407843.1135151356575079 2478386.7221845057792962)", - "surface": 7970000, - "canton": null, - "numero_insee": "14166" - } - }, - { - "pk": 31819, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COLOMBELLES", - "center": "POINT (408013.2394693189417012 2469882.6579703507013619)", - "surface": 7050000, - "canton": null, - "numero_insee": "14167" - } - }, - { - "pk": 13990, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COLOMBIERES", - "center": "POINT (357969.4729150503990240 2483480.3576100086793303)", - "surface": 11030000, - "canton": null, - "numero_insee": "14168" - } - }, - { - "pk": 26742, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COLOMBIERS-SUR-SEULLES", - "center": "POINT (393106.7190483891172335 2481667.5764942304231226)", - "surface": 3430000, - "canton": null, - "numero_insee": "14169" - } - }, - { - "pk": 9146, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COLOMBY-SUR-THAON", - "center": "POINT (399145.5507967237499543 2477414.5222504269331694)", - "surface": 2710000, - "canton": null, - "numero_insee": "14170" - } - }, - { - "pk": 8435, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COMBRAY", - "center": "POINT (396032.6229393228422850 2442265.9184935437515378)", - "surface": 4550000, - "canton": null, - "numero_insee": "14171" - } - }, - { - "pk": 10177, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COMMES", - "center": "POINT (376258.5216433223104104 2486232.0788337946869433)", - "surface": 6600000, - "canton": null, - "numero_insee": "14172" - } - }, - { - "pk": 3892, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CONDE-SUR-IFS", - "center": "POINT (418771.2147749001742341 2451559.3117581862024963)", - "surface": 11320000, - "canton": null, - "numero_insee": "14173" - } - }, - { - "pk": 30048, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CONDE-SUR-NOIREAU", - "center": "POINT (387112.7821231597918086 2431785.5373419080860913)", - "surface": 12460000, - "canton": null, - "numero_insee": "14174" - } - }, - { - "pk": 35714, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CONDE-SUR-SEULLES", - "center": "POINT (382869.1011825673049316 2473278.0792898503132164)", - "surface": 2370000, - "canton": null, - "numero_insee": "14175" - } - }, - { - "pk": 33584, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CONTEVILLE", - "center": "POINT (411316.5211531755048782 2457601.8662649826146662)", - "surface": 4270000, - "canton": null, - "numero_insee": "14176" - } - }, - { - "pk": 37195, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COQUAINVILLIERS", - "center": "POINT (443941.4277365565067157 2469278.6006949059665203)", - "surface": 12040000, - "canton": null, - "numero_insee": "14177" - } - }, - { - "pk": 8716, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CORBON", - "center": "POINT (427379.7341002225875854 2463338.0195718687027693)", - "surface": 4140000, - "canton": null, - "numero_insee": "14178" - } - }, - { - "pk": 32818, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CORDEBUGLE", - "center": "POINT (457035.0810540368547663 2458980.1626535607501864)", - "surface": 9030000, - "canton": null, - "numero_insee": "14179" - } - }, - { - "pk": 4400, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CORDEY", - "center": "POINT (412034.5516392424469814 2431190.1799924876540899)", - "surface": 4590000, - "canton": null, - "numero_insee": "14180" - } - }, - { - "pk": 28233, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CORMELLES-LE-ROYAL", - "center": "POINT (405550.5288023242610507 2465159.3230478689074516)", - "surface": 3480000, - "canton": null, - "numero_insee": "14181" - } - }, - { - "pk": 16069, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CORMOLAIN", - "center": "POINT (366336.6960945731261745 2463736.2206005617044866)", - "surface": 11100000, - "canton": null, - "numero_insee": "14182" - } - }, - { - "pk": 29496, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COSSESSEVILLE", - "center": "POINT (397381.1737682345556095 2436473.1249325000680983)", - "surface": 4750000, - "canton": null, - "numero_insee": "14183" - } - }, - { - "pk": 31374, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COTTUN", - "center": "POINT (372616.3914707269286737 2478897.5213502570986748)", - "surface": 3830000, - "canton": null, - "numero_insee": "14184" - } - }, - { - "pk": 31745, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COUDRAY-RABUT", - "center": "POINT (443047.4960269030416384 2480578.4616499166004360)", - "surface": 4970000, - "canton": null, - "numero_insee": "14185" - } - }, - { - "pk": 25329, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COULOMBS", - "center": "POINT (388348.4124851542292163 2476224.9875953299924731)", - "surface": 4320000, - "canton": null, - "numero_insee": "14186" - } - }, - { - "pk": 21185, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COULONCES", - "center": "POINT (360972.2286344408639707 2434572.8828165228478611)", - "surface": 16060000, - "canton": null, - "numero_insee": "14187" - } - }, - { - "pk": 13395, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COULVAIN", - "center": "POINT (376315.6300758137367666 2454912.3072779895737767)", - "surface": 4480000, - "canton": null, - "numero_insee": "14188" - } - }, - { - "pk": 37301, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COUPESARTE", - "center": "POINT (436670.2467516363831237 2453107.9942422145977616)", - "surface": 4540000, - "canton": null, - "numero_insee": "14189" - } - }, - { - "pk": 5396, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COURCY", - "center": "POINT (426340.0803413264802657 2443816.5839771186001599)", - "surface": 9120000, - "canton": null, - "numero_insee": "14190" - } - }, - { - "pk": 34546, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COURSEULLES-SUR-MER", - "center": "POINT (397391.0517955521354452 2483904.2285904628224671)", - "surface": 8090000, - "canton": null, - "numero_insee": "14191" - } - }, - { - "pk": 34591, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COURSON", - "center": "POINT (348471.1748971745255403 2433669.8673902088776231)", - "surface": 17080000, - "canton": null, - "numero_insee": "14192" - } - }, - { - "pk": 9609, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COURTONNE-LA-MEURDRAC", - "center": "POINT (453325.4613202346372418 2459850.0468745846301317)", - "surface": 12790000, - "canton": null, - "numero_insee": "14193" - } - }, - { - "pk": 18215, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COURTONNE-LES-DEUX-EGLISES", - "center": "POINT (456857.3285336003173143 2456276.9215311002917588)", - "surface": 14020000, - "canton": null, - "numero_insee": "14194" - } - }, - { - "pk": 11217, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "COURVAUDON", - "center": "POINT (387050.7545703057548963 2451498.2186492797918618)", - "surface": 9660000, - "canton": null, - "numero_insee": "14195" - } - }, - { - "pk": 35713, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CREPON", - "center": "POINT (390290.3121497075771913 2483445.5566527992486954)", - "surface": 5480000, - "canton": null, - "numero_insee": "14196" - } - }, - { - "pk": 14111, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CRESSERONS", - "center": "POINT (404027.7567632514983416 2479956.3180591757409275)", - "surface": 3660000, - "canton": null, - "numero_insee": "14197" - } - }, - { - "pk": 28157, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CRESSEVEUILLE", - "center": "POINT (430596.5616009625373408 2473671.2422723337076604)", - "surface": 5630000, - "canton": null, - "numero_insee": "14198" - } - }, - { - "pk": 26963, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CREULLY", - "center": "POINT (390315.8216475868830457 2480343.7911462681367993)", - "surface": 8570000, - "canton": null, - "numero_insee": "14200" - } - }, - { - "pk": 6487, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CREVECOEUR-EN-AUGE", - "center": "POINT (430802.3718474022462033 2460864.6459701536223292)", - "surface": 2150000, - "canton": null, - "numero_insee": "14201" - } - }, - { - "pk": 14021, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CRICQUEBOEUF", - "center": "POINT (440360.0181561355711892 2490962.8313885498791933)", - "surface": 1810000, - "canton": null, - "numero_insee": "14202" - } - }, - { - "pk": 13935, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CRICQUEVILLE-EN-AUGE", - "center": "POINT (424392.1719618990318850 2473720.0932641006074846)", - "surface": 6890000, - "canton": null, - "numero_insee": "14203" - } - }, - { - "pk": 12671, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CRICQUEVILLE-EN-BESSIN", - "center": "POINT (357499.5261729761841707 2491981.8886798298917711)", - "surface": 8590000, - "canton": null, - "numero_insee": "14204" - } - }, - { - "pk": 10305, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CRISTOT", - "center": "POINT (387898.3116040508612059 2470117.3564659906551242)", - "surface": 3940000, - "canton": null, - "numero_insee": "14205" - } - }, - { - "pk": 29655, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CROCY", - "center": "POINT (424723.2937786430120468 2433596.3940740404650569)", - "surface": 10260000, - "canton": null, - "numero_insee": "14206" - } - }, - { - "pk": 9038, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CROISILLES", - "center": "POINT (395880.6840470007155091 2448568.8662348468787968)", - "surface": 10250000, - "canton": null, - "numero_insee": "14207" - } - }, - { - "pk": 3501, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CROISSANVILLE", - "center": "POINT (421304.2416505076689646 2459885.6642913348041475)", - "surface": 4410000, - "canton": null, - "numero_insee": "14208" - } - }, - { - "pk": 14226, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CROUAY", - "center": "POINT (370312.6104977320646867 2479178.8013508436270058)", - "surface": 7850000, - "canton": null, - "numero_insee": "14209" - } - }, - { - "pk": 4049, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA CROUPTE", - "center": "POINT (449410.8596581983147189 2449210.6827774862758815)", - "surface": 3430000, - "canton": null, - "numero_insee": "14210" - } - }, - { - "pk": 13396, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CULEY-LE-PATRY", - "center": "POINT (389817.3733215616084635 2443615.7183885192498565)", - "surface": 7770000, - "canton": null, - "numero_insee": "14211" - } - }, - { - "pk": 25904, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CULLY", - "center": "POINT (391250.0772970747202635 2476248.8507674243301153)", - "surface": 6630000, - "canton": null, - "numero_insee": "14212" - } - }, - { - "pk": 28696, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CURCY-SUR-ORNE", - "center": "POINT (391872.5374828830244951 2449236.3514589457772672)", - "surface": 13650000, - "canton": null, - "numero_insee": "14213" - } - }, - { - "pk": 5187, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CUSSY", - "center": "POINT (374403.4546188940294087 2480613.2813455509021878)", - "surface": 2410000, - "canton": null, - "numero_insee": "14214" - } - }, - { - "pk": 9725, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "CUVERVILLE", - "center": "POINT (410521.2821155721321702 2469102.8063915614038706)", - "surface": 2060000, - "canton": null, - "numero_insee": "14215" - } - }, - { - "pk": 11767, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DAMBLAINVILLE", - "center": "POINT (419377.1558556515956298 2438755.7839371347799897)", - "surface": 6350000, - "canton": null, - "numero_insee": "14216" - } - }, - { - "pk": 34755, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DAMPIERRE", - "center": "POINT (365715.9233367890119553 2454024.7603569650091231)", - "surface": 5410000, - "canton": null, - "numero_insee": "14217" - } - }, - { - "pk": 37549, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DANESTAL", - "center": "POINT (432093.2922259268234484 2474183.9228296908549964)", - "surface": 6390000, - "canton": null, - "numero_insee": "14218" - } - }, - { - "pk": 17448, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DANVOU-LA-FERRIERE", - "center": "POINT (379000.2003552002133802 2444827.6622340097092092)", - "surface": 11010000, - "canton": null, - "numero_insee": "14219" - } - }, - { - "pk": 21261, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DEAUVILLE", - "center": "POINT (435494.4642093441216275 2486419.7920916508883238)", - "surface": 3770000, - "canton": null, - "numero_insee": "14220" - } - }, - { - "pk": 10906, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DEMOUVILLE", - "center": "POINT (410334.3590721625369042 2467500.2297131177037954)", - "surface": 3600000, - "canton": null, - "numero_insee": "14221" - } - }, - { - "pk": 33927, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE DESERT", - "center": "POINT (369149.2911955486051738 2438042.2722740634344518)", - "surface": 3960000, - "canton": null, - "numero_insee": "14222" - } - }, - { - "pk": 9030, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE DETROIT", - "center": "POINT (403206.1124569789972156 2433919.3316331002861261)", - "surface": 5500000, - "canton": null, - "numero_insee": "14223" - } - }, - { - "pk": 16070, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DEUX-JUMEAUX", - "center": "POINT (359724.5551624853396788 2489098.3001583674922585)", - "surface": 4080000, - "canton": null, - "numero_insee": "14224" - } - }, - { - "pk": 9621, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DIVES-SUR-MER", - "center": "POINT (423349.4929674844606780 2478814.7587553802877665)", - "surface": 6590000, - "canton": null, - "numero_insee": "14225" - } - }, - { - "pk": 29671, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DONNAY", - "center": "POINT (398133.8851655680919066 2442283.2136428048834205)", - "surface": 11320000, - "canton": null, - "numero_insee": "14226" - } - }, - { - "pk": 9362, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DOUVILLE-EN-AUGE", - "center": "POINT (428271.2865274414652959 2476553.9063043929636478)", - "surface": 6270000, - "canton": null, - "numero_insee": "14227" - } - }, - { - "pk": 5880, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DOUVRES-LA-DELIVRANDE", - "center": "POINT (401323.7447663208586164 2480234.2441654605790973)", - "surface": 10840000, - "canton": null, - "numero_insee": "14228" - } - }, - { - "pk": 3325, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DOZULE", - "center": "POINT (426401.5798774955328554 2472736.0328805916942656)", - "surface": 5230000, - "canton": null, - "numero_insee": "14229" - } - }, - { - "pk": 27344, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DRUBEC", - "center": "POINT (437292.1443412464577705 2474727.1872025672346354)", - "surface": 3230000, - "canton": null, - "numero_insee": "14230" - } - }, - { - "pk": 4702, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BEAUFOUR-DRUVAL", - "center": "POINT (431320.0981227940646932 2470875.4132587444037199)", - "surface": 11320000, - "canton": null, - "numero_insee": "14231" - } - }, - { - "pk": 25513, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "DUCY-SAINTE-MARGUERITE", - "center": "POINT (385166.3149893496884033 2473797.2830340280197561)", - "surface": 3570000, - "canton": null, - "numero_insee": "14232" - } - }, - { - "pk": 34325, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ECRAMMEVILLE", - "center": "POINT (361455.8754110523732379 2485410.1525456663221121)", - "surface": 6890000, - "canton": null, - "numero_insee": "14235" - } - }, - { - "pk": 16677, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ELLON", - "center": "POINT (380060.0873433306114748 2474155.5762909227050841)", - "surface": 6740000, - "canton": null, - "numero_insee": "14236" - } - }, - { - "pk": 6431, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "EMIEVILLE", - "center": "POINT (413059.0195612099487334 2464720.8676433805376291)", - "surface": 3960000, - "canton": null, - "numero_insee": "14237" - } - }, - { - "pk": 36377, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ENGLESQUEVILLE-EN-AUGE", - "center": "POINT (440919.8386033655842766 2483762.9096633950248361)", - "surface": 3660000, - "canton": null, - "numero_insee": "14238" - } - }, - { - "pk": 30958, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ENGLESQUEVILLE-LA-PERCEE", - "center": "POINT (361103.1924983629724011 2491811.3086597984656692)", - "surface": 7910000, - "canton": null, - "numero_insee": "14239" - } - }, - { - "pk": 14888, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "EPANEY", - "center": "POINT (417053.4886279201600701 2441438.4281951989978552)", - "surface": 11610000, - "canton": null, - "numero_insee": "14240" - } - }, - { - "pk": 12696, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "EPINAY-SUR-ODON", - "center": "POINT (383908.6112343003624119 2456375.6195153808221221)", - "surface": 11740000, - "canton": null, - "numero_insee": "14241" - } - }, - { - "pk": 7574, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "EPRON", - "center": "POINT (403088.9813347188755870 2472443.7761798230931163)", - "surface": 1580000, - "canton": null, - "numero_insee": "14242" - } - }, - { - "pk": 31120, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "EQUEMAUVILLE", - "center": "POINT (445457.9122220798162743 2491605.3495075525715947)", - "surface": 6000000, - "canton": null, - "numero_insee": "14243" - } - }, - { - "pk": 23177, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ERAINES", - "center": "POINT (417090.6221126161981374 2436935.7153606954962015)", - "surface": 4010000, - "canton": null, - "numero_insee": "14244" - } - }, - { - "pk": 30988, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ERNES", - "center": "POINT (419795.7433260931866243 2448665.8423663857392967)", - "surface": 9160000, - "canton": null, - "numero_insee": "14245" - } - }, - { - "pk": 29892, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ESCOVILLE", - "center": "POINT (411709.6071441583335400 2470613.5693451180122793)", - "surface": 5160000, - "canton": null, - "numero_insee": "14246" - } - }, - { - "pk": 5486, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ESPINS", - "center": "POINT (398586.4116461585508659 2448090.8044713889248669)", - "surface": 4610000, - "canton": null, - "numero_insee": "14248" - } - }, - { - "pk": 30135, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ESQUAY-NOTRE-DAME", - "center": "POINT (394878.8742553346091881 2460868.7270961338654160)", - "surface": 3070000, - "canton": null, - "numero_insee": "14249" - } - }, - { - "pk": 26319, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ESQUAY-SUR-SEULLES", - "center": "POINT (384524.0245830024941824 2478895.2766123418696225)", - "surface": 3120000, - "canton": null, - "numero_insee": "14250" - } - }, - { - "pk": 8470, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ESSON", - "center": "POINT (395111.4965049599995837 2444760.0077781761065125)", - "surface": 8890000, - "canton": null, - "numero_insee": "14251" - } - }, - { - "pk": 24483, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ESTREES-LA-CAMPAGNE", - "center": "POINT (411190.6235386563930660 2448594.8897490184754133)", - "surface": 7500000, - "canton": null, - "numero_insee": "14252" - } - }, - { - "pk": 36012, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ESTRY", - "center": "POINT (375053.6847547742072493 2437990.6859374023042619)", - "surface": 10900000, - "canton": null, - "numero_insee": "14253" - } - }, - { - "pk": 31199, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ETERVILLE", - "center": "POINT (398050.2774380987975746 2464597.2410298702307045)", - "surface": 5030000, - "canton": null, - "numero_insee": "14254" - } - }, - { - "pk": 35042, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ETOUVY", - "center": "POINT (362651.1002529187244363 2437288.4764342056587338)", - "surface": 2280000, - "canton": null, - "numero_insee": "14255" - } - }, - { - "pk": 9657, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ETREHAM", - "center": "POINT (372267.7549493998521939 2484798.4214979498647153)", - "surface": 4310000, - "canton": null, - "numero_insee": "14256" - } - }, - { - "pk": 8812, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "EVRECY", - "center": "POINT (392593.9888596381060779 2458848.6182219600304961)", - "surface": 8510000, - "canton": null, - "numero_insee": "14257" - } - }, - { - "pk": 13650, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FALAISE", - "center": "POINT (414396.4143113025929779 2436012.8933282503858209)", - "surface": 11740000, - "canton": null, - "numero_insee": "14258" - } - }, - { - "pk": 7121, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FAMILLY", - "center": "POINT (454173.2759143646107987 2442045.3007428180426359)", - "surface": 10610000, - "canton": null, - "numero_insee": "14259" - } - }, - { - "pk": 28553, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FAUGUERNON", - "center": "POINT (449158.5023707890650257 2467620.6453006686642766)", - "surface": 7620000, - "canton": null, - "numero_insee": "14260" - } - }, - { - "pk": 6921, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE FAULQ", - "center": "POINT (452815.9345790394581854 2473054.3890433167107403)", - "surface": 4490000, - "canton": null, - "numero_insee": "14261" - } - }, - { - "pk": 30035, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA FERRIERE-HARANG", - "center": "POINT (363879.6469180962303653 2446104.4529169742017984)", - "surface": 11690000, - "canton": null, - "numero_insee": "14264" - } - }, - { - "pk": 21205, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FERVAQUES", - "center": "POINT (448798.0879342355765402 2450706.6062835888005793)", - "surface": 11050000, - "canton": null, - "numero_insee": "14265" - } - }, - { - "pk": 10506, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FEUGUEROLLES-BULLY", - "center": "POINT (399484.0415988279273733 2460606.4330890839919448)", - "surface": 8190000, - "canton": null, - "numero_insee": "14266" - } - }, - { - "pk": 12068, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FIERVILLE-BRAY", - "center": "POINT (415943.1529249096056446 2454738.1004594387486577)", - "surface": 12840000, - "canton": null, - "numero_insee": "14268" - } - }, - { - "pk": 8809, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FIERVILLE-LES-PARCS", - "center": "POINT (446505.6947610032511875 2473802.7036445820704103)", - "surface": 4920000, - "canton": null, - "numero_insee": "14269" - } - }, - { - "pk": 5410, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FIRFOL", - "center": "POINT (452895.4195534498430789 2463448.8362308475188911)", - "surface": 5090000, - "canton": null, - "numero_insee": "14270" - } - }, - { - "pk": 26063, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FLEURY-SUR-ORNE", - "center": "POINT (401856.6124134713318199 2464128.2510785479098558)", - "surface": 6800000, - "canton": null, - "numero_insee": "14271" - } - }, - { - "pk": 9010, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA FOLIE", - "center": "POINT (359107.8366334815509617 2478886.7529912577010691)", - "surface": 6600000, - "canton": null, - "numero_insee": "14272" - } - }, - { - "pk": 12231, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA FOLLETIERE-ABENON", - "center": "POINT (458665.2022344386205077 2443383.3539348691701889)", - "surface": 10850000, - "canton": null, - "numero_insee": "14273" - } - }, - { - "pk": 35237, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FONTAINE-ETOUPEFOUR", - "center": "POINT (396257.4620614497689530 2463581.8343597678467631)", - "surface": 5140000, - "canton": null, - "numero_insee": "14274" - } - }, - { - "pk": 27382, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FONTAINE-HENRY", - "center": "POINT (395928.8973091922816820 2479189.2006426453590393)", - "surface": 5800000, - "canton": null, - "numero_insee": "14275" - } - }, - { - "pk": 10922, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FONTAINE-LE-PIN", - "center": "POINT (407517.2737825916847214 2445062.2920974707230926)", - "surface": 8420000, - "canton": null, - "numero_insee": "14276" - } - }, - { - "pk": 7691, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FONTENAY-LE-MARMION", - "center": "POINT (404011.4015815397724509 2457641.7459786324761808)", - "surface": 10080000, - "canton": null, - "numero_insee": "14277" - } - }, - { - "pk": 6095, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FONTENERMONT", - "center": "POINT (347498.4332846670877188 2430259.5921134287491441)", - "surface": 2930000, - "canton": null, - "numero_insee": "14279" - } - }, - { - "pk": 4009, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FORMENTIN", - "center": "POINT (439437.1733342740917578 2469441.4982495005242527)", - "surface": 6000000, - "canton": null, - "numero_insee": "14280" - } - }, - { - "pk": 32462, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FORMIGNY", - "center": "POINT (364846.3142304079374298 2486838.8498112177476287)", - "surface": 11050000, - "canton": null, - "numero_insee": "14281" - } - }, - { - "pk": 37978, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FOULOGNES", - "center": "POINT (370530.9392100307159126 2464771.2954558618366718)", - "surface": 6630000, - "canton": null, - "numero_insee": "14282" - } - }, - { - "pk": 10887, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FOURCHES", - "center": "POINT (422938.7146032819291577 2431580.3147463840432465)", - "surface": 4750000, - "canton": null, - "numero_insee": "14283" - } - }, - { - "pk": 36583, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FOURNEAUX-LE-VAL", - "center": "POINT (408621.7604575707810000 2432462.9327135272324085)", - "surface": 5390000, - "canton": null, - "numero_insee": "14284" - } - }, - { - "pk": 11742, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FOURNEVILLE", - "center": "POINT (447001.7784399890806526 2486414.8383119972422719)", - "surface": 6770000, - "canton": null, - "numero_insee": "14286" - } - }, - { - "pk": 12121, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FRENOUVILLE", - "center": "POINT (411176.0546469627879560 2462503.9146193610504270)", - "surface": 6550000, - "canton": null, - "numero_insee": "14287" - } - }, - { - "pk": 12951, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE FRESNE-CAMILLY", - "center": "POINT (394247.6829998914618045 2476773.8307803724892437)", - "surface": 7020000, - "canton": null, - "numero_insee": "14288" - } - }, - { - "pk": 9678, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FRESNE-LA-MERE", - "center": "POINT (419408.5203706330503337 2434953.4863039152696729)", - "surface": 8250000, - "canton": null, - "numero_insee": "14289" - } - }, - { - "pk": 25486, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FRESNEY-LE-PUCEUX", - "center": "POINT (403329.9422434702282771 2455334.6218465445563197)", - "surface": 9640000, - "canton": null, - "numero_insee": "14290" - } - }, - { - "pk": 35416, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FRESNEY-LE-VIEUX", - "center": "POINT (400683.5446601529838517 2448608.4015109892934561)", - "surface": 2500000, - "canton": null, - "numero_insee": "14291" - } - }, - { - "pk": 30095, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FRIARDEL", - "center": "POINT (457340.4010642414214090 2446274.3156290529295802)", - "surface": 9570000, - "canton": null, - "numero_insee": "14292" - } - }, - { - "pk": 22916, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "FUMICHON", - "center": "POINT (456982.8969017736380920 2465283.8369402638636529)", - "surface": 6670000, - "canton": null, - "numero_insee": "14293" - } - }, - { - "pk": 7567, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GARCELLES-SECQUEVILLE", - "center": "POINT (408706.7469674877356738 2458581.0156925986520946)", - "surface": 5700000, - "canton": null, - "numero_insee": "14294" - } - }, - { - "pk": 7434, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE GAST", - "center": "POINT (350328.0249107351410203 2426880.4586704368703067)", - "surface": 13010000, - "canton": null, - "numero_insee": "14296" - } - }, - { - "pk": 37788, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GAVRUS", - "center": "POINT (392173.1756775434478186 2461346.7931000157259405)", - "surface": 2740000, - "canton": null, - "numero_insee": "14297" - } - }, - { - "pk": 37359, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GEFOSSE-FONTENAY", - "center": "POINT (351209.9151539794984274 2490229.2736696880310774)", - "surface": 11470000, - "canton": null, - "numero_insee": "14298" - } - }, - { - "pk": 35486, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GENNEVILLE", - "center": "POINT (450001.8147137676714920 2486639.7780081043019891)", - "surface": 9490000, - "canton": null, - "numero_insee": "14299" - } - }, - { - "pk": 34907, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GERROTS", - "center": "POINT (429737.3492432282655500 2468660.9232404120266438)", - "surface": 3470000, - "canton": null, - "numero_insee": "14300" - } - }, - { - "pk": 5963, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GIBERVILLE", - "center": "POINT (408732.6060275164199993 2467587.0959575418382883)", - "surface": 4960000, - "canton": null, - "numero_insee": "14301" - } - }, - { - "pk": 36376, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GLANVILLE", - "center": "POINT (435265.3745444654487073 2477812.4296321170404553)", - "surface": 6530000, - "canton": null, - "numero_insee": "14302" - } - }, - { - "pk": 27118, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GLOS", - "center": "POINT (449818.4466302868095227 2460421.4217519643716514)", - "surface": 13060000, - "canton": null, - "numero_insee": "14303" - } - }, - { - "pk": 23280, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GONNEVILLE-SUR-HONFLEUR", - "center": "POINT (447379.6622965490678325 2489119.6678514219820499)", - "surface": 8310000, - "canton": null, - "numero_insee": "14304" - } - }, - { - "pk": 14785, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GONNEVILLE-SUR-MER", - "center": "POINT (427246.7635768533218652 2479447.3040052340365946)", - "surface": 13470000, - "canton": null, - "numero_insee": "14305" - } - }, - { - "pk": 6786, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GONNEVILLE-EN-AUGE", - "center": "POINT (416064.2994683935539797 2476453.1985918581485748)", - "surface": 4410000, - "canton": null, - "numero_insee": "14306" - } - }, - { - "pk": 22327, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GOUPILLIERES", - "center": "POINT (393952.3825568160973489 2451855.1849438790231943)", - "surface": 2270000, - "canton": null, - "numero_insee": "14307" - } - }, - { - "pk": 26918, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GOUSTRANVILLE", - "center": "POINT (421703.0013533402234316 2472196.9399307677522302)", - "surface": 10480000, - "canton": null, - "numero_insee": "14308" - } - }, - { - "pk": 12289, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GOUVIX", - "center": "POINT (406459.7979727546917275 2451958.1591655998490751)", - "surface": 5250000, - "canton": null, - "numero_insee": "14309" - } - }, - { - "pk": 13066, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GRAINVILLE-LANGANNERIE", - "center": "POINT (409087.7238656518748030 2448777.6922199008986354)", - "surface": 5370000, - "canton": null, - "numero_insee": "14310" - } - }, - { - "pk": 32662, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GRAINVILLE-SUR-ODON", - "center": "POINT (390551.6635811628075317 2463835.0868945824913681)", - "surface": 5260000, - "canton": null, - "numero_insee": "14311" - } - }, - { - "pk": 6722, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GRANDCHAMP-LE-CHATEAU", - "center": "POINT (434641.7885347972041927 2456393.4079744578339159)", - "surface": 3500000, - "canton": null, - "numero_insee": "14313" - } - }, - { - "pk": 6329, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GRANGUES", - "center": "POINT (425570.5664677845779806 2476431.5509380246512592)", - "surface": 6670000, - "canton": null, - "numero_insee": "14316" - } - }, - { - "pk": 19283, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA GRAVERIE", - "center": "POINT (365548.7531847200589254 2437812.5873141498304904)", - "surface": 11960000, - "canton": null, - "numero_insee": "14317" - } - }, - { - "pk": 35488, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GRAYE-SUR-MER", - "center": "POINT (394580.4068570825038478 2484981.7991699287667871)", - "surface": 6630000, - "canton": null, - "numero_insee": "14318" - } - }, - { - "pk": 9109, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GRENTHEVILLE", - "center": "POINT (407960.9945273200282827 2464078.4645261284895241)", - "surface": 4120000, - "canton": null, - "numero_insee": "14319" - } - }, - { - "pk": 9502, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GRIMBOSQ", - "center": "POINT (396643.2792732324451208 2453178.1875179149210453)", - "surface": 8620000, - "canton": null, - "numero_insee": "14320" - } - }, - { - "pk": 3231, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "GUERON", - "center": "POINT (378040.0307108241249807 2476440.4592658462934196)", - "surface": 5300000, - "canton": null, - "numero_insee": "14322" - } - }, - { - "pk": 24841, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HAMARS", - "center": "POINT (388871.5731481652474031 2449111.6014064187183976)", - "surface": 9540000, - "canton": null, - "numero_insee": "14324" - } - }, - { - "pk": 8173, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HERMANVILLE-SUR-MER", - "center": "POINT (406334.0140448808670044 2479374.9297601003199816)", - "surface": 8210000, - "canton": null, - "numero_insee": "14325" - } - }, - { - "pk": 4489, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HERMIVAL-LES-VAUX", - "center": "POINT (450680.8936052601784468 2465031.5532352961599827)", - "surface": 14010000, - "canton": null, - "numero_insee": "14326" - } - }, - { - "pk": 12788, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HEROUVILLE-SAINT-CLAIR", - "center": "POINT (405502.7273520803428255 2470962.6875937264412642)", - "surface": 10640000, - "canton": null, - "numero_insee": "14327" - } - }, - { - "pk": 18876, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HEROUVILLETTE", - "center": "POINT (410601.5504870067816228 2471505.0184245626442134)", - "surface": 4010000, - "canton": null, - "numero_insee": "14328" - } - }, - { - "pk": 12525, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HEULAND", - "center": "POINT (429672.0879445630707778 2476565.4705955972895026)", - "surface": 2930000, - "canton": null, - "numero_insee": "14329" - } - }, - { - "pk": 14714, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HEURTEVENT", - "center": "POINT (438439.0544354608282447 2444917.1763400160707533)", - "surface": 5980000, - "canton": null, - "numero_insee": "14330" - } - }, - { - "pk": 12365, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HIEVILLE", - "center": "POINT (428793.6632309891283512 2449640.6936012273654342)", - "surface": 4830000, - "canton": null, - "numero_insee": "14331" - } - }, - { - "pk": 4874, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA HOGUETTE", - "center": "POINT (416638.1796085445675999 2431128.0689211366698146)", - "surface": 24810000, - "canton": null, - "numero_insee": "14332" - } - }, - { - "pk": 20468, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HONFLEUR", - "center": "POINT (447550.8129924242966808 2492623.2839936865493655)", - "surface": 13690000, - "canton": null, - "numero_insee": "14333" - } - }, - { - "pk": 31128, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "L'HOTELLERIE", - "center": "POINT (459111.4561814183834940 2461999.3127962425351143)", - "surface": 5880000, - "canton": null, - "numero_insee": "14334" - } - }, - { - "pk": 18896, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HOTOT-EN-AUGE", - "center": "POINT (423947.2020107227144763 2467012.0950529491528869)", - "surface": 24280000, - "canton": null, - "numero_insee": "14335" - } - }, - { - "pk": 32525, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HOTTOT-LES-BAGUES", - "center": "POINT (381735.8330643718363717 2465063.4552607312798500)", - "surface": 8440000, - "canton": null, - "numero_insee": "14336" - } - }, - { - "pk": 32377, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA HOUBLONNIERE", - "center": "POINT (436808.3612934890552424 2460614.0580592374317348)", - "surface": 7240000, - "canton": null, - "numero_insee": "14337" - } - }, - { - "pk": 28153, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "HOULGATE", - "center": "POINT (424938.0209138179197907 2480328.8239967240951955)", - "surface": 4700000, - "canton": null, - "numero_insee": "14338" - } - }, - { - "pk": 33907, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "IFS", - "center": "POINT (404363.0151993023464456 2463548.5005321628414094)", - "surface": 9080000, - "canton": null, - "numero_insee": "14341" - } - }, - { - "pk": 3570, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ISIGNY-SUR-MER", - "center": "POINT (349759.0639303934876807 2484113.5208239015191793)", - "surface": 17500000, - "canton": null, - "numero_insee": "14342" - } - }, - { - "pk": 29248, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES ISLES-BARDEL", - "center": "POINT (402738.7713496551732533 2429912.7745936475694180)", - "surface": 5690000, - "canton": null, - "numero_insee": "14343" - } - }, - { - "pk": 9797, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "JANVILLE", - "center": "POINT (417453.3308281451463699 2465757.7476856615394354)", - "surface": 4500000, - "canton": null, - "numero_insee": "14344" - } - }, - { - "pk": 28981, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "JORT", - "center": "POINT (423434.2151877682190388 2444292.9351803464815021)", - "surface": 6600000, - "canton": null, - "numero_insee": "14345" - } - }, - { - "pk": 15472, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "JUAYE-MONDAYE", - "center": "POINT (379280.1772680567810312 2471647.5568464966490865)", - "surface": 16100000, - "canton": null, - "numero_insee": "14346" - } - }, - { - "pk": 16128, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "JURQUES", - "center": "POINT (374443.2660119606298395 2451394.6169239566661417)", - "surface": 12800000, - "canton": null, - "numero_insee": "14347" - } - }, - { - "pk": 35969, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "JUVIGNY-SUR-SEULLES", - "center": "POINT (385431.4107471677707508 2465894.3507887357845902)", - "surface": 3570000, - "canton": null, - "numero_insee": "14348" - } - }, - { - "pk": 6007, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LAIZE-LA-VILLE", - "center": "POINT (401315.5795284872874618 2456919.0865481970831752)", - "surface": 1730000, - "canton": null, - "numero_insee": "14349" - } - }, - { - "pk": 8677, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA LANDE-SUR-DROME", - "center": "POINT (366287.5419223563512787 2457531.7567043341696262)", - "surface": 1560000, - "canton": null, - "numero_insee": "14350" - } - }, - { - "pk": 14607, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LANDELLES-ET-COUPIGNY", - "center": "POINT (355035.8273314200341702 2438526.9034683564677835)", - "surface": 24460000, - "canton": null, - "numero_insee": "14352" - } - }, - { - "pk": 26053, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LANDES-SUR-AJON", - "center": "POINT (387405.7403560713864863 2457004.7648186744190753)", - "surface": 6140000, - "canton": null, - "numero_insee": "14353" - } - }, - { - "pk": 6571, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LANGRUNE-SUR-MER", - "center": "POINT (402402.9517433447763324 2482844.7865654444321990)", - "surface": 4810000, - "canton": null, - "numero_insee": "14354" - } - }, - { - "pk": 37602, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LANTHEUIL", - "center": "POINT (392235.0131268333643675 2478158.1701357574202120)", - "surface": 4450000, - "canton": null, - "numero_insee": "14355" - } - }, - { - "pk": 7152, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LASSON", - "center": "POINT (395170.4282702563796192 2474079.6888593281619251)", - "surface": 3970000, - "canton": null, - "numero_insee": "14356" - } - }, - { - "pk": 24284, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LASSY", - "center": "POINT (378445.8773599448613822 2439219.3585226009599864)", - "surface": 12630000, - "canton": null, - "numero_insee": "14357" - } - }, - { - "pk": 33042, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LEAUPARTIE", - "center": "POINT (433352.6549831429729238 2467089.7414581198245287)", - "surface": 3210000, - "canton": null, - "numero_insee": "14358" - } - }, - { - "pk": 13256, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LECAUDE", - "center": "POINT (435424.9006833074963652 2458501.2545619471929967)", - "surface": 8060000, - "canton": null, - "numero_insee": "14359" - } - }, - { - "pk": 29652, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LEFFARD", - "center": "POINT (406870.4383268885430880 2438552.6142627499066293)", - "surface": 6940000, - "canton": null, - "numero_insee": "14360" - } - }, - { - "pk": 26551, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LENAULT", - "center": "POINT (383035.4968136160168797 2440858.1489540026523173)", - "surface": 6720000, - "canton": null, - "numero_insee": "14361" - } - }, - { - "pk": 28668, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LINGEVRES", - "center": "POINT (380310.3520190075505525 2468053.6911094603128731)", - "surface": 14520000, - "canton": null, - "numero_insee": "14364" - } - }, - { - "pk": 29253, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LION-SUR-MER", - "center": "POINT (405617.1318337658885866 2481370.3010113411583006)", - "surface": 4790000, - "canton": null, - "numero_insee": "14365" - } - }, - { - "pk": 19521, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LISIEUX", - "center": "POINT (446795.1770926649915054 2462998.1110003851354122)", - "surface": 12980000, - "canton": null, - "numero_insee": "14366" - } - }, - { - "pk": 34051, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LISON", - "center": "POINT (353020.7374210470588878 2476835.5757716828957200)", - "surface": 10910000, - "canton": null, - "numero_insee": "14367" - } - }, - { - "pk": 33558, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LISORES", - "center": "POINT (444268.1675331805599853 2441863.2932217419147491)", - "surface": 11860000, - "canton": null, - "numero_insee": "14368" - } - }, - { - "pk": 34996, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LITTEAU", - "center": "POINT (363011.7839263965724967 2466510.7664254335686564)", - "surface": 7020000, - "canton": null, - "numero_insee": "14369" - } - }, - { - "pk": 23112, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MOLAY-LITTRY", - "center": "POINT (364939.0694910542806610 2475532.3964465134777129)", - "surface": 27190000, - "canton": null, - "numero_insee": "14370" - } - }, - { - "pk": 34015, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LIVAROT", - "center": "POINT (441020.7579321807133965 2447340.1095981909893453)", - "surface": 12260000, - "canton": null, - "numero_insee": "14371" - } - }, - { - "pk": 15471, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LIVRY", - "center": "POINT (373157.9265323210856877 2461690.8395437342114747)", - "surface": 23920000, - "canton": null, - "numero_insee": "14372" - } - }, - { - "pk": 12842, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE LOCHEUR", - "center": "POINT (388680.1757651497609913 2460217.3437751615419984)", - "surface": 3730000, - "canton": null, - "numero_insee": "14373" - } - }, - { - "pk": 7651, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES LOGES", - "center": "POINT (370517.9471212227363139 2454164.2378633068874478)", - "surface": 4500000, - "canton": null, - "numero_insee": "14374" - } - }, - { - "pk": 24543, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES LOGES-SAULCES", - "center": "POINT (406217.0025753903901204 2432843.3895329469814897)", - "surface": 6810000, - "canton": null, - "numero_insee": "14375" - } - }, - { - "pk": 3825, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LONGRAYE", - "center": "POINT (378324.8075039481045678 2466136.1443914696574211)", - "surface": 6790000, - "canton": null, - "numero_insee": "14376" - } - }, - { - "pk": 34961, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LONGUES-SUR-MER", - "center": "POINT (379564.5010240806732327 2485758.9172857347875834)", - "surface": 12240000, - "canton": null, - "numero_insee": "14377" - } - }, - { - "pk": 32663, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LONGUEVILLE", - "center": "POINT (360442.1801470741629601 2487002.8550427882000804)", - "surface": 6740000, - "canton": null, - "numero_insee": "14378" - } - }, - { - "pk": 13124, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LONGVILLERS", - "center": "POINT (381927.1661973500740714 2453957.7525230934843421)", - "surface": 6810000, - "canton": null, - "numero_insee": "14379" - } - }, - { - "pk": 27576, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LOUCELLES", - "center": "POINT (387569.3431662403745577 2473616.9102179165929556)", - "surface": 3070000, - "canton": null, - "numero_insee": "14380" - } - }, - { - "pk": 7352, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LOUVAGNY", - "center": "POINT (425356.8241225253441371 2441707.0658103744499385)", - "surface": 5600000, - "canton": null, - "numero_insee": "14381" - } - }, - { - "pk": 9142, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LOUVIERES", - "center": "POINT (363111.7036484070122242 2490927.2134839231148362)", - "surface": 4280000, - "canton": null, - "numero_insee": "14382" - } - }, - { - "pk": 9405, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LOUVIGNY", - "center": "POINT (400445.0866920804837719 2465417.4753155396319926)", - "surface": 5670000, - "canton": null, - "numero_insee": "14383" - } - }, - { - "pk": 13339, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LUC-SUR-MER", - "center": "POINT (403908.7480078130029142 2482256.8042633235454559)", - "surface": 3590000, - "canton": null, - "numero_insee": "14384" - } - }, - { - "pk": 35487, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAGNY-EN-BESSIN", - "center": "POINT (381484.4876548501779325 2483473.2312577026896179)", - "surface": 4510000, - "canton": null, - "numero_insee": "14385" - } - }, - { - "pk": 11528, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAGNY-LA-CAMPAGNE", - "center": "POINT (421862.3205867018550634 2452885.6693081110715866)", - "surface": 6400000, - "canton": null, - "numero_insee": "14386" - } - }, - { - "pk": 24155, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAGNY-LE-FREULE", - "center": "POINT (423814.7890554106561467 2458805.6581613481976092)", - "surface": 6470000, - "canton": null, - "numero_insee": "14387" - } - }, - { - "pk": 22719, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAISONCELLES-LA-JOURDAN", - "center": "POINT (365943.3642793296603486 2426308.0304624498821795)", - "surface": 13930000, - "canton": null, - "numero_insee": "14388" - } - }, - { - "pk": 24466, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAISONCELLES-PELVEY", - "center": "POINT (379913.6492131957784295 2455442.1953822621144354)", - "surface": 5510000, - "canton": null, - "numero_insee": "14389" - } - }, - { - "pk": 29605, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAISONCELLES-SUR-AJON", - "center": "POINT (389622.6730581997544505 2455121.7456512623466551)", - "surface": 4300000, - "canton": null, - "numero_insee": "14390" - } - }, - { - "pk": 28669, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAISONS", - "center": "POINT (375174.3314990408252925 2484221.9053483232855797)", - "surface": 6670000, - "canton": null, - "numero_insee": "14391" - } - }, - { - "pk": 36476, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAIZET", - "center": "POINT (395914.8676675525493920 2456574.4326910707168281)", - "surface": 5750000, - "canton": null, - "numero_insee": "14393" - } - }, - { - "pk": 6607, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAIZIERES", - "center": "POINT (416790.6571588570950553 2449041.3227731743827462)", - "surface": 7130000, - "canton": null, - "numero_insee": "14394" - } - }, - { - "pk": 32708, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MALLOUE", - "center": "POINT (358797.9230772752198391 2443461.0355759975500405)", - "surface": 1320000, - "canton": null, - "numero_insee": "14395" - } - }, - { - "pk": 33400, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MALTOT", - "center": "POINT (398465.3356757503352128 2462799.4844576879404485)", - "surface": 4270000, - "canton": null, - "numero_insee": "14396" - } - }, - { - "pk": 13772, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MANDEVILLE-EN-BESSIN", - "center": "POINT (366974.5965911649982445 2483554.2150804074481130)", - "surface": 8860000, - "canton": null, - "numero_insee": "14397" - } - }, - { - "pk": 22681, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MANERBE", - "center": "POINT (439960.6163164783501998 2466644.0116655495949090)", - "surface": 18440000, - "canton": null, - "numero_insee": "14398" - } - }, - { - "pk": 29683, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MANNEVILLE-LA-PIPARD", - "center": "POINT (446385.7790593744721264 2476203.2518254374153912)", - "surface": 6310000, - "canton": null, - "numero_insee": "14399" - } - }, - { - "pk": 8773, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MANOIR", - "center": "POINT (386210.1909604794345796 2480710.2875758437439799)", - "surface": 5930000, - "canton": null, - "numero_insee": "14400" - } - }, - { - "pk": 24583, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MANVIEUX", - "center": "POINT (382161.0412531447364017 2486380.6320636030286551)", - "surface": 2900000, - "canton": null, - "numero_insee": "14401" - } - }, - { - "pk": 26462, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MARAIS-LA-CHAPELLE", - "center": "POINT (426820.4385680347913876 2434114.0414304602891207)", - "surface": 2470000, - "canton": null, - "numero_insee": "14402" - } - }, - { - "pk": 15302, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAROLLES", - "center": "POINT (456311.4794811162864789 2461776.0015570544637740)", - "surface": 12390000, - "canton": null, - "numero_insee": "14403" - } - }, - { - "pk": 10522, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MARTAINVILLE", - "center": "POINT (403038.4777377098798752 2442123.4625371578149498)", - "surface": 5870000, - "canton": null, - "numero_insee": "14404" - } - }, - { - "pk": 32492, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MARTIGNY-SUR-L'ANTE", - "center": "POINT (407494.7089644392253831 2435655.8066070256754756)", - "surface": 9600000, - "canton": null, - "numero_insee": "14405" - } - }, - { - "pk": 29725, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MARTRAGNY", - "center": "POINT (385946.2118683666922152 2476305.3013057950884104)", - "surface": 3780000, - "canton": null, - "numero_insee": "14406" - } - }, - { - "pk": 34504, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MATHIEU", - "center": "POINT (403055.1996909035369754 2476546.1337063689716160)", - "surface": 9390000, - "canton": null, - "numero_insee": "14407" - } - }, - { - "pk": 22688, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MAY-SUR-ORNE", - "center": "POINT (401500.0437078534159809 2458821.8522959765978158)", - "surface": 3510000, - "canton": null, - "numero_insee": "14408" - } - }, - { - "pk": 29471, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MERVILLE-FRANCEVILLE-PLAGE", - "center": "POINT (415051.3530235161306337 2477945.8077954300679266)", - "surface": 10640000, - "canton": null, - "numero_insee": "14409" - } - }, - { - "pk": 7773, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MERY-CORBON", - "center": "POINT (423889.2521067427005619 2461908.2993642003275454)", - "surface": 7380000, - "canton": null, - "numero_insee": "14410" - } - }, - { - "pk": 8785, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MESLAY", - "center": "POINT (400029.2603258501039818 2442999.2851487817242742)", - "surface": 5800000, - "canton": null, - "numero_insee": "14411" - } - }, - { - "pk": 37406, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-AU-GRAIN", - "center": "POINT (384729.6469234878313728 2453880.7214276110753417)", - "surface": 4450000, - "canton": null, - "numero_insee": "14412" - } - }, - { - "pk": 24223, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-AUZOUF", - "center": "POINT (374983.8306429010117427 2446495.8024453516118228)", - "surface": 9270000, - "canton": null, - "numero_insee": "14413" - } - }, - { - "pk": 32046, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-BACLEY", - "center": "POINT (438424.1706442368449643 2446718.2506838091649115)", - "surface": 4470000, - "canton": null, - "numero_insee": "14414" - } - }, - { - "pk": 11936, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-BENOIST", - "center": "POINT (356465.3875548764481209 2435036.2627700106240809)", - "surface": 2680000, - "canton": null, - "numero_insee": "14415" - } - }, - { - "pk": 11626, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-CAUSSOIS", - "center": "POINT (354274.7113026381703094 2433717.4249837170355022)", - "surface": 4260000, - "canton": null, - "numero_insee": "14416" - } - }, - { - "pk": 31893, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MESNIL-CLINCHAMPS", - "center": "POINT (356284.9542464741971344 2432633.1594428578391671)", - "surface": 15560000, - "canton": null, - "numero_insee": "14417" - } - }, - { - "pk": 19692, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-DURAND", - "center": "POINT (440182.2391469909925945 2451936.2244363785721362)", - "surface": 9910000, - "canton": null, - "numero_insee": "14418" - } - }, - { - "pk": 6611, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-EUDES", - "center": "POINT (441940.2935151924612001 2457154.1784000946208835)", - "surface": 8520000, - "canton": null, - "numero_insee": "14419" - } - }, - { - "pk": 22188, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-GERMAIN", - "center": "POINT (442884.6643011153209955 2451858.4971508481539786)", - "surface": 8730000, - "canton": null, - "numero_insee": "14420" - } - }, - { - "pk": 10895, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-GUILLAUME", - "center": "POINT (449936.7158070728764869 2458220.9610042027197778)", - "surface": 3890000, - "canton": null, - "numero_insee": "14421" - } - }, - { - "pk": 37065, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-MAUGER", - "center": "POINT (429944.8054382239934057 2455654.1571564888581634)", - "surface": 31340000, - "canton": null, - "numero_insee": "14422" - } - }, - { - "pk": 8120, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-PATRY", - "center": "POINT (389901.9383498315000907 2469833.6391035979613662)", - "surface": 3470000, - "canton": null, - "numero_insee": "14423" - } - }, - { - "pk": 6267, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-ROBERT", - "center": "POINT (357155.1480918985325843 2436342.7957591474987566)", - "surface": 4120000, - "canton": null, - "numero_insee": "14424" - } - }, - { - "pk": 17935, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-SIMON", - "center": "POINT (437440.1290551074780524 2456816.7895542653277516)", - "surface": 9610000, - "canton": null, - "numero_insee": "14425" - } - }, - { - "pk": 27574, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-SUR-BLANGY", - "center": "POINT (448792.9455367253976874 2475522.7116519198752940)", - "surface": 7430000, - "canton": null, - "numero_insee": "14426" - } - }, - { - "pk": 18225, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE MESNIL-VILLEMENT", - "center": "POINT (400819.4846629261737689 2432098.4605248044244945)", - "surface": 3630000, - "canton": null, - "numero_insee": "14427" - } - }, - { - "pk": 13090, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MEULLES", - "center": "POINT (452160.4852442787960172 2443429.5778499050065875)", - "surface": 16580000, - "canton": null, - "numero_insee": "14429" - } - }, - { - "pk": 38025, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MEUVAINES", - "center": "POINT (388378.5369840766070411 2484730.6615606509149075)", - "surface": 7410000, - "canton": null, - "numero_insee": "14430" - } - }, - { - "pk": 35399, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MEZIDON-CANON", - "center": "POINT (423737.8488829516572878 2456003.1860081125050783)", - "surface": 10910000, - "canton": null, - "numero_insee": "14431" - } - }, - { - "pk": 13014, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MISSY", - "center": "POINT (389665.1273593052756041 2462126.6863518683239818)", - "surface": 5170000, - "canton": null, - "numero_insee": "14432" - } - }, - { - "pk": 36237, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MITTOIS", - "center": "POINT (431310.8479429970611818 2447760.2183868302963674)", - "surface": 7320000, - "canton": null, - "numero_insee": "14433" - } - }, - { - "pk": 9479, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES MONCEAUX", - "center": "POINT (438821.1073601262178272 2459229.7739617442712188)", - "surface": 3760000, - "canton": null, - "numero_insee": "14435" - } - }, - { - "pk": 29078, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONCEAUX-EN-BESSIN", - "center": "POINT (379538.4260820047929883 2476752.9612414436414838)", - "surface": 4760000, - "canton": null, - "numero_insee": "14436" - } - }, - { - "pk": 24059, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONDEVILLE", - "center": "POINT (406838.9217460473882966 2466670.9106582910753787)", - "surface": 9060000, - "canton": null, - "numero_insee": "14437" - } - }, - { - "pk": 37128, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONDRAINVILLE", - "center": "POINT (391950.0119001331040636 2464146.7844912325963378)", - "surface": 3110000, - "canton": null, - "numero_insee": "14438" - } - }, - { - "pk": 18408, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONFREVILLE", - "center": "POINT (354658.5731653104303405 2484553.9190697972662747)", - "surface": 7320000, - "canton": null, - "numero_insee": "14439" - } - }, - { - "pk": 8096, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTAMY", - "center": "POINT (373389.4462900718208402 2445682.1756234271451831)", - "surface": 3660000, - "canton": null, - "numero_insee": "14440" - } - }, - { - "pk": 24649, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONT-BERTRAND", - "center": "POINT (361474.9256555294268765 2446484.9931708988733590)", - "surface": 6370000, - "canton": null, - "numero_insee": "14441" - } - }, - { - "pk": 29122, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTCHAMP", - "center": "POINT (373339.5085542750312015 2439577.6835836996324360)", - "surface": 16380000, - "canton": null, - "numero_insee": "14442" - } - }, - { - "pk": 20020, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTCHAUVET", - "center": "POINT (374911.7117640362121165 2443092.9409744064323604)", - "surface": 18580000, - "canton": null, - "numero_insee": "14443" - } - }, - { - "pk": 24163, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTEILLE", - "center": "POINT (432519.0671116559533402 2458977.5799685064703226)", - "surface": 4560000, - "canton": null, - "numero_insee": "14444" - } - }, - { - "pk": 17208, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTFIQUET", - "center": "POINT (364684.0440553770167753 2470026.7555881831794977)", - "surface": 20210000, - "canton": null, - "numero_insee": "14445" - } - }, - { - "pk": 23946, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTIGNY", - "center": "POINT (389940.1325695130508393 2453022.9715106370858848)", - "surface": 3870000, - "canton": null, - "numero_insee": "14446" - } - }, - { - "pk": 35268, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTREUIL-EN-AUGE", - "center": "POINT (434565.7484039762639441 2465598.7881308645009995)", - "surface": 3400000, - "canton": null, - "numero_insee": "14448" - } - }, - { - "pk": 25890, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTS-EN-BESSIN", - "center": "POINT (384661.3771869869087823 2462185.6094304830767214)", - "surface": 7250000, - "canton": null, - "numero_insee": "14449" - } - }, - { - "pk": 27937, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MONTVIETTE", - "center": "POINT (435929.2936383977648802 2445897.1040963320992887)", - "surface": 6710000, - "canton": null, - "numero_insee": "14450" - } - }, - { - "pk": 37948, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MORTEAUX-COULIBOEUF", - "center": "POINT (422678.3202294945949689 2438883.0859492570161819)", - "surface": 11930000, - "canton": null, - "numero_insee": "14452" - } - }, - { - "pk": 10178, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MOSLES", - "center": "POINT (370179.7024447600124404 2483180.2635981207713485)", - "surface": 6580000, - "canton": null, - "numero_insee": "14453" - } - }, - { - "pk": 25906, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MOUEN", - "center": "POINT (393744.4766809332650155 2464962.0680143148638308)", - "surface": 4240000, - "canton": null, - "numero_insee": "14454" - } - }, - { - "pk": 22393, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MOULINES", - "center": "POINT (403397.5142721792217344 2447129.7536687497049570)", - "surface": 9420000, - "canton": null, - "numero_insee": "14455" - } - }, - { - "pk": 5302, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MOULT", - "center": "POINT (417200.1880442518158816 2460051.9444717131555080)", - "surface": 10180000, - "canton": null, - "numero_insee": "14456" - } - }, - { - "pk": 7209, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES MOUTIERS-EN-AUGE", - "center": "POINT (429107.7887593164341524 2435834.0710941888391972)", - "surface": 10150000, - "canton": null, - "numero_insee": "14457" - } - }, - { - "pk": 4378, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES MOUTIERS-EN-CINGLAIS", - "center": "POINT (396963.2217563138110563 2450779.2341149728745222)", - "surface": 6250000, - "canton": null, - "numero_insee": "14458" - } - }, - { - "pk": 33301, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES MOUTIERS-HUBERT", - "center": "POINT (447757.0245616347528994 2443493.2141456478275359)", - "surface": 8300000, - "canton": null, - "numero_insee": "14459" - } - }, - { - "pk": 30185, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MOYAUX", - "center": "POINT (455157.8350327718653716 2468170.6094753621146083)", - "surface": 16630000, - "canton": null, - "numero_insee": "14460" - } - }, - { - "pk": 8985, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "MUTRECY", - "center": "POINT (398226.9307954561663792 2455292.6066499869339168)", - "surface": 6760000, - "canton": null, - "numero_insee": "14461" - } - }, - { - "pk": 14776, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NEUILLY-LA-FORET", - "center": "POINT (350491.4299066283274442 2480217.0317377545870841)", - "surface": 21430000, - "canton": null, - "numero_insee": "14462" - } - }, - { - "pk": 30957, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NONANT", - "center": "POINT (382554.1268855326343328 2475076.6492133084684610)", - "surface": 6900000, - "canton": null, - "numero_insee": "14465" - } - }, - { - "pk": 8471, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NOROLLES", - "center": "POINT (446843.1033030624967068 2469302.5942843593657017)", - "surface": 6530000, - "canton": null, - "numero_insee": "14466" - } - }, - { - "pk": 29008, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NORON-L'ABBAYE", - "center": "POINT (410392.3428140525356866 2436180.0214225323870778)", - "surface": 7590000, - "canton": null, - "numero_insee": "14467" - } - }, - { - "pk": 11193, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NORON-LA-POTERIE", - "center": "POINT (373156.9325385371921584 2473998.8134250803850591)", - "surface": 3000000, - "canton": null, - "numero_insee": "14468" - } - }, - { - "pk": 37946, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NORREY-EN-AUGE", - "center": "POINT (427492.7779926813673228 2437521.8812082423828542)", - "surface": 8850000, - "canton": null, - "numero_insee": "14469" - } - }, - { - "pk": 30927, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NOTRE-DAME-DE-LIVAYE", - "center": "POINT (432309.0336927935713902 2460176.6304751406423748)", - "surface": 2700000, - "canton": null, - "numero_insee": "14473" - } - }, - { - "pk": 4373, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NOTRE-DAME-D'ESTREES", - "center": "POINT (429289.9289656546898186 2462253.0719281407073140)", - "surface": 7560000, - "canton": null, - "numero_insee": "14474" - } - }, - { - "pk": 29552, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "NOYERS-BOCAGE", - "center": "POINT (387261.2540692702168599 2462407.1144426194950938)", - "surface": 9070000, - "canton": null, - "numero_insee": "14475" - } - }, - { - "pk": 22358, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OLENDON", - "center": "POINT (416131.4950266622472554 2444032.5620240489952266)", - "surface": 7500000, - "canton": null, - "numero_insee": "14476" - } - }, - { - "pk": 23962, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ONDEFONTAINE", - "center": "POINT (378577.7642215557862073 2447525.9901818437501788)", - "surface": 15510000, - "canton": null, - "numero_insee": "14477" - } - }, - { - "pk": 5838, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ORBEC", - "center": "POINT (457117.9158809129730798 2448974.2649886249564588)", - "surface": 10130000, - "canton": null, - "numero_insee": "14478" - } - }, - { - "pk": 25703, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OSMANVILLE", - "center": "POINT (350834.2797236131737009 2487224.2980752969160676)", - "surface": 11840000, - "canton": null, - "numero_insee": "14480" - } - }, - { - "pk": 9058, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LES OUBEAUX", - "center": "POINT (353281.5538765899254940 2481640.7866476313211024)", - "surface": 4280000, - "canton": null, - "numero_insee": "14481" - } - }, - { - "pk": 6997, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OUEZY", - "center": "POINT (421629.1821405442315154 2456886.3787629832513630)", - "surface": 4710000, - "canton": null, - "numero_insee": "14482" - } - }, - { - "pk": 28623, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OUFFIERES", - "center": "POINT (393258.5529999531572685 2451048.9469925854355097)", - "surface": 4230000, - "canton": null, - "numero_insee": "14483" - } - }, - { - "pk": 7195, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OUILLY-DU-HOULEY", - "center": "POINT (454284.6413425400387496 2464861.2431514635682106)", - "surface": 9040000, - "canton": null, - "numero_insee": "14484" - } - }, - { - "pk": 33271, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OUILLY-LE-TESSON", - "center": "POINT (413308.3711571496678516 2446611.0174473063088953)", - "surface": 11970000, - "canton": null, - "numero_insee": "14486" - } - }, - { - "pk": 34534, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OUILLY-LE-VICOMTE", - "center": "POINT (445165.2869126761797816 2466486.9072309420444071)", - "surface": 8030000, - "canton": null, - "numero_insee": "14487" - } - }, - { - "pk": 5197, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OUISTREHAM", - "center": "POINT (411045.7672574106254615 2478313.0471627051010728)", - "surface": 11270000, - "canton": null, - "numero_insee": "14488" - } - }, - { - "pk": 25545, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "OUVILLE-LA-BIEN-TOURNEE", - "center": "POINT (426864.4526624527061358 2453027.0148224513977766)", - "surface": 7710000, - "canton": null, - "numero_insee": "14489" - } - }, - { - "pk": 31410, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PARFOURU-SUR-ODON", - "center": "POINT (384690.9877770603634417 2458583.4961218773387372)", - "surface": 3670000, - "canton": null, - "numero_insee": "14491" - } - }, - { - "pk": 35447, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PENNEDEPIE", - "center": "POINT (442156.8917441611411050 2491477.9968933071941137)", - "surface": 5740000, - "canton": null, - "numero_insee": "14492" - } - }, - { - "pk": 30153, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PERCY-EN-AUGE", - "center": "POINT (424755.7787752986187115 2453910.2041619457304478)", - "surface": 7220000, - "canton": null, - "numero_insee": "14493" - } - }, - { - "pk": 10647, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PERIERS-EN-AUGE", - "center": "POINT (422965.7752844270435162 2476810.3132772962562740)", - "surface": 4980000, - "canton": null, - "numero_insee": "14494" - } - }, - { - "pk": 23749, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PERIERS-SUR-LE-DAN", - "center": "POINT (405156.4036018493352458 2476563.4380952082574368)", - "surface": 2960000, - "canton": null, - "numero_insee": "14495" - } - }, - { - "pk": 5094, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PERIGNY", - "center": "POINT (384246.9133055391721427 2439567.2348826294764876)", - "surface": 2650000, - "canton": null, - "numero_insee": "14496" - } - }, - { - "pk": 6371, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PERRIERES", - "center": "POINT (419542.6104292907984927 2442959.9607142722234130)", - "surface": 8130000, - "canton": null, - "numero_insee": "14497" - } - }, - { - "pk": 6046, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PERTHEVILLE-NERS", - "center": "POINT (420420.6831020412500948 2433560.8912485823966563)", - "surface": 8470000, - "canton": null, - "numero_insee": "14498" - } - }, - { - "pk": 37307, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PETIVILLE", - "center": "POINT (417481.6035332615138032 2474463.6016777721233666)", - "surface": 2930000, - "canton": null, - "numero_insee": "14499" - } - }, - { - "pk": 29685, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PIERREFITTE-EN-AUGE", - "center": "POINT (444293.6772147189476527 2475085.2476874608546495)", - "surface": 5470000, - "canton": null, - "numero_insee": "14500" - } - }, - { - "pk": 37230, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PIERREFITTE-EN-CINGLAIS", - "center": "POINT (400074.5706034899922088 2437495.9708752757869661)", - "surface": 10810000, - "canton": null, - "numero_insee": "14501" - } - }, - { - "pk": 29329, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PIERREPONT", - "center": "POINT (404995.6665827321121469 2435335.0163660049438477)", - "surface": 4340000, - "canton": null, - "numero_insee": "14502" - } - }, - { - "pk": 9712, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PIERRES", - "center": "POINT (374488.6587203441886231 2433683.1446055355481803)", - "surface": 9720000, - "canton": null, - "numero_insee": "14503" - } - }, - { - "pk": 25902, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE PIN", - "center": "POINT (454039.8094790155300871 2470262.7132518603466451)", - "surface": 11590000, - "canton": null, - "numero_insee": "14504" - } - }, - { - "pk": 7746, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PLACY", - "center": "POINT (397604.7581317722797394 2445781.1942267837002873)", - "surface": 5420000, - "canton": null, - "numero_insee": "14505" - } - }, - { - "pk": 19306, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PLANQUERY", - "center": "POINT (369108.7691345136845484 2467361.3131760796532035)", - "surface": 14530000, - "canton": null, - "numero_insee": "14506" - } - }, - { - "pk": 17362, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE PLESSIS-GRIMOULT", - "center": "POINT (384008.1334161981358193 2444268.4184874896891415)", - "surface": 16210000, - "canton": null, - "numero_insee": "14508" - } - }, - { - "pk": 9190, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PONT-BELLANGER", - "center": "POINT (356704.0427012145519257 2442543.2647352493368089)", - "surface": 3650000, - "canton": null, - "numero_insee": "14511" - } - }, - { - "pk": 24224, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PONTECOULANT", - "center": "POINT (385772.4994586290558800 2436577.7596355928108096)", - "surface": 2430000, - "canton": null, - "numero_insee": "14512" - } - }, - { - "pk": 17119, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PONT-FARCY", - "center": "POINT (352792.6725092291599140 2443611.9397005476057529)", - "surface": 13560000, - "canton": null, - "numero_insee": "14513" - } - }, - { - "pk": 12107, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PONT-L'EVEQUE", - "center": "POINT (443469.2301895739510655 2477980.2887630765326321)", - "surface": 8160000, - "canton": null, - "numero_insee": "14514" - } - }, - { - "pk": 33612, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PORT-EN-BESSIN-HUPPAIN", - "center": "POINT (373851.4109941293136217 2486912.7559102936647832)", - "surface": 7610000, - "canton": null, - "numero_insee": "14515" - } - }, - { - "pk": 29470, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "POTIGNY", - "center": "POINT (410724.1365981093840674 2444488.3179695224389434)", - "surface": 4240000, - "canton": null, - "numero_insee": "14516" - } - }, - { - "pk": 11191, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "POUSSY-LA-CAMPAGNE", - "center": "POINT (412226.9474535611807369 2456408.5820883819833398)", - "surface": 4040000, - "canton": null, - "numero_insee": "14517" - } - }, - { - "pk": 13870, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PREAUX-SAINT-SEBASTIEN", - "center": "POINT (451340.9644918091362342 2445724.3284129393287003)", - "surface": 3770000, - "canton": null, - "numero_insee": "14518" - } - }, - { - "pk": 10570, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PREAUX-BOCAGE", - "center": "POINT (391831.3812534380704165 2454239.3199306530877948)", - "surface": 4200000, - "canton": null, - "numero_insee": "14519" - } - }, - { - "pk": 37851, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE PRE-D'AUGE", - "center": "POINT (439987.0784649762790650 2463442.1512442296370864)", - "surface": 10750000, - "canton": null, - "numero_insee": "14520" - } - }, - { - "pk": 6495, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PRESLES", - "center": "POINT (371669.7008469662396237 2435761.4142103311605752)", - "surface": 9160000, - "canton": null, - "numero_insee": "14521" - } - }, - { - "pk": 14713, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PRETREVILLE", - "center": "POINT (448065.3955148290842772 2454603.1178711918182671)", - "surface": 11390000, - "canton": null, - "numero_insee": "14522" - } - }, - { - "pk": 11135, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PROUSSY", - "center": "POINT (387986.1757428043056279 2435094.9510233914479613)", - "surface": 12680000, - "canton": null, - "numero_insee": "14523" - } - }, - { - "pk": 36601, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PUTOT-EN-AUGE", - "center": "POINT (424814.6957750569563359 2471021.8408609773032367)", - "surface": 6520000, - "canton": null, - "numero_insee": "14524" - } - }, - { - "pk": 4122, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PUTOT-EN-BESSIN", - "center": "POINT (389982.2465999211417511 2472235.8498593284748495)", - "surface": 3570000, - "canton": null, - "numero_insee": "14525" - } - }, - { - "pk": 21194, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "BIEVILLE-QUETIEVILLE", - "center": "POINT (426705.7542318695923313 2460130.3679425055161119)", - "surface": 20670000, - "canton": null, - "numero_insee": "14527" - } - }, - { - "pk": 29073, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "QUETTEVILLE", - "center": "POINT (451820.2137687647482380 2484553.4922635680995882)", - "surface": 10320000, - "canton": null, - "numero_insee": "14528" - } - }, - { - "pk": 7625, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RANCHY", - "center": "POINT (374128.7526967092417181 2477509.0420106742531061)", - "surface": 5240000, - "canton": null, - "numero_insee": "14529" - } - }, - { - "pk": 27939, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RANVILLE", - "center": "POINT (410487.4754686709493399 2473205.1738622072152793)", - "surface": 8430000, - "canton": null, - "numero_insee": "14530" - } - }, - { - "pk": 30226, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RAPILLY", - "center": "POINT (403221.7703952284064144 2432018.1758591886609793)", - "surface": 4250000, - "canton": null, - "numero_insee": "14531" - } - }, - { - "pk": 9541, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE RECULEY", - "center": "POINT (366938.9259478726889938 2439124.8699936000630260)", - "surface": 4740000, - "canton": null, - "numero_insee": "14532" - } - }, - { - "pk": 6875, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "REPENTIGNY", - "center": "POINT (432634.8958230147836730 2469185.1729912329465151)", - "surface": 2110000, - "canton": null, - "numero_insee": "14533" - } - }, - { - "pk": 24934, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "REUX", - "center": "POINT (440971.1108991989167407 2477559.3832297711633146)", - "surface": 7450000, - "canton": null, - "numero_insee": "14534" - } - }, - { - "pk": 7624, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "REVIERS", - "center": "POINT (396010.0173281641909853 2481491.3362772669643164)", - "surface": 4310000, - "canton": null, - "numero_insee": "14535" - } - }, - { - "pk": 32217, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA RIVIERE-SAINT-SAUVEUR", - "center": "POINT (449757.0083893877454102 2492041.1548242489807308)", - "surface": 5360000, - "canton": null, - "numero_insee": "14536" - } - }, - { - "pk": 11617, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ROCQUANCOURT", - "center": "POINT (406005.1603577588684857 2458558.7584167332388461)", - "surface": 2720000, - "canton": null, - "numero_insee": "14538" - } - }, - { - "pk": 30569, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA ROCQUE", - "center": "POINT (379070.9044902564492077 2436222.4750651516951621)", - "surface": 5010000, - "canton": null, - "numero_insee": "14539" - } - }, - { - "pk": 5895, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ROCQUES", - "center": "POINT (447675.8400476493407041 2465406.9551699119620025)", - "surface": 6200000, - "canton": null, - "numero_insee": "14540" - } - }, - { - "pk": 32409, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA ROQUE-BAIGNARD", - "center": "POINT (436157.5851321651134640 2466712.6519126882776618)", - "surface": 4710000, - "canton": null, - "numero_insee": "14541" - } - }, - { - "pk": 10933, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ROSEL", - "center": "POINT (396881.2881124988198280 2472892.9950186996720731)", - "surface": 3850000, - "canton": null, - "numero_insee": "14542" - } - }, - { - "pk": 29077, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ROTS", - "center": "POINT (394994.1888014794676565 2471176.3695260593667626)", - "surface": 12140000, - "canton": null, - "numero_insee": "14543" - } - }, - { - "pk": 25809, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ROUCAMPS", - "center": "POINT (382682.6810294311726466 2447259.5228338316082954)", - "surface": 5500000, - "canton": null, - "numero_insee": "14544" - } - }, - { - "pk": 19059, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ROULLOURS", - "center": "POINT (366913.5940213134745136 2430018.5123739354312420)", - "surface": 13460000, - "canton": null, - "numero_insee": "14545" - } - }, - { - "pk": 34245, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "ROUVRES", - "center": "POINT (415298.8398510832339525 2447928.2916597435250878)", - "surface": 8910000, - "canton": null, - "numero_insee": "14546" - } - }, - { - "pk": 30749, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RUBERCY", - "center": "POINT (365393.3870676398510113 2481139.7117465445771813)", - "surface": 5570000, - "canton": null, - "numero_insee": "14547" - } - }, - { - "pk": 9099, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RUCQUEVILLE", - "center": "POINT (387038.6169846678385511 2477314.9236599332652986)", - "surface": 2620000, - "canton": null, - "numero_insee": "14548" - } - }, - { - "pk": 10330, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RULLY", - "center": "POINT (375820.6829495624406263 2429891.5097366045229137)", - "surface": 9810000, - "canton": null, - "numero_insee": "14549" - } - }, - { - "pk": 11980, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RUMESNIL", - "center": "POINT (431145.5954865399980918 2467771.9683472183533013)", - "surface": 5390000, - "canton": null, - "numero_insee": "14550" - } - }, - { - "pk": 24389, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RUSSY", - "center": "POINT (370459.3412438372033648 2485684.1480421368032694)", - "surface": 4910000, - "canton": null, - "numero_insee": "14551" - } - }, - { - "pk": 28198, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "RYES", - "center": "POINT (384285.2570612023118883 2483596.3120346851646900)", - "surface": 9720000, - "canton": null, - "numero_insee": "14552" - } - }, - { - "pk": 25015, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-AGNAN-LE-MALHERBE", - "center": "POINT (386437.2351101336535066 2453094.2318719369359314)", - "surface": 6330000, - "canton": null, - "numero_insee": "14553" - } - }, - { - "pk": 12135, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-AIGNAN-DE-CRAMESNIL", - "center": "POINT (408320.5271278122672811 2456876.7178449542261660)", - "surface": 6900000, - "canton": null, - "numero_insee": "14554" - } - }, - { - "pk": 3240, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-ANDRE-D'HEBERTOT", - "center": "POINT (451155.4129821086535230 2480245.2591704293154180)", - "surface": 9880000, - "canton": null, - "numero_insee": "14555" - } - }, - { - "pk": 22453, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-ANDRE-SUR-ORNE", - "center": "POINT (400974.2112848932156339 2461919.5509862257167697)", - "surface": 3900000, - "canton": null, - "numero_insee": "14556" - } - }, - { - "pk": 10925, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-ARNOULT", - "center": "POINT (436516.5200927139958367 2483826.5878255479037762)", - "surface": 5080000, - "canton": null, - "numero_insee": "14557" - } - }, - { - "pk": 35635, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-AUBIN-D'ARQUENAY", - "center": "POINT (409056.9901095478562638 2476795.6988437990657985)", - "surface": 3290000, - "canton": null, - "numero_insee": "14558" - } - }, - { - "pk": 18953, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-AUBIN-DES-BOIS", - "center": "POINT (345286.4320696353679523 2431542.3573550228029490)", - "surface": 8340000, - "canton": null, - "numero_insee": "14559" - } - }, - { - "pk": 5089, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-AUBIN-SUR-MER", - "center": "POINT (401393.3219050462939776 2483937.1730767115950584)", - "surface": 3020000, - "canton": null, - "numero_insee": "14562" - } - }, - { - "pk": 35235, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-BENOIT-D'HEBERTOT", - "center": "POINT (449833.9813395574456081 2482735.9181132190860808)", - "surface": 7120000, - "canton": null, - "numero_insee": "14563" - } - }, - { - "pk": 24738, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-CHARLES-DE-PERCY", - "center": "POINT (370632.9484295968431979 2440155.8632978433743119)", - "surface": 6730000, - "canton": null, - "numero_insee": "14564" - } - }, - { - "pk": 32739, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-COME-DE-FRESNE", - "center": "POINT (386175.6437612732406706 2484912.6771069904789329)", - "surface": 4300000, - "canton": null, - "numero_insee": "14565" - } - }, - { - "pk": 27560, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-CONTEST", - "center": "POINT (400390.7192015870241448 2472021.3016516426578164)", - "surface": 7940000, - "canton": null, - "numero_insee": "14566" - } - }, - { - "pk": 8005, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-CROIX-GRAND-TONNE", - "center": "POINT (389162.8597089218674228 2474530.5926916468888521)", - "surface": 5240000, - "canton": null, - "numero_insee": "14568" - } - }, - { - "pk": 8495, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-CROIX-SUR-MER", - "center": "POINT (392890.9663564975489862 2483567.0110766417346895)", - "surface": 2100000, - "canton": null, - "numero_insee": "14569" - } - }, - { - "pk": 25461, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-CYR-DU-RONCERAY", - "center": "POINT (451187.0918385948752984 2452227.3611536407843232)", - "surface": 4090000, - "canton": null, - "numero_insee": "14570" - } - }, - { - "pk": 13330, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-DENIS-DE-MAILLOC", - "center": "POINT (452144.6296475437120534 2457438.7042900891974568)", - "surface": 4350000, - "canton": null, - "numero_insee": "14571" - } - }, - { - "pk": 32214, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-DENIS-DE-MERE", - "center": "POINT (391503.1173562608892098 2433322.6627313420176506)", - "surface": 11330000, - "canton": null, - "numero_insee": "14572" - } - }, - { - "pk": 34868, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-DENIS-MAISONCELLES", - "center": "POINT (365573.2762641324079596 2447018.9484567497856915)", - "surface": 2440000, - "canton": null, - "numero_insee": "14573" - } - }, - { - "pk": 3848, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-DESIR", - "center": "POINT (443294.7915026902337559 2462769.0369339957833290)", - "surface": 19560000, - "canton": null, - "numero_insee": "14574" - } - }, - { - "pk": 5490, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-ETIENNE-LA-THILLAYE", - "center": "POINT (438454.8006104028318077 2479339.7383073433302343)", - "surface": 12460000, - "canton": null, - "numero_insee": "14575" - } - }, - { - "pk": 18869, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-FOY-DE-MONTGOMMERY", - "center": "POINT (440762.7596092101885006 2442234.5805646511726081)", - "surface": 4580000, - "canton": null, - "numero_insee": "14576" - } - }, - { - "pk": 3282, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GABRIEL-BRECY", - "center": "POINT (388228.6093665118096396 2478625.5405195956118405)", - "surface": 7300000, - "canton": null, - "numero_insee": "14577" - } - }, - { - "pk": 18287, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GATIEN-DES-BOIS", - "center": "POINT (443604.8238668513949960 2485786.3712977608665824)", - "surface": 49380000, - "canton": null, - "numero_insee": "14578" - } - }, - { - "pk": 4120, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GEORGES-D'AUNAY", - "center": "POINT (378642.4747340715257451 2451829.3744085985235870)", - "surface": 23850000, - "canton": null, - "numero_insee": "14579" - } - }, - { - "pk": 32643, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GEORGES-EN-AUGE", - "center": "POINT (434029.8126035006716847 2445681.2792807500809431)", - "surface": 5150000, - "canton": null, - "numero_insee": "14580" - } - }, - { - "pk": 35475, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-D'ECTOT", - "center": "POINT (377056.1036917523015290 2462223.1805659923702478)", - "surface": 4990000, - "canton": null, - "numero_insee": "14581" - } - }, - { - "pk": 15716, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-DE-LIVET", - "center": "POINT (443556.9515558267012239 2455266.2955262577161193)", - "surface": 16530000, - "canton": null, - "numero_insee": "14582" - } - }, - { - "pk": 14517, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-DE-TALLEVENDE-LA-LANDE-VAUMONT", - "center": "POINT (361638.2568591717863455 2426572.9128369283862412)", - "surface": 42420000, - "canton": null, - "numero_insee": "14584" - } - }, - { - "pk": 11715, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-DU-CRIOULT", - "center": "POINT (383708.2408533634152263 2432057.7490300075151026)", - "surface": 14640000, - "canton": null, - "numero_insee": "14585" - } - }, - { - "pk": 7755, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-DU-PERT", - "center": "POINT (354241.1263355432893150 2486651.8318868731148541)", - "surface": 6180000, - "canton": null, - "numero_insee": "14586" - } - }, - { - "pk": 6705, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-LA-BLANCHE-HERBE", - "center": "POINT (398807.0916710930760019 2469906.9090924435295165)", - "surface": 2600000, - "canton": null, - "numero_insee": "14587" - } - }, - { - "pk": 7974, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-LANGOT", - "center": "POINT (404663.3407306617591530 2439234.9024175959639251)", - "surface": 10560000, - "canton": null, - "numero_insee": "14588" - } - }, - { - "pk": 26727, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-GERMAIN-LE-VASSON", - "center": "POINT (406793.7732835410861298 2447858.1941443528048694)", - "surface": 9450000, - "canton": null, - "numero_insee": "14589" - } - }, - { - "pk": 10544, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-HONORINE-DE-DUCY", - "center": "POINT (372035.1011629503918812 2464383.3831525705754757)", - "surface": 5050000, - "canton": null, - "numero_insee": "14590" - } - }, - { - "pk": 7515, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-HONORINE-DES-PERTES", - "center": "POINT (371142.4904724855441600 2487791.0865144468843937)", - "surface": 5900000, - "canton": null, - "numero_insee": "14591" - } - }, - { - "pk": 13432, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-HONORINE-DU-FAY", - "center": "POINT (393216.5683338231756352 2456151.9669561730697751)", - "surface": 7600000, - "canton": null, - "numero_insee": "14592" - } - }, - { - "pk": 19585, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-HYMER", - "center": "POINT (441902.2263651643297635 2473864.7072920496575534)", - "surface": 12670000, - "canton": null, - "numero_insee": "14593" - } - }, - { - "pk": 37825, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-JEAN-DE-LIVET", - "center": "POINT (446944.8863019300624728 2456995.4271394270472229)", - "surface": 3520000, - "canton": null, - "numero_insee": "14595" - } - }, - { - "pk": 4948, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-JEAN-DES-ESSARTIERS", - "center": "POINT (369805.2121382075129077 2455659.3762328219600022)", - "surface": 8520000, - "canton": null, - "numero_insee": "14596" - } - }, - { - "pk": 21692, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-JEAN-LE-BLANC", - "center": "POINT (380524.1227937136427499 2442038.3128017121925950)", - "surface": 15490000, - "canton": null, - "numero_insee": "14597" - } - }, - { - "pk": 6570, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-JOUIN", - "center": "POINT (428714.4678562598419376 2471354.2224793387576938)", - "surface": 5140000, - "canton": null, - "numero_insee": "14598" - } - }, - { - "pk": 7837, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-JULIEN-DE-MAILLOC", - "center": "POINT (453661.2435314842732623 2455550.0074395984411240)", - "surface": 6190000, - "canton": null, - "numero_insee": "14599" - } - }, - { - "pk": 6489, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-JULIEN-LE-FAUCON", - "center": "POINT (435058.5554520162404515 2454395.5356374965049326)", - "surface": 3270000, - "canton": null, - "numero_insee": "14600" - } - }, - { - "pk": 13316, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-JULIEN-SUR-CALONNE", - "center": "POINT (446665.2646145765902475 2478707.1621083049103618)", - "surface": 8650000, - "canton": null, - "numero_insee": "14601" - } - }, - { - "pk": 25365, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LAMBERT", - "center": "POINT (389236.7639415672747418 2441209.3375497655943036)", - "surface": 7410000, - "canton": null, - "numero_insee": "14602" - } - }, - { - "pk": 24646, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LAURENT-DE-CONDEL", - "center": "POINT (400063.4161644539562985 2451004.8864549016579986)", - "surface": 12430000, - "canton": null, - "numero_insee": "14603" - } - }, - { - "pk": 5830, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LAURENT-DU-MONT", - "center": "POINT (431387.8501098477281630 2462670.6551283518783748)", - "surface": 3530000, - "canton": null, - "numero_insee": "14604" - } - }, - { - "pk": 33868, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LAURENT-SUR-MER", - "center": "POINT (366428.3389977669576183 2489153.2846378311514854)", - "surface": 3960000, - "canton": null, - "numero_insee": "14605" - } - }, - { - "pk": 25121, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LEGER-DUBOSQ", - "center": "POINT (428602.8461083658039570 2472754.2030070926994085)", - "surface": 4080000, - "canton": null, - "numero_insee": "14606" - } - }, - { - "pk": 10961, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LOUET-SUR-SEULLES", - "center": "POINT (379680.6458506335038692 2459442.9094267580658197)", - "surface": 4420000, - "canton": null, - "numero_insee": "14607" - } - }, - { - "pk": 25735, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LOUP-DE-FRIBOIS", - "center": "POINT (430015.1223438592860475 2459257.0993611919693649)", - "surface": 3540000, - "canton": null, - "numero_insee": "14608" - } - }, - { - "pk": 9241, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-LOUP-HORS", - "center": "POINT (376626.8994902488775551 2477929.8139309012331069)", - "surface": 5350000, - "canton": null, - "numero_insee": "14609" - } - }, - { - "pk": 25704, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MANVIEU-NORREY", - "center": "POINT (393010.3189310176530853 2469058.6893404275178909)", - "surface": 8360000, - "canton": null, - "numero_insee": "14610" - } - }, - { - "pk": 5625, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARCOUF", - "center": "POINT (356810.6192358352709562 2478367.5994671764783561)", - "surface": 5180000, - "canton": null, - "numero_insee": "14613" - } - }, - { - "pk": 17822, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-MARGUERITE-D'ELLE", - "center": "POINT (357748.8687722578179091 2473772.3342911158688366)", - "surface": 20910000, - "canton": null, - "numero_insee": "14614" - } - }, - { - "pk": 36384, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-MARGUERITE-DES-LOGES", - "center": "POINT (443512.3193228375166655 2448561.5030923229642212)", - "surface": 10990000, - "canton": null, - "numero_insee": "14615" - } - }, - { - "pk": 14958, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-MARGUERITE-DE-VIETTE", - "center": "POINT (435409.1560409792000428 2448294.4010409186594188)", - "surface": 7800000, - "canton": null, - "numero_insee": "14616" - } - }, - { - "pk": 17404, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-MARIE-LAUMONT", - "center": "POINT (362023.6504005344468169 2440585.5483809984289110)", - "surface": 15560000, - "canton": null, - "numero_insee": "14618" - } - }, - { - "pk": 25453, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINTE-MARIE-OUTRE-L'EAU", - "center": "POINT (353805.5759207886876538 2442119.2369332131929696)", - "surface": 5870000, - "canton": null, - "numero_insee": "14619" - } - }, - { - "pk": 35438, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-AUX-CHARTRAINS", - "center": "POINT (441141.4533845838159323 2481163.0885675828903913)", - "surface": 5100000, - "canton": null, - "numero_insee": "14620" - } - }, - { - "pk": 18179, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DE-BIENFAITE-LA-CRESSONNIERE", - "center": "POINT (454807.4401725120842457 2450055.8674569125287235)", - "surface": 11710000, - "canton": null, - "numero_insee": "14621" - } - }, - { - "pk": 33554, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DE-BLAGNY", - "center": "POINT (361022.0542617035098374 2477301.4238165393471718)", - "surface": 9080000, - "canton": null, - "numero_insee": "14622" - } - }, - { - "pk": 9217, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DE-FONTENAY", - "center": "POINT (403585.6209519758704118 2460740.2703267913311720)", - "surface": 10770000, - "canton": null, - "numero_insee": "14623" - } - }, - { - "pk": 8691, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DE-LA-LIEUE", - "center": "POINT (445627.5740032687317580 2458985.8437355346977711)", - "surface": 8350000, - "canton": null, - "numero_insee": "14625" - } - }, - { - "pk": 30123, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DE-MAILLOC", - "center": "POINT (450151.7331961143645458 2456421.5594412349164486)", - "surface": 7270000, - "canton": null, - "numero_insee": "14626" - } - }, - { - "pk": 6889, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DE-MIEUX", - "center": "POINT (410814.0272447987226769 2433581.7432255805470049)", - "surface": 10260000, - "canton": null, - "numero_insee": "14627" - } - }, - { - "pk": 23349, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DE-SALLEN", - "center": "POINT (390701.4523411191767082 2445624.3245126404799521)", - "surface": 18080000, - "canton": null, - "numero_insee": "14628" - } - }, - { - "pk": 9009, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DES-ENTREES", - "center": "POINT (381333.7040199689217843 2477468.1608647559769452)", - "surface": 6090000, - "canton": null, - "numero_insee": "14630" - } - }, - { - "pk": 24651, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DON", - "center": "POINT (359315.4555418239324354 2441363.8731005336157978)", - "surface": 7630000, - "canton": null, - "numero_insee": "14632" - } - }, - { - "pk": 13445, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MARTIN-DU-MESNIL-OURY", - "center": "POINT (438093.3986178174964152 2450417.9703561724163592)", - "surface": 4800000, - "canton": null, - "numero_insee": "14633" - } - }, - { - "pk": 37905, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-MICHEL-DE-LIVET", - "center": "POINT (438608.5790246723336168 2448621.0356459985487163)", - "surface": 4820000, - "canton": null, - "numero_insee": "14634" - } - }, - { - "pk": 25145, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-OMER", - "center": "POINT (396149.1531825455604121 2440265.5381477423943579)", - "surface": 8130000, - "canton": null, - "numero_insee": "14635" - } - }, - { - "pk": 11990, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-OUEN-DES-BESACES", - "center": "POINT (366735.4016229390981607 2451731.6053280667401850)", - "surface": 8500000, - "canton": null, - "numero_insee": "14636" - } - }, - { - "pk": 31478, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-OUEN-DU-MESNIL-OGER", - "center": "POINT (421062.8527983468957245 2464886.9339924342930317)", - "surface": 5940000, - "canton": null, - "numero_insee": "14637" - } - }, - { - "pk": 22472, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-OUEN-LE-HOUX", - "center": "POINT (442944.2247974465135485 2444654.2148281326517463)", - "surface": 5260000, - "canton": null, - "numero_insee": "14638" - } - }, - { - "pk": 30138, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-OUEN-LE-PIN", - "center": "POINT (436982.8502346512395889 2463717.5212123892270029)", - "surface": 5660000, - "canton": null, - "numero_insee": "14639" - } - }, - { - "pk": 35267, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PAIR", - "center": "POINT (415850.7503557578893378 2465944.6629416574724019)", - "surface": 3370000, - "canton": null, - "numero_insee": "14640" - } - }, - { - "pk": 12615, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PAUL-DU-VERNAY", - "center": "POINT (374383.0952082860749215 2470906.8814817508682609)", - "surface": 15570000, - "canton": null, - "numero_insee": "14643" - } - }, - { - "pk": 4804, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PHILBERT-DES-CHAMPS", - "center": "POINT (449638.0991562844719738 2470126.2287910706363618)", - "surface": 12100000, - "canton": null, - "numero_insee": "14644" - } - }, - { - "pk": 5746, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-AZIF", - "center": "POINT (432548.9586338858352974 2479591.1435612789355218)", - "surface": 6270000, - "canton": null, - "numero_insee": "14645" - } - }, - { - "pk": 24709, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-CANIVET", - "center": "POINT (411770.9216062732739374 2438893.1992496456950903)", - "surface": 7080000, - "canton": null, - "numero_insee": "14646" - } - }, - { - "pk": 11847, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-DE-MAILLOC", - "center": "POINT (451770.8881164976628497 2454233.5096138045191765)", - "surface": 4610000, - "canton": null, - "numero_insee": "14647" - } - }, - { - "pk": 11093, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-DES-IFS", - "center": "POINT (441119.9740617001079954 2459548.9698031377047300)", - "surface": 11300000, - "canton": null, - "numero_insee": "14648" - } - }, - { - "pk": 7140, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-DU-BU", - "center": "POINT (413424.6807646376546472 2432502.5196500965394080)", - "surface": 7450000, - "canton": null, - "numero_insee": "14649" - } - }, - { - "pk": 5770, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-DU-FRESNE", - "center": "POINT (373030.1092746144859120 2452884.0046287523582578)", - "surface": 3490000, - "canton": null, - "numero_insee": "14650" - } - }, - { - "pk": 26237, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-DU-JONQUET", - "center": "POINT (419253.5522103809053078 2465872.6594660147093236)", - "surface": 8300000, - "canton": null, - "numero_insee": "14651" - } - }, - { - "pk": 36654, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-DU-MONT", - "center": "POINT (359299.7185753012308851 2492096.7098809606395662)", - "surface": 5180000, - "canton": null, - "numero_insee": "14652" - } - }, - { - "pk": 7058, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-LA-VIEILLE", - "center": "POINT (386047.1771952577400953 2439682.1026504216715693)", - "surface": 12500000, - "canton": null, - "numero_insee": "14653" - } - }, - { - "pk": 9159, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-SUR-DIVES", - "center": "POINT (425996.9548849883140065 2449017.2094707959331572)", - "surface": 9680000, - "canton": null, - "numero_insee": "14654" - } - }, - { - "pk": 17775, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-PIERRE-TARENTAINE", - "center": "POINT (371194.6998210825258866 2444863.6210946766659617)", - "surface": 12330000, - "canton": null, - "numero_insee": "14655" - } - }, - { - "pk": 36692, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-REMY", - "center": "POINT (392835.6386178104439750 2441639.2098647495731711)", - "surface": 7600000, - "canton": null, - "numero_insee": "14656" - } - }, - { - "pk": 33560, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-SAMSON", - "center": "POINT (418429.9813988429377787 2468667.6823317706584930)", - "surface": 3640000, - "canton": null, - "numero_insee": "14657" - } - }, - { - "pk": 19927, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-SEVER-CALVADOS", - "center": "POINT (351502.5233840890577994 2430092.2625493803061545)", - "surface": 28410000, - "canton": null, - "numero_insee": "14658" - } - }, - { - "pk": 30636, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-SYLVAIN", - "center": "POINT (413351.5157915351446718 2453515.9427571129053831)", - "surface": 13850000, - "canton": null, - "numero_insee": "14659" - } - }, - { - "pk": 22963, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-VAAST-EN-AUGE", - "center": "POINT (430048.3599010763573460 2479470.4315941873937845)", - "surface": 3000000, - "canton": null, - "numero_insee": "14660" - } - }, - { - "pk": 26962, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-VAAST-SUR-SEULLES", - "center": "POINT (383346.6351142034400254 2463875.9119325280189514)", - "surface": 4280000, - "canton": null, - "numero_insee": "14661" - } - }, - { - "pk": 29341, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-VIGOR-DES-MEZERETS", - "center": "POINT (382158.8037833754788153 2437948.9957150574773550)", - "surface": 9420000, - "canton": null, - "numero_insee": "14662" - } - }, - { - "pk": 30956, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAINT-VIGOR-LE-GRAND", - "center": "POINT (380605.3506273409584537 2480864.3508969023823738)", - "surface": 9690000, - "canton": null, - "numero_insee": "14663" - } - }, - { - "pk": 14840, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SALLEN", - "center": "POINT (367949.1283847362501547 2462348.5383525034412742)", - "surface": 11460000, - "canton": null, - "numero_insee": "14664" - } - }, - { - "pk": 11978, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SANNERVILLE", - "center": "POINT (413231.0932293805526569 2468124.4930988722480834)", - "surface": 5170000, - "canton": null, - "numero_insee": "14666" - } - }, - { - "pk": 8241, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAON", - "center": "POINT (367007.4370108543662354 2479551.9322304609231651)", - "surface": 5250000, - "canton": null, - "numero_insee": "14667" - } - }, - { - "pk": 8772, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SAONNET", - "center": "POINT (365705.0511473203077912 2479741.3741090428084135)", - "surface": 5300000, - "canton": null, - "numero_insee": "14668" - } - }, - { - "pk": 30119, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SASSY", - "center": "POINT (418618.1370787945925258 2445854.2686862945556641)", - "surface": 9560000, - "canton": null, - "numero_insee": "14669" - } - }, - { - "pk": 11181, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SECQUEVILLE-EN-BESSIN", - "center": "POINT (392465.5816083950921893 2474457.6927023772150278)", - "surface": 7190000, - "canton": null, - "numero_insee": "14670" - } - }, - { - "pk": 3552, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SEPT-FRERES", - "center": "POINT (352164.4108564034104347 2434800.8729465059004724)", - "surface": 9860000, - "canton": null, - "numero_insee": "14671" - } - }, - { - "pk": 5420, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SEPT-VENTS", - "center": "POINT (367895.8765490172663704 2456644.3632725225761533)", - "surface": 12750000, - "canton": null, - "numero_insee": "14672" - } - }, - { - "pk": 10322, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SOIGNOLLES", - "center": "POINT (413172.8431065395125188 2450912.7524547893553972)", - "surface": 5870000, - "canton": null, - "numero_insee": "14674" - } - }, - { - "pk": 27725, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SOLIERS", - "center": "POINT (408374.4183292164234444 2462480.8279452612623572)", - "surface": 5110000, - "canton": null, - "numero_insee": "14675" - } - }, - { - "pk": 8494, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SOMMERVIEU", - "center": "POINT (382903.3739416576572694 2481283.4897383954375982)", - "surface": 4220000, - "canton": null, - "numero_insee": "14676" - } - }, - { - "pk": 36124, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SOULANGY", - "center": "POINT (413054.3836227952269837 2441005.1868639499880373)", - "surface": 7130000, - "canton": null, - "numero_insee": "14677" - } - }, - { - "pk": 11031, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SOUMONT-SAINT-QUENTIN", - "center": "POINT (411617.2529115219949745 2445396.2788423718884587)", - "surface": 6950000, - "canton": null, - "numero_insee": "14678" - } - }, - { - "pk": 6120, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SUBLES", - "center": "POINT (375044.8808609547559172 2475615.3453885624185205)", - "surface": 2430000, - "canton": null, - "numero_insee": "14679" - } - }, - { - "pk": 24978, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SULLY", - "center": "POINT (375889.5201867287978530 2482426.6330967932008207)", - "surface": 4070000, - "canton": null, - "numero_insee": "14680" - } - }, - { - "pk": 33135, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SURRAIN", - "center": "POINT (367856.2241805951925926 2485862.9111196477897465)", - "surface": 7180000, - "canton": null, - "numero_insee": "14681" - } - }, - { - "pk": 4016, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "SURVILLE", - "center": "POINT (446150.9137972602038644 2480403.9931866605766118)", - "surface": 4910000, - "canton": null, - "numero_insee": "14682" - } - }, - { - "pk": 12531, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TESSEL", - "center": "POINT (387937.8035465783905238 2465314.5675788433291018)", - "surface": 5570000, - "canton": null, - "numero_insee": "14684" - } - }, - { - "pk": 29948, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "THAON", - "center": "POINT (397050.9354557604528964 2476596.7695201598107815)", - "surface": 8510000, - "canton": null, - "numero_insee": "14685" - } - }, - { - "pk": 13125, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE THEIL-BOCAGE", - "center": "POINT (376472.6150506198173389 2435800.8588348873890936)", - "surface": 8970000, - "canton": null, - "numero_insee": "14686" - } - }, - { - "pk": 7879, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE THEIL-EN-AUGE", - "center": "POINT (448312.4421341385459527 2485224.9184900890104473)", - "surface": 2820000, - "canton": null, - "numero_insee": "14687" - } - }, - { - "pk": 13210, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "THIEVILLE", - "center": "POINT (425777.8413954154821113 2451316.9234201624058187)", - "surface": 4000000, - "canton": null, - "numero_insee": "14688" - } - }, - { - "pk": 13656, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "THURY-HARCOURT", - "center": "POINT (393393.1892132813227363 2446847.2675700611434877)", - "surface": 4860000, - "canton": null, - "numero_insee": "14689" - } - }, - { - "pk": 37129, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TIERCEVILLE", - "center": "POINT (391505.8076713420450687 2481654.4077026853337884)", - "surface": 2680000, - "canton": null, - "numero_insee": "14690" - } - }, - { - "pk": 22702, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TILLY-LA-CAMPAGNE", - "center": "POINT (406592.3244866667082533 2460164.6432409072294831)", - "surface": 3490000, - "canton": null, - "numero_insee": "14691" - } - }, - { - "pk": 28863, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TILLY-SUR-SEULLES", - "center": "POINT (384014.9687805835856125 2467783.9413558971136808)", - "surface": 9040000, - "canton": null, - "numero_insee": "14692" - } - }, - { - "pk": 12221, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TORDOUET", - "center": "POINT (452596.1995983602246270 2451238.3605816191993654)", - "surface": 6900000, - "canton": null, - "numero_insee": "14693" - } - }, - { - "pk": 24731, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE TORQUESNE", - "center": "POINT (441925.3844802335370332 2471063.0963032348081470)", - "surface": 5310000, - "canton": null, - "numero_insee": "14694" - } - }, - { - "pk": 17821, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TORTEVAL-QUESNAY", - "center": "POINT (376127.6346324667101726 2465617.7712023118510842)", - "surface": 17120000, - "canton": null, - "numero_insee": "14695" - } - }, - { - "pk": 14234, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TORTISAMBERT", - "center": "POINT (437154.8131828021141700 2442905.2307096612639725)", - "surface": 6110000, - "canton": null, - "numero_insee": "14696" - } - }, - { - "pk": 18854, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "L'OUDON", - "center": "POINT (431150.3909461558214389 2442955.6980215962976217)", - "surface": 55550000, - "canton": null, - "numero_insee": "14697" - } - }, - { - "pk": 5106, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOUFFREVILLE", - "center": "POINT (413117.0141535090515390 2469824.6527811759151518)", - "surface": 5810000, - "canton": null, - "numero_insee": "14698" - } - }, - { - "pk": 7390, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOUQUES", - "center": "POINT (438297.6975401950185187 2486242.8248241576366127)", - "surface": 8150000, - "canton": null, - "numero_insee": "14699" - } - }, - { - "pk": 20416, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOUR-EN-BESSIN", - "center": "POINT (372892.7399921675678343 2481801.6429869881831110)", - "surface": 10380000, - "canton": null, - "numero_insee": "14700" - } - }, - { - "pk": 4442, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOURGEVILLE", - "center": "POINT (435728.4651641630334780 2482319.1247374839149415)", - "surface": 12180000, - "canton": null, - "numero_insee": "14701" - } - }, - { - "pk": 3876, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOURNAY-SUR-ODON", - "center": "POINT (386686.4058120214613155 2459300.3598931506276131)", - "surface": 7100000, - "canton": null, - "numero_insee": "14702" - } - }, - { - "pk": 34714, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOURNEBU", - "center": "POINT (404925.6080303869675845 2443840.1414257511496544)", - "surface": 11350000, - "canton": null, - "numero_insee": "14703" - } - }, - { - "pk": 21742, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE TOURNEUR", - "center": "POINT (367882.8648860108223744 2446037.2356623848900199)", - "surface": 23470000, - "canton": null, - "numero_insee": "14704" - } - }, - { - "pk": 24584, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOURNIERES", - "center": "POINT (361339.4586815173970535 2475202.6775483568198979)", - "surface": 3530000, - "canton": null, - "numero_insee": "14705" - } - }, - { - "pk": 14339, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOURVILLE-EN-AUGE", - "center": "POINT (444134.0587708610109985 2482288.5263991695828736)", - "surface": 3130000, - "canton": null, - "numero_insee": "14706" - } - }, - { - "pk": 31567, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TOURVILLE-SUR-ODON", - "center": "POINT (392855.4761834212113172 2463553.8422324238345027)", - "surface": 1780000, - "canton": null, - "numero_insee": "14707" - } - }, - { - "pk": 24737, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TRACY-BOCAGE", - "center": "POINT (378800.6679849628126249 2456934.0381198427639902)", - "surface": 5360000, - "canton": null, - "numero_insee": "14708" - } - }, - { - "pk": 36201, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TRACY-SUR-MER", - "center": "POINT (383168.1857933809515089 2485588.4014105540700257)", - "surface": 3750000, - "canton": null, - "numero_insee": "14709" - } - }, - { - "pk": 8208, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TREPREL", - "center": "POINT (403183.0378773019765504 2436721.0296188555657864)", - "surface": 5500000, - "canton": null, - "numero_insee": "14710" - } - }, - { - "pk": 18954, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TREVIERES", - "center": "POINT (363278.2355963524896652 2482823.4448611913248897)", - "surface": 11790000, - "canton": null, - "numero_insee": "14711" - } - }, - { - "pk": 37917, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TROARN", - "center": "POINT (416126.9992447157274000 2468848.8207288384437561)", - "surface": 11440000, - "canton": null, - "numero_insee": "14712" - } - }, - { - "pk": 30919, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TROIS-MONTS", - "center": "POINT (394036.7992753856815398 2453757.1344778910279274)", - "surface": 7130000, - "canton": null, - "numero_insee": "14713" - } - }, - { - "pk": 16399, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE TRONQUAY", - "center": "POINT (369950.9810340096009895 2474472.8165864390321076)", - "surface": 13380000, - "canton": null, - "numero_insee": "14714" - } - }, - { - "pk": 29893, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TROUVILLE-SUR-MER", - "center": "POINT (437579.9421857467386872 2488338.2212607129476964)", - "surface": 6900000, - "canton": null, - "numero_insee": "14715" - } - }, - { - "pk": 32137, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TRUNGY", - "center": "POINT (376887.8298633312806487 2470527.1935991435311735)", - "surface": 7190000, - "canton": null, - "numero_insee": "14716" - } - }, - { - "pk": 34049, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "TRUTTEMER-LE-PETIT", - "center": "POINT (368668.0231111112516373 2423528.4796049478463829)", - "surface": 5490000, - "canton": null, - "numero_insee": "14718" - } - }, - { - "pk": 32213, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "URVILLE", - "center": "POINT (407471.1078296968480572 2450665.6310065584257245)", - "surface": 6130000, - "canton": null, - "numero_insee": "14719" - } - }, - { - "pk": 13514, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "USSY", - "center": "POINT (407443.5948106676805764 2441859.5484574497677386)", - "surface": 8690000, - "canton": null, - "numero_insee": "14720" - } - }, - { - "pk": 11339, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VACOGNES-NEUILLY", - "center": "POINT (390199.9843722310033627 2457928.3351585050113499)", - "surface": 7900000, - "canton": null, - "numero_insee": "14721" - } - }, - { - "pk": 16126, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA VACQUERIE", - "center": "POINT (366670.5352605668012984 2459636.2782686748541892)", - "surface": 10170000, - "canton": null, - "numero_insee": "14722" - } - }, - { - "pk": 7605, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VALSEME", - "center": "POINT (436902.6615448008524254 2473423.1340050585567951)", - "surface": 5750000, - "canton": null, - "numero_insee": "14723" - } - }, - { - "pk": 28086, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VARAVILLE", - "center": "POINT (419163.5997414750745520 2476778.9487140732817352)", - "surface": 16670000, - "canton": null, - "numero_insee": "14724" - } - }, - { - "pk": 21537, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VASSY", - "center": "POINT (380192.9503136590356007 2433629.9395907814614475)", - "surface": 30960000, - "canton": null, - "numero_insee": "14726" - } - }, - { - "pk": 34326, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VAUCELLES", - "center": "POINT (376305.3614812896121293 2480528.8363047605380416)", - "surface": 3600000, - "canton": null, - "numero_insee": "14728" - } - }, - { - "pk": 9934, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VAUDELOGES", - "center": "POINT (428763.8224381253821775 2441134.7887103226967156)", - "surface": 12470000, - "canton": null, - "numero_insee": "14729" - } - }, - { - "pk": 20019, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VAUDRY", - "center": "POINT (366487.8927868887549266 2433117.1211096919141710)", - "surface": 12070000, - "canton": null, - "numero_insee": "14730" - } - }, - { - "pk": 11711, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VAUVILLE", - "center": "POINT (434134.9947552813682705 2481405.3897927408106625)", - "surface": 5170000, - "canton": null, - "numero_insee": "14731" - } - }, - { - "pk": 28199, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VAUX-SUR-AURE", - "center": "POINT (378285.9556671853642911 2483046.6983686950989068)", - "surface": 7500000, - "canton": null, - "numero_insee": "14732" - } - }, - { - "pk": 31568, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VAUX-SUR-SEULLES", - "center": "POINT (384032.7848576564574614 2477790.5346647407859564)", - "surface": 6550000, - "canton": null, - "numero_insee": "14733" - } - }, - { - "pk": 10278, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VENDES", - "center": "POINT (385543.8075126105104573 2464394.2985864039510489)", - "surface": 3460000, - "canton": null, - "numero_insee": "14734" - } - }, - { - "pk": 21435, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VENDEUVRE", - "center": "POINT (422902.5418501012027264 2448091.0756726213730872)", - "surface": 26510000, - "canton": null, - "numero_insee": "14735" - } - }, - { - "pk": 37219, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VERSAINVILLE", - "center": "POINT (416075.9905199470231310 2438628.4906047927215695)", - "surface": 7800000, - "canton": null, - "numero_insee": "14737" - } - }, - { - "pk": 14052, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VERSON", - "center": "POINT (395633.2336358001921326 2466478.5842770230956376)", - "surface": 10390000, - "canton": null, - "numero_insee": "14738" - } - }, - { - "pk": 13369, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VER-SUR-MER", - "center": "POINT (391573.7682493914617226 2485557.4462440763600171)", - "surface": 9030000, - "canton": null, - "numero_insee": "14739" - } - }, - { - "pk": 24330, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA VESPIERE", - "center": "POINT (460031.2380437668180093 2447597.4590324163436890)", - "surface": 8710000, - "canton": null, - "numero_insee": "14740" - } - }, - { - "pk": 8391, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LE VEY", - "center": "POINT (394759.0135808738996275 2438953.2254824256524444)", - "surface": 3570000, - "canton": null, - "numero_insee": "14741" - } - }, - { - "pk": 25858, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VICQUES", - "center": "POINT (423352.3202321580611169 2442090.7907366952858865)", - "surface": 2670000, - "canton": null, - "numero_insee": "14742" - } - }, - { - "pk": 33070, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VICTOT-PONTFOL", - "center": "POINT (428759.8993664071895182 2465851.0386799732223153)", - "surface": 10950000, - "canton": null, - "numero_insee": "14743" - } - }, - { - "pk": 25512, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIENNE-EN-BESSIN", - "center": "POINT (384114.7493444319115952 2479992.6158470432274044)", - "surface": 4120000, - "canton": null, - "numero_insee": "14744" - } - }, - { - "pk": 7754, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIERVILLE-SUR-MER", - "center": "POINT (364617.4732282749610022 2490339.1861872025765479)", - "surface": 6460000, - "canton": null, - "numero_insee": "14745" - } - }, - { - "pk": 19667, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIESSOIX", - "center": "POINT (370311.5671748886816204 2430546.7441167794167995)", - "surface": 12850000, - "canton": null, - "numero_insee": "14746" - } - }, - { - "pk": 8450, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIEUX", - "center": "POINT (396980.9287600393872708 2460785.9602541578933597)", - "surface": 5560000, - "canton": null, - "numero_insee": "14747" - } - }, - { - "pk": 9387, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIEUX-BOURG", - "center": "POINT (447743.5486445575952530 2481417.8008750113658607)", - "surface": 1250000, - "canton": null, - "numero_insee": "14748" - } - }, - { - "pk": 33240, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIEUX-FUME", - "center": "POINT (419649.4638891341164708 2454268.3374047917313874)", - "surface": 6800000, - "canton": null, - "numero_insee": "14749" - } - }, - { - "pk": 38014, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIEUX-PONT-EN-AUGE", - "center": "POINT (432878.7438457387615927 2451775.8156596515327692)", - "surface": 12680000, - "canton": null, - "numero_insee": "14750" - } - }, - { - "pk": 30559, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIGNATS", - "center": "POINT (420940.7991815233253874 2431163.5590944951400161)", - "surface": 8880000, - "canton": null, - "numero_insee": "14751" - } - }, - { - "pk": 12429, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLERS-BOCAGE", - "center": "POINT (381498.1494644958293065 2457456.5314749614335597)", - "surface": 5870000, - "canton": null, - "numero_insee": "14752" - } - }, - { - "pk": 4798, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLERS-CANIVET", - "center": "POINT (409557.2255696023348719 2440375.9604785046540201)", - "surface": 12270000, - "canton": null, - "numero_insee": "14753" - } - }, - { - "pk": 29894, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLERS-SUR-MER", - "center": "POINT (430329.5302097619278356 2481774.2189537384547293)", - "surface": 8960000, - "canton": null, - "numero_insee": "14754" - } - }, - { - "pk": 5083, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLERVILLE", - "center": "POINT (439164.3063567072385922 2490352.5727806906215847)", - "surface": 3420000, - "canton": null, - "numero_insee": "14755" - } - }, - { - "pk": 10367, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "LA VILLETTE", - "center": "POINT (388760.3275405105669051 2438303.4730018493719399)", - "surface": 9800000, - "canton": null, - "numero_insee": "14756" - } - }, - { - "pk": 6244, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLIERS-LE-SEC", - "center": "POINT (388708.3262901384150609 2481131.0822851173579693)", - "surface": 2740000, - "canton": null, - "numero_insee": "14757" - } - }, - { - "pk": 22878, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLONS-LES-BUISSONS", - "center": "POINT (399770.6045754315564409 2474417.7421504086814821)", - "surface": 3800000, - "canton": null, - "numero_insee": "14758" - } - }, - { - "pk": 27603, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLY-LEZ-FALAISE", - "center": "POINT (418596.4809276457526721 2436347.7313272901810706)", - "surface": 5090000, - "canton": null, - "numero_insee": "14759" - } - }, - { - "pk": 7059, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VILLY-BOCAGE", - "center": "POINT (382375.6545001558260992 2460265.5796016305685043)", - "surface": 11550000, - "canton": null, - "numero_insee": "14760" - } - }, - { - "pk": 24796, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIMONT", - "center": "POINT (415171.7920340147684328 2463337.3736097384244204)", - "surface": 8900000, - "canton": null, - "numero_insee": "14761" - } - }, - { - "pk": 23558, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VIRE", - "center": "POINT (363087.4618128940928727 2432889.0840542162768543)", - "surface": 22720000, - "canton": null, - "numero_insee": "14762" - } - }, - { - "pk": 29509, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "VOUILLY", - "center": "POINT (354773.3903508534422144 2482753.7139193224720657)", - "surface": 6500000, - "canton": null, - "numero_insee": "14763" - } - }, - { - "pk": 15107, - "model": "ishtar_common.town", - "fields": { - "departement": 14, - "name": "PONT-D'OUILLY", - "center": "POINT (398499.1380309570813552 2434380.9116182159632444)", - "surface": 19500000, - "canton": null, - "numero_insee": "14764" - } - }, - { - "pk": 21076, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ALLEUZE", - "center": "POINT (660073.8044547631870955 1995789.7650660225190222)", - "surface": 25590000, - "canton": null, - "numero_insee": "15002" - } - }, - { - "pk": 22150, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ALLY", - "center": "POINT (599433.8047605841420591 2017101.3044331325218081)", - "surface": 23380000, - "canton": null, - "numero_insee": "15003" - } - }, - { - "pk": 23113, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ANDELAT", - "center": "POINT (656868.7134027814026922 2007874.9159979261457920)", - "surface": 21070000, - "canton": null, - "numero_insee": "15004" - } - }, - { - "pk": 20218, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ANGLARDS-DE-SAINT-FLOUR", - "center": "POINT (664752.0319052055710927 1998932.3851231944281608)", - "surface": 12170000, - "canton": null, - "numero_insee": "15005" - } - }, - { - "pk": 22707, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ANGLARDS-DE-SALERS", - "center": "POINT (610105.0225187829928473 2021795.4883160074241459)", - "surface": 48090000, - "canton": null, - "numero_insee": "15006" - } - }, - { - "pk": 23968, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ANTERRIEUX", - "center": "POINT (656992.3892458828631788 1981349.1127071767114103)", - "surface": 16430000, - "canton": null, - "numero_insee": "15007" - } - }, - { - "pk": 22684, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ANTIGNAC", - "center": "POINT (617568.1351999718463048 2038975.0705670905299485)", - "surface": 16010000, - "canton": null, - "numero_insee": "15008" - } - }, - { - "pk": 21837, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "APCHON", - "center": "POINT (628277.9978033126099035 2027153.4408025862649083)", - "surface": 12530000, - "canton": null, - "numero_insee": "15009" - } - }, - { - "pk": 21025, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ARCHES", - "center": "POINT (598499.4962365782121196 2033009.2021651836112142)", - "surface": 17680000, - "canton": null, - "numero_insee": "15010" - } - }, - { - "pk": 16481, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ARNAC", - "center": "POINT (591311.0080614041071385 2006923.0543385627679527)", - "surface": 22010000, - "canton": null, - "numero_insee": "15011" - } - }, - { - "pk": 34652, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ARPAJON-SUR-CERE", - "center": "POINT (610004.0173781061312184 1986158.8373354559298605)", - "surface": 47680000, - "canton": null, - "numero_insee": "15012" - } - }, - { - "pk": 5023, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "AURIAC-L'EGLISE", - "center": "POINT (661891.0846750875934958 2029538.7911190898157656)", - "surface": 20050000, - "canton": null, - "numero_insee": "15013" - } - }, - { - "pk": 17477, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "AURILLAC", - "center": "POINT (608257.8428205226082355 1991449.5582027870696038)", - "surface": 29160000, - "canton": null, - "numero_insee": "15014" - } - }, - { - "pk": 20038, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "AUZERS", - "center": "POINT (610031.0223736987682059 2030603.5707947562914342)", - "surface": 19730000, - "canton": null, - "numero_insee": "15015" - } - }, - { - "pk": 16872, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "AYRENS", - "center": "POINT (598986.1460933320922777 1998879.2990439562126994)", - "surface": 25750000, - "canton": null, - "numero_insee": "15016" - } - }, - { - "pk": 21590, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BADAILHAC", - "center": "POINT (622981.8261610076297075 1990372.1023255395703018)", - "surface": 12390000, - "canton": null, - "numero_insee": "15017" - } - }, - { - "pk": 18010, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BARRIAC-LES-BOSQUETS", - "center": "POINT (594335.8034400086617097 2016257.7273139599710703)", - "surface": 12950000, - "canton": null, - "numero_insee": "15018" - } - }, - { - "pk": 6041, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BASSIGNAC", - "center": "POINT (604890.2125651985406876 2034864.6229635940399021)", - "surface": 11990000, - "canton": null, - "numero_insee": "15019" - } - }, - { - "pk": 12773, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BEAULIEU", - "center": "POINT (614359.3234745704103261 2051560.3813559468835592)", - "surface": 8740000, - "canton": null, - "numero_insee": "15020" - } - }, - { - "pk": 18514, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BOISSET", - "center": "POINT (593471.4050615680171177 1976109.9184138029813766)", - "surface": 37630000, - "canton": null, - "numero_insee": "15021" - } - }, - { - "pk": 14473, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BONNAC", - "center": "POINT (663643.3362668267218396 2023547.6453052673023194)", - "surface": 22680000, - "canton": null, - "numero_insee": "15022" - } - }, - { - "pk": 22816, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BRAGEAC", - "center": "POINT (594382.9920359811512753 2022564.3860431215725839)", - "surface": 12220000, - "canton": null, - "numero_insee": "15024" - } - }, - { - "pk": 18630, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ALBEPIERRE-BREDONS", - "center": "POINT (638043.6042689532041550 2008617.1373925567604601)", - "surface": 34430000, - "canton": null, - "numero_insee": "15025" - } - }, - { - "pk": 20972, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BREZONS", - "center": "POINT (635904.7685567388543859 2001091.5860016981605440)", - "surface": 43390000, - "canton": null, - "numero_insee": "15026" - } - }, - { - "pk": 21693, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CALVINET", - "center": "POINT (601940.7784946560859680 1968873.4836508959997445)", - "surface": 13990000, - "canton": null, - "numero_insee": "15027" - } - }, - { - "pk": 20853, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CARLAT", - "center": "POINT (618506.1862885116133839 1986931.0068925723899156)", - "surface": 20910000, - "canton": null, - "numero_insee": "15028" - } - }, - { - "pk": 15336, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CASSANIOUZE", - "center": "POINT (603486.7645593542838469 1963580.9851882942020893)", - "surface": 36260000, - "canton": null, - "numero_insee": "15029" - } - }, - { - "pk": 21736, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CAYROLS", - "center": "POINT (591229.8435383003670722 1980795.9310838237870485)", - "surface": 9370000, - "canton": null, - "numero_insee": "15030" - } - }, - { - "pk": 21662, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CELLES", - "center": "POINT (648526.3825955312931910 2011908.6707683927379549)", - "surface": 18240000, - "canton": null, - "numero_insee": "15031" - } - }, - { - "pk": 20288, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CELOUX", - "center": "POINT (672619.1729121473617852 2015615.4865665952675045)", - "surface": 9740000, - "canton": null, - "numero_insee": "15032" - } - }, - { - "pk": 19903, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CEZENS", - "center": "POINT (641133.2517389871645719 1998332.7976826883386821)", - "surface": 32030000, - "canton": null, - "numero_insee": "15033" - } - }, - { - "pk": 15476, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHALIERS", - "center": "POINT (671074.8543637765105814 1996983.7560197070706636)", - "surface": 18580000, - "canton": null, - "numero_insee": "15034" - } - }, - { - "pk": 4063, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHALINARGUES", - "center": "POINT (646772.4965640368172899 2018100.0728646493516862)", - "surface": 27420000, - "canton": null, - "numero_insee": "15035" - } - }, - { - "pk": 35323, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHALVIGNAC", - "center": "POINT (594342.6846114412182942 2027368.7996406315360218)", - "surface": 36270000, - "canton": null, - "numero_insee": "15036" - } - }, - { - "pk": 5595, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHAMPAGNAC", - "center": "POINT (605145.0971846567699686 2040272.0585001998115331)", - "surface": 27510000, - "canton": null, - "numero_insee": "15037" - } - }, - { - "pk": 17802, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHAMPS-SUR-TARENTAINE-MARCHAL", - "center": "POINT (620922.4056609366089106 2044808.9432465541176498)", - "surface": 61100000, - "canton": null, - "numero_insee": "15038" - } - }, - { - "pk": 3135, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LA CHAPELLE-D'ALAGNON", - "center": "POINT (645024.8182542610447854 2011678.9569647854659706)", - "surface": 9150000, - "canton": null, - "numero_insee": "15041" - } - }, - { - "pk": 21707, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LA CHAPELLE-LAURENT", - "center": "POINT (671174.7568482325877994 2020708.3631060651969165)", - "surface": 26470000, - "canton": null, - "numero_insee": "15042" - } - }, - { - "pk": 31665, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHASTEL-SUR-MURAT", - "center": "POINT (639890.5695164519129321 2015139.1944576785899699)", - "surface": 13550000, - "canton": null, - "numero_insee": "15044" - } - }, - { - "pk": 28436, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHAUDES-AIGUES", - "center": "POINT (652271.0348738360917196 1983311.3351195424329489)", - "surface": 54400000, - "canton": null, - "numero_insee": "15045" - } - }, - { - "pk": 22082, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHAUSSENAC", - "center": "POINT (594909.4858839316293597 2019465.7252637608908117)", - "surface": 16260000, - "canton": null, - "numero_insee": "15046" - } - }, - { - "pk": 29392, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHAVAGNAC", - "center": "POINT (642867.2048477903008461 2018267.3608478810638189)", - "surface": 16570000, - "canton": null, - "numero_insee": "15047" - } - }, - { - "pk": 23633, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CHEYLADE", - "center": "POINT (630122.6123630115762353 2022063.9132211648393422)", - "surface": 32700000, - "canton": null, - "numero_insee": "15049" - } - }, - { - "pk": 7945, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LE CLAUX", - "center": "POINT (628466.5294132453855127 2016644.6064841623883694)", - "surface": 28070000, - "canton": null, - "numero_insee": "15050" - } - }, - { - "pk": 18076, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CLAVIERES", - "center": "POINT (676758.2194805326871574 1999634.4013738925568759)", - "surface": 44670000, - "canton": null, - "numero_insee": "15051" - } - }, - { - "pk": 23937, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "COLLANDRES", - "center": "POINT (623900.9023212783504277 2023913.4476279809605330)", - "surface": 43330000, - "canton": null, - "numero_insee": "15052" - } - }, - { - "pk": 4920, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "COLTINES", - "center": "POINT (651942.2016247201245278 2010435.9695851500146091)", - "surface": 19150000, - "canton": null, - "numero_insee": "15053" - } - }, - { - "pk": 21395, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CONDAT", - "center": "POINT (635687.9546640826156363 2038727.1348716244101524)", - "surface": 40450000, - "canton": null, - "numero_insee": "15054" - } - }, - { - "pk": 5935, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "COREN", - "center": "POINT (660755.4539673849940300 2009909.7160544460639358)", - "surface": 16820000, - "canton": null, - "numero_insee": "15055" - } - }, - { - "pk": 14464, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CRANDELLES", - "center": "POINT (601820.7068862963933498 1995099.2517553421203047)", - "surface": 12480000, - "canton": null, - "numero_insee": "15056" - } - }, - { - "pk": 20713, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CROS-DE-MONTVERT", - "center": "POINT (585909.3263270014431328 2006477.3575450601056218)", - "surface": 29380000, - "canton": null, - "numero_insee": "15057" - } - }, - { - "pk": 36741, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CROS-DE-RONESQUE", - "center": "POINT (621329.0421739924931899 1984552.2970748045481741)", - "surface": 16130000, - "canton": null, - "numero_insee": "15058" - } - }, - { - "pk": 23843, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "CUSSAC", - "center": "POINT (647242.3547599915182218 1997983.8734721599612385)", - "surface": 13880000, - "canton": null, - "numero_insee": "15059" - } - }, - { - "pk": 37745, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "DEUX-VERGES", - "center": "POINT (653918.9857278835261241 1977819.6036634752526879)", - "surface": 11300000, - "canton": null, - "numero_insee": "15060" - } - }, - { - "pk": 15693, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "DIENNE", - "center": "POINT (636960.9088539453223348 2018317.7078056107275188)", - "surface": 46330000, - "canton": null, - "numero_insee": "15061" - } - }, - { - "pk": 5657, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "DRUGEAC", - "center": "POINT (604031.3373114936985075 2017940.6979667067062110)", - "surface": 18270000, - "canton": null, - "numero_insee": "15063" - } - }, - { - "pk": 30628, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ESCORAILLES", - "center": "POINT (599620.5476344608468935 2018704.4642657444346696)", - "surface": 2760000, - "canton": null, - "numero_insee": "15064" - } - }, - { - "pk": 21529, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ESPINASSE", - "center": "POINT (646846.4991866048658267 1985567.9498660885728896)", - "surface": 17070000, - "canton": null, - "numero_insee": "15065" - } - }, - { - "pk": 23448, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LE FALGOUX", - "center": "POINT (623767.2311722438316792 2016004.4716503333766013)", - "surface": 30600000, - "canton": null, - "numero_insee": "15066" - } - }, - { - "pk": 4883, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LE FAU", - "center": "POINT (620698.0289889323757961 2011974.6650003353133798)", - "surface": 19450000, - "canton": null, - "numero_insee": "15067" - } - }, - { - "pk": 20275, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "FAVEROLLES", - "center": "POINT (663700.0046010782243684 1993117.6339762725401670)", - "surface": 34510000, - "canton": null, - "numero_insee": "15068" - } - }, - { - "pk": 13371, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "FERRIERES-SAINT-MARY", - "center": "POINT (658574.1133338834624738 2019300.6924676802009344)", - "surface": 19220000, - "canton": null, - "numero_insee": "15069" - } - }, - { - "pk": 5450, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "FONTANGES", - "center": "POINT (614191.1490213219076395 2012020.0623682395089418)", - "surface": 17820000, - "canton": null, - "numero_insee": "15070" - } - }, - { - "pk": 9195, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "FOURNOULES", - "center": "POINT (596480.0088962839217857 1963522.1708978600800037)", - "surface": 7200000, - "canton": null, - "numero_insee": "15071" - } - }, - { - "pk": 16809, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "FREIX-ANGLARDS", - "center": "POINT (603165.7173008053796366 2001817.3095111621078104)", - "surface": 17690000, - "canton": null, - "numero_insee": "15072" - } - }, - { - "pk": 20841, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "FRIDEFONT", - "center": "POINT (659925.1390608469955623 1989682.3220096491277218)", - "surface": 16550000, - "canton": null, - "numero_insee": "15073" - } - }, - { - "pk": 15128, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "GIOU-DE-MAMOU", - "center": "POINT (613452.6590617242036387 1992694.4223990205209702)", - "surface": 14390000, - "canton": null, - "numero_insee": "15074" - } - }, - { - "pk": 3084, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "GLENAT", - "center": "POINT (586955.3485955394571647 1989168.6514651966281235)", - "surface": 24150000, - "canton": null, - "numero_insee": "15076" - } - }, - { - "pk": 9187, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "GOURDIEGES", - "center": "POINT (642971.2072209152393043 1994043.9322306110989302)", - "surface": 8380000, - "canton": null, - "numero_insee": "15077" - } - }, - { - "pk": 21786, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "JABRUN", - "center": "POINT (649519.8499515362782404 1977181.8936112758237869)", - "surface": 34240000, - "canton": null, - "numero_insee": "15078" - } - }, - { - "pk": 4264, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "JOURSAC", - "center": "POINT (653175.8797757105203345 2018454.3593731028959155)", - "surface": 21170000, - "canton": null, - "numero_insee": "15080" - } - }, - { - "pk": 20681, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "JOU-SOUS-MONJOU", - "center": "POINT (625659.9571321860421449 1993297.5736977758351713)", - "surface": 6290000, - "canton": null, - "numero_insee": "15081" - } - }, - { - "pk": 20524, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "JUNHAC", - "center": "POINT (609071.9875841814791784 1966030.3766081370413303)", - "surface": 28040000, - "canton": null, - "numero_insee": "15082" - } - }, - { - "pk": 20680, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "JUSSAC", - "center": "POINT (606389.7308976316126063 1999341.8625559138599783)", - "surface": 18570000, - "canton": null, - "numero_insee": "15083" - } - }, - { - "pk": 23537, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LABESSERETTE", - "center": "POINT (611331.3097534104017541 1971154.6213346640579402)", - "surface": 13830000, - "canton": null, - "numero_insee": "15084" - } - }, - { - "pk": 19554, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LABROUSSE", - "center": "POINT (616733.9305709041655064 1983412.5385065812151879)", - "surface": 19920000, - "canton": null, - "numero_insee": "15085" - } - }, - { - "pk": 25780, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LACAPELLE-BARRES", - "center": "POINT (630455.2159232149133459 1994439.0393094776663929)", - "surface": 6380000, - "canton": null, - "numero_insee": "15086" - } - }, - { - "pk": 17949, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LACAPELLE-DEL-FRAISSE", - "center": "POINT (607398.1418744120746851 1974625.1800241777673364)", - "surface": 15370000, - "canton": null, - "numero_insee": "15087" - } - }, - { - "pk": 23449, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LACAPELLE-VIESCAMP", - "center": "POINT (595042.8567899650661275 1991638.9209768560249358)", - "surface": 17130000, - "canton": null, - "numero_insee": "15088" - } - }, - { - "pk": 21530, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LADINHAC", - "center": "POINT (613710.0582236924674362 1973977.4917727718129754)", - "surface": 26890000, - "canton": null, - "numero_insee": "15089" - } - }, - { - "pk": 3098, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LAFEUILLADE-EN-VEZIE", - "center": "POINT (608780.1419421809259802 1976939.1499750800430775)", - "surface": 16480000, - "canton": null, - "numero_insee": "15090" - } - }, - { - "pk": 4142, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LANDEYRAT", - "center": "POINT (641964.4263029784196988 2030371.7429123513866216)", - "surface": 21300000, - "canton": null, - "numero_insee": "15091" - } - }, - { - "pk": 17799, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LANOBRE", - "center": "POINT (616589.9092277806485072 2048175.8275793043430895)", - "surface": 43650000, - "canton": null, - "numero_insee": "15092" - } - }, - { - "pk": 3097, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LAPEYRUGUE", - "center": "POINT (615546.2766445324523374 1969888.7037169267423451)", - "surface": 8460000, - "canton": null, - "numero_insee": "15093" - } - }, - { - "pk": 23611, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LAROQUEBROU", - "center": "POINT (588690.7434980479301885 1997091.2104040209669620)", - "surface": 17140000, - "canton": null, - "numero_insee": "15094" - } - }, - { - "pk": 16808, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LAROQUEVIEILLE", - "center": "POINT (615070.9737118951743469 2002618.0267332489602268)", - "surface": 15790000, - "canton": null, - "numero_insee": "15095" - } - }, - { - "pk": 4143, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LASTIC", - "center": "POINT (669340.6312915665330365 2012684.8971568401902914)", - "surface": 10290000, - "canton": null, - "numero_insee": "15097" - } - }, - { - "pk": 22533, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LAURIE", - "center": "POINT (658468.5468289211858064 2031812.1772128443699330)", - "surface": 19400000, - "canton": null, - "numero_insee": "15098" - } - }, - { - "pk": 15047, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LAVEISSENET", - "center": "POINT (642648.7321161685977131 2008555.8304479543585330)", - "surface": 10880000, - "canton": null, - "numero_insee": "15100" - } - }, - { - "pk": 14457, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LAVEISSIERE", - "center": "POINT (635116.4621916989563033 2011495.3914999747648835)", - "surface": 35240000, - "canton": null, - "numero_insee": "15101" - } - }, - { - "pk": 18545, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LEUCAMP", - "center": "POINT (615995.4322831031167880 1975998.7547219558618963)", - "surface": 13630000, - "canton": null, - "numero_insee": "15103" - } - }, - { - "pk": 17924, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LEYNHAC", - "center": "POINT (595516.1497879250673577 1971021.8297059349715710)", - "surface": 27580000, - "canton": null, - "numero_insee": "15104" - } - }, - { - "pk": 19107, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LIEUTADES", - "center": "POINT (644380.3975415017921478 1981242.7746562110260129)", - "surface": 40530000, - "canton": null, - "numero_insee": "15106" - } - }, - { - "pk": 18986, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LORCIERES", - "center": "POINT (675295.7181915085529909 1995017.3905838190112263)", - "surface": 22110000, - "canton": null, - "numero_insee": "15107" - } - }, - { - "pk": 22630, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LOUBARESSE", - "center": "POINT (668602.0890569888288155 1993459.3267592471092939)", - "surface": 28520000, - "canton": null, - "numero_insee": "15108" - } - }, - { - "pk": 16038, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LUGARDE", - "center": "POINT (633041.9561753846937791 2031998.2743376113940030)", - "surface": 13410000, - "canton": null, - "numero_insee": "15110" - } - }, - { - "pk": 7695, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MADIC", - "center": "POINT (609541.5242503791814670 2041209.8660279316827655)", - "surface": 6770000, - "canton": null, - "numero_insee": "15111" - } - }, - { - "pk": 18629, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MALBO", - "center": "POINT (632829.6701452019624412 1997762.3647607194725424)", - "surface": 29370000, - "canton": null, - "numero_insee": "15112" - } - }, - { - "pk": 21357, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MANDAILLES-SAINT-JULIEN", - "center": "POINT (625731.3048163765342906 2008613.5971444926690310)", - "surface": 35400000, - "canton": null, - "numero_insee": "15113" - } - }, - { - "pk": 18388, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MARCENAT", - "center": "POINT (640622.7632416946580634 2035165.1651398711837828)", - "surface": 51110000, - "canton": null, - "numero_insee": "15114" - } - }, - { - "pk": 19975, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MARCHASTEL", - "center": "POINT (630753.3332373669836670 2030377.4325085249729455)", - "surface": 22930000, - "canton": null, - "numero_insee": "15116" - } - }, - { - "pk": 21714, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MARCOLES", - "center": "POINT (601583.3485104191349819 1975677.4814557745121419)", - "surface": 53430000, - "canton": null, - "numero_insee": "15117" - } - }, - { - "pk": 21136, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MARMANHAC", - "center": "POINT (611183.3023805428529158 2000683.4418914518319070)", - "surface": 24140000, - "canton": null, - "numero_insee": "15118" - } - }, - { - "pk": 28345, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MASSIAC", - "center": "POINT (667714.1456839900929481 2027485.8764064670540392)", - "surface": 34830000, - "canton": null, - "numero_insee": "15119" - } - }, - { - "pk": 19454, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MAURIAC", - "center": "POINT (598374.0764123706612736 2024099.3626984360162169)", - "surface": 28310000, - "canton": null, - "numero_insee": "15120" - } - }, - { - "pk": 6049, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MAURINES", - "center": "POINT (658857.8813228346407413 1985669.2434225645847619)", - "surface": 14570000, - "canton": null, - "numero_insee": "15121" - } - }, - { - "pk": 16532, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MAURS", - "center": "POINT (587034.0091051289346069 1967847.4889543524477631)", - "surface": 31020000, - "canton": null, - "numero_insee": "15122" - } - }, - { - "pk": 20507, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MEALLET", - "center": "POINT (606039.9707795209251344 2029068.5668985876254737)", - "surface": 21860000, - "canton": null, - "numero_insee": "15123" - } - }, - { - "pk": 20012, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MENET", - "center": "POINT (619019.9019281534710899 2032981.3852422134950757)", - "surface": 27440000, - "canton": null, - "numero_insee": "15124" - } - }, - { - "pk": 22994, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MENTIERES", - "center": "POINT (663366.3220109926769510 2008930.7499427073635161)", - "surface": 13180000, - "canton": null, - "numero_insee": "15125" - } - }, - { - "pk": 16563, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MOLEDES", - "center": "POINT (655382.5990755605744198 2029784.1707021328620613)", - "surface": 22500000, - "canton": null, - "numero_insee": "15126" - } - }, - { - "pk": 15062, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MOLOMPIZE", - "center": "POINT (661919.8073624228127301 2026135.6730647296644747)", - "surface": 17470000, - "canton": null, - "numero_insee": "15127" - } - }, - { - "pk": 23664, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LA MONSELIE", - "center": "POINT (616796.0159428105689585 2035565.2445984848309308)", - "surface": 8790000, - "canton": null, - "numero_insee": "15128" - } - }, - { - "pk": 24296, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MONTBOUDIF", - "center": "POINT (630963.4632783264387399 2041089.7100187246687710)", - "surface": 20320000, - "canton": null, - "numero_insee": "15129" - } - }, - { - "pk": 19893, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MONTCHAMP", - "center": "POINT (669180.1759303079452366 2007978.8348067607730627)", - "surface": 15970000, - "canton": null, - "numero_insee": "15130" - } - }, - { - "pk": 19629, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LE MONTEIL", - "center": "POINT (613413.1048517206218094 2033134.4513814896345139)", - "surface": 23310000, - "canton": null, - "numero_insee": "15131" - } - }, - { - "pk": 18392, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MONTGRELEIX", - "center": "POINT (643288.1152622038498521 2039591.9378310018219054)", - "surface": 17590000, - "canton": null, - "numero_insee": "15132" - } - }, - { - "pk": 31900, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MONTMURAT", - "center": "POINT (589211.5757298405515030 1958856.4265551029238850)", - "surface": 5230000, - "canton": null, - "numero_insee": "15133" - } - }, - { - "pk": 22644, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MONTSALVY", - "center": "POINT (612475.2623824791517109 1966058.9706385808531195)", - "surface": 20500000, - "canton": null, - "numero_insee": "15134" - } - }, - { - "pk": 20003, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MONTVERT", - "center": "POINT (586269.1860724232392386 1999373.2292847568169236)", - "surface": 11270000, - "canton": null, - "numero_insee": "15135" - } - }, - { - "pk": 18015, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MOURJOU", - "center": "POINT (598359.1603809517109767 1966240.7343683931976557)", - "surface": 30260000, - "canton": null, - "numero_insee": "15136" - } - }, - { - "pk": 23088, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MOUSSAGES", - "center": "POINT (610671.0962536687729880 2025904.3068247081246227)", - "surface": 19410000, - "canton": null, - "numero_insee": "15137" - } - }, - { - "pk": 16878, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "MURAT", - "center": "POINT (641215.3847887696465477 2012347.5586015414446592)", - "surface": 6540000, - "canton": null, - "numero_insee": "15138" - } - }, - { - "pk": 14393, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "NAUCELLES", - "center": "POINT (606629.4301774308551103 1994639.1246371262241155)", - "surface": 11690000, - "canton": null, - "numero_insee": "15140" - } - }, - { - "pk": 20115, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "NEUSSARGUES-MOISSAC", - "center": "POINT (651004.2297465123701841 2014832.4586277597118169)", - "surface": 13900000, - "canton": null, - "numero_insee": "15141" - } - }, - { - "pk": 22269, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "NEUVEGLISE", - "center": "POINT (650692.8096064756391570 1992407.2914841792080551)", - "surface": 54260000, - "canton": null, - "numero_insee": "15142" - } - }, - { - "pk": 18805, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "NIEUDAN", - "center": "POINT (592787.0418357512680814 1998026.4755015147384256)", - "surface": 12420000, - "canton": null, - "numero_insee": "15143" - } - }, - { - "pk": 17664, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "OMPS", - "center": "POINT (594584.3737510872306302 1986629.9910107320174575)", - "surface": 12780000, - "canton": null, - "numero_insee": "15144" - } - }, - { - "pk": 22608, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ORADOUR", - "center": "POINT (645892.4988325776066631 1991866.3185153454542160)", - "surface": 34030000, - "canton": null, - "numero_insee": "15145" - } - }, - { - "pk": 14489, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PAILHEROLS", - "center": "POINT (628947.9065494872629642 1995127.0627006739377975)", - "surface": 25900000, - "canton": null, - "numero_insee": "15146" - } - }, - { - "pk": 15590, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PARLAN", - "center": "POINT (587026.6826024856418371 1980660.5816242983564734)", - "surface": 24640000, - "canton": null, - "numero_insee": "15147" - } - }, - { - "pk": 14461, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PAULHAC", - "center": "POINT (643402.5186464001890272 2002255.8509340963792056)", - "surface": 46370000, - "canton": null, - "numero_insee": "15148" - } - }, - { - "pk": 17950, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PAULHENC", - "center": "POINT (637823.6308686475967988 1987193.6615729865152389)", - "surface": 23700000, - "canton": null, - "numero_insee": "15149" - } - }, - { - "pk": 15275, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PERS", - "center": "POINT (591568.0966047351248562 1988206.3167825117707253)", - "surface": 17850000, - "canton": null, - "numero_insee": "15150" - } - }, - { - "pk": 20551, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PEYRUSSE", - "center": "POINT (654434.0253944821888581 2023570.0368233665358275)", - "surface": 29150000, - "canton": null, - "numero_insee": "15151" - } - }, - { - "pk": 19336, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PIERREFORT", - "center": "POINT (639584.0228378607425839 1992113.4699480230920017)", - "surface": 24590000, - "canton": null, - "numero_insee": "15152" - } - }, - { - "pk": 14465, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PLEAUX", - "center": "POINT (593563.6119725055759773 2012847.8568436102941632)", - "surface": 93240000, - "canton": null, - "numero_insee": "15153" - } - }, - { - "pk": 21527, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "POLMINHAC", - "center": "POINT (618841.7631103926105425 1994641.6481813658028841)", - "surface": 29090000, - "canton": null, - "numero_insee": "15154" - } - }, - { - "pk": 22975, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PRADIERS", - "center": "POINT (645857.8724252653773874 2031605.7347204750403762)", - "surface": 23740000, - "canton": null, - "numero_insee": "15155" - } - }, - { - "pk": 14978, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "PRUNET", - "center": "POINT (610955.3309282410191372 1980160.7029549470171332)", - "surface": 27300000, - "canton": null, - "numero_insee": "15156" - } - }, - { - "pk": 3504, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "QUEZAC", - "center": "POINT (587791.1352443221258000 1973059.1956832963041961)", - "surface": 16520000, - "canton": null, - "numero_insee": "15157" - } - }, - { - "pk": 17347, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "RAGEADE", - "center": "POINT (673341.8078083664877340 2013018.9951818480622023)", - "surface": 12570000, - "canton": null, - "numero_insee": "15158" - } - }, - { - "pk": 4748, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "RAULHAC", - "center": "POINT (625295.7886949090752751 1988990.1440078965388238)", - "surface": 17100000, - "canton": null, - "numero_insee": "15159" - } - }, - { - "pk": 20144, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "REILHAC", - "center": "POINT (606713.5514335051411763 1996541.7537956433370709)", - "surface": 8930000, - "canton": null, - "numero_insee": "15160" - } - }, - { - "pk": 10307, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "REZENTIERES", - "center": "POINT (660511.3443818044615909 2015112.8549667636398226)", - "surface": 13350000, - "canton": null, - "numero_insee": "15161" - } - }, - { - "pk": 15049, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "RIOM-ES-MONTAGNES", - "center": "POINT (625032.9598643698263913 2032131.0710454559884965)", - "surface": 46780000, - "canton": null, - "numero_insee": "15162" - } - }, - { - "pk": 27062, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ROANNES-SAINT-MARY", - "center": "POINT (604828.5053538479842246 1982611.7951467914972454)", - "surface": 36820000, - "canton": null, - "numero_insee": "15163" - } - }, - { - "pk": 16645, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ROFFIAC", - "center": "POINT (653485.8044912551995367 2005443.9714319701306522)", - "surface": 21520000, - "canton": null, - "numero_insee": "15164" - } - }, - { - "pk": 23612, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ROUFFIAC", - "center": "POINT (584736.7335484550567344 2003064.1107770209200680)", - "surface": 23210000, - "canton": null, - "numero_insee": "15165" - } - }, - { - "pk": 20495, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ROUMEGOUX", - "center": "POINT (588197.6102298451587558 1984274.0772227970883250)", - "surface": 13450000, - "canton": null, - "numero_insee": "15166" - } - }, - { - "pk": 14936, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "ROUZIERS", - "center": "POINT (589957.9860963444225490 1977281.6796083548106253)", - "surface": 8700000, - "canton": null, - "numero_insee": "15167" - } - }, - { - "pk": 18415, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "RUYNES-EN-MARGERIDE", - "center": "POINT (669941.6956911728484556 2000778.0233070473186672)", - "surface": 29760000, - "canton": null, - "numero_insee": "15168" - } - }, - { - "pk": 32015, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAIGNES", - "center": "POINT (611381.0021921296138316 2036720.9127085977233946)", - "surface": 6870000, - "canton": null, - "numero_insee": "15169" - } - }, - { - "pk": 19202, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-AMANDIN", - "center": "POINT (629100.4866203515557572 2036469.5232894029468298)", - "surface": 31950000, - "canton": null, - "numero_insee": "15170" - } - }, - { - "pk": 14462, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINTE-ANASTASIE", - "center": "POINT (650158.7610989061649889 2020130.6086448421701789)", - "surface": 15950000, - "canton": null, - "numero_insee": "15171" - } - }, - { - "pk": 17047, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-ANTOINE", - "center": "POINT (599911.9699560181470588 1972059.7502500910777599)", - "surface": 7240000, - "canton": null, - "numero_insee": "15172" - } - }, - { - "pk": 14810, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-BONNET-DE-CONDAT", - "center": "POINT (636651.9896472110413015 2031227.8822909272275865)", - "surface": 17360000, - "canton": null, - "numero_insee": "15173" - } - }, - { - "pk": 31252, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-BONNET-DE-SALERS", - "center": "POINT (611240.5174587727524340 2017700.9534316798672080)", - "surface": 32730000, - "canton": null, - "numero_insee": "15174" - } - }, - { - "pk": 27663, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-CERNIN", - "center": "POINT (606936.4895408604061231 2005752.8978150584734976)", - "surface": 46640000, - "canton": null, - "numero_insee": "15175" - } - }, - { - "pk": 4542, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-CHAMANT", - "center": "POINT (608500.9879690040834248 2010170.4509639090392739)", - "surface": 13840000, - "canton": null, - "numero_insee": "15176" - } - }, - { - "pk": 15724, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-CIRGUES-DE-JORDANNE", - "center": "POINT (621161.5315703023225069 2004471.0432920095045120)", - "surface": 16150000, - "canton": null, - "numero_insee": "15178" - } - }, - { - "pk": 23299, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-CIRGUES-DE-MALBERT", - "center": "POINT (603301.1921356244711205 2009526.1808006379287690)", - "surface": 16360000, - "canton": null, - "numero_insee": "15179" - } - }, - { - "pk": 22664, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-CLEMENT", - "center": "POINT (626728.1496494811726734 1997210.5087684413883835)", - "surface": 17300000, - "canton": null, - "numero_insee": "15180" - } - }, - { - "pk": 29613, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-CONSTANT", - "center": "POINT (592761.3237147919135168 1965292.8341980301775038)", - "surface": 21860000, - "canton": null, - "numero_insee": "15181" - } - }, - { - "pk": 23543, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-ETIENNE-CANTALES", - "center": "POINT (592617.9202574032824486 1994321.3146090437658131)", - "surface": 11240000, - "canton": null, - "numero_insee": "15182" - } - }, - { - "pk": 20029, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-ETIENNE-DE-CARLAT", - "center": "POINT (619579.4545051865279675 1990243.3877481874078512)", - "surface": 10590000, - "canton": null, - "numero_insee": "15183" - } - }, - { - "pk": 16534, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-ETIENNE-DE-MAURS", - "center": "POINT (591429.8461806980194524 1968885.3843955639749765)", - "surface": 17410000, - "canton": null, - "numero_insee": "15184" - } - }, - { - "pk": 16649, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-ETIENNE-DE-CHOMEIL", - "center": "POINT (622078.9592738826759160 2038212.2167645222507417)", - "surface": 27480000, - "canton": null, - "numero_insee": "15185" - } - }, - { - "pk": 20381, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINTE-EULALIE", - "center": "POINT (603466.0803023723419756 2013731.7650630837306380)", - "surface": 14540000, - "canton": null, - "numero_insee": "15186" - } - }, - { - "pk": 20015, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-FLOUR", - "center": "POINT (658809.3335362329380587 2003286.6662107189185917)", - "surface": 27080000, - "canton": null, - "numero_insee": "15187" - } - }, - { - "pk": 20016, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-GEORGES", - "center": "POINT (663221.8979243943467736 2002322.8980856440030038)", - "surface": 33110000, - "canton": null, - "numero_insee": "15188" - } - }, - { - "pk": 24021, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-GERONS", - "center": "POINT (589522.5535875825444236 1993394.4410842268262058)", - "surface": 18290000, - "canton": null, - "numero_insee": "15189" - } - }, - { - "pk": 23665, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-HIPPOLYTE", - "center": "POINT (628701.9493309193057939 2024354.2375907786190510)", - "surface": 14020000, - "canton": null, - "numero_insee": "15190" - } - }, - { - "pk": 18544, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-ILLIDE", - "center": "POINT (598730.5127742418553680 2005483.7994806251954287)", - "surface": 39770000, - "canton": null, - "numero_insee": "15191" - } - }, - { - "pk": 17446, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-JACQUES-DES-BLATS", - "center": "POINT (630256.5570270203752443 2006149.1677343642804772)", - "surface": 31300000, - "canton": null, - "numero_insee": "15192" - } - }, - { - "pk": 3484, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-JULIEN-DE-TOURSAC", - "center": "POINT (589278.3025991400936618 1974773.4137163418345153)", - "surface": 9720000, - "canton": null, - "numero_insee": "15194" - } - }, - { - "pk": 4144, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-JUST", - "center": "POINT (668249.0462489865021780 1987850.6548610236495733)", - "surface": 17270000, - "canton": null, - "numero_insee": "15195" - } - }, - { - "pk": 14467, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-MAMET-LA-SALVETAT", - "center": "POINT (597409.7080713715404272 1983950.9455824254546314)", - "surface": 52340000, - "canton": null, - "numero_insee": "15196" - } - }, - { - "pk": 33369, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-MARC", - "center": "POINT (666632.3188196721021086 1989638.8348949002102017)", - "surface": 8850000, - "canton": null, - "numero_insee": "15197" - } - }, - { - "pk": 3096, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINTE-MARIE", - "center": "POINT (643121.9046912849880755 1988039.1084777174983174)", - "surface": 17950000, - "canton": null, - "numero_insee": "15198" - } - }, - { - "pk": 4717, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-MARTIAL", - "center": "POINT (655838.1491828350117430 1987645.8055386124178767)", - "surface": 14810000, - "canton": null, - "numero_insee": "15199" - } - }, - { - "pk": 17385, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-MARTIN-SOUS-VIGOUROUX", - "center": "POINT (636074.8197330614784732 1992784.6255474966019392)", - "surface": 19470000, - "canton": null, - "numero_insee": "15201" - } - }, - { - "pk": 19213, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-MARTIN-VALMEROUX", - "center": "POINT (608374.8302942826412618 2013272.4909402236808091)", - "surface": 26060000, - "canton": null, - "numero_insee": "15202" - } - }, - { - "pk": 11897, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-MARY-LE-PLAIN", - "center": "POINT (663475.2584523961413652 2019742.4530222243629396)", - "surface": 22010000, - "canton": null, - "numero_insee": "15203" - } - }, - { - "pk": 17450, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-PAUL-DES-LANDES", - "center": "POINT (597122.1606058086035773 1994359.1056492482312024)", - "surface": 19110000, - "canton": null, - "numero_insee": "15204" - } - }, - { - "pk": 23178, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-PIERRE", - "center": "POINT (603513.3896724515361711 2043861.8748298161663115)", - "surface": 14250000, - "canton": null, - "numero_insee": "15206" - } - }, - { - "pk": 23238, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-PONCY", - "center": "POINT (667394.0719879140378907 2017973.7470987595152110)", - "surface": 40590000, - "canton": null, - "numero_insee": "15207" - } - }, - { - "pk": 15630, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-PROJET-DE-SALERS", - "center": "POINT (617419.3657942486461252 2009044.1951423762366176)", - "surface": 35880000, - "canton": null, - "numero_insee": "15208" - } - }, - { - "pk": 20961, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-REMY-DE-CHAUDES-AIGUES", - "center": "POINT (654650.0465991868404672 1974222.0728547549806535)", - "surface": 15100000, - "canton": null, - "numero_insee": "15209" - } - }, - { - "pk": 24036, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-SANTIN-CANTALES", - "center": "POINT (591951.0278005140135065 2002223.6983913448639214)", - "surface": 34380000, - "canton": null, - "numero_insee": "15211" - } - }, - { - "pk": 17923, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-SANTIN-DE-MAURS", - "center": "POINT (589989.6849988145986572 1961565.7547833905555308)", - "surface": 14700000, - "canton": null, - "numero_insee": "15212" - } - }, - { - "pk": 19315, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-SAURY", - "center": "POINT (583174.4041732277255505 1986434.2088794971350580)", - "surface": 30650000, - "canton": null, - "numero_insee": "15214" - } - }, - { - "pk": 21475, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-SIMON", - "center": "POINT (612619.9417212631087750 1996491.2728154410142452)", - "surface": 27010000, - "canton": null, - "numero_insee": "15215" - } - }, - { - "pk": 14847, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-URCIZE", - "center": "POINT (650903.7999319529626518 1967383.4719624738208950)", - "surface": 55020000, - "canton": null, - "numero_insee": "15216" - } - }, - { - "pk": 14643, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-VICTOR", - "center": "POINT (596165.8793814746895805 2000957.7492271424271166)", - "surface": 13620000, - "canton": null, - "numero_insee": "15217" - } - }, - { - "pk": 21880, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAINT-VINCENT-DE-SALERS", - "center": "POINT (615901.1135080886306241 2022945.2874328005127609)", - "surface": 18830000, - "canton": null, - "numero_insee": "15218" - } - }, - { - "pk": 10806, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SALERS", - "center": "POINT (612556.0183932231739163 2016010.3138916909229010)", - "surface": 4710000, - "canton": null, - "numero_insee": "15219" - } - }, - { - "pk": 20380, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SANSAC-DE-MARMIESSE", - "center": "POINT (600481.5646494885440916 1987680.4989169575273991)", - "surface": 14290000, - "canton": null, - "numero_insee": "15221" - } - }, - { - "pk": 4774, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SANSAC-VEINAZES", - "center": "POINT (607123.9173001415329054 1971519.6879610228352249)", - "surface": 12670000, - "canton": null, - "numero_insee": "15222" - } - }, - { - "pk": 13029, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SAUVAT", - "center": "POINT (608199.9481991515494883 2034091.6343085691332817)", - "surface": 14490000, - "canton": null, - "numero_insee": "15223" - } - }, - { - "pk": 13860, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LA SEGALASSIERE", - "center": "POINT (589868.1657470313366503 1987991.8559244312345982)", - "surface": 6660000, - "canton": null, - "numero_insee": "15224" - } - }, - { - "pk": 4277, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SEGUR-LES-VILLAS", - "center": "POINT (638221.6454451906029135 2023133.0940480176359415)", - "surface": 27070000, - "canton": null, - "numero_insee": "15225" - } - }, - { - "pk": 15335, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SENEZERGUES", - "center": "POINT (605546.7603524088626727 1968603.4525085871573538)", - "surface": 17710000, - "canton": null, - "numero_insee": "15226" - } - }, - { - "pk": 6023, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SERIERS", - "center": "POINT (654857.9360394754912704 1997047.0760692832991481)", - "surface": 12520000, - "canton": null, - "numero_insee": "15227" - } - }, - { - "pk": 20808, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SIRAN", - "center": "POINT (582907.1011049470398575 1994440.0936553624924272)", - "surface": 50670000, - "canton": null, - "numero_insee": "15228" - } - }, - { - "pk": 16678, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SOULAGES", - "center": "POINT (672764.0819645939627662 2010311.4127652528695762)", - "surface": 15080000, - "canton": null, - "numero_insee": "15229" - } - }, - { - "pk": 17803, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "SOURNIAC", - "center": "POINT (599821.6871826772112399 2030517.8374025372322649)", - "surface": 11680000, - "canton": null, - "numero_insee": "15230" - } - }, - { - "pk": 20682, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "TALIZAT", - "center": "POINT (656317.5852073963033035 2013876.2724882052280009)", - "surface": 38020000, - "canton": null, - "numero_insee": "15231" - } - }, - { - "pk": 16871, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "TEISSIERES-DE-CORNET", - "center": "POINT (602003.2482804008759558 1997202.9083381432574242)", - "surface": 9290000, - "canton": null, - "numero_insee": "15233" - } - }, - { - "pk": 17951, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "TEISSIERES-LES-BOULIES", - "center": "POINT (615961.7771049456205219 1980002.5719664713833481)", - "surface": 19760000, - "canton": null, - "numero_insee": "15234" - } - }, - { - "pk": 23982, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LES TERNES", - "center": "POINT (651832.3269755647052079 1999724.2870443374849856)", - "surface": 18860000, - "canton": null, - "numero_insee": "15235" - } - }, - { - "pk": 19831, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "THIEZAC", - "center": "POINT (625687.6313821462681517 2001906.4972365647554398)", - "surface": 41560000, - "canton": null, - "numero_insee": "15236" - } - }, - { - "pk": 25707, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "TIVIERS", - "center": "POINT (666072.2165132631780580 2008553.1922676665708423)", - "surface": 13590000, - "canton": null, - "numero_insee": "15237" - } - }, - { - "pk": 13695, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "TOURNEMIRE", - "center": "POINT (612039.5691902147373185 2005995.9694418171420693)", - "surface": 9720000, - "canton": null, - "numero_insee": "15238" - } - }, - { - "pk": 29935, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "TREMOUILLE", - "center": "POINT (626044.7022354684304446 2042749.9794192041736096)", - "surface": 29070000, - "canton": null, - "numero_insee": "15240" - } - }, - { - "pk": 3838, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LA TRINITAT", - "center": "POINT (648158.1702079609967768 1972465.5844027777202427)", - "surface": 17740000, - "canton": null, - "numero_insee": "15241" - } - }, - { - "pk": 15445, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "TRIZAC", - "center": "POINT (616266.9854264822788537 2027052.4221103140152991)", - "surface": 45280000, - "canton": null, - "numero_insee": "15243" - } - }, - { - "pk": 21528, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "USSEL", - "center": "POINT (648456.6658293092623353 2008304.4778235638514161)", - "surface": 10250000, - "canton": null, - "numero_insee": "15244" - } - }, - { - "pk": 3865, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VABRES", - "center": "POINT (667608.2672274019569159 2004462.0442827274091542)", - "surface": 18870000, - "canton": null, - "numero_insee": "15245" - } - }, - { - "pk": 36645, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VALETTE", - "center": "POINT (620753.4393673000158742 2029192.2170939201023430)", - "surface": 15050000, - "canton": null, - "numero_insee": "15246" - } - }, - { - "pk": 31639, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VALJOUZE", - "center": "POINT (656880.1431792424991727 2018385.5050106709823012)", - "surface": 2990000, - "canton": null, - "numero_insee": "15247" - } - }, - { - "pk": 23637, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VALUEJOLS", - "center": "POINT (644872.7127155029447749 2005971.9616055760998279)", - "surface": 38420000, - "canton": null, - "numero_insee": "15248" - } - }, - { - "pk": 4387, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LE VAULMIER", - "center": "POINT (619526.3105443896492943 2020373.1841695327311754)", - "surface": 17400000, - "canton": null, - "numero_insee": "15249" - } - }, - { - "pk": 4053, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VEBRET", - "center": "POINT (613960.6573328449157998 2039445.2370659622829407)", - "surface": 24560000, - "canton": null, - "numero_insee": "15250" - } - }, - { - "pk": 4169, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VEDRINES-SAINT-LOUP", - "center": "POINT (673699.5912561322329566 2006215.2034911881200969)", - "surface": 27370000, - "canton": null, - "numero_insee": "15251" - } - }, - { - "pk": 22149, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VELZIC", - "center": "POINT (617199.8658953165868297 1999432.6966237891465425)", - "surface": 11240000, - "canton": null, - "numero_insee": "15252" - } - }, - { - "pk": 15694, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VERNOLS", - "center": "POINT (642915.8517751514445990 2024373.8282078602351248)", - "surface": 24470000, - "canton": null, - "numero_insee": "15253" - } - }, - { - "pk": 23220, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VEYRIERES", - "center": "POINT (602482.1413774309912696 2035545.0909461369737983)", - "surface": 13720000, - "canton": null, - "numero_insee": "15254" - } - }, - { - "pk": 20180, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VEZAC", - "center": "POINT (614590.7125770546263084 1988299.5176943223923445)", - "surface": 14960000, - "canton": null, - "numero_insee": "15255" - } - }, - { - "pk": 31033, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VEZELS-ROUSSY", - "center": "POINT (619379.3242859817110002 1978329.5622685248963535)", - "surface": 12960000, - "canton": null, - "numero_insee": "15257" - } - }, - { - "pk": 20751, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VIC-SUR-CERE", - "center": "POINT (622327.3810543209547177 1996773.0844933604821563)", - "surface": 29310000, - "canton": null, - "numero_insee": "15258" - } - }, - { - "pk": 4357, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VIEILLESPESSE", - "center": "POINT (664631.1979679404757917 2013245.7313653493765742)", - "surface": 24970000, - "canton": null, - "numero_insee": "15259" - } - }, - { - "pk": 15048, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LE VIGEAN", - "center": "POINT (602272.6226890143007040 2024732.6817858661524951)", - "surface": 29070000, - "canton": null, - "numero_insee": "15261" - } - }, - { - "pk": 24005, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VILLEDIEU", - "center": "POINT (656535.8912347576115280 1999864.0587345692329109)", - "surface": 19100000, - "canton": null, - "numero_insee": "15262" - } - }, - { - "pk": 5904, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VIRARGUES", - "center": "POINT (644201.3013761723414063 2014374.7150129543151706)", - "surface": 11090000, - "canton": null, - "numero_insee": "15263" - } - }, - { - "pk": 21380, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "VITRAC", - "center": "POINT (598154.0558454490965232 1978751.8756503297481686)", - "surface": 18030000, - "canton": null, - "numero_insee": "15264" - } - }, - { - "pk": 11892, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "YTRAC", - "center": "POINT (602258.8993038339540362 1990598.3679012341890484)", - "surface": 38350000, - "canton": null, - "numero_insee": "15267" - } - }, - { - "pk": 21414, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "LE ROUGET", - "center": "POINT (591903.6432812055572867 1984004.8519437923096120)", - "surface": 8110000, - "canton": null, - "numero_insee": "15268" - } - }, - { - "pk": 13427, - "model": "ishtar_common.town", - "fields": { - "departement": 15, - "name": "BESSE", - "center": "POINT (601385.9789579896023497 2011111.7028376276139170)", - "surface": 3770000, - "canton": null, - "numero_insee": "15269" - } - }, - { - "pk": 31984, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LES ADJOTS", - "center": "POINT (434903.1851023043273017 2122032.1351547879166901)", - "surface": 11230000, - "canton": null, - "numero_insee": "16002" - } - }, - { - "pk": 3697, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AGRIS", - "center": "POINT (443791.2698722123168409 2088174.1157794806640595)", - "surface": 18660000, - "canton": null, - "numero_insee": "16003" - } - }, - { - "pk": 22641, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AIGNES-ET-PUYPEROUX", - "center": "POINT (428072.5733241509879008 2052309.9551489020232111)", - "surface": 13020000, - "canton": null, - "numero_insee": "16004" - } - }, - { - "pk": 36720, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AIGRE", - "center": "POINT (418558.5670009984169155 2101378.1092408392578363)", - "surface": 6540000, - "canton": null, - "numero_insee": "16005" - } - }, - { - "pk": 20648, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ALLOUE", - "center": "POINT (459784.7872036495245993 2114931.3882841775193810)", - "surface": 46660000, - "canton": null, - "numero_insee": "16007" - } - }, - { - "pk": 23233, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AMBERAC", - "center": "POINT (423093.8765958724543452 2097612.0104855932295322)", - "surface": 12090000, - "canton": null, - "numero_insee": "16008" - } - }, - { - "pk": 28109, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AMBERNAC", - "center": "POINT (462029.8070570424897596 2109745.1873894720338285)", - "surface": 29890000, - "canton": null, - "numero_insee": "16009" - } - }, - { - "pk": 35814, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AMBLEVILLE", - "center": "POINT (400039.3006660417886451 2065191.2134708431549370)", - "surface": 5050000, - "canton": null, - "numero_insee": "16010" - } - }, - { - "pk": 3965, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ANAIS", - "center": "POINT (434287.0971173983998597 2087595.0216121263802052)", - "surface": 9850000, - "canton": null, - "numero_insee": "16011" - } - }, - { - "pk": 22953, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ANGEAC-CHAMPAGNE", - "center": "POINT (395082.1414215054828674 2071556.4955094689503312)", - "surface": 14340000, - "canton": null, - "numero_insee": "16012" - } - }, - { - "pk": 37237, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ANGEAC-CHARENTE", - "center": "POINT (411394.1431974168517627 2071991.2885819654911757)", - "surface": 10890000, - "canton": null, - "numero_insee": "16013" - } - }, - { - "pk": 12190, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ANGEDUC", - "center": "POINT (412928.3823636161978357 2055888.4620244230609387)", - "surface": 3580000, - "canton": null, - "numero_insee": "16014" - } - }, - { - "pk": 4177, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ANGOULEME", - "center": "POINT (429092.4788753760512918 2074239.4573187751229852)", - "surface": 21690000, - "canton": null, - "numero_insee": "16015" - } - }, - { - "pk": 23574, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ANSAC-SUR-VIENNE", - "center": "POINT (466916.5800663491245359 2111887.6486967261880636)", - "surface": 30860000, - "canton": null, - "numero_insee": "16016" - } - }, - { - "pk": 10581, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ANVILLE", - "center": "POINT (408999.7972452387912199 2095293.6032860607374460)", - "surface": 8190000, - "canton": null, - "numero_insee": "16017" - } - }, - { - "pk": 8278, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ARS", - "center": "POINT (386450.6002647684654221 2074388.1736938511021435)", - "surface": 11700000, - "canton": null, - "numero_insee": "16018" - } - }, - { - "pk": 20178, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ASNIERES-SUR-NOUERE", - "center": "POINT (421828.2329500872874632 2081186.0970198048744351)", - "surface": 21370000, - "canton": null, - "numero_insee": "16019" - } - }, - { - "pk": 30040, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AUBETERRE-SUR-DRONNE", - "center": "POINT (429748.5054342463263310 2031203.1647764611989260)", - "surface": 2410000, - "canton": null, - "numero_insee": "16020" - } - }, - { - "pk": 14303, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AUBEVILLE", - "center": "POINT (416816.1901501663960516 2057822.3934870548546314)", - "surface": 8200000, - "canton": null, - "numero_insee": "16021" - } - }, - { - "pk": 12576, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AUNAC", - "center": "POINT (438557.6545727418269962 2103745.4369763010181487)", - "surface": 4760000, - "canton": null, - "numero_insee": "16023" - } - }, - { - "pk": 24451, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AUSSAC-VADALLE", - "center": "POINT (435139.8803568644216284 2093407.5347219933755696)", - "surface": 17580000, - "canton": null, - "numero_insee": "16024" - } - }, - { - "pk": 20932, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BAIGNES-SAINTE-RADEGONDE", - "center": "POINT (397003.8959238921524957 2044846.5235427531879395)", - "surface": 31260000, - "canton": null, - "numero_insee": "16025" - } - }, - { - "pk": 32076, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BALZAC", - "center": "POINT (428431.5622433710377663 2081540.9388233239296824)", - "surface": 9650000, - "canton": null, - "numero_insee": "16026" - } - }, - { - "pk": 19492, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BARBEZIERES", - "center": "POINT (411829.6436219180468470 2104125.1797227594070137)", - "surface": 9340000, - "canton": null, - "numero_insee": "16027" - } - }, - { - "pk": 21412, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BARBEZIEUX-SAINT-HILAIRE", - "center": "POINT (404918.7060567201115191 2056122.6685485113412142)", - "surface": 26560000, - "canton": null, - "numero_insee": "16028" - } - }, - { - "pk": 5557, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BARDENAC", - "center": "POINT (415494.1511745469179004 2036090.3281006105244160)", - "surface": 8020000, - "canton": null, - "numero_insee": "16029" - } - }, - { - "pk": 34732, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BARRO", - "center": "POINT (437273.8412446030415595 2113744.0961322011426091)", - "surface": 10720000, - "canton": null, - "numero_insee": "16031" - } - }, - { - "pk": 35068, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BASSAC", - "center": "POINT (410153.4379999400116503 2076785.6309932356234640)", - "surface": 7670000, - "canton": null, - "numero_insee": "16032" - } - }, - { - "pk": 16760, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BAYERS", - "center": "POINT (436246.5646894813980907 2104827.3466348135843873)", - "surface": 3610000, - "canton": null, - "numero_insee": "16033" - } - }, - { - "pk": 24276, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BAZAC", - "center": "POINT (419271.9323360358830541 2027112.6475033643655479)", - "surface": 4910000, - "canton": null, - "numero_insee": "16034" - } - }, - { - "pk": 34431, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BEAULIEU-SUR-SONNETTE", - "center": "POINT (447657.2211609428632073 2104821.6681810105219483)", - "surface": 10220000, - "canton": null, - "numero_insee": "16035" - } - }, - { - "pk": 7219, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BECHERESSE", - "center": "POINT (423519.7270523930783384 2058178.0471494167577475)", - "surface": 8390000, - "canton": null, - "numero_insee": "16036" - } - }, - { - "pk": 27057, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BELLON", - "center": "POINT (425896.2167598045198247 2037077.1310285914223641)", - "surface": 9150000, - "canton": null, - "numero_insee": "16037" - } - }, - { - "pk": 31507, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BENEST", - "center": "POINT (454161.7654868096578866 2117086.8277573883533478)", - "surface": 20910000, - "canton": null, - "numero_insee": "16038" - } - }, - { - "pk": 6687, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BERNAC", - "center": "POINT (432425.0555312966462225 2119108.9821398658677936)", - "surface": 8580000, - "canton": null, - "numero_insee": "16039" - } - }, - { - "pk": 21596, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BERNEUIL", - "center": "POINT (411707.3359024826204404 2046168.9591012005694211)", - "surface": 16490000, - "canton": null, - "numero_insee": "16040" - } - }, - { - "pk": 30061, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BESSAC", - "center": "POINT (416075.7938098565209657 2050509.2049961227457970)", - "surface": 10520000, - "canton": null, - "numero_insee": "16041" - } - }, - { - "pk": 7455, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BESSE", - "center": "POINT (425202.3489955025142990 2108939.9613241767510772)", - "surface": 7740000, - "canton": null, - "numero_insee": "16042" - } - }, - { - "pk": 36950, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BIGNAC", - "center": "POINT (422456.9243626431562006 2089899.5162328209262341)", - "surface": 7720000, - "canton": null, - "numero_insee": "16043" - } - }, - { - "pk": 29191, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BIOUSSAC", - "center": "POINT (440053.0534734575194307 2116569.6686312160454690)", - "surface": 15890000, - "canton": null, - "numero_insee": "16044" - } - }, - { - "pk": 32718, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BIRAC", - "center": "POINT (413250.2622043265728280 2065400.2810530876740813)", - "surface": 11830000, - "canton": null, - "numero_insee": "16045" - } - }, - { - "pk": 18608, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BLANZAC-PORCHERESSE", - "center": "POINT (417848.4939255060162395 2054027.2388900660444051)", - "surface": 10840000, - "canton": null, - "numero_insee": "16046" - } - }, - { - "pk": 8630, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BLANZAGUET-SAINT-CYBARD", - "center": "POINT (441767.5348707040539011 2054525.2491894140839577)", - "surface": 11900000, - "canton": null, - "numero_insee": "16047" - } - }, - { - "pk": 16229, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BOISBRETEAU", - "center": "POINT (404253.3620597867411561 2039701.2047276017256081)", - "surface": 15240000, - "canton": null, - "numero_insee": "16048" - } - }, - { - "pk": 33725, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BONNES", - "center": "POINT (427768.1790186834987253 2028584.2286713426001370)", - "surface": 14780000, - "canton": null, - "numero_insee": "16049" - } - }, - { - "pk": 31435, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BONNEUIL", - "center": "POINT (407031.5169563563540578 2066950.5057200957089663)", - "surface": 13620000, - "canton": null, - "numero_insee": "16050" - } - }, - { - "pk": 34386, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BONNEVILLE", - "center": "POINT (414600.5398559019668028 2095840.2879703198559582)", - "surface": 10160000, - "canton": null, - "numero_insee": "16051" - } - }, - { - "pk": 8315, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BORS (CANTON DE MONTMOREAU-SAINT-CYBARD)", - "center": "POINT (428373.6814158966299146 2040100.5484338812530041)", - "surface": 16080000, - "canton": null, - "numero_insee": "16052" - } - }, - { - "pk": 15680, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BORS (CANTON DE BAIGNES-SAINTE-RADEGONDE)", - "center": "POINT (401153.0097727666143328 2039375.3442637177649885)", - "surface": 12340000, - "canton": null, - "numero_insee": "16053" - } - }, - { - "pk": 8340, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LE BOUCHAGE", - "center": "POINT (448245.1349022925132886 2118439.1212751138955355)", - "surface": 16460000, - "canton": null, - "numero_insee": "16054" - } - }, - { - "pk": 36266, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BOUEX", - "center": "POINT (442529.1904064765549265 2071347.7181361145339906)", - "surface": 15690000, - "canton": null, - "numero_insee": "16055" - } - }, - { - "pk": 16752, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BOURG-CHARENTE", - "center": "POINT (400540.8223128529498354 2077206.8290780484676361)", - "surface": 11920000, - "canton": null, - "numero_insee": "16056" - } - }, - { - "pk": 31859, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BOUTEVILLE", - "center": "POINT (407804.1575132799334824 2070360.1383371667470783)", - "surface": 12150000, - "canton": null, - "numero_insee": "16057" - } - }, - { - "pk": 26813, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BOUTIERS-SAINT-TROJAN", - "center": "POINT (394892.9876313967397436 2082365.2244138156529516)", - "surface": 7050000, - "canton": null, - "numero_insee": "16058" - } - }, - { - "pk": 27689, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BRETTES", - "center": "POINT (421261.8016737197758630 2113411.5803613471798599)", - "surface": 12380000, - "canton": null, - "numero_insee": "16059" - } - }, - { - "pk": 35126, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BREVILLE", - "center": "POINT (396923.9041785894660279 2090990.0877567899879068)", - "surface": 15670000, - "canton": null, - "numero_insee": "16060" - } - }, - { - "pk": 4131, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BRIE", - "center": "POINT (438824.1540176086127758 2083628.7646257996093482)", - "surface": 34080000, - "canton": null, - "numero_insee": "16061" - } - }, - { - "pk": 32758, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BRIE-SOUS-BARBEZIEUX", - "center": "POINT (413879.5887070155004039 2049790.3943038296420127)", - "surface": 6440000, - "canton": null, - "numero_insee": "16062" - } - }, - { - "pk": 32544, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BRIE-SOUS-CHALAIS", - "center": "POINT (417678.8065253124805167 2038210.4283680059015751)", - "surface": 10340000, - "canton": null, - "numero_insee": "16063" - } - }, - { - "pk": 36786, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BRIGUEUIL", - "center": "POINT (486177.9120473273214884 2106642.5189002919942141)", - "surface": 46840000, - "canton": null, - "numero_insee": "16064" - } - }, - { - "pk": 17598, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BRILLAC", - "center": "POINT (479263.2117246174020693 2119697.1953022736124694)", - "surface": 42420000, - "canton": null, - "numero_insee": "16065" - } - }, - { - "pk": 22951, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BROSSAC", - "center": "POINT (413070.4758857794804499 2038672.8736214102245867)", - "surface": 21860000, - "canton": null, - "numero_insee": "16066" - } - }, - { - "pk": 36265, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "BUNZAC", - "center": "POINT (444763.2998298085294664 2079574.0210700514726341)", - "surface": 13290000, - "canton": null, - "numero_insee": "16067" - } - }, - { - "pk": 15424, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CELLEFROUIN", - "center": "POINT (448994.8034200173569843 2100428.6402669930830598)", - "surface": 40020000, - "canton": null, - "numero_insee": "16068" - } - }, - { - "pk": 8802, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CELLETTES", - "center": "POINT (429793.9015423724194989 2098368.0259428680874407)", - "surface": 9400000, - "canton": null, - "numero_insee": "16069" - } - }, - { - "pk": 22968, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHABANAIS", - "center": "POINT (473744.4047789961332455 2097230.6118275099433959)", - "surface": 14970000, - "canton": null, - "numero_insee": "16070" - } - }, - { - "pk": 23069, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHABRAC", - "center": "POINT (476689.6822106122854166 2104161.4963833428919315)", - "surface": 22530000, - "canton": null, - "numero_insee": "16071" - } - }, - { - "pk": 25233, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHADURIE", - "center": "POINT (428430.7438382736872882 2057417.8549997652880847)", - "surface": 16470000, - "canton": null, - "numero_insee": "16072" - } - }, - { - "pk": 18676, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHALAIS", - "center": "POINT (419624.3537032924941741 2032921.2844789400696754)", - "surface": 17690000, - "canton": null, - "numero_insee": "16073" - } - }, - { - "pk": 21717, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHALLIGNAC", - "center": "POINT (410475.6876978732179850 2049862.3988424863200635)", - "surface": 13220000, - "canton": null, - "numero_insee": "16074" - } - }, - { - "pk": 7083, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHAMPAGNE-VIGNY", - "center": "POINT (420611.3366560592548922 2058854.6991048983763903)", - "surface": 8340000, - "canton": null, - "numero_insee": "16075" - } - }, - { - "pk": 21547, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHAMPAGNE-MOUTON", - "center": "POINT (450900.3913702401332557 2112055.2011424014344811)", - "surface": 22690000, - "canton": null, - "numero_insee": "16076" - } - }, - { - "pk": 9821, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHAMPMILLON", - "center": "POINT (418179.5183726383838803 2074549.6857069581747055)", - "surface": 9560000, - "canton": null, - "numero_insee": "16077" - } - }, - { - "pk": 20372, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHAMPNIERS", - "center": "POINT (433334.2191530809504911 2081781.6558154388330877)", - "surface": 45200000, - "canton": null, - "numero_insee": "16078" - } - }, - { - "pk": 19342, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHANTILLAC", - "center": "POINT (396747.3442494634073228 2039539.2224621458444744)", - "surface": 17970000, - "canton": null, - "numero_insee": "16079" - } - }, - { - "pk": 6736, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA CHAPELLE", - "center": "POINT (422416.4160958385327831 2094803.7896977758500725)", - "surface": 7740000, - "canton": null, - "numero_insee": "16081" - } - }, - { - "pk": 26598, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHARMANT", - "center": "POINT (431145.5807804945507087 2055938.8454696324188262)", - "surface": 17150000, - "canton": null, - "numero_insee": "16082" - } - }, - { - "pk": 34154, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHARME", - "center": "POINT (428113.9392722529009916 2107862.9976170803420246)", - "surface": 11480000, - "canton": null, - "numero_insee": "16083" - } - }, - { - "pk": 15032, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHARRAS", - "center": "POINT (450912.8143395215738565 2062208.2973526043351740)", - "surface": 15260000, - "canton": null, - "numero_insee": "16084" - } - }, - { - "pk": 21034, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHASSENEUIL-SUR-BONNIEURE", - "center": "POINT (452657.6037474450422451 2093252.2288860066328198)", - "surface": 33150000, - "canton": null, - "numero_insee": "16085" - } - }, - { - "pk": 9855, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHASSENON", - "center": "POINT (478561.0302631781669334 2095769.1861792979761958)", - "surface": 23490000, - "canton": null, - "numero_insee": "16086" - } - }, - { - "pk": 26417, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHASSIECQ", - "center": "POINT (447334.5919174877926707 2107521.5071882628835738)", - "surface": 13090000, - "canton": null, - "numero_insee": "16087" - } - }, - { - "pk": 6629, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHASSORS", - "center": "POINT (401902.4509260890772566 2082022.6165138003416359)", - "surface": 13320000, - "canton": null, - "numero_insee": "16088" - } - }, - { - "pk": 31944, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHATEAUBERNARD", - "center": "POINT (393327.0340836130781099 2078048.2374116121791303)", - "surface": 13380000, - "canton": null, - "numero_insee": "16089" - } - }, - { - "pk": 14763, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHATEAUNEUF-SUR-CHARENTE", - "center": "POINT (413620.8792344266548753 2069006.7942805849015713)", - "surface": 24050000, - "canton": null, - "numero_insee": "16090" - } - }, - { - "pk": 10116, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHATIGNAC", - "center": "POINT (416452.0923604628187604 2041303.3375620620790869)", - "surface": 9750000, - "canton": null, - "numero_insee": "16091" - } - }, - { - "pk": 28082, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHAVENAT", - "center": "POINT (431080.2441631991532631 2051734.2343977217096835)", - "surface": 9980000, - "canton": null, - "numero_insee": "16092" - } - }, - { - "pk": 15904, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHAZELLES", - "center": "POINT (446214.2453982107108459 2073580.3195487870834768)", - "surface": 25930000, - "canton": null, - "numero_insee": "16093" - } - }, - { - "pk": 28504, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHENOMMET", - "center": "POINT (438340.0967837719945237 2105845.5920080682262778)", - "surface": 4490000, - "canton": null, - "numero_insee": "16094" - } - }, - { - "pk": 35796, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHENON", - "center": "POINT (436028.1831013292539865 2107027.5865084221586585)", - "surface": 10490000, - "canton": null, - "numero_insee": "16095" - } - }, - { - "pk": 4649, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHERVES-CHATELARS", - "center": "POINT (461380.1101893214508891 2091522.8107233480550349)", - "surface": 30690000, - "canton": null, - "numero_insee": "16096" - } - }, - { - "pk": 20542, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHERVES-RICHEMONT", - "center": "POINT (391858.1935533607611433 2086243.9169574799016118)", - "surface": 37060000, - "canton": null, - "numero_insee": "16097" - } - }, - { - "pk": 31692, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA CHEVRERIE", - "center": "POINT (429628.4611176273319870 2118385.2221775772050023)", - "surface": 4690000, - "canton": null, - "numero_insee": "16098" - } - }, - { - "pk": 5367, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHILLAC", - "center": "POINT (409832.0408972469158471 2042950.3588239396922290)", - "surface": 14700000, - "canton": null, - "numero_insee": "16099" - } - }, - { - "pk": 24886, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CHIRAC", - "center": "POINT (471797.0848043197765946 2102719.5904200691729784)", - "surface": 34460000, - "canton": null, - "numero_insee": "16100" - } - }, - { - "pk": 11938, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CLAIX", - "center": "POINT (421473.2884235862875357 2063566.3486842722631991)", - "surface": 14810000, - "canton": null, - "numero_insee": "16101" - } - }, - { - "pk": 19371, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COMBIERS", - "center": "POINT (449342.0499391148332506 2058491.7222009433899075)", - "surface": 24100000, - "canton": null, - "numero_insee": "16103" - } - }, - { - "pk": 34510, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CONDAC", - "center": "POINT (436751.0651284719351679 2116442.2646588468924165)", - "surface": 9570000, - "canton": null, - "numero_insee": "16104" - } - }, - { - "pk": 21102, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CONDEON", - "center": "POINT (406491.0592584757250734 2047527.2851529819890857)", - "surface": 31180000, - "canton": null, - "numero_insee": "16105" - } - }, - { - "pk": 34958, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CONFOLENS", - "center": "POINT (469997.6477181978989393 2114515.6058607706800103)", - "surface": 19020000, - "canton": null, - "numero_insee": "16106" - } - }, - { - "pk": 9081, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COULGENS", - "center": "POINT (439852.2535568170715123 2092445.5716674253344536)", - "surface": 11820000, - "canton": null, - "numero_insee": "16107" - } - }, - { - "pk": 33754, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COULONGES", - "center": "POINT (425413.2383098923019134 2095529.2027570141945034)", - "surface": 3000000, - "canton": null, - "numero_insee": "16108" - } - }, - { - "pk": 11360, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COURBILLAC", - "center": "POINT (404147.5273603706737049 2088947.6550110299140215)", - "surface": 11900000, - "canton": null, - "numero_insee": "16109" - } - }, - { - "pk": 16167, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COURCOME", - "center": "POINT (429281.8848542005871423 2111876.3579253624193370)", - "surface": 19720000, - "canton": null, - "numero_insee": "16110" - } - }, - { - "pk": 28968, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COURGEAC", - "center": "POINT (423417.9470976648735814 2046265.6561237350106239)", - "surface": 18530000, - "canton": null, - "numero_insee": "16111" - } - }, - { - "pk": 27857, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COURLAC", - "center": "POINT (423604.0389425602043048 2035857.0123244363348931)", - "surface": 6600000, - "canton": null, - "numero_insee": "16112" - } - }, - { - "pk": 26817, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "COUTURE", - "center": "POINT (441144.9929650969570503 2105568.5166673902422190)", - "surface": 10450000, - "canton": null, - "numero_insee": "16114" - } - }, - { - "pk": 16858, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CRESSAC-SAINT-GENIS", - "center": "POINT (418670.7046320810914040 2051431.5055520369205624)", - "surface": 8750000, - "canton": null, - "numero_insee": "16115" - } - }, - { - "pk": 11819, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CRITEUIL-LA-MAGDELEINE", - "center": "POINT (401060.8233234693761915 2062697.2293775882571936)", - "surface": 15230000, - "canton": null, - "numero_insee": "16116" - } - }, - { - "pk": 12070, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "CURAC", - "center": "POINT (418301.6711909079458565 2035512.9198796353302896)", - "surface": 4900000, - "canton": null, - "numero_insee": "16117" - } - }, - { - "pk": 5212, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "DEVIAT", - "center": "POINT (418198.3543393394211307 2048024.2982825816143304)", - "surface": 8410000, - "canton": null, - "numero_insee": "16118" - } - }, - { - "pk": 20857, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "DIGNAC", - "center": "POINT (439690.3780751238809898 2063616.8454290905501693)", - "surface": 27650000, - "canton": null, - "numero_insee": "16119" - } - }, - { - "pk": 14589, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "DIRAC", - "center": "POINT (436546.2168863727711141 2068595.6360766035504639)", - "surface": 29510000, - "canton": null, - "numero_insee": "16120" - } - }, - { - "pk": 30299, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "DOUZAT", - "center": "POINT (417829.6687856665230356 2080552.5070159535389394)", - "surface": 11420000, - "canton": null, - "numero_insee": "16121" - } - }, - { - "pk": 37188, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "EBREON", - "center": "POINT (421112.8761459918459877 2107204.6039220490492880)", - "surface": 10110000, - "canton": null, - "numero_insee": "16122" - } - }, - { - "pk": 13035, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ECHALLAT", - "center": "POINT (414706.2833344155224040 2083029.0934761201497167)", - "surface": 15170000, - "canton": null, - "numero_insee": "16123" - } - }, - { - "pk": 20635, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ECURAS", - "center": "POINT (462299.4579490070464090 2077216.9059552806429565)", - "surface": 24250000, - "canton": null, - "numero_insee": "16124" - } - }, - { - "pk": 15115, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "EDON", - "center": "POINT (444756.9790640394203365 2056151.5393511075526476)", - "surface": 16630000, - "canton": null, - "numero_insee": "16125" - } - }, - { - "pk": 32781, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "EMPURE", - "center": "POINT (422939.2837399592972361 2116328.1125344540923834)", - "surface": 8470000, - "canton": null, - "numero_insee": "16127" - } - }, - { - "pk": 21338, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "EPENEDE", - "center": "POINT (460840.9316298376652412 2120345.1133829085156322)", - "surface": 15760000, - "canton": null, - "numero_insee": "16128" - } - }, - { - "pk": 7319, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ERAVILLE", - "center": "POINT (410631.4233174815890379 2067380.5893795257434249)", - "surface": 5500000, - "canton": null, - "numero_insee": "16129" - } - }, - { - "pk": 9972, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LES ESSARDS", - "center": "POINT (425164.1331652416847646 2028762.9057631317991763)", - "surface": 9070000, - "canton": null, - "numero_insee": "16130" - } - }, - { - "pk": 37083, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ESSE", - "center": "POINT (474795.9327582915429957 2115256.0635352069512010)", - "surface": 30230000, - "canton": null, - "numero_insee": "16131" - } - }, - { - "pk": 15140, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ETAGNAC", - "center": "POINT (479426.0789456304628402 2100080.3905080142430961)", - "surface": 29480000, - "canton": null, - "numero_insee": "16132" - } - }, - { - "pk": 25404, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ETRIAC", - "center": "POINT (416688.0038886671536602 2061224.6169553038198501)", - "surface": 9540000, - "canton": null, - "numero_insee": "16133" - } - }, - { - "pk": 25624, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "EXIDEUIL", - "center": "POINT (470125.5077061629272066 2099102.3628520970232785)", - "surface": 20580000, - "canton": null, - "numero_insee": "16134" - } - }, - { - "pk": 27559, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "EYMOUTHIERS", - "center": "POINT (460629.4834354866179638 2073399.4423669686075300)", - "surface": 8710000, - "canton": null, - "numero_insee": "16135" - } - }, - { - "pk": 26081, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA FAYE", - "center": "POINT (431353.0742509921547025 2115596.8960459670051932)", - "surface": 13640000, - "canton": null, - "numero_insee": "16136" - } - }, - { - "pk": 22437, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FEUILLADE", - "center": "POINT (454071.7296014562016353 2067539.5541744898073375)", - "surface": 21970000, - "canton": null, - "numero_insee": "16137" - } - }, - { - "pk": 27239, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FLEAC", - "center": "POINT (424761.3821212585316971 2077506.8112116600386798)", - "surface": 12580000, - "canton": null, - "numero_insee": "16138" - } - }, - { - "pk": 9954, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FLEURAC", - "center": "POINT (411406.6847852231585421 2082601.4829391397070140)", - "surface": 2140000, - "canton": null, - "numero_insee": "16139" - } - }, - { - "pk": 13143, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FONTCLAIREAU", - "center": "POINT (433873.4586829601321369 2101304.4608334484510124)", - "surface": 5600000, - "canton": null, - "numero_insee": "16140" - } - }, - { - "pk": 33432, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FONTENILLE", - "center": "POINT (432252.2167201562551782 2103693.2952637267298996)", - "surface": 9480000, - "canton": null, - "numero_insee": "16141" - } - }, - { - "pk": 28828, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA FORET-DE-TESSE", - "center": "POINT (425294.2034048541099764 2122052.8096528202295303)", - "surface": 10820000, - "canton": null, - "numero_insee": "16142" - } - }, - { - "pk": 23483, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FOUQUEBRUNE", - "center": "POINT (432807.3856588617782108 2060757.2209965800866485)", - "surface": 27860000, - "canton": null, - "numero_insee": "16143" - } - }, - { - "pk": 18777, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FOUQUEURE", - "center": "POINT (424469.4600886649568565 2100726.2729579568840563)", - "surface": 16460000, - "canton": null, - "numero_insee": "16144" - } - }, - { - "pk": 30590, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "FOUSSIGNAC", - "center": "POINT (408308.0855564723024145 2082075.4436792207416147)", - "surface": 15070000, - "canton": null, - "numero_insee": "16145" - } - }, - { - "pk": 18503, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GARAT", - "center": "POINT (438623.2454816412646323 2071615.6874473507050425)", - "surface": 19450000, - "canton": null, - "numero_insee": "16146" - } - }, - { - "pk": 17990, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GARDES-LE-PONTAROUX", - "center": "POINT (441533.3970704264938831 2058627.2765989308245480)", - "surface": 13260000, - "canton": null, - "numero_insee": "16147" - } - }, - { - "pk": 15125, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GENAC", - "center": "POINT (420040.7758443995262496 2091581.1622391990385950)", - "surface": 25920000, - "canton": null, - "numero_insee": "16148" - } - }, - { - "pk": 14528, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GENOUILLAC", - "center": "POINT (463246.9156565457233228 2095742.2294975235126913)", - "surface": 14490000, - "canton": null, - "numero_insee": "16149" - } - }, - { - "pk": 7667, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GENSAC-LA-PALLUE", - "center": "POINT (396945.0623764441115782 2076276.3342574080452323)", - "surface": 19170000, - "canton": null, - "numero_insee": "16150" - } - }, - { - "pk": 9207, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GENTE", - "center": "POINT (393859.6352161545655690 2074148.9076805063523352)", - "surface": 11570000, - "canton": null, - "numero_insee": "16151" - } - }, - { - "pk": 3238, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GIMEUX", - "center": "POINT (389249.7860939247184433 2074811.6045397154521197)", - "surface": 7390000, - "canton": null, - "numero_insee": "16152" - } - }, - { - "pk": 25207, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GONDEVILLE", - "center": "POINT (405745.4196471433388069 2077249.7442648594733328)", - "surface": 5430000, - "canton": null, - "numero_insee": "16153" - } - }, - { - "pk": 27635, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GOND-PONTOUVRE", - "center": "POINT (430865.1144301155582070 2077757.4438401369843632)", - "surface": 7460000, - "canton": null, - "numero_insee": "16154" - } - }, - { - "pk": 35307, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LES GOURS", - "center": "POINT (413287.1626908174948767 2109442.1344849006272852)", - "surface": 11440000, - "canton": null, - "numero_insee": "16155" - } - }, - { - "pk": 17912, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GOURVILLE", - "center": "POINT (416713.9337961645796895 2094456.4194171573035419)", - "surface": 12990000, - "canton": null, - "numero_insee": "16156" - } - }, - { - "pk": 25423, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LE GRAND-MADIEU", - "center": "POINT (453450.6140194658655673 2106270.9437593710608780)", - "surface": 8380000, - "canton": null, - "numero_insee": "16157" - } - }, - { - "pk": 21682, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GRASSAC", - "center": "POINT (448776.1288203449221328 2066394.6401636190712452)", - "surface": 28310000, - "canton": null, - "numero_insee": "16158" - } - }, - { - "pk": 31065, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GUIZENGEARD", - "center": "POINT (407074.9074176236754283 2037422.2215881138108671)", - "surface": 14810000, - "canton": null, - "numero_insee": "16161" - } - }, - { - "pk": 16411, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GURAT", - "center": "POINT (437897.1435096848290414 2050489.3460051696747541)", - "surface": 16040000, - "canton": null, - "numero_insee": "16162" - } - }, - { - "pk": 27634, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "HIERSAC", - "center": "POINT (418454.1641602057497948 2077654.9069823925383389)", - "surface": 7390000, - "canton": null, - "numero_insee": "16163" - } - }, - { - "pk": 20061, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "HIESSE", - "center": "POINT (464162.8210645875660703 2118070.5353862401098013)", - "surface": 24840000, - "canton": null, - "numero_insee": "16164" - } - }, - { - "pk": 6870, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "HOULETTE", - "center": "POINT (401759.4542595130624250 2087226.3600567704997957)", - "surface": 7260000, - "canton": null, - "numero_insee": "16165" - } - }, - { - "pk": 8042, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "L'ISLE-D'ESPAGNAC", - "center": "POINT (433382.2177236072020605 2075976.5403540658298880)", - "surface": 6030000, - "canton": null, - "numero_insee": "16166" - } - }, - { - "pk": 20566, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JARNAC", - "center": "POINT (405128.3804641393944621 2079246.5580679387785494)", - "surface": 11940000, - "canton": null, - "numero_insee": "16167" - } - }, - { - "pk": 38061, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JAULDES", - "center": "POINT (437780.2262328855576925 2088825.0422560668084770)", - "surface": 25690000, - "canton": null, - "numero_insee": "16168" - } - }, - { - "pk": 5190, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JAVREZAC", - "center": "POINT (389694.1783312582410872 2081621.7358811746817082)", - "surface": 3610000, - "canton": null, - "numero_insee": "16169" - } - }, - { - "pk": 19278, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JUIGNAC", - "center": "POINT (429249.6807011721539311 2043110.7246304983273149)", - "surface": 24220000, - "canton": null, - "numero_insee": "16170" - } - }, - { - "pk": 24297, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JUILLAC-LE-COQ", - "center": "POINT (397608.2849030267680064 2068674.5354860075749457)", - "surface": 14560000, - "canton": null, - "numero_insee": "16171" - } - }, - { - "pk": 12322, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JUILLAGUET", - "center": "POINT (434551.9489213241031393 2055566.6237272671423852)", - "surface": 7290000, - "canton": null, - "numero_insee": "16172" - } - }, - { - "pk": 24298, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JUILLE", - "center": "POINT (429736.8230077520711347 2105273.9928544615395367)", - "surface": 8690000, - "canton": null, - "numero_insee": "16173" - } - }, - { - "pk": 34607, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JULIENNE", - "center": "POINT (400118.1919874842278659 2079905.9134596108924598)", - "surface": 6340000, - "canton": null, - "numero_insee": "16174" - } - }, - { - "pk": 24859, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "JURIGNAC", - "center": "POINT (414677.9503159812884405 2062208.9866964751854539)", - "surface": 16130000, - "canton": null, - "numero_insee": "16175" - } - }, - { - "pk": 30044, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LACHAISE", - "center": "POINT (398474.9957616442115977 2060673.9852528299670666)", - "surface": 9450000, - "canton": null, - "numero_insee": "16176" - } - }, - { - "pk": 24659, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LADIVILLE", - "center": "POINT (412395.7165362825617194 2059787.8354443169664592)", - "surface": 7190000, - "canton": null, - "numero_insee": "16177" - } - }, - { - "pk": 14103, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LAGARDE-SUR-LE-NE", - "center": "POINT (401279.9819683972746134 2060396.8190213681664318)", - "surface": 4120000, - "canton": null, - "numero_insee": "16178" - } - }, - { - "pk": 27262, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LAMERAC", - "center": "POINT (398651.8122510814573616 2051366.4383560733404011)", - "surface": 9030000, - "canton": null, - "numero_insee": "16179" - } - }, - { - "pk": 28745, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LAPRADE", - "center": "POINT (431233.3314405715209432 2033217.4110815194435418)", - "surface": 10350000, - "canton": null, - "numero_insee": "16180" - } - }, - { - "pk": 15700, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LESSAC", - "center": "POINT (469449.8998504739138298 2120216.3109228513203561)", - "surface": 34270000, - "canton": null, - "numero_insee": "16181" - } - }, - { - "pk": 23575, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LESTERPS", - "center": "POINT (480314.7533450599294156 2113600.3062674608081579)", - "surface": 35860000, - "canton": null, - "numero_insee": "16182" - } - }, - { - "pk": 5561, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LESIGNAC-DURAND", - "center": "POINT (468483.8077967108692974 2091881.9956708454992622)", - "surface": 19890000, - "canton": null, - "numero_insee": "16183" - } - }, - { - "pk": 13540, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LICHERES", - "center": "POINT (435363.9967456495505758 2102617.9985930500552058)", - "surface": 4850000, - "canton": null, - "numero_insee": "16184" - } - }, - { - "pk": 12469, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LIGNE", - "center": "POINT (426743.3333066590712406 2104148.2309136143885553)", - "surface": 8000000, - "canton": null, - "numero_insee": "16185" - } - }, - { - "pk": 23952, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LIGNIERES-SONNEVILLE", - "center": "POINT (403136.2922618672600947 2065917.4201220511458814)", - "surface": 16450000, - "canton": null, - "numero_insee": "16186" - } - }, - { - "pk": 36719, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LINARS", - "center": "POINT (423580.1661872363183647 2075094.7666471009142697)", - "surface": 6030000, - "canton": null, - "numero_insee": "16187" - } - }, - { - "pk": 14026, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LONDIGNY", - "center": "POINT (430092.4905470621306449 2122793.1005297112278640)", - "surface": 9730000, - "canton": null, - "numero_insee": "16189" - } - }, - { - "pk": 28328, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LONGRE", - "center": "POINT (417159.1170712006278336 2113277.6126203886233270)", - "surface": 14790000, - "canton": null, - "numero_insee": "16190" - } - }, - { - "pk": 36494, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LONNES", - "center": "POINT (432828.7386740487418137 2106600.7601269790902734)", - "surface": 7540000, - "canton": null, - "numero_insee": "16191" - } - }, - { - "pk": 19649, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ROUMAZIERES-LOUBERT", - "center": "POINT (463090.4055959067773074 2102547.2878602072596550)", - "surface": 46460000, - "canton": null, - "numero_insee": "16192" - } - }, - { - "pk": 25767, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LOUZAC-SAINT-ANDRE", - "center": "POINT (387172.1973919564043172 2084003.2446955617051572)", - "surface": 10140000, - "canton": null, - "numero_insee": "16193" - } - }, - { - "pk": 7071, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LUPSAULT", - "center": "POINT (413710.6342453664401546 2106643.0288495230488479)", - "surface": 11430000, - "canton": null, - "numero_insee": "16194" - } - }, - { - "pk": 7825, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LUSSAC", - "center": "POINT (454728.7540905682835728 2096972.8549513744655997)", - "surface": 11590000, - "canton": null, - "numero_insee": "16195" - } - }, - { - "pk": 37875, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LUXE", - "center": "POINT (428264.4784627091139555 2101758.5631287726573646)", - "surface": 12110000, - "canton": null, - "numero_insee": "16196" - } - }, - { - "pk": 37013, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA MAGDELEINE", - "center": "POINT (425219.7500420550350100 2118949.3454652661457658)", - "surface": 6770000, - "canton": null, - "numero_insee": "16197" - } - }, - { - "pk": 26575, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAGNAC-SUR-TOUVRE", - "center": "POINT (436293.0594940109294839 2074999.6586618088185787)", - "surface": 7850000, - "canton": null, - "numero_insee": "16199" - } - }, - { - "pk": 9180, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAINE-DE-BOIXE", - "center": "POINT (432311.7909812167636119 2096487.0600220505148172)", - "surface": 9390000, - "canton": null, - "numero_insee": "16200" - } - }, - { - "pk": 30828, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAINFONDS", - "center": "POINT (418698.0603570975363255 2060240.2496128079947084)", - "surface": 9290000, - "canton": null, - "numero_insee": "16201" - } - }, - { - "pk": 37493, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAINXE", - "center": "POINT (403454.9407777984160930 2075829.5215376743581146)", - "surface": 10220000, - "canton": null, - "numero_insee": "16202" - } - }, - { - "pk": 28715, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAINZAC", - "center": "POINT (454708.7484702169313096 2063140.6062278987374157)", - "surface": 11420000, - "canton": null, - "numero_insee": "16203" - } - }, - { - "pk": 8732, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MALAVILLE", - "center": "POINT (409455.9536079780664295 2064267.9125168127939105)", - "surface": 12850000, - "canton": null, - "numero_insee": "16204" - } - }, - { - "pk": 16373, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MANOT", - "center": "POINT (466972.1913790253456682 2105181.8953708517365158)", - "surface": 20210000, - "canton": null, - "numero_insee": "16205" - } - }, - { - "pk": 19764, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MARCILLAC-LANVILLE", - "center": "POINT (419888.6189495644066483 2097885.8193262377753854)", - "surface": 18510000, - "canton": null, - "numero_insee": "16207" - } - }, - { - "pk": 31477, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAREUIL", - "center": "POINT (407652.2416651885723695 2088776.3711529057472944)", - "surface": 11530000, - "canton": null, - "numero_insee": "16208" - } - }, - { - "pk": 25057, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MARILLAC-LE-FRANC", - "center": "POINT (451742.1117906298022717 2082934.9317493787966669)", - "surface": 14380000, - "canton": null, - "numero_insee": "16209" - } - }, - { - "pk": 28768, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MARTHON", - "center": "POINT (452447.9219763283617795 2070228.6889927778393030)", - "surface": 12830000, - "canton": null, - "numero_insee": "16211" - } - }, - { - "pk": 22885, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MASSIGNAC", - "center": "POINT (469319.3749724776716903 2087684.9714830922894180)", - "surface": 23940000, - "canton": null, - "numero_insee": "16212" - } - }, - { - "pk": 22414, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAZEROLLES", - "center": "POINT (458641.5363520168466493 2083792.8485866158735007)", - "surface": 17450000, - "canton": null, - "numero_insee": "16213" - } - }, - { - "pk": 37872, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MAZIERES", - "center": "POINT (461655.4819298875518143 2094527.9113564020954072)", - "surface": 5840000, - "canton": null, - "numero_insee": "16214" - } - }, - { - "pk": 12727, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MEDILLAC", - "center": "POINT (417474.4067699046572670 2026597.3082035244442523)", - "surface": 5820000, - "canton": null, - "numero_insee": "16215" - } - }, - { - "pk": 14680, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MERIGNAC", - "center": "POINT (412428.2139945708913729 2080107.5404746246058494)", - "surface": 18690000, - "canton": null, - "numero_insee": "16216" - } - }, - { - "pk": 14081, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MERPINS", - "center": "POINT (388923.1449619663180783 2078011.9644715469330549)", - "surface": 10390000, - "canton": null, - "numero_insee": "16217" - } - }, - { - "pk": 13955, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MESNAC", - "center": "POINT (391629.9887288183672354 2089645.2480114973150194)", - "surface": 6580000, - "canton": null, - "numero_insee": "16218" - } - }, - { - "pk": 6392, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LES METAIRIES", - "center": "POINT (404307.8655537127051502 2081642.0708374036476016)", - "surface": 5240000, - "canton": null, - "numero_insee": "16220" - } - }, - { - "pk": 19615, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONS", - "center": "POINT (415968.7095911097712815 2099855.3267797948792577)", - "surface": 20090000, - "canton": null, - "numero_insee": "16221" - } - }, - { - "pk": 16276, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTBOYER", - "center": "POINT (422174.6459629612509161 2039248.5409898941870779)", - "surface": 26680000, - "canton": null, - "numero_insee": "16222" - } - }, - { - "pk": 17999, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTBRON", - "center": "POINT (457206.5681825689389370 2075773.3623232147656381)", - "surface": 43080000, - "canton": null, - "numero_insee": "16223" - } - }, - { - "pk": 20300, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTCHAUDE", - "center": "POINT (400843.0726291335304268 2052685.7650548035744578)", - "surface": 14200000, - "canton": null, - "numero_insee": "16224" - } - }, - { - "pk": 26852, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTEMBOEUF", - "center": "POINT (461113.0336557968985289 2087516.8289515662472695)", - "surface": 16050000, - "canton": null, - "numero_insee": "16225" - } - }, - { - "pk": 11746, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTIGNAC-LE-COQ", - "center": "POINT (433678.5103065245784819 2040144.4057116450276226)", - "surface": 10210000, - "canton": null, - "numero_insee": "16227" - } - }, - { - "pk": 27240, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTIGNE", - "center": "POINT (412215.7967520346865058 2093718.6355023027863353)", - "surface": 9050000, - "canton": null, - "numero_insee": "16228" - } - }, - { - "pk": 29039, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTJEAN", - "center": "POINT (427693.7612177716800943 2122372.9105197279714048)", - "surface": 8090000, - "canton": null, - "numero_insee": "16229" - } - }, - { - "pk": 3946, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTMOREAU-SAINT-CYBARD", - "center": "POINT (426996.3959068880067207 2049298.1462012655101717)", - "surface": 12080000, - "canton": null, - "numero_insee": "16230" - } - }, - { - "pk": 23304, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MONTROLLET", - "center": "POINT (488643.4679691760102287 2111067.0832800506614149)", - "surface": 22080000, - "canton": null, - "numero_insee": "16231" - } - }, - { - "pk": 18045, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MORNAC", - "center": "POINT (440772.1968951147282496 2078039.5675926853436977)", - "surface": 23400000, - "canton": null, - "numero_insee": "16232" - } - }, - { - "pk": 13223, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MOSNAC", - "center": "POINT (416707.1112303928821348 2071034.1854077000170946)", - "surface": 6280000, - "canton": null, - "numero_insee": "16233" - } - }, - { - "pk": 15124, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MOULIDARS", - "center": "POINT (414956.8556244996725582 2076925.3674795175902545)", - "surface": 17130000, - "canton": null, - "numero_insee": "16234" - } - }, - { - "pk": 7710, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MOUTHIERS-SUR-BOEME", - "center": "POINT (427072.5032900466467254 2064313.2817058747168630)", - "surface": 34890000, - "canton": null, - "numero_insee": "16236" - } - }, - { - "pk": 27838, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MOUTON", - "center": "POINT (436981.1067143555264920 2100729.5990243456326425)", - "surface": 9020000, - "canton": null, - "numero_insee": "16237" - } - }, - { - "pk": 22297, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MOUTONNEAU", - "center": "POINT (436156.4108736871276051 2103625.4836074723862112)", - "surface": 4230000, - "canton": null, - "numero_insee": "16238" - } - }, - { - "pk": 35129, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "MOUZON", - "center": "POINT (465798.8848371618660167 2089757.7521896606776863)", - "surface": 10710000, - "canton": null, - "numero_insee": "16239" - } - }, - { - "pk": 3112, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NABINAUD", - "center": "POINT (433122.6572391969384626 2034734.5090164190623909)", - "surface": 5960000, - "canton": null, - "numero_insee": "16240" - } - }, - { - "pk": 7191, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NANCLARS", - "center": "POINT (435819.7974222631310113 2095915.5035036280751228)", - "surface": 5770000, - "canton": null, - "numero_insee": "16241" - } - }, - { - "pk": 18355, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NANTEUIL-EN-VALLEE", - "center": "POINT (444080.4862174040172249 2113700.3157679140567780)", - "surface": 68470000, - "canton": null, - "numero_insee": "16242" - } - }, - { - "pk": 28764, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NERCILLAC", - "center": "POINT (396984.1140728673199192 2083683.6877562522422522)", - "surface": 16340000, - "canton": null, - "numero_insee": "16243" - } - }, - { - "pk": 36041, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NERSAC", - "center": "POINT (422604.9108522360911593 2071983.7511010251473635)", - "surface": 9230000, - "canton": null, - "numero_insee": "16244" - } - }, - { - "pk": 26618, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NIEUIL", - "center": "POINT (459311.1791372261941433 2099613.2559159942902625)", - "surface": 23760000, - "canton": null, - "numero_insee": "16245" - } - }, - { - "pk": 33467, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NONAC", - "center": "POINT (421390.5042203015764244 2049351.9270057114772499)", - "surface": 20990000, - "canton": null, - "numero_insee": "16246" - } - }, - { - "pk": 14268, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "NONAVILLE", - "center": "POINT (410876.2007626864360645 2061977.4172437456436455)", - "surface": 6870000, - "canton": null, - "numero_insee": "16247" - } - }, - { - "pk": 37878, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ORADOUR", - "center": "POINT (415833.9236560987774283 2104058.1339330929331481)", - "surface": 14460000, - "canton": null, - "numero_insee": "16248" - } - }, - { - "pk": 20159, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ORADOUR-FANAIS", - "center": "POINT (479819.6805570679716766 2125006.6750244516879320)", - "surface": 26370000, - "canton": null, - "numero_insee": "16249" - } - }, - { - "pk": 12610, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ORGEDEUIL", - "center": "POINT (455877.2244905119296163 2079165.5814968356862664)", - "surface": 10400000, - "canton": null, - "numero_insee": "16250" - } - }, - { - "pk": 14525, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ORIOLLES", - "center": "POINT (406131.9775520084658638 2042519.4416258076671511)", - "surface": 18250000, - "canton": null, - "numero_insee": "16251" - } - }, - { - "pk": 31269, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ORIVAL", - "center": "POINT (422018.2855656276224181 2033942.0429568435065448)", - "surface": 5440000, - "canton": null, - "numero_insee": "16252" - } - }, - { - "pk": 21542, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PAIZAY-NAUDOUIN-EMBOURIE", - "center": "POINT (419226.2072064590756781 2117498.5554769095033407)", - "surface": 25680000, - "canton": null, - "numero_insee": "16253" - } - }, - { - "pk": 34873, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PALLUAUD", - "center": "POINT (435875.5473230587667786 2040763.1632436537183821)", - "surface": 8570000, - "canton": null, - "numero_insee": "16254" - } - }, - { - "pk": 10245, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PARZAC", - "center": "POINT (451363.7256721425801516 2104451.9856287417933345)", - "surface": 11290000, - "canton": null, - "numero_insee": "16255" - } - }, - { - "pk": 15117, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PASSIRAC", - "center": "POINT (411947.1679991335840896 2041366.2481408857274801)", - "surface": 14640000, - "canton": null, - "numero_insee": "16256" - } - }, - { - "pk": 4864, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PEREUIL", - "center": "POINT (415430.6318253872450441 2055909.1167139683384448)", - "surface": 17140000, - "canton": null, - "numero_insee": "16257" - } - }, - { - "pk": 17984, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PERIGNAC", - "center": "POINT (423652.0657677433919162 2054275.3668398566078395)", - "surface": 25580000, - "canton": null, - "numero_insee": "16258" - } - }, - { - "pk": 37468, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA PERUSE", - "center": "POINT (467024.4838627068093047 2098876.4545271759852767)", - "surface": 8520000, - "canton": null, - "numero_insee": "16259" - } - }, - { - "pk": 18600, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PILLAC", - "center": "POINT (430896.6465328491758555 2037618.9530181521549821)", - "surface": 19590000, - "canton": null, - "numero_insee": "16260" - } - }, - { - "pk": 3992, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LES PINS", - "center": "POINT (447061.8420389886596240 2092104.8596258971374482)", - "surface": 20950000, - "canton": null, - "numero_insee": "16261" - } - }, - { - "pk": 23742, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PLAIZAC", - "center": "POINT (408871.4571234437753446 2086584.3514866149052978)", - "surface": 4000000, - "canton": null, - "numero_insee": "16262" - } - }, - { - "pk": 27858, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PLASSAC-ROUFFIAC", - "center": "POINT (423398.1386718825669959 2060779.5520756219048053)", - "surface": 12040000, - "canton": null, - "numero_insee": "16263" - } - }, - { - "pk": 15355, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PLEUVILLE", - "center": "POINT (457411.5053623585845344 2123519.6299737663939595)", - "surface": 33350000, - "canton": null, - "numero_insee": "16264" - } - }, - { - "pk": 36067, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "POULLIGNAC", - "center": "POINT (416107.1952146312105469 2046705.7651731860823929)", - "surface": 8930000, - "canton": null, - "numero_insee": "16267" - } - }, - { - "pk": 10385, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "POURSAC", - "center": "POINT (439416.2061617204453796 2108857.2798852263949811)", - "surface": 11450000, - "canton": null, - "numero_insee": "16268" - } - }, - { - "pk": 24863, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PRESSIGNAC", - "center": "POINT (475887.7619031659560278 2092243.7106679594144225)", - "surface": 28070000, - "canton": null, - "numero_insee": "16270" - } - }, - { - "pk": 37432, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "PUYMOYEN", - "center": "POINT (431124.0367150314850733 2070652.8111492330208421)", - "surface": 7390000, - "canton": null, - "numero_insee": "16271" - } - }, - { - "pk": 4117, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RAIX", - "center": "POINT (427963.4023200561059639 2113967.4039879110641778)", - "surface": 6930000, - "canton": null, - "numero_insee": "16273" - } - }, - { - "pk": 9080, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RANCOGNE", - "center": "POINT (448665.0785078180488199 2079806.5113198561593890)", - "surface": 12650000, - "canton": null, - "numero_insee": "16274" - } - }, - { - "pk": 26022, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RANVILLE-BREUILLAUD", - "center": "POINT (409028.0512097179889679 2104001.9721636162139475)", - "surface": 12860000, - "canton": null, - "numero_insee": "16275" - } - }, - { - "pk": 37256, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "REIGNAC", - "center": "POINT (403465.2288115005358122 2050305.0544859515503049)", - "surface": 21960000, - "canton": null, - "numero_insee": "16276" - } - }, - { - "pk": 6958, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "REPARSAC", - "center": "POINT (398674.0600081236916594 2085098.9409916314762086)", - "surface": 11130000, - "canton": null, - "numero_insee": "16277" - } - }, - { - "pk": 8819, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RIOUX-MARTIN", - "center": "POINT (416147.5896482618409209 2029689.4176746055018157)", - "surface": 14620000, - "canton": null, - "numero_insee": "16279" - } - }, - { - "pk": 36319, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RIVIERES", - "center": "POINT (446108.1944803182268515 2086391.5936746539082378)", - "surface": 21730000, - "canton": null, - "numero_insee": "16280" - } - }, - { - "pk": 32294, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA ROCHEFOUCAULD", - "center": "POINT (448736.1616109812748618 2083310.4184198488947004)", - "surface": 7150000, - "canton": null, - "numero_insee": "16281" - } - }, - { - "pk": 35557, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA ROCHETTE", - "center": "POINT (442470.2555035765981302 2090565.4453964645508677)", - "surface": 11150000, - "canton": null, - "numero_insee": "16282" - } - }, - { - "pk": 26715, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RONSENAC", - "center": "POINT (435875.4692723295884207 2052874.9535070124547929)", - "surface": 26640000, - "canton": null, - "numero_insee": "16283" - } - }, - { - "pk": 24274, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ROUFFIAC", - "center": "POINT (424237.6678287171525881 2031858.3101248408202082)", - "surface": 9850000, - "canton": null, - "numero_insee": "16284" - } - }, - { - "pk": 15672, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ROUGNAC", - "center": "POINT (445112.5994533789344132 2061559.6955546820536256)", - "surface": 29880000, - "canton": null, - "numero_insee": "16285" - } - }, - { - "pk": 23559, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ROUILLAC", - "center": "POINT (412449.0088848478626460 2089716.7957011424005032)", - "surface": 29330000, - "canton": null, - "numero_insee": "16286" - } - }, - { - "pk": 21098, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ROULLET-SAINT-ESTEPHE", - "center": "POINT (420043.1060376302339137 2067057.8994467358570546)", - "surface": 41640000, - "canton": null, - "numero_insee": "16287" - } - }, - { - "pk": 30162, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ROUSSINES", - "center": "POINT (466166.3778024191269651 2081653.1467813267372549)", - "surface": 16000000, - "canton": null, - "numero_insee": "16289" - } - }, - { - "pk": 27499, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "ROUZEDE", - "center": "POINT (461863.4275013232836500 2081517.3747154825832695)", - "surface": 14350000, - "canton": null, - "numero_insee": "16290" - } - }, - { - "pk": 35854, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RUELLE-SUR-TOUVRE", - "center": "POINT (435967.1333252027980052 2078099.9146534928586334)", - "surface": 10600000, - "canton": null, - "numero_insee": "16291" - } - }, - { - "pk": 29038, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "RUFFEC", - "center": "POINT (434539.2568622754188254 2117625.0805735597386956)", - "surface": 13530000, - "canton": null, - "numero_insee": "16292" - } - }, - { - "pk": 6985, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-ADJUTORY", - "center": "POINT (455411.3641190362395719 2087069.2022422566078603)", - "surface": 14160000, - "canton": null, - "numero_insee": "16293" - } - }, - { - "pk": 8933, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-AMANT", - "center": "POINT (430416.8464663039194420 2047224.3736453521996737)", - "surface": 27230000, - "canton": null, - "numero_insee": "16294" - } - }, - { - "pk": 14536, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-AMANT-DE-BOIXE", - "center": "POINT (429150.3709398483624682 2091456.2323995309416205)", - "surface": 22530000, - "canton": null, - "numero_insee": "16295" - } - }, - { - "pk": 9555, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-AMANT-DE-BONNIEURE", - "center": "POINT (441512.3284635774325579 2097463.9970980333164334)", - "surface": 10640000, - "canton": null, - "numero_insee": "16296" - } - }, - { - "pk": 10341, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "GRAVES-SAINT-AMANT", - "center": "POINT (409577.6809023637324572 2073778.0200304344762117)", - "surface": 9030000, - "canton": null, - "numero_insee": "16297" - } - }, - { - "pk": 20580, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-AMANT-DE-NOUERE", - "center": "POINT (417697.3521384624182247 2084455.1114718199241906)", - "surface": 11120000, - "canton": null, - "numero_insee": "16298" - } - }, - { - "pk": 21770, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-ANGEAU", - "center": "POINT (439630.5514058652333915 2095046.1791958424728364)", - "surface": 10960000, - "canton": null, - "numero_insee": "16300" - } - }, - { - "pk": 9973, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-AVIT", - "center": "POINT (419951.9095884294947609 2029620.7348676428664476)", - "surface": 3690000, - "canton": null, - "numero_insee": "16302" - } - }, - { - "pk": 3712, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-BONNET", - "center": "POINT (410229.2562540462822653 2055465.8001863998360932)", - "surface": 17790000, - "canton": null, - "numero_insee": "16303" - } - }, - { - "pk": 28502, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-BRICE", - "center": "POINT (397314.8968761207070202 2079982.9030786911025643)", - "surface": 9350000, - "canton": null, - "numero_insee": "16304" - } - }, - { - "pk": 17028, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (484827.7434465284459293 2112536.7695331592112780)", - "surface": 23300000, - "canton": null, - "numero_insee": "16306" - } - }, - { - "pk": 14925, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-CIERS-SUR-BONNIEURE", - "center": "POINT (437803.3227989348815754 2098133.9689567619934678)", - "surface": 10360000, - "canton": null, - "numero_insee": "16307" - } - }, - { - "pk": 18000, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-CLAUD", - "center": "POINT (455191.8759626433602534 2101480.8978342125192285)", - "surface": 26600000, - "canton": null, - "numero_insee": "16308" - } - }, - { - "pk": 29924, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINTE-COLOMBE", - "center": "POINT (443241.9643326516379602 2094075.1218517406377941)", - "surface": 6540000, - "canton": null, - "numero_insee": "16309" - } - }, - { - "pk": 5802, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-COUTANT", - "center": "POINT (455003.0733215891523287 2112189.2737789894454181)", - "surface": 19480000, - "canton": null, - "numero_insee": "16310" - } - }, - { - "pk": 21967, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-CYBARDEAUX", - "center": "POINT (416262.2462591227376834 2088547.1377145610749722)", - "surface": 20910000, - "canton": null, - "numero_insee": "16312" - } - }, - { - "pk": 11245, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-EUTROPE", - "center": "POINT (425595.9568387441104278 2049186.4761380385607481)", - "surface": 2640000, - "canton": null, - "numero_insee": "16314" - } - }, - { - "pk": 28743, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-FELIX", - "center": "POINT (417832.7046866491436958 2043817.1821420621126890)", - "surface": 8070000, - "canton": null, - "numero_insee": "16315" - } - }, - { - "pk": 33594, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-FORT-SUR-LE-NE", - "center": "POINT (393909.1121273975004442 2068143.5736740282736719)", - "surface": 6770000, - "canton": null, - "numero_insee": "16316" - } - }, - { - "pk": 14923, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-FRAIGNE", - "center": "POINT (417695.0754741799319163 2108978.0541311763226986)", - "surface": 32100000, - "canton": null, - "numero_insee": "16317" - } - }, - { - "pk": 31092, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-FRONT", - "center": "POINT (440477.5109948425670154 2101559.2677126363851130)", - "surface": 13200000, - "canton": null, - "numero_insee": "16318" - } - }, - { - "pk": 12884, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-GEORGES", - "center": "POINT (439803.3024156767642125 2110461.9653773591853678)", - "surface": 2240000, - "canton": null, - "numero_insee": "16321" - } - }, - { - "pk": 7956, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-GERMAIN-DE-MONTBRON", - "center": "POINT (450030.0428888887399808 2072110.4805741584859788)", - "surface": 14950000, - "canton": null, - "numero_insee": "16323" - } - }, - { - "pk": 14090, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-GOURSON", - "center": "POINT (443028.4091976981144398 2107786.1450461931526661)", - "surface": 10100000, - "canton": null, - "numero_insee": "16325" - } - }, - { - "pk": 13807, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-GROUX", - "center": "POINT (430870.8634674784261733 2101279.6381184509955347)", - "surface": 4430000, - "canton": null, - "numero_insee": "16326" - } - }, - { - "pk": 14837, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-LAURENT-DE-BELZAGOT", - "center": "POINT (425432.1664027735823765 2044780.8349270492326468)", - "surface": 10030000, - "canton": null, - "numero_insee": "16328" - } - }, - { - "pk": 21607, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-LAURENT-DE-CERIS", - "center": "POINT (457453.2273916339036077 2106404.1960437414236367)", - "surface": 29690000, - "canton": null, - "numero_insee": "16329" - } - }, - { - "pk": 12037, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-LAURENT-DE-COGNAC", - "center": "POINT (387298.6559384963475168 2080801.2503594381269068)", - "surface": 10920000, - "canton": null, - "numero_insee": "16330" - } - }, - { - "pk": 26204, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-LAURENT-DES-COMBES", - "center": "POINT (419550.7820407494436949 2041829.4148043838795274)", - "surface": 7670000, - "canton": null, - "numero_insee": "16331" - } - }, - { - "pk": 6867, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-LEGER", - "center": "POINT (420659.2836033046478406 2053049.4815694848075509)", - "surface": 4240000, - "canton": null, - "numero_insee": "16332" - } - }, - { - "pk": 8688, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-MARTIAL", - "center": "POINT (421436.8026429745368659 2043746.8500452882144600)", - "surface": 9310000, - "canton": null, - "numero_insee": "16334" - } - }, - { - "pk": 23018, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-MARTIN-DU-CLOCHER", - "center": "POINT (430811.2841587658040226 2120597.0217212568968534)", - "surface": 6780000, - "canton": null, - "numero_insee": "16335" - } - }, - { - "pk": 16323, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-MARY", - "center": "POINT (446630.8380730662029237 2095804.7653605269733816)", - "surface": 21690000, - "canton": null, - "numero_insee": "16336" - } - }, - { - "pk": 16943, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-MAURICE-DES-LIONS", - "center": "POINT (473146.8020898439572193 2108936.5524988351389766)", - "surface": 49990000, - "canton": null, - "numero_insee": "16337" - } - }, - { - "pk": 25208, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "AUGE-SAINT-MEDARD", - "center": "POINT (411684.8035213847761042 2097417.7251060656271875)", - "surface": 17410000, - "canton": null, - "numero_insee": "16339" - } - }, - { - "pk": 28053, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-MEME-LES-CARRIERES", - "center": "POINT (406668.5053693990921602 2074554.7844329648651183)", - "surface": 15140000, - "canton": null, - "numero_insee": "16340" - } - }, - { - "pk": 27441, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-MICHEL", - "center": "POINT (426396.7041329067433253 2073416.4154216789174825)", - "surface": 2490000, - "canton": null, - "numero_insee": "16341" - } - }, - { - "pk": 23415, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-PALAIS-DU-NE", - "center": "POINT (395048.8542440837481990 2063448.4480190454050899)", - "surface": 13550000, - "canton": null, - "numero_insee": "16342" - } - }, - { - "pk": 36715, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-PREUIL", - "center": "POINT (404205.0834033117862418 2069829.9745611208491027)", - "surface": 12530000, - "canton": null, - "numero_insee": "16343" - } - }, - { - "pk": 35596, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-PROJET-SAINT-CONSTANT", - "center": "POINT (444735.9621958266943693 2082876.9247260738629848)", - "surface": 16980000, - "canton": null, - "numero_insee": "16344" - } - }, - { - "pk": 13433, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-QUENTIN-SUR-CHARENTE", - "center": "POINT (470865.1398304095491767 2094404.0976759535260499)", - "surface": 14430000, - "canton": null, - "numero_insee": "16345" - } - }, - { - "pk": 35827, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-QUENTIN-DE-CHALAIS", - "center": "POINT (422255.6775814552675001 2029439.5670419181697071)", - "surface": 12450000, - "canton": null, - "numero_insee": "16346" - } - }, - { - "pk": 16857, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-ROMAIN", - "center": "POINT (427424.8858958389027975 2033786.5200341059826314)", - "surface": 22900000, - "canton": null, - "numero_insee": "16347" - } - }, - { - "pk": 20866, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-SATURNIN", - "center": "POINT (420964.6386477224295959 2076674.6867968838196248)", - "surface": 13490000, - "canton": null, - "numero_insee": "16348" - } - }, - { - "pk": 7070, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINTE-SEVERE", - "center": "POINT (398749.3998879297869280 2088102.3975503800902516)", - "surface": 18370000, - "canton": null, - "numero_insee": "16349" - } - }, - { - "pk": 14444, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-SEVERIN", - "center": "POINT (435909.4897346763173118 2036659.4238163069821894)", - "surface": 15090000, - "canton": null, - "numero_insee": "16350" - } - }, - { - "pk": 28918, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-SIMEUX", - "center": "POINT (415088.3394852197961882 2073122.8290952804964036)", - "surface": 9410000, - "canton": null, - "numero_insee": "16351" - } - }, - { - "pk": 8541, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-SIMON", - "center": "POINT (411964.9410307768266648 2075599.4354428008664399)", - "surface": 3720000, - "canton": null, - "numero_insee": "16352" - } - }, - { - "pk": 25056, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-SORNIN", - "center": "POINT (452475.8864536433829926 2078937.2148490962572396)", - "surface": 11240000, - "canton": null, - "numero_insee": "16353" - } - }, - { - "pk": 23031, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINTE-SOULINE", - "center": "POINT (415223.7314611705369316 2044596.4225721086841077)", - "surface": 7340000, - "canton": null, - "numero_insee": "16354" - } - }, - { - "pk": 24489, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-SULPICE-DE-COGNAC", - "center": "POINT (386338.5338070195284672 2088000.1646990214940161)", - "surface": 23740000, - "canton": null, - "numero_insee": "16355" - } - }, - { - "pk": 8155, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-SULPICE-DE-RUFFEC", - "center": "POINT (443542.9194126090733334 2106088.8233250458724797)", - "surface": 2400000, - "canton": null, - "numero_insee": "16356" - } - }, - { - "pk": 4645, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-VALLIER", - "center": "POINT (409999.0316767627373338 2034843.7920932450797409)", - "surface": 18280000, - "canton": null, - "numero_insee": "16357" - } - }, - { - "pk": 30589, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAINT-YRIEIX-SUR-CHARENTE", - "center": "POINT (427959.2453353819437325 2078133.8062067225109786)", - "surface": 14780000, - "canton": null, - "numero_insee": "16358" - } - }, - { - "pk": 14532, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SALLES-D'ANGLES", - "center": "POINT (390871.8137401236454025 2072322.5753871542401612)", - "surface": 21660000, - "canton": null, - "numero_insee": "16359" - } - }, - { - "pk": 5186, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SALLES-DE-BARBEZIEUX", - "center": "POINT (407645.9066681836848147 2053142.2567229685373604)", - "surface": 9860000, - "canton": null, - "numero_insee": "16360" - } - }, - { - "pk": 3982, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SALLES-DE-VILLEFAGNAN", - "center": "POINT (432109.1060538032324985 2108896.9467200073413551)", - "surface": 13110000, - "canton": null, - "numero_insee": "16361" - } - }, - { - "pk": 5305, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SALLES-LAVALETTE", - "center": "POINT (435137.6591142090037465 2045261.4582941241096705)", - "surface": 20420000, - "canton": null, - "numero_insee": "16362" - } - }, - { - "pk": 28110, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAULGOND", - "center": "POINT (479765.7616149743553251 2107390.0073587400838733)", - "surface": 27290000, - "canton": null, - "numero_insee": "16363" - } - }, - { - "pk": 3771, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SAUVAGNAC", - "center": "POINT (468544.4114543708856218 2084575.6153758196160197)", - "surface": 7270000, - "canton": null, - "numero_insee": "16364" - } - }, - { - "pk": 5239, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SEGONZAC", - "center": "POINT (400885.6445410333108157 2071804.5186682853382081)", - "surface": 35160000, - "canton": null, - "numero_insee": "16366" - } - }, - { - "pk": 33229, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SERS", - "center": "POINT (442465.5456526015186682 2066942.9780456474982202)", - "surface": 14170000, - "canton": null, - "numero_insee": "16368" - } - }, - { - "pk": 11916, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SIGOGNE", - "center": "POINT (405281.5069348326651379 2084953.2271707318723202)", - "surface": 22170000, - "canton": null, - "numero_insee": "16369" - } - }, - { - "pk": 35795, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SIREUIL", - "center": "POINT (419306.1146902726031840 2071456.0278210600372404)", - "surface": 10090000, - "canton": null, - "numero_insee": "16370" - } - }, - { - "pk": 8279, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SONNEVILLE", - "center": "POINT (408625.0443288396345451 2092187.5989586070645601)", - "surface": 10530000, - "canton": null, - "numero_insee": "16371" - } - }, - { - "pk": 32996, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SOUFFRIGNAC", - "center": "POINT (456480.4999977324623615 2066758.7438157233409584)", - "surface": 9460000, - "canton": null, - "numero_insee": "16372" - } - }, - { - "pk": 9854, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SOUVIGNE", - "center": "POINT (422788.7126515168929473 2110321.3215821934863925)", - "surface": 10480000, - "canton": null, - "numero_insee": "16373" - } - }, - { - "pk": 25973, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SOYAUX", - "center": "POINT (433905.0053614577045664 2073278.2883740011602640)", - "surface": 12720000, - "canton": null, - "numero_insee": "16374" - } - }, - { - "pk": 21976, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SUAUX", - "center": "POINT (458341.8304980875691399 2095801.6666318257339299)", - "surface": 11940000, - "canton": null, - "numero_insee": "16375" - } - }, - { - "pk": 17502, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "SURIS", - "center": "POINT (466750.7850644565187395 2095671.1892848666757345)", - "surface": 11110000, - "canton": null, - "numero_insee": "16376" - } - }, - { - "pk": 7923, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LA TACHE", - "center": "POINT (446708.5549370115622878 2098507.9370060097426176)", - "surface": 7220000, - "canton": null, - "numero_insee": "16377" - } - }, - { - "pk": 28972, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TAIZE-AIZIE", - "center": "POINT (438320.9732291210675612 2120258.7466674968600273)", - "surface": 14820000, - "canton": null, - "numero_insee": "16378" - } - }, - { - "pk": 11811, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TAPONNAT-FLEURIGNAC", - "center": "POINT (450701.4484600658761337 2087730.8506663271691650)", - "surface": 21570000, - "canton": null, - "numero_insee": "16379" - } - }, - { - "pk": 7220, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LE TATRE", - "center": "POINT (401287.9965067975572310 2047284.1808380314614624)", - "surface": 6050000, - "canton": null, - "numero_insee": "16380" - } - }, - { - "pk": 10117, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "THEIL-RABIER", - "center": "POINT (422610.0952510809293017 2119828.6169360200874507)", - "surface": 7510000, - "canton": null, - "numero_insee": "16381" - } - }, - { - "pk": 16280, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TORSAC", - "center": "POINT (433870.2990806145826355 2065370.4364552593324333)", - "surface": 28460000, - "canton": null, - "numero_insee": "16382" - } - }, - { - "pk": 9055, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TOURRIERS", - "center": "POINT (433363.9658506570849568 2090289.9343172209337354)", - "surface": 6820000, - "canton": null, - "numero_insee": "16383" - } - }, - { - "pk": 4671, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TOUVERAC", - "center": "POINT (401109.2713646751362830 2044680.1704733250662684)", - "surface": 18220000, - "canton": null, - "numero_insee": "16384" - } - }, - { - "pk": 29576, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TOUVRE", - "center": "POINT (438694.3549209786579013 2075119.6163441149983555)", - "surface": 9130000, - "canton": null, - "numero_insee": "16385" - } - }, - { - "pk": 4242, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TOUZAC", - "center": "POINT (405764.2043002668069676 2062836.1107160069514066)", - "surface": 15640000, - "canton": null, - "numero_insee": "16386" - } - }, - { - "pk": 34843, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TRIAC-LAUTRAIT", - "center": "POINT (408935.8623795021558180 2078777.4887445857748389)", - "surface": 6470000, - "canton": null, - "numero_insee": "16387" - } - }, - { - "pk": 11176, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TROIS-PALIS", - "center": "POINT (421390.6190206374740228 2073575.2494410101789981)", - "surface": 4160000, - "canton": null, - "numero_insee": "16388" - } - }, - { - "pk": 32125, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TURGON", - "center": "POINT (450637.4295680492650717 2107548.8530707769095898)", - "surface": 7250000, - "canton": null, - "numero_insee": "16389" - } - }, - { - "pk": 28971, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TUSSON", - "center": "POINT (424226.2931516927201301 2105929.1110372864641249)", - "surface": 13990000, - "canton": null, - "numero_insee": "16390" - } - }, - { - "pk": 8948, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "TUZIE", - "center": "POINT (430496.9767217199550942 2110184.8261626805178821)", - "surface": 2460000, - "canton": null, - "numero_insee": "16391" - } - }, - { - "pk": 25034, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VALENCE", - "center": "POINT (443293.1838641653885134 2099981.0713938120752573)", - "surface": 10890000, - "canton": null, - "numero_insee": "16392" - } - }, - { - "pk": 4000, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VARS", - "center": "POINT (428792.2084524837555364 2086348.4633993045426905)", - "surface": 27560000, - "canton": null, - "numero_insee": "16393" - } - }, - { - "pk": 34874, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VAUX-LAVALETTE", - "center": "POINT (435912.7216648130561225 2048370.8893995075486600)", - "surface": 6770000, - "canton": null, - "numero_insee": "16394" - } - }, - { - "pk": 32077, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VAUX-ROUILLAC", - "center": "POINT (411185.0360150168999098 2085202.1161657262127846)", - "surface": 13400000, - "canton": null, - "numero_insee": "16395" - } - }, - { - "pk": 27442, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VENTOUSE", - "center": "POINT (443866.3696586412843317 2103288.8939449279569089)", - "surface": 10020000, - "canton": null, - "numero_insee": "16396" - } - }, - { - "pk": 37991, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VERDILLE", - "center": "POINT (411157.1168730860808864 2100716.4582886593416333)", - "surface": 14420000, - "canton": null, - "numero_insee": "16397" - } - }, - { - "pk": 12609, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VERNEUIL", - "center": "POINT (472618.1077792707365006 2088212.8108773627318442)", - "surface": 7850000, - "canton": null, - "numero_insee": "16398" - } - }, - { - "pk": 7596, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VERRIERES", - "center": "POINT (397030.8466456398600712 2065867.0891250618733466)", - "surface": 13420000, - "canton": null, - "numero_insee": "16399" - } - }, - { - "pk": 13672, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VERTEUIL-SUR-CHARENTE", - "center": "POINT (436397.0744589995010756 2110834.1622744435444474)", - "surface": 14220000, - "canton": null, - "numero_insee": "16400" - } - }, - { - "pk": 12445, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VERVANT", - "center": "POINT (428519.2425787920947187 2095154.4928691375534981)", - "surface": 9490000, - "canton": null, - "numero_insee": "16401" - } - }, - { - "pk": 33203, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VIBRAC", - "center": "POINT (413177.5678193621570244 2074208.1077352687716484)", - "surface": 2850000, - "canton": null, - "numero_insee": "16402" - } - }, - { - "pk": 30425, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "LE VIEUX-CERIER", - "center": "POINT (453524.1718842046102509 2109474.5233029620721936)", - "surface": 9660000, - "canton": null, - "numero_insee": "16403" - } - }, - { - "pk": 6303, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VIEUX-RUFFEC", - "center": "POINT (448375.8779563045827672 2114736.7934680967591703)", - "surface": 12790000, - "canton": null, - "numero_insee": "16404" - } - }, - { - "pk": 17970, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VIGNOLLES", - "center": "POINT (409698.2497553816065192 2059164.9966881638392806)", - "surface": 8830000, - "canton": null, - "numero_insee": "16405" - } - }, - { - "pk": 9992, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILHONNEUR", - "center": "POINT (450092.0051435425411910 2076715.3798779244534671)", - "surface": 9480000, - "canton": null, - "numero_insee": "16406" - } - }, - { - "pk": 8291, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILLEBOIS-LAVALETTE", - "center": "POINT (439359.5781594463041984 2055206.0029964963905513)", - "surface": 7210000, - "canton": null, - "numero_insee": "16408" - } - }, - { - "pk": 34241, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILLEFAGNAN", - "center": "POINT (425854.1634270944632590 2114850.8073587878607213)", - "surface": 24020000, - "canton": null, - "numero_insee": "16409" - } - }, - { - "pk": 37490, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILLEGATS", - "center": "POINT (433482.1746837740065530 2112311.4480648078024387)", - "surface": 7770000, - "canton": null, - "numero_insee": "16410" - } - }, - { - "pk": 13574, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILLEJESUS", - "center": "POINT (421245.1984570923377760 2103302.0670227012597024)", - "surface": 17030000, - "canton": null, - "numero_insee": "16411" - } - }, - { - "pk": 9754, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILLEJOUBERT", - "center": "POINT (431848.5897528675850481 2091979.0059524856042117)", - "surface": 7880000, - "canton": null, - "numero_insee": "16412" - } - }, - { - "pk": 24654, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILLIERS-LE-ROUX", - "center": "POINT (427620.1405091339256614 2119169.3619557362981141)", - "surface": 4950000, - "canton": null, - "numero_insee": "16413" - } - }, - { - "pk": 8407, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VILLOGNON", - "center": "POINT (426993.9538889614632353 2098044.6059816903434694)", - "surface": 9170000, - "canton": null, - "numero_insee": "16414" - } - }, - { - "pk": 31222, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VINDELLE", - "center": "POINT (426421.5316928277607076 2082525.2764748153276742)", - "surface": 10910000, - "canton": null, - "numero_insee": "16415" - } - }, - { - "pk": 6542, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VITRAC-SAINT-VINCENT", - "center": "POINT (456786.0516824328806251 2090283.6084767130669206)", - "surface": 22300000, - "canton": null, - "numero_insee": "16416" - } - }, - { - "pk": 28084, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VIVILLE", - "center": "POINT (407779.2049052871880122 2061251.1902902089059353)", - "surface": 2890000, - "canton": null, - "numero_insee": "16417" - } - }, - { - "pk": 9767, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VOEUIL-ET-GIGET", - "center": "POINT (430043.7431238922290504 2068141.4869975685141981)", - "surface": 8500000, - "canton": null, - "numero_insee": "16418" - } - }, - { - "pk": 15575, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VOUHARTE", - "center": "POINT (424539.7417656040051952 2092218.8867676523514092)", - "surface": 10700000, - "canton": null, - "numero_insee": "16419" - } - }, - { - "pk": 30827, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VOULGEZAC", - "center": "POINT (427213.9499282435281202 2059309.6339104901999235)", - "surface": 13390000, - "canton": null, - "numero_insee": "16420" - } - }, - { - "pk": 26234, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VOUTHON", - "center": "POINT (452708.3946097883163020 2075035.4296377014834434)", - "surface": 10420000, - "canton": null, - "numero_insee": "16421" - } - }, - { - "pk": 31018, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "VOUZAN", - "center": "POINT (445755.2283186437562108 2068571.7393654542975128)", - "surface": 16250000, - "canton": null, - "numero_insee": "16422" - } - }, - { - "pk": 30372, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "XAMBES", - "center": "POINT (426627.5139657182153314 2093937.7339402996003628)", - "surface": 5290000, - "canton": null, - "numero_insee": "16423" - } - }, - { - "pk": 25597, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "YVIERS", - "center": "POINT (414618.1165514361346141 2033080.1440190395805985)", - "surface": 22750000, - "canton": null, - "numero_insee": "16424" - } - }, - { - "pk": 23710, - "model": "ishtar_common.town", - "fields": { - "departement": 16, - "name": "YVRAC-ET-MALLEYRAND", - "center": "POINT (454341.0789976549567655 2083356.8379020928405225)", - "surface": 18850000, - "canton": null, - "numero_insee": "16425" - } - }, - { - "pk": 26387, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "AGUDELLE", - "center": "POINT (380175.4470569070545025 2046309.4940190331544727)", - "surface": 5400000, - "canton": null, - "numero_insee": "17002" - } - }, - { - "pk": 7259, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "AIGREFEUILLE-D'AUNIS", - "center": "POINT (346362.2908359563443810 2129310.3374633314087987)", - "surface": 17110000, - "canton": null, - "numero_insee": "17003" - } - }, - { - "pk": 8930, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ILE-D'AIX", - "center": "POINT (328826.0527496574213728 2119557.8191166678443551)", - "surface": 1400000, - "canton": null, - "numero_insee": "17004" - } - }, - { - "pk": 28935, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ALLAS-BOCAGE", - "center": "POINT (377972.6256975508295000 2046391.4658922259695828)", - "surface": 10920000, - "canton": null, - "numero_insee": "17005" - } - }, - { - "pk": 37450, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ALLAS-CHAMPAGNE", - "center": "POINT (390705.9235779361333698 2056005.5242934708949178)", - "surface": 7690000, - "canton": null, - "numero_insee": "17006" - } - }, - { - "pk": 26287, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ANAIS", - "center": "POINT (349812.7059644869877957 2135744.4736534855328500)", - "surface": 9580000, - "canton": null, - "numero_insee": "17007" - } - }, - { - "pk": 27356, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ANDILLY", - "center": "POINT (341422.8574839339125901 2145784.8195041543804109)", - "surface": 28780000, - "canton": null, - "numero_insee": "17008" - } - }, - { - "pk": 26483, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ANGLIERS", - "center": "POINT (346481.2001120690256357 2139220.3251505647785962)", - "surface": 10770000, - "canton": null, - "numero_insee": "17009" - } - }, - { - "pk": 11170, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ANGOULINS", - "center": "POINT (333755.7170745001058094 2128706.5510141211561859)", - "surface": 8010000, - "canton": null, - "numero_insee": "17010" - } - }, - { - "pk": 12575, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ANNEPONT", - "center": "POINT (371341.5385089174378663 2098086.3817660086788237)", - "surface": 8890000, - "canton": null, - "numero_insee": "17011" - } - }, - { - "pk": 26088, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ANNEZAY", - "center": "POINT (365182.5451200679526664 2116753.1578734507784247)", - "surface": 7500000, - "canton": null, - "numero_insee": "17012" - } - }, - { - "pk": 19727, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ARCES", - "center": "POINT (349373.5181096319574863 2067276.9121225161943585)", - "surface": 21810000, - "canton": null, - "numero_insee": "17015" - } - }, - { - "pk": 9574, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ARCHIAC", - "center": "POINT (393864.2733836943516508 2061436.7607336954679340)", - "surface": 4480000, - "canton": null, - "numero_insee": "17016" - } - }, - { - "pk": 31474, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ARCHINGEAY", - "center": "POINT (363155.5640752993058413 2107628.0733273485675454)", - "surface": 16490000, - "canton": null, - "numero_insee": "17017" - } - }, - { - "pk": 35195, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ARDILLIERES", - "center": "POINT (350327.9987601178581826 2121735.8988315411843359)", - "surface": 16020000, - "canton": null, - "numero_insee": "17018" - } - }, - { - "pk": 12472, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ARS-EN-RE", - "center": "POINT (302820.8569742722902447 2141765.6212622434832156)", - "surface": 10720000, - "canton": null, - "numero_insee": "17019" - } - }, - { - "pk": 28933, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ARTHENAC", - "center": "POINT (392079.9748382131801918 2059320.0343015412800014)", - "surface": 12690000, - "canton": null, - "numero_insee": "17020" - } - }, - { - "pk": 15325, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ARVERT", - "center": "POINT (330779.1626445598085411 2088845.1528901103883982)", - "surface": 20350000, - "canton": null, - "numero_insee": "17021" - } - }, - { - "pk": 23720, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ASNIERES-LA-GIRAUD", - "center": "POINT (379007.0623450188431889 2103154.0980006293393672)", - "surface": 18640000, - "canton": null, - "numero_insee": "17022" - } - }, - { - "pk": 18682, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "AUJAC", - "center": "POINT (387859.1752379535464570 2097821.9030132908374071)", - "surface": 8670000, - "canton": null, - "numero_insee": "17023" - } - }, - { - "pk": 23708, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "AULNAY", - "center": "POINT (392106.3691542996093631 2116874.5426895660348237)", - "surface": 31210000, - "canton": null, - "numero_insee": "17024" - } - }, - { - "pk": 10580, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "AUMAGNE", - "center": "POINT (386628.4692417632904835 2101415.1387517503462732)", - "surface": 20420000, - "canton": null, - "numero_insee": "17025" - } - }, - { - "pk": 35570, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "AVY", - "center": "POINT (377817.8139417553320527 2065208.4058575041126460)", - "surface": 14510000, - "canton": null, - "numero_insee": "17027" - } - }, - { - "pk": 36167, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "AYTRE", - "center": "POINT (333329.9633955541066825 2131805.8961122296750546)", - "surface": 12220000, - "canton": null, - "numero_insee": "17028" - } - }, - { - "pk": 28271, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BAGNIZEAU", - "center": "POINT (394118.4756011888384819 2103478.6882938388735056)", - "surface": 9670000, - "canton": null, - "numero_insee": "17029" - } - }, - { - "pk": 28501, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BALANZAC", - "center": "POINT (352506.4185087123187259 2088022.3498320842627436)", - "surface": 12830000, - "canton": null, - "numero_insee": "17030" - } - }, - { - "pk": 8538, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BALLANS", - "center": "POINT (400810.8108456794871017 2093024.0059835142455995)", - "surface": 7020000, - "canton": null, - "numero_insee": "17031" - } - }, - { - "pk": 27879, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BALLON", - "center": "POINT (343916.7980823960388079 2122383.9576453031040728)", - "surface": 12220000, - "canton": null, - "numero_insee": "17032" - } - }, - { - "pk": 15679, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA BARDE", - "center": "POINT (411146.9835335166426376 2017035.6346534551121294)", - "surface": 21410000, - "canton": null, - "numero_insee": "17033" - } - }, - { - "pk": 7841, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BARZAN", - "center": "POINT (349700.0682167258346453 2064076.5130223454907537)", - "surface": 7630000, - "canton": null, - "numero_insee": "17034" - } - }, - { - "pk": 4689, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BAZAUGES", - "center": "POINT (405917.9447555829538032 2104877.1577804358676076)", - "surface": 8160000, - "canton": null, - "numero_insee": "17035" - } - }, - { - "pk": 24909, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BEAUGEAY", - "center": "POINT (340279.2839442916447297 2102135.4067094773054123)", - "surface": 14550000, - "canton": null, - "numero_insee": "17036" - } - }, - { - "pk": 10466, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BEAUVAIS-SUR-MATHA", - "center": "POINT (404738.3674490466946736 2102265.0064158602617681)", - "surface": 12560000, - "canton": null, - "numero_insee": "17037" - } - }, - { - "pk": 8416, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BELLUIRE", - "center": "POINT (374032.5257486431510188 2062975.1520216725766659)", - "surface": 4460000, - "canton": null, - "numero_insee": "17039" - } - }, - { - "pk": 29902, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA BENATE", - "center": "POINT (375798.1965620230766945 2116039.6788782807998359)", - "surface": 11010000, - "canton": null, - "numero_insee": "17040" - } - }, - { - "pk": 15365, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BENON", - "center": "POINT (358201.6980618000379764 2138015.3181705344468355)", - "surface": 47420000, - "canton": null, - "numero_insee": "17041" - } - }, - { - "pk": 13407, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BERCLOUX", - "center": "POINT (382760.5082085244357586 2097079.2764497485477477)", - "surface": 9580000, - "canton": null, - "numero_insee": "17042" - } - }, - { - "pk": 15367, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BERNAY-SAINT-MARTIN", - "center": "POINT (370838.0586268339538947 2122805.1592255914583802)", - "surface": 25140000, - "canton": null, - "numero_insee": "17043" - } - }, - { - "pk": 20669, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BERNEUIL", - "center": "POINT (371213.2524004846345633 2077165.5760829176288098)", - "surface": 25600000, - "canton": null, - "numero_insee": "17044" - } - }, - { - "pk": 36542, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BEURLAY", - "center": "POINT (352693.3240693950210698 2101836.8554487642832100)", - "surface": 9830000, - "canton": null, - "numero_insee": "17045" - } - }, - { - "pk": 33545, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BIGNAY", - "center": "POINT (372073.1132475134218112 2106500.2413323340006173)", - "surface": 8680000, - "canton": null, - "numero_insee": "17046" - } - }, - { - "pk": 11400, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BIRON", - "center": "POINT (379804.7774799230974168 2067026.4837771998718381)", - "surface": 8570000, - "canton": null, - "numero_insee": "17047" - } - }, - { - "pk": 13928, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BLANZAC-LES-MATHA", - "center": "POINT (391041.3483781813411042 2100350.4472759044729173)", - "surface": 9590000, - "canton": null, - "numero_insee": "17048" - } - }, - { - "pk": 13887, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BLANZAY-SUR-BOUTONNE", - "center": "POINT (386268.4569459616905078 2120830.1574461925774813)", - "surface": 5770000, - "canton": null, - "numero_insee": "17049" - } - }, - { - "pk": 14083, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOIS", - "center": "POINT (369170.0983933157403953 2057830.2471102196723223)", - "surface": 21350000, - "canton": null, - "numero_insee": "17050" - } - }, - { - "pk": 25303, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE BOIS-PLAGE-EN-RE", - "center": "POINT (313460.8436717446311377 2138049.1222805823199451)", - "surface": 12210000, - "canton": null, - "numero_insee": "17051" - } - }, - { - "pk": 18598, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOISREDON", - "center": "POINT (374126.7097871007863432 2039352.9786453465931118)", - "surface": 21900000, - "canton": null, - "numero_insee": "17052" - } - }, - { - "pk": 36492, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BORDS", - "center": "POINT (357778.8458380313823000 2104180.7491818037815392)", - "surface": 15590000, - "canton": null, - "numero_insee": "17053" - } - }, - { - "pk": 34942, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BORESSE-ET-MARTRON", - "center": "POINT (406608.3034668357577175 2033314.3399147652089596)", - "surface": 11250000, - "canton": null, - "numero_insee": "17054" - } - }, - { - "pk": 3391, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOSCAMNANT", - "center": "POINT (410687.9634142704308033 2024138.9073022380471230)", - "surface": 13990000, - "canton": null, - "numero_insee": "17055" - } - }, - { - "pk": 37807, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOUGNEAU", - "center": "POINT (378173.7053828982170671 2070616.5162258052732795)", - "surface": 14840000, - "canton": null, - "numero_insee": "17056" - } - }, - { - "pk": 23068, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOUHET", - "center": "POINT (353228.7087220746325329 2134171.0462704221718013)", - "surface": 15280000, - "canton": null, - "numero_insee": "17057" - } - }, - { - "pk": 18074, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOURCEFRANC-LE-CHAPUS", - "center": "POINT (330387.0870130786788650 2100052.4801298840902746)", - "surface": 12610000, - "canton": null, - "numero_insee": "17058" - } - }, - { - "pk": 24151, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOURGNEUF", - "center": "POINT (340708.3255088846199214 2135269.4523279047571123)", - "surface": 2580000, - "canton": null, - "numero_insee": "17059" - } - }, - { - "pk": 8927, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BOUTENAC-TOUVENT", - "center": "POINT (357940.2906416812329553 2060140.2985587557777762)", - "surface": 3180000, - "canton": null, - "numero_insee": "17060" - } - }, - { - "pk": 26617, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BRAN", - "center": "POINT (396325.5318630601977929 2042138.2930802137125283)", - "surface": 4230000, - "canton": null, - "numero_insee": "17061" - } - }, - { - "pk": 23417, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BRESDON", - "center": "POINT (407266.9471339426236227 2099082.8699028934352100)", - "surface": 16850000, - "canton": null, - "numero_insee": "17062" - } - }, - { - "pk": 32538, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BREUIL-LA-REORTE", - "center": "POINT (365434.2860649085487239 2122660.6595416236668825)", - "surface": 16080000, - "canton": null, - "numero_insee": "17063" - } - }, - { - "pk": 17918, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BREUILLET", - "center": "POINT (335934.4921692357747816 2082681.5158792813308537)", - "surface": 20330000, - "canton": null, - "numero_insee": "17064" - } - }, - { - "pk": 31272, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BREUIL-MAGNE", - "center": "POINT (344165.3890435349312611 2116480.5581702101044357)", - "surface": 22380000, - "canton": null, - "numero_insee": "17065" - } - }, - { - "pk": 3225, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BRIE-SOUS-ARCHIAC", - "center": "POINT (393707.8001005059923045 2056130.3505062249023467)", - "surface": 7600000, - "canton": null, - "numero_insee": "17066" - } - }, - { - "pk": 6630, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BRIE-SOUS-MATHA", - "center": "POINT (398700.7299339316668920 2094007.5532724133227021)", - "surface": 6370000, - "canton": null, - "numero_insee": "17067" - } - }, - { - "pk": 26615, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BRIE-SOUS-MORTAGNE", - "center": "POINT (359739.4416099243680947 2060455.3644657607655972)", - "surface": 7260000, - "canton": null, - "numero_insee": "17068" - } - }, - { - "pk": 7795, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BRIVES-SUR-CHARENTE", - "center": "POINT (382318.1335516717517748 2077857.4939616532064974)", - "surface": 5950000, - "canton": null, - "numero_insee": "17069" - } - }, - { - "pk": 3943, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BRIZAMBOURG", - "center": "POINT (381388.9397106689866632 2093464.6090030241757631)", - "surface": 21940000, - "canton": null, - "numero_insee": "17070" - } - }, - { - "pk": 35553, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA BROUSSE", - "center": "POINT (390312.7171232590917498 2103747.6211633239872754)", - "surface": 18720000, - "canton": null, - "numero_insee": "17071" - } - }, - { - "pk": 25970, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BURIE", - "center": "POINT (384920.0051080561242998 2090090.4688123750966042)", - "surface": 9260000, - "canton": null, - "numero_insee": "17072" - } - }, - { - "pk": 14286, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BUSSAC-SUR-CHARENTE", - "center": "POINT (369787.8648244627402164 2092268.1614416460506618)", - "surface": 10110000, - "canton": null, - "numero_insee": "17073" - } - }, - { - "pk": 30457, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "BUSSAC-FORET", - "center": "POINT (386648.4761831870418973 2026042.8167804232798517)", - "surface": 35040000, - "canton": null, - "numero_insee": "17074" - } - }, - { - "pk": 12206, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CABARIOT", - "center": "POINT (352842.5705086349043995 2108043.8612360539846122)", - "surface": 15240000, - "canton": null, - "numero_insee": "17075" - } - }, - { - "pk": 11638, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CELLES", - "center": "POINT (387576.2997326228069142 2071394.5749607265461236)", - "surface": 5990000, - "canton": null, - "numero_insee": "17076" - } - }, - { - "pk": 14566, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CERCOUX", - "center": "POINT (399733.9155946160317399 2017241.7889066617935896)", - "surface": 42100000, - "canton": null, - "numero_insee": "17077" - } - }, - { - "pk": 25988, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHADENAC", - "center": "POINT (382330.0741363645065576 2064244.5735440100543201)", - "surface": 14030000, - "canton": null, - "numero_insee": "17078" - } - }, - { - "pk": 7927, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHAILLEVETTE", - "center": "POINT (335000.0723568193498068 2086777.7461180936079472)", - "surface": 9540000, - "canton": null, - "numero_insee": "17079" - } - }, - { - "pk": 26686, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHAMBON", - "center": "POINT (353978.5817843157565221 2128171.7251398595981300)", - "surface": 18740000, - "canton": null, - "numero_insee": "17080" - } - }, - { - "pk": 35087, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHAMOUILLAC", - "center": "POINT (380245.4605097498279065 2037801.7481689224950969)", - "surface": 8210000, - "canton": null, - "numero_insee": "17081" - } - }, - { - "pk": 18677, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHAMPAGNE", - "center": "POINT (347224.6769777204608545 2097387.8650130406022072)", - "surface": 19500000, - "canton": null, - "numero_insee": "17083" - } - }, - { - "pk": 31939, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHAMPAGNOLLES", - "center": "POINT (366741.6148956423858181 2061013.3779365078080446)", - "surface": 17250000, - "canton": null, - "numero_insee": "17084" - } - }, - { - "pk": 33692, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHAMPDOLENT", - "center": "POINT (358462.1932364648091607 2106288.3173828436993062)", - "surface": 12060000, - "canton": null, - "numero_insee": "17085" - } - }, - { - "pk": 21368, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHANIERS", - "center": "POINT (375147.6464363123523071 2085605.9058600966818631)", - "surface": 26520000, - "canton": null, - "numero_insee": "17086" - } - }, - { - "pk": 31432, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHANTEMERLE-SUR-LA-SOIE", - "center": "POINT (369021.1672521390719339 2112480.7250183988362551)", - "surface": 5710000, - "canton": null, - "numero_insee": "17087" - } - }, - { - "pk": 31627, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA CHAPELLE-DES-POTS", - "center": "POINT (376621.7968493335647509 2088921.1496447967365384)", - "surface": 10260000, - "canton": null, - "numero_insee": "17089" - } - }, - { - "pk": 15373, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHARRON", - "center": "POINT (336689.4146478601614945 2149349.2702596946619451)", - "surface": 35940000, - "canton": null, - "numero_insee": "17091" - } - }, - { - "pk": 15767, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHARTUZAC", - "center": "POINT (384121.8348199540050700 2041136.8914714353159070)", - "surface": 2410000, - "canton": null, - "numero_insee": "17092" - } - }, - { - "pk": 15661, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE CHATEAU-D'OLERON", - "center": "POINT (324248.1923740117927082 2104106.0510203125886619)", - "surface": 15510000, - "canton": null, - "numero_insee": "17093" - } - }, - { - "pk": 33460, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHATELAILLON-PLAGE", - "center": "POINT (335488.3181943822419271 2124917.2630976648069918)", - "surface": 6550000, - "canton": null, - "numero_insee": "17094" - } - }, - { - "pk": 18196, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHATENET", - "center": "POINT (393769.3477545597124845 2036511.7362948441877961)", - "surface": 9640000, - "canton": null, - "numero_insee": "17095" - } - }, - { - "pk": 25577, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE CHAY", - "center": "POINT (347497.1870175782823935 2076370.2306342201773077)", - "surface": 12280000, - "canton": null, - "numero_insee": "17097" - } - }, - { - "pk": 23278, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHENAC-SAINT-SEURIN-D'UZET", - "center": "POINT (353921.9065664887311868 2061909.0428095904644579)", - "surface": 20120000, - "canton": null, - "numero_insee": "17098" - } - }, - { - "pk": 4370, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHEPNIERS", - "center": "POINT (390907.0953834339743480 2031583.3296735305339098)", - "surface": 28100000, - "canton": null, - "numero_insee": "17099" - } - }, - { - "pk": 30298, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHERBONNIERES", - "center": "POINT (392555.3488446517148986 2110972.7850985163822770)", - "surface": 16730000, - "canton": null, - "numero_insee": "17101" - } - }, - { - "pk": 25573, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHERMIGNAC", - "center": "POINT (365272.6640420411131345 2081420.8393919507507235)", - "surface": 13510000, - "canton": null, - "numero_insee": "17102" - } - }, - { - "pk": 8344, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHERVETTES", - "center": "POINT (364951.1278550883289427 2120554.7591413944028318)", - "surface": 3970000, - "canton": null, - "numero_insee": "17103" - } - }, - { - "pk": 23413, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHEVANCEAUX", - "center": "POINT (399976.6700360854156315 2036362.7003718197811395)", - "surface": 22110000, - "canton": null, - "numero_insee": "17104" - } - }, - { - "pk": 29149, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CHIVES", - "center": "POINT (409391.2414179816260003 2108509.1539567350409925)", - "surface": 20620000, - "canton": null, - "numero_insee": "17105" - } - }, - { - "pk": 28067, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CIERZAC", - "center": "POINT (393028.0995373371406458 2065734.0110676812473685)", - "surface": 5430000, - "canton": null, - "numero_insee": "17106" - } - }, - { - "pk": 36394, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CIRE-D'AUNIS", - "center": "POINT (347135.1218461289536208 2120508.6024290868081152)", - "surface": 25760000, - "canton": null, - "numero_insee": "17107" - } - }, - { - "pk": 6848, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CLAM", - "center": "POINT (382578.0332790624815971 2058441.0199813381768763)", - "surface": 6870000, - "canton": null, - "numero_insee": "17108" - } - }, - { - "pk": 35852, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CLAVETTE", - "center": "POINT (339430.1978426913265139 2132456.4260804369114339)", - "surface": 6300000, - "canton": null, - "numero_insee": "17109" - } - }, - { - "pk": 21915, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CLERAC", - "center": "POINT (397791.7214269484393299 2022130.6552089506294578)", - "surface": 43450000, - "canton": null, - "numero_insee": "17110" - } - }, - { - "pk": 14690, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CLION", - "center": "POINT (377391.4737706507439725 2056196.2121472517028451)", - "surface": 15940000, - "canton": null, - "numero_insee": "17111" - } - }, - { - "pk": 31857, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA CLISSE", - "center": "POINT (359329.6473061769502237 2085976.3809134676121175)", - "surface": 5240000, - "canton": null, - "numero_insee": "17112" - } - }, - { - "pk": 25995, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA CLOTTE", - "center": "POINT (404750.9448440483538434 2015781.6653113835491240)", - "surface": 17890000, - "canton": null, - "numero_insee": "17113" - } - }, - { - "pk": 31086, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COIVERT", - "center": "POINT (383452.8934117791941389 2122408.4539908487349749)", - "surface": 15000000, - "canton": null, - "numero_insee": "17114" - } - }, - { - "pk": 8440, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COLOMBIERS", - "center": "POINT (374530.1668380337068811 2075491.2297599148005247)", - "surface": 7230000, - "canton": null, - "numero_insee": "17115" - } - }, - { - "pk": 13706, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CONSAC", - "center": "POINT (371030.9708092834334821 2050638.5610141560900956)", - "surface": 9050000, - "canton": null, - "numero_insee": "17116" - } - }, - { - "pk": 29261, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CONTRE", - "center": "POINT (398821.9916957250097767 2115728.7640448259189725)", - "surface": 12330000, - "canton": null, - "numero_insee": "17117" - } - }, - { - "pk": 32176, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CORIGNAC", - "center": "POINT (385607.9945057642180473 2030838.9970174927730113)", - "surface": 11120000, - "canton": null, - "numero_insee": "17118" - } - }, - { - "pk": 37934, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CORME-ECLUSE", - "center": "POINT (350408.7929183572996408 2075293.0702408964280039)", - "surface": 17550000, - "canton": null, - "numero_insee": "17119" - } - }, - { - "pk": 32803, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CORME-ROYAL", - "center": "POINT (355212.0748520834604278 2087644.1803739860188216)", - "surface": 27170000, - "canton": null, - "numero_insee": "17120" - } - }, - { - "pk": 9245, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA COUARDE-SUR-MER", - "center": "POINT (308937.4258929308271036 2140414.3252467764541507)", - "surface": 8940000, - "canton": null, - "numero_insee": "17121" - } - }, - { - "pk": 3764, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COULONGES", - "center": "POINT (384273.3658107349183410 2071367.3824243880808353)", - "surface": 9260000, - "canton": null, - "numero_insee": "17122" - } - }, - { - "pk": 8334, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COURANT", - "center": "POINT (373668.4198010202962905 2119425.3009919435717165)", - "surface": 15740000, - "canton": null, - "numero_insee": "17124" - } - }, - { - "pk": 12459, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COURCELLES", - "center": "POINT (381550.0153351796325296 2110381.7189685818739235)", - "surface": 6800000, - "canton": null, - "numero_insee": "17125" - } - }, - { - "pk": 27236, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COURCERAC", - "center": "POINT (390066.0325590739375912 2097239.5128829022869468)", - "surface": 6270000, - "canton": null, - "numero_insee": "17126" - } - }, - { - "pk": 12207, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COURCON", - "center": "POINT (358551.0886715565575287 2144223.7965902960859239)", - "surface": 19210000, - "canton": null, - "numero_insee": "17127" - } - }, - { - "pk": 4613, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COURCOURY", - "center": "POINT (374174.7526531515177339 2082194.6823959520552307)", - "surface": 12730000, - "canton": null, - "numero_insee": "17128" - } - }, - { - "pk": 4690, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COURPIGNAC", - "center": "POINT (377534.7563845855183899 2038780.4250501089263707)", - "surface": 14930000, - "canton": null, - "numero_insee": "17129" - } - }, - { - "pk": 37460, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COUX", - "center": "POINT (384638.7712146005360410 2039139.1863648986909539)", - "surface": 13230000, - "canton": null, - "numero_insee": "17130" - } - }, - { - "pk": 11791, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "COZES", - "center": "POINT (353363.9463312487350777 2068911.1978867370635271)", - "surface": 16650000, - "canton": null, - "numero_insee": "17131" - } - }, - { - "pk": 6390, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CRAMCHABAN", - "center": "POINT (364295.3094944464974105 2139466.6293883579783142)", - "surface": 15950000, - "canton": null, - "numero_insee": "17132" - } - }, - { - "pk": 35232, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CRAVANS", - "center": "POINT (361957.6389514366164804 2070683.3963083352427930)", - "surface": 14690000, - "canton": null, - "numero_insee": "17133" - } - }, - { - "pk": 25575, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CRAZANNES", - "center": "POINT (363726.7068972431588918 2099024.7383551229722798)", - "surface": 4840000, - "canton": null, - "numero_insee": "17134" - } - }, - { - "pk": 12870, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CRESSE", - "center": "POINT (402213.9256735102972016 2104946.7089931871742010)", - "surface": 10940000, - "canton": null, - "numero_insee": "17135" - } - }, - { - "pk": 10619, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "CROIX-CHAPEAU", - "center": "POINT (342169.4004735643393360 2127974.7681262572295964)", - "surface": 4930000, - "canton": null, - "numero_insee": "17136" - } - }, - { - "pk": 36426, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA CROIX-COMTESSE", - "center": "POINT (380235.3498287507100031 2124183.6311261034570634)", - "surface": 2640000, - "canton": null, - "numero_insee": "17137" - } - }, - { - "pk": 23258, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "DAMPIERRE-SUR-BOUTONNE", - "center": "POINT (389254.5300345321302302 2122856.5788105102255940)", - "surface": 14110000, - "canton": null, - "numero_insee": "17138" - } - }, - { - "pk": 29693, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "DOEUIL-SUR-LE-MIGNON", - "center": "POINT (376993.9434084908571094 2128861.2706166016869247)", - "surface": 19480000, - "canton": null, - "numero_insee": "17139" - } - }, - { - "pk": 33691, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "DOMPIERRE-SUR-CHARENTE", - "center": "POINT (379376.8646021079039201 2082537.7578185466118157)", - "surface": 8300000, - "canton": null, - "numero_insee": "17141" - } - }, - { - "pk": 27542, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "DOMPIERRE-SUR-MER", - "center": "POINT (337189.7947652400471270 2137142.3439452745951712)", - "surface": 18460000, - "canton": null, - "numero_insee": "17142" - } - }, - { - "pk": 32348, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE DOUHET", - "center": "POINT (373377.8426751143997535 2093899.1816230497788638)", - "surface": 18510000, - "canton": null, - "numero_insee": "17143" - } - }, - { - "pk": 27029, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ECHEBRUNE", - "center": "POINT (382389.7989619215368293 2069149.7716953603085130)", - "surface": 17280000, - "canton": null, - "numero_insee": "17145" - } - }, - { - "pk": 35577, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ECHILLAIS", - "center": "POINT (344755.2805372489383444 2105575.2800342310220003)", - "surface": 14910000, - "canton": null, - "numero_insee": "17146" - } - }, - { - "pk": 25110, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ECOYEUX", - "center": "POINT (378077.8264539608499035 2094438.3067247548606247)", - "surface": 20450000, - "canton": null, - "numero_insee": "17147" - } - }, - { - "pk": 13671, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ECURAT", - "center": "POINT (364278.9461350056808442 2092723.3597936169244349)", - "surface": 10550000, - "canton": null, - "numero_insee": "17148" - } - }, - { - "pk": 19141, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES EDUTS", - "center": "POINT (402940.3503899166826159 2113961.0486084017902613)", - "surface": 8120000, - "canton": null, - "numero_insee": "17149" - } - }, - { - "pk": 10991, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES EGLISES-D'ARGENTEUIL", - "center": "POINT (386037.4062861052807420 2112420.5042616091668606)", - "surface": 14330000, - "canton": null, - "numero_insee": "17150" - } - }, - { - "pk": 37207, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "L'EGUILLE", - "center": "POINT (341734.6855336108128540 2083329.6301538152620196)", - "surface": 5600000, - "canton": null, - "numero_insee": "17151" - } - }, - { - "pk": 23626, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "EPARGNES", - "center": "POINT (355394.4911997066228651 2065424.5042598387226462)", - "surface": 23670000, - "canton": null, - "numero_insee": "17152" - } - }, - { - "pk": 27745, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ESNANDES", - "center": "POINT (333927.2551976061658934 2144422.2267829151824117)", - "surface": 7700000, - "canton": null, - "numero_insee": "17153" - } - }, - { - "pk": 16753, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES ESSARDS", - "center": "POINT (358471.4119569639442489 2092975.9406204547267407)", - "surface": 9720000, - "canton": null, - "numero_insee": "17154" - } - }, - { - "pk": 15108, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ETAULES", - "center": "POINT (332403.5253578188712709 2086055.8094972372055054)", - "surface": 11940000, - "canton": null, - "numero_insee": "17155" - } - }, - { - "pk": 12480, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "EXPIREMONT", - "center": "POINT (387429.7889537026640028 2040563.5398506412748247)", - "surface": 5700000, - "canton": null, - "numero_insee": "17156" - } - }, - { - "pk": 26271, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FENIOUX", - "center": "POINT (373001.0464981915429235 2103204.7950523803010583)", - "surface": 9400000, - "canton": null, - "numero_insee": "17157" - } - }, - { - "pk": 25620, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FERRIERES", - "center": "POINT (353869.3397599554155022 2141482.9279806567355990)", - "surface": 7590000, - "canton": null, - "numero_insee": "17158" - } - }, - { - "pk": 24900, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FLEAC-SUR-SEUGNE", - "center": "POINT (376334.5859623641590588 2062994.0865063390228897)", - "surface": 8510000, - "canton": null, - "numero_insee": "17159" - } - }, - { - "pk": 11964, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FLOIRAC", - "center": "POINT (358862.4720045336289331 2057545.3578516861889511)", - "surface": 13260000, - "canton": null, - "numero_insee": "17160" - } - }, - { - "pk": 27746, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA FLOTTE", - "center": "POINT (317568.3864425401552580 2137582.2575349011458457)", - "surface": 12290000, - "canton": null, - "numero_insee": "17161" - } - }, - { - "pk": 11530, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FONTAINE-CHALENDRAY", - "center": "POINT (405089.1924468034994788 2108273.4852663301862776)", - "surface": 19030000, - "canton": null, - "numero_insee": "17162" - } - }, - { - "pk": 5902, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FONTAINES-D'OZILLAC", - "center": "POINT (386987.3902735852752812 2045664.8852804240304977)", - "surface": 13920000, - "canton": null, - "numero_insee": "17163" - } - }, - { - "pk": 36544, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FONTCOUVERTE", - "center": "POINT (372313.0912868932937272 2089486.2823362147901207)", - "surface": 11760000, - "canton": null, - "numero_insee": "17164" - } - }, - { - "pk": 29169, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FONTENET", - "center": "POINT (382700.3799516978324391 2104385.6061631459742785)", - "surface": 10160000, - "canton": null, - "numero_insee": "17165" - } - }, - { - "pk": 26685, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FORGES", - "center": "POINT (350374.7099282575072721 2128242.2444551950320601)", - "surface": 13660000, - "canton": null, - "numero_insee": "17166" - } - }, - { - "pk": 31251, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "FOURAS", - "center": "POINT (335570.3215024705859832 2114908.7195351715199649)", - "surface": 9780000, - "canton": null, - "numero_insee": "17168" - } - }, - { - "pk": 7920, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA FREDIERE", - "center": "POINT (373028.2034534710110165 2099901.9345909212715924)", - "surface": 2960000, - "canton": null, - "numero_insee": "17169" - } - }, - { - "pk": 6506, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GEAY", - "center": "POINT (359811.8100729372235946 2100393.8926718151196837)", - "surface": 15950000, - "canton": null, - "numero_insee": "17171" - } - }, - { - "pk": 14836, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GEMOZAC", - "center": "POINT (364191.6710659518139437 2066798.0087564452551305)", - "surface": 32000000, - "canton": null, - "numero_insee": "17172" - } - }, - { - "pk": 20092, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA GENETOUZE", - "center": "POINT (412263.0048435013741255 2027355.0763748460449278)", - "surface": 37130000, - "canton": null, - "numero_insee": "17173" - } - }, - { - "pk": 17546, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GENOUILLE", - "center": "POINT (358466.9504332149517722 2117899.1079218829981983)", - "surface": 34610000, - "canton": null, - "numero_insee": "17174" - } - }, - { - "pk": 26831, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GERMIGNAC", - "center": "POINT (390925.3995877177221701 2065816.7860922883264720)", - "surface": 14350000, - "canton": null, - "numero_insee": "17175" - } - }, - { - "pk": 33973, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GIBOURNE", - "center": "POINT (394593.3466133248293772 2106585.4876547041349113)", - "surface": 11010000, - "canton": null, - "numero_insee": "17176" - } - }, - { - "pk": 19532, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE GICQ", - "center": "POINT (399292.4492499736952595 2107224.7670425456017256)", - "surface": 5990000, - "canton": null, - "numero_insee": "17177" - } - }, - { - "pk": 31032, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GIVREZAC", - "center": "POINT (368114.8992590717389248 2064427.9423677348531783)", - "surface": 2650000, - "canton": null, - "numero_insee": "17178" - } - }, - { - "pk": 35305, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES GONDS", - "center": "POINT (370767.6416688265744597 2082667.1421869439072907)", - "surface": 13030000, - "canton": null, - "numero_insee": "17179" - } - }, - { - "pk": 7547, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GOURVILLETTE", - "center": "POINT (401337.9008746162289754 2101936.6898495457135141)", - "surface": 8040000, - "canton": null, - "numero_insee": "17180" - } - }, - { - "pk": 29784, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GRANDJEAN", - "center": "POINT (371813.9961725012399256 2101493.4477917235344648)", - "surface": 6080000, - "canton": null, - "numero_insee": "17181" - } - }, - { - "pk": 13172, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA GREVE-SUR-MIGNON", - "center": "POINT (361261.5618717879988253 2143245.1495779315009713)", - "surface": 11410000, - "canton": null, - "numero_insee": "17182" - } - }, - { - "pk": 4070, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GREZAC", - "center": "POINT (352538.5872943223803304 2071907.2985719402786344)", - "surface": 20170000, - "canton": null, - "numero_insee": "17183" - } - }, - { - "pk": 16175, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE GUA", - "center": "POINT (343013.6717283535981551 2086042.6769731387030333)", - "surface": 37590000, - "canton": null, - "numero_insee": "17185" - } - }, - { - "pk": 24149, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE GUE-D'ALLERE", - "center": "POINT (352405.0394140265998431 2136966.8330537150613964)", - "surface": 7680000, - "canton": null, - "numero_insee": "17186" - } - }, - { - "pk": 9830, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "GUITINIERES", - "center": "POINT (377115.9058801160426810 2053191.0361327135469764)", - "surface": 9200000, - "canton": null, - "numero_insee": "17187" - } - }, - { - "pk": 16911, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "HAIMPS", - "center": "POINT (398658.6603850027313456 2099111.9887365056201816)", - "surface": 18620000, - "canton": null, - "numero_insee": "17188" - } - }, - { - "pk": 18077, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "HIERS-BROUAGE", - "center": "POINT (336799.2128896640497260 2099304.2623805333860219)", - "surface": 31530000, - "canton": null, - "numero_insee": "17189" - } - }, - { - "pk": 4969, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "L'HOUMEAU", - "center": "POINT (328069.0275680067716166 2138669.0929675907827914)", - "surface": 4420000, - "canton": null, - "numero_insee": "17190" - } - }, - { - "pk": 33428, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA JARD", - "center": "POINT (373113.2881977790966630 2077381.3893676605075598)", - "surface": 8490000, - "canton": null, - "numero_insee": "17191" - } - }, - { - "pk": 19186, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "JARNAC-CHAMPAGNE", - "center": "POINT (385825.7885343002853915 2065174.2148005953058600)", - "surface": 21640000, - "canton": null, - "numero_insee": "17192" - } - }, - { - "pk": 33017, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA JARNE", - "center": "POINT (336645.8741419463767670 2130231.6008221954107285)", - "surface": 8420000, - "canton": null, - "numero_insee": "17193" - } - }, - { - "pk": 13080, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA JARRIE", - "center": "POINT (341248.9469770590076223 2130369.4169669826515019)", - "surface": 9530000, - "canton": null, - "numero_insee": "17194" - } - }, - { - "pk": 12380, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA JARRIE-AUDOUIN", - "center": "POINT (381880.3562470930628479 2118892.2943128072656691)", - "surface": 8470000, - "canton": null, - "numero_insee": "17195" - } - }, - { - "pk": 31626, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "JAZENNES", - "center": "POINT (369578.3925277005182579 2069044.3922265297733247)", - "surface": 10800000, - "canton": null, - "numero_insee": "17196" - } - }, - { - "pk": 3925, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "JONZAC", - "center": "POINT (383725.1605926181655377 2052845.0368577633053064)", - "surface": 13020000, - "canton": null, - "numero_insee": "17197" - } - }, - { - "pk": 36037, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "JUICQ", - "center": "POINT (373649.2991524999961257 2097404.6999674588441849)", - "surface": 9400000, - "canton": null, - "numero_insee": "17198" - } - }, - { - "pk": 35893, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "JUSSAS", - "center": "POINT (388682.8165788268670440 2034267.6701036493759602)", - "surface": 9190000, - "canton": null, - "numero_insee": "17199" - } - }, - { - "pk": 3529, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LAGORD", - "center": "POINT (330678.5888017504476011 2137789.6430872660130262)", - "surface": 8000000, - "canton": null, - "numero_insee": "17200" - } - }, - { - "pk": 32753, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA LAIGNE", - "center": "POINT (361390.4122589945327491 2139743.0420792410150170)", - "surface": 4330000, - "canton": null, - "numero_insee": "17201" - } - }, - { - "pk": 31277, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LANDES", - "center": "POINT (372506.0694720674073324 2114711.4075043736957014)", - "surface": 16060000, - "canton": null, - "numero_insee": "17202" - } - }, - { - "pk": 31887, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LANDRAIS", - "center": "POINT (352913.7879704106599092 2123758.9542353451251984)", - "surface": 15510000, - "canton": null, - "numero_insee": "17203" - } - }, - { - "pk": 4497, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LEOVILLE", - "center": "POINT (390893.4058532039634883 2045396.7616122327744961)", - "surface": 10240000, - "canton": null, - "numero_insee": "17204" - } - }, - { - "pk": 28401, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LOIRE-LES-MARAIS", - "center": "POINT (347176.1678923161816783 2115504.3257516990415752)", - "surface": 12520000, - "canton": null, - "numero_insee": "17205" - } - }, - { - "pk": 14326, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LOIRE-SUR-NIE", - "center": "POINT (396368.5087718516006134 2109803.0859353835694492)", - "surface": 14530000, - "canton": null, - "numero_insee": "17206" - } - }, - { - "pk": 13032, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LOIX", - "center": "POINT (308118.7609497203375213 2142609.6281713517382741)", - "surface": 6790000, - "canton": null, - "numero_insee": "17207" - } - }, - { - "pk": 19320, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LONGEVES", - "center": "POINT (344650.1463059264351614 2142808.5689854514785111)", - "surface": 13090000, - "canton": null, - "numero_insee": "17208" - } - }, - { - "pk": 37990, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LONZAC", - "center": "POINT (386692.8052257235394791 2069285.2893159789964557)", - "surface": 6280000, - "canton": null, - "numero_insee": "17209" - } - }, - { - "pk": 8159, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LORIGNAC", - "center": "POINT (364483.9628123271977529 2055589.6016096896491945)", - "surface": 17570000, - "canton": null, - "numero_insee": "17210" - } - }, - { - "pk": 5489, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LOULAY", - "center": "POINT (379369.1658219943055883 2119972.6463640434667468)", - "surface": 7350000, - "canton": null, - "numero_insee": "17211" - } - }, - { - "pk": 27719, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LOUZIGNAC", - "center": "POINT (400690.0972914871526882 2095525.3593177320435643)", - "surface": 6160000, - "canton": null, - "numero_insee": "17212" - } - }, - { - "pk": 37543, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LOZAY", - "center": "POINT (377067.2046777290524915 2119953.7112391460686922)", - "surface": 11920000, - "canton": null, - "numero_insee": "17213" - } - }, - { - "pk": 34151, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LUCHAT", - "center": "POINT (358643.8264253333909437 2084169.0437793044839054)", - "surface": 4710000, - "canton": null, - "numero_insee": "17214" - } - }, - { - "pk": 9356, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LUSSAC", - "center": "POINT (380198.1139323912793770 2055718.8206389914266765)", - "surface": 1770000, - "canton": null, - "numero_insee": "17215" - } - }, - { - "pk": 4382, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LUSSANT", - "center": "POINT (355032.1448888871818781 2109563.2266251249238849)", - "surface": 8980000, - "canton": null, - "numero_insee": "17216" - } - }, - { - "pk": 9762, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MACQUEVILLE", - "center": "POINT (402524.6716067129164003 2091536.7239910250063986)", - "surface": 11300000, - "canton": null, - "numero_insee": "17217" - } - }, - { - "pk": 25593, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MARANS", - "center": "POINT (344582.0353705134475604 2151115.4867285811342299)", - "surface": 83780000, - "canton": null, - "numero_insee": "17218" - } - }, - { - "pk": 16357, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MARENNES", - "center": "POINT (332212.4283178992918693 2097164.7117102257907391)", - "surface": 20500000, - "canton": null, - "numero_insee": "17219" - } - }, - { - "pk": 28083, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MARIGNAC", - "center": "POINT (380550.7021763976663351 2061527.3286034720949829)", - "surface": 13540000, - "canton": null, - "numero_insee": "17220" - } - }, - { - "pk": 8475, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MARSAIS", - "center": "POINT (371489.2899443813948892 2128816.0092932125553489)", - "surface": 23810000, - "canton": null, - "numero_insee": "17221" - } - }, - { - "pk": 33018, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MARSILLY", - "center": "POINT (332343.1314345832797699 2142307.3536983253434300)", - "surface": 12050000, - "canton": null, - "numero_insee": "17222" - } - }, - { - "pk": 6900, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MASSAC", - "center": "POINT (401662.0885674142045900 2099036.6518687447533011)", - "surface": 9160000, - "canton": null, - "numero_insee": "17223" - } - }, - { - "pk": 21422, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES MATHES", - "center": "POINT (326911.7969074933207594 2084409.3150065112859011)", - "surface": 35390000, - "canton": null, - "numero_insee": "17225" - } - }, - { - "pk": 30070, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MAZERAY", - "center": "POINT (375281.6365325088845566 2105825.9721199283376336)", - "surface": 19550000, - "canton": null, - "numero_insee": "17226" - } - }, - { - "pk": 12999, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MAZEROLLES", - "center": "POINT (371603.2178882044972852 2066258.3509694964159280)", - "surface": 5170000, - "canton": null, - "numero_insee": "17227" - } - }, - { - "pk": 23805, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MEDIS", - "center": "POINT (343190.9113856829935685 2076635.1959404540248215)", - "surface": 23640000, - "canton": null, - "numero_insee": "17228" - } - }, - { - "pk": 11091, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MERIGNAC", - "center": "POINT (393139.9353838233510032 2040009.9859963625203818)", - "surface": 4490000, - "canton": null, - "numero_insee": "17229" - } - }, - { - "pk": 17938, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MESCHERS-SUR-GIRONDE", - "center": "POINT (343654.4700921275652945 2068931.6293629514984787)", - "surface": 15910000, - "canton": null, - "numero_insee": "17230" - } - }, - { - "pk": 4107, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MESSAC", - "center": "POINT (392223.4470321815460920 2041904.2965676072053611)", - "surface": 7250000, - "canton": null, - "numero_insee": "17231" - } - }, - { - "pk": 24063, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MEURSAC", - "center": "POINT (353895.4667629724135622 2077323.5945271500386298)", - "surface": 26430000, - "canton": null, - "numero_insee": "17232" - } - }, - { - "pk": 27657, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MEUX", - "center": "POINT (389331.0414027376100421 2052791.0975179369561374)", - "surface": 8350000, - "canton": null, - "numero_insee": "17233" - } - }, - { - "pk": 19341, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MIGRE", - "center": "POINT (376131.0438397172838449 2124249.9628812451846898)", - "surface": 14400000, - "canton": null, - "numero_insee": "17234" - } - }, - { - "pk": 4449, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MIGRON", - "center": "POINT (387497.5580110814189538 2093114.5135689475573599)", - "surface": 14980000, - "canton": null, - "numero_insee": "17235" - } - }, - { - "pk": 5022, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MIRAMBEAU", - "center": "POINT (372581.7142121251090430 2044645.4622707890812308)", - "surface": 26720000, - "canton": null, - "numero_insee": "17236" - } - }, - { - "pk": 13571, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MOEZE", - "center": "POINT (337058.4626680584042333 2104311.0629588984884322)", - "surface": 21140000, - "canton": null, - "numero_insee": "17237" - } - }, - { - "pk": 28290, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MOINGS", - "center": "POINT (388388.1916818849276751 2057888.2741806288249791)", - "surface": 7570000, - "canton": null, - "numero_insee": "17238" - } - }, - { - "pk": 18189, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MONS", - "center": "POINT (392102.3961743973195553 2093052.3411033868324012)", - "surface": 15680000, - "canton": null, - "numero_insee": "17239" - } - }, - { - "pk": 37257, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MONTENDRE", - "center": "POINT (386269.0778583905193955 2035649.1708527514711022)", - "surface": 25730000, - "canton": null, - "numero_insee": "17240" - } - }, - { - "pk": 3392, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MONTGUYON", - "center": "POINT (403061.9572242735885084 2026378.2742448709905148)", - "surface": 18290000, - "canton": null, - "numero_insee": "17241" - } - }, - { - "pk": 28346, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MONTILS", - "center": "POINT (378020.9178044848376885 2077021.3729820512235165)", - "surface": 23880000, - "canton": null, - "numero_insee": "17242" - } - }, - { - "pk": 4086, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MONTLIEU-LA-GARDE", - "center": "POINT (395230.8418853154289536 2029216.5843181235250086)", - "surface": 31880000, - "canton": null, - "numero_insee": "17243" - } - }, - { - "pk": 33429, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MONTPELLIER-DE-MEDILLAN", - "center": "POINT (359018.8889447140973061 2075063.4664758662693202)", - "surface": 15020000, - "canton": null, - "numero_insee": "17244" - } - }, - { - "pk": 13689, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MONTROY", - "center": "POINT (341020.8840989356394857 2133770.6488627437502146)", - "surface": 4000000, - "canton": null, - "numero_insee": "17245" - } - }, - { - "pk": 35196, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MORAGNE", - "center": "POINT (357203.6366641931235790 2113284.4842594410292804)", - "surface": 12220000, - "canton": null, - "numero_insee": "17246" - } - }, - { - "pk": 28057, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MORNAC-SUR-SEUDRE", - "center": "POINT (338524.4802075315965340 2084204.1666397103108466)", - "surface": 9760000, - "canton": null, - "numero_insee": "17247" - } - }, - { - "pk": 31873, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MORTAGNE-SUR-GIRONDE", - "center": "POINT (356539.0326942370738834 2060128.7919239297043532)", - "surface": 20310000, - "canton": null, - "numero_insee": "17248" - } - }, - { - "pk": 24262, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MORTIERS", - "center": "POINT (391774.4344651940045878 2047806.3601571030449122)", - "surface": 6670000, - "canton": null, - "numero_insee": "17249" - } - }, - { - "pk": 15628, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MOSNAC", - "center": "POINT (375058.9417566325282678 2059880.6034071624744684)", - "surface": 12710000, - "canton": null, - "numero_insee": "17250" - } - }, - { - "pk": 30890, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE MUNG", - "center": "POINT (363106.4527811933076009 2101421.8886306737549603)", - "surface": 7440000, - "canton": null, - "numero_insee": "17252" - } - }, - { - "pk": 21103, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "MURON", - "center": "POINT (352165.6698293396038935 2117346.9232190954498947)", - "surface": 39600000, - "canton": null, - "numero_insee": "17253" - } - }, - { - "pk": 17712, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NACHAMPS", - "center": "POINT (370779.1085355357499793 2117800.0730058136396110)", - "surface": 4220000, - "canton": null, - "numero_insee": "17254" - } - }, - { - "pk": 33690, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NANCRAS", - "center": "POINT (350103.4905223487876356 2088102.7251948479097337)", - "surface": 3050000, - "canton": null, - "numero_insee": "17255" - } - }, - { - "pk": 28913, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NANTILLE", - "center": "POINT (381038.4405551036470570 2099567.4472313066944480)", - "surface": 10890000, - "canton": null, - "numero_insee": "17256" - } - }, - { - "pk": 17703, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NERE", - "center": "POINT (400156.1012919831555337 2111736.0609643971547484)", - "surface": 30140000, - "canton": null, - "numero_insee": "17257" - } - }, - { - "pk": 24882, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NEUILLAC", - "center": "POINT (386162.3153378058923408 2060772.7471717095468193)", - "surface": 10450000, - "canton": null, - "numero_insee": "17258" - } - }, - { - "pk": 33512, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NEULLES", - "center": "POINT (383963.6374044116819277 2060354.2605325793847442)", - "surface": 5870000, - "canton": null, - "numero_insee": "17259" - } - }, - { - "pk": 21031, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NEUVICQ", - "center": "POINT (403421.8782040694495663 2031286.0860264615621418)", - "surface": 22910000, - "canton": null, - "numero_insee": "17260" - } - }, - { - "pk": 19793, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NEUVICQ-LE-CHATEAU", - "center": "POINT (405813.5208546796347946 2093265.4431065157987177)", - "surface": 15210000, - "canton": null, - "numero_insee": "17261" - } - }, - { - "pk": 15662, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NIEUL-LES-SAINTES", - "center": "POINT (360210.7098068178165704 2088385.8863571968395263)", - "surface": 20450000, - "canton": null, - "numero_insee": "17262" - } - }, - { - "pk": 23379, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NIEUL-LE-VIROUIL", - "center": "POINT (375640.8972714208648540 2049975.7919270766433328)", - "surface": 22590000, - "canton": null, - "numero_insee": "17263" - } - }, - { - "pk": 31990, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NIEUL-SUR-MER", - "center": "POINT (329757.3439658522256650 2140284.3673038538545370)", - "surface": 11030000, - "canton": null, - "numero_insee": "17264" - } - }, - { - "pk": 19965, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES NOUILLERS", - "center": "POINT (367854.6824439769843593 2108267.2410113089717925)", - "surface": 23690000, - "canton": null, - "numero_insee": "17266" - } - }, - { - "pk": 26020, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "NUAILLE-D'AUNIS", - "center": "POINT (348154.7159119497518986 2142637.1284924787469208)", - "surface": 16520000, - "canton": null, - "numero_insee": "17267" - } - }, - { - "pk": 3172, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ORIGNOLLES", - "center": "POINT (398045.7946828961721621 2027738.3019026811234653)", - "surface": 13850000, - "canton": null, - "numero_insee": "17269" - } - }, - { - "pk": 36052, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "OZILLAC", - "center": "POINT (385458.8336465783067979 2048955.5170415844768286)", - "surface": 15840000, - "canton": null, - "numero_insee": "17270" - } - }, - { - "pk": 27541, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PAILLE", - "center": "POINT (388834.0401704771211371 2113144.1764287636615336)", - "surface": 12540000, - "canton": null, - "numero_insee": "17271" - } - }, - { - "pk": 10732, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PERE", - "center": "POINT (356196.8772295229136944 2126188.1016884483397007)", - "surface": 8470000, - "canton": null, - "numero_insee": "17272" - } - }, - { - "pk": 25813, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PERIGNAC", - "center": "POINT (381944.9618965757545084 2074551.2766447828616947)", - "surface": 27730000, - "canton": null, - "numero_insee": "17273" - } - }, - { - "pk": 35934, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PERIGNY", - "center": "POINT (335411.2393707882729359 2134325.2249267459847033)", - "surface": 10930000, - "canton": null, - "numero_insee": "17274" - } - }, - { - "pk": 28052, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PESSINES", - "center": "POINT (362740.8579783933819272 2085003.4527275380678475)", - "surface": 9130000, - "canton": null, - "numero_insee": "17275" - } - }, - { - "pk": 32092, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE PIN", - "center": "POINT (393752.8534286817302927 2038513.5647355846595019)", - "surface": 2510000, - "canton": null, - "numero_insee": "17276" - } - }, - { - "pk": 19378, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-DENIS-DU-PIN", - "center": "POINT (378713.0277932308381423 2114562.2675758060067892)", - "surface": 19200000, - "canton": null, - "numero_insee": "17277" - } - }, - { - "pk": 26182, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PISANY", - "center": "POINT (356150.6642927803331986 2083047.5291153213474900)", - "surface": 6650000, - "canton": null, - "numero_insee": "17278" - } - }, - { - "pk": 33447, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PLASSAC", - "center": "POINT (371902.1563276995439082 2054249.2216848258394748)", - "surface": 15560000, - "canton": null, - "numero_insee": "17279" - } - }, - { - "pk": 35793, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PLASSAY", - "center": "POINT (361848.0747002518037334 2096206.6805002719629556)", - "surface": 16950000, - "canton": null, - "numero_insee": "17280" - } - }, - { - "pk": 36291, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "POLIGNAC", - "center": "POINT (392584.7424799235304818 2034500.0086631502490491)", - "surface": 4680000, - "canton": null, - "numero_insee": "17281" - } - }, - { - "pk": 22399, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "POMMIERS-MOULONS", - "center": "POINT (389437.3838094383827411 2039879.3873744185548276)", - "surface": 9560000, - "canton": null, - "numero_insee": "17282" - } - }, - { - "pk": 18660, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PONS", - "center": "POINT (374089.8115993549581617 2068180.6232473156414926)", - "surface": 27780000, - "canton": null, - "numero_insee": "17283" - } - }, - { - "pk": 4551, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PONT-L'ABBE-D'ARNOULT", - "center": "POINT (351133.8222330949502066 2096719.2803226136602461)", - "surface": 12470000, - "canton": null, - "numero_insee": "17284" - } - }, - { - "pk": 25622, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PORT-D'ENVAUX", - "center": "POINT (366160.0449884035624564 2095241.1669730660505593)", - "surface": 22520000, - "canton": null, - "numero_insee": "17285" - } - }, - { - "pk": 32347, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES PORTES-EN-RE", - "center": "POINT (304194.2348228709888645 2145179.9150415984913707)", - "surface": 8470000, - "canton": null, - "numero_insee": "17286" - } - }, - { - "pk": 5273, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "POUILLAC", - "center": "POINT (396297.2073015137575567 2033429.5169455686118454)", - "surface": 4640000, - "canton": null, - "numero_insee": "17287" - } - }, - { - "pk": 6074, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "POURSAY-GARNAUD", - "center": "POINT (383760.9677417663624510 2109298.8927748422138393)", - "surface": 5200000, - "canton": null, - "numero_insee": "17288" - } - }, - { - "pk": 8187, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PREGUILLAC", - "center": "POINT (369300.0519759090384468 2078551.1812652072403580)", - "surface": 6640000, - "canton": null, - "numero_insee": "17289" - } - }, - { - "pk": 9694, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PRIGNAC", - "center": "POINT (391477.9662827901192941 2095949.9221155934501439)", - "surface": 6970000, - "canton": null, - "numero_insee": "17290" - } - }, - { - "pk": 12515, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PUILBOREAU", - "center": "POINT (333683.5709822771023028 2137513.9819748424924910)", - "surface": 7950000, - "canton": null, - "numero_insee": "17291" - } - }, - { - "pk": 8574, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PUY-DU-LAC", - "center": "POINT (360436.7957783150486648 2109607.6013381611555815)", - "surface": 14870000, - "canton": null, - "numero_insee": "17292" - } - }, - { - "pk": 16429, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PUYRAVAULT", - "center": "POINT (356359.2543396933469921 2130793.6412052973173559)", - "surface": 13780000, - "canton": null, - "numero_insee": "17293" - } - }, - { - "pk": 12750, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PUYROLLAND", - "center": "POINT (368365.5420715973014012 2119181.5259746480733156)", - "surface": 13130000, - "canton": null, - "numero_insee": "17294" - } - }, - { - "pk": 6398, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "REAUX", - "center": "POINT (387508.8112501854775473 2055278.5158719324972481)", - "surface": 9150000, - "canton": null, - "numero_insee": "17295" - } - }, - { - "pk": 15011, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "RETAUD", - "center": "POINT (361085.4005466491216794 2079384.5376818443182856)", - "surface": 19880000, - "canton": null, - "numero_insee": "17296" - } - }, - { - "pk": 8223, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "RIVEDOUX-PLAGE", - "center": "POINT (320491.2977298756595701 2135103.8937569316476583)", - "surface": 4870000, - "canton": null, - "numero_insee": "17297" - } - }, - { - "pk": 9301, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "RIOUX", - "center": "POINT (362518.7051070674206130 2075492.5951889634598047)", - "surface": 18940000, - "canton": null, - "numero_insee": "17298" - } - }, - { - "pk": 37435, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ROCHEFORT", - "center": "POINT (343416.4049934671493247 2110168.5809212736785412)", - "surface": 22030000, - "canton": null, - "numero_insee": "17299" - } - }, - { - "pk": 20868, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA ROCHELLE", - "center": "POINT (328799.1161144296056591 2135071.7984915780834854)", - "surface": 31680000, - "canton": null, - "numero_insee": "17300" - } - }, - { - "pk": 33972, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ROMAZIERES", - "center": "POINT (405349.8336757660144940 2113080.0836171009577811)", - "surface": 8690000, - "canton": null, - "numero_insee": "17301" - } - }, - { - "pk": 22346, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ROMEGOUX", - "center": "POINT (356307.9496259602019563 2100465.2160341804847121)", - "surface": 13280000, - "canton": null, - "numero_insee": "17302" - } - }, - { - "pk": 27947, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA RONDE", - "center": "POINT (359411.5747871257481165 2149135.2742391545325518)", - "surface": 20800000, - "canton": null, - "numero_insee": "17303" - } - }, - { - "pk": 10612, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ROUFFIAC", - "center": "POINT (379600.0989453112706542 2079736.9352916432544589)", - "surface": 5900000, - "canton": null, - "numero_insee": "17304" - } - }, - { - "pk": 37203, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "ROUFFIGNAC", - "center": "POINT (381319.2816040794132277 2041113.8228646034840494)", - "surface": 14700000, - "canton": null, - "numero_insee": "17305" - } - }, - { - "pk": 32095, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SABLONCEAUX", - "center": "POINT (348332.2923443370964378 2084384.6904014949686825)", - "surface": 22170000, - "canton": null, - "numero_insee": "17307" - } - }, - { - "pk": 3667, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-AGNANT", - "center": "POINT (344587.1180741998832673 2101670.2598483897745609)", - "surface": 22760000, - "canton": null, - "numero_insee": "17308" - } - }, - { - "pk": 19832, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-AIGULIN", - "center": "POINT (412813.8623618265846744 2021253.5738565854262561)", - "surface": 28490000, - "canton": null, - "numero_insee": "17309" - } - }, - { - "pk": 14921, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-ANDRE-DE-LIDON", - "center": "POINT (358564.4747782155172899 2069454.3759830149356276)", - "surface": 24320000, - "canton": null, - "numero_insee": "17310" - } - }, - { - "pk": 37971, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-AUGUSTIN", - "center": "POINT (331835.7932961425976828 2082047.3636963055469096)", - "surface": 18600000, - "canton": null, - "numero_insee": "17311" - } - }, - { - "pk": 35177, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-BONNET-SUR-GIRONDE", - "center": "POINT (366295.7264170870184898 2042191.4354775368701667)", - "surface": 31100000, - "canton": null, - "numero_insee": "17312" - } - }, - { - "pk": 25574, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-BRIS-DES-BOIS", - "center": "POINT (381523.6187928218860179 2089261.7609767303802073)", - "surface": 9030000, - "canton": null, - "numero_insee": "17313" - } - }, - { - "pk": 30254, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-CESAIRE", - "center": "POINT (380033.8342942815506831 2087848.1805515603628010)", - "surface": 10400000, - "canton": null, - "numero_insee": "17314" - } - }, - { - "pk": 33717, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (346240.8652850391808897 2131911.7157808993943036)", - "surface": 13770000, - "canton": null, - "numero_insee": "17315" - } - }, - { - "pk": 20806, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-CIERS-CHAMPAGNE", - "center": "POINT (393531.5346659620408900 2053226.0872245056089014)", - "surface": 18200000, - "canton": null, - "numero_insee": "17316" - } - }, - { - "pk": 18543, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-CIERS-DU-TAILLON", - "center": "POINT (367614.7296627347823232 2052212.0318851047195494)", - "surface": 22020000, - "canton": null, - "numero_insee": "17317" - } - }, - { - "pk": 20377, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-CLEMENT-DES-BALEINES", - "center": "POINT (301195.8116722945705988 2144654.9735732572153211)", - "surface": 7070000, - "canton": null, - "numero_insee": "17318" - } - }, - { - "pk": 36096, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-COLOMBE", - "center": "POINT (395086.2087499924818985 2034620.7185973927844316)", - "surface": 4400000, - "canton": null, - "numero_insee": "17319" - } - }, - { - "pk": 32959, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-COUTANT-LE-GRAND", - "center": "POINT (357730.3617310203844681 2110085.8417795081622899)", - "surface": 12990000, - "canton": null, - "numero_insee": "17320" - } - }, - { - "pk": 33719, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-CREPIN", - "center": "POINT (361690.2367118617403321 2115423.2692249934189022)", - "surface": 14110000, - "canton": null, - "numero_insee": "17321" - } - }, - { - "pk": 12754, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-CYR-DU-DORET", - "center": "POINT (356135.9406252280459739 2145805.4135574777610600)", - "surface": 17080000, - "canton": null, - "numero_insee": "17322" - } - }, - { - "pk": 25128, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-DENIS-D'OLERON", - "center": "POINT (311802.5122221343917772 2120519.5497437124140561)", - "surface": 11970000, - "canton": null, - "numero_insee": "17323" - } - }, - { - "pk": 10592, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-DIZANT-DU-BOIS", - "center": "POINT (372348.6089105104329064 2048647.4485311743337661)", - "surface": 4150000, - "canton": null, - "numero_insee": "17324" - } - }, - { - "pk": 36556, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-DIZANT-DU-GUA", - "center": "POINT (361511.6806678050197661 2051861.5892200917005539)", - "surface": 18340000, - "canton": null, - "numero_insee": "17325" - } - }, - { - "pk": 19619, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-EUGENE", - "center": "POINT (395889.1602840229752474 2058650.7427998988423496)", - "surface": 16480000, - "canton": null, - "numero_insee": "17326" - } - }, - { - "pk": 28545, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-FELIX", - "center": "POINT (372615.7279827638994902 2125722.4329241123050451)", - "surface": 15450000, - "canton": null, - "numero_insee": "17327" - } - }, - { - "pk": 16222, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-FORT-SUR-GIRONDE", - "center": "POINT (360778.1597715002717450 2055859.4461571492720395)", - "surface": 24090000, - "canton": null, - "numero_insee": "17328" - } - }, - { - "pk": 37452, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-FROULT", - "center": "POINT (336334.8921384463319555 2107107.7438481482677162)", - "surface": 6500000, - "canton": null, - "numero_insee": "17329" - } - }, - { - "pk": 17329, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-GEMME", - "center": "POINT (348876.9811192344641313 2091195.5883566937409341)", - "surface": 41000000, - "canton": null, - "numero_insee": "17330" - } - }, - { - "pk": 16947, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GENIS-DE-SAINTONGE", - "center": "POINT (372776.6297989838058129 2057459.5130350468680263)", - "surface": 11030000, - "canton": null, - "numero_insee": "17331" - } - }, - { - "pk": 5700, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GEORGES-DE-DIDONNE", - "center": "POINT (341323.6939433715306222 2072415.8712408877909184)", - "surface": 13710000, - "canton": null, - "numero_insee": "17333" - } - }, - { - "pk": 5815, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GEORGES-DE-LONGUEPIERRE", - "center": "POINT (388381.7819888920057565 2119446.2673725285567343)", - "surface": 10640000, - "canton": null, - "numero_insee": "17334" - } - }, - { - "pk": 24847, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GEORGES-DES-AGOUTS", - "center": "POINT (365963.3709110928466544 2046092.5174219883047044)", - "surface": 6400000, - "canton": null, - "numero_insee": "17335" - } - }, - { - "pk": 7965, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GEORGES-DES-COTEAUX", - "center": "POINT (363699.8009194307960570 2090116.1515975510701537)", - "surface": 19200000, - "canton": null, - "numero_insee": "17336" - } - }, - { - "pk": 18901, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GEORGES-DU-BOIS", - "center": "POINT (362452.0791979656787589 2132345.0377199114300311)", - "surface": 27840000, - "canton": null, - "numero_insee": "17338" - } - }, - { - "pk": 19638, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GERMAIN-DE-LUSIGNAN", - "center": "POINT (382503.4814252927899361 2055337.4059007628820837)", - "surface": 18130000, - "canton": null, - "numero_insee": "17339" - } - }, - { - "pk": 12883, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GERMAIN-DE-MARENCENNES", - "center": "POINT (357420.9025141715537757 2123395.5816999715752900)", - "surface": 16320000, - "canton": null, - "numero_insee": "17340" - } - }, - { - "pk": 25778, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GERMAIN-DU-SEUDRE", - "center": "POINT (363834.8999278258997947 2061489.9740867777727544)", - "surface": 16270000, - "canton": null, - "numero_insee": "17342" - } - }, - { - "pk": 26235, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-GREGOIRE-D'ARDENNES", - "center": "POINT (377655.5125867881579325 2060602.6385977426543832)", - "surface": 3590000, - "canton": null, - "numero_insee": "17343" - } - }, - { - "pk": 20712, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-HILAIRE-DE-VILLEFRANCHE", - "center": "POINT (376935.7046532403328456 2099433.6011585169471800)", - "surface": 22830000, - "canton": null, - "numero_insee": "17344" - } - }, - { - "pk": 30312, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-HILAIRE-DU-BOIS", - "center": "POINT (378931.5317043667309918 2051504.3227282112929970)", - "surface": 7530000, - "canton": null, - "numero_insee": "17345" - } - }, - { - "pk": 28994, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-HIPPOLYTE", - "center": "POINT (348544.6082595587940887 2107307.9442807245068252)", - "surface": 23480000, - "canton": null, - "numero_insee": "17346" - } - }, - { - "pk": 4133, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-JEAN-D'ANGELY", - "center": "POINT (378461.3461877206573263 2108654.7294623199850321)", - "surface": 18930000, - "canton": null, - "numero_insee": "17347" - } - }, - { - "pk": 4719, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-JEAN-D'ANGLE", - "center": "POINT (342918.4696779648074880 2097652.8299903259612620)", - "surface": 21900000, - "canton": null, - "numero_insee": "17348" - } - }, - { - "pk": 19311, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-JEAN-DE-LIVERSAY", - "center": "POINT (351920.9415772561915219 2147172.0844611274078488)", - "surface": 41590000, - "canton": null, - "numero_insee": "17349" - } - }, - { - "pk": 11405, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-JULIEN-DE-L'ESCAP", - "center": "POINT (381176.8478498111944646 2107075.5832016193307936)", - "surface": 8840000, - "canton": null, - "numero_insee": "17350" - } - }, - { - "pk": 16801, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-JUST-LUZAC", - "center": "POINT (336343.0680708785657771 2093895.4529134170152247)", - "surface": 48830000, - "canton": null, - "numero_insee": "17351" - } - }, - { - "pk": 34054, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-LAURENT-DE-LA-BARRIERE", - "center": "POINT (364462.2126339289243333 2119149.4533497951924801)", - "surface": 8360000, - "canton": null, - "numero_insee": "17352" - } - }, - { - "pk": 26935, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-LAURENT-DE-LA-PREE", - "center": "POINT (339371.1209862397518009 2115240.1445121476426721)", - "surface": 27660000, - "canton": null, - "numero_insee": "17353" - } - }, - { - "pk": 18142, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-LEGER", - "center": "POINT (373352.9719259021803737 2072578.7787031452171504)", - "surface": 15920000, - "canton": null, - "numero_insee": "17354" - } - }, - { - "pk": 23735, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-LHEURINE", - "center": "POINT (389558.7704090534825809 2061601.4871838081162423)", - "surface": 17540000, - "canton": null, - "numero_insee": "17355" - } - }, - { - "pk": 5049, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-LOUP", - "center": "POINT (368797.1408334305160679 2115381.5668830838985741)", - "surface": 16590000, - "canton": null, - "numero_insee": "17356" - } - }, - { - "pk": 20545, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MAIGRIN", - "center": "POINT (395264.4104949461761862 2049436.6727930805645883)", - "surface": 21470000, - "canton": null, - "numero_insee": "17357" - } - }, - { - "pk": 7255, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MANDE-SUR-BREDOIRE", - "center": "POINT (397597.8726010181708261 2118521.2582153305411339)", - "surface": 23280000, - "canton": null, - "numero_insee": "17358" - } - }, - { - "pk": 29043, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARD", - "center": "POINT (365508.0579470173688605 2125864.2015004535205662)", - "surface": 20940000, - "canton": null, - "numero_insee": "17359" - } - }, - { - "pk": 26091, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-MARIE-DE-RE", - "center": "POINT (317489.5857736445032060 2134979.2479054247960448)", - "surface": 10170000, - "canton": null, - "numero_insee": "17360" - } - }, - { - "pk": 6619, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIAL", - "center": "POINT (383773.7406527926214039 2119908.7960037528537214)", - "surface": 4100000, - "canton": null, - "numero_insee": "17361" - } - }, - { - "pk": 25779, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIAL-DE-MIRAMBEAU", - "center": "POINT (370366.5459964958135970 2046228.8102603503502905)", - "surface": 9210000, - "canton": null, - "numero_insee": "17362" - } - }, - { - "pk": 13415, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIAL-DE-VITATERNE", - "center": "POINT (383606.1205448852269910 2055146.2880529202520847)", - "surface": 2810000, - "canton": null, - "numero_insee": "17363" - } - }, - { - "pk": 12857, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIAL-SUR-NE", - "center": "POINT (388706.9498918817844242 2067800.4357548970729113)", - "surface": 11830000, - "canton": null, - "numero_insee": "17364" - } - }, - { - "pk": 3477, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIN-D'ARY", - "center": "POINT (400551.3989852892700583 2027358.5623663268052042)", - "surface": 8650000, - "canton": null, - "numero_insee": "17365" - } - }, - { - "pk": 25232, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIN-DE-COUX", - "center": "POINT (407527.1230029425350949 2019007.7573385632131249)", - "surface": 15660000, - "canton": null, - "numero_insee": "17366" - } - }, - { - "pk": 10843, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIN-DE-JUILLERS", - "center": "POINT (392081.2985832385020331 2107765.9105142024345696)", - "surface": 8440000, - "canton": null, - "numero_insee": "17367" - } - }, - { - "pk": 31989, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MARTIN-DE-RE", - "center": "POINT (314245.9684163025813177 2139957.2662688721902668)", - "surface": 4830000, - "canton": null, - "numero_insee": "17369" - } - }, - { - "pk": 8701, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MAURICE-DE-TAVERNOLE", - "center": "POINT (385990.1540269315009937 2057368.0447092205286026)", - "surface": 3880000, - "canton": null, - "numero_insee": "17371" - } - }, - { - "pk": 25234, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MEDARD", - "center": "POINT (389370.6099028276512399 2047986.7548187733627856)", - "surface": 3840000, - "canton": null, - "numero_insee": "17372" - } - }, - { - "pk": 28631, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-MEDARD-D'AUNIS", - "center": "POINT (344821.6274256658507511 2134102.0823017219081521)", - "surface": 22570000, - "canton": null, - "numero_insee": "17373" - } - }, - { - "pk": 14215, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-MEME", - "center": "POINT (383124.6128529543057084 2101486.3911887500435114)", - "surface": 6250000, - "canton": null, - "numero_insee": "17374" - } - }, - { - "pk": 36499, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-NAZAIRE-SUR-CHARENTE", - "center": "POINT (339111.0599092944758013 2110333.4714471022598445)", - "surface": 19950000, - "canton": null, - "numero_insee": "17375" - } - }, - { - "pk": 6338, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-OUEN-D'AUNIS", - "center": "POINT (340151.3029042801936157 2142171.1459631598554552)", - "surface": 8860000, - "canton": null, - "numero_insee": "17376" - } - }, - { - "pk": 36411, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-OUEN", - "center": "POINT (405365.2988257781835273 2099067.1861279690638185)", - "surface": 6990000, - "canton": null, - "numero_insee": "17377" - } - }, - { - "pk": 21254, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PALAIS-DE-NEGRIGNAC", - "center": "POINT (400699.5919641710352153 2033666.0040203072130680)", - "surface": 18810000, - "canton": null, - "numero_insee": "17378" - } - }, - { - "pk": 34263, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PALAIS-DE-PHIOLIN", - "center": "POINT (371142.2718339312123135 2061449.9390170082915574)", - "surface": 11060000, - "canton": null, - "numero_insee": "17379" - } - }, - { - "pk": 25421, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PALAIS-SUR-MER", - "center": "POINT (332062.2076983887818642 2078846.1738255328964442)", - "surface": 15700000, - "canton": null, - "numero_insee": "17380" - } - }, - { - "pk": 25875, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PARDOULT", - "center": "POINT (383809.9832866990473121 2115505.0374851808883250)", - "surface": 5550000, - "canton": null, - "numero_insee": "17381" - } - }, - { - "pk": 5039, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PIERRE-D'AMILLY", - "center": "POINT (365632.5782254614168778 2135073.6217589094303548)", - "surface": 19700000, - "canton": null, - "numero_insee": "17382" - } - }, - { - "pk": 19267, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PIERRE-DE-JUILLERS", - "center": "POINT (388971.2108795107342303 2108641.1341719594784081)", - "surface": 17590000, - "canton": null, - "numero_insee": "17383" - } - }, - { - "pk": 29048, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PIERRE-DE-L'ISLE", - "center": "POINT (384690.1593295135535300 2118014.5883703976869583)", - "surface": 6530000, - "canton": null, - "numero_insee": "17384" - } - }, - { - "pk": 9332, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PIERRE-DU-PALAIS", - "center": "POINT (404310.1200379065121524 2020682.9115063117351383)", - "surface": 12980000, - "canton": null, - "numero_insee": "17386" - } - }, - { - "pk": 4361, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-PORCHAIRE", - "center": "POINT (358244.9380024478305131 2096177.0892588163260370)", - "surface": 17380000, - "canton": null, - "numero_insee": "17387" - } - }, - { - "pk": 32093, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-QUANTIN-DE-RANCANNE", - "center": "POINT (370823.8986276143696159 2063649.4419801027979702)", - "surface": 9160000, - "canton": null, - "numero_insee": "17388" - } - }, - { - "pk": 24830, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-RADEGONDE", - "center": "POINT (350712.1207563203061000 2099318.2579590217210352)", - "surface": 11320000, - "canton": null, - "numero_insee": "17389" - } - }, - { - "pk": 8417, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-RAMEE", - "center": "POINT (365122.3395902046468109 2050990.3808902187738568)", - "surface": 4820000, - "canton": null, - "numero_insee": "17390" - } - }, - { - "pk": 22115, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-ROGATIEN", - "center": "POINT (337525.3123586634756066 2132841.1800172147341073)", - "surface": 5140000, - "canton": null, - "numero_insee": "17391" - } - }, - { - "pk": 8928, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-ROMAIN-SUR-GIRONDE", - "center": "POINT (357484.2255519261816517 2054731.3257737345993519)", - "surface": 2930000, - "canton": null, - "numero_insee": "17392" - } - }, - { - "pk": 18493, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-ROMAIN-DE-BENET", - "center": "POINT (351356.2897763724322431 2081807.0360724099446088)", - "surface": 33000000, - "canton": null, - "numero_insee": "17393" - } - }, - { - "pk": 18241, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SATURNIN-DU-BOIS", - "center": "POINT (368067.4960063303587958 2131089.9856926910579205)", - "surface": 25280000, - "canton": null, - "numero_insee": "17394" - } - }, - { - "pk": 24929, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SAUVANT", - "center": "POINT (379354.6306554571492597 2085240.1335624123457819)", - "surface": 7030000, - "canton": null, - "numero_insee": "17395" - } - }, - { - "pk": 27320, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SAUVEUR-D'AUNIS", - "center": "POINT (350882.4290137677453458 2139556.6987981661222875)", - "surface": 19330000, - "canton": null, - "numero_insee": "17396" - } - }, - { - "pk": 21658, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SAVINIEN", - "center": "POINT (366097.5405223431880586 2102847.7709956387989223)", - "surface": 47070000, - "canton": null, - "numero_insee": "17397" - } - }, - { - "pk": 38038, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SEURIN-DE-PALENNE", - "center": "POINT (377752.7643939851550385 2073115.4450627109035850)", - "surface": 3930000, - "canton": null, - "numero_insee": "17398" - } - }, - { - "pk": 26814, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SEVER-DE-SAINTONGE", - "center": "POINT (377389.9228084578644484 2080719.7025914508849382)", - "surface": 8120000, - "canton": null, - "numero_insee": "17400" - } - }, - { - "pk": 27948, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SEVERIN-SUR-BOUTONNE", - "center": "POINT (386136.2413276973529719 2124732.6496781818568707)", - "surface": 8020000, - "canton": null, - "numero_insee": "17401" - } - }, - { - "pk": 27042, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SIGISMOND-DE-CLERMONT", - "center": "POINT (374408.5282869532820769 2053769.3483483223244548)", - "surface": 5330000, - "canton": null, - "numero_insee": "17402" - } - }, - { - "pk": 4438, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SIMON-DE-BORDES", - "center": "POINT (381651.2720449848566204 2049424.6612270204350352)", - "surface": 14050000, - "canton": null, - "numero_insee": "17403" - } - }, - { - "pk": 12711, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SIMON-DE-PELLOUAILLE", - "center": "POINT (365048.8848454889375716 2072110.1343900929205120)", - "surface": 9050000, - "canton": null, - "numero_insee": "17404" - } - }, - { - "pk": 33708, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SORLIN-DE-CONAC", - "center": "POINT (362476.6370747735491022 2044061.9114291621372104)", - "surface": 15160000, - "canton": null, - "numero_insee": "17405" - } - }, - { - "pk": 5428, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SORNIN", - "center": "POINT (342473.0183562102029100 2090942.8746614777483046)", - "surface": 13570000, - "canton": null, - "numero_insee": "17406" - } - }, - { - "pk": 31343, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTE-SOULLE", - "center": "POINT (341186.5960710749495775 2137975.8261737837456167)", - "surface": 22060000, - "canton": null, - "numero_insee": "17407" - } - }, - { - "pk": 23186, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SULPICE-D'ARNOULT", - "center": "POINT (354146.2941682782256976 2095542.8769484974909574)", - "surface": 16340000, - "canton": null, - "numero_insee": "17408" - } - }, - { - "pk": 20617, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-SULPICE-DE-ROYAN", - "center": "POINT (339557.3603625186951831 2080308.9288436090573668)", - "surface": 20960000, - "canton": null, - "numero_insee": "17409" - } - }, - { - "pk": 14392, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-THOMAS-DE-CONAC", - "center": "POINT (362243.5617820293991826 2048063.9023979760240763)", - "surface": 27940000, - "canton": null, - "numero_insee": "17410" - } - }, - { - "pk": 11922, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-TROJAN-LES-BAINS", - "center": "POINT (323192.2935766556765884 2098592.2608039169572294)", - "surface": 17700000, - "canton": null, - "numero_insee": "17411" - } - }, - { - "pk": 35066, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-VAIZE", - "center": "POINT (370065.9128835834562778 2094972.9864868922159076)", - "surface": 4700000, - "canton": null, - "numero_insee": "17412" - } - }, - { - "pk": 31543, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-VIVIEN", - "center": "POINT (338188.9740652432665229 2125139.5761992577463388)", - "surface": 8260000, - "canton": null, - "numero_insee": "17413" - } - }, - { - "pk": 35401, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINT-XANDRE", - "center": "POINT (335561.3901169917662628 2140431.9956473624333739)", - "surface": 13370000, - "canton": null, - "numero_insee": "17414" - } - }, - { - "pk": 30278, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAINTES", - "center": "POINT (367630.3610942735103890 2086845.3325235666707158)", - "surface": 45860000, - "canton": null, - "numero_insee": "17415" - } - }, - { - "pk": 8863, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SALEIGNES", - "center": "POINT (404724.5607004312332720 2116077.6993316980078816)", - "surface": 8020000, - "canton": null, - "numero_insee": "17416" - } - }, - { - "pk": 35088, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SALIGNAC-DE-MIRAMBEAU", - "center": "POINT (379103.2739859469002113 2042797.2510204035788774)", - "surface": 7570000, - "canton": null, - "numero_insee": "17417" - } - }, - { - "pk": 22562, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SALIGNAC-SUR-CHARENTE", - "center": "POINT (385520.1392035586759448 2077983.9453653052914888)", - "surface": 10130000, - "canton": null, - "numero_insee": "17418" - } - }, - { - "pk": 30144, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SALLES-SUR-MER", - "center": "POINT (338065.1032674452872016 2128041.2186549529433250)", - "surface": 14130000, - "canton": null, - "numero_insee": "17420" - } - }, - { - "pk": 21045, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SAUJON", - "center": "POINT (344962.9545275468844920 2080253.1582434545271099)", - "surface": 18680000, - "canton": null, - "numero_insee": "17421" - } - }, - { - "pk": 11821, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SEIGNE", - "center": "POINT (402281.8318100373726338 2108850.8950298065319657)", - "surface": 6490000, - "canton": null, - "numero_insee": "17422" - } - }, - { - "pk": 28608, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SEMILLAC", - "center": "POINT (370747.1583080358686857 2048634.2802660265006125)", - "surface": 2470000, - "canton": null, - "numero_insee": "17423" - } - }, - { - "pk": 27455, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SEMOUSSAC", - "center": "POINT (368052.9377364976098761 2047611.1559955982957035)", - "surface": 9550000, - "canton": null, - "numero_insee": "17424" - } - }, - { - "pk": 20055, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SEMUSSAC", - "center": "POINT (346333.8902658847509883 2071756.2906762799248099)", - "surface": 24930000, - "canton": null, - "numero_insee": "17425" - } - }, - { - "pk": 24174, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE SEURE", - "center": "POINT (390713.5391648691729642 2091539.4903470552526414)", - "surface": 5380000, - "canton": null, - "numero_insee": "17426" - } - }, - { - "pk": 31224, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SIECQ", - "center": "POINT (403686.1061049253912643 2096350.8101661724504083)", - "surface": 11780000, - "canton": null, - "numero_insee": "17427" - } - }, - { - "pk": 11961, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SONNAC", - "center": "POINT (396485.6165767294587567 2095590.8009992346633226)", - "surface": 16860000, - "canton": null, - "numero_insee": "17428" - } - }, - { - "pk": 13542, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SOUBISE", - "center": "POINT (340943.7889510549721308 2106544.9601565110497177)", - "surface": 11220000, - "canton": null, - "numero_insee": "17429" - } - }, - { - "pk": 4306, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SOUBRAN", - "center": "POINT (376195.6923759729834273 2043373.9160879952833056)", - "surface": 13100000, - "canton": null, - "numero_insee": "17430" - } - }, - { - "pk": 13852, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SOULIGNONNE", - "center": "POINT (356682.1651567265507765 2091459.8364562613423914)", - "surface": 14480000, - "canton": null, - "numero_insee": "17431" - } - }, - { - "pk": 9434, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SOUMERAS", - "center": "POINT (382358.9148361826082692 2036417.7667713775299489)", - "surface": 6290000, - "canton": null, - "numero_insee": "17432" - } - }, - { - "pk": 27040, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SOUSMOULINS", - "center": "POINT (390957.7161632019560784 2037589.6531894900836051)", - "surface": 7770000, - "canton": null, - "numero_insee": "17433" - } - }, - { - "pk": 18075, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "SURGERES", - "center": "POINT (361091.9942613400053233 2127329.3009101902134717)", - "surface": 28570000, - "canton": null, - "numero_insee": "17434" - } - }, - { - "pk": 25030, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TAILLANT", - "center": "POINT (370388.1004485741723329 2104484.5261251325719059)", - "surface": 4980000, - "canton": null, - "numero_insee": "17435" - } - }, - { - "pk": 33753, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TAILLEBOURG", - "center": "POINT (369138.8029349913122132 2098168.3684115996584296)", - "surface": 14600000, - "canton": null, - "numero_insee": "17436" - } - }, - { - "pk": 6525, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TALMONT-SUR-GIRONDE", - "center": "POINT (347085.4219782900763676 2065556.5043472670949996)", - "surface": 4270000, - "canton": null, - "numero_insee": "17437" - } - }, - { - "pk": 11498, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TANZAC", - "center": "POINT (368800.7161642931168899 2066235.3110882067121565)", - "surface": 11450000, - "canton": null, - "numero_insee": "17438" - } - }, - { - "pk": 30614, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TAUGON", - "center": "POINT (355991.4976016060682014 2151209.0840102420188487)", - "surface": 15730000, - "canton": null, - "numero_insee": "17439" - } - }, - { - "pk": 12574, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TERNANT", - "center": "POINT (375353.7376662471215241 2109229.7267229580320418)", - "surface": 5520000, - "canton": null, - "numero_insee": "17440" - } - }, - { - "pk": 8154, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TESSON", - "center": "POINT (366630.5661676779272966 2074525.4264041818678379)", - "surface": 12330000, - "canton": null, - "numero_insee": "17441" - } - }, - { - "pk": 29572, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "THAIMS", - "center": "POINT (356031.8403937430121005 2073137.1230089676100761)", - "surface": 8830000, - "canton": null, - "numero_insee": "17442" - } - }, - { - "pk": 11655, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "THAIRE", - "center": "POINT (341591.8647011845605448 2125167.4678428573533893)", - "surface": 18700000, - "canton": null, - "numero_insee": "17443" - } - }, - { - "pk": 13805, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "THENAC", - "center": "POINT (367190.7917175457114354 2079434.7009938156697899)", - "surface": 19370000, - "canton": null, - "numero_insee": "17444" - } - }, - { - "pk": 17328, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "THEZAC", - "center": "POINT (356476.4033778883167543 2079947.2584934956394136)", - "surface": 12500000, - "canton": null, - "numero_insee": "17445" - } - }, - { - "pk": 37694, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "THORS", - "center": "POINT (393887.4758762799319811 2095068.9251530733890831)", - "surface": 5680000, - "canton": null, - "numero_insee": "17446" - } - }, - { - "pk": 36393, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE THOU", - "center": "POINT (346789.7177326925448142 2126010.8222754271700978)", - "surface": 19240000, - "canton": null, - "numero_insee": "17447" - } - }, - { - "pk": 17579, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TONNAY-BOUTONNE", - "center": "POINT (363813.4127961868653074 2112838.3037201929837465)", - "surface": 23120000, - "canton": null, - "numero_insee": "17448" - } - }, - { - "pk": 19993, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TONNAY-CHARENTE", - "center": "POINT (351108.2538869642303325 2112033.3435571095906198)", - "surface": 34970000, - "canton": null, - "numero_insee": "17449" - } - }, - { - "pk": 35176, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TORXE", - "center": "POINT (369433.0275343983666971 2111082.8125820523127913)", - "surface": 11480000, - "canton": null, - "numero_insee": "17450" - } - }, - { - "pk": 24702, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LES TOUCHES-DE-PERIGNY", - "center": "POINT (398116.9847217717906460 2104112.1939260051585734)", - "surface": 21460000, - "canton": null, - "numero_insee": "17451" - } - }, - { - "pk": 17342, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA TREMBLADE", - "center": "POINT (325660.7542689199908637 2090504.8447651218157262)", - "surface": 64060000, - "canton": null, - "numero_insee": "17452" - } - }, - { - "pk": 12578, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TRIZAY", - "center": "POINT (348479.0068524020025507 2103103.4903612951748073)", - "surface": 14250000, - "canton": null, - "numero_insee": "17453" - } - }, - { - "pk": 11648, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "TUGERAS-SAINT-MAURICE", - "center": "POINT (384906.0834669244941324 2043145.3056800179183483)", - "surface": 13890000, - "canton": null, - "numero_insee": "17454" - } - }, - { - "pk": 33250, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA VALLEE", - "center": "POINT (352976.3344374652369879 2103941.1394235687330365)", - "surface": 16400000, - "canton": null, - "numero_insee": "17455" - } - }, - { - "pk": 31131, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VANDRE", - "center": "POINT (360838.5900021417182870 2121621.9906274848617613)", - "surface": 14530000, - "canton": null, - "numero_insee": "17457" - } - }, - { - "pk": 30386, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VANZAC", - "center": "POINT (393413.8193940836936235 2043215.3757401914335787)", - "surface": 6360000, - "canton": null, - "numero_insee": "17458" - } - }, - { - "pk": 23342, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VARAIZE", - "center": "POINT (385588.0564969548722729 2106211.0498307771049440)", - "surface": 20210000, - "canton": null, - "numero_insee": "17459" - } - }, - { - "pk": 26393, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VARZAY", - "center": "POINT (360159.9436332014156505 2082379.7874987977556884)", - "surface": 13940000, - "canton": null, - "numero_insee": "17460" - } - }, - { - "pk": 24453, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VAUX-SUR-MER", - "center": "POINT (335278.1638649913365953 2077270.9982131919823587)", - "surface": 6020000, - "canton": null, - "numero_insee": "17461" - } - }, - { - "pk": 4561, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VENERAND", - "center": "POINT (375599.5181110803969204 2091515.1931728806812316)", - "surface": 9670000, - "canton": null, - "numero_insee": "17462" - } - }, - { - "pk": 12381, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VERGEROUX", - "center": "POINT (342487.7295613222522661 2113564.1197762493975461)", - "surface": 5950000, - "canton": null, - "numero_insee": "17463" - } - }, - { - "pk": 34700, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VERGNE", - "center": "POINT (379346.1120929562603123 2122775.0308040655218065)", - "surface": 8000000, - "canton": null, - "numero_insee": "17464" - } - }, - { - "pk": 30089, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA VERGNE", - "center": "POINT (374931.1709141782484949 2111928.7562076617032290)", - "surface": 13840000, - "canton": null, - "numero_insee": "17465" - } - }, - { - "pk": 30416, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VERINES", - "center": "POINT (344586.9912477758480236 2138303.9758470267988741)", - "surface": 13540000, - "canton": null, - "numero_insee": "17466" - } - }, - { - "pk": 23838, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VERVANT", - "center": "POINT (384443.4471442777430639 2111506.5503906924277544)", - "surface": 5510000, - "canton": null, - "numero_insee": "17467" - } - }, - { - "pk": 9186, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VIBRAC", - "center": "POINT (390217.5028485229122452 2042388.2617618211079389)", - "surface": 5020000, - "canton": null, - "numero_insee": "17468" - } - }, - { - "pk": 3429, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VILLARS-EN-PONS", - "center": "POINT (368658.6676194589817896 2071339.0357268878724426)", - "surface": 13330000, - "canton": null, - "numero_insee": "17469" - } - }, - { - "pk": 6161, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VILLARS-LES-BOIS", - "center": "POINT (384501.5305744211073034 2092289.0966629160102457)", - "surface": 8610000, - "canton": null, - "numero_insee": "17470" - } - }, - { - "pk": 34055, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA VILLEDIEU", - "center": "POINT (394267.8492240899940953 2121796.8575543016195297)", - "surface": 22170000, - "canton": null, - "numero_insee": "17471" - } - }, - { - "pk": 3469, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VILLEDOUX", - "center": "POINT (337035.5863042949931696 2143747.0594277102500200)", - "surface": 15610000, - "canton": null, - "numero_insee": "17472" - } - }, - { - "pk": 32625, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VILLEMORIN", - "center": "POINT (395134.4940012275474146 2113796.6235757963731885)", - "surface": 10750000, - "canton": null, - "numero_insee": "17473" - } - }, - { - "pk": 18295, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VILLENEUVE-LA-COMTESSE", - "center": "POINT (381425.6636790790362284 2125494.6160706919617951)", - "surface": 16100000, - "canton": null, - "numero_insee": "17474" - } - }, - { - "pk": 12183, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VILLEXAVIER", - "center": "POINT (382481.6547309234738350 2045827.9863302113953978)", - "surface": 9940000, - "canton": null, - "numero_insee": "17476" - } - }, - { - "pk": 11241, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VILLIERS-COUTURE", - "center": "POINT (407157.9800172528484836 2112294.2552568861283362)", - "surface": 8450000, - "canton": null, - "numero_insee": "17477" - } - }, - { - "pk": 37092, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VINAX", - "center": "POINT (402706.3485470979358070 2118062.9032290335744619)", - "surface": 9300000, - "canton": null, - "numero_insee": "17478" - } - }, - { - "pk": 12314, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VIROLLET", - "center": "POINT (360508.9188203107332811 2064265.3491180704440922)", - "surface": 10090000, - "canton": null, - "numero_insee": "17479" - } - }, - { - "pk": 33327, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VIRSON", - "center": "POINT (351148.2889816966489889 2131551.6060456866398454)", - "surface": 9960000, - "canton": null, - "numero_insee": "17480" - } - }, - { - "pk": 11260, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VOISSAY", - "center": "POINT (372149.3368887784890831 2109403.5639899950474501)", - "surface": 5040000, - "canton": null, - "numero_insee": "17481" - } - }, - { - "pk": 26687, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "VOUHE", - "center": "POINT (357944.9946681889705360 2132708.3918247539550066)", - "surface": 15750000, - "canton": null, - "numero_insee": "17482" - } - }, - { - "pk": 19420, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "YVES", - "center": "POINT (339124.1915229638107121 2120943.3807020965032279)", - "surface": 25830000, - "canton": null, - "numero_insee": "17483" - } - }, - { - "pk": 5134, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "PORT-DES-BARQUES", - "center": "POINT (335608.0445988620049320 2110304.7640741299837828)", - "surface": 6060000, - "canton": null, - "numero_insee": "17484" - } - }, - { - "pk": 32965, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LE GRAND-VILLAGE-PLAGE", - "center": "POINT (322063.4861771498690359 2101986.2073297738097608)", - "surface": 6410000, - "canton": null, - "numero_insee": "17485" - } - }, - { - "pk": 12799, - "model": "ishtar_common.town", - "fields": { - "departement": 17, - "name": "LA BREE-LES-BAINS", - "center": "POINT (314420.2850098646013066 2118639.2009744672104716)", - "surface": 7410000, - "canton": null, - "numero_insee": "17486" - } - }, - { - "pk": 30801, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ACHERES", - "center": "POINT (609158.5497954002348706 2253597.0712025375105441)", - "surface": 12980000, - "canton": null, - "numero_insee": "18001" - } - }, - { - "pk": 18567, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "AINAY-LE-VIEIL", - "center": "POINT (615841.0070837610401213 2184895.3456470440141857)", - "surface": 13790000, - "canton": null, - "numero_insee": "18002" - } - }, - { - "pk": 13419, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LES AIX-D'ANGILLON", - "center": "POINT (616948.4178719810442999 2243654.3368406011722982)", - "surface": 14670000, - "canton": null, - "numero_insee": "18003" - } - }, - { - "pk": 29360, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ALLOGNY", - "center": "POINT (597694.4878547581611201 2248196.4808877883478999)", - "surface": 50490000, - "canton": null, - "numero_insee": "18004" - } - }, - { - "pk": 35633, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ALLOUIS", - "center": "POINT (592742.7843013082165271 2241949.8374173636548221)", - "surface": 36270000, - "canton": null, - "numero_insee": "18005" - } - }, - { - "pk": 24442, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ANNOIX", - "center": "POINT (615656.7480559946270660 2218722.7289442643523216)", - "surface": 12150000, - "canton": null, - "numero_insee": "18006" - } - }, - { - "pk": 21516, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "APREMONT-SUR-ALLIER", - "center": "POINT (651939.5565383321372792 2212522.7223767735995352)", - "surface": 30780000, - "canton": null, - "numero_insee": "18007" - } - }, - { - "pk": 34381, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ARCAY", - "center": "POINT (599949.6626096866093576 2217990.2891705138608813)", - "surface": 18400000, - "canton": null, - "numero_insee": "18008" - } - }, - { - "pk": 36118, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ARCOMPS", - "center": "POINT (606822.0545206108363345 2186220.7810279461555183)", - "surface": 20550000, - "canton": null, - "numero_insee": "18009" - } - }, - { - "pk": 14606, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ARDENAIS", - "center": "POINT (601146.0739909654948860 2182770.1660699271596968)", - "surface": 17540000, - "canton": null, - "numero_insee": "18010" - } - }, - { - "pk": 17359, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ARGENT-SUR-SAULDRE", - "center": "POINT (606995.7302671646466479 2284703.9028201475739479)", - "surface": 67530000, - "canton": null, - "numero_insee": "18011" - } - }, - { - "pk": 17203, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ARGENVIERES", - "center": "POINT (649722.8199514748994261 2238025.4037973415106535)", - "surface": 14860000, - "canton": null, - "numero_insee": "18012" - } - }, - { - "pk": 20190, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ARPHEUILLES", - "center": "POINT (617623.8877967260777950 2199022.5096976868808270)", - "surface": 47690000, - "canton": null, - "numero_insee": "18013" - } - }, - { - "pk": 33156, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ASSIGNY", - "center": "POINT (631136.8635509543819353 2270195.1683737547136843)", - "surface": 17270000, - "canton": null, - "numero_insee": "18014" - } - }, - { - "pk": 14866, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "AUBIGNY-SUR-NERE", - "center": "POINT (606366.6642454386455938 2276191.8617698517628014)", - "surface": 61680000, - "canton": null, - "numero_insee": "18015" - } - }, - { - "pk": 25840, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "AUBINGES", - "center": "POINT (618825.4463924589799717 2246572.5032818568870425)", - "surface": 10890000, - "canton": null, - "numero_insee": "18016" - } - }, - { - "pk": 14914, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "AUGY-SUR-AUBOIS", - "center": "POINT (639749.7171390323201194 2198207.8552989778108895)", - "surface": 30800000, - "canton": null, - "numero_insee": "18017" - } - }, - { - "pk": 17054, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "AVORD", - "center": "POINT (625005.0705956434831023 2225807.2236159364692867)", - "surface": 28120000, - "canton": null, - "numero_insee": "18018" - } - }, - { - "pk": 29645, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "AZY", - "center": "POINT (628257.7675320360576734 2243649.3784277625381947)", - "surface": 27950000, - "canton": null, - "numero_insee": "18019" - } - }, - { - "pk": 34099, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BANNAY", - "center": "POINT (640488.3585555817699060 2264969.6530691464431584)", - "surface": 25420000, - "canton": null, - "numero_insee": "18020" - } - }, - { - "pk": 30446, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BANNEGON", - "center": "POINT (629819.1736188941868022 2200826.5527146486565471)", - "surface": 21420000, - "canton": null, - "numero_insee": "18021" - } - }, - { - "pk": 31429, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BAUGY", - "center": "POINT (628771.7681934746215120 2230142.5123861143365502)", - "surface": 22980000, - "canton": null, - "numero_insee": "18023" - } - }, - { - "pk": 12896, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BEDDES", - "center": "POINT (590270.9251413610763848 2178675.4311097310855985)", - "surface": 13010000, - "canton": null, - "numero_insee": "18024" - } - }, - { - "pk": 33157, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BELLEVILLE-SUR-LOIRE", - "center": "POINT (638376.4580717292847112 2278062.3714190153405070)", - "surface": 11020000, - "canton": null, - "numero_insee": "18026" - } - }, - { - "pk": 17499, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BENGY-SUR-CRAON", - "center": "POINT (630039.2276832633651793 2222246.5650732908397913)", - "surface": 35830000, - "canton": null, - "numero_insee": "18027" - } - }, - { - "pk": 4423, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BERRY-BOUY", - "center": "POINT (596890.3842159793712199 2236680.2514068805612624)", - "surface": 32010000, - "canton": null, - "numero_insee": "18028" - } - }, - { - "pk": 25440, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BESSAIS-LE-FROMENTAL", - "center": "POINT (633477.6144461678341031 2194251.6772915353067219)", - "surface": 26300000, - "canton": null, - "numero_insee": "18029" - } - }, - { - "pk": 23855, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BLANCAFORT", - "center": "POINT (615427.8629878999199718 2281672.2938987580128014)", - "surface": 65480000, - "canton": null, - "numero_insee": "18030" - } - }, - { - "pk": 19804, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BLET", - "center": "POINT (630049.4954293498303741 2209135.5766353649087250)", - "surface": 30840000, - "canton": null, - "numero_insee": "18031" - } - }, - { - "pk": 24406, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BOULLERET", - "center": "POINT (641343.4889544326579198 2270381.2062329165637493)", - "surface": 32720000, - "canton": null, - "numero_insee": "18032" - } - }, - { - "pk": 19808, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BOURGES", - "center": "POINT (605048.6314431843347847 2230543.5801786840893328)", - "surface": 68520000, - "canton": null, - "numero_insee": "18033" - } - }, - { - "pk": 30010, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BOUZAIS", - "center": "POINT (610198.6998438377631828 2189351.8323090602643788)", - "surface": 3310000, - "canton": null, - "numero_insee": "18034" - } - }, - { - "pk": 15002, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BRECY", - "center": "POINT (622211.2527952983509749 2236692.8058546255342662)", - "surface": 40060000, - "canton": null, - "numero_insee": "18035" - } - }, - { - "pk": 3455, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BRINAY", - "center": "POINT (582947.1314996775472537 2240466.5532320821657777)", - "surface": 29580000, - "canton": null, - "numero_insee": "18036" - } - }, - { - "pk": 21296, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BRINON-SUR-SAULDRE", - "center": "POINT (591677.9814596514916047 2285375.9737849207594991)", - "surface": 118130000, - "canton": null, - "numero_insee": "18037" - } - }, - { - "pk": 31502, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BRUERE-ALLICHAMPS", - "center": "POINT (607029.8304482519160956 2197232.0265938946977258)", - "surface": 14160000, - "canton": null, - "numero_insee": "18038" - } - }, - { - "pk": 4837, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BUE", - "center": "POINT (634552.1960190645186231 2256813.0895415777340531)", - "surface": 6320000, - "canton": null, - "numero_insee": "18039" - } - }, - { - "pk": 20596, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "BUSSY", - "center": "POINT (621628.6382520339684561 2210766.1721876044757664)", - "surface": 26970000, - "canton": null, - "numero_insee": "18040" - } - }, - { - "pk": 17965, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CELETTE", - "center": "POINT (614164.0426280720857903 2181978.7272055237554014)", - "surface": 25230000, - "canton": null, - "numero_insee": "18041" - } - }, - { - "pk": 11788, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CELLE", - "center": "POINT (609335.8484408879885450 2196750.9671814283356071)", - "surface": 12790000, - "canton": null, - "numero_insee": "18042" - } - }, - { - "pk": 6984, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CELLE-CONDE", - "center": "POINT (587700.3390578534454107 2198771.2806947082281113)", - "surface": 28750000, - "canton": null, - "numero_insee": "18043" - } - }, - { - "pk": 11636, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CERBOIS", - "center": "POINT (582396.1573602198623121 2234557.0491812978871167)", - "surface": 18520000, - "canton": null, - "numero_insee": "18044" - } - }, - { - "pk": 4240, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHALIVOY-MILON", - "center": "POINT (627767.9142116683069617 2206714.3317877952940762)", - "surface": 19900000, - "canton": null, - "numero_insee": "18045" - } - }, - { - "pk": 13447, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHAMBON", - "center": "POINT (599821.6304979436099529 2197471.7623045765794814)", - "surface": 14050000, - "canton": null, - "numero_insee": "18046" - } - }, - { - "pk": 15649, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CHAPELLE-D'ANGILLON", - "center": "POINT (607774.3628545210231096 2263493.4833968351595104)", - "surface": 10230000, - "canton": null, - "numero_insee": "18047" - } - }, - { - "pk": 15229, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CHAPELLE-HUGON", - "center": "POINT (647050.0916363213909790 2210780.0528216115199029)", - "surface": 16430000, - "canton": null, - "numero_insee": "18048" - } - }, - { - "pk": 7870, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CHAPELLE-MONTLINARD", - "center": "POINT (649187.8454027982661501 2242124.2827247828245163)", - "surface": 16990000, - "canton": null, - "numero_insee": "18049" - } - }, - { - "pk": 28264, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CHAPELLE-SAINT-URSIN", - "center": "POINT (598559.6285093884216622 2228587.5194405070506036)", - "surface": 7870000, - "canton": null, - "numero_insee": "18050" - } - }, - { - "pk": 15657, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA CHAPELOTTE", - "center": "POINT (619818.5568105222191662 2259391.3047552057541907)", - "surface": 28820000, - "canton": null, - "numero_insee": "18051" - } - }, - { - "pk": 16153, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHARENTON-DU-CHER", - "center": "POINT (624174.4673085074173287 2193672.9529204051941633)", - "surface": 48880000, - "canton": null, - "numero_insee": "18052" - } - }, - { - "pk": 29220, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHARENTONNAY", - "center": "POINT (640414.0915242475457489 2238147.1112317065708339)", - "surface": 21800000, - "canton": null, - "numero_insee": "18053" - } - }, - { - "pk": 25787, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHAROST", - "center": "POINT (584108.9303283666959032 2221260.2886332464404404)", - "surface": 10880000, - "canton": null, - "numero_insee": "18055" - } - }, - { - "pk": 17682, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHASSY", - "center": "POINT (637704.6918934897985309 2227115.1312524471431971)", - "surface": 17850000, - "canton": null, - "numero_insee": "18056" - } - }, - { - "pk": 20143, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHATEAUMEILLANT", - "center": "POINT (590021.0408472676062956 2172668.0800805645994842)", - "surface": 42470000, - "canton": null, - "numero_insee": "18057" - } - }, - { - "pk": 37980, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHATEAUNEUF-SUR-CHER", - "center": "POINT (600239.7004384984029457 2207283.6548692211508751)", - "surface": 21870000, - "canton": null, - "numero_insee": "18058" - } - }, - { - "pk": 35380, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LE CHATELET", - "center": "POINT (596658.4298338168300688 2180830.8466498735360801)", - "surface": 32520000, - "canton": null, - "numero_insee": "18059" - } - }, - { - "pk": 6957, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHAUMONT", - "center": "POINT (631488.4967109838034958 2204643.8542665918357670)", - "surface": 2170000, - "canton": null, - "numero_insee": "18060" - } - }, - { - "pk": 14005, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHAUMOUX-MARCILLY", - "center": "POINT (633608.1003690274665132 2238189.8724510795436800)", - "surface": 16960000, - "canton": null, - "numero_insee": "18061" - } - }, - { - "pk": 29602, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LE CHAUTAY", - "center": "POINT (647667.1109008238418028 2220693.6253219358623028)", - "surface": 14560000, - "canton": null, - "numero_insee": "18062" - } - }, - { - "pk": 30585, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHAVANNES", - "center": "POINT (604945.8928587262053043 2207022.9108016742393374)", - "surface": 24000000, - "canton": null, - "numero_insee": "18063" - } - }, - { - "pk": 18744, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHERY", - "center": "POINT (576385.7283317677211016 2235207.2769919629208744)", - "surface": 13610000, - "canton": null, - "numero_insee": "18064" - } - }, - { - "pk": 21808, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CHEZAL-BENOIT", - "center": "POINT (582756.2210693772649392 2203533.9480498703196645)", - "surface": 46470000, - "canton": null, - "numero_insee": "18065" - } - }, - { - "pk": 6010, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CIVRAY", - "center": "POINT (588429.0256919005187228 2219294.8209365657530725)", - "surface": 41500000, - "canton": null, - "numero_insee": "18066" - } - }, - { - "pk": 15815, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CLEMONT", - "center": "POINT (599489.4817874423461035 2284740.9590407796204090)", - "surface": 49930000, - "canton": null, - "numero_insee": "18067" - } - }, - { - "pk": 17325, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "COGNY", - "center": "POINT (623372.8940645877737552 2205676.5024233590811491)", - "surface": 16990000, - "canton": null, - "numero_insee": "18068" - } - }, - { - "pk": 36941, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "COLOMBIERS", - "center": "POINT (616808.1522630250547081 2188906.9454310620203614)", - "surface": 9660000, - "canton": null, - "numero_insee": "18069" - } - }, - { - "pk": 13506, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CONCRESSAULT", - "center": "POINT (617569.7659900836879387 2276886.4787842989899218)", - "surface": 7570000, - "canton": null, - "numero_insee": "18070" - } - }, - { - "pk": 12440, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CONTRES", - "center": "POINT (612157.4046303542563692 2206382.8925608312711120)", - "surface": 15910000, - "canton": null, - "numero_insee": "18071" - } - }, - { - "pk": 26178, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CORNUSSE", - "center": "POINT (630080.5018203004729003 2217342.7854712698608637)", - "surface": 19840000, - "canton": null, - "numero_insee": "18072" - } - }, - { - "pk": 36342, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CORQUOY", - "center": "POINT (597012.8468165470985696 2210159.0398704833351076)", - "surface": 22740000, - "canton": null, - "numero_insee": "18073" - } - }, - { - "pk": 22349, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "COUARGUES", - "center": "POINT (644584.9253635465865955 2253895.1635100031271577)", - "surface": 11730000, - "canton": null, - "numero_insee": "18074" - } - }, - { - "pk": 31037, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "COURS-LES-BARRES", - "center": "POINT (653236.8171732787741348 2224844.0367589471861720)", - "surface": 21580000, - "canton": null, - "numero_insee": "18075" - } - }, - { - "pk": 18769, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "COUST", - "center": "POINT (620025.8449967545457184 2187132.4392291116528213)", - "surface": 22150000, - "canton": null, - "numero_insee": "18076" - } - }, - { - "pk": 9133, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "COUY", - "center": "POINT (637242.8551954200956970 2234417.3284486453048885)", - "surface": 18510000, - "canton": null, - "numero_insee": "18077" - } - }, - { - "pk": 13533, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CREZANCAY-SUR-CHER", - "center": "POINT (600387.6613881946541369 2201580.0297636589966714)", - "surface": 7880000, - "canton": null, - "numero_insee": "18078" - } - }, - { - "pk": 6749, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CROISY", - "center": "POINT (637410.5900438125245273 2214502.0508366255089641)", - "surface": 13330000, - "canton": null, - "numero_insee": "18080" - } - }, - { - "pk": 27326, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CROSSES", - "center": "POINT (617521.1953031306620687 2223142.1037878622300923)", - "surface": 26850000, - "canton": null, - "numero_insee": "18081" - } - }, - { - "pk": 20182, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "CUFFY", - "center": "POINT (653285.7761014682473615 2219039.5728791365399957)", - "surface": 35620000, - "canton": null, - "numero_insee": "18082" - } - }, - { - "pk": 28568, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "DAMPIERRE-EN-CROT", - "center": "POINT (617903.6385143317747861 2272886.0880431374534965)", - "surface": 22170000, - "canton": null, - "numero_insee": "18084" - } - }, - { - "pk": 9817, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "DAMPIERRE-EN-GRACAY", - "center": "POINT (570018.1154178220313042 2242660.1654085554182529)", - "surface": 9450000, - "canton": null, - "numero_insee": "18085" - } - }, - { - "pk": 8533, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "DREVANT", - "center": "POINT (614207.7670506488066167 2188684.9145425925962627)", - "surface": 4830000, - "canton": null, - "numero_insee": "18086" - } - }, - { - "pk": 27650, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "DUN-SUR-AURON", - "center": "POINT (617029.2644785613520071 2210227.0736189284361899)", - "surface": 49870000, - "canton": null, - "numero_insee": "18087" - } - }, - { - "pk": 23517, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ENNORDRES", - "center": "POINT (605524.8370191915892065 2269179.1844987017102540)", - "surface": 64460000, - "canton": null, - "numero_insee": "18088" - } - }, - { - "pk": 17396, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "EPINEUIL-LE-FLEURIEL", - "center": "POINT (616829.2235610109055415 2174494.5738634867593646)", - "surface": 42630000, - "canton": null, - "numero_insee": "18089" - } - }, - { - "pk": 15564, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ETRECHY", - "center": "POINT (628688.3883662527659908 2240050.0317287584766746)", - "surface": 32380000, - "canton": null, - "numero_insee": "18090" - } - }, - { - "pk": 35061, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "FARGES-ALLICHAMPS", - "center": "POINT (605644.6948422578861937 2195318.7591618061996996)", - "surface": 8260000, - "canton": null, - "numero_insee": "18091" - } - }, - { - "pk": 19740, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "FARGES-EN-SEPTAINE", - "center": "POINT (623071.6259095749119297 2229594.1362779936753213)", - "surface": 24970000, - "canton": null, - "numero_insee": "18092" - } - }, - { - "pk": 31885, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "FAVERDINES", - "center": "POINT (609361.0408768717898056 2181838.2819723859429359)", - "surface": 18780000, - "canton": null, - "numero_insee": "18093" - } - }, - { - "pk": 33495, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "FEUX", - "center": "POINT (640132.1590438336133957 2247852.7327208933420479)", - "surface": 27540000, - "canton": null, - "numero_insee": "18094" - } - }, - { - "pk": 37911, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "FLAVIGNY", - "center": "POINT (635279.4660153222503141 2217987.0609376011416316)", - "surface": 13330000, - "canton": null, - "numero_insee": "18095" - } - }, - { - "pk": 8799, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "FUSSY", - "center": "POINT (606688.5709650808712468 2237863.4184090513736010)", - "surface": 11170000, - "canton": null, - "numero_insee": "18097" - } - }, - { - "pk": 3342, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GARDEFORT", - "center": "POINT (636801.0287272385321558 2251227.4589722100645304)", - "surface": 8460000, - "canton": null, - "numero_insee": "18098" - } - }, - { - "pk": 19636, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GARIGNY", - "center": "POINT (641466.2840603868244216 2232050.9100074102170765)", - "surface": 19820000, - "canton": null, - "numero_insee": "18099" - } - }, - { - "pk": 29781, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GENOUILLY", - "center": "POINT (565708.1738590095192194 2243424.7559042563661933)", - "surface": 34560000, - "canton": null, - "numero_insee": "18100" - } - }, - { - "pk": 21925, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GERMIGNY-L'EXEMPT", - "center": "POINT (641528.1036940602352843 2212835.2969048051163554)", - "surface": 28510000, - "canton": null, - "numero_insee": "18101" - } - }, - { - "pk": 16746, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GRACAY", - "center": "POINT (563551.7230978572042659 2238002.2554601966403425)", - "surface": 31700000, - "canton": null, - "numero_insee": "18103" - } - }, - { - "pk": 12034, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GROISES", - "center": "POINT (635950.9228199847275391 2245215.3776774271391332)", - "surface": 17770000, - "canton": null, - "numero_insee": "18104" - } - }, - { - "pk": 31218, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GRON", - "center": "POINT (630330.0298339192522690 2235259.8719790703617036)", - "surface": 26740000, - "canton": null, - "numero_insee": "18105" - } - }, - { - "pk": 18250, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "GROSSOUVRE", - "center": "POINT (645670.9340187924681231 2208166.2165029635652900)", - "surface": 15850000, - "canton": null, - "numero_insee": "18106" - } - }, - { - "pk": 28457, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA GROUTTE", - "center": "POINT (613415.5414067786186934 2187677.3900285097770393)", - "surface": 2890000, - "canton": null, - "numero_insee": "18107" - } - }, - { - "pk": 23700, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA GUERCHE-SUR-L'AUBOIS", - "center": "POINT (646297.2445818225387484 2216978.9578823847696185)", - "surface": 53510000, - "canton": null, - "numero_insee": "18108" - } - }, - { - "pk": 30875, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "HENRICHEMONT", - "center": "POINT (615048.6471419372828677 2255347.9514303570613265)", - "surface": 25860000, - "canton": null, - "numero_insee": "18109" - } - }, - { - "pk": 20045, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "HERRY", - "center": "POINT (645737.2001494615105912 2247799.8834844920784235)", - "surface": 49870000, - "canton": null, - "numero_insee": "18110" - } - }, - { - "pk": 20386, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "HUMBLIGNY", - "center": "POINT (623488.5675287098856643 2251415.6540199108421803)", - "surface": 21070000, - "canton": null, - "numero_insee": "18111" - } - }, - { - "pk": 17967, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "IDS-SAINT-ROCH", - "center": "POINT (593975.7464785908814520 2190416.6744319801218808)", - "surface": 27750000, - "canton": null, - "numero_insee": "18112" - } - }, - { - "pk": 21893, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "IGNOL", - "center": "POINT (640086.5472883936017752 2217627.2118658823892474)", - "surface": 17940000, - "canton": null, - "numero_insee": "18113" - } - }, - { - "pk": 28810, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "INEUIL", - "center": "POINT (595325.6382325640879571 2196533.2592712915502489)", - "surface": 27500000, - "canton": null, - "numero_insee": "18114" - } - }, - { - "pk": 20420, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "IVOY-LE-PRE", - "center": "POINT (613094.2508312835125253 2261636.6423029075376689)", - "surface": 99350000, - "canton": null, - "numero_insee": "18115" - } - }, - { - "pk": 25203, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "JALOGNES", - "center": "POINT (633427.9791506188921630 2247696.1875126231461763)", - "surface": 28260000, - "canton": null, - "numero_insee": "18116" - } - }, - { - "pk": 14503, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "JARS", - "center": "POINT (624963.4740732960635796 2266440.2399114877916873)", - "surface": 38060000, - "canton": null, - "numero_insee": "18117" - } - }, - { - "pk": 31778, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "JOUET-SUR-L'AUBOIS", - "center": "POINT (650612.8801807620329782 2227424.0849844771437347)", - "surface": 17350000, - "canton": null, - "numero_insee": "18118" - } - }, - { - "pk": 34836, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "JUSSY-CHAMPAGNE", - "center": "POINT (623541.8025656316895038 2221291.1372664775699377)", - "surface": 27740000, - "canton": null, - "numero_insee": "18119" - } - }, - { - "pk": 17324, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "JUSSY-LE-CHAUDRIER", - "center": "POINT (645937.6571541230659932 2235891.7514067562296987)", - "surface": 25560000, - "canton": null, - "numero_insee": "18120" - } - }, - { - "pk": 7125, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LANTAN", - "center": "POINT (624723.4737086709355935 2211692.9682412063702941)", - "surface": 13600000, - "canton": null, - "numero_insee": "18121" - } - }, - { - "pk": 25856, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LAPAN", - "center": "POINT (596785.8184043096844107 2213359.8490972216241062)", - "surface": 10610000, - "canton": null, - "numero_insee": "18122" - } - }, - { - "pk": 30252, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LAVERDINES", - "center": "POINT (634610.7451192343141884 2226088.2384520056657493)", - "surface": 9830000, - "canton": null, - "numero_insee": "18123" - } - }, - { - "pk": 18789, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LAZENAY", - "center": "POINT (580235.5698116666171700 2229634.8662281786091626)", - "surface": 31010000, - "canton": null, - "numero_insee": "18124" - } - }, - { - "pk": 11757, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LERE", - "center": "POINT (640410.7916664610384032 2274176.3942839652299881)", - "surface": 16140000, - "canton": null, - "numero_insee": "18125" - } - }, - { - "pk": 4991, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LEVET", - "center": "POINT (604183.1606643145205453 2214422.7890006811358035)", - "surface": 25900000, - "canton": null, - "numero_insee": "18126" - } - }, - { - "pk": 4596, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LIGNIERES", - "center": "POINT (589928.0889958827756345 2195687.2964876289479434)", - "surface": 21990000, - "canton": null, - "numero_insee": "18127" - } - }, - { - "pk": 24057, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LIMEUX", - "center": "POINT (583829.0941255721263587 2230765.8963049771264195)", - "surface": 13290000, - "canton": null, - "numero_insee": "18128" - } - }, - { - "pk": 29944, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LISSAY-LOCHY", - "center": "POINT (603841.7527919870335609 2219324.0593940466642380)", - "surface": 22430000, - "canton": null, - "numero_insee": "18129" - } - }, - { - "pk": 19245, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LOYE-SUR-ARNON", - "center": "POINT (604960.8796561765484512 2181400.9757440770044923)", - "surface": 34560000, - "canton": null, - "numero_insee": "18130" - } - }, - { - "pk": 26177, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LUGNY-BOURBONNAIS", - "center": "POINT (627898.1704723258735612 2215022.4754935451783240)", - "surface": 5320000, - "canton": null, - "numero_insee": "18131" - } - }, - { - "pk": 28911, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LUGNY-CHAMPAGNE", - "center": "POINT (637178.7966464289929718 2242023.0822753449901938)", - "surface": 29530000, - "canton": null, - "numero_insee": "18132" - } - }, - { - "pk": 11147, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LUNERY", - "center": "POINT (593966.8531830422580242 2215337.8902061930857599)", - "surface": 32820000, - "canton": null, - "numero_insee": "18133" - } - }, - { - "pk": 9420, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LURY-SUR-ARNON", - "center": "POINT (579271.1638453762279823 2237233.1052291565574706)", - "surface": 13910000, - "canton": null, - "numero_insee": "18134" - } - }, - { - "pk": 20937, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MAISONNAIS", - "center": "POINT (591034.6361164489062503 2183085.6724340128712356)", - "surface": 26920000, - "canton": null, - "numero_insee": "18135" - } - }, - { - "pk": 4772, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MARCAIS", - "center": "POINT (601199.1066975110443309 2188375.4741302197799087)", - "surface": 29270000, - "canton": null, - "numero_insee": "18136" - } - }, - { - "pk": 28576, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MAREUIL-SUR-ARNON", - "center": "POINT (586716.5687056090682745 2208671.4911384130828083)", - "surface": 26320000, - "canton": null, - "numero_insee": "18137" - } - }, - { - "pk": 4488, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MARMAGNE", - "center": "POINT (594926.6494312329450622 2232160.0366122932173312)", - "surface": 37510000, - "canton": null, - "numero_insee": "18138" - } - }, - { - "pk": 8354, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MARSEILLES-LES-AUBIGNY", - "center": "POINT (649888.7163561459165066 2230220.3178876792080700)", - "surface": 9880000, - "canton": null, - "numero_insee": "18139" - } - }, - { - "pk": 20826, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MASSAY", - "center": "POINT (573347.4176095521543175 2239485.3957083029672503)", - "surface": 47900000, - "canton": null, - "numero_insee": "18140" - } - }, - { - "pk": 17099, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MEHUN-SUR-YEVRE", - "center": "POINT (591080.1096435582730919 2237332.0894042206928134)", - "surface": 24490000, - "canton": null, - "numero_insee": "18141" - } - }, - { - "pk": 24010, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MEILLANT", - "center": "POINT (612929.4381738732336089 2197882.1066057779826224)", - "surface": 41510000, - "canton": null, - "numero_insee": "18142" - } - }, - { - "pk": 16155, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MENETOU-COUTURE", - "center": "POINT (645512.3507087500765920 2226980.7491698293015361)", - "surface": 29820000, - "canton": null, - "numero_insee": "18143" - } - }, - { - "pk": 37049, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MENETOU-RATEL", - "center": "POINT (631314.4381287826690823 2260989.2408053241670132)", - "surface": 27980000, - "canton": null, - "numero_insee": "18144" - } - }, - { - "pk": 22960, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MENETOU-SALON", - "center": "POINT (611598.1781773874536157 2249113.8885286133736372)", - "surface": 38120000, - "canton": null, - "numero_insee": "18145" - } - }, - { - "pk": 36488, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MENETREOL-SOUS-SANCERRE", - "center": "POINT (640049.5357537298696116 2257660.0416474505327642)", - "surface": 5390000, - "canton": null, - "numero_insee": "18146" - } - }, - { - "pk": 3039, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MENETREOL-SUR-SAULDRE", - "center": "POINT (596392.9736520830774680 2272104.9367766994982958)", - "surface": 50150000, - "canton": null, - "numero_insee": "18147" - } - }, - { - "pk": 7315, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MEREAU", - "center": "POINT (578429.4792984627420083 2242130.1044704257510602)", - "surface": 18720000, - "canton": null, - "numero_insee": "18148" - } - }, - { - "pk": 21358, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MERY-ES-BOIS", - "center": "POINT (603129.7113254879368469 2256448.8018727428279817)", - "surface": 91300000, - "canton": null, - "numero_insee": "18149" - } - }, - { - "pk": 15231, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MERY-SUR-CHER", - "center": "POINT (573961.6356335986638442 2249799.0127279027365148)", - "surface": 21200000, - "canton": null, - "numero_insee": "18150" - } - }, - { - "pk": 29811, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MONTIGNY", - "center": "POINT (626522.8057486633770168 2247638.0679919263347983)", - "surface": 29060000, - "canton": null, - "numero_insee": "18151" - } - }, - { - "pk": 28577, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MONTLOUIS", - "center": "POINT (593188.7211832156172022 2200718.9370689154602587)", - "surface": 19200000, - "canton": null, - "numero_insee": "18152" - } - }, - { - "pk": 9741, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MORLAC", - "center": "POINT (598467.5612579643493518 2191855.5738801746629179)", - "surface": 33170000, - "canton": null, - "numero_insee": "18153" - } - }, - { - "pk": 28046, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MORNAY-BERRY", - "center": "POINT (640096.4121954644797370 2228336.2817088975571096)", - "surface": 9390000, - "canton": null, - "numero_insee": "18154" - } - }, - { - "pk": 5464, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MORNAY-SUR-ALLIER", - "center": "POINT (651427.7079082743730396 2202009.4584042108617723)", - "surface": 22090000, - "canton": null, - "numero_insee": "18155" - } - }, - { - "pk": 18208, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MOROGUES", - "center": "POINT (619589.8620973202632740 2250882.4558675084263086)", - "surface": 31000000, - "canton": null, - "numero_insee": "18156" - } - }, - { - "pk": 9951, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MORTHOMIERS", - "center": "POINT (595069.5462202798807994 2227056.9799048164859414)", - "surface": 14670000, - "canton": null, - "numero_insee": "18157" - } - }, - { - "pk": 28499, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "MOULINS-SUR-YEVRE", - "center": "POINT (614539.0583801014581695 2232624.9768688022159040)", - "surface": 15310000, - "canton": null, - "numero_insee": "18158" - } - }, - { - "pk": 23844, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NANCAY", - "center": "POINT (587762.1250554722500965 2263025.3015616852790117)", - "surface": 106040000, - "canton": null, - "numero_insee": "18159" - } - }, - { - "pk": 36977, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NERONDES", - "center": "POINT (638142.0879558171145618 2222715.1265726997517049)", - "surface": 34130000, - "canton": null, - "numero_insee": "18160" - } - }, - { - "pk": 24116, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NEUILLY-EN-DUN", - "center": "POINT (634027.5303285083500668 2200261.4651787867769599)", - "surface": 30040000, - "canton": null, - "numero_insee": "18161" - } - }, - { - "pk": 19116, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NEUILLY-EN-SANCERRE", - "center": "POINT (624048.6068077028030530 2256224.2811960219405591)", - "surface": 26160000, - "canton": null, - "numero_insee": "18162" - } - }, - { - "pk": 3488, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NEUVY-DEUX-CLOCHERS", - "center": "POINT (626674.1164263603277504 2253444.0880227265879512)", - "surface": 16800000, - "canton": null, - "numero_insee": "18163" - } - }, - { - "pk": 21408, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NEUVY-LE-BARROIS", - "center": "POINT (651987.6657124313060194 2206818.2815155456773937)", - "surface": 42250000, - "canton": null, - "numero_insee": "18164" - } - }, - { - "pk": 18254, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NEUVY-SUR-BARANGEON", - "center": "POINT (595010.2581901100929826 2257981.9574023205786943)", - "surface": 67040000, - "canton": null, - "numero_insee": "18165" - } - }, - { - "pk": 27833, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NOHANT-EN-GOUT", - "center": "POINT (618445.3938060519285500 2232257.4819454727694392)", - "surface": 24950000, - "canton": null, - "numero_insee": "18166" - } - }, - { - "pk": 26305, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NOHANT-EN-GRACAY", - "center": "POINT (567762.4432060365797952 2237136.7413435154594481)", - "surface": 23720000, - "canton": null, - "numero_insee": "18167" - } - }, - { - "pk": 28737, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LE NOYER", - "center": "POINT (624794.4773770734900609 2262735.8303996035829186)", - "surface": 20270000, - "canton": null, - "numero_insee": "18168" - } - }, - { - "pk": 3770, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "NOZIERES", - "center": "POINT (606367.1015269593335688 2192722.5851579625159502)", - "surface": 10310000, - "canton": null, - "numero_insee": "18169" - } - }, - { - "pk": 17556, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "OIZON", - "center": "POINT (613202.7292778698028997 2272546.3334985808469355)", - "surface": 62300000, - "canton": null, - "numero_insee": "18170" - } - }, - { - "pk": 6992, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ORCENAIS", - "center": "POINT (605890.2389113989192992 2189916.1611296865157783)", - "surface": 18820000, - "canton": null, - "numero_insee": "18171" - } - }, - { - "pk": 11804, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "ORVAL", - "center": "POINT (609982.5656748085748404 2191251.6595850060693920)", - "surface": 7640000, - "canton": null, - "numero_insee": "18172" - } - }, - { - "pk": 32730, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "OSMERY", - "center": "POINT (624392.0902745765633881 2215393.3144298736006021)", - "surface": 21620000, - "canton": null, - "numero_insee": "18173" - } - }, - { - "pk": 3635, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "OSMOY", - "center": "POINT (612766.2812322813551873 2229207.2441974342800677)", - "surface": 22890000, - "canton": null, - "numero_insee": "18174" - } - }, - { - "pk": 21894, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "OUROUER-LES-BOURDELINS", - "center": "POINT (634515.9254663598258048 2213576.9118344071321189)", - "surface": 25050000, - "canton": null, - "numero_insee": "18175" - } - }, - { - "pk": 37421, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PARASSY", - "center": "POINT (615200.8735603194218129 2249144.1654626340605319)", - "surface": 26600000, - "canton": null, - "numero_insee": "18176" - } - }, - { - "pk": 37884, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PARNAY", - "center": "POINT (616666.8115196588914841 2205720.1959999366663396)", - "surface": 17410000, - "canton": null, - "numero_insee": "18177" - } - }, - { - "pk": 6313, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LA PERCHE", - "center": "POINT (618072.2130043145734817 2181411.0565070812590420)", - "surface": 10410000, - "canton": null, - "numero_insee": "18178" - } - }, - { - "pk": 37182, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PIGNY", - "center": "POINT (608068.6159327119821683 2240377.0776636865921319)", - "surface": 8220000, - "canton": null, - "numero_insee": "18179" - } - }, - { - "pk": 20268, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PLAIMPIED-GIVAUDINS", - "center": "POINT (607513.5066684611374512 2223058.0064237588085234)", - "surface": 41070000, - "canton": null, - "numero_insee": "18180" - } - }, - { - "pk": 35385, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PLOU", - "center": "POINT (585673.2514281215844676 2225677.0928877950645983)", - "surface": 33770000, - "canton": null, - "numero_insee": "18181" - } - }, - { - "pk": 5392, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "POISIEUX", - "center": "POINT (581168.9608280615648255 2225739.4269870887510478)", - "surface": 10500000, - "canton": null, - "numero_insee": "18182" - } - }, - { - "pk": 29780, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LE PONDY", - "center": "POINT (623020.5633397484198213 2199968.6637979215011001)", - "surface": 6610000, - "canton": null, - "numero_insee": "18183" - } - }, - { - "pk": 19080, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PRECY", - "center": "POINT (644966.4199541335692629 2232380.6554841157048941)", - "surface": 14710000, - "canton": null, - "numero_insee": "18184" - } - }, - { - "pk": 19305, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PRESLY", - "center": "POINT (598852.6797042816178873 2265220.0292718629352748)", - "surface": 74450000, - "canton": null, - "numero_insee": "18185" - } - }, - { - "pk": 37457, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PREUILLY", - "center": "POINT (586814.6039336557732895 2232792.5870632054284215)", - "surface": 15130000, - "canton": null, - "numero_insee": "18186" - } - }, - { - "pk": 20719, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PREVERANGES", - "center": "POINT (593518.6566045245854184 2161387.4433544864878058)", - "surface": 37950000, - "canton": null, - "numero_insee": "18187" - } - }, - { - "pk": 20934, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "PRIMELLES", - "center": "POINT (590493.5154562768293545 2211805.7933000773191452)", - "surface": 26940000, - "canton": null, - "numero_insee": "18188" - } - }, - { - "pk": 36185, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "QUANTILLY", - "center": "POINT (608211.6042354319943115 2247183.8787482869811356)", - "surface": 12790000, - "canton": null, - "numero_insee": "18189" - } - }, - { - "pk": 36877, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "QUINCY", - "center": "POINT (586281.5045543112792075 2236691.3566332818008959)", - "surface": 18330000, - "canton": null, - "numero_insee": "18190" - } - }, - { - "pk": 11933, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "RAYMOND", - "center": "POINT (626862.8699605544097722 2219117.2254441380500793)", - "surface": 9350000, - "canton": null, - "numero_insee": "18191" - } - }, - { - "pk": 31519, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "RIANS", - "center": "POINT (621459.3808640087954700 2242791.5254485970363021)", - "surface": 32810000, - "canton": null, - "numero_insee": "18194" - } - }, - { - "pk": 24635, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAGONNE", - "center": "POINT (637475.4934780559269711 2206796.0573592078872025)", - "surface": 18920000, - "canton": null, - "numero_insee": "18195" - } - }, - { - "pk": 38030, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-AIGNAN-DES-NOYERS", - "center": "POINT (637073.7188887592637911 2195082.6484708753414452)", - "surface": 11040000, - "canton": null, - "numero_insee": "18196" - } - }, - { - "pk": 23423, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-AMAND-MONTROND", - "center": "POINT (613981.5336542197037488 2191785.6942683858796954)", - "surface": 20210000, - "canton": null, - "numero_insee": "18197" - } - }, - { - "pk": 36339, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-AMBROIX", - "center": "POINT (583760.6250170610146597 2215052.1413857201114297)", - "surface": 31800000, - "canton": null, - "numero_insee": "18198" - } - }, - { - "pk": 23496, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-BAUDEL", - "center": "POINT (589945.0818134492728859 2205595.9207310900092125)", - "surface": 30260000, - "canton": null, - "numero_insee": "18199" - } - }, - { - "pk": 25967, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-BOUIZE", - "center": "POINT (641994.7939974362961948 2252472.1929358867928386)", - "surface": 14960000, - "canton": null, - "numero_insee": "18200" - } - }, - { - "pk": 22715, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-CAPRAIS", - "center": "POINT (597039.0233291120966896 2218966.7047754907980561)", - "surface": 14540000, - "canton": null, - "numero_insee": "18201" - } - }, - { - "pk": 8287, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-CEOLS", - "center": "POINT (622628.2988477313192561 2246604.4839087552390993)", - "surface": 3340000, - "canton": null, - "numero_insee": "18202" - } - }, - { - "pk": 37043, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-CHRISTOPHE-LE-CHAUDRY", - "center": "POINT (604007.1380902010714635 2175788.0741278193891048)", - "surface": 17550000, - "canton": null, - "numero_insee": "18203" - } - }, - { - "pk": 20498, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-DENIS-DE-PALIN", - "center": "POINT (613888.1602336870273575 2214804.5705516287125647)", - "surface": 30860000, - "canton": null, - "numero_insee": "18204" - } - }, - { - "pk": 15563, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-DOULCHARD", - "center": "POINT (601512.3555663817096502 2234517.2179472991265357)", - "surface": 24000000, - "canton": null, - "numero_insee": "18205" - } - }, - { - "pk": 15651, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-ELOY-DE-GY", - "center": "POINT (599556.3136905528372154 2241006.1818632176145911)", - "surface": 31350000, - "canton": null, - "numero_insee": "18206" - } - }, - { - "pk": 36942, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-FLORENT-SUR-CHER", - "center": "POINT (593717.1660210441332310 2221240.7702706088311970)", - "surface": 22480000, - "canton": null, - "numero_insee": "18207" - } - }, - { - "pk": 9025, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINTE-GEMME-EN-SANCERROIS", - "center": "POINT (636469.3998815735103562 2266837.3320703851059079)", - "surface": 14930000, - "canton": null, - "numero_insee": "18208" - } - }, - { - "pk": 37514, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-GEORGES-DE-POISIEUX", - "center": "POINT (611019.5168337933719158 2186956.6491823857650161)", - "surface": 15950000, - "canton": null, - "numero_insee": "18209" - } - }, - { - "pk": 36286, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-GEORGES-SUR-LA-PREE", - "center": "POINT (570685.1344850795576349 2246669.0395887717604637)", - "surface": 22780000, - "canton": null, - "numero_insee": "18210" - } - }, - { - "pk": 12471, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-GEORGES-SUR-MOULON", - "center": "POINT (606347.1598634317051619 2242764.5994215705431998)", - "surface": 9490000, - "canton": null, - "numero_insee": "18211" - } - }, - { - "pk": 20717, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-GERMAIN-DES-BOIS", - "center": "POINT (608725.3223737752996385 2209857.0361501136794686)", - "surface": 29050000, - "canton": null, - "numero_insee": "18212" - } - }, - { - "pk": 17897, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-GERMAIN-DU-PUY", - "center": "POINT (610722.7113597486168146 2234194.2372469161637127)", - "surface": 22030000, - "canton": null, - "numero_insee": "18213" - } - }, - { - "pk": 32516, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-HILAIRE-DE-COURT", - "center": "POINT (574705.7369568959111348 2244600.9757478437386453)", - "surface": 12070000, - "canton": null, - "numero_insee": "18214" - } - }, - { - "pk": 36748, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-HILAIRE-DE-GONDILLY", - "center": "POINT (642927.2261790164047852 2224957.2871554782614112)", - "surface": 18720000, - "canton": null, - "numero_insee": "18215" - } - }, - { - "pk": 36564, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-HILAIRE-EN-LIGNIERES", - "center": "POINT (584144.4761202803347260 2193136.6545951557345688)", - "surface": 54440000, - "canton": null, - "numero_insee": "18216" - } - }, - { - "pk": 4250, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-JEANVRIN", - "center": "POINT (592684.6055212250212207 2177294.4512119698338211)", - "surface": 17880000, - "canton": null, - "numero_insee": "18217" - } - }, - { - "pk": 9756, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-JUST", - "center": "POINT (612535.8525947271846235 2220898.3520327028818429)", - "surface": 14890000, - "canton": null, - "numero_insee": "18218" - } - }, - { - "pk": 20252, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-LAURENT", - "center": "POINT (588479.2003961276495829 2249120.0006296108476818)", - "surface": 38660000, - "canton": null, - "numero_insee": "18219" - } - }, - { - "pk": 30688, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-LEGER-LE-PETIT", - "center": "POINT (650247.6711791198467836 2235127.4239705167710781)", - "surface": 10070000, - "canton": null, - "numero_insee": "18220" - } - }, - { - "pk": 11357, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-LOUP-DES-CHAUMES", - "center": "POINT (603480.0129706098232418 2202807.0171889350749552)", - "surface": 18790000, - "canton": null, - "numero_insee": "18221" - } - }, - { - "pk": 25380, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINTE-LUNAISE", - "center": "POINT (601295.1932644438929856 2212697.1027235998772085)", - "surface": 14060000, - "canton": null, - "numero_insee": "18222" - } - }, - { - "pk": 9317, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-MARTIN-D'AUXIGNY", - "center": "POINT (603321.3717408226802945 2245541.4958894532173872)", - "surface": 24330000, - "canton": null, - "numero_insee": "18223" - } - }, - { - "pk": 3072, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-MARTIN-DES-CHAMPS", - "center": "POINT (645289.1221936774672940 2241591.0032064104452729)", - "surface": 18880000, - "canton": null, - "numero_insee": "18224" - } - }, - { - "pk": 21159, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-MAUR", - "center": "POINT (596213.4526089794235304 2174221.3410573885776103)", - "surface": 26070000, - "canton": null, - "numero_insee": "18225" - } - }, - { - "pk": 37181, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-MICHEL-DE-VOLANGIS", - "center": "POINT (610990.1463514621136710 2238099.7191199357621372)", - "surface": 17520000, - "canton": null, - "numero_insee": "18226" - } - }, - { - "pk": 16683, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINTE-MONTAINE", - "center": "POINT (598846.0881207459606230 2277930.1579514900222421)", - "surface": 53470000, - "canton": null, - "numero_insee": "18227" - } - }, - { - "pk": 11910, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-OUTRILLE", - "center": "POINT (560149.9833718998124823 2237873.7202037638053298)", - "surface": 12490000, - "canton": null, - "numero_insee": "18228" - } - }, - { - "pk": 9177, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-PALAIS", - "center": "POINT (605586.9621386942453682 2249864.0481444126926363)", - "surface": 26420000, - "canton": null, - "numero_insee": "18229" - } - }, - { - "pk": 37486, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-PIERRE-LES-BOIS", - "center": "POINT (595916.7221803277498111 2185728.8866258654743433)", - "surface": 20720000, - "canton": null, - "numero_insee": "18230" - } - }, - { - "pk": 21818, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-PIERRE-LES-ETIEUX", - "center": "POINT (619578.4002636933000758 2192733.5215403782203794)", - "surface": 27910000, - "canton": null, - "numero_insee": "18231" - } - }, - { - "pk": 6703, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-PRIEST-LA-MARCHE", - "center": "POINT (588217.6860727636376396 2160942.6307581155560911)", - "surface": 20270000, - "canton": null, - "numero_insee": "18232" - } - }, - { - "pk": 22929, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-SATUR", - "center": "POINT (639021.8174115481087938 2260853.9815922086127102)", - "surface": 7840000, - "canton": null, - "numero_insee": "18233" - } - }, - { - "pk": 18765, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-SATURNIN", - "center": "POINT (592568.3921283156378195 2167284.6913026794791222)", - "surface": 39670000, - "canton": null, - "numero_insee": "18234" - } - }, - { - "pk": 11908, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINTE-SOLANGE", - "center": "POINT (616194.9252705080434680 2238043.3778648641891778)", - "surface": 31810000, - "canton": null, - "numero_insee": "18235" - } - }, - { - "pk": 37667, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (597492.1019342329818755 2200755.0427174884825945)", - "surface": 9660000, - "canton": null, - "numero_insee": "18236" - } - }, - { - "pk": 3466, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINTE-THORETTE", - "center": "POINT (590133.9017845753114671 2230818.7529810308478773)", - "surface": 26450000, - "canton": null, - "numero_insee": "18237" - } - }, - { - "pk": 18067, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAINT-VITTE", - "center": "POINT (614756.9716134254122153 2170974.0809418992139399)", - "surface": 16630000, - "canton": null, - "numero_insee": "18238" - } - }, - { - "pk": 30851, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SALIGNY-LE-VIF", - "center": "POINT (631602.5485999422380701 2226763.4979406367056072)", - "surface": 15550000, - "canton": null, - "numero_insee": "18239" - } - }, - { - "pk": 19328, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SANCERGUES", - "center": "POINT (642697.2802338134497404 2240368.1688903211615980)", - "surface": 15630000, - "canton": null, - "numero_insee": "18240" - } - }, - { - "pk": 35157, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SANCERRE", - "center": "POINT (636639.4275313866091892 2258532.0485852938145399)", - "surface": 16290000, - "canton": null, - "numero_insee": "18241" - } - }, - { - "pk": 14915, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SANCOINS", - "center": "POINT (644014.3081821240484715 2202847.7311910851858556)", - "surface": 53510000, - "canton": null, - "numero_insee": "18242" - } - }, - { - "pk": 19738, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SANTRANGES", - "center": "POINT (631769.9806231020484120 2278206.8986205151304603)", - "surface": 24320000, - "canton": null, - "numero_insee": "18243" - } - }, - { - "pk": 11909, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAUGY", - "center": "POINT (582929.8116864442126825 2218648.2177572250366211)", - "surface": 9700000, - "canton": null, - "numero_insee": "18244" - } - }, - { - "pk": 32954, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAULZAIS-LE-POTIER", - "center": "POINT (611895.8395138371270150 2177956.1750447526574135)", - "surface": 32930000, - "canton": null, - "numero_insee": "18245" - } - }, - { - "pk": 22793, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAVIGNY-EN-SANCERRE", - "center": "POINT (634727.7022158588515595 2271626.5239715911448002)", - "surface": 33680000, - "canton": null, - "numero_insee": "18246" - } - }, - { - "pk": 31709, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SAVIGNY-EN-SEPTAINE", - "center": "POINT (617586.7762099434621632 2227246.0908249295316637)", - "surface": 22820000, - "canton": null, - "numero_insee": "18247" - } - }, - { - "pk": 38044, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SENNECAY", - "center": "POINT (607765.7780817151069641 2216854.9052987569011748)", - "surface": 14640000, - "canton": null, - "numero_insee": "18248" - } - }, - { - "pk": 22576, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SENS-BEAUJEU", - "center": "POINT (626524.3613906243117526 2259347.6298601687885821)", - "surface": 21740000, - "canton": null, - "numero_insee": "18249" - } - }, - { - "pk": 18568, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SERRUELLES", - "center": "POINT (603226.9189828846137971 2209110.2642501560039818)", - "surface": 7560000, - "canton": null, - "numero_insee": "18250" - } - }, - { - "pk": 5137, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SEVRY", - "center": "POINT (636915.6558496757643297 2237617.2279717870987952)", - "surface": 9140000, - "canton": null, - "numero_insee": "18251" - } - }, - { - "pk": 16154, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SIDIAILLES", - "center": "POINT (598267.9802268082275987 2167933.0411855275742710)", - "surface": 32000000, - "canton": null, - "numero_insee": "18252" - } - }, - { - "pk": 7839, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SOULANGIS", - "center": "POINT (613457.5569789026631042 2242223.8409750005230308)", - "surface": 13970000, - "canton": null, - "numero_insee": "18253" - } - }, - { - "pk": 11107, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SOYE-EN-SEPTAINE", - "center": "POINT (611495.5599056327482685 2225593.5559267862699926)", - "surface": 18840000, - "canton": null, - "numero_insee": "18254" - } - }, - { - "pk": 32153, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "LE SUBDRAY", - "center": "POINT (597896.0461906599812210 2224178.2679828428663313)", - "surface": 20530000, - "canton": null, - "numero_insee": "18255" - } - }, - { - "pk": 5967, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SUBLIGNY", - "center": "POINT (631369.8640347006730735 2266293.9913461306132376)", - "surface": 17640000, - "canton": null, - "numero_insee": "18256" - } - }, - { - "pk": 24195, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SURY-PRES-LERE", - "center": "POINT (638293.2444162060273811 2276060.0746348588727415)", - "surface": 17960000, - "canton": null, - "numero_insee": "18257" - } - }, - { - "pk": 26039, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SURY-EN-VAUX", - "center": "POINT (635295.4850081222830340 2263624.8632774804718792)", - "surface": 15860000, - "canton": null, - "numero_insee": "18258" - } - }, - { - "pk": 37762, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "SURY-ES-BOIS", - "center": "POINT (628207.7906287839869037 2273373.0816640150733292)", - "surface": 32860000, - "canton": null, - "numero_insee": "18259" - } - }, - { - "pk": 22212, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "TENDRON", - "center": "POINT (636763.7681068587116897 2220001.2466700901277363)", - "surface": 10580000, - "canton": null, - "numero_insee": "18260" - } - }, - { - "pk": 17895, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "THAUMIERS", - "center": "POINT (625402.2437209889758378 2202390.7547936099581420)", - "surface": 27560000, - "canton": null, - "numero_insee": "18261" - } - }, - { - "pk": 36709, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "THAUVENAY", - "center": "POINT (640565.9262141513172537 2255762.8459965875372291)", - "surface": 9930000, - "canton": null, - "numero_insee": "18262" - } - }, - { - "pk": 27853, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "THENIOUX", - "center": "POINT (569845.1641130731441081 2251365.8594209183938801)", - "surface": 18650000, - "canton": null, - "numero_insee": "18263" - } - }, - { - "pk": 28682, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "THOU", - "center": "POINT (625240.9623479995643720 2269144.7479747165925801)", - "surface": 9360000, - "canton": null, - "numero_insee": "18264" - } - }, - { - "pk": 35476, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "TORTERON", - "center": "POINT (649145.4840966131305322 2223408.3592935744673014)", - "surface": 13750000, - "canton": null, - "numero_insee": "18265" - } - }, - { - "pk": 35823, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "TOUCHAY", - "center": "POINT (590271.9686835563043132 2190485.6950183808803558)", - "surface": 23710000, - "canton": null, - "numero_insee": "18266" - } - }, - { - "pk": 31510, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "TROUY", - "center": "POINT (602197.6686840684851632 2224414.5420190342701972)", - "surface": 23350000, - "canton": null, - "numero_insee": "18267" - } - }, - { - "pk": 3620, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "UZAY-LE-VENON", - "center": "POINT (609086.0877650186885148 2202653.9286289876326919)", - "surface": 35350000, - "canton": null, - "numero_insee": "18268" - } - }, - { - "pk": 6713, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VAILLY-SUR-SAULDRE", - "center": "POINT (623707.8736603527795523 2272934.9001523004844785)", - "surface": 18510000, - "canton": null, - "numero_insee": "18269" - } - }, - { - "pk": 5309, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VALLENAY", - "center": "POINT (603129.2747233003610745 2196899.0135964350774884)", - "surface": 26010000, - "canton": null, - "numero_insee": "18270" - } - }, - { - "pk": 5439, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VASSELAY", - "center": "POINT (603767.8878713347949088 2240040.7115129949524999)", - "surface": 20120000, - "canton": null, - "numero_insee": "18271" - } - }, - { - "pk": 26597, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VEAUGUES", - "center": "POINT (631692.1643217683304101 2251784.9323219903744757)", - "surface": 27920000, - "canton": null, - "numero_insee": "18272" - } - }, - { - "pk": 37266, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VENESMES", - "center": "POINT (595853.8969787536188960 2205145.0583757585845888)", - "surface": 31810000, - "canton": null, - "numero_insee": "18273" - } - }, - { - "pk": 23609, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VERDIGNY", - "center": "POINT (635817.7654310106299818 2261027.1571605782955885)", - "surface": 4980000, - "canton": null, - "numero_insee": "18274" - } - }, - { - "pk": 18487, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VEREAUX", - "center": "POINT (641165.7364509986946359 2208328.4212265755049884)", - "surface": 23170000, - "canton": null, - "numero_insee": "18275" - } - }, - { - "pk": 15912, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VERNAIS", - "center": "POINT (628355.8939280355116352 2196310.3741154782474041)", - "surface": 26280000, - "canton": null, - "numero_insee": "18276" - } - }, - { - "pk": 30364, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VERNEUIL", - "center": "POINT (620198.1628409052500501 2202346.9823596556670964)", - "surface": 11400000, - "canton": null, - "numero_insee": "18277" - } - }, - { - "pk": 23842, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VESDUN", - "center": "POINT (607837.9394099358469248 2172517.3514179335907102)", - "surface": 49850000, - "canton": null, - "numero_insee": "18278" - } - }, - { - "pk": 34837, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VIGNOUX-SOUS-LES-AIX", - "center": "POINT (610051.6299887276254594 2242595.5518687278963625)", - "surface": 15120000, - "canton": null, - "numero_insee": "18280" - } - }, - { - "pk": 34454, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VILLABON", - "center": "POINT (625940.1605493027018383 2233621.6002275412902236)", - "surface": 18430000, - "canton": null, - "numero_insee": "18282" - } - }, - { - "pk": 36566, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VILLECELIN", - "center": "POINT (589172.1489821127615869 2202286.6203490826301277)", - "surface": 9480000, - "canton": null, - "numero_insee": "18283" - } - }, - { - "pk": 16435, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VILLEGENON", - "center": "POINT (619741.1376240331446752 2268598.0866270940750837)", - "surface": 33280000, - "canton": null, - "numero_insee": "18284" - } - }, - { - "pk": 22809, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VILLENEUVE-SUR-CHER", - "center": "POINT (591380.9809141374425963 2225324.6157986922189593)", - "surface": 26470000, - "canton": null, - "numero_insee": "18285" - } - }, - { - "pk": 22773, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VILLEQUIERS", - "center": "POINT (634469.3777290738653392 2230991.1422125659883022)", - "surface": 29970000, - "canton": null, - "numero_insee": "18286" - } - }, - { - "pk": 9065, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VINON", - "center": "POINT (637480.4792846192140132 2253735.2241113544441760)", - "surface": 18240000, - "canton": null, - "numero_insee": "18287" - } - }, - { - "pk": 30011, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VORLY", - "center": "POINT (610379.5610668887384236 2215475.6798572270199656)", - "surface": 18600000, - "canton": null, - "numero_insee": "18288" - } - }, - { - "pk": 34145, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VORNAY", - "center": "POINT (619562.2841913931770250 2218455.3106449698098004)", - "surface": 26750000, - "canton": null, - "numero_insee": "18289" - } - }, - { - "pk": 15111, - "model": "ishtar_common.town", - "fields": { - "departement": 18, - "name": "VOUZERON", - "center": "POINT (590853.3016032198211178 2252442.6082547395490110)", - "surface": 52790000, - "canton": null, - "numero_insee": "18290" - } - }, - { - "pk": 3139, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "AFFIEUX", - "center": "POINT (555461.2254045738372952 2056471.8952684255782515)", - "surface": 30460000, - "canton": null, - "numero_insee": "19001" - } - }, - { - "pk": 21191, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "AIX", - "center": "POINT (604311.7423372353659943 2067991.8782927652355283)", - "surface": 48640000, - "canton": null, - "numero_insee": "19002" - } - }, - { - "pk": 26952, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ALBIGNAC", - "center": "POINT (548087.9879927305737510 2016471.1188035095110536)", - "surface": 9850000, - "canton": null, - "numero_insee": "19003" - } - }, - { - "pk": 14507, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ALBUSSAC", - "center": "POINT (558804.5953308586031199 2015759.9036747498903424)", - "surface": 36290000, - "canton": null, - "numero_insee": "19004" - } - }, - { - "pk": 15576, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ALLASSAC", - "center": "POINT (531870.3569622477516532 2028647.9142937697470188)", - "surface": 38740000, - "canton": null, - "numero_insee": "19005" - } - }, - { - "pk": 4444, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ALLEYRAT", - "center": "POINT (590744.1658012515399605 2062572.9330319487489760)", - "surface": 15010000, - "canton": null, - "numero_insee": "19006" - } - }, - { - "pk": 13861, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ALTILLAC", - "center": "POINT (563059.1294753687689081 1997777.4299204647541046)", - "surface": 25470000, - "canton": null, - "numero_insee": "19007" - } - }, - { - "pk": 20839, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "AMBRUGEAT", - "center": "POINT (580263.3200948699377477 2059081.7983597335405648)", - "surface": 29620000, - "canton": null, - "numero_insee": "19008" - } - }, - { - "pk": 26225, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LES ANGLES-SUR-CORREZE", - "center": "POINT (558147.6059036820661277 2034472.9178943880833685)", - "surface": 4740000, - "canton": null, - "numero_insee": "19009" - } - }, - { - "pk": 21735, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ARGENTAT", - "center": "POINT (568251.8444143247324973 2011234.3532575150020421)", - "surface": 22110000, - "canton": null, - "numero_insee": "19010" - } - }, - { - "pk": 4698, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ARNAC-POMPADOUR", - "center": "POINT (523617.7325956448912621 2045996.1530550820752978)", - "surface": 15070000, - "canton": null, - "numero_insee": "19011" - } - }, - { - "pk": 33292, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ASTAILLAC", - "center": "POINT (559982.1685107569210231 1994648.5550926546566188)", - "surface": 7270000, - "canton": null, - "numero_insee": "19012" - } - }, - { - "pk": 5416, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "AUBAZINES", - "center": "POINT (548852.7660965673858300 2020781.7857265211641788)", - "surface": 14180000, - "canton": null, - "numero_insee": "19013" - } - }, - { - "pk": 23452, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "AURIAC", - "center": "POINT (584476.3877304740017280 2022181.0117979021742940)", - "surface": 34790000, - "canton": null, - "numero_insee": "19014" - } - }, - { - "pk": 4855, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "AYEN", - "center": "POINT (520459.0620541301323101 2028652.8574608897324651)", - "surface": 13340000, - "canton": null, - "numero_insee": "19015" - } - }, - { - "pk": 20149, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BASSIGNAC-LE-BAS", - "center": "POINT (563117.3517518428852782 2002782.9584701422136277)", - "surface": 12440000, - "canton": null, - "numero_insee": "19017" - } - }, - { - "pk": 22640, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BASSIGNAC-LE-HAUT", - "center": "POINT (578771.1340981815010309 2022133.2008283899631351)", - "surface": 19400000, - "canton": null, - "numero_insee": "19018" - } - }, - { - "pk": 6775, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BEAULIEU-SUR-DORDOGNE", - "center": "POINT (559755.1899827605811879 1997849.8927373001351953)", - "surface": 8620000, - "canton": null, - "numero_insee": "19019" - } - }, - { - "pk": 25065, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BEAUMONT", - "center": "POINT (557240.5832910570316017 2047177.7539033070206642)", - "surface": 11090000, - "canton": null, - "numero_insee": "19020" - } - }, - { - "pk": 6573, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BELLECHASSAGNE", - "center": "POINT (591065.6132823079824448 2071984.6361551736481488)", - "surface": 13300000, - "canton": null, - "numero_insee": "19021" - } - }, - { - "pk": 22769, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BENAYES", - "center": "POINT (532122.8005653445143253 2058379.0086774688679725)", - "surface": 23410000, - "canton": null, - "numero_insee": "19022" - } - }, - { - "pk": 18386, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BEYNAT", - "center": "POINT (552206.8445803547510877 2014703.7445677185896784)", - "surface": 34750000, - "canton": null, - "numero_insee": "19023" - } - }, - { - "pk": 20037, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BEYSSENAC", - "center": "POINT (519120.3341855272301473 2045157.8878344150725752)", - "surface": 18140000, - "canton": null, - "numero_insee": "19025" - } - }, - { - "pk": 28131, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BILHAC", - "center": "POINT (555786.5791041135089472 1993612.4560712059028447)", - "surface": 7080000, - "canton": null, - "numero_insee": "19026" - } - }, - { - "pk": 24903, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BONNEFOND", - "center": "POINT (572561.4638995925197378 2058416.7079085868317634)", - "surface": 45370000, - "canton": null, - "numero_insee": "19027" - } - }, - { - "pk": 14809, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BORT-LES-ORGUES", - "center": "POINT (612123.6976331077748910 2043633.9060953806620091)", - "surface": 14800000, - "canton": null, - "numero_insee": "19028" - } - }, - { - "pk": 36529, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BRANCEILLES", - "center": "POINT (550419.6790155142080039 2000975.0716319049242884)", - "surface": 11520000, - "canton": null, - "numero_insee": "19029" - } - }, - { - "pk": 36990, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BRIGNAC-LA-PLAINE", - "center": "POINT (521031.2670422355877236 2020049.1089682688470930)", - "surface": 18830000, - "canton": null, - "numero_insee": "19030" - } - }, - { - "pk": 31654, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BRIVE-LA-GAILLARDE", - "center": "POINT (535678.1706585657084361 2016167.2906108791939914)", - "surface": 48420000, - "canton": null, - "numero_insee": "19031" - } - }, - { - "pk": 6207, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BRIVEZAC", - "center": "POINT (560618.3598284698091447 2002361.6504238897468895)", - "surface": 8350000, - "canton": null, - "numero_insee": "19032" - } - }, - { - "pk": 4153, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "BUGEAT", - "center": "POINT (568197.2993711822200567 2065587.1002442934550345)", - "surface": 31140000, - "canton": null, - "numero_insee": "19033" - } - }, - { - "pk": 21555, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CAMPS-SAINT-MATHURIN-LEOBAZEL", - "center": "POINT (573058.4711106375325471 1999062.3376743313856423)", - "surface": 34050000, - "canton": null, - "numero_insee": "19034" - } - }, - { - "pk": 35621, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHABRIGNAC", - "center": "POINT (522005.4650161496829242 2035272.2459599114954472)", - "surface": 10990000, - "canton": null, - "numero_insee": "19035" - } - }, - { - "pk": 20875, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAMBERET", - "center": "POINT (551769.3286360921338201 2067051.2350988383404911)", - "surface": 70620000, - "canton": null, - "numero_insee": "19036" - } - }, - { - "pk": 15690, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAMBOULIVE", - "center": "POINT (550831.4563312227837741 2047524.5666592945344746)", - "surface": 47070000, - "canton": null, - "numero_insee": "19037" - } - }, - { - "pk": 23911, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAMEYRAT", - "center": "POINT (550497.4558066057506949 2027602.2643872899934649)", - "surface": 19240000, - "canton": null, - "numero_insee": "19038" - } - }, - { - "pk": 16931, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAMPAGNAC-LA-NOAILLE", - "center": "POINT (573366.5064814720535651 2033999.6838366307783872)", - "surface": 25920000, - "canton": null, - "numero_insee": "19039" - } - }, - { - "pk": 19457, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAMPAGNAC-LA-PRUNE", - "center": "POINT (568570.1096619834424928 2021046.7826585010625422)", - "surface": 13250000, - "canton": null, - "numero_insee": "19040" - } - }, - { - "pk": 24289, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHANAC-LES-MINES", - "center": "POINT (559185.3510021382244304 2030077.2651208923198283)", - "surface": 13070000, - "canton": null, - "numero_insee": "19041" - } - }, - { - "pk": 20859, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHANTEIX", - "center": "POINT (543930.4631630631629378 2034854.5929594098124653)", - "surface": 19360000, - "canton": null, - "numero_insee": "19042" - } - }, - { - "pk": 36420, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LA CHAPELLE-AUX-BROCS", - "center": "POINT (544086.7904945963528007 2016137.3951175089459866)", - "surface": 4990000, - "canton": null, - "numero_insee": "19043" - } - }, - { - "pk": 10422, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LA CHAPELLE-AUX-SAINTS", - "center": "POINT (551243.8526720878435299 1998179.1348630147986114)", - "surface": 4930000, - "canton": null, - "numero_insee": "19044" - } - }, - { - "pk": 9323, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LA CHAPELLE-SAINT-GERAUD", - "center": "POINT (569301.3715642055030912 2005437.3251871834509075)", - "surface": 17530000, - "canton": null, - "numero_insee": "19045" - } - }, - { - "pk": 10602, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAPELLE-SPINASSE", - "center": "POINT (577722.7295720697147772 2039741.7612985740415752)", - "surface": 5790000, - "canton": null, - "numero_insee": "19046" - } - }, - { - "pk": 31914, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHARTRIER-FERRIERE", - "center": "POINT (528849.4178438137751073 2006801.0155061625409871)", - "surface": 15590000, - "canton": null, - "numero_insee": "19047" - } - }, - { - "pk": 13047, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LE CHASTANG", - "center": "POINT (552466.9651128522818908 2019510.6983328759670258)", - "surface": 7970000, - "canton": null, - "numero_insee": "19048" - } - }, - { - "pk": 21325, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHASTEAUX", - "center": "POINT (531530.2272454312769696 2009425.9851203956641257)", - "surface": 18650000, - "canton": null, - "numero_insee": "19049" - } - }, - { - "pk": 34312, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAUFFOUR-SUR-VELL", - "center": "POINT (547506.0876744692213833 2002252.0353066751267761)", - "surface": 7320000, - "canton": null, - "numero_insee": "19050" - } - }, - { - "pk": 4287, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAUMEIL", - "center": "POINT (564218.4319388589356095 2050639.4241275852546096)", - "surface": 31580000, - "canton": null, - "numero_insee": "19051" - } - }, - { - "pk": 33201, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAVANAC", - "center": "POINT (581483.1245212521171197 2068801.3382980877067894)", - "surface": 9720000, - "canton": null, - "numero_insee": "19052" - } - }, - { - "pk": 18043, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHAVEROCHE", - "center": "POINT (593345.6435560011304915 2062694.8500098728109151)", - "surface": 18540000, - "canton": null, - "numero_insee": "19053" - } - }, - { - "pk": 21144, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHENAILLER-MASCHEIX", - "center": "POINT (559580.5878375839674845 2006757.3927193724084646)", - "surface": 15470000, - "canton": null, - "numero_insee": "19054" - } - }, - { - "pk": 33488, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CHIRAC-BELLEVUE", - "center": "POINT (597754.4709613219602033 2050219.7627261916641146)", - "surface": 20520000, - "canton": null, - "numero_insee": "19055" - } - }, - { - "pk": 19376, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CLERGOUX", - "center": "POINT (570091.1449483083561063 2030669.0116674106102437)", - "surface": 15810000, - "canton": null, - "numero_insee": "19056" - } - }, - { - "pk": 19628, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "COLLONGES-LA-ROUGE", - "center": "POINT (546161.3889846259262413 2007446.0266836762893945)", - "surface": 14110000, - "canton": null, - "numero_insee": "19057" - } - }, - { - "pk": 10745, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "COMBRESSOL", - "center": "POINT (586528.4405310598667711 2052027.4430268425494432)", - "surface": 25380000, - "canton": null, - "numero_insee": "19058" - } - }, - { - "pk": 3146, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CONCEZE", - "center": "POINT (521661.8083382751792669 2040474.4790420699864626)", - "surface": 13480000, - "canton": null, - "numero_insee": "19059" - } - }, - { - "pk": 18565, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CONDAT-SUR-GANAVEIX", - "center": "POINT (542271.1234805888962001 2053759.1707452258560807)", - "surface": 37730000, - "canton": null, - "numero_insee": "19060" - } - }, - { - "pk": 19275, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CORNIL", - "center": "POINT (549628.4125643912702799 2023791.2426791146863252)", - "surface": 19710000, - "canton": null, - "numero_insee": "19061" - } - }, - { - "pk": 14831, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CORREZE", - "center": "POINT (563501.4519050086382776 2040623.6812442326918244)", - "surface": 34520000, - "canton": null, - "numero_insee": "19062" - } - }, - { - "pk": 19747, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "COSNAC", - "center": "POINT (540895.5257532928371802 2014709.3489746828563511)", - "surface": 20240000, - "canton": null, - "numero_insee": "19063" - } - }, - { - "pk": 32375, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "COUFFY-SUR-SARSONNE", - "center": "POINT (600553.0087528943549842 2074566.6259473636746407)", - "surface": 14130000, - "canton": null, - "numero_insee": "19064" - } - }, - { - "pk": 8552, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "COURTEIX", - "center": "POINT (600477.2851063433336094 2071663.2241215035319328)", - "surface": 10210000, - "canton": null, - "numero_insee": "19065" - } - }, - { - "pk": 20579, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CUBLAC", - "center": "POINT (518848.4184549922938459 2017728.6293564813677222)", - "surface": 20450000, - "canton": null, - "numero_insee": "19066" - } - }, - { - "pk": 18979, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CUREMONTE", - "center": "POINT (554028.0756637712474912 2000404.6271873712539673)", - "surface": 8760000, - "canton": null, - "numero_insee": "19067" - } - }, - { - "pk": 22285, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "DAMPNIAT", - "center": "POINT (545069.3236518461490050 2018347.7922305450774729)", - "surface": 15400000, - "canton": null, - "numero_insee": "19068" - } - }, - { - "pk": 3729, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "DARAZAC", - "center": "POINT (579896.4691511437995359 2019239.7494233243633062)", - "surface": 14620000, - "canton": null, - "numero_insee": "19069" - } - }, - { - "pk": 15045, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "DARNETS", - "center": "POINT (582465.8557107953820378 2047088.6291836902964860)", - "surface": 25760000, - "canton": null, - "numero_insee": "19070" - } - }, - { - "pk": 16913, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "DAVIGNAC", - "center": "POINT (579601.2699343705317006 2054471.8072784163523465)", - "surface": 30050000, - "canton": null, - "numero_insee": "19071" - } - }, - { - "pk": 15105, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "DONZENAC", - "center": "POINT (536297.7847166111459956 2025882.0926542826928198)", - "surface": 24450000, - "canton": null, - "numero_insee": "19072" - } - }, - { - "pk": 22034, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "EGLETONS", - "center": "POINT (576462.1140300253173336 2046838.1323884127195925)", - "surface": 16740000, - "canton": null, - "numero_insee": "19073" - } - }, - { - "pk": 19956, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "L'EGLISE-AUX-BOIS", - "center": "POINT (557824.5302897607907653 2073107.5917372149415314)", - "surface": 16340000, - "canton": null, - "numero_insee": "19074" - } - }, - { - "pk": 16914, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ESPAGNAC", - "center": "POINT (565619.6910560627002269 2026727.7365838927216828)", - "surface": 23890000, - "canton": null, - "numero_insee": "19075" - } - }, - { - "pk": 27962, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ESPARTIGNAC", - "center": "POINT (541847.5656196656636894 2044546.6934532751329243)", - "surface": 14050000, - "canton": null, - "numero_insee": "19076" - } - }, - { - "pk": 16240, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ESTIVAUX", - "center": "POINT (533913.8187310587381944 2035671.8561151004396379)", - "surface": 16690000, - "canton": null, - "numero_insee": "19078" - } - }, - { - "pk": 20892, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "EYBURIE", - "center": "POINT (545886.8991167136700824 2052287.9160254900343716)", - "surface": 29670000, - "canton": null, - "numero_insee": "19079" - } - }, - { - "pk": 16363, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "EYGURANDE", - "center": "POINT (606754.2750784844392911 2075119.1715452540665865)", - "surface": 34540000, - "canton": null, - "numero_insee": "19080" - } - }, - { - "pk": 19303, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "EYREIN", - "center": "POINT (569042.4727105967467651 2036365.8389915525913239)", - "surface": 26350000, - "canton": null, - "numero_insee": "19081" - } - }, - { - "pk": 3464, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "FAVARS", - "center": "POINT (547679.8329483764246106 2029380.4978249282576144)", - "surface": 11980000, - "canton": null, - "numero_insee": "19082" - } - }, - { - "pk": 16823, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "FEYT", - "center": "POINT (611051.3388771023601294 2075956.0307451325934380)", - "surface": 19540000, - "canton": null, - "numero_insee": "19083" - } - }, - { - "pk": 5647, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "FORGES", - "center": "POINT (562892.4841771658975631 2017695.9900735865812749)", - "surface": 10460000, - "canton": null, - "numero_insee": "19084" - } - }, - { - "pk": 3882, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "GIMEL-LES-CASCADES", - "center": "POINT (561156.2047750416677445 2033797.3927864413708448)", - "surface": 20910000, - "canton": null, - "numero_insee": "19085" - } - }, - { - "pk": 18203, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "GOULLES", - "center": "POINT (580740.5385105984751135 2002129.7124772407114506)", - "surface": 33180000, - "canton": null, - "numero_insee": "19086" - } - }, - { - "pk": 7092, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "GOURDON-MURAT", - "center": "POINT (565834.5303625999949872 2060862.8084841289091855)", - "surface": 15860000, - "canton": null, - "numero_insee": "19087" - } - }, - { - "pk": 22089, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "GRANDSAIGNE", - "center": "POINT (568192.7126958582084626 2054176.0755224437452853)", - "surface": 19940000, - "canton": null, - "numero_insee": "19088" - } - }, - { - "pk": 4911, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "GROS-CHASTANG", - "center": "POINT (573752.2757988314842805 2023792.8474276997148991)", - "surface": 13310000, - "canton": null, - "numero_insee": "19089" - } - }, - { - "pk": 26226, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "GUMOND", - "center": "POINT (570544.3021984944352880 2024366.5811187655199319)", - "surface": 10010000, - "canton": null, - "numero_insee": "19090" - } - }, - { - "pk": 5019, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "HAUTEFAGE", - "center": "POINT (572865.3417584208073094 2010171.8767080125398934)", - "surface": 24200000, - "canton": null, - "numero_insee": "19091" - } - }, - { - "pk": 4200, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LE JARDIN", - "center": "POINT (577456.8338757491437718 2035635.5143127834890038)", - "surface": 12250000, - "canton": null, - "numero_insee": "19092" - } - }, - { - "pk": 35582, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "JUGEALS-NAZARETH", - "center": "POINT (538331.5497222173726186 2010083.3458915161900222)", - "surface": 11290000, - "canton": null, - "numero_insee": "19093" - } - }, - { - "pk": 22568, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "JUILLAC", - "center": "POINT (518093.5651544489082880 2036240.6258103107102215)", - "surface": 32500000, - "canton": null, - "numero_insee": "19094" - } - }, - { - "pk": 17576, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LACELLE", - "center": "POINT (560641.2364213049877435 2071429.5257877043914050)", - "surface": 21040000, - "canton": null, - "numero_insee": "19095" - } - }, - { - "pk": 19696, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LADIGNAC-SUR-RONDELLES", - "center": "POINT (559723.4805306255584583 2025577.3209985662251711)", - "surface": 10230000, - "canton": null, - "numero_insee": "19096" - } - }, - { - "pk": 19455, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAFAGE-SUR-SOMBRE", - "center": "POINT (579585.5842734639300033 2032450.2026133192703128)", - "surface": 18860000, - "canton": null, - "numero_insee": "19097" - } - }, - { - "pk": 4015, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAGLEYGEOLLE", - "center": "POINT (549447.7399486270733178 2009475.4886594132985920)", - "surface": 19440000, - "canton": null, - "numero_insee": "19099" - } - }, - { - "pk": 7602, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAGRAULIERE", - "center": "POINT (544090.5193358134711161 2039660.6370819460134953)", - "surface": 30840000, - "canton": null, - "numero_insee": "19100" - } - }, - { - "pk": 20383, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAMAZIERE-BASSE", - "center": "POINT (587018.5910077411681414 2041321.1341455746442080)", - "surface": 44070000, - "canton": null, - "numero_insee": "19102" - } - }, - { - "pk": 20743, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAMAZIERE-HAUTE", - "center": "POINT (603752.4701566884759814 2074993.8678507301956415)", - "surface": 15420000, - "canton": null, - "numero_insee": "19103" - } - }, - { - "pk": 21354, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAMONGERIE", - "center": "POINT (540915.6349375144345686 2060254.1306918668560684)", - "surface": 12140000, - "canton": null, - "numero_insee": "19104" - } - }, - { - "pk": 20475, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LANTEUIL", - "center": "POINT (545111.9632043339079246 2013243.0650455537252128)", - "surface": 22540000, - "canton": null, - "numero_insee": "19105" - } - }, - { - "pk": 23157, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAPLEAU", - "center": "POINT (586088.1685887131607160 2032905.0946595296263695)", - "surface": 17740000, - "canton": null, - "numero_insee": "19106" - } - }, - { - "pk": 31898, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LARCHE", - "center": "POINT (527797.5617394782602787 2012898.3498984703328460)", - "surface": 5720000, - "canton": null, - "numero_insee": "19107" - } - }, - { - "pk": 19524, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAROCHE-PRES-FEYT", - "center": "POINT (612631.7218075464479625 2078471.6873549269512296)", - "surface": 17220000, - "canton": null, - "numero_insee": "19108" - } - }, - { - "pk": 35847, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LASCAUX", - "center": "POINT (524383.4551563779823482 2038194.9152100940700620)", - "surface": 7400000, - "canton": null, - "numero_insee": "19109" - } - }, - { - "pk": 20577, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LATRONCHE", - "center": "POINT (592383.8490497900638729 2034159.0693113033194095)", - "surface": 19740000, - "canton": null, - "numero_insee": "19110" - } - }, - { - "pk": 23638, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LAVAL-SUR-LUZEGE", - "center": "POINT (584726.3230440850602463 2028189.0453573712147772)", - "surface": 16690000, - "canton": null, - "numero_insee": "19111" - } - }, - { - "pk": 16912, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LESTARDS", - "center": "POINT (563037.8917572920909151 2060138.7343908085022122)", - "surface": 18710000, - "canton": null, - "numero_insee": "19112" - } - }, - { - "pk": 18389, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LIGINIAC", - "center": "POINT (598899.9846196116413921 2044924.2194180549122393)", - "surface": 28680000, - "canton": null, - "numero_insee": "19113" - } - }, - { - "pk": 3768, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LIGNAREIX", - "center": "POINT (597203.7634762639645487 2068132.4026830701623112)", - "surface": 9390000, - "canton": null, - "numero_insee": "19114" - } - }, - { - "pk": 32014, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LIGNEYRAC", - "center": "POINT (543373.8234459612285718 2005620.9361837538890541)", - "surface": 8510000, - "canton": null, - "numero_insee": "19115" - } - }, - { - "pk": 32822, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LIOURDRES", - "center": "POINT (558193.8653001866769046 1993031.9776500693988055)", - "surface": 5820000, - "canton": null, - "numero_insee": "19116" - } - }, - { - "pk": 10927, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LISSAC-SUR-COUZE", - "center": "POINT (530903.7825243077240884 2012523.8600412893574685)", - "surface": 12550000, - "canton": null, - "numero_insee": "19117" - } - }, - { - "pk": 5740, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LE LONZAC", - "center": "POINT (552592.9257216764381155 2052343.9500733418390155)", - "surface": 36590000, - "canton": null, - "numero_insee": "19118" - } - }, - { - "pk": 18059, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LOUIGNAC", - "center": "POINT (516188.4716274605598301 2024613.3162024854682386)", - "surface": 21340000, - "canton": null, - "numero_insee": "19120" - } - }, - { - "pk": 21132, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LUBERSAC", - "center": "POINT (526680.4739080746658146 2050826.3569225571118295)", - "surface": 58230000, - "canton": null, - "numero_insee": "19121" - } - }, - { - "pk": 22085, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MADRANGES", - "center": "POINT (557700.8603995098965243 2051986.2656530432868749)", - "surface": 13040000, - "canton": null, - "numero_insee": "19122" - } - }, - { - "pk": 19092, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MALEMORT-SUR-CORREZE", - "center": "POINT (540753.6456981145311147 2019713.1427470133639872)", - "surface": 16400000, - "canton": null, - "numero_insee": "19123" - } - }, - { - "pk": 21892, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MANSAC", - "center": "POINT (524850.6348916561109945 2018179.0595638528466225)", - "surface": 18820000, - "canton": null, - "numero_insee": "19124" - } - }, - { - "pk": 12213, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MARCILLAC-LA-CROISILLE", - "center": "POINT (576219.3650449161650613 2028017.6643767002969980)", - "surface": 40150000, - "canton": null, - "numero_insee": "19125" - } - }, - { - "pk": 8880, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MARCILLAC-LA-CROZE", - "center": "POINT (552799.3398750616470352 2003697.6788729617837816)", - "surface": 6090000, - "canton": null, - "numero_insee": "19126" - } - }, - { - "pk": 35363, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MARC-LA-TOUR", - "center": "POINT (561855.5543237165547907 2021991.5882307742722332)", - "surface": 6600000, - "canton": null, - "numero_insee": "19127" - } - }, - { - "pk": 23111, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MASSERET", - "center": "POINT (536109.6745021929964423 2060414.2048475947231054)", - "surface": 13720000, - "canton": null, - "numero_insee": "19129" - } - }, - { - "pk": 17777, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MEILHARDS", - "center": "POINT (545314.5506640287349001 2060891.4444609270431101)", - "surface": 45080000, - "canton": null, - "numero_insee": "19131" - } - }, - { - "pk": 29654, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MENOIRE", - "center": "POINT (557136.4986664045136422 2011741.9611057925503701)", - "surface": 6420000, - "canton": null, - "numero_insee": "19132" - } - }, - { - "pk": 4182, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MERCOEUR", - "center": "POINT (569636.8442156277596951 2001235.9082199106924236)", - "surface": 30060000, - "canton": null, - "numero_insee": "19133" - } - }, - { - "pk": 5228, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MERLINES", - "center": "POINT (609504.5834942241199315 2069436.8331238513346761)", - "surface": 14090000, - "canton": null, - "numero_insee": "19134" - } - }, - { - "pk": 29165, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MESTES", - "center": "POINT (598417.3003899032482877 2054729.6876008051913232)", - "surface": 11430000, - "canton": null, - "numero_insee": "19135" - } - }, - { - "pk": 33491, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MEYMAC", - "center": "POINT (584647.1182234428124502 2061520.8496846412308514)", - "surface": 87110000, - "canton": null, - "numero_insee": "19136" - } - }, - { - "pk": 34201, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MEYRIGNAC-L'EGLISE", - "center": "POINT (562665.5567596141481772 2044820.7896388634108007)", - "surface": 10050000, - "canton": null, - "numero_insee": "19137" - } - }, - { - "pk": 24763, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MEYSSAC", - "center": "POINT (548478.5890476278727874 2005663.5796464465092868)", - "surface": 11500000, - "canton": null, - "numero_insee": "19138" - } - }, - { - "pk": 6504, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MILLEVACHES", - "center": "POINT (580658.0937104686163366 2071697.1971117311622947)", - "surface": 11530000, - "canton": null, - "numero_insee": "19139" - } - }, - { - "pk": 22279, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MONCEAUX-SUR-DORDOGNE", - "center": "POINT (564675.2975506052607670 2008001.2171539999544621)", - "surface": 36890000, - "canton": null, - "numero_insee": "19140" - } - }, - { - "pk": 11510, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MONESTIER-MERLINES", - "center": "POINT (611884.0023563716094941 2072159.4049522306304425)", - "surface": 9460000, - "canton": null, - "numero_insee": "19141" - } - }, - { - "pk": 28859, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MONESTIER-PORT-DIEU", - "center": "POINT (611927.7286280449479818 2055043.3378754965960979)", - "surface": 18720000, - "canton": null, - "numero_insee": "19142" - } - }, - { - "pk": 12743, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MONTAIGNAC-SAINT-HIPPOLYTE", - "center": "POINT (574830.9920501862652600 2038416.2666665301658213)", - "surface": 20350000, - "canton": null, - "numero_insee": "19143" - } - }, - { - "pk": 3832, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MONTGIBAUD", - "center": "POINT (528432.0095673346659169 2056846.7737305148039013)", - "surface": 14150000, - "canton": null, - "numero_insee": "19144" - } - }, - { - "pk": 19837, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "MOUSTIER-VENTADOUR", - "center": "POINT (581506.8905094612855464 2042075.7165884613059461)", - "surface": 30110000, - "canton": null, - "numero_insee": "19145" - } - }, - { - "pk": 21416, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "NAVES", - "center": "POINT (554038.8432095663156360 2035039.1539357458241284)", - "surface": 36380000, - "canton": null, - "numero_insee": "19146" - } - }, - { - "pk": 5502, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "NESPOULS", - "center": "POINT (534257.8012837639544159 2006445.7359495968557894)", - "surface": 20300000, - "canton": null, - "numero_insee": "19147" - } - }, - { - "pk": 33518, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "NEUVIC", - "center": "POINT (593826.4396916920086369 2041178.0338754518888891)", - "surface": 75160000, - "canton": null, - "numero_insee": "19148" - } - }, - { - "pk": 19662, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "NEUVILLE", - "center": "POINT (561236.9613123661838472 2012176.6551029216498137)", - "surface": 14200000, - "canton": null, - "numero_insee": "19149" - } - }, - { - "pk": 18057, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "NOAILHAC", - "center": "POINT (543242.8000345946056768 2009323.5528132081963122)", - "surface": 13560000, - "canton": null, - "numero_insee": "19150" - } - }, - { - "pk": 13691, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "NOAILLES", - "center": "POINT (535519.7531818804563954 2011160.9767378412652761)", - "surface": 12520000, - "canton": null, - "numero_insee": "19151" - } - }, - { - "pk": 37956, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "NONARDS", - "center": "POINT (558417.1361659771064296 2002243.1391678899526596)", - "surface": 10970000, - "canton": null, - "numero_insee": "19152" - } - }, - { - "pk": 21508, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "OBJAT", - "center": "POINT (527457.9725206381408498 2029612.0959760351106524)", - "surface": 9610000, - "canton": null, - "numero_insee": "19153" - } - }, - { - "pk": 19772, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ORGNAC-SUR-VEZERE", - "center": "POINT (531390.6628100589150563 2038153.2566630071960390)", - "surface": 18840000, - "canton": null, - "numero_insee": "19154" - } - }, - { - "pk": 20040, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ORLIAC-DE-BAR", - "center": "POINT (558387.6131510738050565 2041681.9814690661150962)", - "surface": 14900000, - "canton": null, - "numero_insee": "19155" - } - }, - { - "pk": 29279, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PALAZINGES", - "center": "POINT (549673.5783064576098695 2018386.2590995577629656)", - "surface": 5360000, - "canton": null, - "numero_insee": "19156" - } - }, - { - "pk": 19180, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PALISSE", - "center": "POINT (589864.1438348715892062 2048151.6255348157137632)", - "surface": 33370000, - "canton": null, - "numero_insee": "19157" - } - }, - { - "pk": 4495, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PANDRIGNES", - "center": "POINT (562434.3363023339770734 2024599.0070263696834445)", - "surface": 8450000, - "canton": null, - "numero_insee": "19158" - } - }, - { - "pk": 35339, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PERET-BEL-AIR", - "center": "POINT (575614.4458827197086066 2052436.4723660505842417)", - "surface": 15610000, - "canton": null, - "numero_insee": "19159" - } - }, - { - "pk": 14573, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PEROLS-SUR-VEZERE", - "center": "POINT (574017.5440585330361500 2063834.0998322581872344)", - "surface": 47100000, - "canton": null, - "numero_insee": "19160" - } - }, - { - "pk": 15104, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PERPEZAC-LE-BLANC", - "center": "POINT (520696.7859564002137631 2024150.3887637415900826)", - "surface": 18970000, - "canton": null, - "numero_insee": "19161" - } - }, - { - "pk": 4723, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PERPEZAC-LE-NOIR", - "center": "POINT (538602.2302464017411694 2037612.8506866409443319)", - "surface": 24940000, - "canton": null, - "numero_insee": "19162" - } - }, - { - "pk": 4839, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LE PESCHER", - "center": "POINT (554555.0008331404533237 2009217.8754615341313183)", - "surface": 11230000, - "canton": null, - "numero_insee": "19163" - } - }, - { - "pk": 21237, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PEYRELEVADE", - "center": "POINT (576694.2813650890020654 2078870.8446678607724607)", - "surface": 66680000, - "canton": null, - "numero_insee": "19164" - } - }, - { - "pk": 27877, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PEYRISSAC", - "center": "POINT (549756.9525974709540606 2056324.1207707882858813)", - "surface": 6120000, - "canton": null, - "numero_insee": "19165" - } - }, - { - "pk": 23885, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PIERREFITTE", - "center": "POINT (546225.6297988264122978 2047686.2782889325171709)", - "surface": 9950000, - "canton": null, - "numero_insee": "19166" - } - }, - { - "pk": 21706, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "CONFOLENT-PORT-DIEU", - "center": "POINT (612590.5077135664178059 2059553.2534342778380960)", - "surface": 10770000, - "canton": null, - "numero_insee": "19167" - } - }, - { - "pk": 21312, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PRADINES", - "center": "POINT (566569.4978079049615189 2056765.0045202532783151)", - "surface": 19840000, - "canton": null, - "numero_insee": "19168" - } - }, - { - "pk": 4525, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "PUY-D'ARNAC", - "center": "POINT (555409.3045509612420574 2002818.5920863859355450)", - "surface": 12380000, - "canton": null, - "numero_insee": "19169" - } - }, - { - "pk": 22489, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "QUEYSSAC-LES-VIGNES", - "center": "POINT (555064.9977843144442886 1996108.9538726294413209)", - "surface": 11170000, - "canton": null, - "numero_insee": "19170" - } - }, - { - "pk": 35409, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "REYGADE", - "center": "POINT (565824.9055865403497592 2002205.0098770083859563)", - "surface": 14040000, - "canton": null, - "numero_insee": "19171" - } - }, - { - "pk": 26708, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "RILHAC-TREIGNAC", - "center": "POINT (549536.7010247852886096 2058724.5975068949628621)", - "surface": 9600000, - "canton": null, - "numero_insee": "19172" - } - }, - { - "pk": 23333, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "RILHAC-XAINTRIE", - "center": "POINT (588406.0001955719199032 2019110.8779844334349036)", - "surface": 25650000, - "canton": null, - "numero_insee": "19173" - } - }, - { - "pk": 27294, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "LA ROCHE-CANILLAC", - "center": "POINT (570663.6674889206187800 2022065.3006978332996368)", - "surface": 3120000, - "canton": null, - "numero_insee": "19174" - } - }, - { - "pk": 7779, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ROCHE-LE-PEYROUX", - "center": "POINT (603383.0448053814470768 2047464.2886075503192842)", - "surface": 7120000, - "canton": null, - "numero_insee": "19175" - } - }, - { - "pk": 23915, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ROSIERS-D'EGLETONS", - "center": "POINT (574392.0696076338645071 2043017.0900367856957018)", - "surface": 38170000, - "canton": null, - "numero_insee": "19176" - } - }, - { - "pk": 4848, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "ROSIERS-DE-JUILLAC", - "center": "POINT (519227.0985479792580009 2032346.2378937050234526)", - "surface": 9620000, - "canton": null, - "numero_insee": "19177" - } - }, - { - "pk": 21230, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SADROC", - "center": "POINT (538160.2615154536906630 2030602.2797633346635848)", - "surface": 19300000, - "canton": null, - "numero_insee": "19178" - } - }, - { - "pk": 10990, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAILLAC", - "center": "POINT (545184.7024897064547986 2004534.9562356462702155)", - "surface": 4330000, - "canton": null, - "numero_insee": "19179" - } - }, - { - "pk": 18042, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-ANGEL", - "center": "POINT (591710.4496426031691954 2054773.5129915806464851)", - "surface": 47940000, - "canton": null, - "numero_insee": "19180" - } - }, - { - "pk": 3715, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-AUGUSTIN", - "center": "POINT (560536.0292379462625831 2048106.1894566691480577)", - "surface": 30230000, - "canton": null, - "numero_insee": "19181" - } - }, - { - "pk": 4216, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-AULAIRE", - "center": "POINT (525481.1763892794260755 2026592.6487814115826041)", - "surface": 10950000, - "canton": null, - "numero_insee": "19182" - } - }, - { - "pk": 14989, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BAZILE-DE-LA-ROCHE", - "center": "POINT (569907.3394967652857304 2016753.7005557802040130)", - "surface": 7150000, - "canton": null, - "numero_insee": "19183" - } - }, - { - "pk": 3291, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BAZILE-DE-MEYSSAC", - "center": "POINT (551678.2326649982715026 2006090.7199034914374352)", - "surface": 4520000, - "canton": null, - "numero_insee": "19184" - } - }, - { - "pk": 20189, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BONNET-AVALOUZE", - "center": "POINT (559502.3683594431495294 2028077.9428905688691884)", - "surface": 5080000, - "canton": null, - "numero_insee": "19185" - } - }, - { - "pk": 23445, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BONNET-ELVERT", - "center": "POINT (566897.8603179776109755 2017529.3068157199304551)", - "surface": 18290000, - "canton": null, - "numero_insee": "19186" - } - }, - { - "pk": 11680, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BONNET-LA-RIVIERE", - "center": "POINT (523325.8430207603960298 2032980.9915428804233670)", - "surface": 10080000, - "canton": null, - "numero_insee": "19187" - } - }, - { - "pk": 15443, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BONNET-L'ENFANTIER", - "center": "POINT (536434.4778214945690706 2033490.7300164962653071)", - "surface": 11860000, - "canton": null, - "numero_insee": "19188" - } - }, - { - "pk": 18202, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BONNET-LES-TOURS-DE-MERLE", - "center": "POINT (577504.8396655983524397 2006006.5240145528223366)", - "surface": 5900000, - "canton": null, - "numero_insee": "19189" - } - }, - { - "pk": 24047, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-BONNET-PRES-BORT", - "center": "POINT (607013.2460941514000297 2056203.2120711226016283)", - "surface": 16930000, - "canton": null, - "numero_insee": "19190" - } - }, - { - "pk": 26308, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-CERNIN-DE-LARCHE", - "center": "POINT (527217.0379722280194983 2010491.1087698470801115)", - "surface": 9280000, - "canton": null, - "numero_insee": "19191" - } - }, - { - "pk": 3419, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-CHAMANT", - "center": "POINT (565525.8806360044982284 2014014.3365256763063371)", - "surface": 14010000, - "canton": null, - "numero_insee": "19192" - } - }, - { - "pk": 4838, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-CIRGUES-LA-LOUTRE", - "center": "POINT (581276.5143324751406908 2009841.9351398858707398)", - "surface": 18500000, - "canton": null, - "numero_insee": "19193" - } - }, - { - "pk": 14832, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-CLEMENT", - "center": "POINT (549018.3907119375653565 2036899.0600913080852479)", - "surface": 26790000, - "canton": null, - "numero_insee": "19194" - } - }, - { - "pk": 7822, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-CYPRIEN", - "center": "POINT (522964.6937253013020381 2028273.3479453762993217)", - "surface": 7730000, - "canton": null, - "numero_insee": "19195" - } - }, - { - "pk": 13956, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-CYR-LA-ROCHE", - "center": "POINT (525240.9332741254474968 2031395.3828942603431642)", - "surface": 8390000, - "canton": null, - "numero_insee": "19196" - } - }, - { - "pk": 11180, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-ELOY-LES-TUILERIES", - "center": "POINT (517169.4120328857097775 2051047.3704442982561886)", - "surface": 9090000, - "canton": null, - "numero_insee": "19198" - } - }, - { - "pk": 12129, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-ETIENNE-LA-GENESTE", - "center": "POINT (600959.8732570613501593 2049946.3754743749741465)", - "surface": 5060000, - "canton": null, - "numero_insee": "19200" - } - }, - { - "pk": 21396, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-EXUPERY-LES-ROCHES", - "center": "POINT (602605.1019891342148185 2056666.6781431627459824)", - "surface": 36030000, - "canton": null, - "numero_insee": "19201" - } - }, - { - "pk": 18703, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINTE-FEREOLE", - "center": "POINT (541206.4687128121731803 2025422.5763627716805786)", - "surface": 35490000, - "canton": null, - "numero_insee": "19202" - } - }, - { - "pk": 14459, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINTE-FORTUNADE", - "center": "POINT (554939.9871139614842832 2023034.8453857882414013)", - "surface": 38340000, - "canton": null, - "numero_insee": "19203" - } - }, - { - "pk": 20215, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-FREJOUX", - "center": "POINT (603163.6207546563819051 2061676.1892632185481489)", - "surface": 24980000, - "canton": null, - "numero_insee": "19204" - } - }, - { - "pk": 17962, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-GENIEZ-O-MERLE", - "center": "POINT (578079.4051876590820029 2009114.4463041217532009)", - "surface": 15880000, - "canton": null, - "numero_insee": "19205" - } - }, - { - "pk": 27071, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-GERMAIN-LAVOLPS", - "center": "POINT (590403.6067862493218854 2067374.6845661413390189)", - "surface": 21680000, - "canton": null, - "numero_insee": "19206" - } - }, - { - "pk": 21457, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-GERMAIN-LES-VERGNES", - "center": "POINT (543772.0779293959494680 2029848.3483040311839432)", - "surface": 19370000, - "canton": null, - "numero_insee": "19207" - } - }, - { - "pk": 32561, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-HILAIRE-FOISSAC", - "center": "POINT (582559.8054084912873805 2035878.4680155324749649)", - "surface": 37120000, - "canton": null, - "numero_insee": "19208" - } - }, - { - "pk": 19992, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-HILAIRE-LES-COURBES", - "center": "POINT (559781.4577209070557728 2066517.6460179456043988)", - "surface": 36840000, - "canton": null, - "numero_insee": "19209" - } - }, - { - "pk": 19334, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-HILAIRE-LUC", - "center": "POINT (589846.3129937493940815 2038341.9087398713454604)", - "surface": 10780000, - "canton": null, - "numero_insee": "19210" - } - }, - { - "pk": 15461, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-HILAIRE-PEYROUX", - "center": "POINT (545326.1249021561816335 2023555.1002996456809342)", - "surface": 19220000, - "canton": null, - "numero_insee": "19211" - } - }, - { - "pk": 37283, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-HILAIRE-TAURIEUX", - "center": "POINT (560260.3109351900639012 2009265.5842825460713357)", - "surface": 8520000, - "canton": null, - "numero_insee": "19212" - } - }, - { - "pk": 18366, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-JAL", - "center": "POINT (546058.0570324130821973 2043781.0785410997923464)", - "surface": 26890000, - "canton": null, - "numero_insee": "19213" - } - }, - { - "pk": 19962, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-JULIEN-AUX-BOIS", - "center": "POINT (584948.0746574364602566 2013676.5067525191698223)", - "surface": 44180000, - "canton": null, - "numero_insee": "19214" - } - }, - { - "pk": 19573, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-JULIEN-LE-PELERIN", - "center": "POINT (578455.1556751700118184 2000108.5484908767975867)", - "surface": 15600000, - "canton": null, - "numero_insee": "19215" - } - }, - { - "pk": 23468, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-JULIEN-MAUMONT", - "center": "POINT (550495.5145374145358801 2003878.6248019877821207)", - "surface": 6390000, - "canton": null, - "numero_insee": "19217" - } - }, - { - "pk": 16042, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-JULIEN-PRES-BORT", - "center": "POINT (607583.4726203534519300 2047899.9528101836331189)", - "surface": 30700000, - "canton": null, - "numero_insee": "19218" - } - }, - { - "pk": 24290, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-MARTIAL-DE-GIMEL", - "center": "POINT (564589.4597373780561611 2030222.5712014450691640)", - "surface": 23960000, - "canton": null, - "numero_insee": "19220" - } - }, - { - "pk": 28547, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-MARTIAL-ENTRAYGUES", - "center": "POINT (571030.9840361403767020 2014060.4156096940860152)", - "surface": 7580000, - "canton": null, - "numero_insee": "19221" - } - }, - { - "pk": 23647, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-MARTIN-LA-MEANNE", - "center": "POINT (573091.8626610022038221 2018982.5528025075327605)", - "surface": 27470000, - "canton": null, - "numero_insee": "19222" - } - }, - { - "pk": 36115, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-MARTIN-SEPERT", - "center": "POINT (533097.0961114853853360 2049578.6174581956584007)", - "surface": 15690000, - "canton": null, - "numero_insee": "19223" - } - }, - { - "pk": 31679, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-MERD-DE-LAPLEAU", - "center": "POINT (581027.9619017727673054 2027557.4564487908501178)", - "surface": 24920000, - "canton": null, - "numero_insee": "19225" - } - }, - { - "pk": 37666, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-MERD-LES-OUSSINES", - "center": "POINT (576175.0713277577888221 2069157.2507231547497213)", - "surface": 42950000, - "canton": null, - "numero_insee": "19226" - } - }, - { - "pk": 20590, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-MEXANT", - "center": "POINT (548156.0392184049123898 2032287.3344428429845721)", - "surface": 18960000, - "canton": null, - "numero_insee": "19227" - } - }, - { - "pk": 20187, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PANTALEON-DE-LAPLEAU", - "center": "POINT (589370.1994885316817090 2035435.0710707753896713)", - "surface": 8490000, - "canton": null, - "numero_insee": "19228" - } - }, - { - "pk": 29611, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PANTALEON-DE-LARCHE", - "center": "POINT (528867.6940484677907079 2016610.9662744344677776)", - "surface": 23720000, - "canton": null, - "numero_insee": "19229" - } - }, - { - "pk": 33994, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PARDOUX-LA-CROISILLE", - "center": "POINT (571117.2002551904879510 2027674.6414900973904878)", - "surface": 17400000, - "canton": null, - "numero_insee": "19231" - } - }, - { - "pk": 32548, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PARDOUX-LE-NEUF", - "center": "POINT (599507.4839157578535378 2067951.5453156603034586)", - "surface": 10690000, - "canton": null, - "numero_insee": "19232" - } - }, - { - "pk": 5052, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PARDOUX-LE-VIEUX", - "center": "POINT (594912.6398102733073756 2066811.9326827120967209)", - "surface": 15830000, - "canton": null, - "numero_insee": "19233" - } - }, - { - "pk": 3420, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PAUL", - "center": "POINT (565451.3352844454348087 2022922.5658220141194761)", - "surface": 14250000, - "canton": null, - "numero_insee": "19235" - } - }, - { - "pk": 21904, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PRIEST-DE-GIMEL", - "center": "POINT (565255.7610345756402239 2034332.1826583491638303)", - "surface": 17940000, - "canton": null, - "numero_insee": "19236" - } - }, - { - "pk": 23064, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-PRIVAT", - "center": "POINT (579530.4836829791311175 2015132.6005025492049754)", - "surface": 32170000, - "canton": null, - "numero_insee": "19237" - } - }, - { - "pk": 14725, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-REMY", - "center": "POINT (595064.1116024693474174 2072618.7506047594361007)", - "surface": 30930000, - "canton": null, - "numero_insee": "19238" - } - }, - { - "pk": 12175, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-ROBERT", - "center": "POINT (518156.9513706614961848 2028633.6726022916845977)", - "surface": 6070000, - "canton": null, - "numero_insee": "19239" - } - }, - { - "pk": 13521, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-SALVADOUR", - "center": "POINT (555269.7379821756621823 2043457.6693277903832495)", - "surface": 19840000, - "canton": null, - "numero_insee": "19240" - } - }, - { - "pk": 15024, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-SETIERS", - "center": "POINT (582913.1532995981397107 2077321.4300478585064411)", - "surface": 46930000, - "canton": null, - "numero_insee": "19241" - } - }, - { - "pk": 22998, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-SOLVE", - "center": "POINT (526717.2663859699387103 2034410.6453735516406596)", - "surface": 5920000, - "canton": null, - "numero_insee": "19242" - } - }, - { - "pk": 34155, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-SORNIN-LAVOLPS", - "center": "POINT (524352.5792744953650981 2041898.2788588753901422)", - "surface": 15300000, - "canton": null, - "numero_insee": "19243" - } - }, - { - "pk": 33244, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-SULPICE-LES-BOIS", - "center": "POINT (584692.6737451732624322 2068027.4719991730526090)", - "surface": 23190000, - "canton": null, - "numero_insee": "19244" - } - }, - { - "pk": 3730, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-SYLVAIN", - "center": "POINT (564674.8864133298629895 2020013.1904202157165855)", - "surface": 7490000, - "canton": null, - "numero_insee": "19245" - } - }, - { - "pk": 4745, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-VIANCE", - "center": "POINT (531411.6497867505531758 2023639.1421672108117491)", - "surface": 16410000, - "canton": null, - "numero_insee": "19246" - } - }, - { - "pk": 16040, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-VICTOUR", - "center": "POINT (603848.1979999649338424 2051672.2749039418995380)", - "surface": 14490000, - "canton": null, - "numero_insee": "19247" - } - }, - { - "pk": 4923, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-YBARD", - "center": "POINT (535995.5345008512958884 2050103.2899322912562639)", - "surface": 30480000, - "canton": null, - "numero_insee": "19248" - } - }, - { - "pk": 21026, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SAINT-YRIEIX-LE-DEJALAT", - "center": "POINT (571226.4113678589928895 2050497.8842762147542089)", - "surface": 40110000, - "canton": null, - "numero_insee": "19249" - } - }, - { - "pk": 15802, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SALON-LA-TOUR", - "center": "POINT (537247.4158754540840164 2056019.4548152240458876)", - "surface": 43320000, - "canton": null, - "numero_insee": "19250" - } - }, - { - "pk": 5615, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SARRAN", - "center": "POINT (568263.0842560674063861 2045768.5068318631965667)", - "surface": 25900000, - "canton": null, - "numero_insee": "19251" - } - }, - { - "pk": 27970, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SARROUX", - "center": "POINT (610186.6592286659870297 2047821.7236006951425225)", - "surface": 25460000, - "canton": null, - "numero_insee": "19252" - } - }, - { - "pk": 20390, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SEGONZAC", - "center": "POINT (515632.9769570839707740 2031215.2077317694202065)", - "surface": 19920000, - "canton": null, - "numero_insee": "19253" - } - }, - { - "pk": 26210, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SEILHAC", - "center": "POINT (551888.4073400067863986 2040826.8641856156755239)", - "surface": 25410000, - "canton": null, - "numero_insee": "19255" - } - }, - { - "pk": 14808, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SERANDON", - "center": "POINT (599051.3195498865097761 2038819.5279256517533213)", - "surface": 34510000, - "canton": null, - "numero_insee": "19256" - } - }, - { - "pk": 14807, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SERILHAC", - "center": "POINT (552437.9850573176518083 2011001.9805148974992335)", - "surface": 12610000, - "canton": null, - "numero_insee": "19257" - } - }, - { - "pk": 19463, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SEXCLES", - "center": "POINT (574708.9313433980569243 2005182.3016796784941107)", - "surface": 25550000, - "canton": null, - "numero_insee": "19259" - } - }, - { - "pk": 15876, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SIONIAC", - "center": "POINT (557655.7269281857879832 1997532.0314079001545906)", - "surface": 10590000, - "canton": null, - "numero_insee": "19260" - } - }, - { - "pk": 20814, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SORNAC", - "center": "POINT (587743.3936057297978550 2074258.9702997603453696)", - "surface": 59300000, - "canton": null, - "numero_insee": "19261" - } - }, - { - "pk": 14512, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SOUDAINE-LAVINADIERE", - "center": "POINT (552322.4750229646451771 2060749.8058299121912569)", - "surface": 22070000, - "canton": null, - "numero_insee": "19262" - } - }, - { - "pk": 16870, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SOUDEILLES", - "center": "POINT (578542.2090036008739844 2049458.0859156923834234)", - "surface": 20370000, - "canton": null, - "numero_insee": "19263" - } - }, - { - "pk": 21901, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "SOURSAC", - "center": "POINT (589524.0102115297922865 2029030.0601376609411091)", - "surface": 42790000, - "canton": null, - "numero_insee": "19264" - } - }, - { - "pk": 30803, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "TARNAC", - "center": "POINT (570222.9191546980291605 2074712.7555360586848110)", - "surface": 68650000, - "canton": null, - "numero_insee": "19265" - } - }, - { - "pk": 16648, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "THALAMY", - "center": "POINT (609515.4860087439883500 2056224.2309777084738016)", - "surface": 11560000, - "canton": null, - "numero_insee": "19266" - } - }, - { - "pk": 28770, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "TOY-VIAM", - "center": "POINT (568246.2862492502899840 2071693.3487321790307760)", - "surface": 10090000, - "canton": null, - "numero_insee": "19268" - } - }, - { - "pk": 16272, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "TREIGNAC", - "center": "POINT (558122.6328695127740502 2061398.8740066178143024)", - "surface": 38200000, - "canton": null, - "numero_insee": "19269" - } - }, - { - "pk": 29868, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "TUDEILS", - "center": "POINT (556487.7373262156033888 2005530.3235438680276275)", - "surface": 9470000, - "canton": null, - "numero_insee": "19271" - } - }, - { - "pk": 18628, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "TULLE", - "center": "POINT (554978.1563925879308954 2030442.4797715009190142)", - "surface": 24690000, - "canton": null, - "numero_insee": "19272" - } - }, - { - "pk": 17991, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "TURENNE", - "center": "POINT (539658.6662087738513947 2006991.3185908987652510)", - "surface": 27000000, - "canton": null, - "numero_insee": "19273" - } - }, - { - "pk": 15577, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "USSAC", - "center": "POINT (535234.3627253803424537 2021368.7583062301855534)", - "surface": 24970000, - "canton": null, - "numero_insee": "19274" - } - }, - { - "pk": 19121, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "USSEL", - "center": "POINT (597463.5763655076734722 2061027.7651021205820143)", - "surface": 51020000, - "canton": null, - "numero_insee": "19275" - } - }, - { - "pk": 27487, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VALIERGUES", - "center": "POINT (595631.5844900143565610 2052704.3741152605507523)", - "surface": 13220000, - "canton": null, - "numero_insee": "19277" - } - }, - { - "pk": 21355, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VARETZ", - "center": "POINT (529028.6405605691252276 2021316.9824595870450139)", - "surface": 20530000, - "canton": null, - "numero_insee": "19278" - } - }, - { - "pk": 36721, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VARS-SUR-ROSEIX", - "center": "POINT (524256.7075435018050484 2029385.2049871881026775)", - "surface": 4400000, - "canton": null, - "numero_insee": "19279" - } - }, - { - "pk": 27163, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VEGENNES", - "center": "POINT (553747.0391334468731657 1998099.9570056998636574)", - "surface": 10040000, - "canton": null, - "numero_insee": "19280" - } - }, - { - "pk": 16930, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VEIX", - "center": "POINT (560972.8523453628877178 2055717.2129065429326147)", - "surface": 21930000, - "canton": null, - "numero_insee": "19281" - } - }, - { - "pk": 24575, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VENARSAL", - "center": "POINT (543338.4934853244340047 2021836.8132427085656673)", - "surface": 3190000, - "canton": null, - "numero_insee": "19282" - } - }, - { - "pk": 24379, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VEYRIERES", - "center": "POINT (604526.9751354614272714 2054280.4940334996208549)", - "surface": 3980000, - "canton": null, - "numero_insee": "19283" - } - }, - { - "pk": 28327, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VIAM", - "center": "POINT (564868.4025975948898122 2068662.2124548002611846)", - "surface": 31670000, - "canton": null, - "numero_insee": "19284" - } - }, - { - "pk": 18977, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VIGEOIS", - "center": "POINT (535860.5101276295026764 2042294.5657259898725897)", - "surface": 43690000, - "canton": null, - "numero_insee": "19285" - } - }, - { - "pk": 21973, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VIGNOLS", - "center": "POINT (526597.1432618042454123 2036812.0004147372674197)", - "surface": 15110000, - "canton": null, - "numero_insee": "19286" - } - }, - { - "pk": 5103, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "VOUTEZAC", - "center": "POINT (529633.2729156157001853 2032833.3918191289994866)", - "surface": 22080000, - "canton": null, - "numero_insee": "19288" - } - }, - { - "pk": 17443, - "model": "ishtar_common.town", - "fields": { - "departement": 19, - "name": "YSSANDON", - "center": "POINT (525110.0184500067261979 2023086.0888846993912011)", - "surface": 19600000, - "canton": null, - "numero_insee": "19289" - } - }, - { - "pk": 32239, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AGENCOURT", - "center": "POINT (800935.5043039593147114 2239509.4457640792243183)", - "surface": 4280000, - "canton": null, - "numero_insee": "21001" - } - }, - { - "pk": 31171, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AGEY", - "center": "POINT (783472.0622516118455678 2256974.7579353847540915)", - "surface": 8370000, - "canton": null, - "numero_insee": "21002" - } - }, - { - "pk": 31397, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AHUY", - "center": "POINT (802702.5520705790258944 2266947.0190053670667112)", - "surface": 6540000, - "canton": null, - "numero_insee": "21003" - } - }, - { - "pk": 14665, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AIGNAY-LE-DUC", - "center": "POINT (781205.9502755427965894 2299689.5664212470874190)", - "surface": 24690000, - "canton": null, - "numero_insee": "21004" - } - }, - { - "pk": 9276, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AISEREY", - "center": "POINT (814597.9105180276092142 2245230.9583314098417759)", - "surface": 10450000, - "canton": null, - "numero_insee": "21005" - } - }, - { - "pk": 3210, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AISEY-SUR-SEINE", - "center": "POINT (768026.6937678741523996 2307783.5406888695433736)", - "surface": 12800000, - "canton": null, - "numero_insee": "21006" - } - }, - { - "pk": 31829, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AISY-SOUS-THIL", - "center": "POINT (746550.2053243455011398 2267769.1314802998676896)", - "surface": 8470000, - "canton": null, - "numero_insee": "21007" - } - }, - { - "pk": 9465, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ALISE-SAINTE-REINE", - "center": "POINT (761925.1789194688899443 2283912.8430867223069072)", - "surface": 3830000, - "canton": null, - "numero_insee": "21008" - } - }, - { - "pk": 15031, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ALLEREY", - "center": "POINT (757849.2587556873913854 2245447.0298608383163810)", - "surface": 19100000, - "canton": null, - "numero_insee": "21009" - } - }, - { - "pk": 31378, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ALOXE-CORTON", - "center": "POINT (791684.8800568827427924 2232824.8987232134677470)", - "surface": 2610000, - "canton": null, - "numero_insee": "21010" - } - }, - { - "pk": 18218, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AMPILLY-LES-BORDES", - "center": "POINT (772032.6993699601152912 2295708.2453318205662072)", - "surface": 14670000, - "canton": null, - "numero_insee": "21011" - } - }, - { - "pk": 25812, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AMPILLY-LE-SEC", - "center": "POINT (762265.5552186595741659 2314439.6235468774102628)", - "surface": 24390000, - "canton": null, - "numero_insee": "21012" - } - }, - { - "pk": 6071, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ANCEY", - "center": "POINT (787830.8961229718988761 2262216.2072971896268427)", - "surface": 8360000, - "canton": null, - "numero_insee": "21013" - } - }, - { - "pk": 12142, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ANTHEUIL", - "center": "POINT (782777.3828585684532300 2244558.6452892255038023)", - "surface": 10200000, - "canton": null, - "numero_insee": "21014" - } - }, - { - "pk": 34244, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ANTIGNY-LA-VILLE", - "center": "POINT (768640.0517016809899360 2235830.9295911225490272)", - "surface": 8360000, - "canton": null, - "numero_insee": "21015" - } - }, - { - "pk": 16856, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARCEAU", - "center": "POINT (815905.4153562993742526 2267860.6325683272443712)", - "surface": 21670000, - "canton": null, - "numero_insee": "21016" - } - }, - { - "pk": 33621, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARCENANT", - "center": "POINT (789614.9818561677820981 2240813.8777212104760110)", - "surface": 10020000, - "canton": null, - "numero_insee": "21017" - } - }, - { - "pk": 9506, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARCEY", - "center": "POINT (788186.6664140040520579 2255713.9477757751010358)", - "surface": 3460000, - "canton": null, - "numero_insee": "21018" - } - }, - { - "pk": 21646, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARCONCEY", - "center": "POINT (760826.7937641646713018 2248374.7778000836260617)", - "surface": 15000000, - "canton": null, - "numero_insee": "21020" - } - }, - { - "pk": 20338, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARGILLY", - "center": "POINT (804090.9106402228353545 2233331.2608113260939717)", - "surface": 33810000, - "canton": null, - "numero_insee": "21022" - } - }, - { - "pk": 23580, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARNAY-LE-DUC", - "center": "POINT (762511.5459895634558052 2238581.0322519717738032)", - "surface": 12050000, - "canton": null, - "numero_insee": "21023" - } - }, - { - "pk": 37465, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARNAY-SOUS-VITTEAUX", - "center": "POINT (763018.8413762394338846 2273013.4505723295733333)", - "surface": 12260000, - "canton": null, - "numero_insee": "21024" - } - }, - { - "pk": 11270, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ARRANS", - "center": "POINT (749471.5184949378017336 2300820.1976311658509076)", - "surface": 10450000, - "canton": null, - "numero_insee": "21025" - } - }, - { - "pk": 16609, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ASNIERES-EN-MONTAGNE", - "center": "POINT (746748.3189260576618835 2303298.9759807363152504)", - "surface": 28460000, - "canton": null, - "numero_insee": "21026" - } - }, - { - "pk": 35894, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ASNIERES-LES-DIJON", - "center": "POINT (804388.3977934361901134 2268762.8913865829817951)", - "surface": 4550000, - "canton": null, - "numero_insee": "21027" - } - }, - { - "pk": 6369, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ATHEE", - "center": "POINT (828954.7200691289035603 2251659.1222539735026658)", - "surface": 9600000, - "canton": null, - "numero_insee": "21028" - } - }, - { - "pk": 34025, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ATHIE", - "center": "POINT (744489.6300318206194788 2286466.5577560598030686)", - "surface": 5910000, - "canton": null, - "numero_insee": "21029" - } - }, - { - "pk": 21839, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUBAINE", - "center": "POINT (781821.0414345246972516 2239346.1775023434311152)", - "surface": 16240000, - "canton": null, - "numero_insee": "21030" - } - }, - { - "pk": 11206, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUBIGNY-EN-PLAINE", - "center": "POINT (814440.5897225453518331 2240225.4695530910976231)", - "surface": 6340000, - "canton": null, - "numero_insee": "21031" - } - }, - { - "pk": 36407, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUBIGNY-LA-RONCE", - "center": "POINT (771849.0664372419705614 2223347.8211215236224234)", - "surface": 11810000, - "canton": null, - "numero_insee": "21032" - } - }, - { - "pk": 25520, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUBIGNY-LES-SOMBERNON", - "center": "POINT (774354.2011418562615290 2258198.0214839852415025)", - "surface": 7960000, - "canton": null, - "numero_insee": "21033" - } - }, - { - "pk": 4658, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUTRICOURT", - "center": "POINT (770495.6369457641849294 2335125.4957125899381936)", - "surface": 26620000, - "canton": null, - "numero_insee": "21034" - } - }, - { - "pk": 12154, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUVILLARS-SUR-SAONE", - "center": "POINT (810403.4188772584311664 2232484.5039347172714770)", - "surface": 6870000, - "canton": null, - "numero_insee": "21035" - } - }, - { - "pk": 28385, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUXANT", - "center": "POINT (773115.3082039090804756 2239171.8271714495494962)", - "surface": 5550000, - "canton": null, - "numero_insee": "21036" - } - }, - { - "pk": 24344, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUXEY-DURESSES", - "center": "POINT (782057.7681216435739771 2223334.8182380064390600)", - "surface": 10970000, - "canton": null, - "numero_insee": "21037" - } - }, - { - "pk": 21732, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AUXONNE", - "center": "POINT (833192.1863822706509382 2247692.1537412148900330)", - "surface": 40420000, - "canton": null, - "numero_insee": "21038" - } - }, - { - "pk": 11424, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AVELANGES", - "center": "POINT (802597.2438561856979504 2290965.3168971179984510)", - "surface": 5950000, - "canton": null, - "numero_insee": "21039" - } - }, - { - "pk": 4730, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AVOSNES", - "center": "POINT (773389.5240960755618289 2265695.8863552445545793)", - "surface": 11410000, - "canton": null, - "numero_insee": "21040" - } - }, - { - "pk": 18087, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "AVOT", - "center": "POINT (800668.5008373375749215 2294151.3502317317761481)", - "surface": 21760000, - "canton": null, - "numero_insee": "21041" - } - }, - { - "pk": 17431, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BAGNOT", - "center": "POINT (807810.8520016751717776 2231361.4039582060649991)", - "surface": 12680000, - "canton": null, - "numero_insee": "21042" - } - }, - { - "pk": 19877, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BAIGNEUX-LES-JUIFS", - "center": "POINT (773969.9030952338362113 2291521.4589283443056047)", - "surface": 12580000, - "canton": null, - "numero_insee": "21043" - } - }, - { - "pk": 17501, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BALOT", - "center": "POINT (757753.8896290888078511 2315401.9598965626209974)", - "surface": 15500000, - "canton": null, - "numero_insee": "21044" - } - }, - { - "pk": 3842, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BARBIREY-SUR-OUCHE", - "center": "POINT (781804.9619533752556890 2252957.2570561626926064)", - "surface": 10710000, - "canton": null, - "numero_insee": "21045" - } - }, - { - "pk": 32468, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BARD-LE-REGULIER", - "center": "POINT (748985.9937117944937199 2240267.3674732004292309)", - "surface": 9110000, - "canton": null, - "numero_insee": "21046" - } - }, - { - "pk": 13557, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BARD-LES-EPOISSES", - "center": "POINT (742120.2416851959424093 2282643.3887314004823565)", - "surface": 3560000, - "canton": null, - "numero_insee": "21047" - } - }, - { - "pk": 6484, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BARGES", - "center": "POINT (806158.2017441362841055 2249061.9610465802252293)", - "surface": 3850000, - "canton": null, - "numero_insee": "21048" - } - }, - { - "pk": 10762, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BARJON", - "center": "POINT (797366.9972563966875896 2294023.0472880462184548)", - "surface": 4590000, - "canton": null, - "numero_insee": "21049" - } - }, - { - "pk": 9663, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BAUBIGNY", - "center": "POINT (778351.5059430781984702 2223703.5309957521967590)", - "surface": 10310000, - "canton": null, - "numero_insee": "21050" - } - }, - { - "pk": 7954, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BAULME-LA-ROCHE", - "center": "POINT (785615.5988449471769854 2263798.5908000986091793)", - "surface": 6650000, - "canton": null, - "numero_insee": "21051" - } - }, - { - "pk": 13581, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEAULIEU", - "center": "POINT (779753.7154035407584161 2305681.8566314773634076)", - "surface": 6590000, - "canton": null, - "numero_insee": "21052" - } - }, - { - "pk": 18349, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEAUMONT-SUR-VINGEANNE", - "center": "POINT (826927.8183325924910605 2277963.1003923420794308)", - "surface": 11820000, - "canton": null, - "numero_insee": "21053" - } - }, - { - "pk": 20789, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEAUNE", - "center": "POINT (790024.6090557390125468 2228006.6998064643703401)", - "surface": 31120000, - "canton": null, - "numero_insee": "21054" - } - }, - { - "pk": 11145, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEAUNOTTE", - "center": "POINT (778595.5646794154308736 2300668.0718174292705953)", - "surface": 8520000, - "canton": null, - "numero_insee": "21055" - } - }, - { - "pk": 20033, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEIRE-LE-CHATEL", - "center": "POINT (816965.0956647227285430 2272673.5796681148931384)", - "surface": 19270000, - "canton": null, - "numero_insee": "21056" - } - }, - { - "pk": 5522, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEIRE-LE-FORT", - "center": "POINT (821339.6033663701964542 2252694.7790947817265987)", - "surface": 5250000, - "canton": null, - "numero_insee": "21057" - } - }, - { - "pk": 13448, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BELAN-SUR-OURCE", - "center": "POINT (771935.8503647953039035 2330534.2963696559891105)", - "surface": 20420000, - "canton": null, - "numero_insee": "21058" - } - }, - { - "pk": 35027, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BELLEFOND", - "center": "POINT (805896.3477474353276193 2267975.1422626441344619)", - "surface": 2440000, - "canton": null, - "numero_insee": "21059" - } - }, - { - "pk": 3919, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BELLENEUVE", - "center": "POINT (821825.1857971528079361 2266109.8695338596589863)", - "surface": 14530000, - "canton": null, - "numero_insee": "21060" - } - }, - { - "pk": 3195, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BELLENOD-SUR-SEINE", - "center": "POINT (773279.8560815404634923 2302023.8176701222546399)", - "surface": 14560000, - "canton": null, - "numero_insee": "21061" - } - }, - { - "pk": 16874, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BELLENOT-SOUS-POUILLY", - "center": "POINT (767063.2820182127179578 2256434.4721910413354635)", - "surface": 14760000, - "canton": null, - "numero_insee": "21062" - } - }, - { - "pk": 19130, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BENEUVRE", - "center": "POINT (794992.6614752536406741 2302509.4241433287970722)", - "surface": 15450000, - "canton": null, - "numero_insee": "21063" - } - }, - { - "pk": 24319, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BENOISEY", - "center": "POINT (754781.7097356589511037 2288355.5709369955584407)", - "surface": 5720000, - "canton": null, - "numero_insee": "21064" - } - }, - { - "pk": 24983, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BESSEY-EN-CHAUME", - "center": "POINT (782561.7150743179954588 2234648.5890159187838435)", - "surface": 10490000, - "canton": null, - "numero_insee": "21065" - } - }, - { - "pk": 25521, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BESSEY-LA-COUR", - "center": "POINT (772140.1505574823822826 2236161.0187212610617280)", - "surface": 4600000, - "canton": null, - "numero_insee": "21066" - } - }, - { - "pk": 27406, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BESSEY-LES-CITEAUX", - "center": "POINT (813123.3322122901445255 2242115.7714576898142695)", - "surface": 10220000, - "canton": null, - "numero_insee": "21067" - } - }, - { - "pk": 24182, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEUREY-BAUGUAY", - "center": "POINT (758510.5804584603756666 2250056.4469666839577258)", - "surface": 7360000, - "canton": null, - "numero_insee": "21068" - } - }, - { - "pk": 19013, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEURIZOT", - "center": "POINT (763096.4330486765829846 2263906.7685871399007738)", - "surface": 14520000, - "canton": null, - "numero_insee": "21069" - } - }, - { - "pk": 6435, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEVY", - "center": "POINT (789675.7420122011099011 2245418.2024243706837296)", - "surface": 5230000, - "canton": null, - "numero_insee": "21070" - } - }, - { - "pk": 31121, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BEZOUOTTE", - "center": "POINT (826302.7758187366416678 2269150.6603798964060843)", - "surface": 1140000, - "canton": null, - "numero_insee": "21072" - } - }, - { - "pk": 30151, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BIERRE-LES-SEMUR", - "center": "POINT (747723.8399475150508806 2270981.6952977511100471)", - "surface": 8320000, - "canton": null, - "numero_insee": "21073" - } - }, - { - "pk": 11207, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BILLEY", - "center": "POINT (833736.3250668901018798 2242592.6005054414272308)", - "surface": 3830000, - "canton": null, - "numero_insee": "21074" - } - }, - { - "pk": 37027, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BILLY-LES-CHANCEAUX", - "center": "POINT (780418.8984840068733320 2286372.3648966290056705)", - "surface": 22330000, - "canton": null, - "numero_insee": "21075" - } - }, - { - "pk": 36522, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BINGES", - "center": "POINT (821555.8236252299975604 2262504.6392007293179631)", - "surface": 17780000, - "canton": null, - "numero_insee": "21076" - } - }, - { - "pk": 22215, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BISSEY-LA-COTE", - "center": "POINT (777076.9172801855020225 2326174.8062521484680474)", - "surface": 19920000, - "canton": null, - "numero_insee": "21077" - } - }, - { - "pk": 37031, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BISSEY-LA-PIERRE", - "center": "POINT (756330.7559920731000602 2317991.8393984301947057)", - "surface": 8480000, - "canton": null, - "numero_insee": "21078" - } - }, - { - "pk": 36516, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BLAGNY-SUR-VINGEANNE", - "center": "POINT (827550.5549905369989574 2275366.3508508526720107)", - "surface": 7550000, - "canton": null, - "numero_insee": "21079" - } - }, - { - "pk": 16498, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BLAISY-BAS", - "center": "POINT (781092.6337018280755728 2266061.8464005561545491)", - "surface": 13280000, - "canton": null, - "numero_insee": "21080" - } - }, - { - "pk": 27581, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BLAISY-HAUT", - "center": "POINT (783502.0892399038420990 2265181.6828304072842002)", - "surface": 8380000, - "canton": null, - "numero_insee": "21081" - } - }, - { - "pk": 35495, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BLANCEY", - "center": "POINT (760544.8092395109124482 2257980.2356595201417804)", - "surface": 6720000, - "canton": null, - "numero_insee": "21082" - } - }, - { - "pk": 21127, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BLANOT", - "center": "POINT (743851.4975510799558833 2243826.6660112426616251)", - "surface": 18320000, - "canton": null, - "numero_insee": "21083" - } - }, - { - "pk": 21060, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SOURCE-SEINE", - "center": "POINT (777777.5742114468012005 2279244.1731258379295468)", - "surface": 16340000, - "canton": null, - "numero_insee": "21084" - } - }, - { - "pk": 35724, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BLIGNY-LES-BEAUNE", - "center": "POINT (789564.3942555285757408 2223298.8175793103873730)", - "surface": 7250000, - "canton": null, - "numero_insee": "21086" - } - }, - { - "pk": 23136, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BLIGNY-SUR-OUCHE", - "center": "POINT (778032.6785814721370116 2237612.4403007961809635)", - "surface": 28020000, - "canton": null, - "numero_insee": "21087" - } - }, - { - "pk": 8368, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BONCOURT-LE-BOIS", - "center": "POINT (801824.2072500152280554 2240918.2055385317653418)", - "surface": 7670000, - "canton": null, - "numero_insee": "21088" - } - }, - { - "pk": 31046, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BONNENCONTRE", - "center": "POINT (812978.8520058101275936 2235609.1310031008906662)", - "surface": 10910000, - "canton": null, - "numero_insee": "21089" - } - }, - { - "pk": 12510, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUDREVILLE", - "center": "POINT (786464.5971423175651580 2328456.6165022882632911)", - "surface": 7980000, - "canton": null, - "numero_insee": "21090" - } - }, - { - "pk": 8011, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUHEY", - "center": "POINT (777250.1903454534476623 2247213.7092083492316306)", - "surface": 7610000, - "canton": null, - "numero_insee": "21091" - } - }, - { - "pk": 23861, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUILLAND", - "center": "POINT (784617.1814149664714932 2240070.6242744880728424)", - "surface": 16740000, - "canton": null, - "numero_insee": "21092" - } - }, - { - "pk": 10371, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUIX", - "center": "POINT (759379.2082346683600917 2324322.6275463700294495)", - "surface": 15600000, - "canton": null, - "numero_insee": "21093" - } - }, - { - "pk": 22546, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOURBERAIN", - "center": "POINT (822581.8225135551765561 2282929.8590799989178777)", - "surface": 30740000, - "canton": null, - "numero_insee": "21094" - } - }, - { - "pk": 30223, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUSSELANGE", - "center": "POINT (821771.1831709361867979 2225676.0274976869113743)", - "surface": 7350000, - "canton": null, - "numero_insee": "21095" - } - }, - { - "pk": 13564, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUSSENOIS", - "center": "POINT (815566.3016643465962261 2295779.9972102451138198)", - "surface": 12540000, - "canton": null, - "numero_insee": "21096" - } - }, - { - "pk": 25713, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUSSEY", - "center": "POINT (766392.8974731108173728 2264635.4266565269790590)", - "surface": 5610000, - "canton": null, - "numero_insee": "21097" - } - }, - { - "pk": 15200, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUX-SOUS-SALMAISE", - "center": "POINT (773890.9592760491650552 2277309.4992487980052829)", - "surface": 14580000, - "canton": null, - "numero_insee": "21098" - } - }, - { - "pk": 5084, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BOUZE-LES-BEAUNE", - "center": "POINT (784894.2194576938636601 2231065.4918484315276146)", - "surface": 6900000, - "canton": null, - "numero_insee": "21099" - } - }, - { - "pk": 21723, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRAIN", - "center": "POINT (763394.4056237880140543 2275918.9771538707427680)", - "surface": 4130000, - "canton": null, - "numero_insee": "21100" - } - }, - { - "pk": 3040, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRAUX", - "center": "POINT (757040.0228890997823328 2269960.1094516026787460)", - "surface": 12910000, - "canton": null, - "numero_insee": "21101" - } - }, - { - "pk": 7684, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRAZEY-EN-MORVAN", - "center": "POINT (746959.7919483894947916 2243152.5275065717287362)", - "surface": 17180000, - "canton": null, - "numero_insee": "21102" - } - }, - { - "pk": 19868, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRAZEY-EN-PLAINE", - "center": "POINT (818032.1757634200621396 2241557.2954995720647275)", - "surface": 26010000, - "canton": null, - "numero_insee": "21103" - } - }, - { - "pk": 19527, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BREMUR-ET-VAUROIS", - "center": "POINT (770445.4482765882275999 2305802.6083544981665909)", - "surface": 9450000, - "canton": null, - "numero_insee": "21104" - } - }, - { - "pk": 13929, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRESSEY-SUR-TILLE", - "center": "POINT (815269.1531739656347781 2260349.0962350382469594)", - "surface": 7310000, - "canton": null, - "numero_insee": "21105" - } - }, - { - "pk": 12286, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRETENIERE", - "center": "POINT (809434.9900758045259863 2252092.4590296791866422)", - "surface": 6070000, - "canton": null, - "numero_insee": "21106" - } - }, - { - "pk": 36232, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRETIGNY", - "center": "POINT (808484.5606641881167889 2269598.5761472531594336)", - "surface": 6920000, - "canton": null, - "numero_insee": "21107" - } - }, - { - "pk": 6549, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRIANNY", - "center": "POINT (753736.7520302832126617 2270032.0647309459745884)", - "surface": 7550000, - "canton": null, - "numero_insee": "21108" - } - }, - { - "pk": 31771, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BRION-SUR-OURCE", - "center": "POINT (774380.1777465143240988 2325551.3417862397618592)", - "surface": 14020000, - "canton": null, - "numero_insee": "21109" - } - }, - { - "pk": 33091, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BROCHON", - "center": "POINT (798226.6161700513912365 2251996.6100321277044713)", - "surface": 7480000, - "canton": null, - "numero_insee": "21110" - } - }, - { - "pk": 34953, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BROGNON", - "center": "POINT (813570.3165578487096354 2271743.7920799572020769)", - "surface": 6380000, - "canton": null, - "numero_insee": "21111" - } - }, - { - "pk": 30328, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BROIN", - "center": "POINT (810077.5026588044129312 2235484.2205398841761053)", - "surface": 14530000, - "canton": null, - "numero_insee": "21112" - } - }, - { - "pk": 30984, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BROINDON", - "center": "POINT (804770.8454798588063568 2247448.7771978704258800)", - "surface": 4690000, - "canton": null, - "numero_insee": "21113" - } - }, - { - "pk": 35100, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BUFFON", - "center": "POINT (745501.0334113889839500 2296983.4390824423171580)", - "surface": 8850000, - "canton": null, - "numero_insee": "21114" - } - }, - { - "pk": 19660, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BUNCEY", - "center": "POINT (767761.7185109278652817 2315387.1597868832759559)", - "surface": 27450000, - "canton": null, - "numero_insee": "21115" - } - }, - { - "pk": 22233, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BURE-LES-TEMPLIERS", - "center": "POINT (793055.4036426446400583 2306696.1443751845508814)", - "surface": 35260000, - "canton": null, - "numero_insee": "21116" - } - }, - { - "pk": 16460, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BUSSEAUT", - "center": "POINT (773639.1697265116963536 2306830.6223757811821997)", - "surface": 10610000, - "canton": null, - "numero_insee": "21117" - } - }, - { - "pk": 24316, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BUSSEROTTE-ET-MONTENAILLE", - "center": "POINT (798524.2263431563042104 2299136.9482466913759708)", - "surface": 6670000, - "canton": null, - "numero_insee": "21118" - } - }, - { - "pk": 36568, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BUSSIERES", - "center": "POINT (797024.8706817050697282 2298923.9748854748904705)", - "surface": 6390000, - "canton": null, - "numero_insee": "21119" - } - }, - { - "pk": 19775, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LA BUSSIERE-SUR-OUCHE", - "center": "POINT (778827.4840377413202077 2250029.4695697939023376)", - "surface": 20660000, - "canton": null, - "numero_insee": "21120" - } - }, - { - "pk": 3787, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BUSSY-LA-PESLE", - "center": "POINT (779504.2644186946563423 2264547.0770548167638481)", - "surface": 11530000, - "canton": null, - "numero_insee": "21121" - } - }, - { - "pk": 5686, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "BUXEROLLES", - "center": "POINT (796084.8881356645142660 2315228.6187533815391362)", - "surface": 11770000, - "canton": null, - "numero_insee": "21123" - } - }, - { - "pk": 20900, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CENSEREY", - "center": "POINT (751438.4836429419228807 2246093.0298267011530697)", - "surface": 12100000, - "canton": null, - "numero_insee": "21124" - } - }, - { - "pk": 34010, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CERILLY", - "center": "POINT (761021.2364084603032097 2319532.9437232594937086)", - "surface": 13900000, - "canton": null, - "numero_insee": "21125" - } - }, - { - "pk": 34466, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CESSEY-SUR-TILLE", - "center": "POINT (818694.8121241116896272 2257676.2235265104100108)", - "surface": 11540000, - "canton": null, - "numero_insee": "21126" - } - }, - { - "pk": 5088, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAIGNAY", - "center": "POINT (805203.4644377542426810 2278777.9029394038952887)", - "surface": 24990000, - "canton": null, - "numero_insee": "21127" - } - }, - { - "pk": 16684, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAILLY-SUR-ARMANCON", - "center": "POINT (761873.0558139453642070 2254788.9384564612992108)", - "surface": 18720000, - "canton": null, - "numero_insee": "21128" - } - }, - { - "pk": 10886, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMBAIN", - "center": "POINT (793395.8292478315997869 2313704.4800029229372740)", - "surface": 9720000, - "canton": null, - "numero_insee": "21129" - } - }, - { - "pk": 31891, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMBEIRE", - "center": "POINT (821996.4088556966744363 2257804.5817460706457496)", - "surface": 6130000, - "canton": null, - "numero_insee": "21130" - } - }, - { - "pk": 37622, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMBLANC", - "center": "POINT (815241.3464805372059345 2228522.5553486282005906)", - "surface": 10150000, - "canton": null, - "numero_insee": "21131" - } - }, - { - "pk": 31802, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMBOEUF", - "center": "POINT (794234.7414861320285127 2250661.4293269044719636)", - "surface": 11180000, - "canton": null, - "numero_insee": "21132" - } - }, - { - "pk": 25714, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMBOLLE-MUSIGNY", - "center": "POINT (797575.7004023457411677 2246186.2734814840368927)", - "surface": 7610000, - "canton": null, - "numero_insee": "21133" - } - }, - { - "pk": 37489, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMESSON", - "center": "POINT (765192.3141024326905608 2311562.3252270803786814)", - "surface": 15980000, - "canton": null, - "numero_insee": "21134" - } - }, - { - "pk": 3822, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMPAGNE-SUR-VINGEANNE", - "center": "POINT (831450.8283108448376879 2275700.0254672667942941)", - "surface": 13250000, - "canton": null, - "numero_insee": "21135" - } - }, - { - "pk": 5667, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMPAGNY", - "center": "POINT (783207.1223063857760280 2276288.1086313212290406)", - "surface": 7190000, - "canton": null, - "numero_insee": "21136" - } - }, - { - "pk": 24897, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMP-D'OISEAU", - "center": "POINT (751300.4885461216326803 2285823.9553362536244094)", - "surface": 4870000, - "canton": null, - "numero_insee": "21137" - } - }, - { - "pk": 32256, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMPDOTRE", - "center": "POINT (824493.3640907084336504 2246716.8551223669201136)", - "surface": 10460000, - "canton": null, - "numero_insee": "21138" - } - }, - { - "pk": 4397, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMPEAU-EN-MORVAN", - "center": "POINT (737559.2105319993570447 2254081.6267540249973536)", - "surface": 34670000, - "canton": null, - "numero_insee": "21139" - } - }, - { - "pk": 25335, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMPIGNOLLES", - "center": "POINT (769488.4331993027590215 2230233.4878980061039329)", - "surface": 6400000, - "canton": null, - "numero_insee": "21140" - } - }, - { - "pk": 9779, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAMPRENAULT", - "center": "POINT (776861.3678702805191278 2269328.4087970033288002)", - "surface": 4150000, - "canton": null, - "numero_insee": "21141" - } - }, - { - "pk": 20997, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHANCEAUX", - "center": "POINT (780844.8086332977982238 2283373.6157954288646579)", - "surface": 21200000, - "canton": null, - "numero_insee": "21142" - } - }, - { - "pk": 34789, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHANNAY", - "center": "POINT (748280.9105939855799079 2323127.2946500075049698)", - "surface": 13440000, - "canton": null, - "numero_insee": "21143" - } - }, - { - "pk": 26250, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHARENCEY", - "center": "POINT (776042.0001222302671522 2271523.1916851727291942)", - "surface": 4720000, - "canton": null, - "numero_insee": "21144" - } - }, - { - "pk": 11547, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHARIGNY", - "center": "POINT (757118.7912339691538364 2272462.7918098918162286)", - "surface": 3110000, - "canton": null, - "numero_insee": "21145" - } - }, - { - "pk": 12155, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHARMES", - "center": "POINT (827513.9496436491608620 2267960.0693989563733339)", - "surface": 6530000, - "canton": null, - "numero_insee": "21146" - } - }, - { - "pk": 21676, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHARNY", - "center": "POINT (757815.5332514445763081 2261159.5940625527873635)", - "surface": 7830000, - "canton": null, - "numero_insee": "21147" - } - }, - { - "pk": 10952, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHARREY-SUR-SAONE", - "center": "POINT (813767.4689900521188974 2237017.0471000624820590)", - "surface": 5560000, - "canton": null, - "numero_insee": "21148" - } - }, - { - "pk": 35624, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHARREY-SUR-SEINE", - "center": "POINT (764531.6280115208355710 2330371.0948476884514093)", - "surface": 12890000, - "canton": null, - "numero_insee": "21149" - } - }, - { - "pk": 12598, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHASSAGNE-MONTRACHET", - "center": "POINT (782008.0801683557219803 2217429.4105933709070086)", - "surface": 6500000, - "canton": null, - "numero_insee": "21150" - } - }, - { - "pk": 13290, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHASSEY", - "center": "POINT (758880.8994999602437019 2277081.4874883815646172)", - "surface": 6620000, - "canton": null, - "numero_insee": "21151" - } - }, - { - "pk": 3125, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHATEAUNEUF", - "center": "POINT (775231.6169958116952330 2249198.1366044832393527)", - "surface": 10100000, - "canton": null, - "numero_insee": "21152" - } - }, - { - "pk": 5734, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHATELLENOT", - "center": "POINT (762807.8307500291848555 2250793.6258939509280026)", - "surface": 11520000, - "canton": null, - "numero_insee": "21153" - } - }, - { - "pk": 20093, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHATILLON-SUR-SEINE", - "center": "POINT (768723.1704303252045065 2319998.8922898597083986)", - "surface": 33210000, - "canton": null, - "numero_insee": "21154" - } - }, - { - "pk": 34554, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAUDENAY-LA-VILLE", - "center": "POINT (774885.9437684897566214 2242789.9102786672301590)", - "surface": 5230000, - "canton": null, - "numero_insee": "21155" - } - }, - { - "pk": 33371, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAUDENAY-LE-CHATEAU", - "center": "POINT (774769.6512660274747759 2244690.4886478595435619)", - "surface": 5150000, - "canton": null, - "numero_insee": "21156" - } - }, - { - "pk": 8313, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAUGEY", - "center": "POINT (795942.9081038985168561 2308422.1415818319655955)", - "surface": 6830000, - "canton": null, - "numero_insee": "21157" - } - }, - { - "pk": 36156, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAUME-ET-COURCHAMP", - "center": "POINT (827415.8966100207762793 2291077.7167761130258441)", - "surface": 8190000, - "canton": null, - "numero_insee": "21158" - } - }, - { - "pk": 32570, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LA CHAUME", - "center": "POINT (785909.4744334097485989 2323147.8330727345310152)", - "surface": 33040000, - "canton": null, - "numero_insee": "21159" - } - }, - { - "pk": 26926, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAUMONT-LE-BOIS", - "center": "POINT (768550.5818705916171893 2328503.9107017265632749)", - "surface": 7260000, - "canton": null, - "numero_insee": "21161" - } - }, - { - "pk": 31170, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAUX", - "center": "POINT (794930.1054928731173277 2239558.2025968246161938)", - "surface": 7100000, - "canton": null, - "numero_insee": "21162" - } - }, - { - "pk": 20757, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAZEUIL", - "center": "POINT (821834.1661834293045104 2288427.8285812684334815)", - "surface": 18610000, - "canton": null, - "numero_insee": "21163" - } - }, - { - "pk": 20752, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHAZILLY", - "center": "POINT (770163.6285978234373033 2244951.4602660955861211)", - "surface": 8750000, - "canton": null, - "numero_insee": "21164" - } - }, - { - "pk": 18748, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHEMIN-D'AISEY", - "center": "POINT (766140.7099216511705890 2305966.0653747920878232)", - "surface": 8600000, - "canton": null, - "numero_insee": "21165" - } - }, - { - "pk": 21096, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHENOVE", - "center": "POINT (801777.1133814875502139 2258131.9543457394465804)", - "surface": 7430000, - "canton": null, - "numero_insee": "21166" - } - }, - { - "pk": 22259, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHEUGE", - "center": "POINT (829798.4851101135136560 2269981.2679141666740179)", - "surface": 8790000, - "canton": null, - "numero_insee": "21167" - } - }, - { - "pk": 6814, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHEVANNAY", - "center": "POINT (774869.2896271515637636 2268210.5281056445091963)", - "surface": 7250000, - "canton": null, - "numero_insee": "21168" - } - }, - { - "pk": 10310, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHEVANNES", - "center": "POINT (789297.6619926769053563 2242812.8244493617676198)", - "surface": 6320000, - "canton": null, - "numero_insee": "21169" - } - }, - { - "pk": 8125, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHEVIGNY-EN-VALIERE", - "center": "POINT (801184.4448343655094504 2222097.0064191180281341)", - "surface": 5460000, - "canton": null, - "numero_insee": "21170" - } - }, - { - "pk": 33470, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHEVIGNY-SAINT-SAUVEUR", - "center": "POINT (811675.0482140287058428 2259317.5183245926164091)", - "surface": 11990000, - "canton": null, - "numero_insee": "21171" - } - }, - { - "pk": 36982, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHIVRES", - "center": "POINT (809489.9865221788641065 2222268.1194638148881495)", - "surface": 8220000, - "canton": null, - "numero_insee": "21172" - } - }, - { - "pk": 7283, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CHOREY-LES-BEAUNE", - "center": "POINT (792402.5111539952922612 2230829.3563961749896407)", - "surface": 5570000, - "canton": null, - "numero_insee": "21173" - } - }, - { - "pk": 35402, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CIREY-LES-PONTAILLER", - "center": "POINT (824778.7699140477925539 2260130.2950967107899487)", - "surface": 8620000, - "canton": null, - "numero_insee": "21175" - } - }, - { - "pk": 26524, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CIVRY-EN-MONTAGNE", - "center": "POINT (771563.2153686142992228 2256873.1602380056865513)", - "surface": 7750000, - "canton": null, - "numero_insee": "21176" - } - }, - { - "pk": 4098, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CLEMENCEY", - "center": "POINT (792808.0452601710567251 2253651.7016371153295040)", - "surface": 10730000, - "canton": null, - "numero_insee": "21178" - } - }, - { - "pk": 10490, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CLENAY", - "center": "POINT (809565.6738504081731662 2271909.6812271317467093)", - "surface": 5530000, - "canton": null, - "numero_insee": "21179" - } - }, - { - "pk": 30221, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CLERY", - "center": "POINT (839292.9622118386905640 2259854.4080440215766430)", - "surface": 3430000, - "canton": null, - "numero_insee": "21180" - } - }, - { - "pk": 27512, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CLOMOT", - "center": "POINT (762850.4612880266504362 2245789.8762050452642143)", - "surface": 8580000, - "canton": null, - "numero_insee": "21181" - } - }, - { - "pk": 23180, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COLLONGES-LES-BEVY", - "center": "POINT (789484.9928734841523692 2244315.6647744397632778)", - "surface": 5320000, - "canton": null, - "numero_insee": "21182" - } - }, - { - "pk": 25935, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COLLONGES-LES-PREMIERES", - "center": "POINT (823752.5428443338023499 2251414.3805064610205591)", - "surface": 9300000, - "canton": null, - "numero_insee": "21183" - } - }, - { - "pk": 32669, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COLOMBIER", - "center": "POINT (777181.7027881743852049 2243510.0715561965480447)", - "surface": 3910000, - "canton": null, - "numero_insee": "21184" - } - }, - { - "pk": 17832, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COMBERTAULT", - "center": "POINT (795158.4435581300640479 2224547.6126573681831360)", - "surface": 3930000, - "canton": null, - "numero_insee": "21185" - } - }, - { - "pk": 6039, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COMBLANCHIEN", - "center": "POINT (795853.8760330009972677 2236863.8513714713044465)", - "surface": 3600000, - "canton": null, - "numero_insee": "21186" - } - }, - { - "pk": 7036, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COMMARIN", - "center": "POINT (775303.5237165050348267 2252501.4590198067016900)", - "surface": 6440000, - "canton": null, - "numero_insee": "21187" - } - }, - { - "pk": 23063, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORBERON", - "center": "POINT (803145.7688943665707484 2226817.7329854220151901)", - "surface": 11740000, - "canton": null, - "numero_insee": "21189" - } - }, - { - "pk": 23834, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORCELLES-LES-ARTS", - "center": "POINT (787199.2886065900092945 2218974.9918323201127350)", - "surface": 5540000, - "canton": null, - "numero_insee": "21190" - } - }, - { - "pk": 37152, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORCELLES-LES-CITEAUX", - "center": "POINT (808097.2958308642264456 2244674.9180542812682688)", - "surface": 6740000, - "canton": null, - "numero_insee": "21191" - } - }, - { - "pk": 27582, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORCELLES-LES-MONTS", - "center": "POINT (796963.2842536458047107 2259291.7831408525817096)", - "surface": 14560000, - "canton": null, - "numero_insee": "21192" - } - }, - { - "pk": 5181, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORGENGOUX", - "center": "POINT (803367.3150443393969908 2224317.5239911219105124)", - "surface": 12480000, - "canton": null, - "numero_insee": "21193" - } - }, - { - "pk": 27257, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORGOLOIN", - "center": "POINT (797274.6099326033145189 2234574.0757528366521001)", - "surface": 12620000, - "canton": null, - "numero_insee": "21194" - } - }, - { - "pk": 9267, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORMOT-LE-GRAND", - "center": "POINT (775769.1383723821491003 2221379.5643428852781653)", - "surface": 5890000, - "canton": null, - "numero_insee": "21195" - } - }, - { - "pk": 3762, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORPEAU", - "center": "POINT (784414.2090809573419392 2216949.5228234422393143)", - "surface": 4640000, - "canton": null, - "numero_insee": "21196" - } - }, - { - "pk": 9596, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORPOYER-LA-CHAPELLE", - "center": "POINT (771017.2453051370102912 2285691.6877321340143681)", - "surface": 4140000, - "canton": null, - "numero_insee": "21197" - } - }, - { - "pk": 3265, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORROMBLES", - "center": "POINT (740428.3726626390125602 2281528.1263825385831296)", - "surface": 11430000, - "canton": null, - "numero_insee": "21198" - } - }, - { - "pk": 14743, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CORSAINT", - "center": "POINT (740401.9944378626532853 2284630.3665256225503981)", - "surface": 20550000, - "canton": null, - "numero_insee": "21199" - } - }, - { - "pk": 20899, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COUCHEY", - "center": "POINT (798504.6004415275529027 2254601.1173555157147348)", - "surface": 12620000, - "canton": null, - "numero_insee": "21200" - } - }, - { - "pk": 3866, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COULMIER-LE-SEC", - "center": "POINT (761817.2155785157810897 2308331.0856771697290242)", - "surface": 32030000, - "canton": null, - "numero_insee": "21201" - } - }, - { - "pk": 17762, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COURBAN", - "center": "POINT (779574.3705786671489477 2326696.4992135670036077)", - "surface": 17640000, - "canton": null, - "numero_insee": "21202" - } - }, - { - "pk": 18920, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COURCELLES-FREMOY", - "center": "POINT (739495.7152711283415556 2273513.8020650586113334)", - "surface": 11450000, - "canton": null, - "numero_insee": "21203" - } - }, - { - "pk": 7349, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COURCELLES-LES-MONTBARD", - "center": "POINT (754567.0816294953692704 2290055.0875017624348402)", - "surface": 6150000, - "canton": null, - "numero_insee": "21204" - } - }, - { - "pk": 17423, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COURCELLES-LES-SEMUR", - "center": "POINT (747499.0014358018524945 2273882.1122810225933790)", - "surface": 12110000, - "canton": null, - "numero_insee": "21205" - } - }, - { - "pk": 26904, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COURLON", - "center": "POINT (800641.1206880188547075 2297353.6338254450820386)", - "surface": 9780000, - "canton": null, - "numero_insee": "21207" - } - }, - { - "pk": 4251, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COURTIVRON", - "center": "POINT (796844.4022257996257395 2284911.3772285310551524)", - "surface": 15640000, - "canton": null, - "numero_insee": "21208" - } - }, - { - "pk": 34438, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "COUTERNON", - "center": "POINT (812546.5955411714967340 2262727.7454258156940341)", - "surface": 6840000, - "canton": null, - "numero_insee": "21209" - } - }, - { - "pk": 9325, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CREANCEY", - "center": "POINT (770697.5286981433164328 2252762.4263920416124165)", - "surface": 16780000, - "canton": null, - "numero_insee": "21210" - } - }, - { - "pk": 6191, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CRECEY-SUR-TILLE", - "center": "POINT (810917.7576442958088592 2289335.1520037469454110)", - "surface": 10890000, - "canton": null, - "numero_insee": "21211" - } - }, - { - "pk": 8556, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CREPAND", - "center": "POINT (748349.8612187802791595 2291503.3522178875282407)", - "surface": 5770000, - "canton": null, - "numero_insee": "21212" - } - }, - { - "pk": 12285, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CRIMOLOIS", - "center": "POINT (810902.7141205345978960 2256008.2137794904410839)", - "surface": 3620000, - "canton": null, - "numero_insee": "21213" - } - }, - { - "pk": 27583, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CRUGEY", - "center": "POINT (777569.1981101070996374 2245014.6163835884071887)", - "surface": 6400000, - "canton": null, - "numero_insee": "21214" - } - }, - { - "pk": 13760, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CUISEREY", - "center": "POINT (825014.6826014908729121 2267638.4094295538961887)", - "surface": 6330000, - "canton": null, - "numero_insee": "21215" - } - }, - { - "pk": 35341, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CULETRE", - "center": "POINT (769196.9998063523089513 2240939.9122331067919731)", - "surface": 5600000, - "canton": null, - "numero_insee": "21216" - } - }, - { - "pk": 34282, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CURLEY", - "center": "POINT (794957.4981194664724171 2248065.4658849569968879)", - "surface": 5650000, - "canton": null, - "numero_insee": "21217" - } - }, - { - "pk": 14001, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CURTIL-SAINT-SEINE", - "center": "POINT (795414.3000767754856497 2276592.5290035405196249)", - "surface": 12060000, - "canton": null, - "numero_insee": "21218" - } - }, - { - "pk": 17424, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CUSSEY-LES-FORGES", - "center": "POINT (806351.1738315377151594 2296701.9186189714819193)", - "surface": 23430000, - "canton": null, - "numero_insee": "21220" - } - }, - { - "pk": 32998, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CUSSY-LA-COLONNE", - "center": "POINT (775599.9222154566086829 2229484.9299560445360839)", - "surface": 6140000, - "canton": null, - "numero_insee": "21221" - } - }, - { - "pk": 33882, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "CUSSY-LE-CHATEL", - "center": "POINT (770381.6960887232562527 2242851.5844014738686383)", - "surface": 7310000, - "canton": null, - "numero_insee": "21222" - } - }, - { - "pk": 13962, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DAIX", - "center": "POINT (798810.8020469676703215 2265612.6937238411046565)", - "surface": 11800000, - "canton": null, - "numero_insee": "21223" - } - }, - { - "pk": 20763, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DAMPIERRE-EN-MONTAGNE", - "center": "POINT (767519.5706659753341228 2273352.0473024095408618)", - "surface": 10380000, - "canton": null, - "numero_insee": "21224" - } - }, - { - "pk": 16618, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DAMPIERRE-ET-FLEE", - "center": "POINT (827210.8834012568695471 2279967.1278605475090444)", - "surface": 9450000, - "canton": null, - "numero_insee": "21225" - } - }, - { - "pk": 31104, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DARCEY", - "center": "POINT (767817.4974301129113883 2285364.1698117400519550)", - "surface": 18950000, - "canton": null, - "numero_insee": "21226" - } - }, - { - "pk": 35496, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DAROIS", - "center": "POINT (795877.8772165027912706 2269190.5378001723438501)", - "surface": 8150000, - "canton": null, - "numero_insee": "21227" - } - }, - { - "pk": 35580, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DETAIN-ET-BRUANT", - "center": "POINT (785780.4965926243457943 2244484.1979716955684125)", - "surface": 15610000, - "canton": null, - "numero_insee": "21228" - } - }, - { - "pk": 23380, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DIANCEY", - "center": "POINT (753861.5849703714484349 2243611.5922697428613901)", - "surface": 10040000, - "canton": null, - "numero_insee": "21229" - } - }, - { - "pk": 16359, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DIENAY", - "center": "POINT (804960.5220662313513458 2283779.8160247718915343)", - "surface": 15450000, - "canton": null, - "numero_insee": "21230" - } - }, - { - "pk": 32195, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DIJON", - "center": "POINT (804149.7979978191433474 2261555.0136761651374400)", - "surface": 41600000, - "canton": null, - "numero_insee": "21231" - } - }, - { - "pk": 15410, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DOMPIERRE-EN-MORVAN", - "center": "POINT (743041.6765780204441398 2268439.8522853152826428)", - "surface": 15320000, - "canton": null, - "numero_insee": "21232" - } - }, - { - "pk": 32257, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DRAMBON", - "center": "POINT (829751.5974361826665699 2263775.8424642877653241)", - "surface": 4940000, - "canton": null, - "numero_insee": "21233" - } - }, - { - "pk": 25913, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DREE", - "center": "POINT (778216.1130153905833140 2263034.8694363338872790)", - "surface": 5100000, - "canton": null, - "numero_insee": "21234" - } - }, - { - "pk": 18206, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "DUESME", - "center": "POINT (777037.1190384574001655 2295650.8534771567210555)", - "surface": 13380000, - "canton": null, - "numero_insee": "21235" - } - }, - { - "pk": 12676, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "EBATY", - "center": "POINT (786012.8851576123852283 2217263.4238474089652300)", - "surface": 2110000, - "canton": null, - "numero_insee": "21236" - } - }, - { - "pk": 31280, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ECHALOT", - "center": "POINT (787770.3902329024858773 2292740.1094830371439457)", - "surface": 27760000, - "canton": null, - "numero_insee": "21237" - } - }, - { - "pk": 7760, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ECHANNAY", - "center": "POINT (777175.0620650295168161 2256020.2877963306382298)", - "surface": 7070000, - "canton": null, - "numero_insee": "21238" - } - }, - { - "pk": 31594, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ECHENON", - "center": "POINT (823752.7745631983270869 2239704.7117583281360567)", - "surface": 10710000, - "canton": null, - "numero_insee": "21239" - } - }, - { - "pk": 17401, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ECHEVANNES", - "center": "POINT (812440.2492160255787894 2286846.1995870536193252)", - "surface": 11460000, - "canton": null, - "numero_insee": "21240" - } - }, - { - "pk": 9920, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ECHEVRONNE", - "center": "POINT (789545.6741527975536883 2237210.2959520034492016)", - "surface": 8620000, - "canton": null, - "numero_insee": "21241" - } - }, - { - "pk": 3897, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ECHIGEY", - "center": "POINT (816893.6452566890511662 2245951.1895917817018926)", - "surface": 5410000, - "canton": null, - "numero_insee": "21242" - } - }, - { - "pk": 36894, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ECUTIGNY", - "center": "POINT (773559.1356429726583883 2234071.3692875257693231)", - "surface": 5650000, - "canton": null, - "numero_insee": "21243" - } - }, - { - "pk": 31803, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "EGUILLY", - "center": "POINT (763547.8890659001190215 2257905.7383020943962038)", - "surface": 5680000, - "canton": null, - "numero_insee": "21244" - } - }, - { - "pk": 5652, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "EPAGNY", - "center": "POINT (804526.9206775783095509 2275969.8729858058504760)", - "surface": 12210000, - "canton": null, - "numero_insee": "21245" - } - }, - { - "pk": 24606, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "EPERNAY-SOUS-GEVREY", - "center": "POINT (804590.3795966298785061 2245145.3355341167189181)", - "surface": 5450000, - "canton": null, - "numero_insee": "21246" - } - }, - { - "pk": 27898, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "EPOISSES", - "center": "POINT (738142.0210391008295119 2279707.2533685988746583)", - "surface": 21700000, - "canton": null, - "numero_insee": "21247" - } - }, - { - "pk": 28354, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ERINGES", - "center": "POINT (760173.6561496487120166 2289802.5977568826638162)", - "surface": 5990000, - "canton": null, - "numero_insee": "21248" - } - }, - { - "pk": 4237, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ESBARRES", - "center": "POINT (817176.9057337547419593 2236245.5658558225259185)", - "surface": 15870000, - "canton": null, - "numero_insee": "21249" - } - }, - { - "pk": 20364, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ESSEY", - "center": "POINT (765538.8462205167161301 2247414.1015132912434638)", - "surface": 12660000, - "canton": null, - "numero_insee": "21251" - } - }, - { - "pk": 11279, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ETAIS", - "center": "POINT (757865.5409541828557849 2302292.7545293238945305)", - "surface": 14120000, - "canton": null, - "numero_insee": "21252" - } - }, - { - "pk": 20151, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ETALANTE", - "center": "POINT (782547.0217009354382753 2294997.3239293228834867)", - "surface": 39200000, - "canton": null, - "numero_insee": "21253" - } - }, - { - "pk": 32668, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "L'ETANG-VERGY", - "center": "POINT (792376.0641458295285702 2245641.4322780258953571)", - "surface": 2600000, - "canton": null, - "numero_insee": "21254" - } - }, - { - "pk": 10759, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ETAULES", - "center": "POINT (797162.5807922448730096 2271103.0498369522392750)", - "surface": 16780000, - "canton": null, - "numero_insee": "21255" - } - }, - { - "pk": 37390, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ETEVAUX", - "center": "POINT (825559.6408820273354650 2262438.8590401499532163)", - "surface": 8670000, - "canton": null, - "numero_insee": "21256" - } - }, - { - "pk": 32815, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ETORMAY", - "center": "POINT (768769.5901774815283716 2291076.7988310684449971)", - "surface": 12630000, - "canton": null, - "numero_insee": "21257" - } - }, - { - "pk": 28353, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ETROCHEY", - "center": "POINT (763190.3598647873150185 2323354.3350707553327084)", - "surface": 3190000, - "canton": null, - "numero_insee": "21258" - } - }, - { - "pk": 26042, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FAIN-LES-MONTBARD", - "center": "POINT (755343.7970899799838662 2292863.9094614530913532)", - "surface": 7570000, - "canton": null, - "numero_insee": "21259" - } - }, - { - "pk": 32762, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FAIN-LES-MOUTIERS", - "center": "POINT (740966.6870067048585042 2288838.4952091220766306)", - "surface": 9770000, - "canton": null, - "numero_insee": "21260" - } - }, - { - "pk": 12550, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FAUVERNEY", - "center": "POINT (812810.9811178203672171 2255223.8897716873325408)", - "surface": 8690000, - "canton": null, - "numero_insee": "21261" - } - }, - { - "pk": 7964, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FAVEROLLES-LES-LUCEY", - "center": "POINT (789363.1142176933353767 2317172.7256028889678419)", - "surface": 10140000, - "canton": null, - "numero_insee": "21262" - } - }, - { - "pk": 26101, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FENAY", - "center": "POINT (805624.4453419451601803 2252960.6005516629666090)", - "surface": 10490000, - "canton": null, - "numero_insee": "21263" - } - }, - { - "pk": 11749, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LE FETE", - "center": "POINT (764562.8250780227826908 2244503.3935674927197397)", - "surface": 3120000, - "canton": null, - "numero_insee": "21264" - } - }, - { - "pk": 12648, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FIXIN", - "center": "POINT (799017.8046040015760809 2253104.2750882846303284)", - "surface": 10110000, - "canton": null, - "numero_insee": "21265" - } - }, - { - "pk": 25672, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLACEY", - "center": "POINT (810947.0022186234127730 2274223.3523324867710471)", - "surface": 6770000, - "canton": null, - "numero_insee": "21266" - } - }, - { - "pk": 22849, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLAGEY-ECHEZEAUX", - "center": "POINT (800502.6916723944013938 2243308.8959324019961059)", - "surface": 8010000, - "canton": null, - "numero_insee": "21267" - } - }, - { - "pk": 34353, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLAGEY-LES-AUXONNE", - "center": "POINT (831846.0426972248824313 2241275.3152400008402765)", - "surface": 7980000, - "canton": null, - "numero_insee": "21268" - } - }, - { - "pk": 19041, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLAMMERANS", - "center": "POINT (834953.2037934539839625 2252411.1245072945021093)", - "surface": 16720000, - "canton": null, - "numero_insee": "21269" - } - }, - { - "pk": 13104, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLAVIGNEROT", - "center": "POINT (795187.6028289851965383 2256274.1601828709244728)", - "surface": 6290000, - "canton": null, - "numero_insee": "21270" - } - }, - { - "pk": 18829, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLAVIGNY-SUR-OZERAIN", - "center": "POINT (764351.6427270059939474 2281031.2096381201408803)", - "surface": 27810000, - "canton": null, - "numero_insee": "21271" - } - }, - { - "pk": 18070, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLEE", - "center": "POINT (750808.2236395673826337 2273109.6302798762917519)", - "surface": 11750000, - "canton": null, - "numero_insee": "21272" - } - }, - { - "pk": 26523, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FLEUREY-SUR-OUCHE", - "center": "POINT (791064.0360089300666004 2258640.8901562760584056)", - "surface": 30170000, - "canton": null, - "numero_insee": "21273" - } - }, - { - "pk": 15480, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FOISSY", - "center": "POINT (768017.4179698739899322 2238427.7839696262963116)", - "surface": 15190000, - "canton": null, - "numero_insee": "21274" - } - }, - { - "pk": 38018, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FONCEGRIVE", - "center": "POINT (810873.2237153369933367 2294538.8793641775846481)", - "surface": 10200000, - "canton": null, - "numero_insee": "21275" - } - }, - { - "pk": 37028, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FONTAINES-EN-DUESMOIS", - "center": "POINT (765119.2502375066978857 2296650.0924903228878975)", - "surface": 17990000, - "canton": null, - "numero_insee": "21276" - } - }, - { - "pk": 17107, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FONTAINE-FRANCAISE", - "center": "POINT (827860.7860057977959514 2285877.4044234198518097)", - "surface": 30470000, - "canton": null, - "numero_insee": "21277" - } - }, - { - "pk": 9157, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FONTAINE-LES-DIJON", - "center": "POINT (803025.8783312438754365 2264247.5959247825667262)", - "surface": 4450000, - "canton": null, - "numero_insee": "21278" - } - }, - { - "pk": 27701, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FONTAINES-LES-SECHES", - "center": "POINT (751483.5675832285778597 2311345.4839097964577377)", - "surface": 13640000, - "canton": null, - "numero_insee": "21279" - } - }, - { - "pk": 4908, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FONTANGY", - "center": "POINT (753699.7210373308043927 2262625.7677349252626300)", - "surface": 17760000, - "canton": null, - "numero_insee": "21280" - } - }, - { - "pk": 27082, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FONTENELLE", - "center": "POINT (827789.8763523286907002 2282474.0877837343141437)", - "surface": 10150000, - "canton": null, - "numero_insee": "21281" - } - }, - { - "pk": 8322, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FORLEANS", - "center": "POINT (740873.7620073982980102 2276227.6827903012745082)", - "surface": 7180000, - "canton": null, - "numero_insee": "21282" - } - }, - { - "pk": 34690, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FRAIGNOT-ET-VESVROTTE", - "center": "POINT (795434.8509427562821656 2297609.3652179739437997)", - "surface": 11810000, - "canton": null, - "numero_insee": "21283" - } - }, - { - "pk": 23123, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FRANCHEVILLE", - "center": "POINT (791713.3146984984632581 2276360.7467591068707407)", - "surface": 32220000, - "canton": null, - "numero_insee": "21284" - } - }, - { - "pk": 14179, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FRANXAULT", - "center": "POINT (822321.0705789698986337 2231585.6908141840249300)", - "surface": 12520000, - "canton": null, - "numero_insee": "21285" - } - }, - { - "pk": 22108, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FRENOIS", - "center": "POINT (792254.7604272026801482 2283270.8849847367964685)", - "surface": 22070000, - "canton": null, - "numero_insee": "21286" - } - }, - { - "pk": 27906, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FRESNES", - "center": "POINT (757952.4748083674348891 2292085.4939592122100294)", - "surface": 13290000, - "canton": null, - "numero_insee": "21287" - } - }, - { - "pk": 20827, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FROLOIS", - "center": "POINT (773937.2601520069874823 2283614.9208834934979677)", - "surface": 34820000, - "canton": null, - "numero_insee": "21288" - } - }, - { - "pk": 30314, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "FUSSEY", - "center": "POINT (788024.8812255250522867 2239499.2203267714940012)", - "surface": 7740000, - "canton": null, - "numero_insee": "21289" - } - }, - { - "pk": 19431, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GEMEAUX", - "center": "POINT (811206.1133836065419018 2279029.4194812821224332)", - "surface": 19320000, - "canton": null, - "numero_insee": "21290" - } - }, - { - "pk": 5379, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GENAY", - "center": "POINT (746626.9006459391675889 2282281.4042949243448675)", - "surface": 13820000, - "canton": null, - "numero_insee": "21291" - } - }, - { - "pk": 11722, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GENLIS", - "center": "POINT (818234.7154004764743149 2252968.4352891328744590)", - "surface": 12130000, - "canton": null, - "numero_insee": "21292" - } - }, - { - "pk": 27390, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GERGUEIL", - "center": "POINT (787421.1062623006291687 2251604.0521073029376566)", - "surface": 9830000, - "canton": null, - "numero_insee": "21293" - } - }, - { - "pk": 18618, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GERLAND", - "center": "POINT (803859.0948465502588078 2237032.3640231224708259)", - "surface": 20800000, - "canton": null, - "numero_insee": "21294" - } - }, - { - "pk": 23684, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GEVREY-CHAMBERTIN", - "center": "POINT (800345.2966023664921522 2250013.0774569492787123)", - "surface": 24990000, - "canton": null, - "numero_insee": "21295" - } - }, - { - "pk": 5034, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GEVROLLES", - "center": "POINT (780103.8950123643735424 2335007.3154116449877620)", - "surface": 27130000, - "canton": null, - "numero_insee": "21296" - } - }, - { - "pk": 30198, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GILLY-LES-CITEAUX", - "center": "POINT (801585.5537401591427624 2245419.8896745089441538)", - "surface": 11110000, - "canton": null, - "numero_insee": "21297" - } - }, - { - "pk": 33142, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GISSEY-LE-VIEIL", - "center": "POINT (762427.4626720061060041 2260198.0649555334821343)", - "surface": 8430000, - "canton": null, - "numero_insee": "21298" - } - }, - { - "pk": 37861, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GISSEY-SOUS-FLAVIGNY", - "center": "POINT (769345.8804942730348557 2282174.6546046957373619)", - "surface": 10250000, - "canton": null, - "numero_insee": "21299" - } - }, - { - "pk": 19440, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GLANON", - "center": "POINT (810422.2566960757831112 2230282.8235661429353058)", - "surface": 3660000, - "canton": null, - "numero_insee": "21301" - } - }, - { - "pk": 17120, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GOMMEVILLE", - "center": "POINT (760325.3372353592421860 2330735.5560915279202163)", - "surface": 9960000, - "canton": null, - "numero_insee": "21302" - } - }, - { - "pk": 29235, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LES GOULLES", - "center": "POINT (792116.3294111688155681 2322900.6210358371026814)", - "surface": 8830000, - "canton": null, - "numero_insee": "21303" - } - }, - { - "pk": 19339, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GRANCEY-LE-CHATEAU-NEUVELLE", - "center": "POINT (801714.5212566209957004 2300565.3218746902421117)", - "surface": 27660000, - "canton": null, - "numero_insee": "21304" - } - }, - { - "pk": 36870, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GRANCEY-SUR-OURCE", - "center": "POINT (767188.2671648758696392 2335697.7492245198227465)", - "surface": 24240000, - "canton": null, - "numero_insee": "21305" - } - }, - { - "pk": 24680, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GRENANT-LES-SOMBERNON", - "center": "POINT (779687.1695542689412832 2254840.7400104198604822)", - "surface": 7110000, - "canton": null, - "numero_insee": "21306" - } - }, - { - "pk": 37671, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GRESIGNY-SAINTE-REINE", - "center": "POINT (762410.1927219633944333 2285718.4048953452147543)", - "surface": 7040000, - "canton": null, - "numero_insee": "21307" - } - }, - { - "pk": 21023, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GRISELLES", - "center": "POINT (751696.8906732916366309 2321555.1453503565862775)", - "surface": 12390000, - "canton": null, - "numero_insee": "21309" - } - }, - { - "pk": 10937, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GROSBOIS-EN-MONTAGNE", - "center": "POINT (771034.6860114636365324 2260171.3428299357183278)", - "surface": 14030000, - "canton": null, - "numero_insee": "21310" - } - }, - { - "pk": 34352, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GROSBOIS-LES-TICHEY", - "center": "POINT (820456.4717489482136443 2227266.1139497905969620)", - "surface": 4900000, - "canton": null, - "numero_insee": "21311" - } - }, - { - "pk": 7357, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GURGY-LA-VILLE", - "center": "POINT (794642.0056921471841633 2320120.0573972822166979)", - "surface": 12720000, - "canton": null, - "numero_insee": "21312" - } - }, - { - "pk": 31491, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "GURGY-LE-CHATEAU", - "center": "POINT (793963.7534364098683000 2317512.2629800769500434)", - "surface": 17720000, - "canton": null, - "numero_insee": "21313" - } - }, - { - "pk": 4293, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "HAUTEROCHE", - "center": "POINT (768273.2360115027986467 2278862.8778522810898721)", - "surface": 13320000, - "canton": null, - "numero_insee": "21314" - } - }, - { - "pk": 12957, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "HAUTEVILLE-LES-DIJON", - "center": "POINT (799596.8482981070410460 2267320.7893200488761067)", - "surface": 8910000, - "canton": null, - "numero_insee": "21315" - } - }, - { - "pk": 13317, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "HEUILLEY-SUR-SAONE", - "center": "POINT (836353.0424743869807571 2264232.7717845221050084)", - "surface": 9640000, - "canton": null, - "numero_insee": "21316" - } - }, - { - "pk": 20157, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "IS-SUR-TILLE", - "center": "POINT (808157.6986530498834327 2284407.6438974896445870)", - "surface": 22510000, - "canton": null, - "numero_insee": "21317" - } - }, - { - "pk": 19170, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "IVRY-EN-MONTAGNE", - "center": "POINT (774713.7435654280707240 2227775.9470771146006882)", - "surface": 11110000, - "canton": null, - "numero_insee": "21318" - } - }, - { - "pk": 35747, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "IZIER", - "center": "POINT (816195.5234693865058944 2257354.5788824511691928)", - "surface": 7490000, - "canton": null, - "numero_insee": "21320" - } - }, - { - "pk": 35628, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JAILLY-LES-MOULINS", - "center": "POINT (770098.4332879910944030 2276076.1978584369644523)", - "surface": 9250000, - "canton": null, - "numero_insee": "21321" - } - }, - { - "pk": 7992, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JALLANGES", - "center": "POINT (815677.6326270520221442 2224322.7574415844865143)", - "surface": 7400000, - "canton": null, - "numero_insee": "21322" - } - }, - { - "pk": 14875, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JANCIGNY", - "center": "POINT (832805.8365051546134055 2269406.5660833306610584)", - "surface": 6930000, - "canton": null, - "numero_insee": "21323" - } - }, - { - "pk": 5226, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JEUX-LES-BARD", - "center": "POINT (744418.4996248950483277 2283063.2539164023473859)", - "surface": 3240000, - "canton": null, - "numero_insee": "21324" - } - }, - { - "pk": 13715, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JOURS-LES-BAIGNEUX", - "center": "POINT (770344.2859259101096541 2294192.6681414768099785)", - "surface": 11310000, - "canton": null, - "numero_insee": "21326" - } - }, - { - "pk": 16687, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JOURS-EN-VAUX", - "center": "POINT (771200.8239962378283963 2228946.9978578845039010)", - "surface": 8820000, - "canton": null, - "numero_insee": "21327" - } - }, - { - "pk": 4409, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JUILLENAY", - "center": "POINT (746180.5597005148883909 2264163.0764064597897232)", - "surface": 5390000, - "canton": null, - "numero_insee": "21328" - } - }, - { - "pk": 10628, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "JUILLY", - "center": "POINT (755463.9407183395233005 2278753.7479828340001404)", - "surface": 4520000, - "canton": null, - "numero_insee": "21329" - } - }, - { - "pk": 25732, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LABERGEMENT-FOIGNEY", - "center": "POINT (820219.9255804499844089 2254886.9935453492216766)", - "surface": 7660000, - "canton": null, - "numero_insee": "21330" - } - }, - { - "pk": 13723, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LABERGEMENT-LES-AUXONNE", - "center": "POINT (830518.4659936813404784 2244366.5043457704596221)", - "surface": 5970000, - "canton": null, - "numero_insee": "21331" - } - }, - { - "pk": 16207, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LABERGEMENT-LES-SEURRE", - "center": "POINT (809163.2144967900821939 2225367.9367981688119471)", - "surface": 29020000, - "canton": null, - "numero_insee": "21332" - } - }, - { - "pk": 36909, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LABRUYERE", - "center": "POINT (813125.1777257994981483 2230205.8690105089917779)", - "surface": 7490000, - "canton": null, - "numero_insee": "21333" - } - }, - { - "pk": 12596, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LACANCHE", - "center": "POINT (768464.6375523279421031 2232927.0172432675026357)", - "surface": 7280000, - "canton": null, - "numero_insee": "21334" - } - }, - { - "pk": 23229, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LACOUR-D'ARCENAY", - "center": "POINT (743380.1972571475198492 2263939.0944862221367657)", - "surface": 20460000, - "canton": null, - "numero_insee": "21335" - } - }, - { - "pk": 15033, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LAIGNES", - "center": "POINT (752044.8025813596323133 2315953.8096706508658826)", - "surface": 40340000, - "canton": null, - "numero_insee": "21336" - } - }, - { - "pk": 15388, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LAMARCHE-SUR-SAONE", - "center": "POINT (829409.6317552287364379 2256967.3672628304921091)", - "surface": 33750000, - "canton": null, - "numero_insee": "21337" - } - }, - { - "pk": 20884, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LAMARGELLE", - "center": "POINT (788253.5770399889443070 2283036.5485125780105591)", - "surface": 25820000, - "canton": null, - "numero_insee": "21338" - } - }, - { - "pk": 14260, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LANTENAY", - "center": "POINT (791023.0047017729375511 2263444.4444547840394080)", - "surface": 17330000, - "canton": null, - "numero_insee": "21339" - } - }, - { - "pk": 31823, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LANTHES", - "center": "POINT (817964.8359338461887091 2226043.7694381861947477)", - "surface": 9950000, - "canton": null, - "numero_insee": "21340" - } - }, - { - "pk": 35398, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LANTILLY", - "center": "POINT (753614.0731001355452463 2284442.5382971377111971)", - "surface": 9170000, - "canton": null, - "numero_insee": "21341" - } - }, - { - "pk": 33168, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LAPERRIERE-SUR-SAONE", - "center": "POINT (828268.1912587409606203 2238342.2370997848920524)", - "surface": 11020000, - "canton": null, - "numero_insee": "21342" - } - }, - { - "pk": 22923, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LARREY", - "center": "POINT (756079.4859476480633020 2323994.2939772242680192)", - "surface": 18670000, - "canton": null, - "numero_insee": "21343" - } - }, - { - "pk": 24857, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LECHATELET", - "center": "POINT (813010.5413452746579424 2231906.3115272996947169)", - "surface": 3770000, - "canton": null, - "numero_insee": "21344" - } - }, - { - "pk": 18872, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LERY", - "center": "POINT (788819.8234882126562297 2287044.5635604346171021)", - "surface": 14820000, - "canton": null, - "numero_insee": "21345" - } - }, - { - "pk": 21446, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LEUGLAY", - "center": "POINT (785874.3481956252362579 2315541.6973408753983676)", - "surface": 24690000, - "canton": null, - "numero_insee": "21346" - } - }, - { - "pk": 32760, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LEVERNOIS", - "center": "POINT (792755.7436313251964748 2224627.1699792258441448)", - "surface": 3790000, - "canton": null, - "numero_insee": "21347" - } - }, - { - "pk": 10275, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LICEY-SUR-VINGEANNE", - "center": "POINT (828705.9686001518275589 2280680.5021169753745198)", - "surface": 3410000, - "canton": null, - "numero_insee": "21348" - } - }, - { - "pk": 20962, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LIERNAIS", - "center": "POINT (747815.3436392626026645 2248464.1740569393150508)", - "surface": 28360000, - "canton": null, - "numero_insee": "21349" - } - }, - { - "pk": 33774, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LIGNEROLLES", - "center": "POINT (790693.1328871308360249 2325490.4487214903347194)", - "surface": 13560000, - "canton": null, - "numero_insee": "21350" - } - }, - { - "pk": 29707, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LONGCHAMP", - "center": "POINT (823817.4664191957563162 2255518.3005068078637123)", - "surface": 16310000, - "canton": null, - "numero_insee": "21351" - } - }, - { - "pk": 11330, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LONGEAULT", - "center": "POINT (820554.4329768999014050 2250886.5753183206543326)", - "surface": 1250000, - "canton": null, - "numero_insee": "21352" - } - }, - { - "pk": 32691, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LONGECOURT-EN-PLAINE", - "center": "POINT (812772.5734731470001861 2248017.6463000988587737)", - "surface": 9990000, - "canton": null, - "numero_insee": "21353" - } - }, - { - "pk": 6251, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LONGECOURT-LES-CULETRE", - "center": "POINT (767883.2225000334437937 2242429.9553634547628462)", - "surface": 4430000, - "canton": null, - "numero_insee": "21354" - } - }, - { - "pk": 20312, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LONGVIC", - "center": "POINT (805385.7794174231821671 2257462.2423886554315686)", - "surface": 10400000, - "canton": null, - "numero_insee": "21355" - } - }, - { - "pk": 21306, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LOSNE", - "center": "POINT (823092.5352116235299036 2234995.1413315990939736)", - "surface": 22720000, - "canton": null, - "numero_insee": "21356" - } - }, - { - "pk": 12937, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LOUESME", - "center": "POINT (781500.4509448388125747 2323810.7257290752604604)", - "surface": 19110000, - "canton": null, - "numero_insee": "21357" - } - }, - { - "pk": 19426, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LUCENAY-LE-DUC", - "center": "POINT (762542.9777603283291683 2293625.7804147172719240)", - "surface": 28940000, - "canton": null, - "numero_insee": "21358" - } - }, - { - "pk": 5353, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LUCEY", - "center": "POINT (788938.9024234063690528 2319971.2540856362320483)", - "surface": 18660000, - "canton": null, - "numero_insee": "21359" - } - }, - { - "pk": 24730, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LUSIGNY-SUR-OUCHE", - "center": "POINT (778063.4143340619048104 2234009.7049551140516996)", - "surface": 9880000, - "canton": null, - "numero_insee": "21360" - } - }, - { - "pk": 35883, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LUX", - "center": "POINT (816998.3331049549160525 2280480.1219106218777597)", - "surface": 23100000, - "canton": null, - "numero_insee": "21361" - } - }, - { - "pk": 11463, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MACONGE", - "center": "POINT (769623.1548381026368588 2249650.7232595570385456)", - "surface": 6370000, - "canton": null, - "numero_insee": "21362" - } - }, - { - "pk": 19810, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNIEN", - "center": "POINT (759026.7933484480017796 2236449.6046267691999674)", - "surface": 24400000, - "canton": null, - "numero_insee": "21363" - } - }, - { - "pk": 34009, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNY-LAMBERT", - "center": "POINT (768892.9498759547714144 2300084.9241692894138396)", - "surface": 12880000, - "canton": null, - "numero_insee": "21364" - } - }, - { - "pk": 36122, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNY-LA-VILLE", - "center": "POINT (757674.9130124271614477 2277671.6963111809454858)", - "surface": 3700000, - "canton": null, - "numero_insee": "21365" - } - }, - { - "pk": 35511, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNY-LES-AUBIGNY", - "center": "POINT (814855.4551286841742694 2238527.6078767413273454)", - "surface": 7000000, - "canton": null, - "numero_insee": "21366" - } - }, - { - "pk": 28885, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNY-MONTARLOT", - "center": "POINT (827732.3806513822637498 2254150.6987056848593056)", - "surface": 5950000, - "canton": null, - "numero_insee": "21367" - } - }, - { - "pk": 9145, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNY-LES-VILLERS", - "center": "POINT (792560.7743060957873240 2235734.8000001641921699)", - "surface": 3810000, - "canton": null, - "numero_insee": "21368" - } - }, - { - "pk": 33288, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNY-SAINT-MEDARD", - "center": "POINT (819701.3543819789774716 2268693.7834898768924177)", - "surface": 10900000, - "canton": null, - "numero_insee": "21369" - } - }, - { - "pk": 27269, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAGNY-SUR-TILLE", - "center": "POINT (814501.1120904093841091 2256539.4197363983839750)", - "surface": 10520000, - "canton": null, - "numero_insee": "21370" - } - }, - { - "pk": 15012, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LES MAILLYS", - "center": "POINT (826829.3966240318259224 2242733.5617503616958857)", - "surface": 30040000, - "canton": null, - "numero_insee": "21371" - } - }, - { - "pk": 10499, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAISEY-LE-DUC", - "center": "POINT (775038.6410219079116359 2318751.7545534302480519)", - "surface": 12520000, - "canton": null, - "numero_insee": "21372" - } - }, - { - "pk": 6857, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MALAIN", - "center": "POINT (785641.2308600889518857 2260796.3725603832863271)", - "surface": 11210000, - "canton": null, - "numero_insee": "21373" - } - }, - { - "pk": 14471, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MALIGNY", - "center": "POINT (764553.1390083681326360 2233894.5166171826422215)", - "surface": 16740000, - "canton": null, - "numero_insee": "21374" - } - }, - { - "pk": 17830, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MANLAY", - "center": "POINT (751411.6560127498814836 2237485.6865749112330377)", - "surface": 19080000, - "canton": null, - "numero_insee": "21375" - } - }, - { - "pk": 7641, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARANDEUIL", - "center": "POINT (826939.2366573873441666 2264952.7126119304448366)", - "surface": 4530000, - "canton": null, - "numero_insee": "21376" - } - }, - { - "pk": 5705, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARCELLOIS", - "center": "POINT (772107.3403404363198206 2263483.1697627441026270)", - "surface": 3710000, - "canton": null, - "numero_insee": "21377" - } - }, - { - "pk": 27097, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARCENAY", - "center": "POINT (754712.6017818946857005 2319979.5947067518718541)", - "surface": 9450000, - "canton": null, - "numero_insee": "21378" - } - }, - { - "pk": 21515, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARCHESEUIL", - "center": "POINT (754290.0003655829932541 2240312.5093644685111940)", - "surface": 17350000, - "canton": null, - "numero_insee": "21379" - } - }, - { - "pk": 9642, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARCIGNY-SOUS-THIL", - "center": "POINT (754556.9342412836849689 2267737.1926082279533148)", - "surface": 5090000, - "canton": null, - "numero_insee": "21380" - } - }, - { - "pk": 6650, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARCILLY-ET-DRACY", - "center": "POINT (762948.6110507951816544 2269510.0355532933026552)", - "surface": 8670000, - "canton": null, - "numero_insee": "21381" - } - }, - { - "pk": 33316, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARCILLY-SUR-TILLE", - "center": "POINT (810272.0614779433235526 2282924.5408276715315878)", - "surface": 7250000, - "canton": null, - "numero_insee": "21383" - } - }, - { - "pk": 7156, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAREY-LES-FUSSEY", - "center": "POINT (791533.5148875610902905 2238828.6040594712831080)", - "surface": 3970000, - "canton": null, - "numero_insee": "21384" - } - }, - { - "pk": 31504, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAREY-SUR-TILLE", - "center": "POINT (806392.2653491999953985 2291898.4872614704072475)", - "surface": 30150000, - "canton": null, - "numero_insee": "21385" - } - }, - { - "pk": 17554, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARIGNY-LE-CAHOUET", - "center": "POINT (759599.3090686695650220 2274985.9245545300655067)", - "surface": 19250000, - "canton": null, - "numero_insee": "21386" - } - }, - { - "pk": 26326, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARIGNY-LES-REULLEE", - "center": "POINT (799246.1985910905059427 2226384.0598541726358235)", - "surface": 9970000, - "canton": null, - "numero_insee": "21387" - } - }, - { - "pk": 24273, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARLIENS", - "center": "POINT (815156.3858092159498483 2250139.7794698127545416)", - "surface": 4430000, - "canton": null, - "numero_insee": "21388" - } - }, - { - "pk": 5180, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARMAGNE", - "center": "POINT (753622.1344403615221381 2295251.1392426779493690)", - "surface": 12910000, - "canton": null, - "numero_insee": "21389" - } - }, - { - "pk": 35245, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARSANNAY-LA-COTE", - "center": "POINT (800288.8319721000734717 2256618.0052759381942451)", - "surface": 12800000, - "canton": null, - "numero_insee": "21390" - } - }, - { - "pk": 35666, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARSANNAY-LE-BOIS", - "center": "POINT (808039.7465933323837817 2274798.9584906841628253)", - "surface": 12050000, - "canton": null, - "numero_insee": "21391" - } - }, - { - "pk": 27389, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MARTROIS", - "center": "POINT (767044.5170937969814986 2258636.1064104298129678)", - "surface": 7560000, - "canton": null, - "numero_insee": "21392" - } - }, - { - "pk": 22854, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MASSINGY", - "center": "POINT (769081.6410567514831200 2324905.6967776883393526)", - "surface": 9450000, - "canton": null, - "numero_insee": "21393" - } - }, - { - "pk": 37669, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MASSINGY-LES-SEMUR", - "center": "POINT (755739.4475922542624176 2281658.4068811871111393)", - "surface": 8420000, - "canton": null, - "numero_insee": "21394" - } - }, - { - "pk": 30055, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MASSINGY-LES-VITTEAUX", - "center": "POINT (770062.3507090875646099 2268569.8593146051280200)", - "surface": 9380000, - "canton": null, - "numero_insee": "21395" - } - }, - { - "pk": 10430, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAVILLY-MANDELOT", - "center": "POINT (781785.8740538356360048 2231739.5468039470724761)", - "surface": 9770000, - "canton": null, - "numero_insee": "21397" - } - }, - { - "pk": 32328, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MAXILLY-SUR-SAONE", - "center": "POINT (832855.6048651947639883 2263602.2910715029574931)", - "surface": 7850000, - "canton": null, - "numero_insee": "21398" - } - }, - { - "pk": 20230, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MEILLY-SUR-ROUVRES", - "center": "POINT (767840.5726980214240029 2247433.7184116765856743)", - "surface": 15060000, - "canton": null, - "numero_insee": "21399" - } - }, - { - "pk": 6662, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LE MEIX", - "center": "POINT (795987.3778911897679791 2291509.2831959999166429)", - "surface": 10690000, - "canton": null, - "numero_insee": "21400" - } - }, - { - "pk": 8501, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MELOISEY", - "center": "POINT (781110.9598936359398067 2228731.2760880887508392)", - "surface": 12190000, - "canton": null, - "numero_insee": "21401" - } - }, - { - "pk": 13043, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MENESBLE", - "center": "POINT (792210.3799361294368282 2311892.9591780323535204)", - "surface": 5570000, - "canton": null, - "numero_insee": "21402" - } - }, - { - "pk": 17865, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MENESSAIRE", - "center": "POINT (737590.9864005234558135 2238569.1330807339400053)", - "surface": 15080000, - "canton": null, - "numero_insee": "21403" - } - }, - { - "pk": 36350, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MENETREUX-LE-PITOIS", - "center": "POINT (759700.5747806718572974 2286596.0351858097128570)", - "surface": 6630000, - "canton": null, - "numero_insee": "21404" - } - }, - { - "pk": 17447, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MERCEUIL", - "center": "POINT (791092.9008821037132293 2220109.1711127096787095)", - "surface": 13780000, - "canton": null, - "numero_insee": "21405" - } - }, - { - "pk": 30280, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MESMONT", - "center": "POINT (781947.8860806154552847 2259663.9500523004680872)", - "surface": 6340000, - "canton": null, - "numero_insee": "21406" - } - }, - { - "pk": 32025, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MESSANGES", - "center": "POINT (791996.2798987663118169 2243236.2046704287640750)", - "surface": 3030000, - "canton": null, - "numero_insee": "21407" - } - }, - { - "pk": 22099, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MESSIGNY-ET-VANTOUX", - "center": "POINT (800956.8092349176295102 2272136.2897385698743165)", - "surface": 33950000, - "canton": null, - "numero_insee": "21408" - } - }, - { - "pk": 28440, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MEUILLEY", - "center": "POINT (792716.4709454631665722 2240940.4519368745386600)", - "surface": 6200000, - "canton": null, - "numero_insee": "21409" - } - }, - { - "pk": 12079, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MEULSON", - "center": "POINT (777485.3922474458813667 2301759.4590885560028255)", - "surface": 7810000, - "canton": null, - "numero_insee": "21410" - } - }, - { - "pk": 14452, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MEURSANGES", - "center": "POINT (798171.0136061867233366 2223372.3451977577060461)", - "surface": 14320000, - "canton": null, - "numero_insee": "21411" - } - }, - { - "pk": 23408, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MEURSAULT", - "center": "POINT (785273.8994805074762553 2221760.9198826267383993)", - "surface": 16110000, - "canton": null, - "numero_insee": "21412" - } - }, - { - "pk": 3396, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MILLERY", - "center": "POINT (749138.0763787243049592 2281201.8954416355118155)", - "surface": 20840000, - "canton": null, - "numero_insee": "21413" - } - }, - { - "pk": 28350, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MIMEURE", - "center": "POINT (763588.5047080726362765 2241392.5288776909001172)", - "surface": 13870000, - "canton": null, - "numero_insee": "21414" - } - }, - { - "pk": 17629, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MINOT", - "center": "POINT (790319.2520182648440823 2298966.7549622231163085)", - "surface": 36160000, - "canton": null, - "numero_insee": "21415" - } - }, - { - "pk": 10912, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MIREBEAU-SUR-BEZE", - "center": "POINT (825284.0335273826494813 2271243.6265100762248039)", - "surface": 22230000, - "canton": null, - "numero_insee": "21416" - } - }, - { - "pk": 11462, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MISSERY", - "center": "POINT (754032.3164777829078957 2258825.5108599402010441)", - "surface": 9720000, - "canton": null, - "numero_insee": "21417" - } - }, - { - "pk": 18732, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOITRON", - "center": "POINT (785498.7507221923442557 2300927.1524180490523577)", - "surface": 15400000, - "canton": null, - "numero_insee": "21418" - } - }, - { - "pk": 23527, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOLESME", - "center": "POINT (752730.3504321498330683 2329469.9635951030068099)", - "surface": 28400000, - "canton": null, - "numero_insee": "21419" - } - }, - { - "pk": 3307, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOLINOT", - "center": "POINT (770526.7369605590356514 2225838.6501641431823373)", - "surface": 12690000, - "canton": null, - "numero_insee": "21420" - } - }, - { - "pk": 3953, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOLOY", - "center": "POINT (794538.4660102505004033 2285392.0680055879056454)", - "surface": 19210000, - "canton": null, - "numero_insee": "21421" - } - }, - { - "pk": 26146, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOLPHEY", - "center": "POINT (741301.6242694535758346 2261219.2284558294340968)", - "surface": 7570000, - "canton": null, - "numero_insee": "21422" - } - }, - { - "pk": 8124, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTAGNY-LES-BEAUNE", - "center": "POINT (791463.2922408923041075 2223615.2880091033875942)", - "surface": 6090000, - "canton": null, - "numero_insee": "21423" - } - }, - { - "pk": 36231, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTAGNY-LES-SEURRE", - "center": "POINT (821444.3822702296311036 2228775.8345821071416140)", - "surface": 7120000, - "canton": null, - "numero_insee": "21424" - } - }, - { - "pk": 18601, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTBARD", - "center": "POINT (751203.3872692688601092 2297232.1195399309508502)", - "surface": 46280000, - "canton": null, - "numero_insee": "21425" - } - }, - { - "pk": 4593, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTBERTHAULT", - "center": "POINT (737281.3493106570094824 2274996.1799348336644471)", - "surface": 12160000, - "canton": null, - "numero_insee": "21426" - } - }, - { - "pk": 16081, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTCEAU-ET-ECHARNANT", - "center": "POINT (776882.9891228114720434 2231597.6311713685281575)", - "surface": 18630000, - "canton": null, - "numero_insee": "21427" - } - }, - { - "pk": 7726, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTHELIE", - "center": "POINT (784345.8701549943070859 2224955.6939603290520608)", - "surface": 3170000, - "canton": null, - "numero_insee": "21428" - } - }, - { - "pk": 9206, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTIGNY-MONTFORT", - "center": "POINT (750572.7294570727972314 2289020.2951353425160050)", - "surface": 17160000, - "canton": null, - "numero_insee": "21429" - } - }, - { - "pk": 29913, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTIGNY-SAINT-BARTHELEMY", - "center": "POINT (745224.5635033908765763 2270660.1914069363847375)", - "surface": 6310000, - "canton": null, - "numero_insee": "21430" - } - }, - { - "pk": 6181, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTIGNY-SUR-ARMANCON", - "center": "POINT (753610.2690332498168573 2273133.4811759497970343)", - "surface": 8240000, - "canton": null, - "numero_insee": "21431" - } - }, - { - "pk": 18891, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTIGNY-SUR-AUBE", - "center": "POINT (780638.4012689782539383 2331008.8496284955181181)", - "surface": 19780000, - "canton": null, - "numero_insee": "21432" - } - }, - { - "pk": 21905, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTIGNY-MORNAY-VILLENEUVE-SUR-VINGEANNE", - "center": "POINT (834230.2186420421348885 2290035.2688288399949670)", - "surface": 30910000, - "canton": null, - "numero_insee": "21433" - } - }, - { - "pk": 19388, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTLAY-EN-AUXOIS", - "center": "POINT (745908.4318547544535249 2260858.0847284970805049)", - "surface": 17450000, - "canton": null, - "numero_insee": "21434" - } - }, - { - "pk": 37513, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTLIOT-ET-COURCELLES", - "center": "POINT (766186.4631974485237151 2324080.4046550416387618)", - "surface": 8780000, - "canton": null, - "numero_insee": "21435" - } - }, - { - "pk": 12460, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTMAIN", - "center": "POINT (806831.4878725414164364 2228850.9318997515365481)", - "surface": 8980000, - "canton": null, - "numero_insee": "21436" - } - }, - { - "pk": 27598, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTMANCON", - "center": "POINT (829431.6461143011692911 2266074.9669216265901923)", - "surface": 9020000, - "canton": null, - "numero_insee": "21437" - } - }, - { - "pk": 23560, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTMOYEN", - "center": "POINT (784252.6183218308724463 2306220.6478188210166991)", - "surface": 19310000, - "canton": null, - "numero_insee": "21438" - } - }, - { - "pk": 28209, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTOILLOT", - "center": "POINT (775581.5539539797464386 2255105.9590048776008189)", - "surface": 7670000, - "canton": null, - "numero_insee": "21439" - } - }, - { - "pk": 10951, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONTOT", - "center": "POINT (820320.2019129405962303 2243178.2144518108107150)", - "surface": 7550000, - "canton": null, - "numero_insee": "21440" - } - }, - { - "pk": 18194, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MONT-SAINT-JEAN", - "center": "POINT (756858.2535166474990547 2256047.2885568132624030)", - "surface": 27830000, - "canton": null, - "numero_insee": "21441" - } - }, - { - "pk": 8638, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOREY-SAINT-DENIS", - "center": "POINT (798863.8471191620919853 2247698.5203477931208909)", - "surface": 7810000, - "canton": null, - "numero_insee": "21442" - } - }, - { - "pk": 10750, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOSSON", - "center": "POINT (771265.2386405257275328 2327025.9170822929590940)", - "surface": 7430000, - "canton": null, - "numero_insee": "21444" - } - }, - { - "pk": 9894, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MOUTIERS-SAINT-JEAN", - "center": "POINT (742087.9020227565197274 2286446.1304400386288762)", - "surface": 5040000, - "canton": null, - "numero_insee": "21446" - } - }, - { - "pk": 17833, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MUSIGNY", - "center": "POINT (765678.1512633655220270 2242811.4931197059340775)", - "surface": 6130000, - "canton": null, - "numero_insee": "21447" - } - }, - { - "pk": 18181, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "MUSSY-LA-FOSSE", - "center": "POINT (758736.5052733522607014 2282284.4077086104080081)", - "surface": 4380000, - "canton": null, - "numero_insee": "21448" - } - }, - { - "pk": 16869, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NAN-SOUS-THIL", - "center": "POINT (752665.7604400009149686 2266520.1239019911736250)", - "surface": 11120000, - "canton": null, - "numero_insee": "21449" - } - }, - { - "pk": 35246, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NANTOUX", - "center": "POINT (784112.4016547201899812 2228856.9759945068508387)", - "surface": 6610000, - "canton": null, - "numero_insee": "21450" - } - }, - { - "pk": 3198, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NESLE-ET-MASSOULT", - "center": "POINT (756592.2541865140665323 2310788.5157475504092872)", - "surface": 23700000, - "canton": null, - "numero_insee": "21451" - } - }, - { - "pk": 10040, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NEUILLY-LES-DIJON", - "center": "POINT (809296.3852038943441585 2256594.9598628343082964)", - "surface": 4550000, - "canton": null, - "numero_insee": "21452" - } - }, - { - "pk": 17053, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NOD-SUR-SEINE", - "center": "POINT (769504.7123942510224879 2310498.2351447925902903)", - "surface": 25230000, - "canton": null, - "numero_insee": "21455" - } - }, - { - "pk": 5207, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NOGENT-LES-MONTBARD", - "center": "POINT (752754.7159765465185046 2291340.6842439984902740)", - "surface": 6440000, - "canton": null, - "numero_insee": "21456" - } - }, - { - "pk": 17248, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NOIDAN", - "center": "POINT (756601.0110797053202987 2262750.5505740372464061)", - "surface": 7910000, - "canton": null, - "numero_insee": "21457" - } - }, - { - "pk": 36910, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NOIRON-SOUS-GEVREY", - "center": "POINT (808179.3926505947019905 2246777.3547703041695058)", - "surface": 6600000, - "canton": null, - "numero_insee": "21458" - } - }, - { - "pk": 26256, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NOIRON-SUR-BEZE", - "center": "POINT (823348.3463027189718559 2275230.2619712771847844)", - "surface": 11810000, - "canton": null, - "numero_insee": "21459" - } - }, - { - "pk": 12246, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NOIRON-SUR-SEINE", - "center": "POINT (759341.7006430544424802 2328725.6585299056023359)", - "surface": 11370000, - "canton": null, - "numero_insee": "21460" - } - }, - { - "pk": 5858, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NORGES-LA-VILLE", - "center": "POINT (806170.8880334740970284 2270979.9128545685671270)", - "surface": 10990000, - "canton": null, - "numero_insee": "21462" - } - }, - { - "pk": 29517, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NORMIER", - "center": "POINT (758386.1471474429126829 2264667.2924959333613515)", - "surface": 5110000, - "canton": null, - "numero_insee": "21463" - } - }, - { - "pk": 17247, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "NUITS-SAINT-GEORGES", - "center": "POINT (797213.0312625614460558 2241779.5355633520521224)", - "surface": 20350000, - "canton": null, - "numero_insee": "21464" - } - }, - { - "pk": 13747, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "OBTREE", - "center": "POINT (766452.5503371317172423 2328085.7208402059040964)", - "surface": 5150000, - "canton": null, - "numero_insee": "21465" - } - }, - { - "pk": 18830, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "OIGNY", - "center": "POINT (779589.2869372008135542 2289767.9783497843891382)", - "surface": 14810000, - "canton": null, - "numero_insee": "21466" - } - }, - { - "pk": 33078, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "OISILLY", - "center": "POINT (828171.5785246777813882 2272969.7426806697621942)", - "surface": 5990000, - "canton": null, - "numero_insee": "21467" - } - }, - { - "pk": 12639, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ORAIN", - "center": "POINT (832889.8098053121939301 2294627.4104590439237654)", - "surface": 13550000, - "canton": null, - "numero_insee": "21468" - } - }, - { - "pk": 29862, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ORGEUX", - "center": "POINT (812514.0487598036415875 2266530.5501821413636208)", - "surface": 4760000, - "canton": null, - "numero_insee": "21469" - } - }, - { - "pk": 6994, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ORIGNY", - "center": "POINT (772162.8621254998724908 2303915.7738943686708808)", - "surface": 5210000, - "canton": null, - "numero_insee": "21470" - } - }, - { - "pk": 7000, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ORVILLE", - "center": "POINT (816629.5668475109850988 2288483.3331843954510987)", - "surface": 2220000, - "canton": null, - "numero_insee": "21472" - } - }, - { - "pk": 34797, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "OUGES", - "center": "POINT (807409.5244981491705403 2254877.4266146328300238)", - "surface": 12250000, - "canton": null, - "numero_insee": "21473" - } - }, - { - "pk": 28884, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PAGNY-LA-VILLE", - "center": "POINT (815007.7851270742248744 2232423.8240371677093208)", - "surface": 6670000, - "canton": null, - "numero_insee": "21474" - } - }, - { - "pk": 14965, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PAGNY-LE-CHATEAU", - "center": "POINT (818316.3014678374165669 2231751.5623679119162261)", - "surface": 24400000, - "canton": null, - "numero_insee": "21475" - } - }, - { - "pk": 6799, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PAINBLANC", - "center": "POINT (773497.6891027279198170 2241276.8291135309264064)", - "surface": 9230000, - "canton": null, - "numero_insee": "21476" - } - }, - { - "pk": 6475, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PANGES", - "center": "POINT (786191.2627300797030330 2266705.8550149248912930)", - "surface": 6050000, - "canton": null, - "numero_insee": "21477" - } - }, - { - "pk": 14848, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PASQUES", - "center": "POINT (789890.5669557327637449 2267137.7693942519836128)", - "surface": 20480000, - "canton": null, - "numero_insee": "21478" - } - }, - { - "pk": 3720, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PELLEREY", - "center": "POINT (784659.5168019570410252 2282005.0628746827133000)", - "surface": 12450000, - "canton": null, - "numero_insee": "21479" - } - }, - { - "pk": 31577, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PERNAND-VERGELESSES", - "center": "POINT (790772.2274485816014931 2234218.2721713590435684)", - "surface": 5520000, - "canton": null, - "numero_insee": "21480" - } - }, - { - "pk": 30769, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PERRIGNY-LES-DIJON", - "center": "POINT (803011.3786519622663036 2254239.3192749810405076)", - "surface": 6720000, - "canton": null, - "numero_insee": "21481" - } - }, - { - "pk": 23872, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PERRIGNY-SUR-L'OGNON", - "center": "POINT (836382.2260588844073936 2260830.2549772514030337)", - "surface": 18770000, - "canton": null, - "numero_insee": "21482" - } - }, - { - "pk": 31518, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PICHANGES", - "center": "POINT (812726.9039851945126429 2276740.5927532212808728)", - "surface": 10090000, - "canton": null, - "numero_insee": "21483" - } - }, - { - "pk": 11683, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PLANAY", - "center": "POINT (752828.7776581431971863 2306152.9039866980165243)", - "surface": 8740000, - "canton": null, - "numero_insee": "21484" - } - }, - { - "pk": 22199, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PLOMBIERES-LES-DIJON", - "center": "POINT (797431.1531930408673361 2263098.8734062081202865)", - "surface": 14930000, - "canton": null, - "numero_insee": "21485" - } - }, - { - "pk": 29266, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PLUVAULT", - "center": "POINT (820367.1392772090621293 2249383.7369081922806799)", - "surface": 3540000, - "canton": null, - "numero_insee": "21486" - } - }, - { - "pk": 27143, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PLUVET", - "center": "POINT (821677.5432478510774672 2248294.0539050684310496)", - "surface": 6490000, - "canton": null, - "numero_insee": "21487" - } - }, - { - "pk": 31304, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POINCON-LES-LARREY", - "center": "POINT (758507.5673717510653660 2320912.6033492940478027)", - "surface": 10370000, - "canton": null, - "numero_insee": "21488" - } - }, - { - "pk": 21267, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POISEUL-LA-GRANGE", - "center": "POINT (784798.1464797519147396 2289211.9646680876612663)", - "surface": 23120000, - "canton": null, - "numero_insee": "21489" - } - }, - { - "pk": 17551, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POISEUL-LA-VILLE-ET-LAPERRIERE", - "center": "POINT (775099.7143989712931216 2288128.4077693540602922)", - "surface": 21550000, - "canton": null, - "numero_insee": "21490" - } - }, - { - "pk": 32587, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POISEUL-LES-SAULX", - "center": "POINT (798903.9999560966389254 2289832.8691135365515947)", - "surface": 15230000, - "canton": null, - "numero_insee": "21491" - } - }, - { - "pk": 36438, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POMMARD", - "center": "POINT (786833.2655072577763349 2226678.3574212631210685)", - "surface": 10020000, - "canton": null, - "numero_insee": "21492" - } - }, - { - "pk": 25934, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PONCEY-LES-ATHEE", - "center": "POINT (830645.6980228724423796 2252874.6026489413343370)", - "surface": 6550000, - "canton": null, - "numero_insee": "21493" - } - }, - { - "pk": 4956, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PONCEY-SUR-L'IGNON", - "center": "POINT (781978.9155626443680376 2279480.1855277814902365)", - "surface": 16570000, - "canton": null, - "numero_insee": "21494" - } - }, - { - "pk": 32541, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PONT", - "center": "POINT (826397.3659183090785518 2246432.9211172959767282)", - "surface": 3590000, - "canton": null, - "numero_insee": "21495" - } - }, - { - "pk": 18729, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PONTAILLER-SUR-SAONE", - "center": "POINT (832483.6243583995383233 2260296.4148673973977566)", - "surface": 13190000, - "canton": null, - "numero_insee": "21496" - } - }, - { - "pk": 3215, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PONT-ET-MASSENE", - "center": "POINT (752282.0609331208979711 2276324.7404579590074718)", - "surface": 6180000, - "canton": null, - "numero_insee": "21497" - } - }, - { - "pk": 34452, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POSANGES", - "center": "POINT (765034.8006720953853801 2271329.2618955210782588)", - "surface": 5860000, - "canton": null, - "numero_insee": "21498" - } - }, - { - "pk": 23883, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POTHIERES", - "center": "POINT (761363.5373530675424263 2326341.0576251000165939)", - "surface": 18090000, - "canton": null, - "numero_insee": "21499" - } - }, - { - "pk": 17023, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POUILLENAY", - "center": "POINT (759954.4220248324563727 2280293.1878180960193276)", - "surface": 15070000, - "canton": null, - "numero_insee": "21500" - } - }, - { - "pk": 7519, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POUILLY-EN-AUXOIS", - "center": "POINT (767886.9082572679035366 2253739.2852543294429779)", - "surface": 10190000, - "canton": null, - "numero_insee": "21501" - } - }, - { - "pk": 33902, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POUILLY-SUR-SAONE", - "center": "POINT (811649.7212339470861480 2227190.7250873465090990)", - "surface": 5180000, - "canton": null, - "numero_insee": "21502" - } - }, - { - "pk": 23524, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "POUILLY-SUR-VINGEANNE", - "center": "POINT (834356.8960607558256015 2286933.8950737304985523)", - "surface": 10550000, - "canton": null, - "numero_insee": "21503" - } - }, - { - "pk": 10631, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PRALON", - "center": "POINT (784250.4455634660553187 2259583.5224991161376238)", - "surface": 3050000, - "canton": null, - "numero_insee": "21504" - } - }, - { - "pk": 16209, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PRECY-SOUS-THIL", - "center": "POINT (749444.6712952819652855 2268694.4853685852140188)", - "surface": 8590000, - "canton": null, - "numero_insee": "21505" - } - }, - { - "pk": 30718, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PREMEAUX-PRISSEY", - "center": "POINT (797752.7527895738603547 2237180.3283673906698823)", - "surface": 8910000, - "canton": null, - "numero_insee": "21506" - } - }, - { - "pk": 28229, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PREMIERES", - "center": "POINT (823739.6827647807076573 2252915.5025023669004440)", - "surface": 3130000, - "canton": null, - "numero_insee": "21507" - } - }, - { - "pk": 11321, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PRENOIS", - "center": "POINT (793994.4384884694591165 2267072.7466787132434547)", - "surface": 19170000, - "canton": null, - "numero_insee": "21508" - } - }, - { - "pk": 13344, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PRUSLY-SUR-OURCE", - "center": "POINT (772504.4712829489726573 2322533.0513567207381129)", - "surface": 16110000, - "canton": null, - "numero_insee": "21510" - } - }, - { - "pk": 5760, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PUITS", - "center": "POINT (759742.1648813087958843 2305210.9990170332603157)", - "surface": 20750000, - "canton": null, - "numero_insee": "21511" - } - }, - { - "pk": 10226, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "PULIGNY-MONTRACHET", - "center": "POINT (784395.4159368085674942 2219151.2248110747896135)", - "surface": 7290000, - "canton": null, - "numero_insee": "21512" - } - }, - { - "pk": 19014, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "QUEMIGNY-POISOT", - "center": "POINT (790124.8346054720459506 2251426.9774540043435991)", - "surface": 11250000, - "canton": null, - "numero_insee": "21513" - } - }, - { - "pk": 13117, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "QUETIGNY", - "center": "POINT (809955.8045092714019120 2261404.5172179229557514)", - "surface": 8300000, - "canton": null, - "numero_insee": "21515" - } - }, - { - "pk": 29695, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "QUINCEROT", - "center": "POINT (745338.3485195070970803 2292578.5968359154649079)", - "surface": 4320000, - "canton": null, - "numero_insee": "21516" - } - }, - { - "pk": 27183, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "QUINCEY", - "center": "POINT (799951.8563608000986278 2237499.3744680942036211)", - "surface": 5580000, - "canton": null, - "numero_insee": "21517" - } - }, - { - "pk": 14441, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "QUINCY-LE-VICOMTE", - "center": "POINT (743036.7034603189677000 2292559.0188879268243909)", - "surface": 19140000, - "canton": null, - "numero_insee": "21518" - } - }, - { - "pk": 18828, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "RECEY-SUR-OURCE", - "center": "POINT (789207.4227432013722137 2311967.3828256325796247)", - "surface": 26900000, - "canton": null, - "numero_insee": "21519" - } - }, - { - "pk": 6587, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "REMILLY-EN-MONTAGNE", - "center": "POINT (780868.4211659720167518 2257152.6994104986079037)", - "surface": 8460000, - "canton": null, - "numero_insee": "21520" - } - }, - { - "pk": 36792, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "REMILLY-SUR-TILLE", - "center": "POINT (818771.7483407804975286 2260379.0854279822669923)", - "surface": 9740000, - "canton": null, - "numero_insee": "21521" - } - }, - { - "pk": 4492, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "RENEVE", - "center": "POINT (831679.2883406935725361 2272399.3285697945393622)", - "surface": 14350000, - "canton": null, - "numero_insee": "21522" - } - }, - { - "pk": 26855, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "REULLE-VERGY", - "center": "POINT (793972.1379176698392257 2246255.5629369285888970)", - "surface": 6080000, - "canton": null, - "numero_insee": "21523" - } - }, - { - "pk": 22004, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "RIEL-LES-EAUX", - "center": "POINT (774902.9072702268604189 2334662.7087130523286760)", - "surface": 25610000, - "canton": null, - "numero_insee": "21524" - } - }, - { - "pk": 35941, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LA ROCHE-EN-BRENIL", - "center": "POINT (738456.1656207219930366 2266299.1667707799933851)", - "surface": 51500000, - "canton": null, - "numero_insee": "21525" - } - }, - { - "pk": 24901, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ROCHEFORT-SUR-BREVON", - "center": "POINT (777638.5723301568068564 2307265.0518486532382667)", - "surface": 12050000, - "canton": null, - "numero_insee": "21526" - } - }, - { - "pk": 22125, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LA ROCHEPOT", - "center": "POINT (777981.9330422868952155 2220097.3419308080337942)", - "surface": 14040000, - "canton": null, - "numero_insee": "21527" - } - }, - { - "pk": 16428, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LA ROCHE-VANNEAU", - "center": "POINT (765188.0413775395136327 2276834.9822052870877087)", - "surface": 13200000, - "canton": null, - "numero_insee": "21528" - } - }, - { - "pk": 6882, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ROILLY", - "center": "POINT (751130.5878036909271032 2270510.2834762064740062)", - "surface": 4520000, - "canton": null, - "numero_insee": "21529" - } - }, - { - "pk": 15960, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ROUGEMONT", - "center": "POINT (744187.3397408239543438 2298473.4394035637378693)", - "surface": 9560000, - "canton": null, - "numero_insee": "21530" - } - }, - { - "pk": 7772, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ROUVRES-EN-PLAINE", - "center": "POINT (812033.5085183316841722 2252515.0226651108823717)", - "surface": 14630000, - "canton": null, - "numero_insee": "21532" - } - }, - { - "pk": 34087, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "ROUVRES-SOUS-MEILLY", - "center": "POINT (770641.8213352442253381 2247557.6804558145813644)", - "surface": 4410000, - "canton": null, - "numero_insee": "21533" - } - }, - { - "pk": 16080, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "RUFFEY-LES-BEAUNE", - "center": "POINT (796530.4435981059214100 2227962.1939563960768282)", - "surface": 15530000, - "canton": null, - "numero_insee": "21534" - } - }, - { - "pk": 11477, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "RUFFEY-LES-ECHIREY", - "center": "POINT (807508.6537297839531675 2266687.8823654293082654)", - "surface": 11210000, - "canton": null, - "numero_insee": "21535" - } - }, - { - "pk": 3115, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAFFRES", - "center": "POINT (769389.1373523247893900 2265361.5333832483738661)", - "surface": 12520000, - "canton": null, - "numero_insee": "21537" - } - }, - { - "pk": 15521, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-ANDEUX", - "center": "POINT (732539.9214080980746076 2267650.0157878510653973)", - "surface": 11880000, - "canton": null, - "numero_insee": "21538" - } - }, - { - "pk": 10938, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-ANTHOT", - "center": "POINT (774335.4237102230545133 2260399.6529246424324811)", - "surface": 4090000, - "canton": null, - "numero_insee": "21539" - } - }, - { - "pk": 11764, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-APOLLINAIRE", - "center": "POINT (808239.1348080858588219 2263191.2931340872310102)", - "surface": 10230000, - "canton": null, - "numero_insee": "21540" - } - }, - { - "pk": 28441, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-AUBIN", - "center": "POINT (780689.9949370952090248 2219419.8551975470036268)", - "surface": 9470000, - "canton": null, - "numero_insee": "21541" - } - }, - { - "pk": 32755, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-BERNARD", - "center": "POINT (803704.2499626572243869 2243436.3519983952865005)", - "surface": 3670000, - "canton": null, - "numero_insee": "21542" - } - }, - { - "pk": 27498, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-BROING-LES-MOINES", - "center": "POINT (787981.7216499443165958 2303150.0748730516061187)", - "surface": 19920000, - "canton": null, - "numero_insee": "21543" - } - }, - { - "pk": 11838, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINTE-COLOMBE", - "center": "POINT (760326.2453846115386114 2271889.6273562293499708)", - "surface": 6330000, - "canton": null, - "numero_insee": "21544" - } - }, - { - "pk": 4571, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINTE-COLOMBE-SUR-SEINE", - "center": "POINT (763918.1332867527380586 2320158.0879328846931458)", - "surface": 16010000, - "canton": null, - "numero_insee": "21545" - } - }, - { - "pk": 16713, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-DIDIER", - "center": "POINT (738818.4919630504446104 2258996.3278992488048971)", - "surface": 21520000, - "canton": null, - "numero_insee": "21546" - } - }, - { - "pk": 36819, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-EUPHRONE", - "center": "POINT (754885.6578251898754388 2276146.7449780702590942)", - "surface": 10990000, - "canton": null, - "numero_insee": "21547" - } - }, - { - "pk": 4041, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-GERMAIN-DE-MODEON", - "center": "POINT (734963.7964822934009135 2265068.5122780944220722)", - "surface": 16580000, - "canton": null, - "numero_insee": "21548" - } - }, - { - "pk": 21152, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-GERMAIN-LE-ROCHEUX", - "center": "POINT (774422.6613164722220972 2308838.8583717453293502)", - "surface": 7660000, - "canton": null, - "numero_insee": "21549" - } - }, - { - "pk": 7530, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-GERMAIN-LES-SENAILLY", - "center": "POINT (746156.7994290072238073 2290483.9037298527546227)", - "surface": 4970000, - "canton": null, - "numero_insee": "21550" - } - }, - { - "pk": 33622, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-HELIER", - "center": "POINT (777472.0534638958051801 2268132.6501809027977288)", - "surface": 3880000, - "canton": null, - "numero_insee": "21552" - } - }, - { - "pk": 30967, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-JEAN-DE-BOEUF", - "center": "POINT (783744.8209984339773655 2248470.1185023514553905)", - "surface": 12240000, - "canton": null, - "numero_insee": "21553" - } - }, - { - "pk": 25731, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-JEAN-DE-LOSNE", - "center": "POINT (822269.6392368400702253 2237590.2602288317866623)", - "surface": 600000, - "canton": null, - "numero_insee": "21554" - } - }, - { - "pk": 17183, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-JULIEN", - "center": "POINT (811683.4841957660391927 2270026.2718128119595349)", - "surface": 16840000, - "canton": null, - "numero_insee": "21555" - } - }, - { - "pk": 14874, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-LEGER-TRIEY", - "center": "POINT (828067.4949119123630226 2261759.7807379793375731)", - "surface": 10490000, - "canton": null, - "numero_insee": "21556" - } - }, - { - "pk": 19244, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-MARC-SUR-SEINE", - "center": "POINT (769773.1111621303716674 2302494.3039481109008193)", - "surface": 8400000, - "canton": null, - "numero_insee": "21557" - } - }, - { - "pk": 13374, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINTE-MARIE-LA-BLANCHE", - "center": "POINT (794275.7067346940748394 2222438.3011421775445342)", - "surface": 6870000, - "canton": null, - "numero_insee": "21558" - } - }, - { - "pk": 32329, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINTE-MARIE-SUR-OUCHE", - "center": "POINT (786572.6581849050708115 2257201.3913129884749651)", - "surface": 8330000, - "canton": null, - "numero_insee": "21559" - } - }, - { - "pk": 4315, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-MARTIN-DE-LA-MER", - "center": "POINT (743195.7248177807778120 2250326.4385211821645498)", - "surface": 23440000, - "canton": null, - "numero_insee": "21560" - } - }, - { - "pk": 17600, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-MARTIN-DU-MONT", - "center": "POINT (786753.2517967447638512 2271214.2860008431598544)", - "surface": 38240000, - "canton": null, - "numero_insee": "21561" - } - }, - { - "pk": 22917, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-MAURICE-SUR-VINGEANNE", - "center": "POINT (830217.9065103309694678 2291101.7356815119273961)", - "surface": 17370000, - "canton": null, - "numero_insee": "21562" - } - }, - { - "pk": 20733, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-MESMIN", - "center": "POINT (775112.1159142268588766 2263208.5522943162359297)", - "surface": 17590000, - "canton": null, - "numero_insee": "21563" - } - }, - { - "pk": 22696, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-NICOLAS-LES-CITEAUX", - "center": "POINT (808436.0477916443487629 2240174.0878982073627412)", - "surface": 28860000, - "canton": null, - "numero_insee": "21564" - } - }, - { - "pk": 32258, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-PHILIBERT", - "center": "POINT (802662.4223125558346510 2248231.4066193345934153)", - "surface": 4690000, - "canton": null, - "numero_insee": "21565" - } - }, - { - "pk": 28847, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-REMY", - "center": "POINT (747506.7144354769261554 2296500.1110837343148887)", - "surface": 13860000, - "canton": null, - "numero_insee": "21568" - } - }, - { - "pk": 16686, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINTE-SABINE", - "center": "POINT (773060.6907945736311376 2245576.6570294303819537)", - "surface": 8500000, - "canton": null, - "numero_insee": "21570" - } - }, - { - "pk": 3592, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-SAUVEUR", - "center": "POINT (831829.9837100593140349 2266495.8514857380650938)", - "surface": 9320000, - "canton": null, - "numero_insee": "21571" - } - }, - { - "pk": 37772, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-SEINE-EN-BACHE", - "center": "POINT (830659.7182170711457729 2239563.7331779571250081)", - "surface": 8350000, - "canton": null, - "numero_insee": "21572" - } - }, - { - "pk": 7105, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-SEINE-L'ABBAYE", - "center": "POINT (784426.7916893517831340 2274096.7554134628735483)", - "surface": 3890000, - "canton": null, - "numero_insee": "21573" - } - }, - { - "pk": 24998, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-SYMPHORIEN-SUR-SAONE", - "center": "POINT (826181.1752795338397846 2236622.9369581416249275)", - "surface": 7970000, - "canton": null, - "numero_insee": "21575" - } - }, - { - "pk": 21753, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-THIBAULT", - "center": "POINT (760773.4242549361661077 2266389.0017284331843257)", - "surface": 12380000, - "canton": null, - "numero_insee": "21576" - } - }, - { - "pk": 6179, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-USAGE", - "center": "POINT (821061.0142640267731622 2238480.6574614797718823)", - "surface": 9450000, - "canton": null, - "numero_insee": "21577" - } - }, - { - "pk": 13963, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAINT-VICTOR-SUR-OUCHE", - "center": "POINT (782524.2756834728643298 2250761.5914538376964629)", - "surface": 12750000, - "canton": null, - "numero_insee": "21578" - } - }, - { - "pk": 22893, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SALIVES", - "center": "POINT (792675.6074121375568211 2292581.8519778861664236)", - "surface": 47960000, - "canton": null, - "numero_insee": "21579" - } - }, - { - "pk": 21987, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SALMAISE", - "center": "POINT (776308.9256344676250592 2275428.6019673254340887)", - "surface": 13160000, - "canton": null, - "numero_insee": "21580" - } - }, - { - "pk": 7167, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAMEREY", - "center": "POINT (829884.8453801925061271 2236554.5934987217187881)", - "surface": 7060000, - "canton": null, - "numero_insee": "21581" - } - }, - { - "pk": 31598, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SANTENAY", - "center": "POINT (779420.5830623267684132 2215705.8909576078876853)", - "surface": 10290000, - "canton": null, - "numero_insee": "21582" - } - }, - { - "pk": 29305, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SANTOSSE", - "center": "POINT (774633.2972960544284433 2225473.3297904292121530)", - "surface": 7990000, - "canton": null, - "numero_insee": "21583" - } - }, - { - "pk": 15522, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAULIEU", - "center": "POINT (743351.6168224776629359 2255532.0204633362591267)", - "surface": 32520000, - "canton": null, - "numero_insee": "21584" - } - }, - { - "pk": 35262, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAULON-LA-CHAPELLE", - "center": "POINT (808758.4395092076156288 2249284.3688707654364407)", - "surface": 10010000, - "canton": null, - "numero_insee": "21585" - } - }, - { - "pk": 38066, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAULON-LA-RUE", - "center": "POINT (805442.2702364247525111 2250857.3182613444514573)", - "surface": 4530000, - "canton": null, - "numero_insee": "21586" - } - }, - { - "pk": 17593, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAULX-LE-DUC", - "center": "POINT (802031.8980722810374573 2286857.2345454236492515)", - "surface": 28950000, - "canton": null, - "numero_insee": "21587" - } - }, - { - "pk": 12536, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAUSSEY", - "center": "POINT (772578.0014595198445022 2231761.0829149237833917)", - "surface": 9020000, - "canton": null, - "numero_insee": "21588" - } - }, - { - "pk": 27331, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAUSSY", - "center": "POINT (799314.5746319928439334 2276926.1056962837465107)", - "surface": 9250000, - "canton": null, - "numero_insee": "21589" - } - }, - { - "pk": 18909, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAVIGNY-LES-BEAUNE", - "center": "POINT (787270.4176719132810831 2234088.2844671010971069)", - "surface": 36230000, - "canton": null, - "numero_insee": "21590" - } - }, - { - "pk": 10416, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAVIGNY-LE-SEC", - "center": "POINT (803943.6001438283128664 2273963.2779799764975905)", - "surface": 9290000, - "canton": null, - "numero_insee": "21591" - } - }, - { - "pk": 26971, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAVIGNY-SOUS-MALAIN", - "center": "POINT (782629.6133981379680336 2261871.5582252596504986)", - "surface": 6330000, - "canton": null, - "numero_insee": "21592" - } - }, - { - "pk": 31246, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAVILLY", - "center": "POINT (747206.7690963700879365 2237650.0730730039067566)", - "surface": 8330000, - "canton": null, - "numero_insee": "21593" - } - }, - { - "pk": 21896, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAVOISY", - "center": "POINT (754730.9687034934759140 2306069.0211489824578166)", - "surface": 25090000, - "canton": null, - "numero_insee": "21594" - } - }, - { - "pk": 6825, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SAVOUGES", - "center": "POINT (806185.5927031717728823 2245859.5569303757511079)", - "surface": 3110000, - "canton": null, - "numero_insee": "21596" - } - }, - { - "pk": 5814, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SEGROIS", - "center": "POINT (793797.6376195142511278 2243251.5934419571422040)", - "surface": 2330000, - "canton": null, - "numero_insee": "21597" - } - }, - { - "pk": 12758, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SEIGNY", - "center": "POINT (758083.2290459452196956 2288483.7642781818285584)", - "surface": 8050000, - "canton": null, - "numero_insee": "21598" - } - }, - { - "pk": 26257, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SELONGEY", - "center": "POINT (815196.0027305852854624 2292274.0666956654749811)", - "surface": 46580000, - "canton": null, - "numero_insee": "21599" - } - }, - { - "pk": 36992, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SEMAREY", - "center": "POINT (773184.8869564982596785 2254485.0275913896039128)", - "surface": 7370000, - "canton": null, - "numero_insee": "21600" - } - }, - { - "pk": 25912, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SEMEZANGES", - "center": "POINT (790343.7885882037226111 2249227.0396180767565966)", - "surface": 8140000, - "canton": null, - "numero_insee": "21601" - } - }, - { - "pk": 30084, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SEMOND", - "center": "POINT (767760.6056128753116354 2303778.1604734202846885)", - "surface": 6040000, - "canton": null, - "numero_insee": "21602" - } - }, - { - "pk": 12932, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SENAILLY", - "center": "POINT (745170.5544353794539347 2288774.1705811079591513)", - "surface": 9470000, - "canton": null, - "numero_insee": "21604" - } - }, - { - "pk": 13253, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SENNECEY-LES-DIJON", - "center": "POINT (809281.8293209862895310 2258296.2239934867247939)", - "surface": 3500000, - "canton": null, - "numero_insee": "21605" - } - }, - { - "pk": 25408, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LADOIX-SERRIGNY", - "center": "POINT (795492.0525452579604462 2232357.0061799497343600)", - "surface": 24760000, - "canton": null, - "numero_insee": "21606" - } - }, - { - "pk": 11329, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SEURRE", - "center": "POINT (813954.9115889959502965 2226810.1163189914077520)", - "surface": 9000000, - "canton": null, - "numero_insee": "21607" - } - }, - { - "pk": 25313, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SINCEY-LES-ROUVRAY", - "center": "POINT (735306.2571218049852178 2271876.9050507266074419)", - "surface": 8720000, - "canton": null, - "numero_insee": "21608" - } - }, - { - "pk": 13930, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SOIRANS", - "center": "POINT (824266.6351274445187300 2249817.4685591645538807)", - "surface": 4410000, - "canton": null, - "numero_insee": "21609" - } - }, - { - "pk": 26396, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SOISSONS-SUR-NACEY", - "center": "POINT (836435.4426930577028543 2254625.6423902474343777)", - "surface": 7730000, - "canton": null, - "numero_insee": "21610" - } - }, - { - "pk": 18532, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SOMBERNON", - "center": "POINT (778847.2955932118929923 2259437.3280763612128794)", - "surface": 13300000, - "canton": null, - "numero_insee": "21611" - } - }, - { - "pk": 33524, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SOUHEY", - "center": "POINT (757067.6591790337115526 2278467.1643408318050206)", - "surface": 2710000, - "canton": null, - "numero_insee": "21612" - } - }, - { - "pk": 19012, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SOUSSEY-SUR-BRIONNE", - "center": "POINT (766025.0118951584445313 2260829.2077231630682945)", - "surface": 14710000, - "canton": null, - "numero_insee": "21613" - } - }, - { - "pk": 33272, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SPOY", - "center": "POINT (814837.8578652784926817 2275657.7796284672804177)", - "surface": 11960000, - "canton": null, - "numero_insee": "21614" - } - }, - { - "pk": 5930, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "SUSSEY", - "center": "POINT (754123.4739426574669778 2248117.5307085299864411)", - "surface": 21010000, - "canton": null, - "numero_insee": "21615" - } - }, - { - "pk": 32238, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TAILLY", - "center": "POINT (788680.7929744630819187 2221289.5852685770951211)", - "surface": 4610000, - "canton": null, - "numero_insee": "21616" - } - }, - { - "pk": 19976, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TALANT", - "center": "POINT (801032.9579766624374315 2263229.7438072990626097)", - "surface": 4890000, - "canton": null, - "numero_insee": "21617" - } - }, - { - "pk": 3649, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TALMAY", - "center": "POINT (835823.4905749025056139 2267630.9879587045870721)", - "surface": 22060000, - "canton": null, - "numero_insee": "21618" - } - }, - { - "pk": 19355, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TANAY", - "center": "POINT (821872.1111457657534629 2272315.2820555944927037)", - "surface": 12710000, - "canton": null, - "numero_insee": "21619" - } - }, - { - "pk": 9743, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TARSUL", - "center": "POINT (798960.4615117448847741 2283228.1119177867658436)", - "surface": 9420000, - "canton": null, - "numero_insee": "21620" - } - }, - { - "pk": 19894, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TART-L'ABBAYE", - "center": "POINT (820090.0544945840956643 2246679.1376979625783861)", - "surface": 3360000, - "canton": null, - "numero_insee": "21621" - } - }, - { - "pk": 24790, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TART-LE-BAS", - "center": "POINT (818567.5030544049805030 2249168.1608636970631778)", - "surface": 4630000, - "canton": null, - "numero_insee": "21622" - } - }, - { - "pk": 23583, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TART-LE-HAUT", - "center": "POINT (817276.8097726673586294 2247956.1206280742771924)", - "surface": 10320000, - "canton": null, - "numero_insee": "21623" - } - }, - { - "pk": 25541, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TELLECEY", - "center": "POINT (823990.1796791008673608 2258722.3965363199822605)", - "surface": 5180000, - "canton": null, - "numero_insee": "21624" - } - }, - { - "pk": 4485, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TERNANT", - "center": "POINT (789058.1976696898927912 2247414.5780275920405984)", - "surface": 16360000, - "canton": null, - "numero_insee": "21625" - } - }, - { - "pk": 15862, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TERREFONDREE", - "center": "POINT (787856.8661501421593130 2306051.2690129135735333)", - "surface": 13750000, - "canton": null, - "numero_insee": "21626" - } - }, - { - "pk": 6319, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THENISSEY", - "center": "POINT (771967.3895046615507454 2279895.1729040499776602)", - "surface": 10280000, - "canton": null, - "numero_insee": "21627" - } - }, - { - "pk": 34483, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOIRES", - "center": "POINT (775148.2894703282508999 2329360.7867696508765221)", - "surface": 10290000, - "canton": null, - "numero_insee": "21628" - } - }, - { - "pk": 16685, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOISY-LA-BERCHERE", - "center": "POINT (750978.5643187884707004 2253094.8644471052102745)", - "surface": 34950000, - "canton": null, - "numero_insee": "21629" - } - }, - { - "pk": 20320, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOISY-LE-DESERT", - "center": "POINT (765297.7614179470110685 2252215.9900898779742420)", - "surface": 13020000, - "canton": null, - "numero_insee": "21630" - } - }, - { - "pk": 5805, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOMIREY", - "center": "POINT (770754.4450506609864533 2234347.7048163902945817)", - "surface": 7070000, - "canton": null, - "numero_insee": "21631" - } - }, - { - "pk": 11615, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOREY-EN-PLAINE", - "center": "POINT (812155.8506409634137526 2249913.9330159127712250)", - "surface": 5770000, - "canton": null, - "numero_insee": "21632" - } - }, - { - "pk": 4432, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOREY-SOUS-CHARNY", - "center": "POINT (759618.5697812592843547 2260974.7876213034614921)", - "surface": 11410000, - "canton": null, - "numero_insee": "21633" - } - }, - { - "pk": 22894, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOREY-SUR-OUCHE", - "center": "POINT (778600.6884422568837181 2241420.4395183529704809)", - "surface": 12060000, - "canton": null, - "numero_insee": "21634" - } - }, - { - "pk": 19398, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THOSTE", - "center": "POINT (742508.1181795760057867 2272338.4537714580073953)", - "surface": 11120000, - "canton": null, - "numero_insee": "21635" - } - }, - { - "pk": 30756, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "THURY", - "center": "POINT (766407.3864028520183638 2227705.1331168720498681)", - "surface": 13320000, - "canton": null, - "numero_insee": "21636" - } - }, - { - "pk": 8512, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TICHEY", - "center": "POINT (824355.1771334107033908 2227799.9275806327350438)", - "surface": 6880000, - "canton": null, - "numero_insee": "21637" - } - }, - { - "pk": 3156, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TIL-CHATEL", - "center": "POINT (813967.8864576584892347 2283756.8101426060311496)", - "surface": 26120000, - "canton": null, - "numero_insee": "21638" - } - }, - { - "pk": 7291, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TILLENAY", - "center": "POINT (828389.4363342637661844 2247550.9006065172143281)", - "surface": 6110000, - "canton": null, - "numero_insee": "21639" - } - }, - { - "pk": 5974, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TORCY-ET-POULIGNY", - "center": "POINT (743049.8301768234232441 2279248.5857616453431547)", - "surface": 10350000, - "canton": null, - "numero_insee": "21640" - } - }, - { - "pk": 14653, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TOUILLON", - "center": "POINT (757705.4564960692077875 2297587.7145112967118621)", - "surface": 36830000, - "canton": null, - "numero_insee": "21641" - } - }, - { - "pk": 27955, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TOUTRY", - "center": "POINT (734941.4013443707954139 2279479.8889524438418448)", - "surface": 6410000, - "canton": null, - "numero_insee": "21642" - } - }, - { - "pk": 6483, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TRECLUN", - "center": "POINT (823583.2566299539757892 2247809.9659475027583539)", - "surface": 5730000, - "canton": null, - "numero_insee": "21643" - } - }, - { - "pk": 35512, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TROCHERES", - "center": "POINT (824936.0455214128596708 2265135.7094952436164021)", - "surface": 5110000, - "canton": null, - "numero_insee": "21644" - } - }, - { - "pk": 25231, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TROUHANS", - "center": "POINT (822420.9299420925090089 2243296.2897852016612887)", - "surface": 10800000, - "canton": null, - "numero_insee": "21645" - } - }, - { - "pk": 7518, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TROUHAUT", - "center": "POINT (783073.6054468485526741 2268480.6942395097576082)", - "surface": 9530000, - "canton": null, - "numero_insee": "21646" - } - }, - { - "pk": 12834, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TRUGNY", - "center": "POINT (813688.0849991415161639 2222904.5480284066870809)", - "surface": 6850000, - "canton": null, - "numero_insee": "21647" - } - }, - { - "pk": 36796, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "TURCEY", - "center": "POINT (779654.8830256623914465 2270353.0497414683923125)", - "surface": 12470000, - "canton": null, - "numero_insee": "21648" - } - }, - { - "pk": 7815, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "UNCEY-LE-FRANC", - "center": "POINT (769111.0974251378793269 2262757.0557320523075759)", - "surface": 9490000, - "canton": null, - "numero_insee": "21649" - } - }, - { - "pk": 36439, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "URCY", - "center": "POINT (789797.2595293964259326 2254626.8026671623811126)", - "surface": 7960000, - "canton": null, - "numero_insee": "21650" - } - }, - { - "pk": 5241, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VAL-SUZON", - "center": "POINT (793944.8449022521963343 2272877.0014961259439588)", - "surface": 19060000, - "canton": null, - "numero_insee": "21651" - } - }, - { - "pk": 19936, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VANDENESSE-EN-AUXOIS", - "center": "POINT (772926.4798379694111645 2249578.8061696924269199)", - "surface": 11280000, - "canton": null, - "numero_insee": "21652" - } - }, - { - "pk": 26674, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VANNAIRE", - "center": "POINT (766968.2489692167146131 2326288.7467618770897388)", - "surface": 3630000, - "canton": null, - "numero_insee": "21653" - } - }, - { - "pk": 25885, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VANVEY", - "center": "POINT (778843.8446045935852453 2318483.9908610493876040)", - "surface": 16690000, - "canton": null, - "numero_insee": "21655" - } - }, - { - "pk": 8897, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VARANGES", - "center": "POINT (816039.0687046974198893 2252249.0618312801234424)", - "surface": 9450000, - "canton": null, - "numero_insee": "21656" - } - }, - { - "pk": 29532, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VAROIS-ET-CHAIGNOT", - "center": "POINT (810622.0690831393003464 2265413.4674286302179098)", - "surface": 10070000, - "canton": null, - "numero_insee": "21657" - } - }, - { - "pk": 5862, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VAUCHIGNON", - "center": "POINT (776158.3498782613314688 2222683.9802567949518561)", - "surface": 4210000, - "canton": null, - "numero_insee": "21658" - } - }, - { - "pk": 17425, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VAUX-SAULES", - "center": "POINT (787296.4362457360839471 2277924.3034768071956933)", - "surface": 28280000, - "canton": null, - "numero_insee": "21659" - } - }, - { - "pk": 32891, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VEILLY", - "center": "POINT (771417.4341555575374514 2238757.0176727655343711)", - "surface": 5480000, - "canton": null, - "numero_insee": "21660" - } - }, - { - "pk": 35629, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VELOGNY", - "center": "POINT (760650.3340215513017029 2269090.1332520125433803)", - "surface": 4040000, - "canton": null, - "numero_insee": "21662" - } - }, - { - "pk": 5925, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VENAREY-LES-LAUMES", - "center": "POINT (758220.8021642524981871 2284081.4470837046392262)", - "surface": 10360000, - "canton": null, - "numero_insee": "21663" - } - }, - { - "pk": 3152, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VERNOIS-LES-VESVRES", - "center": "POINT (811239.2512502454919741 2298545.1579712163656950)", - "surface": 11690000, - "canton": null, - "numero_insee": "21665" - } - }, - { - "pk": 6427, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VERNOT", - "center": "POINT (797886.1828284324146807 2280116.4560437388718128)", - "surface": 12830000, - "canton": null, - "numero_insee": "21666" - } - }, - { - "pk": 25992, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VERONNES", - "center": "POINT (818353.9289771537296474 2285795.9551023943349719)", - "surface": 19250000, - "canton": null, - "numero_insee": "21667" - } - }, - { - "pk": 37367, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VERREY-SOUS-DREE", - "center": "POINT (777491.6902893480146304 2265830.9582011788152158)", - "surface": 3360000, - "canton": null, - "numero_insee": "21669" - } - }, - { - "pk": 11959, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VERREY-SOUS-SALMAISE", - "center": "POINT (776225.0728065588045865 2273526.3616660977713764)", - "surface": 8180000, - "canton": null, - "numero_insee": "21670" - } - }, - { - "pk": 23182, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VERTAULT", - "center": "POINT (748749.7466583929490298 2326834.1053643701598048)", - "surface": 19270000, - "canton": null, - "numero_insee": "21671" - } - }, - { - "pk": 29088, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VESVRES", - "center": "POINT (765477.7356355749070644 2266329.0030658496543765)", - "surface": 4110000, - "canton": null, - "numero_insee": "21672" - } - }, - { - "pk": 16991, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VEUVEY-SUR-OUCHE", - "center": "POINT (780370.4516500236932188 2245138.5996296713128686)", - "surface": 10060000, - "canton": null, - "numero_insee": "21673" - } - }, - { - "pk": 17186, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VEUXHAULLES-SUR-AUBE", - "center": "POINT (784854.0978101618820801 2329543.7003177958540618)", - "surface": 19320000, - "canton": null, - "numero_insee": "21674" - } - }, - { - "pk": 5747, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIANGES", - "center": "POINT (750668.5423095378791913 2242483.5058764130808413)", - "surface": 8790000, - "canton": null, - "numero_insee": "21675" - } - }, - { - "pk": 34518, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIC-DE-CHASSENAY", - "center": "POINT (745176.8922309911577031 2276264.2803642018698156)", - "surface": 26460000, - "canton": null, - "numero_insee": "21676" - } - }, - { - "pk": 18264, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIC-DES-PRES", - "center": "POINT (774435.9228369559859857 2236881.1784464917145669)", - "surface": 8960000, - "canton": null, - "numero_insee": "21677" - } - }, - { - "pk": 4459, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIC-SOUS-THIL", - "center": "POINT (749577.1056463510030881 2264892.5424168067984283)", - "surface": 21390000, - "canton": null, - "numero_insee": "21678" - } - }, - { - "pk": 35004, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIEILMOULIN", - "center": "POINT (776543.0290837645297870 2259717.9135550828650594)", - "surface": 6000000, - "canton": null, - "numero_insee": "21679" - } - }, - { - "pk": 31067, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIEVIGNE", - "center": "POINT (818949.4192657233215868 2274692.1806915034539998)", - "surface": 13510000, - "canton": null, - "numero_insee": "21682" - } - }, - { - "pk": 17759, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIEVY", - "center": "POINT (760976.8249506759457290 2230761.4604757926426828)", - "surface": 33010000, - "canton": null, - "numero_insee": "21683" - } - }, - { - "pk": 9662, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIGNOLES", - "center": "POINT (793825.8100539803272113 2228239.3365665725432336)", - "surface": 6690000, - "canton": null, - "numero_insee": "21684" - } - }, - { - "pk": 18174, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLAINES-LES-PREVOTES", - "center": "POINT (748300.0298566399142146 2285598.2618437390774488)", - "surface": 10570000, - "canton": null, - "numero_insee": "21686" - } - }, - { - "pk": 28865, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLARS-FONTAINE", - "center": "POINT (794408.3507701484486461 2242055.8178409286774695)", - "surface": 2860000, - "canton": null, - "numero_insee": "21688" - } - }, - { - "pk": 3470, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLARS-ET-VILLENOTTE", - "center": "POINT (753745.6673422936582938 2280740.7145483614876866)", - "surface": 7540000, - "canton": null, - "numero_insee": "21689" - } - }, - { - "pk": 19185, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLEBERNY", - "center": "POINT (770723.6148881232365966 2273179.2014666497707367)", - "surface": 12920000, - "canton": null, - "numero_insee": "21690" - } - }, - { - "pk": 25540, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLEBICHOT", - "center": "POINT (805124.1353137893602252 2241246.6720236800611019)", - "surface": 10440000, - "canton": null, - "numero_insee": "21691" - } - }, - { - "pk": 5530, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLECOMTE", - "center": "POINT (801980.6014369233744219 2281152.2587953829206526)", - "surface": 16350000, - "canton": null, - "numero_insee": "21692" - } - }, - { - "pk": 16455, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLEDIEU", - "center": "POINT (752967.9731990047730505 2325068.6394286472350359)", - "surface": 14120000, - "canton": null, - "numero_insee": "21693" - } - }, - { - "pk": 8349, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLEFERRY", - "center": "POINT (765307.7294748402200639 2274534.1590463714674115)", - "surface": 3260000, - "canton": null, - "numero_insee": "21694" - } - }, - { - "pk": 28580, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "LA VILLENEUVE-LES-CONVERS", - "center": "POINT (769590.6402154148090631 2288681.9016885445453227)", - "surface": 8960000, - "canton": null, - "numero_insee": "21695" - } - }, - { - "pk": 7467, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLENEUVE-SOUS-CHARIGNY", - "center": "POINT (755615.1383862742222846 2272750.2289916309528053)", - "surface": 3200000, - "canton": null, - "numero_insee": "21696" - } - }, - { - "pk": 13639, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLERS-LA-FAYE", - "center": "POINT (793246.7722580161644146 2237442.0755265778861940)", - "surface": 5820000, - "canton": null, - "numero_insee": "21698" - } - }, - { - "pk": 34108, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLERS-LES-POTS", - "center": "POINT (827968.5518543466459960 2249949.2716823690570891)", - "surface": 10380000, - "canton": null, - "numero_insee": "21699" - } - }, - { - "pk": 31982, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLERS-PATRAS", - "center": "POINT (765049.0288643848616630 2328373.9858307167887688)", - "surface": 6370000, - "canton": null, - "numero_insee": "21700" - } - }, - { - "pk": 14065, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLERS-ROTIN", - "center": "POINT (832722.6992420663591474 2244085.1525318161584437)", - "surface": 3080000, - "canton": null, - "numero_insee": "21701" - } - }, - { - "pk": 3959, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLEY-SUR-TILLE", - "center": "POINT (808518.6012298674322665 2289014.3845429760403931)", - "surface": 12710000, - "canton": null, - "numero_insee": "21702" - } - }, - { - "pk": 3394, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLIERS-LE-DUC", - "center": "POINT (777289.6928045023232698 2312966.4916756427846849)", - "surface": 86370000, - "canton": null, - "numero_insee": "21704" - } - }, - { - "pk": 33766, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLOTTE-SAINT-SEINE", - "center": "POINT (779234.9496717390138656 2272651.3179684439674020)", - "surface": 7540000, - "canton": null, - "numero_insee": "21705" - } - }, - { - "pk": 28578, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLOTTE-SUR-OURCE", - "center": "POINT (776118.9156668271170929 2321162.8115449021570385)", - "surface": 9470000, - "canton": null, - "numero_insee": "21706" - } - }, - { - "pk": 30630, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLY-EN-AUXOIS", - "center": "POINT (772945.7047478059539571 2270796.2190233096480370)", - "surface": 16090000, - "canton": null, - "numero_insee": "21707" - } - }, - { - "pk": 30755, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VILLY-LE-MOUTIER", - "center": "POINT (801317.8657270814292133 2229904.7062495811842382)", - "surface": 20170000, - "canton": null, - "numero_insee": "21708" - } - }, - { - "pk": 7938, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VISERNY", - "center": "POINT (746490.2186714570270851 2286583.6559546357020736)", - "surface": 6810000, - "canton": null, - "numero_insee": "21709" - } - }, - { - "pk": 16902, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VITTEAUX", - "center": "POINT (766458.0015214853920043 2268739.2959792902693152)", - "surface": 20820000, - "canton": null, - "numero_insee": "21710" - } - }, - { - "pk": 7364, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VIX", - "center": "POINT (764474.2017764290794730 2325366.8026241473853588)", - "surface": 3580000, - "canton": null, - "numero_insee": "21711" - } - }, - { - "pk": 11122, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VOLNAY", - "center": "POINT (785946.2450550270732492 2225069.4396212985739112)", - "surface": 7640000, - "canton": null, - "numero_insee": "21712" - } - }, - { - "pk": 34578, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VONGES", - "center": "POINT (831294.7452920228242874 2258885.0796473454684019)", - "surface": 4550000, - "canton": null, - "numero_insee": "21713" - } - }, - { - "pk": 3692, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VOSNE-ROMANEE", - "center": "POINT (798501.1829466538038105 2243291.7870697546750307)", - "surface": 3690000, - "canton": null, - "numero_insee": "21714" - } - }, - { - "pk": 19504, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VOUDENAY", - "center": "POINT (755038.2410976318642497 2234714.2273183017969131)", - "surface": 21500000, - "canton": null, - "numero_insee": "21715" - } - }, - { - "pk": 7886, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VOUGEOT", - "center": "POINT (798787.7230135924182832 2244895.5592106143012643)", - "surface": 880000, - "canton": null, - "numero_insee": "21716" - } - }, - { - "pk": 18180, - "model": "ishtar_common.town", - "fields": { - "departement": 22, - "name": "VOULAINES-LES-TEMPLIERS", - "center": "POINT (782656.7384487244999036 2317315.6119364975020289)", - "surface": 23130000, - "canton": null, - "numero_insee": "21717" - } - }, - { - "pk": 17588, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ALLINEUC", - "center": "POINT (214107.6654711031005718 2380739.8653273968957365)", - "surface": 24350000, - "canton": null, - "numero_insee": "22001" - } - }, - { - "pk": 3973, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ANDEL", - "center": "POINT (238873.1593490084633231 2399553.7225721930153668)", - "surface": 12380000, - "canton": null, - "numero_insee": "22002" - } - }, - { - "pk": 6621, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "AUCALEUC", - "center": "POINT (269849.1250023342436180 2392900.3170644207857549)", - "surface": 6490000, - "canton": null, - "numero_insee": "22003" - } - }, - { - "pk": 17646, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BEGARD", - "center": "POINT (185279.7982524592080154 2418834.2551518483087420)", - "surface": 36450000, - "canton": null, - "numero_insee": "22004" - } - }, - { - "pk": 16614, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BELLE-ISLE-EN-TERRE", - "center": "POINT (177863.7559875374427065 2407766.7765350202098489)", - "surface": 14270000, - "canton": null, - "numero_insee": "22005" - } - }, - { - "pk": 23290, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BERHET", - "center": "POINT (184522.0787578572635539 2425933.0647656335495412)", - "surface": 3370000, - "canton": null, - "numero_insee": "22006" - } - }, - { - "pk": 28644, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BINIC", - "center": "POINT (218850.2602407709346153 2413001.1368904118426144)", - "surface": 5710000, - "canton": null, - "numero_insee": "22007" - } - }, - { - "pk": 36252, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BOBITAL", - "center": "POINT (271784.5334803843870759 2388713.0581912333145738)", - "surface": 5030000, - "canton": null, - "numero_insee": "22008" - } - }, - { - "pk": 23999, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE BODEO", - "center": "POINT (210288.9808011794812046 2382710.4329277919605374)", - "surface": 10180000, - "canton": null, - "numero_insee": "22009" - } - }, - { - "pk": 28845, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BOQUEHO", - "center": "POINT (206557.2239055471145548 2398691.7367172795347869)", - "surface": 27670000, - "canton": null, - "numero_insee": "22011" - } - }, - { - "pk": 26059, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA BOUILLIE", - "center": "POINT (247502.4336470089037903 2409030.3250349066220224)", - "surface": 10920000, - "canton": null, - "numero_insee": "22012" - } - }, - { - "pk": 19253, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BOURBRIAC", - "center": "POINT (190738.9486231590854004 2399564.7178668882697821)", - "surface": 73110000, - "canton": null, - "numero_insee": "22013" - } - }, - { - "pk": 23427, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BREHAND", - "center": "POINT (235359.2375065842643380 2388617.4719906998798251)", - "surface": 25930000, - "canton": null, - "numero_insee": "22015" - } - }, - { - "pk": 20353, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ILE-DE-BREHAT", - "center": "POINT (207919.5085705438395962 2440631.8149046106263995)", - "surface": 3470000, - "canton": null, - "numero_insee": "22016" - } - }, - { - "pk": 14757, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BRELIDY", - "center": "POINT (190173.2005008326959796 2420074.5542834480293095)", - "surface": 8280000, - "canton": null, - "numero_insee": "22018" - } - }, - { - "pk": 16731, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BROONS", - "center": "POINT (260464.9294866627897136 2377813.2650600196793675)", - "surface": 35700000, - "canton": null, - "numero_insee": "22020" - } - }, - { - "pk": 6833, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BRUSVILY", - "center": "POINT (270201.3965602605021559 2386498.6070635849609971)", - "surface": 12180000, - "canton": null, - "numero_insee": "22021" - } - }, - { - "pk": 19888, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "BULAT-PESTIVIEN", - "center": "POINT (180654.2039447253919207 2396781.4660659697838128)", - "surface": 31710000, - "canton": null, - "numero_insee": "22023" - } - }, - { - "pk": 4659, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CALANHEL", - "center": "POINT (170134.5009261521627195 2398297.8548652487806976)", - "surface": 14700000, - "canton": null, - "numero_insee": "22024" - } - }, - { - "pk": 20653, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CALLAC", - "center": "POINT (174456.6320750013110228 2395930.9532443643547595)", - "surface": 33380000, - "canton": null, - "numero_insee": "22025" - } - }, - { - "pk": 25017, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CALORGUEN", - "center": "POINT (276999.3085996598820202 2387354.4795953887514770)", - "surface": 8550000, - "canton": null, - "numero_insee": "22026" - } - }, - { - "pk": 5759, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE CAMBOUT", - "center": "POINT (230655.9357510953559540 2351552.2802732447162271)", - "surface": 18190000, - "canton": null, - "numero_insee": "22027" - } - }, - { - "pk": 22938, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CANIHUEL", - "center": "POINT (197462.7828601649962366 2384808.3893012772314250)", - "surface": 32310000, - "canton": null, - "numero_insee": "22029" - } - }, - { - "pk": 24159, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CAOUENNEC-LANVEZEAC", - "center": "POINT (180308.9706324427970685 2427200.0021491730585694)", - "surface": 7230000, - "canton": null, - "numero_insee": "22030" - } - }, - { - "pk": 21342, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CARNOET", - "center": "POINT (165300.5899559675017372 2389652.7791716596111655)", - "surface": 42040000, - "canton": null, - "numero_insee": "22031" - } - }, - { - "pk": 3108, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CAULNES", - "center": "POINT (266379.3888138203183189 2376560.3901879657059908)", - "surface": 32520000, - "canton": null, - "numero_insee": "22032" - } - }, - { - "pk": 17001, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CAUREL", - "center": "POINT (200674.7453854554914869 2371224.4401101144030690)", - "surface": 13140000, - "canton": null, - "numero_insee": "22033" - } - }, - { - "pk": 16601, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CAVAN", - "center": "POINT (181231.3064400717848912 2424505.5716625140048563)", - "surface": 16790000, - "canton": null, - "numero_insee": "22034" - } - }, - { - "pk": 20101, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LES CHAMPS-GERAUX", - "center": "POINT (280684.6078634922741912 2389485.9759070691652596)", - "surface": 19730000, - "canton": null, - "numero_insee": "22035" - } - }, - { - "pk": 37957, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA CHAPELLE-BLANCHE", - "center": "POINT (268513.3194265912170522 2372574.8325408636592329)", - "surface": 8050000, - "canton": null, - "numero_insee": "22036" - } - }, - { - "pk": 18937, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA CHAPELLE-NEUVE", - "center": "POINT (173016.2298874899861403 2400822.8414715332910419)", - "surface": 24120000, - "canton": null, - "numero_insee": "22037" - } - }, - { - "pk": 8106, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CHATELAUDREN", - "center": "POINT (208094.3664371827617288 2406609.7468652338720858)", - "surface": 500000, - "canton": null, - "numero_insee": "22038" - } - }, - { - "pk": 10142, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA CHEZE", - "center": "POINT (228084.5229994174442254 2360137.8402162636630237)", - "surface": 2600000, - "canton": null, - "numero_insee": "22039" - } - }, - { - "pk": 16449, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "COADOUT", - "center": "POINT (192696.6337212342768908 2404984.3400188917294145)", - "surface": 9860000, - "canton": null, - "numero_insee": "22040" - } - }, - { - "pk": 11979, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "COATREVEN", - "center": "POINT (183762.7575455306796357 2433231.9592859609983861)", - "surface": 9350000, - "canton": null, - "numero_insee": "22042" - } - }, - { - "pk": 4362, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "COETLOGON", - "center": "POINT (236896.9438876326894388 2359408.6606606021523476)", - "surface": 16710000, - "canton": null, - "numero_insee": "22043" - } - }, - { - "pk": 9611, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "COETMIEUX", - "center": "POINT (235776.0328902978217229 2398928.1939373812638223)", - "surface": 8190000, - "canton": null, - "numero_insee": "22044" - } - }, - { - "pk": 14669, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "COHINIAC", - "center": "POINT (209374.3982628769590519 2396813.1546048438176513)", - "surface": 12540000, - "canton": null, - "numero_insee": "22045" - } - }, - { - "pk": 34975, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "COLLINEE", - "center": "POINT (239555.2102829103241675 2377143.1881084693595767)", - "surface": 6990000, - "canton": null, - "numero_insee": "22046" - } - }, - { - "pk": 17879, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CORSEUL", - "center": "POINT (267117.2828680095262825 2396580.7365019954741001)", - "surface": 42430000, - "canton": null, - "numero_insee": "22048" - } - }, - { - "pk": 36827, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "CREHEN", - "center": "POINT (265763.5811646452639252 2403074.3278389587067068)", - "surface": 18420000, - "canton": null, - "numero_insee": "22049" - } - }, - { - "pk": 34161, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "DINAN", - "center": "POINT (275751.3074780985480174 2393148.4666341166011989)", - "surface": 4100000, - "canton": null, - "numero_insee": "22050" - } - }, - { - "pk": 3187, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "DOLO", - "center": "POINT (254294.2861827823217027 2385969.0624115122482181)", - "surface": 12100000, - "canton": null, - "numero_insee": "22051" - } - }, - { - "pk": 5245, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "DUAULT", - "center": "POINT (172506.1095262005110271 2389610.7249613683670759)", - "surface": 21840000, - "canton": null, - "numero_insee": "22052" - } - }, - { - "pk": 3064, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "EREAC", - "center": "POINT (252688.2255704661365598 2374247.5628802068531513)", - "surface": 21460000, - "canton": null, - "numero_insee": "22053" - } - }, - { - "pk": 16059, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ERQUY", - "center": "POINT (246469.3302945887553506 2413024.7393204919062555)", - "surface": 26560000, - "canton": null, - "numero_insee": "22054" - } - }, - { - "pk": 33798, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "EVRAN", - "center": "POINT (280321.0023774034343660 2384979.7926644547842443)", - "surface": 24270000, - "canton": null, - "numero_insee": "22056" - } - }, - { - "pk": 19321, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE FAOUET", - "center": "POINT (201661.0373407423030585 2422568.9402255397289991)", - "surface": 7680000, - "canton": null, - "numero_insee": "22057" - } - }, - { - "pk": 18775, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE FOEIL", - "center": "POINT (211408.0524072905536741 2392826.7418555221520364)", - "surface": 21820000, - "canton": null, - "numero_insee": "22059" - } - }, - { - "pk": 19671, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GAUSSON", - "center": "POINT (221833.7953400312107988 2378200.4931871718727052)", - "surface": 16690000, - "canton": null, - "numero_insee": "22060" - } - }, - { - "pk": 22284, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GLOMEL", - "center": "POINT (174751.7983274225261994 2371715.8134392970241606)", - "surface": 79170000, - "canton": null, - "numero_insee": "22061" - } - }, - { - "pk": 21959, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GOMENE", - "center": "POINT (241059.1968905466492288 2364446.1008650795556605)", - "surface": 25640000, - "canton": null, - "numero_insee": "22062" - } - }, - { - "pk": 16600, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GOMMENEC'H", - "center": "POINT (203300.0267004411434755 2417878.9178341464139521)", - "surface": 12190000, - "canton": null, - "numero_insee": "22063" - } - }, - { - "pk": 36179, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GOUAREC", - "center": "POINT (189243.7198007784900256 2374034.2748797731474042)", - "surface": 6630000, - "canton": null, - "numero_insee": "22064" - } - }, - { - "pk": 23360, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GOUDELIN", - "center": "POINT (204832.4987740244250745 2413988.5793300713412464)", - "surface": 23230000, - "canton": null, - "numero_insee": "22065" - } - }, - { - "pk": 20601, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE GOURAY", - "center": "POINT (242234.2686349777504802 2379966.9428466493263841)", - "surface": 30310000, - "canton": null, - "numero_insee": "22066" - } - }, - { - "pk": 32435, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GRACE-UZEL", - "center": "POINT (219169.2611358701833524 2373575.5800953847356141)", - "surface": 8120000, - "canton": null, - "numero_insee": "22068" - } - }, - { - "pk": 30898, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GUENROC", - "center": "POINT (272376.8310983941773884 2377409.7403064835816622)", - "surface": 7560000, - "canton": null, - "numero_insee": "22069" - } - }, - { - "pk": 24371, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GUINGAMP", - "center": "POINT (194958.5326508640428074 2409906.0452088466845453)", - "surface": 3480000, - "canton": null, - "numero_insee": "22070" - } - }, - { - "pk": 27166, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GUITTE", - "center": "POINT (270595.1779263589414768 2374993.5082036000676453)", - "surface": 15030000, - "canton": null, - "numero_insee": "22071" - } - }, - { - "pk": 18347, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "GURUNHUEL", - "center": "POINT (184492.1818969181040302 2404818.0880707683973014)", - "surface": 19930000, - "canton": null, - "numero_insee": "22072" - } - }, - { - "pk": 23794, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA HARMOYE", - "center": "POINT (206866.5262047967989929 2385184.5726907728239894)", - "surface": 17860000, - "canton": null, - "numero_insee": "22073" - } - }, - { - "pk": 36142, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE HAUT-CORLAY", - "center": "POINT (202165.8683968756813556 2384846.3738900907337666)", - "surface": 25910000, - "canton": null, - "numero_insee": "22074" - } - }, - { - "pk": 15897, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "HENANBIHEN", - "center": "POINT (251731.0869996058172546 2405862.3944539530202746)", - "surface": 31820000, - "canton": null, - "numero_insee": "22076" - } - }, - { - "pk": 14825, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "HENANSAL", - "center": "POINT (246742.5142527151620016 2404020.6479793637990952)", - "surface": 29210000, - "canton": null, - "numero_insee": "22077" - } - }, - { - "pk": 21876, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "HENGOAT", - "center": "POINT (192786.8956372331595048 2431003.1608046316541731)", - "surface": 6420000, - "canton": null, - "numero_insee": "22078" - } - }, - { - "pk": 15997, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "HENON", - "center": "POINT (228357.1076064242515713 2388260.5280413874424994)", - "surface": 42100000, - "canton": null, - "numero_insee": "22079" - } - }, - { - "pk": 17752, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "L'HERMITAGE-LORGE", - "center": "POINT (217187.8491460395744070 2383466.7340321913361549)", - "surface": 38680000, - "canton": null, - "numero_insee": "22080" - } - }, - { - "pk": 19466, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "HILLION", - "center": "POINT (231856.5008555618696846 2400997.9227816411294043)", - "surface": 24670000, - "canton": null, - "numero_insee": "22081" - } - }, - { - "pk": 12295, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE HINGLE", - "center": "POINT (272700.5823629111982882 2386819.1481455229222775)", - "surface": 3430000, - "canton": null, - "numero_insee": "22082" - } - }, - { - "pk": 19665, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ILLIFAUT", - "center": "POINT (252405.7632011956302449 2359734.6345692770555615)", - "surface": 26940000, - "canton": null, - "numero_insee": "22083" - } - }, - { - "pk": 14667, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "JUGON-LES-LACS", - "center": "POINT (254962.2419621684239246 2389977.3531126161105931)", - "surface": 26730000, - "canton": null, - "numero_insee": "22084" - } - }, - { - "pk": 31551, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "KERBORS", - "center": "POINT (194821.9856245351838879 2439225.1756801009178162)", - "surface": 7060000, - "canton": null, - "numero_insee": "22085" - } - }, - { - "pk": 27153, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "KERFOT", - "center": "POINT (205213.1741752600064501 2428801.9042790280655026)", - "surface": 5850000, - "canton": null, - "numero_insee": "22086" - } - }, - { - "pk": 22387, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "KERGRIST-MOELOU", - "center": "POINT (180078.7720217664609663 2381265.6757913385517895)", - "surface": 47160000, - "canton": null, - "numero_insee": "22087" - } - }, - { - "pk": 24852, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "KERIEN", - "center": "POINT (188086.4437014543218538 2393438.9685873999260366)", - "surface": 22030000, - "canton": null, - "numero_insee": "22088" - } - }, - { - "pk": 5340, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "KERMARIA-SULARD", - "center": "POINT (180449.4252312775352038 2434606.2122167916968465)", - "surface": 9250000, - "canton": null, - "numero_insee": "22090" - } - }, - { - "pk": 8107, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "KERMOROC'H", - "center": "POINT (191606.3741534937289543 2416083.3329265448264778)", - "surface": 6180000, - "canton": null, - "numero_insee": "22091" - } - }, - { - "pk": 18772, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "KERPERT", - "center": "POINT (194812.6090599046438001 2390791.3110013925470412)", - "surface": 21310000, - "canton": null, - "numero_insee": "22092" - } - }, - { - "pk": 15543, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LAMBALLE", - "center": "POINT (242800.8211866471683607 2396483.3698293669149280)", - "surface": 77400000, - "canton": null, - "numero_insee": "22093" - } - }, - { - "pk": 12987, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANCIEUX", - "center": "POINT (269312.1834532417706214 2409707.8052676175720990)", - "surface": 6540000, - "canton": null, - "numero_insee": "22094" - } - }, - { - "pk": 5173, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANDEBAERON", - "center": "POINT (191685.4467071918770671 2418685.7815610398538411)", - "surface": 6430000, - "canton": null, - "numero_insee": "22095" - } - }, - { - "pk": 14076, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANDEBIA", - "center": "POINT (254772.8055822489550337 2400983.6340544121339917)", - "surface": 3530000, - "canton": null, - "numero_insee": "22096" - } - }, - { - "pk": 10868, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA LANDEC", - "center": "POINT (265566.6798425004817545 2390363.7181451437063515)", - "surface": 7730000, - "canton": null, - "numero_insee": "22097" - } - }, - { - "pk": 5041, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANDEHEN", - "center": "POINT (238938.0559747838997282 2391548.5569779514335096)", - "surface": 12080000, - "canton": null, - "numero_insee": "22098" - } - }, - { - "pk": 20768, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANFAINS", - "center": "POINT (211254.8475632593617775 2387021.3433945188298821)", - "surface": 22430000, - "canton": null, - "numero_insee": "22099" - } - }, - { - "pk": 20111, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANGAST", - "center": "POINT (229551.8475241921842098 2376661.8266804912127554)", - "surface": 20480000, - "canton": null, - "numero_insee": "22100" - } - }, - { - "pk": 17184, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANGOAT", - "center": "POINT (185690.5570304762804881 2429945.2389226304367185)", - "surface": 18780000, - "canton": null, - "numero_insee": "22101" - } - }, - { - "pk": 21491, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANGOURLA", - "center": "POINT (247372.5375946558197029 2375705.5080968709662557)", - "surface": 21650000, - "canton": null, - "numero_insee": "22102" - } - }, - { - "pk": 35773, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANGROLAY-SUR-RANCE", - "center": "POINT (278867.0507707677897997 2403781.3197422269731760)", - "surface": 5300000, - "canton": null, - "numero_insee": "22103" - } - }, - { - "pk": 34593, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANGUEDIAS", - "center": "POINT (263694.7234134821337648 2386745.9264804981648922)", - "surface": 8760000, - "canton": null, - "numero_insee": "22104" - } - }, - { - "pk": 4787, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANGUENAN", - "center": "POINT (269794.6103251810418442 2399604.6280711079016328)", - "surface": 16080000, - "canton": null, - "numero_insee": "22105" - } - }, - { - "pk": 11056, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANGUEUX", - "center": "POINT (227153.4838008816004731 2400959.8324639187194407)", - "surface": 9210000, - "canton": null, - "numero_insee": "22106" - } - }, - { - "pk": 20625, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANISCAT", - "center": "POINT (193645.0325623634853400 2374269.9419321045279503)", - "surface": 24870000, - "canton": null, - "numero_insee": "22107" - } - }, - { - "pk": 7991, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANLEFF", - "center": "POINT (203851.0997982111293823 2423987.5963080800138414)", - "surface": 2200000, - "canton": null, - "numero_insee": "22108" - } - }, - { - "pk": 25884, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANLOUP", - "center": "POINT (209642.5942859172937460 2425535.4249820560216904)", - "surface": 2550000, - "canton": null, - "numero_insee": "22109" - } - }, - { - "pk": 11581, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANMERIN", - "center": "POINT (181479.8810557593242265 2430911.9829458799213171)", - "surface": 4230000, - "canton": null, - "numero_insee": "22110" - } - }, - { - "pk": 17756, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANNEBERT", - "center": "POINT (206192.1520190135925077 2419103.1158295255154371)", - "surface": 7030000, - "canton": null, - "numero_insee": "22112" - } - }, - { - "pk": 15409, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANNION", - "center": "POINT (173667.7814566452871077 2431749.6645045443437994)", - "surface": 47920000, - "canton": null, - "numero_insee": "22113" - } - }, - { - "pk": 3220, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANRELAS", - "center": "POINT (256018.0403383479570039 2370872.1230933275073767)", - "surface": 29930000, - "canton": null, - "numero_insee": "22114" - } - }, - { - "pk": 21007, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANRIVAIN", - "center": "POINT (188832.1064876820310019 2387840.9645013413392007)", - "surface": 37560000, - "canton": null, - "numero_insee": "22115" - } - }, - { - "pk": 21683, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANTIC", - "center": "POINT (214043.9843849840690382 2413362.5425515733659267)", - "surface": 15940000, - "canton": null, - "numero_insee": "22117" - } - }, - { - "pk": 16511, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANVALLAY", - "center": "POINT (278458.7507456105668098 2392469.9992615543305874)", - "surface": 14790000, - "canton": null, - "numero_insee": "22118" - } - }, - { - "pk": 10796, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANVELLEC", - "center": "POINT (167681.5768507380853407 2417091.3666027379222214)", - "surface": 18860000, - "canton": null, - "numero_insee": "22119" - } - }, - { - "pk": 16001, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LANVOLLON", - "center": "POINT (207509.1412853309302591 2417112.3672774238511920)", - "surface": 5040000, - "canton": null, - "numero_insee": "22121" - } - }, - { - "pk": 18589, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LAURENAN", - "center": "POINT (239325.6012710894574411 2368434.9802159261889756)", - "surface": 31220000, - "canton": null, - "numero_insee": "22122" - } - }, - { - "pk": 9496, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LEHON", - "center": "POINT (275166.3879562113434076 2391242.3538508457131684)", - "surface": 4660000, - "canton": null, - "numero_insee": "22123" - } - }, - { - "pk": 21343, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LESCOUET-GOUAREC", - "center": "POINT (187901.7230570865795016 2366718.0905333026312292)", - "surface": 19140000, - "canton": null, - "numero_insee": "22124" - } - }, - { - "pk": 25312, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE LESLAY", - "center": "POINT (207797.6262979982420802 2393798.2705422635190189)", - "surface": 5100000, - "canton": null, - "numero_insee": "22126" - } - }, - { - "pk": 17114, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LEZARDRIEUX", - "center": "POINT (200046.9881795629044063 2436565.5145288552157581)", - "surface": 12180000, - "canton": null, - "numero_insee": "22127" - } - }, - { - "pk": 17768, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOCARN", - "center": "POINT (174036.9178972083609551 2385920.3891414199024439)", - "surface": 32550000, - "canton": null, - "numero_insee": "22128" - } - }, - { - "pk": 35944, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOC-ENVEL", - "center": "POINT (175580.0190870295627974 2405546.8239017147570848)", - "surface": 3410000, - "canton": null, - "numero_insee": "22129" - } - }, - { - "pk": 16615, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOGUIVY-PLOUGRAS", - "center": "POINT (169571.3337632592301816 2406098.8552543935365975)", - "surface": 48940000, - "canton": null, - "numero_insee": "22131" - } - }, - { - "pk": 22119, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOHUEC", - "center": "POINT (166610.4857252000365406 2400971.4052735804580152)", - "surface": 17420000, - "canton": null, - "numero_insee": "22132" - } - }, - { - "pk": 19067, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOSCOUET-SUR-MEU", - "center": "POINT (258884.9353387927985750 2362889.5439825993962586)", - "surface": 22250000, - "canton": null, - "numero_insee": "22133" - } - }, - { - "pk": 18931, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOUANNEC", - "center": "POINT (177735.6639574453001842 2436085.3711340613663197)", - "surface": 14350000, - "canton": null, - "numero_insee": "22134" - } - }, - { - "pk": 18927, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOUARGAT", - "center": "POINT (181140.8637891504331492 2410895.3675616467371583)", - "surface": 58430000, - "canton": null, - "numero_insee": "22135" - } - }, - { - "pk": 29662, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LOUDEAC", - "center": "POINT (221740.5816592987976037 2364990.0870700511150062)", - "surface": 81940000, - "canton": null, - "numero_insee": "22136" - } - }, - { - "pk": 15418, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MAEL-CARHAIX", - "center": "POINT (173776.2213415986043401 2381014.7403463786467910)", - "surface": 37040000, - "canton": null, - "numero_insee": "22137" - } - }, - { - "pk": 22928, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MAEL-PESTIVIEN", - "center": "POINT (183585.1297010837006383 2393202.5223263734951615)", - "surface": 31810000, - "canton": null, - "numero_insee": "22138" - } - }, - { - "pk": 4793, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MAGOAR", - "center": "POINT (191897.7974254005239345 2392368.9322769204154611)", - "surface": 7830000, - "canton": null, - "numero_insee": "22139" - } - }, - { - "pk": 30500, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA MALHOURE", - "center": "POINT (242366.2300702350912616 2388374.0637689535506070)", - "surface": 5170000, - "canton": null, - "numero_insee": "22140" - } - }, - { - "pk": 5371, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MANTALLOT", - "center": "POINT (185912.4649827935500070 2427245.1710956711322069)", - "surface": 2840000, - "canton": null, - "numero_insee": "22141" - } - }, - { - "pk": 18692, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MATIGNON", - "center": "POINT (258799.8471162953064777 2410322.8705459097400308)", - "surface": 14720000, - "canton": null, - "numero_insee": "22143" - } - }, - { - "pk": 30499, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA MEAUGON", - "center": "POINT (217037.2821210467955098 2402078.8087496883235872)", - "surface": 6740000, - "canton": null, - "numero_insee": "22144" - } - }, - { - "pk": 21787, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MEGRIT", - "center": "POINT (259091.7269575966638513 2386708.5268108011223376)", - "surface": 21220000, - "canton": null, - "numero_insee": "22145" - } - }, - { - "pk": 21167, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MELLIONNEC", - "center": "POINT (181694.3308183500776067 2367068.3181591765023768)", - "surface": 24370000, - "canton": null, - "numero_insee": "22146" - } - }, - { - "pk": 22402, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MERDRIGNAC", - "center": "POINT (248255.8988634885172360 2365505.2225485104136169)", - "surface": 57430000, - "canton": null, - "numero_insee": "22147" - } - }, - { - "pk": 4073, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MERILLAC", - "center": "POINT (249006.8921841033152305 2371615.7850188650190830)", - "surface": 14010000, - "canton": null, - "numero_insee": "22148" - } - }, - { - "pk": 32807, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MERLEAC", - "center": "POINT (210637.7220191681990400 2376708.9006921853870153)", - "surface": 30320000, - "canton": null, - "numero_insee": "22149" - } - }, - { - "pk": 14754, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MESLIN", - "center": "POINT (235713.2721553708543070 2394324.4158445438370109)", - "surface": 14260000, - "canton": null, - "numero_insee": "22151" - } - }, - { - "pk": 16231, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MINIHY-TREGUIER", - "center": "POINT (188864.3003674231003970 2433473.2300175684504211)", - "surface": 12820000, - "canton": null, - "numero_insee": "22152" - } - }, - { - "pk": 30935, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MONCONTOUR", - "center": "POINT (231886.9533242054167204 2384886.6765878098085523)", - "surface": 480000, - "canton": null, - "numero_insee": "22153" - } - }, - { - "pk": 20266, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA MOTTE", - "center": "POINT (225593.7678587778937072 2371125.7600873028859496)", - "surface": 43460000, - "canton": null, - "numero_insee": "22155" - } - }, - { - "pk": 20313, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MOUSTERU", - "center": "POINT (188679.5400652902899310 2406753.1997301084920764)", - "surface": 14460000, - "canton": null, - "numero_insee": "22156" - } - }, - { - "pk": 4885, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "MUR-DE-BRETAGNE", - "center": "POINT (204699.2473069206462242 2368554.9762764880433679)", - "surface": 31210000, - "canton": null, - "numero_insee": "22158" - } - }, - { - "pk": 29917, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "NOYAL", - "center": "POINT (245020.0966344319167547 2394299.8049541441723704)", - "surface": 7090000, - "canton": null, - "numero_insee": "22160" - } - }, - { - "pk": 5893, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PABU", - "center": "POINT (195839.7210186321754009 2412314.8406362771056592)", - "surface": 7980000, - "canton": null, - "numero_insee": "22161" - } - }, - { - "pk": 34291, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PAIMPOL", - "center": "POINT (203778.3594781534629874 2432993.1913805683143437)", - "surface": 23940000, - "canton": null, - "numero_insee": "22162" - } - }, - { - "pk": 16612, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PAULE", - "center": "POINT (169524.9512168185901828 2374575.8332330612465739)", - "surface": 38040000, - "canton": null, - "numero_insee": "22163" - } - }, - { - "pk": 21388, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PEDERNEC", - "center": "POINT (186023.0047403484350070 2413536.5503549501299858)", - "surface": 26950000, - "canton": null, - "numero_insee": "22164" - } - }, - { - "pk": 21456, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PENGUILY", - "center": "POINT (242188.0107502571190707 2385670.6796394083648920)", - "surface": 10780000, - "canton": null, - "numero_insee": "22165" - } - }, - { - "pk": 35618, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PERRET", - "center": "POINT (192491.8878694373997860 2368356.3102850536815822)", - "surface": 12430000, - "canton": null, - "numero_insee": "22167" - } - }, - { - "pk": 3006, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PERROS-GUIREC", - "center": "POINT (173808.2767496924498118 2439155.8499491959810257)", - "surface": 14950000, - "canton": null, - "numero_insee": "22168" - } - }, - { - "pk": 23176, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PEUMERIT-QUINTIN", - "center": "POINT (183721.5040071319672279 2388700.3919884641654789)", - "surface": 14890000, - "canton": null, - "numero_insee": "22169" - } - }, - { - "pk": 21004, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLAINTEL", - "center": "POINT (219024.3215389032848179 2391487.3430840410292149)", - "surface": 27480000, - "canton": null, - "numero_insee": "22171" - } - }, - { - "pk": 3971, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLANCOET", - "center": "POINT (263484.0673187777865678 2400353.8976478534750640)", - "surface": 11550000, - "canton": null, - "numero_insee": "22172" - } - }, - { - "pk": 20352, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLANGUENOUAL", - "center": "POINT (237836.8288924442604184 2403948.4308981164358556)", - "surface": 32690000, - "canton": null, - "numero_insee": "22173" - } - }, - { - "pk": 23451, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEBOULLE", - "center": "POINT (255502.6330225081183016 2409695.6757127847522497)", - "surface": 14230000, - "canton": null, - "numero_insee": "22174" - } - }, - { - "pk": 23538, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEDELIAC", - "center": "POINT (251911.5589064954547212 2395956.8634815686382353)", - "surface": 52720000, - "canton": null, - "numero_insee": "22175" - } - }, - { - "pk": 18337, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEGUIEN", - "center": "POINT (210611.9042288381606340 2417037.3743721931241453)", - "surface": 15670000, - "canton": null, - "numero_insee": "22177" - } - }, - { - "pk": 21067, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEHEDEL", - "center": "POINT (206752.9126769863651134 2424011.0391102498397231)", - "surface": 12710000, - "canton": null, - "numero_insee": "22178" - } - }, - { - "pk": 15317, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "FREHEL", - "center": "POINT (253664.1273955640499480 2414283.9594657719135284)", - "surface": 19430000, - "canton": null, - "numero_insee": "22179" - } - }, - { - "pk": 13724, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLELAN-LE-PETIT", - "center": "POINT (262562.2953409727197140 2390639.5158184757456183)", - "surface": 21880000, - "canton": null, - "numero_insee": "22180" - } - }, - { - "pk": 20413, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLELAUFF", - "center": "POINT (188376.2224497163551860 2369924.2722115227952600)", - "surface": 25910000, - "canton": null, - "numero_insee": "22181" - } - }, - { - "pk": 19882, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLELO", - "center": "POINT (211485.2122836599010043 2408038.1405084831640124)", - "surface": 44350000, - "canton": null, - "numero_insee": "22182" - } - }, - { - "pk": 14432, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEMET", - "center": "POINT (234145.6505391612299718 2365490.8594376533292234)", - "surface": 41530000, - "canton": null, - "numero_insee": "22183" - } - }, - { - "pk": 15998, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEMY", - "center": "POINT (228501.7471047730650753 2382757.7401172770187259)", - "surface": 39970000, - "canton": null, - "numero_insee": "22184" - } - }, - { - "pk": 37042, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLENEE-JUGON", - "center": "POINT (247909.5971469605574384 2383515.5109102320857346)", - "surface": 62390000, - "canton": null, - "numero_insee": "22185" - } - }, - { - "pk": 21497, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLENEUF-VAL-ANDRE", - "center": "POINT (240994.2515445189783350 2409477.8913472695276141)", - "surface": 16990000, - "canton": null, - "numero_insee": "22186" - } - }, - { - "pk": 3121, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLERNEUF", - "center": "POINT (214632.5046244522673078 2402459.6412405450828373)", - "surface": 8500000, - "canton": null, - "numero_insee": "22188" - } - }, - { - "pk": 18334, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLESIDY", - "center": "POINT (195967.3455114074167795 2396504.7083685272373259)", - "surface": 26220000, - "canton": null, - "numero_insee": "22189" - } - }, - { - "pk": 16134, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLESLIN-TRIGAVOU", - "center": "POINT (274484.5972331541124731 2401243.9013226246461272)", - "surface": 21950000, - "canton": null, - "numero_insee": "22190" - } - }, - { - "pk": 17755, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLESSALA", - "center": "POINT (233067.9457452936330810 2374989.0770175736397505)", - "surface": 51410000, - "canton": null, - "numero_insee": "22191" - } - }, - { - "pk": 3298, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLESSIX-BALISSON", - "center": "POINT (269269.0688664637855254 2402702.5427090614102781)", - "surface": 80000, - "canton": null, - "numero_insee": "22192" - } - }, - { - "pk": 4429, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLESTAN", - "center": "POINT (246454.2861457365797833 2390208.5132277724333107)", - "surface": 33380000, - "canton": null, - "numero_insee": "22193" - } - }, - { - "pk": 3280, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLESTIN-LES-GREVES", - "center": "POINT (161337.3414757262798958 2422043.7980274981819093)", - "surface": 34470000, - "canton": null, - "numero_insee": "22194" - } - }, - { - "pk": 37338, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEUBIAN", - "center": "POINT (198608.9700829825014807 2441157.0283200321719050)", - "surface": 20220000, - "canton": null, - "numero_insee": "22195" - } - }, - { - "pk": 16005, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEUMEUR-BODOU", - "center": "POINT (170226.1991397552192211 2436625.3064178582280874)", - "surface": 27490000, - "canton": null, - "numero_insee": "22198" - } - }, - { - "pk": 23046, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEUMEUR-GAUTIER", - "center": "POINT (196845.8259523604647256 2436439.6050221547484398)", - "surface": 19360000, - "canton": null, - "numero_insee": "22199" - } - }, - { - "pk": 14679, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEVEN", - "center": "POINT (255796.1966412219335325 2398189.9624515888281167)", - "surface": 9670000, - "canton": null, - "numero_insee": "22200" - } - }, - { - "pk": 4225, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEVENON", - "center": "POINT (256947.5179017136688344 2416612.2152313855476677)", - "surface": 14230000, - "canton": null, - "numero_insee": "22201" - } - }, - { - "pk": 20727, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLEVIN", - "center": "POINT (165423.0233729393803515 2374442.7328530708327889)", - "surface": 27880000, - "canton": null, - "numero_insee": "22202" - } - }, - { - "pk": 16502, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOEUC-SUR-LIE", - "center": "POINT (221887.6942645359667949 2383905.0546111641451716)", - "surface": 45460000, - "canton": null, - "numero_insee": "22203" - } - }, - { - "pk": 17307, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOREC-SUR-ARGUENON", - "center": "POINT (257022.9720911749755032 2394997.6530605647712946)", - "surface": 13810000, - "canton": null, - "numero_insee": "22205" - } - }, - { - "pk": 30111, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUAGAT", - "center": "POINT (206700.7494573981384747 2405697.8505038260482252)", - "surface": 32410000, - "canton": null, - "numero_insee": "22206" - } - }, - { - "pk": 21225, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUARET", - "center": "POINT (171075.6718639905448072 2418119.3882746365852654)", - "surface": 30670000, - "canton": null, - "numero_insee": "22207" - } - }, - { - "pk": 23536, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUASNE", - "center": "POINT (277684.3904908811673522 2376952.5619106320664287)", - "surface": 34490000, - "canton": null, - "numero_insee": "22208" - } - }, - { - "pk": 20558, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUBALAY", - "center": "POINT (270451.1205932101584040 2405013.7721129828132689)", - "surface": 36000000, - "canton": null, - "numero_insee": "22209" - } - }, - { - "pk": 17747, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUBAZLANEC", - "center": "POINT (204750.6883451371104456 2436503.4319415721111000)", - "surface": 15630000, - "canton": null, - "numero_insee": "22210" - } - }, - { - "pk": 16002, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUBEZRE", - "center": "POINT (174220.4735686362837441 2425249.6403279299847782)", - "surface": 31060000, - "canton": null, - "numero_insee": "22211" - } - }, - { - "pk": 20649, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUEC-DU-TRIEUX", - "center": "POINT (193256.5797389369108714 2422401.0257933624088764)", - "surface": 18610000, - "canton": null, - "numero_insee": "22212" - } - }, - { - "pk": 14668, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUER-SUR-RANCE", - "center": "POINT (279193.3014562858734280 2400581.7203951692208648)", - "surface": 20130000, - "canton": null, - "numero_insee": "22213" - } - }, - { - "pk": 34527, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUEZEC", - "center": "POINT (209116.4054366123164073 2428733.3732960247434676)", - "surface": 28510000, - "canton": null, - "numero_insee": "22214" - } - }, - { - "pk": 17181, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUFRAGAN", - "center": "POINT (219755.2079041308606975 2400099.3816058174706995)", - "surface": 26870000, - "canton": null, - "numero_insee": "22215" - } - }, - { - "pk": 29922, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUGONVER", - "center": "POINT (178004.9425944330869243 2402664.3096388019621372)", - "surface": 36400000, - "canton": null, - "numero_insee": "22216" - } - }, - { - "pk": 4764, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUGRAS", - "center": "POINT (164076.6610715778660960 2404953.8494641948491335)", - "surface": 26950000, - "canton": null, - "numero_insee": "22217" - } - }, - { - "pk": 21630, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUGRESCANT", - "center": "POINT (190603.2655366748804227 2441192.4965442358516157)", - "surface": 16360000, - "canton": null, - "numero_insee": "22218" - } - }, - { - "pk": 3271, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUGUENAST", - "center": "POINT (225552.4434855552390218 2376229.1452219332568347)", - "surface": 34950000, - "canton": null, - "numero_insee": "22219" - } - }, - { - "pk": 19728, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUGUERNEVEL", - "center": "POINT (185440.3826162490877323 2374103.6652970658615232)", - "surface": 41740000, - "canton": null, - "numero_insee": "22220" - } - }, - { - "pk": 18280, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUGUIEL", - "center": "POINT (190032.7592540000332519 2437485.3826083652675152)", - "surface": 19810000, - "canton": null, - "numero_insee": "22221" - } - }, - { - "pk": 18332, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUHA", - "center": "POINT (212170.8474520141026005 2422253.5833177822642028)", - "surface": 41310000, - "canton": null, - "numero_insee": "22222" - } - }, - { - "pk": 17185, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUISY", - "center": "POINT (192235.0123304328881204 2412585.9592997399158776)", - "surface": 24010000, - "canton": null, - "numero_insee": "22223" - } - }, - { - "pk": 36868, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUMAGOAR", - "center": "POINT (197889.4633371779927984 2406327.1725472477264702)", - "surface": 32110000, - "canton": null, - "numero_insee": "22225" - } - }, - { - "pk": 17760, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUMILLIAU", - "center": "POINT (169415.0506795512046665 2425511.1544318185187876)", - "surface": 35000000, - "canton": null, - "numero_insee": "22226" - } - }, - { - "pk": 17761, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUNERIN", - "center": "POINT (165915.8706079347757623 2412674.0763069540262222)", - "surface": 26330000, - "canton": null, - "numero_insee": "22227" - } - }, - { - "pk": 3454, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUNEVEZ-MOEDEC", - "center": "POINT (173439.1798761964892037 2410433.0324133103713393)", - "surface": 41070000, - "canton": null, - "numero_insee": "22228" - } - }, - { - "pk": 16011, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUNEVEZ-QUINTIN", - "center": "POINT (186294.9732950496836565 2379814.7120542926713824)", - "surface": 43420000, - "canton": null, - "numero_insee": "22229" - } - }, - { - "pk": 15539, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOURAC'H", - "center": "POINT (164446.9135738640325144 2396250.6418643016368151)", - "surface": 32530000, - "canton": null, - "numero_insee": "22231" - } - }, - { - "pk": 23495, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOURHAN", - "center": "POINT (215420.5935775016550906 2416375.7665029144845903)", - "surface": 17240000, - "canton": null, - "numero_insee": "22232" - } - }, - { - "pk": 20458, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOURIVO", - "center": "POINT (200703.1057765104924329 2429666.0964046525768936)", - "surface": 29080000, - "canton": null, - "numero_insee": "22233" - } - }, - { - "pk": 18219, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUVARA", - "center": "POINT (211235.9854966981802136 2401731.6819490571506321)", - "surface": 23040000, - "canton": null, - "numero_insee": "22234" - } - }, - { - "pk": 13897, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLOUZELAMBRE", - "center": "POINT (167345.1443706011632457 2421591.7912859092466533)", - "surface": 7790000, - "canton": null, - "numero_insee": "22235" - } - }, - { - "pk": 29013, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUDUAL", - "center": "POINT (207979.5376643343479373 2420818.7375626009888947)", - "surface": 9570000, - "canton": null, - "numero_insee": "22236" - } - }, - { - "pk": 18578, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUDUNO", - "center": "POINT (258970.6184681490994990 2401618.1472825789824128)", - "surface": 28860000, - "canton": null, - "numero_insee": "22237" - } - }, - { - "pk": 14758, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUFUR", - "center": "POINT (164474.7196300653740764 2417665.9767200625501573)", - "surface": 17430000, - "canton": null, - "numero_insee": "22238" - } - }, - { - "pk": 18335, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUMAUDAN", - "center": "POINT (270135.5084585237782449 2382295.0515725892037153)", - "surface": 19090000, - "canton": null, - "numero_insee": "22239" - } - }, - { - "pk": 20238, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUMAUGAT", - "center": "POINT (260824.4801772337523289 2370510.8760498971678317)", - "surface": 43770000, - "canton": null, - "numero_insee": "22240" - } - }, - { - "pk": 16958, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUMIEUX", - "center": "POINT (233116.2771292628603987 2356676.0143795269541442)", - "surface": 39810000, - "canton": null, - "numero_insee": "22241" - } - }, - { - "pk": 23973, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLURIEN", - "center": "POINT (250783.4134578733355738 2411658.7657241597771645)", - "surface": 21800000, - "canton": null, - "numero_insee": "22242" - } - }, - { - "pk": 4577, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUSQUELLEC", - "center": "POINT (169270.9799484398099594 2393687.6148924655281007)", - "surface": 26750000, - "canton": null, - "numero_insee": "22243" - } - }, - { - "pk": 20112, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PLUSSULIEN", - "center": "POINT (199218.0454131035367027 2378117.7097074482589960)", - "surface": 22760000, - "canton": null, - "numero_insee": "22244" - } - }, - { - "pk": 17758, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "POMMERIT-JAUDY", - "center": "POINT (189705.1495683209504932 2428476.5833211774006486)", - "surface": 20880000, - "canton": null, - "numero_insee": "22247" - } - }, - { - "pk": 30110, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "POMMERIT-LE-VICOMTE", - "center": "POINT (199112.7301668401341885 2415943.7790092690847814)", - "surface": 33570000, - "canton": null, - "numero_insee": "22248" - } - }, - { - "pk": 23931, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PONT-MELVEZ", - "center": "POINT (184523.6493501541553997 2400915.5794473467394710)", - "surface": 23470000, - "canton": null, - "numero_insee": "22249" - } - }, - { - "pk": 10415, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PONTRIEUX", - "center": "POINT (195534.6016915421932936 2425321.4137104987166822)", - "surface": 1050000, - "canton": null, - "numero_insee": "22250" - } - }, - { - "pk": 4556, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PORDIC", - "center": "POINT (219180.4035646474803798 2409301.2178226169198751)", - "surface": 28880000, - "canton": null, - "numero_insee": "22251" - } - }, - { - "pk": 9126, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "POULDOURAN", - "center": "POINT (192773.1710835043340921 2432704.2142979302443564)", - "surface": 1030000, - "canton": null, - "numero_insee": "22253" - } - }, - { - "pk": 20993, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "PRAT", - "center": "POINT (185237.0380584042868577 2424137.5858251438476145)", - "surface": 22270000, - "canton": null, - "numero_insee": "22254" - } - }, - { - "pk": 3686, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA PRENESSAYE", - "center": "POINT (229540.1374037805362605 2365753.7624982581473887)", - "surface": 17250000, - "canton": null, - "numero_insee": "22255" - } - }, - { - "pk": 17748, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "QUEMPER-GUEZENNEC", - "center": "POINT (199338.5908151147887111 2425151.9828830603510141)", - "surface": 23400000, - "canton": null, - "numero_insee": "22256" - } - }, - { - "pk": 5008, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "QUEMPERVEN", - "center": "POINT (182695.1440502716577612 2429120.5414624102413654)", - "surface": 7960000, - "canton": null, - "numero_insee": "22257" - } - }, - { - "pk": 35772, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "QUEVERT", - "center": "POINT (272942.1744643714046106 2394026.2547198301181197)", - "surface": 12800000, - "canton": null, - "numero_insee": "22259" - } - }, - { - "pk": 17753, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE QUILLIO", - "center": "POINT (211368.1242603913415223 2373012.1089230705983937)", - "surface": 16430000, - "canton": null, - "numero_insee": "22260" - } - }, - { - "pk": 20273, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "QUINTENIC", - "center": "POINT (248470.3931916658766568 2400732.3382361107505858)", - "surface": 7530000, - "canton": null, - "numero_insee": "22261" - } - }, - { - "pk": 24716, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "QUINTIN", - "center": "POINT (211521.8714149635052308 2391126.4456551456823945)", - "surface": 3140000, - "canton": null, - "numero_insee": "22262" - } - }, - { - "pk": 7909, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE QUIOU", - "center": "POINT (278754.9798499984317459 2380663.9505281439051032)", - "surface": 5240000, - "canton": null, - "numero_insee": "22263" - } - }, - { - "pk": 29488, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA ROCHE-DERRIEN", - "center": "POINT (188684.3515795296407305 2430970.0668348479084671)", - "surface": 1810000, - "canton": null, - "numero_insee": "22264" - } - }, - { - "pk": 4606, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ROSPEZ", - "center": "POINT (179180.8709404011606239 2430593.2506151301786304)", - "surface": 13410000, - "canton": null, - "numero_insee": "22265" - } - }, - { - "pk": 19582, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ROSTRENEN", - "center": "POINT (180545.1863892516121268 2373063.4593715337105095)", - "surface": 32250000, - "canton": null, - "numero_insee": "22266" - } - }, - { - "pk": 28901, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "ROUILLAC", - "center": "POINT (250957.0464960595127195 2377936.1964193591848016)", - "surface": 16080000, - "canton": null, - "numero_insee": "22267" - } - }, - { - "pk": 28597, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "RUCA", - "center": "POINT (255231.6904703860054724 2406090.9524188893847167)", - "surface": 12320000, - "canton": null, - "numero_insee": "22268" - } - }, - { - "pk": 37725, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "RUNAN", - "center": "POINT (190439.4866767443018034 2424279.6115830312483013)", - "surface": 5240000, - "canton": null, - "numero_insee": "22269" - } - }, - { - "pk": 15942, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-ADRIEN", - "center": "POINT (195923.7250530749442987 2401908.1935274153947830)", - "surface": 10060000, - "canton": null, - "numero_insee": "22271" - } - }, - { - "pk": 13483, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-AGATHON", - "center": "POINT (198761.7605662748101167 2409836.6775946528650820)", - "surface": 14660000, - "canton": null, - "numero_insee": "22272" - } - }, - { - "pk": 22732, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-ALBAN", - "center": "POINT (242321.8528018828365020 2406186.3407960543408990)", - "surface": 30480000, - "canton": null, - "numero_insee": "22273" - } - }, - { - "pk": 3197, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-ANDRE-DES-EAUX", - "center": "POINT (277729.0796209499821998 2383757.8343227733857930)", - "surface": 5560000, - "canton": null, - "numero_insee": "22274" - } - }, - { - "pk": 19375, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-BARNABE", - "center": "POINT (225176.8951207638019696 2360814.8092351024970412)", - "surface": 23190000, - "canton": null, - "numero_insee": "22275" - } - }, - { - "pk": 20067, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-BIHY", - "center": "POINT (207240.9082675758982077 2388389.9021324822679162)", - "surface": 8410000, - "canton": null, - "numero_insee": "22276" - } - }, - { - "pk": 15999, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-BRANDAN", - "center": "POINT (215037.0984021899057552 2389553.7259453325532377)", - "surface": 25430000, - "canton": null, - "numero_insee": "22277" - } - }, - { - "pk": 21860, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-BRIEUC", - "center": "POINT (223435.7186702106846496 2402831.0778038948774338)", - "surface": 19410000, - "canton": null, - "numero_insee": "22278" - } - }, - { - "pk": 22625, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-CARADEC", - "center": "POINT (213213.8342962696333416 2367523.0057589979842305)", - "surface": 22070000, - "canton": null, - "numero_insee": "22279" - } - }, - { - "pk": 32504, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-CARNE", - "center": "POINT (274983.3544656830490567 2389139.3649431802332401)", - "surface": 8550000, - "canton": null, - "numero_insee": "22280" - } - }, - { - "pk": 4504, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-CARREUC", - "center": "POINT (223536.1563391161616892 2390423.0705192266032100)", - "surface": 13160000, - "canton": null, - "numero_insee": "22281" - } - }, - { - "pk": 19607, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-CAST-LE-GUILDO", - "center": "POINT (261801.7453933149809018 2410347.2551795430481434)", - "surface": 22870000, - "canton": null, - "numero_insee": "22282" - } - }, - { - "pk": 22105, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-CLET", - "center": "POINT (196962.9383655606070533 2421930.5924172457307577)", - "surface": 14830000, - "canton": null, - "numero_insee": "22283" - } - }, - { - "pk": 23359, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-CONNAN", - "center": "POINT (199497.8946720795356669 2393030.7160346051678061)", - "surface": 13670000, - "canton": null, - "numero_insee": "22284" - } - }, - { - "pk": 19167, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-CONNEC", - "center": "POINT (208818.9786843074834906 2366486.7321647987700999)", - "surface": 11270000, - "canton": null, - "numero_insee": "22285" - } - }, - { - "pk": 32828, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-DENOUAL", - "center": "POINT (251265.6905924394377507 2401555.5880029024556279)", - "surface": 8650000, - "canton": null, - "numero_insee": "22286" - } - }, - { - "pk": 19251, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-DONAN", - "center": "POINT (213867.5959433146636002 2398050.3363021477125585)", - "surface": 22860000, - "canton": null, - "numero_insee": "22287" - } - }, - { - "pk": 15306, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-ETIENNE-DU-GUE-DE-L'ISLE", - "center": "POINT (229129.7832458115881309 2354642.2261980883777142)", - "surface": 15320000, - "canton": null, - "numero_insee": "22288" - } - }, - { - "pk": 28844, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-FIACRE", - "center": "POINT (201562.0798126538284123 2397650.6692552533932030)", - "surface": 9810000, - "canton": null, - "numero_insee": "22289" - } - }, - { - "pk": 34292, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GELVEN", - "center": "POINT (197061.0304837153526023 2372596.2787823313847184)", - "surface": 17990000, - "canton": null, - "numero_insee": "22290" - } - }, - { - "pk": 12520, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GILDAS", - "center": "POINT (204695.6143334998050705 2393773.2028516684658825)", - "surface": 16030000, - "canton": null, - "numero_insee": "22291" - } - }, - { - "pk": 24369, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GILLES-DU-MENE", - "center": "POINT (237197.4300337742897682 2371720.1401724824681878)", - "surface": 13140000, - "canton": null, - "numero_insee": "22292" - } - }, - { - "pk": 5713, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GILLES-LES-BOIS", - "center": "POINT (200278.7439175382023677 2420256.1843986995518208)", - "surface": 9610000, - "canton": null, - "numero_insee": "22293" - } - }, - { - "pk": 21281, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GILLES-PLIGEAUX", - "center": "POINT (198426.2687264825217426 2389419.4817327512428164)", - "surface": 19880000, - "canton": null, - "numero_insee": "22294" - } - }, - { - "pk": 33337, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GILLES-VIEUX-MARCHE", - "center": "POINT (206152.5335416604066268 2374471.0402383161708713)", - "surface": 22170000, - "canton": null, - "numero_insee": "22295" - } - }, - { - "pk": 14755, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GLEN", - "center": "POINT (240002.8004543182905763 2383651.5195098095573485)", - "surface": 11140000, - "canton": null, - "numero_insee": "22296" - } - }, - { - "pk": 17644, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GOUENO", - "center": "POINT (237064.1048435862758197 2375822.0473102824762464)", - "surface": 19900000, - "canton": null, - "numero_insee": "22297" - } - }, - { - "pk": 21455, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-GUEN", - "center": "POINT (209992.2741098646074533 2369898.7153973933309317)", - "surface": 17900000, - "canton": null, - "numero_insee": "22298" - } - }, - { - "pk": 29816, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-HELEN", - "center": "POINT (282349.8642731147701852 2393902.6684405771084130)", - "surface": 17200000, - "canton": null, - "numero_insee": "22299" - } - }, - { - "pk": 9637, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-HERVE", - "center": "POINT (217945.7931939235422760 2376367.7202518940903246)", - "surface": 9990000, - "canton": null, - "numero_insee": "22300" - } - }, - { - "pk": 18470, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-JACUT-DE-LA-MER", - "center": "POINT (265919.7909707595827058 2408479.3893329333513975)", - "surface": 2990000, - "canton": null, - "numero_insee": "22302" - } - }, - { - "pk": 27152, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-JACUT-DU-MENE", - "center": "POINT (242172.3464922429411672 2375263.0307493223808706)", - "surface": 19960000, - "canton": null, - "numero_insee": "22303" - } - }, - { - "pk": 22362, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-JEAN-KERDANIEL", - "center": "POINT (203677.0050000966293737 2408375.3206996857188642)", - "surface": 11120000, - "canton": null, - "numero_insee": "22304" - } - }, - { - "pk": 35888, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-JOUAN-DE-L'ISLE", - "center": "POINT (264910.1217337423586287 2372645.6116113755851984)", - "surface": 8370000, - "canton": null, - "numero_insee": "22305" - } - }, - { - "pk": 6417, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-JUDOCE", - "center": "POINT (282043.2921073483303189 2382391.9439136125147343)", - "surface": 10450000, - "canton": null, - "numero_insee": "22306" - } - }, - { - "pk": 6343, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-JULIEN", - "center": "POINT (218890.2517712722183205 2395689.2568246386945248)", - "surface": 5610000, - "canton": null, - "numero_insee": "22307" - } - }, - { - "pk": 17514, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-JUVAT", - "center": "POINT (274635.1964108499814756 2382731.9399876086972654)", - "surface": 18050000, - "canton": null, - "numero_insee": "22308" - } - }, - { - "pk": 3300, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-LAUNEUC", - "center": "POINT (251624.8654574212851003 2369635.5740295881405473)", - "surface": 11700000, - "canton": null, - "numero_insee": "22309" - } - }, - { - "pk": 18929, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-LAURENT", - "center": "POINT (188802.1821455272147432 2416360.9203659375198185)", - "surface": 8970000, - "canton": null, - "numero_insee": "22310" - } - }, - { - "pk": 31321, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-LORMEL", - "center": "POINT (262549.3430100772529840 2404549.2632572003640234)", - "surface": 10120000, - "canton": null, - "numero_insee": "22311" - } - }, - { - "pk": 21005, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-MARTIN-DES-PRES", - "center": "POINT (206903.7288200684706680 2380581.5476605249568820)", - "surface": 20690000, - "canton": null, - "numero_insee": "22313" - } - }, - { - "pk": 10264, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-MAUDAN", - "center": "POINT (220095.3256921612191945 2358071.6695091519504786)", - "surface": 6810000, - "canton": null, - "numero_insee": "22314" - } - }, - { - "pk": 25559, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-MAUDEZ", - "center": "POINT (265740.7822149728890508 2393567.4153993646614254)", - "surface": 5310000, - "canton": null, - "numero_insee": "22315" - } - }, - { - "pk": 20772, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-MAYEUX", - "center": "POINT (202834.9799561377731152 2376345.6170490467920899)", - "surface": 30810000, - "canton": null, - "numero_insee": "22316" - } - }, - { - "pk": 18040, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-MELOIR-DES-BOIS", - "center": "POINT (260146.1069623880903237 2392421.1693773358128965)", - "surface": 6410000, - "canton": null, - "numero_insee": "22317" - } - }, - { - "pk": 26732, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-MICHEL-DE-PLELAN", - "center": "POINT (262930.0295605492428876 2394645.3549527712166309)", - "surface": 7720000, - "canton": null, - "numero_insee": "22318" - } - }, - { - "pk": 25496, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-MICHEL-EN-GREVE", - "center": "POINT (166119.4256307898904197 2424684.0753919384442270)", - "surface": 4670000, - "canton": null, - "numero_insee": "22319" - } - }, - { - "pk": 22766, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-NICOLAS-DU-PELEM", - "center": "POINT (192269.0583817797596566 2383565.5950933597050607)", - "surface": 41500000, - "canton": null, - "numero_insee": "22321" - } - }, - { - "pk": 23793, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-PEVER", - "center": "POINT (198934.5425594333210029 2400831.7222830303944647)", - "surface": 13180000, - "canton": null, - "numero_insee": "22322" - } - }, - { - "pk": 16133, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-POTAN", - "center": "POINT (258239.2881852841237560 2405414.8836916978470981)", - "surface": 20060000, - "canton": null, - "numero_insee": "22323" - } - }, - { - "pk": 22536, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-QUAY-PERROS", - "center": "POINT (174933.9352357290335931 2436062.8033882915042341)", - "surface": 4740000, - "canton": null, - "numero_insee": "22324" - } - }, - { - "pk": 10291, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-QUAY-PORTRIEUX", - "center": "POINT (218403.8675286627840251 2418701.4945492893457413)", - "surface": 3950000, - "canton": null, - "numero_insee": "22325" - } - }, - { - "pk": 11969, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-RIEUL", - "center": "POINT (248030.9666482342872769 2393223.4482436925172806)", - "surface": 6460000, - "canton": null, - "numero_insee": "22326" - } - }, - { - "pk": 36363, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-SAMSON-SUR-RANCE", - "center": "POINT (278121.9126083482988179 2396970.4551771371625364)", - "surface": 6390000, - "canton": null, - "numero_insee": "22327" - } - }, - { - "pk": 25834, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-SERVAIS", - "center": "POINT (177192.2512273918837309 2391749.9875126159749925)", - "surface": 28320000, - "canton": null, - "numero_insee": "22328" - } - }, - { - "pk": 5271, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-THELO", - "center": "POINT (215568.4886137213325128 2373346.3002892993390560)", - "surface": 14670000, - "canton": null, - "numero_insee": "22330" - } - }, - { - "pk": 3497, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINTE-TREPHINE", - "center": "POINT (191418.5340118328458630 2377354.2319679060019553)", - "surface": 12730000, - "canton": null, - "numero_insee": "22331" - } - }, - { - "pk": 19399, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-VRAN", - "center": "POINT (244106.0730313932290301 2371275.8002215269953012)", - "surface": 28240000, - "canton": null, - "numero_insee": "22333" - } - }, - { - "pk": 4870, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SAINT-IGEAUX", - "center": "POINT (195614.0466031758114696 2378288.7528257137164474)", - "surface": 12890000, - "canton": null, - "numero_insee": "22334" - } - }, - { - "pk": 20009, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SENVEN-LEHART", - "center": "POINT (200478.3402628709445707 2395540.4200001191347837)", - "surface": 12650000, - "canton": null, - "numero_insee": "22335" - } - }, - { - "pk": 21112, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SEVIGNAC", - "center": "POINT (254838.4892649990506470 2380569.5905212848447263)", - "surface": 43970000, - "canton": null, - "numero_insee": "22337" - } - }, - { - "pk": 21875, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "SQUIFFIEC", - "center": "POINT (194488.8261240579886362 2418508.2637421744875610)", - "surface": 10840000, - "canton": null, - "numero_insee": "22338" - } - }, - { - "pk": 22853, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TADEN", - "center": "POINT (275421.8060816320939921 2396748.3432719563134015)", - "surface": 20270000, - "canton": null, - "numero_insee": "22339" - } - }, - { - "pk": 5445, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TONQUEDEC", - "center": "POINT (177633.8884245151421055 2423876.1682849423959851)", - "surface": 18480000, - "canton": null, - "numero_insee": "22340" - } - }, - { - "pk": 5937, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TRAMAIN", - "center": "POINT (250172.1193235901300795 2388337.3215300226584077)", - "surface": 9400000, - "canton": null, - "numero_insee": "22341" - } - }, - { - "pk": 27332, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREBEDAN", - "center": "POINT (266886.2320785595802590 2388072.7992642922326922)", - "surface": 11210000, - "canton": null, - "numero_insee": "22342" - } - }, - { - "pk": 18930, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREBEURDEN", - "center": "POINT (166934.6295677990419790 2435297.9256087630055845)", - "surface": 13860000, - "canton": null, - "numero_insee": "22343" - } - }, - { - "pk": 3920, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREBRIVAN", - "center": "POINT (168649.4819249443244189 2383875.5520039107650518)", - "surface": 23050000, - "canton": null, - "numero_insee": "22344" - } - }, - { - "pk": 18333, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREBRY", - "center": "POINT (237205.0218538865447044 2383128.4767324421554804)", - "surface": 25500000, - "canton": null, - "numero_insee": "22345" - } - }, - { - "pk": 17754, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREDANIEL", - "center": "POINT (233800.3598285897751339 2383401.0990833882242441)", - "surface": 15930000, - "canton": null, - "numero_insee": "22346" - } - }, - { - "pk": 4077, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREDARZEC", - "center": "POINT (193149.1984235465060920 2435709.2970567937009037)", - "surface": 11930000, - "canton": null, - "numero_insee": "22347" - } - }, - { - "pk": 4161, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREDIAS", - "center": "POINT (262217.3265831201570109 2383831.8367803897708654)", - "surface": 11270000, - "canton": null, - "numero_insee": "22348" - } - }, - { - "pk": 14244, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREDUDER", - "center": "POINT (165236.5753975966945291 2422475.4465846330858767)", - "surface": 4820000, - "canton": null, - "numero_insee": "22350" - } - }, - { - "pk": 31359, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREFFRIN", - "center": "POINT (165156.0341045851819217 2382746.6303013321012259)", - "surface": 7500000, - "canton": null, - "numero_insee": "22351" - } - }, - { - "pk": 34822, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREFUMEL", - "center": "POINT (276760.1834590992657468 2379847.1387097793631256)", - "surface": 5970000, - "canton": null, - "numero_insee": "22352" - } - }, - { - "pk": 17757, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREGASTEL", - "center": "POINT (170997.6931725945323706 2440233.9679303746670485)", - "surface": 7170000, - "canton": null, - "numero_insee": "22353" - } - }, - { - "pk": 26944, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREGLAMUS", - "center": "POINT (187452.9463644423522055 2409945.5582067081704736)", - "surface": 19270000, - "canton": null, - "numero_insee": "22354" - } - }, - { - "pk": 15996, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREGOMEUR", - "center": "POINT (214876.8591552180005237 2409366.4775017546489835)", - "surface": 10750000, - "canton": null, - "numero_insee": "22356" - } - }, - { - "pk": 8146, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREGON", - "center": "POINT (266340.3774432655773126 2405981.0552150662988424)", - "surface": 5860000, - "canton": null, - "numero_insee": "22357" - } - }, - { - "pk": 21638, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREGONNEAU", - "center": "POINT (194609.8858353834366426 2415907.4301181626506150)", - "surface": 6270000, - "canton": null, - "numero_insee": "22358" - } - }, - { - "pk": 19252, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREGROM", - "center": "POINT (176805.0701825773576275 2414963.3004231997765601)", - "surface": 16820000, - "canton": null, - "numero_insee": "22359" - } - }, - { - "pk": 11441, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREGUIER", - "center": "POINT (190951.8775472820852883 2435191.2292062882333994)", - "surface": 1670000, - "canton": null, - "numero_insee": "22362" - } - }, - { - "pk": 10163, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TRELEVERN", - "center": "POINT (180924.7373256228165701 2437712.1568031660281122)", - "surface": 7070000, - "canton": null, - "numero_insee": "22363" - } - }, - { - "pk": 26790, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TRELIVAN", - "center": "POINT (271269.5603924260940403 2390510.1565612833946943)", - "surface": 11320000, - "canton": null, - "numero_insee": "22364" - } - }, - { - "pk": 3689, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMARGAT", - "center": "POINT (184752.8236707343603484 2384905.9687870345078409)", - "surface": 13910000, - "canton": null, - "numero_insee": "22365" - } - }, - { - "pk": 23391, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMEL", - "center": "POINT (161075.7872220388380811 2417238.3521253615617752)", - "surface": 11880000, - "canton": null, - "numero_insee": "22366" - } - }, - { - "pk": 6232, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMELOIR", - "center": "POINT (216394.8096315019647591 2407277.2792288181371987)", - "surface": 4810000, - "canton": null, - "numero_insee": "22367" - } - }, - { - "pk": 10079, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMEREUC", - "center": "POINT (275155.7392304528621025 2404851.8954284288920462)", - "surface": 4120000, - "canton": null, - "numero_insee": "22368" - } - }, - { - "pk": 16732, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMEUR", - "center": "POINT (258726.4182680788217112 2382402.4663131404668093)", - "surface": 14880000, - "canton": null, - "numero_insee": "22369" - } - }, - { - "pk": 19145, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMEVEN", - "center": "POINT (204671.8081894449423999 2421492.4971442981623113)", - "surface": 5220000, - "canton": null, - "numero_insee": "22370" - } - }, - { - "pk": 14904, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMOREL", - "center": "POINT (255166.2012389964074828 2364860.8091908828355372)", - "surface": 33920000, - "canton": null, - "numero_insee": "22371" - } - }, - { - "pk": 6457, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREMUSON", - "center": "POINT (217118.7292215891066007 2404381.0922692255116999)", - "surface": 6300000, - "canton": null, - "numero_insee": "22372" - } - }, - { - "pk": 10042, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREOGAN", - "center": "POINT (164054.3073619512142614 2370428.7816517637111247)", - "surface": 7140000, - "canton": null, - "numero_insee": "22373" - } - }, - { - "pk": 3270, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TRESSIGNAUX", - "center": "POINT (208430.7341131205321290 2414518.0031320429407060)", - "surface": 7380000, - "canton": null, - "numero_insee": "22375" - } - }, - { - "pk": 17750, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREVE", - "center": "POINT (217898.3560699677909724 2369862.5903523513115942)", - "surface": 26660000, - "canton": null, - "numero_insee": "22376" - } - }, - { - "pk": 36365, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREVENEUC", - "center": "POINT (216196.0104478425928392 2419484.1913670017383993)", - "surface": 6680000, - "canton": null, - "numero_insee": "22377" - } - }, - { - "pk": 9249, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREVEREC", - "center": "POINT (202979.6321868117083795 2420378.0660327142104506)", - "surface": 4360000, - "canton": null, - "numero_insee": "22378" - } - }, - { - "pk": 22764, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREVOU-TREGUIGNEC", - "center": "POINT (182817.8422728062723763 2438728.0940794772468507)", - "surface": 6680000, - "canton": null, - "numero_insee": "22379" - } - }, - { - "pk": 6726, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREVRON", - "center": "POINT (273809.4383228139486164 2385827.4507749360054731)", - "surface": 9880000, - "canton": null, - "numero_insee": "22380" - } - }, - { - "pk": 23890, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TREZENY", - "center": "POINT (181166.7922318231430836 2432510.5565950297750533)", - "surface": 3280000, - "canton": null, - "numero_insee": "22381" - } - }, - { - "pk": 12256, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "TROGUERY", - "center": "POINT (191273.8569018548587337 2432491.9815357434563339)", - "surface": 3640000, - "canton": null, - "numero_insee": "22383" - } - }, - { - "pk": 7867, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "UZEL", - "center": "POINT (215336.7865007397485897 2377247.2673424854874611)", - "surface": 6960000, - "canton": null, - "numero_insee": "22384" - } - }, - { - "pk": 14274, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LA VICOMTE-SUR-RANCE", - "center": "POINT (280728.4697482214542106 2396391.2443016013130546)", - "surface": 4670000, - "canton": null, - "numero_insee": "22385" - } - }, - { - "pk": 21747, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE VIEUX-BOURG", - "center": "POINT (204623.8474940332816914 2390270.1174570135772228)", - "surface": 25640000, - "canton": null, - "numero_insee": "22386" - } - }, - { - "pk": 33585, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "LE VIEUX-MARCHE", - "center": "POINT (174385.0107412062934600 2417245.4115317775867879)", - "surface": 22340000, - "canton": null, - "numero_insee": "22387" - } - }, - { - "pk": 35048, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "VILDE-GUINGALAN", - "center": "POINT (267960.1002595518948510 2391383.8885307558812201)", - "surface": 7560000, - "canton": null, - "numero_insee": "22388" - } - }, - { - "pk": 15405, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "YVIAS", - "center": "POINT (204031.0182382293860428 2426490.7734516002237797)", - "surface": 11740000, - "canton": null, - "numero_insee": "22390" - } - }, - { - "pk": 17880, - "model": "ishtar_common.town", - "fields": { - "departement": 23, - "name": "YVIGNAC-LA-TOUR", - "center": "POINT (265936.8263934100396000 2381760.5535434619523585)", - "surface": 36370000, - "canton": null, - "numero_insee": "22391" - } - }, - { - "pk": 15027, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AHUN", - "center": "POINT (575843.4371912352507934 2120702.7437919201329350)", - "surface": 33950000, - "canton": null, - "numero_insee": "23001" - } - }, - { - "pk": 18267, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AJAIN", - "center": "POINT (573626.0020428892457858 2134496.7668695342727005)", - "surface": 33150000, - "canton": null, - "numero_insee": "23002" - } - }, - { - "pk": 22133, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ALLEYRAT", - "center": "POINT (585844.9577011741930619 2109676.3149690483696759)", - "surface": 9500000, - "canton": null, - "numero_insee": "23003" - } - }, - { - "pk": 15926, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ANZEME", - "center": "POINT (562474.8481470813276246 2139407.9651439459994435)", - "surface": 29510000, - "canton": null, - "numero_insee": "23004" - } - }, - { - "pk": 22003, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ARFEUILLE-CHATAIN", - "center": "POINT (607497.1130891812499613 2117765.2963441708125174)", - "surface": 20460000, - "canton": null, - "numero_insee": "23005" - } - }, - { - "pk": 17956, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ARRENES", - "center": "POINT (540421.7777325864881277 2119405.6294633490033448)", - "surface": 22480000, - "canton": null, - "numero_insee": "23006" - } - }, - { - "pk": 36548, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ARS", - "center": "POINT (580429.4340991806238890 2110932.1308752787299454)", - "surface": 21740000, - "canton": null, - "numero_insee": "23007" - } - }, - { - "pk": 15625, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AUBUSSON", - "center": "POINT (586680.0448878209572285 2105579.5121278367005289)", - "surface": 19250000, - "canton": null, - "numero_insee": "23008" - } - }, - { - "pk": 33261, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AUGE", - "center": "POINT (599625.9199004929978400 2137317.0951309008523822)", - "surface": 10000000, - "canton": null, - "numero_insee": "23009" - } - }, - { - "pk": 21608, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AUGERES", - "center": "POINT (552827.2846506619825959 2120109.8072298080660403)", - "surface": 12520000, - "canton": null, - "numero_insee": "23010" - } - }, - { - "pk": 15347, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AULON", - "center": "POINT (550413.5401813024654984 2121490.9202037416398525)", - "surface": 10750000, - "canton": null, - "numero_insee": "23011" - } - }, - { - "pk": 4467, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AUZANCES", - "center": "POINT (613133.8313717129640281 2114009.1516316891647875)", - "surface": 7200000, - "canton": null, - "numero_insee": "23013" - } - }, - { - "pk": 22053, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AZAT-CHATENET", - "center": "POINT (556124.2265877289464697 2120838.0096798334270716)", - "surface": 9410000, - "canton": null, - "numero_insee": "23014" - } - }, - { - "pk": 21589, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "AZERABLES", - "center": "POINT (533655.7268281675642356 2150577.4574022926390171)", - "surface": 39360000, - "canton": null, - "numero_insee": "23015" - } - }, - { - "pk": 24498, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BANIZE", - "center": "POINT (573680.6111405079718679 2104069.2909590965136886)", - "surface": 15240000, - "canton": null, - "numero_insee": "23016" - } - }, - { - "pk": 16235, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BASVILLE", - "center": "POINT (605884.7044869400560856 2095230.8587753877509385)", - "surface": 22640000, - "canton": null, - "numero_insee": "23017" - } - }, - { - "pk": 23639, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BAZELAT", - "center": "POINT (538061.8643592294538394 2150313.9573105871677399)", - "surface": 13400000, - "canton": null, - "numero_insee": "23018" - } - }, - { - "pk": 35828, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BEISSAT", - "center": "POINT (595861.6102754906751215 2084937.1215803143568337)", - "surface": 14670000, - "canton": null, - "numero_insee": "23019" - } - }, - { - "pk": 27742, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BELLEGARDE-EN-MARCHE", - "center": "POINT (596560.8327426497125998 2108965.4489882830530405)", - "surface": 3160000, - "canton": null, - "numero_insee": "23020" - } - }, - { - "pk": 19564, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BENEVENT-L'ABBAYE", - "center": "POINT (545284.9768217196688056 2124350.7319235876202583)", - "surface": 11760000, - "canton": null, - "numero_insee": "23021" - } - }, - { - "pk": 4339, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BLAUDEIX", - "center": "POINT (580515.0057608078932390 2136556.2842749520204961)", - "surface": 7010000, - "canton": null, - "numero_insee": "23023" - } - }, - { - "pk": 16376, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BLESSAC", - "center": "POINT (582563.9415499087190256 2107046.4034730996936560)", - "surface": 17880000, - "canton": null, - "numero_insee": "23024" - } - }, - { - "pk": 20262, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BONNAT", - "center": "POINT (567415.3586034639738500 2147056.1474274778738618)", - "surface": 45540000, - "canton": null, - "numero_insee": "23025" - } - }, - { - "pk": 5891, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BORD-SAINT-GEORGES", - "center": "POINT (596108.7221129864919931 2138989.1162444758228958)", - "surface": 32350000, - "canton": null, - "numero_insee": "23026" - } - }, - { - "pk": 23047, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BOSMOREAU-LES-MINES", - "center": "POINT (554901.7712440494215116 2111419.1302248439751565)", - "surface": 9060000, - "canton": null, - "numero_insee": "23027" - } - }, - { - "pk": 24656, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BOSROGER", - "center": "POINT (593337.1028692735126242 2111440.7166135222651064)", - "surface": 7610000, - "canton": null, - "numero_insee": "23028" - } - }, - { - "pk": 18552, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LE BOURG-D'HEM", - "center": "POINT (561730.7325389529578388 2144606.4288692194968462)", - "surface": 15580000, - "canton": null, - "numero_insee": "23029" - } - }, - { - "pk": 16995, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BOURGANEUF", - "center": "POINT (554350.6198697970248759 2105509.0533048734068871)", - "surface": 22480000, - "canton": null, - "numero_insee": "23030" - } - }, - { - "pk": 6681, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BOUSSAC", - "center": "POINT (591214.9052651077508926 2149657.6912111616693437)", - "surface": 1540000, - "canton": null, - "numero_insee": "23031" - } - }, - { - "pk": 23748, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BOUSSAC-BOURG", - "center": "POINT (590695.1874271170236170 2151955.3907543811947107)", - "surface": 38590000, - "canton": null, - "numero_insee": "23032" - } - }, - { - "pk": 37496, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA BRIONNE", - "center": "POINT (557653.6120991513598710 2129458.6607062565162778)", - "surface": 7120000, - "canton": null, - "numero_insee": "23033" - } - }, - { - "pk": 28295, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BROUSSE", - "center": "POINT (608980.6978541030548513 2107968.7046118504367769)", - "surface": 3640000, - "canton": null, - "numero_insee": "23034" - } - }, - { - "pk": 21188, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BUDELIERE", - "center": "POINT (610650.2367990424390882 2135608.0426961700432003)", - "surface": 24950000, - "canton": null, - "numero_insee": "23035" - } - }, - { - "pk": 30859, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BUSSIERE-DUNOISE", - "center": "POINT (555566.5865256760735065 2139650.4654909158125520)", - "surface": 41800000, - "canton": null, - "numero_insee": "23036" - } - }, - { - "pk": 34404, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BUSSIERE-NOUVELLE", - "center": "POINT (606339.8032944794977084 2112550.7810880360193551)", - "surface": 8680000, - "canton": null, - "numero_insee": "23037" - } - }, - { - "pk": 5438, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "BUSSIERE-SAINT-GEORGES", - "center": "POINT (585959.4345533272717148 2155719.0742621361277997)", - "surface": 22260000, - "canton": null, - "numero_insee": "23038" - } - }, - { - "pk": 3113, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA CELLE-DUNOISE", - "center": "POINT (557216.1209042551927269 2145869.8426505737006664)", - "surface": 28870000, - "canton": null, - "numero_insee": "23039" - } - }, - { - "pk": 34503, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA CELLE-SOUS-GOUZON", - "center": "POINT (590133.9366373771335930 2135335.7375757121481001)", - "surface": 14170000, - "canton": null, - "numero_insee": "23040" - } - }, - { - "pk": 33559, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA CELLETTE", - "center": "POINT (574849.4845165335573256 2155726.0757943266071379)", - "surface": 21350000, - "canton": null, - "numero_insee": "23041" - } - }, - { - "pk": 3099, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CEYROUX", - "center": "POINT (547941.5228258392307907 2117866.9591686371713877)", - "surface": 12300000, - "canton": null, - "numero_insee": "23042" - } - }, - { - "pk": 36984, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHAMBERAUD", - "center": "POINT (577278.9966254464816302 2116610.9987179432064295)", - "surface": 7340000, - "canton": null, - "numero_insee": "23043" - } - }, - { - "pk": 27130, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHAMBON-SAINTE-CROIX", - "center": "POINT (556277.7221238737693056 2150366.0330292563885450)", - "surface": 6690000, - "canton": null, - "numero_insee": "23044" - } - }, - { - "pk": 22164, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHAMBON-SUR-VOUEIZE", - "center": "POINT (606272.6156905479729176 2132468.4558151797391474)", - "surface": 33850000, - "canton": null, - "numero_insee": "23045" - } - }, - { - "pk": 17528, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHAMBONCHARD", - "center": "POINT (615810.8655022811144590 2128945.3201884799636900)", - "surface": 12880000, - "canton": null, - "numero_insee": "23046" - } - }, - { - "pk": 16542, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHAMPAGNAT", - "center": "POINT (596124.3787761302664876 2113265.7647482003085315)", - "surface": 28700000, - "canton": null, - "numero_insee": "23048" - } - }, - { - "pk": 15348, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHAMPSANGLARD", - "center": "POINT (565453.0627517424291000 2142335.4988557146862149)", - "surface": 13620000, - "canton": null, - "numero_insee": "23049" - } - }, - { - "pk": 36322, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA CHAPELLE-BALOUE", - "center": "POINT (540856.6557688942411914 2151238.0924459439702332)", - "surface": 8630000, - "canton": null, - "numero_insee": "23050" - } - }, - { - "pk": 18698, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA CHAPELLE-SAINT-MARTIAL", - "center": "POINT (567892.7788238313514739 2113930.0110961939208210)", - "surface": 10270000, - "canton": null, - "numero_insee": "23051" - } - }, - { - "pk": 8442, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA CHAPELLE-TAILLEFERT", - "center": "POINT (561104.1879295136313885 2123782.3118756515905261)", - "surface": 14070000, - "canton": null, - "numero_insee": "23052" - } - }, - { - "pk": 33260, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHARD", - "center": "POINT (611904.2078311026562005 2105490.9456653837114573)", - "surface": 14260000, - "canton": null, - "numero_insee": "23053" - } - }, - { - "pk": 20241, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHARRON", - "center": "POINT (617527.4844288245076314 2115247.1890224767848849)", - "surface": 30070000, - "canton": null, - "numero_insee": "23054" - } - }, - { - "pk": 16236, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHATELARD", - "center": "POINT (610090.0490692881867290 2106977.0962966922670603)", - "surface": 2470000, - "canton": null, - "numero_insee": "23055" - } - }, - { - "pk": 19126, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHATELUS-LE-MARCHEIX", - "center": "POINT (544887.3703440302051604 2112036.0989059628918767)", - "surface": 43580000, - "canton": null, - "numero_insee": "23056" - } - }, - { - "pk": 15929, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHATELUS-MALVALEIX", - "center": "POINT (576548.0374543709913269 2144129.9131594793871045)", - "surface": 15100000, - "canton": null, - "numero_insee": "23057" - } - }, - { - "pk": 19684, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LE CHAUCHET", - "center": "POINT (599343.1894617048092186 2123301.9740909677930176)", - "surface": 10690000, - "canton": null, - "numero_insee": "23058" - } - }, - { - "pk": 20592, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA CHAUSSADE", - "center": "POINT (593152.0443311191629618 2109637.4982329877093434)", - "surface": 7200000, - "canton": null, - "numero_insee": "23059" - } - }, - { - "pk": 15781, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHAVANAT", - "center": "POINT (571263.4640169051708654 2105850.7257975814864039)", - "surface": 12740000, - "canton": null, - "numero_insee": "23060" - } - }, - { - "pk": 37826, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHENERAILLES", - "center": "POINT (587229.6029934432590380 2123600.7237060619518161)", - "surface": 7790000, - "canton": null, - "numero_insee": "23061" - } - }, - { - "pk": 21245, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CHENIERS", - "center": "POINT (560783.1095731824170798 2150203.5285115488804877)", - "surface": 34960000, - "canton": null, - "numero_insee": "23062" - } - }, - { - "pk": 20126, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CLAIRAVAUX", - "center": "POINT (587543.4427025893237442 2086168.5803848293144256)", - "surface": 27610000, - "canton": null, - "numero_insee": "23063" - } - }, - { - "pk": 16381, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CLUGNAT", - "center": "POINT (583252.7575044590048492 2144286.1780966841615736)", - "surface": 42730000, - "canton": null, - "numero_insee": "23064" - } - }, - { - "pk": 22589, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LE COMPAS", - "center": "POINT (608951.2707603925373405 2111471.6992896171286702)", - "surface": 16850000, - "canton": null, - "numero_insee": "23066" - } - }, - { - "pk": 19484, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA COURTINE", - "center": "POINT (592691.5549572467571124 2081006.8354915380477905)", - "surface": 41680000, - "canton": null, - "numero_insee": "23067" - } - }, - { - "pk": 21849, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CRESSAT", - "center": "POINT (581103.4804946815129369 2126051.6628953544422984)", - "surface": 34120000, - "canton": null, - "numero_insee": "23068" - } - }, - { - "pk": 34866, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CROCQ", - "center": "POINT (602188.2202008226886392 2094399.0700096229556948)", - "surface": 13930000, - "canton": null, - "numero_insee": "23069" - } - }, - { - "pk": 3199, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CROZANT", - "center": "POINT (544238.5646756811765954 2153768.5650412621907890)", - "surface": 31780000, - "canton": null, - "numero_insee": "23070" - } - }, - { - "pk": 14437, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "CROZE", - "center": "POINT (586797.5189518128754571 2091567.4128429291304201)", - "surface": 22050000, - "canton": null, - "numero_insee": "23071" - } - }, - { - "pk": 15783, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "DOMEYROT", - "center": "POINT (585400.6421353663317859 2138799.2204420263879001)", - "surface": 24770000, - "canton": null, - "numero_insee": "23072" - } - }, - { - "pk": 4808, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "DONTREIX", - "center": "POINT (616281.0637763807317242 2108730.7010998432524502)", - "surface": 47970000, - "canton": null, - "numero_insee": "23073" - } - }, - { - "pk": 4766, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LE DONZEIL", - "center": "POINT (572787.7389354716287926 2115072.0029507279396057)", - "surface": 13510000, - "canton": null, - "numero_insee": "23074" - } - }, - { - "pk": 15798, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "EVAUX-LES-BAINS", - "center": "POINT (612500.5209666168084368 2129818.3186518857255578)", - "surface": 45200000, - "canton": null, - "numero_insee": "23076" - } - }, - { - "pk": 23701, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FAUX-LA-MONTAGNE", - "center": "POINT (568656.2503860857104883 2082507.0483034802600741)", - "surface": 48390000, - "canton": null, - "numero_insee": "23077" - } - }, - { - "pk": 22247, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FAUX-MAZURAS", - "center": "POINT (556777.7870118931168690 2102526.5535662858746946)", - "surface": 19860000, - "canton": null, - "numero_insee": "23078" - } - }, - { - "pk": 23215, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FELLETIN", - "center": "POINT (588038.2266028366284445 2098784.5628011068329215)", - "surface": 13700000, - "canton": null, - "numero_insee": "23079" - } - }, - { - "pk": 3371, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FENIERS", - "center": "POINT (583569.3088382058776915 2082631.9570732568390667)", - "surface": 14490000, - "canton": null, - "numero_insee": "23080" - } - }, - { - "pk": 21299, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FLAYAT", - "center": "POINT (603856.8396319166058674 2086405.5532073434442282)", - "surface": 43970000, - "canton": null, - "numero_insee": "23081" - } - }, - { - "pk": 31747, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FONTANIERES", - "center": "POINT (614059.8206518199294806 2122925.1185820200480521)", - "surface": 15830000, - "canton": null, - "numero_insee": "23083" - } - }, - { - "pk": 29818, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA FORET-DU-TEMPLE", - "center": "POINT (566818.6284375950926915 2158561.4269790309481323)", - "surface": 7760000, - "canton": null, - "numero_insee": "23084" - } - }, - { - "pk": 17686, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FRANSECHES", - "center": "POINT (576998.8617215007543564 2114206.4398511899635196)", - "surface": 18260000, - "canton": null, - "numero_insee": "23086" - } - }, - { - "pk": 19365, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "FRESSELINES", - "center": "POINT (550949.0948435375466943 2153224.0874216416850686)", - "surface": 30810000, - "canton": null, - "numero_insee": "23087" - } - }, - { - "pk": 10024, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "GARTEMPE", - "center": "POINT (552760.3647330807289109 2128116.5693867001682520)", - "surface": 9530000, - "canton": null, - "numero_insee": "23088" - } - }, - { - "pk": 14696, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "GENOUILLAC", - "center": "POINT (573501.1316228877985850 2149409.1554164648987353)", - "surface": 35660000, - "canton": null, - "numero_insee": "23089" - } - }, - { - "pk": 35373, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "GENTIOUX-PIGEROLLES", - "center": "POINT (574422.7774625747697428 2087159.6743002445437014)", - "surface": 79710000, - "canton": null, - "numero_insee": "23090" - } - }, - { - "pk": 20569, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "GIOUX", - "center": "POINT (582715.7627310295356438 2088930.7521253083832562)", - "surface": 37270000, - "canton": null, - "numero_insee": "23091" - } - }, - { - "pk": 4026, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "GLENIC", - "center": "POINT (569504.1391684119589627 2136664.2524026646278799)", - "surface": 27390000, - "canton": null, - "numero_insee": "23092" - } - }, - { - "pk": 15345, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "GOUZON", - "center": "POINT (591764.6554070113925263 2131846.2360478639602661)", - "surface": 50600000, - "canton": null, - "numero_insee": "23093" - } - }, - { - "pk": 23960, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LE GRAND-BOURG", - "center": "POINT (547348.2918066454585642 2128972.1677536359056830)", - "surface": 78650000, - "canton": null, - "numero_insee": "23095" - } - }, - { - "pk": 3515, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "GUERET", - "center": "POINT (563960.5854686378734186 2129311.2298286356963217)", - "surface": 26020000, - "canton": null, - "numero_insee": "23096" - } - }, - { - "pk": 15025, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ISSOUDUN-LETRIEIX", - "center": "POINT (586572.6427164898486808 2118390.4443820444867015)", - "surface": 26440000, - "canton": null, - "numero_insee": "23097" - } - }, - { - "pk": 16855, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "JANAILLAT", - "center": "POINT (556460.4625687940279022 2116536.8678277092985809)", - "surface": 28420000, - "canton": null, - "numero_insee": "23099" - } - }, - { - "pk": 4355, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "JARNAGES", - "center": "POINT (580150.7298508780077100 2132249.3303291890770197)", - "surface": 9130000, - "canton": null, - "numero_insee": "23100" - } - }, - { - "pk": 22822, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "JOUILLAT", - "center": "POINT (569167.8662691268837079 2140965.3248911486007273)", - "surface": 22310000, - "canton": null, - "numero_insee": "23101" - } - }, - { - "pk": 21273, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LADAPEYRE", - "center": "POINT (577894.3888941511977464 2138736.3197839185595512)", - "surface": 31390000, - "canton": null, - "numero_insee": "23102" - } - }, - { - "pk": 20443, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LAFAT", - "center": "POINT (543679.0234850010601804 2148859.5093104010447860)", - "surface": 21160000, - "canton": null, - "numero_insee": "23103" - } - }, - { - "pk": 21565, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LAVAUFRANCHE", - "center": "POINT (594957.4240193702280521 2144984.8664725231938064)", - "surface": 16160000, - "canton": null, - "numero_insee": "23104" - } - }, - { - "pk": 28799, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LAVAVEIX-LES-MINES", - "center": "POINT (581159.6701975290197879 2119345.9946354832500219)", - "surface": 4620000, - "canton": null, - "numero_insee": "23105" - } - }, - { - "pk": 18576, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LEPAUD", - "center": "POINT (603634.3007304747588933 2136750.2020883071236312)", - "surface": 24120000, - "canton": null, - "numero_insee": "23106" - } - }, - { - "pk": 15928, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LEYRAT", - "center": "POINT (596609.2844212455675006 2150904.0194577826187015)", - "surface": 18370000, - "canton": null, - "numero_insee": "23108" - } - }, - { - "pk": 19816, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LINARD", - "center": "POINT (564572.0103923722635955 2151936.7445892333053052)", - "surface": 12550000, - "canton": null, - "numero_insee": "23109" - } - }, - { - "pk": 37950, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LIOUX-LES-MONGES", - "center": "POINT (608309.5233975913142785 2104459.8153675678186119)", - "surface": 7430000, - "canton": null, - "numero_insee": "23110" - } - }, - { - "pk": 19563, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LIZIERES", - "center": "POINT (540996.1958752640057355 2134524.2119749304838479)", - "surface": 14540000, - "canton": null, - "numero_insee": "23111" - } - }, - { - "pk": 18550, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LOURDOUEIX-SAINT-PIERRE", - "center": "POINT (560837.9900420126505196 2155608.8111242824234068)", - "surface": 44630000, - "canton": null, - "numero_insee": "23112" - } - }, - { - "pk": 20570, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LUPERSAT", - "center": "POINT (601657.6375064885942265 2109909.0607104008086026)", - "surface": 32730000, - "canton": null, - "numero_insee": "23113" - } - }, - { - "pk": 19842, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LUSSAT", - "center": "POINT (599572.8787538573378697 2131711.5686405519954860)", - "surface": 48500000, - "canton": null, - "numero_insee": "23114" - } - }, - { - "pk": 22482, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MAGNAT-L'ETRANGE", - "center": "POINT (594732.9377613152610138 2088230.7658694165293127)", - "surface": 25850000, - "canton": null, - "numero_insee": "23115" - } - }, - { - "pk": 22378, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MAINSAT", - "center": "POINT (603805.7350953642744571 2116333.0070577505975962)", - "surface": 34880000, - "canton": null, - "numero_insee": "23116" - } - }, - { - "pk": 9971, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MAISONNISSES", - "center": "POINT (566458.0830076644197106 2117921.6898882491514087)", - "surface": 11190000, - "canton": null, - "numero_insee": "23118" - } - }, - { - "pk": 36570, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MALLERET", - "center": "POINT (598866.7535984017886221 2084662.0566649097017944)", - "surface": 11860000, - "canton": null, - "numero_insee": "23119" - } - }, - { - "pk": 15349, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MALLERET-BOUSSAC", - "center": "POINT (585615.3167111111106351 2149010.2016746103763580)", - "surface": 25530000, - "canton": null, - "numero_insee": "23120" - } - }, - { - "pk": 27303, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MALVAL", - "center": "POINT (566182.5409487358992919 2150849.2365549155510962)", - "surface": 4050000, - "canton": null, - "numero_insee": "23121" - } - }, - { - "pk": 37427, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MANSAT-LA-COURRIERE", - "center": "POINT (558038.7346914502559230 2107341.5597287281416357)", - "surface": 9550000, - "canton": null, - "numero_insee": "23122" - } - }, - { - "pk": 15640, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LES MARS", - "center": "POINT (611962.2435208117822185 2110496.0712222177535295)", - "surface": 13110000, - "canton": null, - "numero_insee": "23123" - } - }, - { - "pk": 17507, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LE MAS-D'ARTIGE", - "center": "POINT (588282.6587416791589931 2081570.4282810320146382)", - "surface": 16370000, - "canton": null, - "numero_insee": "23125" - } - }, - { - "pk": 22006, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MASBARAUD-MERIGNAT", - "center": "POINT (552222.8843542204704136 2108594.1459777303971350)", - "surface": 20350000, - "canton": null, - "numero_insee": "23126" - } - }, - { - "pk": 5645, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MAUTES", - "center": "POINT (603709.7710527634480968 2103920.7199706714600325)", - "surface": 22520000, - "canton": null, - "numero_insee": "23127" - } - }, - { - "pk": 19905, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA MAZIERE-AUX-BONS-HOMMES", - "center": "POINT (608257.3587052959483117 2098754.0625533475540578)", - "surface": 10140000, - "canton": null, - "numero_insee": "23129" - } - }, - { - "pk": 24267, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MERINCHAL", - "center": "POINT (612143.0663862455403432 2100888.6691645290702581)", - "surface": 44970000, - "canton": null, - "numero_insee": "23131" - } - }, - { - "pk": 19928, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MONTBOUCHER", - "center": "POINT (549046.0651337272720411 2105464.7219132073223591)", - "surface": 27770000, - "canton": null, - "numero_insee": "23133" - } - }, - { - "pk": 14095, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LE MONTEIL-AU-VICOMTE", - "center": "POINT (569286.8794464931124821 2102831.3886927156709135)", - "surface": 14510000, - "canton": null, - "numero_insee": "23134" - } - }, - { - "pk": 16274, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MORTROUX", - "center": "POINT (566948.0240070522995666 2155059.3938302695751190)", - "surface": 13560000, - "canton": null, - "numero_insee": "23136" - } - }, - { - "pk": 37249, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MOURIOUX-VIEILLEVILLE", - "center": "POINT (545920.5950152646983042 2120152.1911639617756009)", - "surface": 25060000, - "canton": null, - "numero_insee": "23137" - } - }, - { - "pk": 16248, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MOUTIER-D'AHUN", - "center": "POINT (578834.2410701706539840 2122129.0805943086743355)", - "surface": 9960000, - "canton": null, - "numero_insee": "23138" - } - }, - { - "pk": 36509, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "MOUTIER-MALCARD", - "center": "POINT (570261.6261572237126529 2153785.9681577621959150)", - "surface": 25970000, - "canton": null, - "numero_insee": "23139" - } - }, - { - "pk": 19470, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "NAILLAT", - "center": "POINT (547056.1577655297005549 2139979.7078247456811368)", - "surface": 36560000, - "canton": null, - "numero_insee": "23141" - } - }, - { - "pk": 5789, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "NEOUX", - "center": "POINT (594320.1589090427150950 2101639.8634757641702890)", - "surface": 23730000, - "canton": null, - "numero_insee": "23142" - } - }, - { - "pk": 4154, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "NOTH", - "center": "POINT (541765.9470295235514641 2138233.9904945162124932)", - "surface": 23130000, - "canton": null, - "numero_insee": "23143" - } - }, - { - "pk": 22075, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA NOUAILLE", - "center": "POINT (579276.7419658859726042 2093205.9780602410901338)", - "surface": 47980000, - "canton": null, - "numero_insee": "23144" - } - }, - { - "pk": 17110, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "NOUHANT", - "center": "POINT (604182.6974819889292121 2142960.4074657685123384)", - "surface": 25600000, - "canton": null, - "numero_insee": "23145" - } - }, - { - "pk": 17606, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "NOUZERINES", - "center": "POINT (582568.3859438225626945 2154289.4031207836233079)", - "surface": 19050000, - "canton": null, - "numero_insee": "23146" - } - }, - { - "pk": 30075, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "NOUZEROLLES", - "center": "POINT (554046.6270740936743096 2153850.5106736556626856)", - "surface": 8200000, - "canton": null, - "numero_insee": "23147" - } - }, - { - "pk": 29594, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "NOUZIERS", - "center": "POINT (571125.5006699288496748 2158197.1199638037942350)", - "surface": 14550000, - "canton": null, - "numero_insee": "23148" - } - }, - { - "pk": 37673, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PARSAC", - "center": "POINT (584748.7154574680607766 2132988.4994093677960336)", - "surface": 39350000, - "canton": null, - "numero_insee": "23149" - } - }, - { - "pk": 25671, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PEYRABOUT", - "center": "POINT (567422.0776737555861473 2122333.7973763709887862)", - "surface": 8990000, - "canton": null, - "numero_insee": "23150" - } - }, - { - "pk": 14439, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PEYRAT-LA-NONIERE", - "center": "POINT (593465.9079725457122549 2119949.6310750790871680)", - "surface": 41310000, - "canton": null, - "numero_insee": "23151" - } - }, - { - "pk": 36154, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PIERREFITTE", - "center": "POINT (591897.4783253796631470 2127943.7977828234434128)", - "surface": 6440000, - "canton": null, - "numero_insee": "23152" - } - }, - { - "pk": 4554, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PIONNAT", - "center": "POINT (575965.6485045461449772 2130012.2699053683318198)", - "surface": 42540000, - "canton": null, - "numero_insee": "23154" - } - }, - { - "pk": 34895, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PONTARION", - "center": "POINT (561914.4523655456723645 2110677.0320896334014833)", - "surface": 5380000, - "canton": null, - "numero_insee": "23155" - } - }, - { - "pk": 4888, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PONTCHARRAUD", - "center": "POINT (595171.2325369917089120 2095641.3964374240022153)", - "surface": 9130000, - "canton": null, - "numero_insee": "23156" - } - }, - { - "pk": 6307, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA POUGE", - "center": "POINT (569241.6398107301210985 2108236.0281050573103130)", - "surface": 7570000, - "canton": null, - "numero_insee": "23157" - } - }, - { - "pk": 19236, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "POUSSANGES", - "center": "POINT (591009.5650437382282689 2090601.7923464972991496)", - "surface": 23420000, - "canton": null, - "numero_insee": "23158" - } - }, - { - "pk": 27458, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "PUY-MALSIGNAT", - "center": "POINT (590504.4930091976420954 2115020.2823120695538819)", - "surface": 12720000, - "canton": null, - "numero_insee": "23159" - } - }, - { - "pk": 22798, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "RETERRE", - "center": "POINT (610056.4383422933751717 2122891.4785709674470127)", - "surface": 17940000, - "canton": null, - "numero_insee": "23160" - } - }, - { - "pk": 13817, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "RIMONDEIX", - "center": "POINT (582915.3332688885275275 2136776.5797368022613227)", - "surface": 8030000, - "canton": null, - "numero_insee": "23161" - } - }, - { - "pk": 18700, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ROCHES", - "center": "POINT (573260.3838045538868755 2142300.7591208359226584)", - "surface": 25390000, - "canton": null, - "numero_insee": "23162" - } - }, - { - "pk": 15791, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ROUGNAT", - "center": "POINT (612303.7136549751739949 2117505.4017713773064315)", - "surface": 41380000, - "canton": null, - "numero_insee": "23164" - } - }, - { - "pk": 22692, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "ROYERE-DE-VASSIVIERE", - "center": "POINT (566165.3652087640948594 2093096.1939770237077028)", - "surface": 80570000, - "canton": null, - "numero_insee": "23165" - } - }, - { - "pk": 18882, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SANNAT", - "center": "POINT (606037.9260515045607463 2124659.3717059330083430)", - "surface": 34130000, - "canton": null, - "numero_insee": "23167" - } - }, - { - "pk": 21927, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SARDENT", - "center": "POINT (562968.5051665107021108 2116291.0197519082576036)", - "surface": 41180000, - "canton": null, - "numero_insee": "23168" - } - }, - { - "pk": 17687, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA SAUNIERE", - "center": "POINT (569398.6376299199182540 2125353.0869135702960193)", - "surface": 7470000, - "canton": null, - "numero_insee": "23169" - } - }, - { - "pk": 13876, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAVENNES", - "center": "POINT (565112.5939489380689338 2123215.2958340235054493)", - "surface": 7140000, - "canton": null, - "numero_insee": "23170" - } - }, - { - "pk": 32318, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SERMUR", - "center": "POINT (606080.7343828447628766 2107644.0681541678495705)", - "surface": 19820000, - "canton": null, - "numero_insee": "23171" - } - }, - { - "pk": 15927, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA SERRE-BUSSIERE-VIEILLE", - "center": "POINT (599793.9317559940973297 2117300.2483142018318176)", - "surface": 14320000, - "canton": null, - "numero_insee": "23172" - } - }, - { - "pk": 19753, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SOUBREBOST", - "center": "POINT (561344.9143205474829301 2106968.8389768251217902)", - "surface": 20950000, - "canton": null, - "numero_insee": "23173" - } - }, - { - "pk": 22418, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SOUMANS", - "center": "POINT (599562.9169109042268246 2144823.3341932781040668)", - "surface": 36730000, - "canton": null, - "numero_insee": "23174" - } - }, - { - "pk": 32845, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SOUS-PARSAT", - "center": "POINT (572266.3633246909594163 2117569.9402694744057953)", - "surface": 9290000, - "canton": null, - "numero_insee": "23175" - } - }, - { - "pk": 16965, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA SOUTERRAINE", - "center": "POINT (533563.2770848742220551 2137665.0760459080338478)", - "surface": 36850000, - "canton": null, - "numero_insee": "23176" - } - }, - { - "pk": 20708, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-AGNANT-DE-VERSILLAT", - "center": "POINT (535924.3570480303606018 2142589.2019858495332301)", - "surface": 50600000, - "canton": null, - "numero_insee": "23177" - } - }, - { - "pk": 24016, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-AGNANT-PRES-CROCQ", - "center": "POINT (600026.6374639670830220 2089576.4141394239850342)", - "surface": 25320000, - "canton": null, - "numero_insee": "23178" - } - }, - { - "pk": 31925, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-ALPINIEN", - "center": "POINT (592675.1235651175957173 2106830.9012039685621858)", - "surface": 15090000, - "canton": null, - "numero_insee": "23179" - } - }, - { - "pk": 35457, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-AMAND", - "center": "POINT (589858.4527648449875414 2108508.8544531706720591)", - "surface": 7930000, - "canton": null, - "numero_insee": "23180" - } - }, - { - "pk": 16570, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-AMAND-JARTOUDEIX", - "center": "POINT (548173.7216106381965801 2102054.2694493550807238)", - "surface": 18610000, - "canton": null, - "numero_insee": "23181" - } - }, - { - "pk": 22058, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-AVIT-DE-TARDES", - "center": "POINT (597018.2864110355731100 2102162.9681699802167714)", - "surface": 14360000, - "canton": null, - "numero_insee": "23182" - } - }, - { - "pk": 7575, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-AVIT-LE-PAUVRE", - "center": "POINT (577632.0706563566345721 2110308.1396133839152753)", - "surface": 4940000, - "canton": null, - "numero_insee": "23183" - } - }, - { - "pk": 22435, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-BARD", - "center": "POINT (605432.2458423320204020 2101432.8550908318720758)", - "surface": 9240000, - "canton": null, - "numero_insee": "23184" - } - }, - { - "pk": 22189, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-CHABRAIS", - "center": "POINT (589920.9739508295897394 2124924.4807149320840836)", - "surface": 25030000, - "canton": null, - "numero_insee": "23185" - } - }, - { - "pk": 8603, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (563121.7870710756396875 2121897.4484209222719073)", - "surface": 7860000, - "canton": null, - "numero_insee": "23186" - } - }, - { - "pk": 21115, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-DIZIER-LES-DOMAINES", - "center": "POINT (577725.5587454000487924 2146942.2933589010499418)", - "surface": 15910000, - "canton": null, - "numero_insee": "23188" - } - }, - { - "pk": 23697, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-DIZIER-LEYRENNE", - "center": "POINT (551074.2675180982332677 2114289.8181674694642425)", - "surface": 46770000, - "canton": null, - "numero_insee": "23189" - } - }, - { - "pk": 31651, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-DOMET", - "center": "POINT (596796.4210134145105258 2116674.5394019768573344)", - "surface": 15620000, - "canton": null, - "numero_insee": "23190" - } - }, - { - "pk": 23922, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-ELOI", - "center": "POINT (559735.6484481056686491 2119867.2898032609373331)", - "surface": 15610000, - "canton": null, - "numero_insee": "23191" - } - }, - { - "pk": 15163, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-ETIENNE-DE-FURSAC", - "center": "POINT (537768.6131450717803091 2125489.0725340149365366)", - "surface": 31710000, - "canton": null, - "numero_insee": "23192" - } - }, - { - "pk": 23744, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINTE-FEYRE", - "center": "POINT (567270.0619163664523512 2128538.1930739227682352)", - "surface": 30120000, - "canton": null, - "numero_insee": "23193" - } - }, - { - "pk": 6578, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINTE-FEYRE-LA-MONTAGNE", - "center": "POINT (591837.3124204430496320 2099316.8897192860022187)", - "surface": 6730000, - "canton": null, - "numero_insee": "23194" - } - }, - { - "pk": 16572, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-FRION", - "center": "POINT (591164.4092447254806757 2096008.1593800822738558)", - "surface": 18730000, - "canton": null, - "numero_insee": "23196" - } - }, - { - "pk": 3218, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-GEORGES-LA-POUGE", - "center": "POINT (571021.3971199109219015 2110853.3349521728232503)", - "surface": 24030000, - "canton": null, - "numero_insee": "23197" - } - }, - { - "pk": 8702, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-GERMAIN-BEAUPRE", - "center": "POINT (539996.0168867545435205 2146426.6048727040179074)", - "surface": 17170000, - "canton": null, - "numero_insee": "23199" - } - }, - { - "pk": 21316, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-GOUSSAUD", - "center": "POINT (539959.7877792799845338 2114797.5381493298336864)", - "surface": 24380000, - "canton": null, - "numero_insee": "23200" - } - }, - { - "pk": 15346, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-HILAIRE-LA-PLAINE", - "center": "POINT (572813.2397116542560980 2123980.3926666416227818)", - "surface": 11370000, - "canton": null, - "numero_insee": "23201" - } - }, - { - "pk": 14917, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-HILAIRE-LE-CHATEAU", - "center": "POINT (565920.3860329088056460 2110410.2698720772750676)", - "surface": 19550000, - "canton": null, - "numero_insee": "23202" - } - }, - { - "pk": 22244, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-JULIEN-LA-GENETE", - "center": "POINT (610624.1509369611740112 2126799.8159253094345331)", - "surface": 12100000, - "canton": null, - "numero_insee": "23203" - } - }, - { - "pk": 20063, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-JUNIEN-LA-BREGERE", - "center": "POINT (554009.6760664669563994 2098399.5862389444373548)", - "surface": 25540000, - "canton": null, - "numero_insee": "23205" - } - }, - { - "pk": 20828, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-LAURENT", - "center": "POINT (570869.7404621636960655 2128968.6879552388563752)", - "surface": 12910000, - "canton": null, - "numero_insee": "23206" - } - }, - { - "pk": 21259, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-LEGER-BRIDEREIX", - "center": "POINT (541529.8484094556188211 2142535.9013843084685504)", - "surface": 8570000, - "canton": null, - "numero_insee": "23207" - } - }, - { - "pk": 16952, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-LEGER-LE-GUERETOIS", - "center": "POINT (559667.8495232651475817 2127974.1369348131120205)", - "surface": 14050000, - "canton": null, - "numero_insee": "23208" - } - }, - { - "pk": 16832, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-LOUP", - "center": "POINT (595706.5557272360892966 2127275.1134548056870699)", - "surface": 18830000, - "canton": null, - "numero_insee": "23209" - } - }, - { - "pk": 36099, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MARC-A-FRONGIER", - "center": "POINT (582404.8694783844985068 2102140.5132924309000373)", - "surface": 25390000, - "canton": null, - "numero_insee": "23211" - } - }, - { - "pk": 14561, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MARC-A-LOUBAUD", - "center": "POINT (573067.1675552572123706 2093654.4371493239887059)", - "surface": 20370000, - "canton": null, - "numero_insee": "23212" - } - }, - { - "pk": 27938, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MARIEN", - "center": "POINT (590653.2199949235655367 2156959.4994678492657840)", - "surface": 12880000, - "canton": null, - "numero_insee": "23213" - } - }, - { - "pk": 13174, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MARTIAL-LE-MONT", - "center": "POINT (580882.0588422084692866 2116641.1848201928660274)", - "surface": 10240000, - "canton": null, - "numero_insee": "23214" - } - }, - { - "pk": 23698, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MARTIAL-LE-VIEUX", - "center": "POINT (597733.7394776535220444 2076544.8673784341663122)", - "surface": 22250000, - "canton": null, - "numero_insee": "23215" - } - }, - { - "pk": 19609, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MARTIN-CHATEAU", - "center": "POINT (559147.5664770005969331 2094438.7993870794307441)", - "surface": 31150000, - "canton": null, - "numero_insee": "23216" - } - }, - { - "pk": 30424, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MARTIN-SAINTE-CATHERINE", - "center": "POINT (539841.4996087565086782 2104987.4759130268357694)", - "surface": 27150000, - "canton": null, - "numero_insee": "23217" - } - }, - { - "pk": 3370, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MAURICE-PRES-CROCQ", - "center": "POINT (598278.1180479039903730 2095166.9987689882982522)", - "surface": 14020000, - "canton": null, - "numero_insee": "23218" - } - }, - { - "pk": 23161, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MAURICE-LA-SOUTERRAINE", - "center": "POINT (529683.3917664556065574 2134830.1742266793735325)", - "surface": 39630000, - "canton": null, - "numero_insee": "23219" - } - }, - { - "pk": 4762, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MEDARD-LA-ROCHETTE", - "center": "POINT (585212.5631991652771831 2113474.5277235293760896)", - "surface": 38800000, - "canton": null, - "numero_insee": "23220" - } - }, - { - "pk": 15639, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MERD-LA-BREUILLE", - "center": "POINT (607301.8418455872451887 2081429.7556470143608749)", - "surface": 40420000, - "canton": null, - "numero_insee": "23221" - } - }, - { - "pk": 6871, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MICHEL-DE-VEISSE", - "center": "POINT (577769.0462745878612623 2105905.2067376631312072)", - "surface": 15560000, - "canton": null, - "numero_insee": "23222" - } - }, - { - "pk": 21610, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-MOREIL", - "center": "POINT (550028.7978450247319415 2095663.7894957782700658)", - "surface": 24160000, - "canton": null, - "numero_insee": "23223" - } - }, - { - "pk": 19410, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-ORADOUX-DE-CHIROUZE", - "center": "POINT (599098.8502778328256682 2080860.4076619399711490)", - "surface": 28570000, - "canton": null, - "numero_insee": "23224" - } - }, - { - "pk": 18699, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-ORADOUX-PRES-CROCQ", - "center": "POINT (602952.7798216413939372 2098709.5146161275915802)", - "surface": 13410000, - "canton": null, - "numero_insee": "23225" - } - }, - { - "pk": 21762, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PARDOUX-D'ARNET", - "center": "POINT (599156.2169298068620265 2097876.8961885566823184)", - "surface": 16350000, - "canton": null, - "numero_insee": "23226" - } - }, - { - "pk": 33255, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PARDOUX-MORTEROLLES", - "center": "POINT (560596.9660536345327273 2100656.7203330346383154)", - "surface": 36600000, - "canton": null, - "numero_insee": "23227" - } - }, - { - "pk": 4599, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PARDOUX-LE-NEUF", - "center": "POINT (591497.5987586965784431 2104018.4220060794614255)", - "surface": 7550000, - "canton": null, - "numero_insee": "23228" - } - }, - { - "pk": 22483, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PARDOUX-LES-CARDS", - "center": "POINT (583545.7686939950799569 2121267.7354171508923173)", - "surface": 24650000, - "canton": null, - "numero_insee": "23229" - } - }, - { - "pk": 37014, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PIERRE-CHERIGNAT", - "center": "POINT (543929.9797969362698495 2106823.2861431031487882)", - "surface": 23570000, - "canton": null, - "numero_insee": "23230" - } - }, - { - "pk": 3908, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PIERRE-DE-FURSAC", - "center": "POINT (534727.6641321214847267 2130067.8919742354191840)", - "surface": 27280000, - "canton": null, - "numero_insee": "23231" - } - }, - { - "pk": 16951, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PIERRE-BELLEVUE", - "center": "POINT (565800.6154837859794497 2100800.3471428933553398)", - "surface": 32830000, - "canton": null, - "numero_insee": "23232" - } - }, - { - "pk": 20938, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PIERRE-LE-BOST", - "center": "POINT (594272.1240199489984661 2155088.1618751464411616)", - "surface": 17130000, - "canton": null, - "numero_insee": "23233" - } - }, - { - "pk": 23628, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PRIEST", - "center": "POINT (601460.0882173208519816 2121518.0936132990755141)", - "surface": 22170000, - "canton": null, - "numero_insee": "23234" - } - }, - { - "pk": 14538, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PRIEST-LA-FEUILLE", - "center": "POINT (538102.9560689429054037 2133399.0613279868848622)", - "surface": 27650000, - "canton": null, - "numero_insee": "23235" - } - }, - { - "pk": 17529, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PRIEST-LA-PLAINE", - "center": "POINT (545504.9800132692325860 2133961.3185234707780182)", - "surface": 21850000, - "canton": null, - "numero_insee": "23236" - } - }, - { - "pk": 3180, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-PRIEST-PALUS", - "center": "POINT (548695.0581165255280212 2099556.2929668906144798)", - "surface": 10610000, - "canton": null, - "numero_insee": "23237" - } - }, - { - "pk": 22416, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-QUENTIN-LA-CHABANNE", - "center": "POINT (585145.7885774894384667 2097559.1917489790357649)", - "surface": 29810000, - "canton": null, - "numero_insee": "23238" - } - }, - { - "pk": 23549, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SEBASTIEN", - "center": "POINT (537921.6861157098319381 2155117.0758159137330949)", - "surface": 25330000, - "canton": null, - "numero_insee": "23239" - } - }, - { - "pk": 5993, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SILVAIN-BAS-LE-ROC", - "center": "POINT (590828.8443163793999702 2147952.9294024026021361)", - "surface": 15420000, - "canton": null, - "numero_insee": "23240" - } - }, - { - "pk": 15252, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SILVAIN-BELLEGARDE", - "center": "POINT (597676.0532531030476093 2107273.2308779694139957)", - "surface": 20850000, - "canton": null, - "numero_insee": "23241" - } - }, - { - "pk": 14994, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SILVAIN-MONTAIGUT", - "center": "POINT (555472.6789886637125164 2126938.1462576412595809)", - "surface": 9620000, - "canton": null, - "numero_insee": "23242" - } - }, - { - "pk": 3100, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SILVAIN-SOUS-TOULX", - "center": "POINT (588493.9953834590269253 2139926.1484823045320809)", - "surface": 14780000, - "canton": null, - "numero_insee": "23243" - } - }, - { - "pk": 14984, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SULPICE-LE-DUNOIS", - "center": "POINT (552925.1047787060961127 2144332.6230499646626413)", - "surface": 30680000, - "canton": null, - "numero_insee": "23244" - } - }, - { - "pk": 22520, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SULPICE-LE-GUERETOIS", - "center": "POINT (560721.8986742597771809 2133588.0491095134057105)", - "surface": 36410000, - "canton": null, - "numero_insee": "23245" - } - }, - { - "pk": 33257, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-SULPICE-LES-CHAMPS", - "center": "POINT (575434.3798569830833003 2109789.2688225936144590)", - "surface": 21660000, - "canton": null, - "numero_insee": "23246" - } - }, - { - "pk": 23171, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-VAURY", - "center": "POINT (554617.6234882692806423 2133436.9170225406996906)", - "surface": 46920000, - "canton": null, - "numero_insee": "23247" - } - }, - { - "pk": 14409, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-VICTOR-EN-MARCHE", - "center": "POINT (558297.6361771228257567 2124259.2978389034979045)", - "surface": 16480000, - "canton": null, - "numero_insee": "23248" - } - }, - { - "pk": 23587, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-YRIEIX-LA-MONTAGNE", - "center": "POINT (574037.8624139206949621 2097265.9384179031476378)", - "surface": 23820000, - "canton": null, - "numero_insee": "23249" - } - }, - { - "pk": 22043, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "SAINT-YRIEIX-LES-BOIS", - "center": "POINT (570631.4889486936153844 2121559.9275013469159603)", - "surface": 15940000, - "canton": null, - "numero_insee": "23250" - } - }, - { - "pk": 29201, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "TARDES", - "center": "POINT (601316.3139061550609767 2126721.6461366154253483)", - "surface": 21560000, - "canton": null, - "numero_insee": "23251" - } - }, - { - "pk": 32787, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "TERCILLAT", - "center": "POINT (578250.5987087894463912 2155954.7411121730692685)", - "surface": 13910000, - "canton": null, - "numero_insee": "23252" - } - }, - { - "pk": 22270, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "THAURON", - "center": "POINT (558605.7710046193096787 2111350.0069427457638085)", - "surface": 22200000, - "canton": null, - "numero_insee": "23253" - } - }, - { - "pk": 13416, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "TOULX-SAINTE-CROIX", - "center": "POINT (590766.5329391254344955 2143448.3621445242315531)", - "surface": 35120000, - "canton": null, - "numero_insee": "23254" - } - }, - { - "pk": 21336, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "TROIS-FONDS", - "center": "POINT (592213.0268031884916127 2138055.6202699765563011)", - "surface": 9700000, - "canton": null, - "numero_insee": "23255" - } - }, - { - "pk": 19756, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "VALLIERE", - "center": "POINT (576811.7813559853238985 2100692.3470060289837420)", - "surface": 48080000, - "canton": null, - "numero_insee": "23257" - } - }, - { - "pk": 15943, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "VAREILLES", - "center": "POINT (532097.8203035976039246 2145359.7956622587516904)", - "surface": 17750000, - "canton": null, - "numero_insee": "23258" - } - }, - { - "pk": 7981, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "VERNEIGES", - "center": "POINT (600300.4612086567794904 2140425.5596132995560765)", - "surface": 7650000, - "canton": null, - "numero_insee": "23259" - } - }, - { - "pk": 21275, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "VIERSAT", - "center": "POINT (608308.8008848450845107 2140292.6250649839639664)", - "surface": 29320000, - "canton": null, - "numero_insee": "23261" - } - }, - { - "pk": 5077, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "VIGEVILLE", - "center": "POINT (579578.7364633084507659 2128841.4428340806625783)", - "surface": 7420000, - "canton": null, - "numero_insee": "23262" - } - }, - { - "pk": 15148, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "VILLARD", - "center": "POINT (550894.1736162437591702 2147818.7950271600857377)", - "surface": 16370000, - "canton": null, - "numero_insee": "23263" - } - }, - { - "pk": 36279, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA VILLEDIEU", - "center": "POINT (565361.7327586994506419 2081478.5296167626511306)", - "surface": 5680000, - "canton": null, - "numero_insee": "23264" - } - }, - { - "pk": 34631, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA VILLENEUVE", - "center": "POINT (606048.7335968466941267 2099536.2592991278506815)", - "surface": 4470000, - "canton": null, - "numero_insee": "23265" - } - }, - { - "pk": 23007, - "model": "ishtar_common.town", - "fields": { - "departement": 24, - "name": "LA VILLETELLE", - "center": "POINT (600117.5962718427181244 2102589.3524274514056742)", - "surface": 16190000, - "canton": null, - "numero_insee": "23266" - } - }, - { - "pk": 17430, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ABJAT-SUR-BANDIAT", - "center": "POINT (476907.7984567831736058 2065827.1051237706560642)", - "surface": 28770000, - "canton": null, - "numero_insee": "24001" - } - }, - { - "pk": 16163, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "AGONAC", - "center": "POINT (475082.5717535010771826 2032479.5802060386631638)", - "surface": 38100000, - "canton": null, - "numero_insee": "24002" - } - }, - { - "pk": 14490, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "AJAT", - "center": "POINT (497019.0718945833505131 2018647.9896229123696685)", - "surface": 22390000, - "canton": null, - "numero_insee": "24004" - } - }, - { - "pk": 9453, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ALLES-SUR-DORDOGNE", - "center": "POINT (484381.5449682823382318 1985509.7001825117040426)", - "surface": 9480000, - "canton": null, - "numero_insee": "24005" - } - }, - { - "pk": 10242, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ALLAS-LES-MINES", - "center": "POINT (500030.5128879995318130 1981535.6195534141734242)", - "surface": 7250000, - "canton": null, - "numero_insee": "24006" - } - }, - { - "pk": 19833, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ALLEMANS", - "center": "POINT (440536.0537058454938233 2033995.0447845489252359)", - "surface": 18770000, - "canton": null, - "numero_insee": "24007" - } - }, - { - "pk": 16762, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ANGOISSE", - "center": "POINT (507081.9736113986000419 2048360.8366057225503027)", - "surface": 23820000, - "canton": null, - "numero_insee": "24008" - } - }, - { - "pk": 3698, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ANLHIAC", - "center": "POINT (504579.5845459048869088 2036328.2837826746981591)", - "surface": 12430000, - "canton": null, - "numero_insee": "24009" - } - }, - { - "pk": 8672, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ANNESSE-ET-BEAULIEU", - "center": "POINT (463060.2911407832289115 2021669.2619308053981513)", - "surface": 12930000, - "canton": null, - "numero_insee": "24010" - } - }, - { - "pk": 24051, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ANTONNE-ET-TRIGONANT", - "center": "POINT (481737.6622350196121261 2026629.0152796127367765)", - "surface": 21040000, - "canton": null, - "numero_insee": "24011" - } - }, - { - "pk": 29717, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ARCHIGNAC", - "center": "POINT (517576.3957640387816355 2002202.5114360474981368)", - "surface": 23340000, - "canton": null, - "numero_insee": "24012" - } - }, - { - "pk": 6404, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ATUR", - "center": "POINT (475617.5379625633941032 2016267.9707670535426587)", - "surface": 19860000, - "canton": null, - "numero_insee": "24013" - } - }, - { - "pk": 20607, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "AUBAS", - "center": "POINT (510309.6338717085891403 2009349.2114458268042654)", - "surface": 17170000, - "canton": null, - "numero_insee": "24014" - } - }, - { - "pk": 33008, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "AUDRIX", - "center": "POINT (490268.0154127661953680 1987860.9617471364326775)", - "surface": 6400000, - "canton": null, - "numero_insee": "24015" - } - }, - { - "pk": 33014, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "AUGIGNAC", - "center": "POINT (472401.2985715903923847 2066089.9907317615579814)", - "surface": 23270000, - "canton": null, - "numero_insee": "24016" - } - }, - { - "pk": 17360, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "AURIAC-DU-PERIGORD", - "center": "POINT (504772.8493903801427223 2013106.9186896451283246)", - "surface": 18330000, - "canton": null, - "numero_insee": "24018" - } - }, - { - "pk": 21772, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "AZERAT", - "center": "POINT (503227.3087477358058095 2018399.3399773668497801)", - "surface": 20630000, - "canton": null, - "numero_insee": "24019" - } - }, - { - "pk": 17800, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA BACHELLERIE", - "center": "POINT (507656.3795173589605838 2015433.2166657301131636)", - "surface": 17720000, - "canton": null, - "numero_insee": "24020" - } - }, - { - "pk": 18350, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BADEFOLS-D'ANS", - "center": "POINT (510972.0142697438714094 2025971.2521310278680176)", - "surface": 18740000, - "canton": null, - "numero_insee": "24021" - } - }, - { - "pk": 6980, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BADEFOLS-SUR-DORDOGNE", - "center": "POINT (478495.0535573274246417 1983158.4597912079188973)", - "surface": 6060000, - "canton": null, - "numero_insee": "24022" - } - }, - { - "pk": 8068, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BANEUIL", - "center": "POINT (469972.0077211956377141 1984889.5502488689962775)", - "surface": 9010000, - "canton": null, - "numero_insee": "24023" - } - }, - { - "pk": 12741, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BARDOU", - "center": "POINT (469174.1323522993479855 1972470.2223129484336823)", - "surface": 4850000, - "canton": null, - "numero_insee": "24024" - } - }, - { - "pk": 16785, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BARS", - "center": "POINT (498682.1657263138331473 2011254.4407229691278189)", - "surface": 23430000, - "canton": null, - "numero_insee": "24025" - } - }, - { - "pk": 32292, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BASSILLAC", - "center": "POINT (480784.1237763667013496 2020915.4464024920016527)", - "surface": 18770000, - "canton": null, - "numero_insee": "24026" - } - }, - { - "pk": 32774, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BAYAC", - "center": "POINT (472218.9587789571378380 1979502.6764501451980323)", - "surface": 10290000, - "canton": null, - "numero_insee": "24027" - } - }, - { - "pk": 16318, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEAUMONT-DU-PERIGORD", - "center": "POINT (474650.3327322607510723 1976019.2681922125630081)", - "surface": 24270000, - "canton": null, - "numero_insee": "24028" - } - }, - { - "pk": 21251, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEAUPOUYET", - "center": "POINT (438201.9724937397986650 2001543.4579457826912403)", - "surface": 23020000, - "canton": null, - "numero_insee": "24029" - } - }, - { - "pk": 13087, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEAUREGARD-DE-TERRASSON", - "center": "POINT (512842.0292825883952901 2017778.6888587540015578)", - "surface": 8370000, - "canton": null, - "numero_insee": "24030" - } - }, - { - "pk": 11810, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEAUREGARD-ET-BASSAC", - "center": "POINT (465536.7460213100421242 2000668.7836127043701708)", - "surface": 12160000, - "canton": null, - "numero_insee": "24031" - } - }, - { - "pk": 14500, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEAURONNE", - "center": "POINT (444613.6191088823252358 2013007.9645519540645182)", - "surface": 19290000, - "canton": null, - "numero_insee": "24032" - } - }, - { - "pk": 21353, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEAUSSAC", - "center": "POINT (455049.6491914700018242 2058238.7080297050997615)", - "surface": 18450000, - "canton": null, - "numero_insee": "24033" - } - }, - { - "pk": 4440, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BELEYMAS", - "center": "POINT (454429.6314226499525830 2000176.3042375966906548)", - "surface": 16150000, - "canton": null, - "numero_insee": "24034" - } - }, - { - "pk": 18041, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BELVES", - "center": "POINT (492497.3363333549932577 1972563.8359330678358674)", - "surface": 24390000, - "canton": null, - "numero_insee": "24035" - } - }, - { - "pk": 9200, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BERBIGUIERES", - "center": "POINT (497816.7594211506075226 1982918.6340323139447719)", - "surface": 5440000, - "canton": null, - "numero_insee": "24036" - } - }, - { - "pk": 19597, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BERGERAC", - "center": "POINT (453650.6927905527991243 1985454.9370857381727546)", - "surface": 56580000, - "canton": null, - "numero_insee": "24037" - } - }, - { - "pk": 3445, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BERTRIC-BUREE", - "center": "POINT (444521.4877427223837003 2036230.1916313890833408)", - "surface": 16700000, - "canton": null, - "numero_insee": "24038" - } - }, - { - "pk": 26221, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BESSE", - "center": "POINT (502884.6920382405514829 1963340.6384841690305620)", - "surface": 16670000, - "canton": null, - "numero_insee": "24039" - } - }, - { - "pk": 16642, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEYNAC-ET-CAZENAC", - "center": "POINT (504708.3324004299938679 1984777.8140791198238730)", - "surface": 13100000, - "canton": null, - "numero_insee": "24040" - } - }, - { - "pk": 26849, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BEZENAC", - "center": "POINT (501113.2385023686802015 1983746.8755870922468603)", - "surface": 4180000, - "canton": null, - "numero_insee": "24041" - } - }, - { - "pk": 20925, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BIRAS", - "center": "POINT (466768.3288688748143613 2033211.3812407997902483)", - "surface": 19770000, - "canton": null, - "numero_insee": "24042" - } - }, - { - "pk": 16168, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BIRON", - "center": "POINT (483801.1542560990201309 1958977.5980473863892257)", - "surface": 13140000, - "canton": null, - "numero_insee": "24043" - } - }, - { - "pk": 16920, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BLIS-ET-BORN", - "center": "POINT (487600.3890713942819275 2019770.8801044069696218)", - "surface": 20620000, - "canton": null, - "numero_insee": "24044" - } - }, - { - "pk": 31678, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOISSE", - "center": "POINT (466794.2461218638927676 1969747.6959619214758277)", - "surface": 16790000, - "canton": null, - "numero_insee": "24045" - } - }, - { - "pk": 19091, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOISSEUILH", - "center": "POINT (509021.0984955213498324 2031860.8312838471028954)", - "surface": 12170000, - "canton": null, - "numero_insee": "24046" - } - }, - { - "pk": 13538, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA BOISSIERE-D'ANS", - "center": "POINT (492948.7958826491958462 2026622.0781426457688212)", - "surface": 8620000, - "canton": null, - "numero_insee": "24047" - } - }, - { - "pk": 8182, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BONNEVILLE-ET-SAINT-AVIT-DE-FUMADIERES", - "center": "POINT (421684.7727822983288206 1989494.8476262392941862)", - "surface": 7050000, - "canton": null, - "numero_insee": "24048" - } - }, - { - "pk": 15199, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BORREZE", - "center": "POINT (525323.6751109320903197 1997462.2471432881429791)", - "surface": 28020000, - "canton": null, - "numero_insee": "24050" - } - }, - { - "pk": 36963, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOUILLAC", - "center": "POINT (487773.6911087345797569 1974826.9352496846113354)", - "surface": 12380000, - "canton": null, - "numero_insee": "24052" - } - }, - { - "pk": 5644, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOULAZAC", - "center": "POINT (476684.4890287808375433 2020380.9086524439044297)", - "surface": 14590000, - "canton": null, - "numero_insee": "24053" - } - }, - { - "pk": 29838, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOUNIAGUES", - "center": "POINT (456644.7027334275189787 1974468.4828705857507885)", - "surface": 8700000, - "canton": null, - "numero_insee": "24054" - } - }, - { - "pk": 23523, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOURDEILLES", - "center": "POINT (462333.5964895151555538 2036878.2425109865143895)", - "surface": 22690000, - "canton": null, - "numero_insee": "24055" - } - }, - { - "pk": 32546, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LE BOURDEIX", - "center": "POINT (467199.9877663212828338 2065646.4568678054492921)", - "surface": 11580000, - "canton": null, - "numero_insee": "24056" - } - }, - { - "pk": 29171, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOURG-DES-MAISONS", - "center": "POINT (450803.2026228247559629 2039185.0489210444502532)", - "surface": 9120000, - "canton": null, - "numero_insee": "24057" - } - }, - { - "pk": 26848, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOURG-DU-BOST", - "center": "POINT (437252.0761570495087653 2031665.6096856661606580)", - "surface": 7270000, - "canton": null, - "numero_insee": "24058" - } - }, - { - "pk": 33726, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOURGNAC", - "center": "POINT (447092.9297348518739454 2003719.1628061134833843)", - "surface": 9090000, - "canton": null, - "numero_insee": "24059" - } - }, - { - "pk": 12065, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOURNIQUEL", - "center": "POINT (476020.9263745865901001 1979734.4400972849689424)", - "surface": 8940000, - "canton": null, - "numero_insee": "24060" - } - }, - { - "pk": 24875, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOURROU", - "center": "POINT (463484.2357810099492781 2006757.9001775220967829)", - "surface": 9490000, - "canton": null, - "numero_insee": "24061" - } - }, - { - "pk": 3911, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOUTEILLES-SAINT-SEBASTIEN", - "center": "POINT (439479.6530199339613318 2040692.8799016403499991)", - "surface": 14050000, - "canton": null, - "numero_insee": "24062" - } - }, - { - "pk": 29714, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BOUZIC", - "center": "POINT (511241.9582546991878189 1969516.5194337877910584)", - "surface": 12290000, - "canton": null, - "numero_insee": "24063" - } - }, - { - "pk": 19086, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BRANTOME", - "center": "POINT (468302.5395229291170835 2041332.0548045865725726)", - "surface": 36200000, - "canton": null, - "numero_insee": "24064" - } - }, - { - "pk": 24673, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BREUILH", - "center": "POINT (475189.3590836166404188 2007555.7160051173996180)", - "surface": 10470000, - "canton": null, - "numero_insee": "24065" - } - }, - { - "pk": 18039, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LE BUGUE", - "center": "POINT (488425.5448425604263321 1992750.6259224156383425)", - "surface": 30240000, - "canton": null, - "numero_insee": "24067" - } - }, - { - "pk": 19870, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LE BUISSON-DE-CADOUIN", - "center": "POINT (485520.0167385576642118 1981014.5636214101687074)", - "surface": 50160000, - "canton": null, - "numero_insee": "24068" - } - }, - { - "pk": 17331, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BUSSAC", - "center": "POINT (463883.9336340363952331 2030985.2931254468858242)", - "surface": 17430000, - "canton": null, - "numero_insee": "24069" - } - }, - { - "pk": 19423, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BUSSEROLLES", - "center": "POINT (468215.4563120658276603 2075964.7264480295125395)", - "surface": 33520000, - "canton": null, - "numero_insee": "24070" - } - }, - { - "pk": 22887, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "BUSSIERE-BADIL", - "center": "POINT (464636.3443357926444151 2073032.2793965640012175)", - "surface": 20580000, - "canton": null, - "numero_insee": "24071" - } - }, - { - "pk": 13830, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CALES", - "center": "POINT (479673.7523415606701747 1985871.0030662040226161)", - "surface": 8060000, - "canton": null, - "numero_insee": "24073" - } - }, - { - "pk": 33746, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CALVIAC-EN-PERIGORD", - "center": "POINT (519722.5889696701196954 1984902.8651098450645804)", - "surface": 14440000, - "canton": null, - "numero_insee": "24074" - } - }, - { - "pk": 9580, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CAMPAGNE", - "center": "POINT (492556.8818487605312839 1989481.6173810802865773)", - "surface": 15170000, - "canton": null, - "numero_insee": "24076" - } - }, - { - "pk": 37480, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CAMPSEGRET", - "center": "POINT (460278.2334998687729239 1995019.5201792092993855)", - "surface": 13940000, - "canton": null, - "numero_insee": "24077" - } - }, - { - "pk": 9763, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CANTILLAC", - "center": "POINT (467365.1920147244818509 2045728.5761926474515349)", - "surface": 8460000, - "canton": null, - "numero_insee": "24079" - } - }, - { - "pk": 21417, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CAPDROT", - "center": "POINT (489556.0261536818579771 1965131.7477803237270564)", - "surface": 43960000, - "canton": null, - "numero_insee": "24080" - } - }, - { - "pk": 15447, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CARLUX", - "center": "POINT (522801.3353957005310804 1987831.4823131498415023)", - "surface": 13290000, - "canton": null, - "numero_insee": "24081" - } - }, - { - "pk": 20362, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CARSAC-AILLAC", - "center": "POINT (515928.1512625763425604 1983770.1238528185058385)", - "surface": 17240000, - "canton": null, - "numero_insee": "24082" - } - }, - { - "pk": 3412, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CARSAC-DE-GURSON", - "center": "POINT (422933.9037320991046727 1995811.5630104735027999)", - "surface": 7090000, - "canton": null, - "numero_insee": "24083" - } - }, - { - "pk": 7342, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CARVES", - "center": "POINT (498968.6013467911980115 1976821.9713788768276572)", - "surface": 10400000, - "canton": null, - "numero_insee": "24084" - } - }, - { - "pk": 20782, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CASSAGNE", - "center": "POINT (518739.9850419167196378 2006716.7313772013876587)", - "surface": 15100000, - "canton": null, - "numero_insee": "24085" - } - }, - { - "pk": 20861, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CASTELNAUD-LA-CHAPELLE", - "center": "POINT (504459.6995350237702951 1978569.4064438010100275)", - "surface": 21010000, - "canton": null, - "numero_insee": "24086" - } - }, - { - "pk": 3290, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CASTELS", - "center": "POINT (500692.0374487357330509 1986245.9206431251950562)", - "surface": 20420000, - "canton": null, - "numero_insee": "24087" - } - }, - { - "pk": 21199, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CAUSE-DE-CLERANS", - "center": "POINT (468451.4810325908474624 1987179.2791086633224040)", - "surface": 14440000, - "canton": null, - "numero_insee": "24088" - } - }, - { - "pk": 7610, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CAZOULES", - "center": "POINT (528212.2984319084789604 1987175.8899347365368158)", - "surface": 3690000, - "canton": null, - "numero_insee": "24089" - } - }, - { - "pk": 23768, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CELLES", - "center": "POINT (449042.1759760786080733 2034265.6538678449578583)", - "surface": 27910000, - "canton": null, - "numero_insee": "24090" - } - }, - { - "pk": 16844, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CENAC-ET-SAINT-JULIEN", - "center": "POINT (510280.2432187299127690 1976816.0188908937852830)", - "surface": 20580000, - "canton": null, - "numero_insee": "24091" - } - }, - { - "pk": 14491, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CENDRIEUX", - "center": "POINT (480850.2879322241060436 2000895.9810549656394869)", - "surface": 31070000, - "canton": null, - "numero_insee": "24092" - } - }, - { - "pk": 19988, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CERCLES", - "center": "POINT (453679.3111145065631717 2042412.0044808944221586)", - "surface": 15140000, - "canton": null, - "numero_insee": "24093" - } - }, - { - "pk": 25612, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHALAGNAC", - "center": "POINT (469550.0780250850366428 2011613.0238284394145012)", - "surface": 14540000, - "canton": null, - "numero_insee": "24094" - } - }, - { - "pk": 23367, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHALAIS", - "center": "POINT (490795.7918292843969539 2056833.7041639760136604)", - "surface": 19140000, - "canton": null, - "numero_insee": "24095" - } - }, - { - "pk": 21352, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHAMPAGNAC-DE-BELAIR", - "center": "POINT (471368.8156575716566294 2045761.7902759201824665)", - "surface": 19220000, - "canton": null, - "numero_insee": "24096" - } - }, - { - "pk": 23319, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHAMPAGNE-ET-FONTAINE", - "center": "POINT (443410.3943207684205845 2049533.9929660512134433)", - "surface": 24830000, - "canton": null, - "numero_insee": "24097" - } - }, - { - "pk": 33430, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHAMPCEVINEL", - "center": "POINT (473336.5793648806866258 2025758.4742945814505219)", - "surface": 18340000, - "canton": null, - "numero_insee": "24098" - } - }, - { - "pk": 16755, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHAMPEAUX-ET-LA-CHAPELLE-POMMIER", - "center": "POINT (462697.1261368452105671 2053397.3498198387678713)", - "surface": 24300000, - "canton": null, - "numero_insee": "24099" - } - }, - { - "pk": 15762, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHAMPNIERS-ET-REILHAC", - "center": "POINT (474122.3281878626439720 2075813.5443740813061595)", - "surface": 21110000, - "canton": null, - "numero_insee": "24100" - } - }, - { - "pk": 21820, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHANCELADE", - "center": "POINT (467840.6478350291727111 2024611.7838464605156332)", - "surface": 16930000, - "canton": null, - "numero_insee": "24102" - } - }, - { - "pk": 27237, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LE CHANGE", - "center": "POINT (486369.3387065280112438 2023364.2244551968760788)", - "surface": 16330000, - "canton": null, - "numero_insee": "24103" - } - }, - { - "pk": 16861, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHANTERAC", - "center": "POINT (450659.6075590072432533 2020265.2045964698772877)", - "surface": 19070000, - "canton": null, - "numero_insee": "24104" - } - }, - { - "pk": 32761, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHAPDEUIL", - "center": "POINT (453401.4259829656220973 2039707.0604030103422701)", - "surface": 7560000, - "canton": null, - "numero_insee": "24105" - } - }, - { - "pk": 4739, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CHAPELLE-AUBAREIL", - "center": "POINT (509472.1354765269206837 2001734.6034115264192224)", - "surface": 20310000, - "canton": null, - "numero_insee": "24106" - } - }, - { - "pk": 3077, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CHAPELLE-FAUCHER", - "center": "POINT (476599.2834724370040931 2042702.1751739874016494)", - "surface": 19230000, - "canton": null, - "numero_insee": "24107" - } - }, - { - "pk": 16164, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CHAPELLE-GONAGUET", - "center": "POINT (465018.1450146188144572 2026990.7490344839170575)", - "surface": 19710000, - "canton": null, - "numero_insee": "24108" - } - }, - { - "pk": 36290, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CHAPELLE-GRESIGNAC", - "center": "POINT (443546.9348226984729990 2045130.8376365955919027)", - "surface": 6960000, - "canton": null, - "numero_insee": "24109" - } - }, - { - "pk": 28307, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CHAPELLE-MONTABOURLET", - "center": "POINT (452852.8813431076705456 2045508.1850422048009932)", - "surface": 5780000, - "canton": null, - "numero_insee": "24110" - } - }, - { - "pk": 10212, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CHAPELLE-MONTMOREAU", - "center": "POINT (467518.8815259200637229 2051335.2983860876411200)", - "surface": 8320000, - "canton": null, - "numero_insee": "24111" - } - }, - { - "pk": 30014, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA CHAPELLE-SAINT-JEAN", - "center": "POINT (507799.9017188282450661 2022241.1748789832927287)", - "surface": 3880000, - "canton": null, - "numero_insee": "24113" - } - }, - { - "pk": 11247, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHASSAIGNES", - "center": "POINT (436161.8299080278375186 2030355.3091525116469711)", - "surface": 5860000, - "canton": null, - "numero_insee": "24114" - } - }, - { - "pk": 19995, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHATEAU-L'EVEQUE", - "center": "POINT (470399.0291706116986461 2029938.2483649400528520)", - "surface": 37140000, - "canton": null, - "numero_insee": "24115" - } - }, - { - "pk": 17494, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHATRES", - "center": "POINT (510209.6171840124297887 2021360.3449779530055821)", - "surface": 12550000, - "canton": null, - "numero_insee": "24116" - } - }, - { - "pk": 31890, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHENAUD", - "center": "POINT (422584.0679505540756509 2026038.9175365283153951)", - "surface": 12580000, - "canton": null, - "numero_insee": "24118" - } - }, - { - "pk": 22110, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHERVEIX-CUBAS", - "center": "POINT (503809.6740492121316493 2032618.2394874289166182)", - "surface": 14840000, - "canton": null, - "numero_insee": "24120" - } - }, - { - "pk": 10025, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CHOURGNAC", - "center": "POINT (499153.6648795244400389 2026773.7782877418212593)", - "surface": 7170000, - "canton": null, - "numero_insee": "24121" - } - }, - { - "pk": 19274, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CLADECH", - "center": "POINT (500048.0012331104371697 1979433.6163213029503822)", - "surface": 5570000, - "canton": null, - "numero_insee": "24122" - } - }, - { - "pk": 11256, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CLERMONT-DE-BEAUREGARD", - "center": "POINT (466679.2927073916653171 1995673.2084529935382307)", - "surface": 6260000, - "canton": null, - "numero_insee": "24123" - } - }, - { - "pk": 11527, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CLERMONT-D'EXCIDEUIL", - "center": "POINT (498933.6792022562003694 2041186.1086929251905531)", - "surface": 10440000, - "canton": null, - "numero_insee": "24124" - } - }, - { - "pk": 35842, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COLOMBIER", - "center": "POINT (455919.9751448945607990 1977365.4550351826474071)", - "surface": 7050000, - "canton": null, - "numero_insee": "24126" - } - }, - { - "pk": 25700, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COLY", - "center": "POINT (515608.7372684838483110 2010094.0490589775145054)", - "surface": 8390000, - "canton": null, - "numero_insee": "24127" - } - }, - { - "pk": 30397, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COMBERANCHE-ET-EPELUCHE", - "center": "POINT (438544.1596894072717987 2032777.3826352669857442)", - "surface": 3960000, - "canton": null, - "numero_insee": "24128" - } - }, - { - "pk": 16757, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CONDAT-SUR-TRINCOU", - "center": "POINT (473000.9981918214471079 2042071.7225735408719629)", - "surface": 17200000, - "canton": null, - "numero_insee": "24129" - } - }, - { - "pk": 32222, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CONDAT-SUR-VEZERE", - "center": "POINT (512786.9543152764090337 2012372.8442305629141629)", - "surface": 16430000, - "canton": null, - "numero_insee": "24130" - } - }, - { - "pk": 26371, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CONNEZAC", - "center": "POINT (458848.9094880374614149 2058770.6731738199014217)", - "surface": 6050000, - "canton": null, - "numero_insee": "24131" - } - }, - { - "pk": 14448, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CONNE-DE-LABARDE", - "center": "POINT (458724.3145789381815121 1977188.4929257999174297)", - "surface": 10180000, - "canton": null, - "numero_insee": "24132" - } - }, - { - "pk": 10114, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA COQUILLE", - "center": "POINT (492860.2318422041716985 2061355.2057163747958839)", - "surface": 22940000, - "canton": null, - "numero_insee": "24133" - } - }, - { - "pk": 14614, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CORGNAC-SUR-L'ISLE", - "center": "POINT (490916.4251786269014701 2042320.6167049314826727)", - "surface": 21600000, - "canton": null, - "numero_insee": "24134" - } - }, - { - "pk": 10465, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CORNILLE", - "center": "POINT (477618.9320683659170754 2028396.5923196575604379)", - "surface": 13390000, - "canton": null, - "numero_insee": "24135" - } - }, - { - "pk": 3629, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COUBJOURS", - "center": "POINT (514864.7620871500112116 2027304.9596162016969174)", - "surface": 9840000, - "canton": null, - "numero_insee": "24136" - } - }, - { - "pk": 4630, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COULAURES", - "center": "POINT (493085.7354233376681805 2034230.7107209414243698)", - "surface": 30090000, - "canton": null, - "numero_insee": "24137" - } - }, - { - "pk": 26853, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COULOUNIEIX-CHAMIERS", - "center": "POINT (470284.3836703185224906 2019627.0950355695094913)", - "surface": 21490000, - "canton": null, - "numero_insee": "24138" - } - }, - { - "pk": 24908, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COURSAC", - "center": "POINT (466715.9211830660933629 2015393.3086488440167159)", - "surface": 25300000, - "canton": null, - "numero_insee": "24139" - } - }, - { - "pk": 8432, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COURS-DE-PILE", - "center": "POINT (459274.2736588636762463 1983299.2968256350141019)", - "surface": 11030000, - "canton": null, - "numero_insee": "24140" - } - }, - { - "pk": 33974, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COUTURES", - "center": "POINT (447808.7561895377002656 2038159.2711688335984945)", - "surface": 8540000, - "canton": null, - "numero_insee": "24141" - } - }, - { - "pk": 31057, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COUX-ET-BIGAROQUE", - "center": "POINT (491701.7972163844387978 1983968.9058061446994543)", - "surface": 19480000, - "canton": null, - "numero_insee": "24142" - } - }, - { - "pk": 35352, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "COUZE-ET-SAINT-FRONT", - "center": "POINT (472199.8523460612632334 1981804.8715290836989880)", - "surface": 8250000, - "canton": null, - "numero_insee": "24143" - } - }, - { - "pk": 8539, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CREYSSAC", - "center": "POINT (459836.2925626458600163 2036256.9508567119482905)", - "surface": 4620000, - "canton": null, - "numero_insee": "24144" - } - }, - { - "pk": 7451, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CREYSSE", - "center": "POINT (458647.9813388322363608 1986397.2684021163731813)", - "surface": 11070000, - "canton": null, - "numero_insee": "24145" - } - }, - { - "pk": 30293, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CREYSSENSAC-ET-PISSOT", - "center": "POINT (468569.9059681681683287 2009102.3887593834660947)", - "surface": 8840000, - "canton": null, - "numero_insee": "24146" - } - }, - { - "pk": 3346, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "CUBJAC", - "center": "POINT (490152.0442724251770414 2025898.1365949073806405)", - "surface": 21280000, - "canton": null, - "numero_insee": "24147" - } - }, - { - "pk": 5111, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "DAGLAN", - "center": "POINT (508914.7423762046382762 1972500.2302692397497594)", - "surface": 20660000, - "canton": null, - "numero_insee": "24150" - } - }, - { - "pk": 21326, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "DOISSAT", - "center": "POINT (500829.4554983580601402 1969730.1506745661608875)", - "surface": 15650000, - "canton": null, - "numero_insee": "24151" - } - }, - { - "pk": 35362, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "DOMME", - "center": "POINT (513468.2956143604242243 1978644.4163772023748606)", - "surface": 24790000, - "canton": null, - "numero_insee": "24152" - } - }, - { - "pk": 7814, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA DORNAC", - "center": "POINT (521727.7689649948151782 2008543.4383418252691627)", - "surface": 16240000, - "canton": null, - "numero_insee": "24153" - } - }, - { - "pk": 24655, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "DOUCHAPT", - "center": "POINT (451400.6552586411125958 2027478.4806197686120868)", - "surface": 8490000, - "canton": null, - "numero_insee": "24154" - } - }, - { - "pk": 19991, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "DOUVILLE", - "center": "POINT (462625.7213580880779773 2001645.6511264077853411)", - "surface": 19910000, - "canton": null, - "numero_insee": "24155" - } - }, - { - "pk": 33760, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "DOUZILLAC", - "center": "POINT (448026.7303531637880951 2011835.0231045964173973)", - "surface": 17090000, - "canton": null, - "numero_insee": "24157" - } - }, - { - "pk": 22524, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ECHOURGNAC", - "center": "POINT (433674.4975956490961835 2016420.9484032464679331)", - "surface": 34820000, - "canton": null, - "numero_insee": "24159" - } - }, - { - "pk": 6538, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EGLISE-NEUVE-DE-VERGT", - "center": "POINT (473658.8810672164545394 2011046.5194447883404791)", - "surface": 7730000, - "canton": null, - "numero_insee": "24160" - } - }, - { - "pk": 4027, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EGLISE-NEUVE-D'ISSAC", - "center": "POINT (449328.9803946133470163 1999633.5468490440398455)", - "surface": 16710000, - "canton": null, - "numero_insee": "24161" - } - }, - { - "pk": 30644, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ESCOIRE", - "center": "POINT (483260.6594514103489928 2024039.0916360365226865)", - "surface": 3880000, - "canton": null, - "numero_insee": "24162" - } - }, - { - "pk": 26206, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ETOUARS", - "center": "POINT (465670.4303705959464423 2069037.0309586641378701)", - "surface": 8090000, - "canton": null, - "numero_insee": "24163" - } - }, - { - "pk": 35669, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EXCIDEUIL", - "center": "POINT (500067.1526369942585006 2037291.7179442429915071)", - "surface": 5240000, - "canton": null, - "numero_insee": "24164" - } - }, - { - "pk": 22922, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EYGURANDE-ET-GARDEDEUIL", - "center": "POINT (425509.8929526347201318 2011148.2560685249045491)", - "surface": 36050000, - "canton": null, - "numero_insee": "24165" - } - }, - { - "pk": 23816, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EYLIAC", - "center": "POINT (483509.0686868404736742 2018235.3952370979823172)", - "surface": 23480000, - "canton": null, - "numero_insee": "24166" - } - }, - { - "pk": 18758, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EYMET", - "center": "POINT (445908.1026565824868158 1965470.3614628803916276)", - "surface": 31280000, - "canton": null, - "numero_insee": "24167" - } - }, - { - "pk": 3119, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EYVIRAT", - "center": "POINT (474639.0052746383589692 2037681.0087663913145661)", - "surface": 18280000, - "canton": null, - "numero_insee": "24170" - } - }, - { - "pk": 10870, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "EYZERAC", - "center": "POINT (487599.2893270429340191 2043994.7083524032495916)", - "surface": 11570000, - "canton": null, - "numero_insee": "24171" - } - }, - { - "pk": 18975, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LES EYZIES-DE-TAYAC-SIREUIL", - "center": "POINT (497628.4099271006998606 1993527.8526031817309558)", - "surface": 38930000, - "canton": null, - "numero_insee": "24172" - } - }, - { - "pk": 22016, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FANLAC", - "center": "POINT (502009.3911883765249513 2008379.2181519942823797)", - "surface": 14640000, - "canton": null, - "numero_insee": "24174" - } - }, - { - "pk": 12662, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LES FARGES", - "center": "POINT (509976.8492567483917810 2013250.3412312325090170)", - "surface": 7960000, - "canton": null, - "numero_insee": "24175" - } - }, - { - "pk": 31470, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FAURILLES", - "center": "POINT (469209.8444818799034692 1968166.0852497662417591)", - "surface": 4350000, - "canton": null, - "numero_insee": "24176" - } - }, - { - "pk": 16859, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FAUX", - "center": "POINT (466129.7368140442995355 1977450.1041458249092102)", - "surface": 16050000, - "canton": null, - "numero_insee": "24177" - } - }, - { - "pk": 20867, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FESTALEMPS", - "center": "POINT (435395.0372909650905058 2026244.9147318790201098)", - "surface": 12340000, - "canton": null, - "numero_insee": "24178" - } - }, - { - "pk": 27567, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA FEUILLADE", - "center": "POINT (526093.4779264384415001 2013184.4384152325801551)", - "surface": 3990000, - "canton": null, - "numero_insee": "24179" - } - }, - { - "pk": 18611, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FIRBEIX", - "center": "POINT (491113.7875259439460933 2066745.8767185471951962)", - "surface": 23190000, - "canton": null, - "numero_insee": "24180" - } - }, - { - "pk": 32110, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FLAUGEAC", - "center": "POINT (449738.0827575298026204 1974411.2597717184107751)", - "surface": 7280000, - "canton": null, - "numero_insee": "24181" - } - }, - { - "pk": 18606, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FLEURAC", - "center": "POINT (494868.4272166410228238 2000411.8741656807251275)", - "surface": 22770000, - "canton": null, - "numero_insee": "24183" - } - }, - { - "pk": 24969, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FLORIMONT-GAUMIER", - "center": "POINT (512856.0033625595970079 1968028.4149161907844245)", - "surface": 9320000, - "canton": null, - "numero_insee": "24184" - } - }, - { - "pk": 34885, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FONROQUE", - "center": "POINT (447181.1763183345319703 1968884.4174180252011865)", - "surface": 8990000, - "canton": null, - "numero_insee": "24186" - } - }, - { - "pk": 20984, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FOSSEMAGNE", - "center": "POINT (493854.3932369821704924 2014017.0881206891499460)", - "surface": 22600000, - "canton": null, - "numero_insee": "24188" - } - }, - { - "pk": 13984, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FOUGUEYROLLES", - "center": "POINT (430209.3904878845205531 1987563.2655439116060734)", - "surface": 11520000, - "canton": null, - "numero_insee": "24189" - } - }, - { - "pk": 18170, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "FRAISSE", - "center": "POINT (439360.9822863584849983 1994545.9719216809608042)", - "surface": 21440000, - "canton": null, - "numero_insee": "24191" - } - }, - { - "pk": 24244, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GABILLOU", - "center": "POINT (497477.9092162184533663 2023656.7706711587961763)", - "surface": 8110000, - "canton": null, - "numero_insee": "24192" - } - }, - { - "pk": 20235, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GAGEAC-ET-ROUILLAC", - "center": "POINT (443284.7120282470714301 1980063.6733665042556822)", - "surface": 14060000, - "canton": null, - "numero_insee": "24193" - } - }, - { - "pk": 18038, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GARDONNE", - "center": "POINT (441257.1199843353824690 1983150.0621857151854783)", - "surface": 8340000, - "canton": null, - "numero_insee": "24194" - } - }, - { - "pk": 12332, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GAUGEAC", - "center": "POINT (484260.8884551235823892 1963886.5011308037210256)", - "surface": 10270000, - "canton": null, - "numero_insee": "24195" - } - }, - { - "pk": 16169, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GENIS", - "center": "POINT (507974.3532936562551185 2037357.5221827011555433)", - "surface": 26960000, - "canton": null, - "numero_insee": "24196" - } - }, - { - "pk": 20131, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GINESTET", - "center": "POINT (449900.7465716817532666 1991029.5731683776248246)", - "surface": 12920000, - "canton": null, - "numero_insee": "24197" - } - }, - { - "pk": 15092, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA GONTERIE-BOULOUNEIX", - "center": "POINT (462675.8709638525033370 2043887.9327123560942709)", - "surface": 12190000, - "canton": null, - "numero_insee": "24198" - } - }, - { - "pk": 17489, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GOUT-ROSSIGNOL", - "center": "POINT (448828.5348273973795585 2047977.2906891070306301)", - "surface": 25030000, - "canton": null, - "numero_insee": "24199" - } - }, - { - "pk": 36569, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GRAND-BRASSAC", - "center": "POINT (454742.4152795323170722 2034913.4597715581767261)", - "surface": 31830000, - "canton": null, - "numero_insee": "24200" - } - }, - { - "pk": 32295, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GRANGES-D'ANS", - "center": "POINT (504081.4936843244358897 2024012.0085957222618163)", - "surface": 12160000, - "canton": null, - "numero_insee": "24202" - } - }, - { - "pk": 28530, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LES GRAULGES", - "center": "POINT (452154.5093562575057149 2057313.8553911698982120)", - "surface": 4280000, - "canton": null, - "numero_insee": "24203" - } - }, - { - "pk": 30174, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GREZES", - "center": "POINT (523196.6244895537965931 2012459.5858752627391368)", - "surface": 6030000, - "canton": null, - "numero_insee": "24204" - } - }, - { - "pk": 3177, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GRIGNOLS", - "center": "POINT (458444.7152567323646508 2010920.3310976375360042)", - "surface": 21070000, - "canton": null, - "numero_insee": "24205" - } - }, - { - "pk": 12865, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GRIVES", - "center": "POINT (500190.5692445395980030 1974329.5705066318623722)", - "surface": 8250000, - "canton": null, - "numero_insee": "24206" - } - }, - { - "pk": 7999, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GROLEJAC", - "center": "POINT (517367.0155757246538997 1979277.5121759874746203)", - "surface": 12300000, - "canton": null, - "numero_insee": "24207" - } - }, - { - "pk": 25804, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "GRUN-BORDAS", - "center": "POINT (466389.4383074337383732 2006481.6929001330863684)", - "surface": 12770000, - "canton": null, - "numero_insee": "24208" - } - }, - { - "pk": 36717, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "HAUTEFAYE", - "center": "POINT (457127.4799672400113195 2061158.7215914712287486)", - "surface": 12420000, - "canton": null, - "numero_insee": "24209" - } - }, - { - "pk": 17905, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "HAUTEFORT", - "center": "POINT (505637.9801115185837261 2029430.3021882704924792)", - "surface": 26580000, - "canton": null, - "numero_insee": "24210" - } - }, - { - "pk": 23092, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ISSIGEAC", - "center": "POINT (462778.7750764339580201 1971115.8354020300321281)", - "surface": 9260000, - "canton": null, - "numero_insee": "24212" - } - }, - { - "pk": 5087, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "JAURE", - "center": "POINT (459774.1376242660917342 2007527.9430842802394181)", - "surface": 7740000, - "canton": null, - "numero_insee": "24213" - } - }, - { - "pk": 17567, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "JAVERLHAC-ET-LA-CHAPELLE-SAINT-ROBERT", - "center": "POINT (460508.9507394143147394 2063789.2487396588549018)", - "surface": 29120000, - "canton": null, - "numero_insee": "24214" - } - }, - { - "pk": 14434, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA JEMAYE", - "center": "POINT (436849.3176401406526566 2019850.5936496052891016)", - "surface": 29000000, - "canton": null, - "numero_insee": "24216" - } - }, - { - "pk": 18006, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "JUMILHAC-LE-GRAND", - "center": "POINT (501806.4912648446625099 2056825.1727222967892885)", - "surface": 68050000, - "canton": null, - "numero_insee": "24218" - } - }, - { - "pk": 23976, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LABOUQUERIE", - "center": "POINT (477678.9709292647894472 1972941.2263488848693669)", - "surface": 10790000, - "canton": null, - "numero_insee": "24219" - } - }, - { - "pk": 14955, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LACROPTE", - "center": "POINT (481305.0337663924437948 2006405.2917247195728123)", - "surface": 27010000, - "canton": null, - "numero_insee": "24220" - } - }, - { - "pk": 30290, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA FORCE", - "center": "POINT (443716.4163528098724782 1988375.7215117078740150)", - "surface": 15610000, - "canton": null, - "numero_insee": "24222" - } - }, - { - "pk": 26862, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LALINDE", - "center": "POINT (473874.0557882543653250 1985122.1371348530519754)", - "surface": 27690000, - "canton": null, - "numero_insee": "24223" - } - }, - { - "pk": 17933, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LAMONZIE-MONTASTRUC", - "center": "POINT (461817.8254557111067697 1990427.6178878932259977)", - "surface": 20680000, - "canton": null, - "numero_insee": "24224" - } - }, - { - "pk": 10111, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LAMONZIE-SAINT-MARTIN", - "center": "POINT (445760.5806205128319561 1983287.4436172838322818)", - "surface": 20620000, - "canton": null, - "numero_insee": "24225" - } - }, - { - "pk": 24869, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LAMOTHE-MONTRAVEL", - "center": "POINT (416506.2869949012529105 1986248.8149713205639273)", - "surface": 12710000, - "canton": null, - "numero_insee": "24226" - } - }, - { - "pk": 12747, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LANOUAILLE", - "center": "POINT (505628.9368027556920424 2042543.0886106444522738)", - "surface": 24430000, - "canton": null, - "numero_insee": "24227" - } - }, - { - "pk": 19657, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LANQUAIS", - "center": "POINT (468004.9817815537098795 1980668.9387352031189948)", - "surface": 14720000, - "canton": null, - "numero_insee": "24228" - } - }, - { - "pk": 35704, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LE LARDIN-SAINT-LAZARE", - "center": "POINT (513059.7217053039930761 2015678.4100853933487087)", - "surface": 10850000, - "canton": null, - "numero_insee": "24229" - } - }, - { - "pk": 24874, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LARZAC", - "center": "POINT (494005.4349562740535475 1971775.5521389995701611)", - "surface": 6930000, - "canton": null, - "numero_insee": "24230" - } - }, - { - "pk": 11525, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LAVALADE", - "center": "POINT (482833.7577061731135473 1966977.8516554650850594)", - "surface": 4020000, - "canton": null, - "numero_insee": "24231" - } - }, - { - "pk": 8918, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LAVAUR", - "center": "POINT (495812.7940714814467356 1959077.4457204840146005)", - "surface": 9250000, - "canton": null, - "numero_insee": "24232" - } - }, - { - "pk": 15209, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LES LECHES", - "center": "POINT (446125.1408759359037504 1999707.1177130059804767)", - "surface": 21460000, - "canton": null, - "numero_insee": "24234" - } - }, - { - "pk": 20328, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LEGUILLAC-DE-CERCLES", - "center": "POINT (457664.6974358031293377 2044647.1751877078786492)", - "surface": 22470000, - "canton": null, - "numero_insee": "24235" - } - }, - { - "pk": 11005, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LEMBRAS", - "center": "POINT (456519.4402988848742098 1989582.8842597668990493)", - "surface": 10780000, - "canton": null, - "numero_insee": "24237" - } - }, - { - "pk": 26183, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LEMPZOURS", - "center": "POINT (481422.7607191335991956 2040439.9768735955003649)", - "surface": 11290000, - "canton": null, - "numero_insee": "24238" - } - }, - { - "pk": 22867, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LIGUEUX", - "center": "POINT (480463.4110525877913460 2035427.1069079153239727)", - "surface": 6880000, - "canton": null, - "numero_insee": "24239" - } - }, - { - "pk": 33743, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LIMEUIL", - "center": "POINT (486150.8181390570825897 1989428.3714611884206533)", - "surface": 10350000, - "canton": null, - "numero_insee": "24240" - } - }, - { - "pk": 19898, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LIMEYRAT", - "center": "POINT (493110.4688564939424396 2019216.0839224066585302)", - "surface": 20060000, - "canton": null, - "numero_insee": "24241" - } - }, - { - "pk": 16195, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LIORAC-SUR-LOUYRE", - "center": "POINT (466027.6156945468392223 1989761.8178551075980067)", - "surface": 20690000, - "canton": null, - "numero_insee": "24242" - } - }, - { - "pk": 10746, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LISLE", - "center": "POINT (460275.6536860054475255 2031555.9690000752452761)", - "surface": 18650000, - "canton": null, - "numero_insee": "24243" - } - }, - { - "pk": 26011, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LOLME", - "center": "POINT (481817.8272500016028062 1968771.2712562747765332)", - "surface": 7000000, - "canton": null, - "numero_insee": "24244" - } - }, - { - "pk": 17908, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LOUBEJAC", - "center": "POINT (499736.5633715067524463 1956707.5896139675751328)", - "surface": 19080000, - "canton": null, - "numero_insee": "24245" - } - }, - { - "pk": 15028, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LUNAS", - "center": "POINT (446978.1080053040059283 1993407.8057111417874694)", - "surface": 16880000, - "canton": null, - "numero_insee": "24246" - } - }, - { - "pk": 8436, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LUSIGNAC", - "center": "POINT (441503.0091552791418508 2038107.0743440026417375)", - "surface": 7870000, - "canton": null, - "numero_insee": "24247" - } - }, - { - "pk": 20908, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LUSSAS-ET-NONTRONNEAU", - "center": "POINT (462748.2560781816719100 2059303.4786787906195968)", - "surface": 22930000, - "canton": null, - "numero_insee": "24248" - } - }, - { - "pk": 6865, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MANAURIE", - "center": "POINT (493497.9057672027265653 1996696.7415731635410339)", - "surface": 10340000, - "canton": null, - "numero_insee": "24249" - } - }, - { - "pk": 4470, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MANZAC-SUR-VERN", - "center": "POINT (462450.1036112905712798 2010753.3354251880664378)", - "surface": 20440000, - "canton": null, - "numero_insee": "24251" - } - }, - { - "pk": 13494, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MARCILLAC-SAINT-QUENTIN", - "center": "POINT (510223.6354266289272346 1995634.7023887424729764)", - "surface": 17050000, - "canton": null, - "numero_insee": "24252" - } - }, - { - "pk": 21480, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MAREUIL", - "center": "POINT (452210.0552665039431304 2050607.8240671947132796)", - "surface": 26210000, - "canton": null, - "numero_insee": "24253" - } - }, - { - "pk": 18004, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MARNAC", - "center": "POINT (496524.6792748963925987 1981806.7628843365237117)", - "surface": 7990000, - "canton": null, - "numero_insee": "24254" - } - }, - { - "pk": 3292, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MARQUAY", - "center": "POINT (504530.7592854426475242 1994085.7898642909713089)", - "surface": 25020000, - "canton": null, - "numero_insee": "24255" - } - }, - { - "pk": 27837, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MARSAC-SUR-L'ISLE", - "center": "POINT (467466.0172627461142838 2021505.6016198617871851)", - "surface": 10110000, - "canton": null, - "numero_insee": "24256" - } - }, - { - "pk": 27484, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MARSALES", - "center": "POINT (485332.0096701564034447 1967499.1242720093578100)", - "surface": 9460000, - "canton": null, - "numero_insee": "24257" - } - }, - { - "pk": 16907, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MARSANEIX", - "center": "POINT (477261.4041095396387391 2011176.5245490553788841)", - "surface": 24700000, - "canton": null, - "numero_insee": "24258" - } - }, - { - "pk": 36731, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MAURENS", - "center": "POINT (453484.2531293712090701 1993461.6941415995825082)", - "surface": 22560000, - "canton": null, - "numero_insee": "24259" - } - }, - { - "pk": 26014, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MAUZAC-ET-GRAND-CASTANG", - "center": "POINT (476952.9032081549521536 1988050.6509758476167917)", - "surface": 15860000, - "canton": null, - "numero_insee": "24260" - } - }, - { - "pk": 3124, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MAUZENS-ET-MIREMONT", - "center": "POINT (488967.0450660539790988 1999862.3083989685401320)", - "surface": 20320000, - "canton": null, - "numero_insee": "24261" - } - }, - { - "pk": 7428, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MAYAC", - "center": "POINT (491303.2266565985628404 2031913.6288152909837663)", - "surface": 11700000, - "canton": null, - "numero_insee": "24262" - } - }, - { - "pk": 21418, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MAZEYROLLES", - "center": "POINT (494466.5834424531203695 1964471.8503337902948260)", - "surface": 30410000, - "canton": null, - "numero_insee": "24263" - } - }, - { - "pk": 33035, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MENESPLET", - "center": "POINT (423977.0463645107229240 2002827.2529964959248900)", - "surface": 19130000, - "canton": null, - "numero_insee": "24264" - } - }, - { - "pk": 37005, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MENSIGNAC", - "center": "POINT (460321.2879651698749512 2026050.9154483117163181)", - "surface": 25500000, - "canton": null, - "numero_insee": "24266" - } - }, - { - "pk": 27090, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MESCOULES", - "center": "POINT (448548.5369939817464910 1972999.9673817385919392)", - "surface": 4830000, - "canton": null, - "numero_insee": "24267" - } - }, - { - "pk": 20414, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MEYRALS", - "center": "POINT (499956.3968721914570779 1990444.0730971733573824)", - "surface": 18740000, - "canton": null, - "numero_insee": "24268" - } - }, - { - "pk": 21616, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MIALET", - "center": "POINT (487632.2971568587818183 2064114.4475312898866832)", - "surface": 38380000, - "canton": null, - "numero_insee": "24269" - } - }, - { - "pk": 13961, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MILHAC-D'AUBEROCHE", - "center": "POINT (489453.6326927748741582 2013580.1045108232647181)", - "surface": 17830000, - "canton": null, - "numero_insee": "24270" - } - }, - { - "pk": 4993, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MINZAC", - "center": "POINT (417908.5153415275271982 1998272.5804948511067778)", - "surface": 16060000, - "canton": null, - "numero_insee": "24272" - } - }, - { - "pk": 3138, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MOLIERES", - "center": "POINT (480322.5384603796410374 1980070.4663461665622890)", - "surface": 21090000, - "canton": null, - "numero_insee": "24273" - } - }, - { - "pk": 22136, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONBAZILLAC", - "center": "POINT (453105.6846418073400855 1978743.5710017471574247)", - "surface": 19530000, - "canton": null, - "numero_insee": "24274" - } - }, - { - "pk": 5927, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONESTIER", - "center": "POINT (439905.4845349462702870 1977132.7317355556879193)", - "surface": 17630000, - "canton": null, - "numero_insee": "24276" - } - }, - { - "pk": 22570, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONFAUCON", - "center": "POINT (435573.9508342170156538 1992512.6125646820291877)", - "surface": 24690000, - "canton": null, - "numero_insee": "24277" - } - }, - { - "pk": 26410, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONMADALES", - "center": "POINT (463842.4777886592783034 1975629.2861255228053778)", - "surface": 5100000, - "canton": null, - "numero_insee": "24278" - } - }, - { - "pk": 6069, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONMARVES", - "center": "POINT (463199.9115177135099657 1968616.7491601267829537)", - "surface": 5660000, - "canton": null, - "numero_insee": "24279" - } - }, - { - "pk": 19517, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONPAZIER", - "center": "POINT (485549.6688243819517083 1965398.7620382399763912)", - "surface": 530000, - "canton": null, - "numero_insee": "24280" - } - }, - { - "pk": 29623, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONSAC", - "center": "POINT (469738.9951406520558521 1976779.3287850220222026)", - "surface": 10840000, - "canton": null, - "numero_insee": "24281" - } - }, - { - "pk": 36540, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONSAGUEL", - "center": "POINT (460065.3906597335590050 1972394.6767184368800372)", - "surface": 11560000, - "canton": null, - "numero_insee": "24282" - } - }, - { - "pk": 7796, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONSEC", - "center": "POINT (459633.3265401176759042 2048667.3881644115317613)", - "surface": 12760000, - "canton": null, - "numero_insee": "24283" - } - }, - { - "pk": 32960, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTAGNAC-D'AUBEROCHE", - "center": "POINT (491288.0022132336162031 2021703.4166958888527006)", - "surface": 10240000, - "canton": null, - "numero_insee": "24284" - } - }, - { - "pk": 35882, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTAGNAC-LA-CREMPSE", - "center": "POINT (458442.5184394184034318 1999108.4494453615043312)", - "surface": 25470000, - "canton": null, - "numero_insee": "24285" - } - }, - { - "pk": 22205, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTAGRIER", - "center": "POINT (454768.1232244039420038 2031810.6215401703957468)", - "surface": 14220000, - "canton": null, - "numero_insee": "24286" - } - }, - { - "pk": 13028, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTAUT", - "center": "POINT (466062.0216421613004059 1973545.5363289923407137)", - "surface": 16330000, - "canton": null, - "numero_insee": "24287" - } - }, - { - "pk": 16905, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTCARET", - "center": "POINT (420403.3833556572208181 1987081.8178235143423080)", - "surface": 17700000, - "canton": null, - "numero_insee": "24289" - } - }, - { - "pk": 4220, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTFERRAND-DU-PERIGORD", - "center": "POINT (484176.0622238971409388 1974096.3212428037077188)", - "surface": 13210000, - "canton": null, - "numero_insee": "24290" - } - }, - { - "pk": 27374, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTIGNAC", - "center": "POINT (506821.3689678116934374 2007518.3645072525832802)", - "surface": 36190000, - "canton": null, - "numero_insee": "24291" - } - }, - { - "pk": 30842, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTPEYROUX", - "center": "POINT (420353.7726387271541171 1993087.5101959421299398)", - "surface": 23850000, - "canton": null, - "numero_insee": "24292" - } - }, - { - "pk": 26224, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONPLAISANT", - "center": "POINT (493755.3033176123863086 1977779.6371034816838801)", - "surface": 5520000, - "canton": null, - "numero_insee": "24293" - } - }, - { - "pk": 19909, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MONTPON-MENESTEROL", - "center": "POINT (427967.5646894398378208 2004461.8434680413920432)", - "surface": 46660000, - "canton": null, - "numero_insee": "24294" - } - }, - { - "pk": 32018, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MOULEYDIER", - "center": "POINT (464058.0937347435974516 1985841.5124674735125154)", - "surface": 8640000, - "canton": null, - "numero_insee": "24296" - } - }, - { - "pk": 22780, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MOULIN-NEUF", - "center": "POINT (420276.0517330201109871 2002496.3744586277753115)", - "surface": 8780000, - "canton": null, - "numero_insee": "24297" - } - }, - { - "pk": 6068, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MOUZENS", - "center": "POINT (494602.8916549149435014 1984193.2316376240924001)", - "surface": 8160000, - "canton": null, - "numero_insee": "24298" - } - }, - { - "pk": 13986, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "MUSSIDAN", - "center": "POINT (444478.8908861292293295 2005098.9290993597824126)", - "surface": 3820000, - "canton": null, - "numero_insee": "24299" - } - }, - { - "pk": 23236, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NABIRAT", - "center": "POINT (517107.5976314451545477 1974370.3240411251317710)", - "surface": 16830000, - "canton": null, - "numero_insee": "24300" - } - }, - { - "pk": 14988, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NADAILLAC", - "center": "POINT (526171.1019980590790510 2003875.7651852641720325)", - "surface": 27630000, - "canton": null, - "numero_insee": "24301" - } - }, - { - "pk": 14772, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NAILHAC", - "center": "POINT (507172.6848353516543284 2025439.1242251878138632)", - "surface": 20010000, - "canton": null, - "numero_insee": "24302" - } - }, - { - "pk": 21895, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NANTEUIL-AURIAC-DE-BOURZAC", - "center": "POINT (439450.6687897881492972 2044196.0619751950725913)", - "surface": 20810000, - "canton": null, - "numero_insee": "24303" - } - }, - { - "pk": 4585, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NANTHEUIL", - "center": "POINT (491868.2427554387832060 2048234.2809360183309764)", - "surface": 17580000, - "canton": null, - "numero_insee": "24304" - } - }, - { - "pk": 12873, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NASTRINGUES", - "center": "POINT (427102.3076514236163348 1988038.0891863391734660)", - "surface": 6170000, - "canton": null, - "numero_insee": "24306" - } - }, - { - "pk": 36773, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NAUSSANNES", - "center": "POINT (471769.1532326561864465 1973392.6821330050006509)", - "surface": 15030000, - "canton": null, - "numero_insee": "24307" - } - }, - { - "pk": 35554, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NEGRONDES", - "center": "POINT (485640.7177589408820495 2038773.3494395378511399)", - "surface": 20830000, - "canton": null, - "numero_insee": "24308" - } - }, - { - "pk": 18037, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NEUVIC", - "center": "POINT (452633.5037232066970319 2011572.8781734751537442)", - "surface": 25870000, - "canton": null, - "numero_insee": "24309" - } - }, - { - "pk": 22835, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NONTRON", - "center": "POINT (470848.8684286338393576 2060171.4353041129652411)", - "surface": 25620000, - "canton": null, - "numero_insee": "24311" - } - }, - { - "pk": 22154, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "NOTRE-DAME-DE-SANILHAC", - "center": "POINT (472221.8589883690001443 2015338.8894817684777081)", - "surface": 26620000, - "canton": null, - "numero_insee": "24312" - } - }, - { - "pk": 9330, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ORLIAC", - "center": "POINT (498835.0261463229544461 1968812.6289682006463408)", - "surface": 10760000, - "canton": null, - "numero_insee": "24313" - } - }, - { - "pk": 36191, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ORLIAGUET", - "center": "POINT (524481.2480048326542601 1990448.1314404716249555)", - "surface": 9480000, - "canton": null, - "numero_insee": "24314" - } - }, - { - "pk": 5525, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PARCOUL", - "center": "POINT (419099.0274030483560637 2023807.9501644803676754)", - "surface": 14140000, - "canton": null, - "numero_insee": "24316" - } - }, - { - "pk": 8944, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PAULIN", - "center": "POINT (520899.5121351048583165 1999827.7869804238434881)", - "surface": 11680000, - "canton": null, - "numero_insee": "24317" - } - }, - { - "pk": 8431, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PAUNAT", - "center": "POINT (482841.0392366577871144 1990201.6863136966712773)", - "surface": 17770000, - "canton": null, - "numero_insee": "24318" - } - }, - { - "pk": 19899, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PAUSSAC-ET-SAINT-VIVIEN", - "center": "POINT (459104.9579670159146190 2039954.5174535124097019)", - "surface": 22300000, - "canton": null, - "numero_insee": "24319" - } - }, - { - "pk": 18504, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PAYZAC", - "center": "POINT (513095.7283059916808270 2047409.9371086333412677)", - "surface": 49030000, - "canton": null, - "numero_insee": "24320" - } - }, - { - "pk": 32453, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PAZAYAC", - "center": "POINT (524283.4602702583069913 2014170.3446041147690266)", - "surface": 6820000, - "canton": null, - "numero_insee": "24321" - } - }, - { - "pk": 21292, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PERIGUEUX", - "center": "POINT (472262.1462701282580383 2022546.3866306524723768)", - "surface": 10140000, - "canton": null, - "numero_insee": "24322" - } - }, - { - "pk": 23702, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PETIT-BERSAC", - "center": "POINT (434446.1965913366293535 2032042.7959339676890522)", - "surface": 10750000, - "canton": null, - "numero_insee": "24323" - } - }, - { - "pk": 25209, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PEYRIGNAC", - "center": "POINT (510236.2879539484856650 2018157.3865458900108933)", - "surface": 6550000, - "canton": null, - "numero_insee": "24324" - } - }, - { - "pk": 33600, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PEYRILLAC-ET-MILLAC", - "center": "POINT (526501.5040453075198457 1988262.7413319216575474)", - "surface": 6780000, - "canton": null, - "numero_insee": "24325" - } - }, - { - "pk": 35958, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PEYZAC-LE-MOUSTIER", - "center": "POINT (500788.9583648978732526 1998659.3045336457435042)", - "surface": 10100000, - "canton": null, - "numero_insee": "24326" - } - }, - { - "pk": 6536, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PEZULS", - "center": "POINT (478930.6960472132777795 1990970.0216546484734863)", - "surface": 10180000, - "canton": null, - "numero_insee": "24327" - } - }, - { - "pk": 22350, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PIEGUT-PLUVIERS", - "center": "POINT (472356.4502708745421842 2071494.7889712017495185)", - "surface": 18640000, - "canton": null, - "numero_insee": "24328" - } - }, - { - "pk": 16898, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LE PIZOU", - "center": "POINT (421444.1037393609294668 2006510.0485358783043921)", - "surface": 17160000, - "canton": null, - "numero_insee": "24329" - } - }, - { - "pk": 20035, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PLAZAC", - "center": "POINT (497628.5964809404686093 2005539.9629952271934599)", - "surface": 34400000, - "canton": null, - "numero_insee": "24330" - } - }, - { - "pk": 37213, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "POMPORT", - "center": "POINT (447698.0338324089534581 1978999.0863370900042355)", - "surface": 19520000, - "canton": null, - "numero_insee": "24331" - } - }, - { - "pk": 13821, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PONTEYRAUD", - "center": "POINT (435121.2518831607885659 2023039.4788886480964720)", - "surface": 4350000, - "canton": null, - "numero_insee": "24333" - } - }, - { - "pk": 13168, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PONTOURS", - "center": "POINT (476202.8351266747340560 1981938.2012537596747279)", - "surface": 6640000, - "canton": null, - "numero_insee": "24334" - } - }, - { - "pk": 22842, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PORT-SAINTE-FOY-ET-PONCHAPT", - "center": "POINT (431228.5492851445451379 1985369.4493095388170332)", - "surface": 18800000, - "canton": null, - "numero_insee": "24335" - } - }, - { - "pk": 8627, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PRATS-DE-CARLUX", - "center": "POINT (518692.4433761808322743 1988397.8446963131427765)", - "surface": 12940000, - "canton": null, - "numero_insee": "24336" - } - }, - { - "pk": 8179, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PRATS-DU-PERIGORD", - "center": "POINT (499261.2262807468068786 1965712.9723175908438861)", - "surface": 11320000, - "canton": null, - "numero_insee": "24337" - } - }, - { - "pk": 15046, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PRESSIGNAC-VICQ", - "center": "POINT (472837.3826322521199472 1989417.9119155802763999)", - "surface": 17100000, - "canton": null, - "numero_insee": "24338" - } - }, - { - "pk": 28054, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PREYSSAC-D'EXCIDEUIL", - "center": "POINT (503559.5149132198421285 2038622.0502845216542482)", - "surface": 3460000, - "canton": null, - "numero_insee": "24339" - } - }, - { - "pk": 22523, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PRIGONRIEUX", - "center": "POINT (447630.0649698728229851 1987206.9022569698281586)", - "surface": 26150000, - "canton": null, - "numero_insee": "24340" - } - }, - { - "pk": 29716, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PROISSANS", - "center": "POINT (513650.1849761659977958 1992860.4042660105042160)", - "surface": 18190000, - "canton": null, - "numero_insee": "24341" - } - }, - { - "pk": 8437, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PUYMANGOU", - "center": "POINT (422509.6097552940482274 2022935.2291370141319931)", - "surface": 11320000, - "canton": null, - "numero_insee": "24343" - } - }, - { - "pk": 10464, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "PUYRENIER", - "center": "POINT (454074.4567870320752263 2055127.6317852803040296)", - "surface": 7710000, - "canton": null, - "numero_insee": "24344" - } - }, - { - "pk": 29188, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "QUEYSSAC", - "center": "POINT (457399.5537750960211270 1992092.7182594146579504)", - "surface": 12400000, - "canton": null, - "numero_insee": "24345" - } - }, - { - "pk": 14201, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "QUINSAC", - "center": "POINT (472037.0583490399294533 2049671.1311027854681015)", - "surface": 17930000, - "canton": null, - "numero_insee": "24346" - } - }, - { - "pk": 14449, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "RAMPIEUX", - "center": "POINT (478220.1787696325918660 1968040.6694285110570490)", - "surface": 11860000, - "canton": null, - "numero_insee": "24347" - } - }, - { - "pk": 35590, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "RAZAC-DE-SAUSSIGNAC", - "center": "POINT (437969.7092784406850114 1981220.9157769137527794)", - "surface": 11490000, - "canton": null, - "numero_insee": "24349" - } - }, - { - "pk": 26572, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "RAZAC-SUR-L'ISLE", - "center": "POINT (464582.4285407138522714 2019179.3993998151272535)", - "surface": 14810000, - "canton": null, - "numero_insee": "24350" - } - }, - { - "pk": 26008, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "RIBAGNAC", - "center": "POINT (453339.8781811884837225 1974641.3027722381521016)", - "surface": 11860000, - "canton": null, - "numero_insee": "24351" - } - }, - { - "pk": 3932, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "RIBERAC", - "center": "POINT (442777.8305993706453592 2029208.8650654156226665)", - "surface": 22640000, - "canton": null, - "numero_insee": "24352" - } - }, - { - "pk": 21473, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA ROCHEBEAUCOURT-ET-ARGENTINE", - "center": "POINT (447180.6812006126856431 2053569.0859728916548193)", - "surface": 17200000, - "canton": null, - "numero_insee": "24353" - } - }, - { - "pk": 23965, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA ROCHE-CHALAIS", - "center": "POINT (420452.3139711502008140 2017512.8636243569198996)", - "surface": 89660000, - "canton": null, - "numero_insee": "24354" - } - }, - { - "pk": 9507, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA ROQUE-GAGEAC", - "center": "POINT (509950.7831633430905640 1980316.8613368733786047)", - "surface": 7210000, - "canton": null, - "numero_insee": "24355" - } - }, - { - "pk": 17419, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ROUFFIGNAC-SAINT-CERNIN-DE-REILHAC", - "center": "POINT (492015.0369262308813632 2006494.2869994612410665)", - "surface": 61410000, - "canton": null, - "numero_insee": "24356" - } - }, - { - "pk": 10483, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "ROUFFIGNAC-DE-SIGOULES", - "center": "POINT (450116.0811385342385620 1977117.1641365773975849)", - "surface": 6520000, - "canton": null, - "numero_insee": "24357" - } - }, - { - "pk": 26009, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SADILLAC", - "center": "POINT (453665.8760470798006281 1971540.8134737871587276)", - "surface": 5660000, - "canton": null, - "numero_insee": "24359" - } - }, - { - "pk": 29624, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAGELAT", - "center": "POINT (495965.7313341572880745 1976796.9935298843774945)", - "surface": 7800000, - "canton": null, - "numero_insee": "24360" - } - }, - { - "pk": 32115, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AGNE", - "center": "POINT (464481.7177002952666953 1983042.1680143421981484)", - "surface": 5830000, - "canton": null, - "numero_insee": "24361" - } - }, - { - "pk": 17482, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-ALVERE", - "center": "POINT (479496.3523645530221984 1995178.9779232174623758)", - "surface": 32650000, - "canton": null, - "numero_insee": "24362" - } - }, - { - "pk": 12910, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AMAND-DE-BELVES", - "center": "POINT (497492.9769350582500920 1973706.5123028277885169)", - "surface": 7330000, - "canton": null, - "numero_insee": "24363" - } - }, - { - "pk": 17219, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AMAND-DE-COLY", - "center": "POINT (514038.9297887894790620 2006277.1622353822458535)", - "surface": 26990000, - "canton": null, - "numero_insee": "24364" - } - }, - { - "pk": 21141, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ANDRE-D'ALLAS", - "center": "POINT (505978.7394774315762334 1988492.1574063708540052)", - "surface": 29470000, - "canton": null, - "numero_insee": "24366" - } - }, - { - "pk": 21303, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ANDRE-DE-DOUBLE", - "center": "POINT (441772.9073004205711186 2017589.0423016943968832)", - "surface": 27770000, - "canton": null, - "numero_insee": "24367" - } - }, - { - "pk": 15670, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ANTOINE-CUMOND", - "center": "POINT (432364.9612249203491956 2029523.1191068582702428)", - "surface": 12330000, - "canton": null, - "numero_insee": "24368" - } - }, - { - "pk": 7341, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ANTOINE-D'AUBEROCHE", - "center": "POINT (490230.2488575911847875 2016489.4525749497115612)", - "surface": 8010000, - "canton": null, - "numero_insee": "24369" - } - }, - { - "pk": 29619, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ANTOINE-DE-BREUILH", - "center": "POINT (426629.9614715315401554 1984630.7179913590662181)", - "surface": 18110000, - "canton": null, - "numero_insee": "24370" - } - }, - { - "pk": 15030, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AQUILIN", - "center": "POINT (454742.6685615224996582 2022801.5114835465792567)", - "surface": 22440000, - "canton": null, - "numero_insee": "24371" - } - }, - { - "pk": 16320, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ASTIER", - "center": "POINT (457084.6080379956401885 2018016.1468829407822341)", - "surface": 35660000, - "canton": null, - "numero_insee": "24372" - } - }, - { - "pk": 14371, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AUBIN-DE-CADELECH", - "center": "POINT (453606.4186647465685382 1966635.2634901965502650)", - "surface": 13570000, - "canton": null, - "numero_insee": "24373" - } - }, - { - "pk": 29402, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AUBIN-DE-LANQUAIS", - "center": "POINT (462614.7674407566664740 1978822.3882647647988051)", - "surface": 9350000, - "canton": null, - "numero_insee": "24374" - } - }, - { - "pk": 12812, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AUBIN-DE-NABIRAT", - "center": "POINT (516537.8812996100168675 1970661.7696091202087700)", - "surface": 6450000, - "canton": null, - "numero_insee": "24375" - } - }, - { - "pk": 23411, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AULAYE", - "center": "POINT (427017.0772683267714456 2022572.0778985908254981)", - "surface": 34630000, - "canton": null, - "numero_insee": "24376" - } - }, - { - "pk": 37999, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AVIT-DE-VIALARD", - "center": "POINT (483502.6203545859316364 1994911.9497611178085208)", - "surface": 8840000, - "canton": null, - "numero_insee": "24377" - } - }, - { - "pk": 17483, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AVIT-RIVIERE", - "center": "POINT (486595.8313596142106690 1972014.2668073007371277)", - "surface": 14100000, - "canton": null, - "numero_insee": "24378" - } - }, - { - "pk": 21024, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-AVIT-SENIEUR", - "center": "POINT (480155.5998593688709661 1976064.9792345294263214)", - "surface": 23340000, - "canton": null, - "numero_insee": "24379" - } - }, - { - "pk": 16414, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-BARTHELEMY-DE-BELLEGARDE", - "center": "POINT (431115.9442184228682891 2011094.4957856771070510)", - "surface": 33270000, - "canton": null, - "numero_insee": "24380" - } - }, - { - "pk": 3683, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-BARTHELEMY-DE-BUSSIERE", - "center": "POINT (476052.2530056608375162 2072426.3206996344961226)", - "surface": 15430000, - "canton": null, - "numero_insee": "24381" - } - }, - { - "pk": 9572, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CAPRAISE-DE-LALINDE", - "center": "POINT (466974.1356875970959663 1984264.0664593717083335)", - "surface": 3950000, - "canton": null, - "numero_insee": "24382" - } - }, - { - "pk": 37002, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CAPRAISE-D'EYMET", - "center": "POINT (455184.7373527563177049 1969451.2339028073474765)", - "surface": 11200000, - "canton": null, - "numero_insee": "24383" - } - }, - { - "pk": 31261, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CASSIEN", - "center": "POINT (481645.9037028986494988 1965366.3299659811891615)", - "surface": 4710000, - "canton": null, - "numero_insee": "24384" - } - }, - { - "pk": 23067, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CERNIN-DE-LABARDE", - "center": "POINT (461144.0398674329626374 1975106.3966756907757372)", - "surface": 11510000, - "canton": null, - "numero_insee": "24385" - } - }, - { - "pk": 20975, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CERNIN-DE-L'HERM", - "center": "POINT (497487.7986059214454144 1962294.6990106124430895)", - "surface": 16740000, - "canton": null, - "numero_insee": "24386" - } - }, - { - "pk": 28544, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CIRQ", - "center": "POINT (491921.3629128988832235 1993680.5968441034201533)", - "surface": 6270000, - "canton": null, - "numero_insee": "24389" - } - }, - { - "pk": 11454, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CREPIN-D'AUBEROCHE", - "center": "POINT (486546.7784813956823200 2014056.4465423533692956)", - "surface": 9860000, - "canton": null, - "numero_insee": "24390" - } - }, - { - "pk": 11311, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CREPIN-ET-CARLUCET", - "center": "POINT (516230.1236742999753915 1995584.6319021272938699)", - "surface": 18880000, - "canton": null, - "numero_insee": "24392" - } - }, - { - "pk": 32336, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-CROIX", - "center": "POINT (480395.6954633385175839 1971262.0368551325518638)", - "surface": 12920000, - "canton": null, - "numero_insee": "24393" - } - }, - { - "pk": 4854, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-CROIX-DE-MAREUIL", - "center": "POINT (450284.3018006330821663 2053494.6882754971738905)", - "surface": 12290000, - "canton": null, - "numero_insee": "24394" - } - }, - { - "pk": 34311, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CYBRANET", - "center": "POINT (506681.7996062068850733 1976185.4420386068522930)", - "surface": 10740000, - "canton": null, - "numero_insee": "24395" - } - }, - { - "pk": 17480, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CYPRIEN", - "center": "POINT (496275.3716170320985839 1987710.7077281097881496)", - "surface": 22240000, - "canton": null, - "numero_insee": "24396" - } - }, - { - "pk": 19268, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-CYR-LES-CHAMPAGNES", - "center": "POINT (518046.8604006929090247 2041845.7215507030487061)", - "surface": 16140000, - "canton": null, - "numero_insee": "24397" - } - }, - { - "pk": 19489, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ESTEPHE", - "center": "POINT (468973.3623040567617863 2069064.4256866935174912)", - "surface": 22170000, - "canton": null, - "numero_insee": "24398" - } - }, - { - "pk": 21427, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ETIENNE-DE-PUYCORBIER", - "center": "POINT (441416.4382079407805577 2012280.8017113949172199)", - "surface": 13530000, - "canton": null, - "numero_insee": "24399" - } - }, - { - "pk": 36716, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-EULALIE-D'ANS", - "center": "POINT (496737.3066220403416082 2028455.3596681207418442)", - "surface": 11800000, - "canton": null, - "numero_insee": "24401" - } - }, - { - "pk": 37655, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-EULALIE-D'EYMET", - "center": "POINT (443171.5211941570159979 1969551.9422632358036935)", - "surface": 6680000, - "canton": null, - "numero_insee": "24402" - } - }, - { - "pk": 25031, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-FELIX-DE-BOURDEILLES", - "center": "POINT (461251.3676006963942200 2046678.8536145193502307)", - "surface": 6280000, - "canton": null, - "numero_insee": "24403" - } - }, - { - "pk": 18605, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-FELIX-DE-REILLAC-ET-MORTEMART", - "center": "POINT (486041.8639102724846452 2002540.7207638579420745)", - "surface": 20710000, - "canton": null, - "numero_insee": "24404" - } - }, - { - "pk": 21541, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-FELIX-DE-VILLADEIX", - "center": "POINT (468897.9766931092599407 1993689.5880981772206724)", - "surface": 16780000, - "canton": null, - "numero_insee": "24405" - } - }, - { - "pk": 26010, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-FOY-DE-BELVES", - "center": "POINT (496615.4249673582962714 1970896.3310237161349505)", - "surface": 7590000, - "canton": null, - "numero_insee": "24406" - } - }, - { - "pk": 4353, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-FOY-DE-LONGAS", - "center": "POINT (475107.9881420790916309 1993240.6172005289699882)", - "surface": 16200000, - "canton": null, - "numero_insee": "24407" - } - }, - { - "pk": 18753, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-FRONT-D'ALEMPS", - "center": "POINT (478647.6387446600710973 2037113.6982015690300614)", - "surface": 19320000, - "canton": null, - "numero_insee": "24408" - } - }, - { - "pk": 27055, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-FRONT-DE-PRADOUX", - "center": "POINT (444250.5319804886821657 2008500.4531168949324638)", - "surface": 9040000, - "canton": null, - "numero_insee": "24409" - } - }, - { - "pk": 27439, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-FRONT-LA-RIVIERE", - "center": "POINT (473511.8318506539799273 2052886.4754832785110921)", - "surface": 18380000, - "canton": null, - "numero_insee": "24410" - } - }, - { - "pk": 34660, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-FRONT-SUR-NIZONNE", - "center": "POINT (466292.0661173709668219 2054428.1285702788736671)", - "surface": 13330000, - "canton": null, - "numero_insee": "24411" - } - }, - { - "pk": 17220, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GENIES", - "center": "POINT (513791.1760605246527120 1999968.7588300060015172)", - "surface": 34660000, - "canton": null, - "numero_insee": "24412" - } - }, - { - "pk": 15806, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GEORGES-BLANCANEIX", - "center": "POINT (443580.6930119427852333 1992678.9682949359994382)", - "surface": 13940000, - "canton": null, - "numero_insee": "24413" - } - }, - { - "pk": 4311, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GEORGES-DE-MONTCLARD", - "center": "POINT (463690.5733885481604375 1993946.6987780667841434)", - "surface": 13590000, - "canton": null, - "numero_insee": "24414" - } - }, - { - "pk": 21149, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GERAUD-DE-CORPS", - "center": "POINT (434441.4503127919160761 1996307.0968509817030281)", - "surface": 15080000, - "canton": null, - "numero_insee": "24415" - } - }, - { - "pk": 12581, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GERMAIN-DE-BELVES", - "center": "POINT (497046.8022091984748840 1979208.4452560488134623)", - "surface": 7450000, - "canton": null, - "numero_insee": "24416" - } - }, - { - "pk": 4426, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GERMAIN-DES-PRES", - "center": "POINT (495146.0396057416801341 2039252.7481033946387470)", - "surface": 19020000, - "canton": null, - "numero_insee": "24417" - } - }, - { - "pk": 23149, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GERMAIN-DU-SALEMBRE", - "center": "POINT (450495.8988281378988177 2015859.4673737112898380)", - "surface": 19530000, - "canton": null, - "numero_insee": "24418" - } - }, - { - "pk": 33486, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GERMAIN-ET-MONS", - "center": "POINT (461885.0500139355426654 1982319.9197961499448866)", - "surface": 14210000, - "canton": null, - "numero_insee": "24419" - } - }, - { - "pk": 3415, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GERY", - "center": "POINT (441323.9379322919994593 1999266.9707016544416547)", - "surface": 18840000, - "canton": null, - "numero_insee": "24420" - } - }, - { - "pk": 5481, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-GEYRAC", - "center": "POINT (487388.2787285399972461 2009158.5383480347227305)", - "surface": 17860000, - "canton": null, - "numero_insee": "24421" - } - }, - { - "pk": 27486, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-HILAIRE-D'ESTISSAC", - "center": "POINT (455605.8767765067750588 2003189.0744189592078328)", - "surface": 6240000, - "canton": null, - "numero_insee": "24422" - } - }, - { - "pk": 35840, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-INNOCENCE", - "center": "POINT (445960.9575512292794883 1971176.6859290460124612)", - "surface": 7160000, - "canton": null, - "numero_insee": "24423" - } - }, - { - "pk": 21649, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JEAN-D'ATAUX", - "center": "POINT (447185.3750053707044572 2016732.9495878245215863)", - "surface": 12050000, - "canton": null, - "numero_insee": "24424" - } - }, - { - "pk": 8935, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JEAN-DE-COLE", - "center": "POINT (482469.7241578784887679 2046955.0178465661592782)", - "surface": 12920000, - "canton": null, - "numero_insee": "24425" - } - }, - { - "pk": 8069, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JEAN-D'ESTISSAC", - "center": "POINT (455585.1411834892351180 2005691.4171942761167884)", - "surface": 12890000, - "canton": null, - "numero_insee": "24426" - } - }, - { - "pk": 30054, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JEAN-D'EYRAUD", - "center": "POINT (451455.0008327950490639 1996748.2254743501543999)", - "surface": 10100000, - "canton": null, - "numero_insee": "24427" - } - }, - { - "pk": 35555, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JORY-DE-CHALAIS", - "center": "POINT (487405.2166869236389175 2055304.0760355619713664)", - "surface": 32400000, - "canton": null, - "numero_insee": "24428" - } - }, - { - "pk": 26608, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JULIEN-DE-BOURDEILLES", - "center": "POINT (462694.9577135586878285 2041585.8435131984297186)", - "surface": 6100000, - "canton": null, - "numero_insee": "24430" - } - }, - { - "pk": 18558, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JULIEN-DE-CREMPSE", - "center": "POINT (456666.5397285548388027 1995990.5961077576503158)", - "surface": 11220000, - "canton": null, - "numero_insee": "24431" - } - }, - { - "pk": 26397, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JULIEN-DE-LAMPON", - "center": "POINT (524426.2203501317417249 1985042.1771627040579915)", - "surface": 13340000, - "canton": null, - "numero_insee": "24432" - } - }, - { - "pk": 13177, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JULIEN-D'EYMET", - "center": "POINT (449167.3519627989735454 1970802.8262714562006295)", - "surface": 5880000, - "canton": null, - "numero_insee": "24433" - } - }, - { - "pk": 7444, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-JUST", - "center": "POINT (455811.0760379813145846 2038826.1426747150253505)", - "surface": 10790000, - "canton": null, - "numero_insee": "24434" - } - }, - { - "pk": 20341, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LAURENT-DES-BATONS", - "center": "POINT (473279.7027789029525593 1996428.6824616894591600)", - "surface": 18990000, - "canton": null, - "numero_insee": "24435" - } - }, - { - "pk": 23954, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LAURENT-DES-HOMMES", - "center": "POINT (435755.0078532866318710 2006928.6488385244738311)", - "surface": 32280000, - "canton": null, - "numero_insee": "24436" - } - }, - { - "pk": 32099, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LAURENT-DES-VIGNES", - "center": "POINT (450374.9133921970496885 1982124.4297870320733637)", - "surface": 8080000, - "canton": null, - "numero_insee": "24437" - } - }, - { - "pk": 18384, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LAURENT-LA-VALLEE", - "center": "POINT (503204.2738272949354723 1973053.3113407050259411)", - "surface": 15500000, - "canton": null, - "numero_insee": "24438" - } - }, - { - "pk": 26409, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LAURENT-SUR-MANOIRE", - "center": "POINT (478717.9206503137829714 2016594.0101437545381486)", - "surface": 10770000, - "canton": null, - "numero_insee": "24439" - } - }, - { - "pk": 28960, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LEON-D'ISSIGEAC", - "center": "POINT (470194.1963018458918668 1970176.3166910973377526)", - "surface": 5600000, - "canton": null, - "numero_insee": "24441" - } - }, - { - "pk": 37481, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LEON-SUR-L'ISLE", - "center": "POINT (455411.2310999536421150 2014598.8902894961647689)", - "surface": 14480000, - "canton": null, - "numero_insee": "24442" - } - }, - { - "pk": 34763, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LEON-SUR-VEZERE", - "center": "POINT (500855.7403641811106354 2002663.8930037769023329)", - "surface": 13820000, - "canton": null, - "numero_insee": "24443" - } - }, - { - "pk": 28539, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-LOUIS-EN-L'ISLE", - "center": "POINT (446450.9300169099587947 2008718.8702843491919339)", - "surface": 2790000, - "canton": null, - "numero_insee": "24444" - } - }, - { - "pk": 21324, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARCEL-DU-PERIGORD", - "center": "POINT (470914.8167736852774397 1991904.4966527407523245)", - "surface": 11290000, - "canton": null, - "numero_insee": "24445" - } - }, - { - "pk": 36307, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARCORY", - "center": "POINT (488313.2707051306497306 1970126.5823280611075461)", - "surface": 4760000, - "canton": null, - "numero_insee": "24446" - } - }, - { - "pk": 34653, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-MARIE-DE-CHIGNAC", - "center": "POINT (481043.3300051267724484 2013810.5280507574789226)", - "surface": 12260000, - "canton": null, - "numero_insee": "24447" - } - }, - { - "pk": 25058, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIAL-D'ALBAREDE", - "center": "POINT (498071.9895942596485838 2036474.3364957997109741)", - "surface": 10670000, - "canton": null, - "numero_insee": "24448" - } - }, - { - "pk": 19384, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIAL-D'ARTENSET", - "center": "POINT (432790.2757949239457957 2002299.5010520806536078)", - "surface": 32380000, - "canton": null, - "numero_insee": "24449" - } - }, - { - "pk": 34537, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIAL-DE-NABIRAT", - "center": "POINT (513721.0160081698559225 1972340.0525430343113840)", - "surface": 15700000, - "canton": null, - "numero_insee": "24450" - } - }, - { - "pk": 18494, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIAL-DE-VALETTE", - "center": "POINT (466860.2303372318856418 2058336.6115682667586952)", - "surface": 16360000, - "canton": null, - "numero_insee": "24451" - } - }, - { - "pk": 12484, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIAL-VIVEYROL", - "center": "POINT (443273.1715816763462499 2041925.4460078824777156)", - "surface": 12750000, - "canton": null, - "numero_insee": "24452" - } - }, - { - "pk": 24902, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIN-DE-FRESSENGEAS", - "center": "POINT (483033.6867017628974281 2051363.9794443510472775)", - "surface": 21580000, - "canton": null, - "numero_insee": "24453" - } - }, - { - "pk": 15171, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIN-DE-GURSON", - "center": "POINT (424717.4062909529893659 1998028.5262987487949431)", - "surface": 24910000, - "canton": null, - "numero_insee": "24454" - } - }, - { - "pk": 22613, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIN-DES-COMBES", - "center": "POINT (464562.3696471275179647 1997457.4713952483143657)", - "surface": 14080000, - "canton": null, - "numero_insee": "24456" - } - }, - { - "pk": 4853, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIN-L'ASTIER", - "center": "POINT (441347.8222154784016311 2008476.4277487928047776)", - "surface": 9410000, - "canton": null, - "numero_insee": "24457" - } - }, - { - "pk": 22412, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MARTIN-LE-PIN", - "center": "POINT (466323.2581157366512343 2062736.3986041392199695)", - "surface": 15980000, - "canton": null, - "numero_insee": "24458" - } - }, - { - "pk": 28747, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MAIME-DE-PEREYROL", - "center": "POINT (467315.1888795902486891 2003486.3559450260363519)", - "surface": 11130000, - "canton": null, - "numero_insee": "24459" - } - }, - { - "pk": 22591, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MEARD-DE-DRONE", - "center": "POINT (448679.9364530192688107 2029658.1213843259029090)", - "surface": 8980000, - "canton": null, - "numero_insee": "24460" - } - }, - { - "pk": 21371, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MEARD-DE-GURCON", - "center": "POINT (429469.0042261469643563 1992362.0257484645117074)", - "surface": 28620000, - "canton": null, - "numero_insee": "24461" - } - }, - { - "pk": 21980, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MEDARD-DE-MUSSIDAN", - "center": "POINT (441882.2537035692948848 2004376.7320729184430093)", - "surface": 23670000, - "canton": null, - "numero_insee": "24462" - } - }, - { - "pk": 19269, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MESMIN", - "center": "POINT (513766.2997622655238956 2039007.3209615843370557)", - "surface": 30330000, - "canton": null, - "numero_insee": "24464" - } - }, - { - "pk": 20445, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MICHEL-DE-DOUBLE", - "center": "POINT (437613.7259008972905576 2012149.2366929519921541)", - "surface": 29660000, - "canton": null, - "numero_insee": "24465" - } - }, - { - "pk": 17531, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MICHEL-DE-MONTAIGNE", - "center": "POINT (417283.0762349928263575 1989158.1844555393327028)", - "surface": 9290000, - "canton": null, - "numero_insee": "24466" - } - }, - { - "pk": 12336, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-MICHEL-DE-VILLADEIX", - "center": "POINT (473347.3974080102052540 2000333.1838784099090844)", - "surface": 14490000, - "canton": null, - "numero_insee": "24468" - } - }, - { - "pk": 36644, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-MONDANE", - "center": "POINT (521647.7569139436818659 1982116.0532522103749216)", - "surface": 9470000, - "canton": null, - "numero_insee": "24470" - } - }, - { - "pk": 20069, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-NATHALENE", - "center": "POINT (516570.4374545919126831 1990782.6016973746009171)", - "surface": 13910000, - "canton": null, - "numero_insee": "24471" - } - }, - { - "pk": 22440, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-NEXANS", - "center": "POINT (458601.8166398343746550 1979890.2451360486447811)", - "surface": 12470000, - "canton": null, - "numero_insee": "24472" - } - }, - { - "pk": 16927, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-ORSE", - "center": "POINT (500682.5243943704408593 2023483.2302174088545144)", - "surface": 24000000, - "canton": null, - "numero_insee": "24473" - } - }, - { - "pk": 30255, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PANCRACE", - "center": "POINT (469145.2340525251347572 2048345.8739559261593968)", - "surface": 7030000, - "canton": null, - "numero_insee": "24474" - } - }, - { - "pk": 28272, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PANTALY-D'ANS", - "center": "POINT (494538.6154999253922142 2028036.6804530348163098)", - "surface": 10920000, - "canton": null, - "numero_insee": "24475" - } - }, - { - "pk": 31267, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PANTALY-D'EXCIDEUIL", - "center": "POINT (495978.3975123432464898 2035455.9425130127929151)", - "surface": 8840000, - "canton": null, - "numero_insee": "24476" - } - }, - { - "pk": 30281, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PARDOUX-DE-DRONE", - "center": "POINT (449306.1832294322084635 2026560.2437564576976001)", - "surface": 8680000, - "canton": null, - "numero_insee": "24477" - } - }, - { - "pk": 15598, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PARDOUX-ET-VIELVIC", - "center": "POINT (490973.4291785574750975 1975253.9424805506132543)", - "surface": 14380000, - "canton": null, - "numero_insee": "24478" - } - }, - { - "pk": 19359, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PARDOUX-LA-RIVIERE", - "center": "POINT (475779.8395093749277294 2057009.2677291883155704)", - "surface": 23290000, - "canton": null, - "numero_insee": "24479" - } - }, - { - "pk": 29403, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PAUL-DE-SERRE", - "center": "POINT (465856.5936671398812905 2010381.1840551106724888)", - "surface": 10790000, - "canton": null, - "numero_insee": "24480" - } - }, - { - "pk": 14704, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PAUL-LA-ROCHE", - "center": "POINT (494619.1740354826324619 2054463.1680434236768633)", - "surface": 40010000, - "canton": null, - "numero_insee": "24481" - } - }, - { - "pk": 5348, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PAUL-LIZONNE", - "center": "POINT (438908.0898099695332348 2037184.7199579435400665)", - "surface": 9360000, - "canton": null, - "numero_insee": "24482" - } - }, - { - "pk": 9985, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PERDOUX", - "center": "POINT (456763.0495693176053464 1972267.2001288731116802)", - "surface": 7450000, - "canton": null, - "numero_insee": "24483" - } - }, - { - "pk": 9847, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PIERRE-DE-CHIGNAC", - "center": "POINT (483950.1830410319380462 2013334.1739867150317878)", - "surface": 15720000, - "canton": null, - "numero_insee": "24484" - } - }, - { - "pk": 19643, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PIERRE-DE-COLE", - "center": "POINT (480197.5651519520324655 2043332.6370921516790986)", - "surface": 20660000, - "canton": null, - "numero_insee": "24485" - } - }, - { - "pk": 3652, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PIERRE-DE-FRUGIE", - "center": "POINT (496127.3909736230270937 2065686.5040418414864689)", - "surface": 22260000, - "canton": null, - "numero_insee": "24486" - } - }, - { - "pk": 15677, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PIERRE-D'EYRAUD", - "center": "POINT (440717.7100225837202743 1987850.3925705994479358)", - "surface": 26240000, - "canton": null, - "numero_insee": "24487" - } - }, - { - "pk": 3560, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-POMPONT", - "center": "POINT (504740.7048455405747518 1968861.7718663713894784)", - "surface": 28130000, - "canton": null, - "numero_insee": "24488" - } - }, - { - "pk": 4516, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PRIEST-LES-FOUGERES", - "center": "POINT (497468.5046144246589392 2060893.0424723429605365)", - "surface": 21380000, - "canton": null, - "numero_insee": "24489" - } - }, - { - "pk": 3681, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-PRIVAT-DES-PRES", - "center": "POINT (431488.9610123938182369 2026512.9102568991947919)", - "surface": 19700000, - "canton": null, - "numero_insee": "24490" - } - }, - { - "pk": 24757, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-RABIER", - "center": "POINT (506316.8473421491216868 2020026.6447417708113790)", - "surface": 16580000, - "canton": null, - "numero_insee": "24491" - } - }, - { - "pk": 27485, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-RADEGONDE", - "center": "POINT (468325.5863063241122290 1966156.6819268283434212)", - "surface": 4900000, - "canton": null, - "numero_insee": "24492" - } - }, - { - "pk": 7563, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-RAPHAEL", - "center": "POINT (500891.1984047334408388 2034495.8241790656466037)", - "surface": 7300000, - "canton": null, - "numero_insee": "24493" - } - }, - { - "pk": 28115, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-REMY", - "center": "POINT (429728.7394018099876121 1997269.1385694132186472)", - "surface": 22490000, - "canton": null, - "numero_insee": "24494" - } - }, - { - "pk": 6187, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ROMAIN-DE-MONPAZIER", - "center": "POINT (484612.2068072968395427 1969795.5173567088786513)", - "surface": 7530000, - "canton": null, - "numero_insee": "24495" - } - }, - { - "pk": 4514, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-ROMAIN-ET-SAINT-CLEMENT", - "center": "POINT (485363.2006707376567647 2048080.1242641583085060)", - "surface": 14390000, - "canton": null, - "numero_insee": "24496" - } - }, - { - "pk": 21897, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-SABINE-BORN", - "center": "POINT (472717.3710727560683154 1967694.6761297450866550)", - "surface": 24130000, - "canton": null, - "numero_insee": "24497" - } - }, - { - "pk": 20918, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SAUD-LACOUSSIERE", - "center": "POINT (483056.4605367258191109 2060673.1614443706348538)", - "surface": 59880000, - "canton": null, - "numero_insee": "24498" - } - }, - { - "pk": 11387, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SAUVEUR", - "center": "POINT (461443.1732753831893206 1987321.3577986797317863)", - "surface": 9360000, - "canton": null, - "numero_insee": "24499" - } - }, - { - "pk": 31306, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SAUVEUR-LALANDE", - "center": "POINT (435515.9939978918409906 1999519.2198454441968352)", - "surface": 9320000, - "canton": null, - "numero_insee": "24500" - } - }, - { - "pk": 26220, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SEURIN-DE-PRATS", - "center": "POINT (420530.7651276916731149 1983779.5024981249589473)", - "surface": 5570000, - "canton": null, - "numero_insee": "24501" - } - }, - { - "pk": 8064, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SEVERIN-D'ESTISSAC", - "center": "POINT (453169.6265039596473798 2007273.0103136177640408)", - "surface": 5250000, - "canton": null, - "numero_insee": "24502" - } - }, - { - "pk": 29410, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SULPICE-DE-MAREUIL", - "center": "POINT (457992.8942282048519701 2053358.3559250319376588)", - "surface": 11760000, - "canton": null, - "numero_insee": "24503" - } - }, - { - "pk": 24275, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SULPICE-DE-ROUMAGNAC", - "center": "POINT (447425.9815200149896555 2023942.0993141033686697)", - "surface": 10850000, - "canton": null, - "numero_insee": "24504" - } - }, - { - "pk": 21308, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-SULPICE-D'EXCIDEUIL", - "center": "POINT (496601.6227799085900187 2044770.2281197863630950)", - "surface": 19400000, - "canton": null, - "numero_insee": "24505" - } - }, - { - "pk": 9444, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINTE-TRIE", - "center": "POINT (511713.5675695165409707 2033084.4324177396483719)", - "surface": 11260000, - "canton": null, - "numero_insee": "24507" - } - }, - { - "pk": 31661, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-VICTOR", - "center": "POINT (451272.3758993038209155 2030880.7753981328569353)", - "surface": 5040000, - "canton": null, - "numero_insee": "24508" - } - }, - { - "pk": 15022, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-VINCENT-DE-CONNEZAC", - "center": "POINT (447057.1045875758863986 2020135.2722944263368845)", - "surface": 14890000, - "canton": null, - "numero_insee": "24509" - } - }, - { - "pk": 6701, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-VINCENT-DE-COSSE", - "center": "POINT (502923.2809468476916663 1982760.9163168042432517)", - "surface": 7280000, - "canton": null, - "numero_insee": "24510" - } - }, - { - "pk": 23974, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-VINCENT-JALMOUTIERS", - "center": "POINT (431521.2364421579404734 2022609.3115263979416341)", - "surface": 16360000, - "canton": null, - "numero_insee": "24511" - } - }, - { - "pk": 9649, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-VINCENT-LE-PALUEL", - "center": "POINT (516097.4849266199162230 1987475.3060669682454318)", - "surface": 7070000, - "canton": null, - "numero_insee": "24512" - } - }, - { - "pk": 8916, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-VINCENT-SUR-L'ISLE", - "center": "POINT (487133.4805016319151036 2027774.9288424672558904)", - "surface": 10240000, - "canton": null, - "numero_insee": "24513" - } - }, - { - "pk": 7447, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAINT-VIVIEN", - "center": "POINT (423478.2103552133776248 1990510.6825174032710493)", - "surface": 8550000, - "canton": null, - "numero_insee": "24514" - } - }, - { - "pk": 35069, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SALAGNAC", - "center": "POINT (511792.8201976254349574 2035587.5499415611848235)", - "surface": 9330000, - "canton": null, - "numero_insee": "24515" - } - }, - { - "pk": 17217, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SALIGNAC-EYVIGUES", - "center": "POINT (522848.0251342062838376 1994238.3690929231233895)", - "surface": 44440000, - "canton": null, - "numero_insee": "24516" - } - }, - { - "pk": 28326, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SALLES-DE-BELVES", - "center": "POINT (493926.1475178069085814 1969272.3162397693376988)", - "surface": 9090000, - "canton": null, - "numero_insee": "24517" - } - }, - { - "pk": 23032, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SALON", - "center": "POINT (476818.2768908481812105 2004265.9237790852785110)", - "surface": 17540000, - "canton": null, - "numero_insee": "24518" - } - }, - { - "pk": 20097, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SARLANDE", - "center": "POINT (504460.4669077149592340 2050641.2521014288067818)", - "surface": 35390000, - "canton": null, - "numero_insee": "24519" - } - }, - { - "pk": 18980, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SARLAT-LA-CANEDA", - "center": "POINT (510677.3591897552832961 1989231.9894366958178580)", - "surface": 48600000, - "canton": null, - "numero_insee": "24520" - } - }, - { - "pk": 31433, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SARLIAC-SUR-L'ISLE", - "center": "POINT (484531.9226439403137192 2027653.2146991039626300)", - "surface": 10000000, - "canton": null, - "numero_insee": "24521" - } - }, - { - "pk": 21117, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SARRAZAC", - "center": "POINT (498064.6867680597351864 2049386.8746876458171755)", - "surface": 30450000, - "canton": null, - "numero_insee": "24522" - } - }, - { - "pk": 36535, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAUSSIGNAC", - "center": "POINT (440382.7692871520994231 1979939.5523324734531343)", - "surface": 8970000, - "canton": null, - "numero_insee": "24523" - } - }, - { - "pk": 27674, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAVIGNAC-DE-MIREMONT", - "center": "POINT (490293.2272228017682210 1996870.3014503880403936)", - "surface": 7910000, - "canton": null, - "numero_insee": "24524" - } - }, - { - "pk": 21523, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAVIGNAC-DE-NONTRON", - "center": "POINT (473535.5030096080154181 2062095.5587760361377150)", - "surface": 10010000, - "canton": null, - "numero_insee": "24525" - } - }, - { - "pk": 3079, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAVIGNAC-LEDRIER", - "center": "POINT (510830.3217975681764074 2042986.7815805010031909)", - "surface": 26400000, - "canton": null, - "numero_insee": "24526" - } - }, - { - "pk": 16754, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SAVIGNAC-LES-EGLISES", - "center": "POINT (488103.6231723757809959 2031486.6414454262703657)", - "surface": 22830000, - "canton": null, - "numero_insee": "24527" - } - }, - { - "pk": 29573, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SCEAU-SAINT-ANGEL", - "center": "POINT (469990.4116973937489092 2055059.3869399554096162)", - "surface": 18040000, - "canton": null, - "numero_insee": "24528" - } - }, - { - "pk": 13158, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SEGONZAC", - "center": "POINT (450828.2896981123485602 2024070.3739152136258781)", - "surface": 3970000, - "canton": null, - "numero_insee": "24529" - } - }, - { - "pk": 14510, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SENCENAC-PUY-DE-FOURCHES", - "center": "POINT (470145.6973536024452187 2036342.4456895759794861)", - "surface": 11160000, - "canton": null, - "numero_insee": "24530" - } - }, - { - "pk": 29934, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SERGEAC", - "center": "POINT (503676.6911523055750877 2000485.1502233943901956)", - "surface": 10560000, - "canton": null, - "numero_insee": "24531" - } - }, - { - "pk": 29634, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SERRES-ET-MONTGUYARD", - "center": "POINT (449811.0416536983102560 1965602.7870607753284276)", - "surface": 6860000, - "canton": null, - "numero_insee": "24532" - } - }, - { - "pk": 20142, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SERVANCHES", - "center": "POINT (429064.4331293377326801 2017083.5294083629269153)", - "surface": 20610000, - "canton": null, - "numero_insee": "24533" - } - }, - { - "pk": 9075, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SIGOULES", - "center": "POINT (446430.7720573579426855 1974884.3844083098229021)", - "surface": 10910000, - "canton": null, - "numero_insee": "24534" - } - }, - { - "pk": 7748, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SIMEYROLS", - "center": "POINT (521173.9542356353485957 1990921.0675160202663392)", - "surface": 9460000, - "canton": null, - "numero_insee": "24535" - } - }, - { - "pk": 11505, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SINGLEYRAC", - "center": "POINT (451457.9561700823251158 1972223.2422576111275703)", - "surface": 7190000, - "canton": null, - "numero_insee": "24536" - } - }, - { - "pk": 29817, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SIORAC-DE-RIBERAC", - "center": "POINT (443535.6381349613657221 2022308.3055351972579956)", - "surface": 20920000, - "canton": null, - "numero_insee": "24537" - } - }, - { - "pk": 33487, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SIORAC-EN-PERIGORD", - "center": "POINT (492531.6859859031392261 1980472.2285389904864132)", - "surface": 11770000, - "canton": null, - "numero_insee": "24538" - } - }, - { - "pk": 25971, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SORGES", - "center": "POINT (483282.5967844090773724 2033448.5554690319113433)", - "surface": 48550000, - "canton": null, - "numero_insee": "24540" - } - }, - { - "pk": 33694, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SOULAURES", - "center": "POINT (487087.7183609574567527 1961006.9842249413486570)", - "surface": 10340000, - "canton": null, - "numero_insee": "24542" - } - }, - { - "pk": 17928, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "SOURZAC", - "center": "POINT (448565.3249926465214230 2007234.8733302610926330)", - "surface": 23160000, - "canton": null, - "numero_insee": "24543" - } - }, - { - "pk": 24477, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TEILLOTS", - "center": "POINT (512245.7012586154160090 2029285.1196959768421948)", - "surface": 10220000, - "canton": null, - "numero_insee": "24545" - } - }, - { - "pk": 5330, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TEMPLE-LAGUYON", - "center": "POINT (502660.2143650728976354 2026402.5568095766939223)", - "surface": 3040000, - "canton": null, - "numero_insee": "24546" - } - }, - { - "pk": 16037, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TERRASSON-LAVILLEDIEU", - "center": "POINT (518282.8938405876979232 2013519.7295366143807769)", - "surface": 39150000, - "canton": null, - "numero_insee": "24547" - } - }, - { - "pk": 20474, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TEYJAT", - "center": "POINT (462884.5386371272616088 2067012.0146213406696916)", - "surface": 17350000, - "canton": null, - "numero_insee": "24548" - } - }, - { - "pk": 17534, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "THENAC", - "center": "POINT (442938.1857481423066929 1973554.1324587049894035)", - "surface": 20410000, - "canton": null, - "numero_insee": "24549" - } - }, - { - "pk": 20087, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "THENON", - "center": "POINT (499749.0494165573618375 2015367.4109755915123969)", - "surface": 26950000, - "canton": null, - "numero_insee": "24550" - } - }, - { - "pk": 29821, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "THIVIERS", - "center": "POINT (488462.6752076691482216 2048506.2672175168991089)", - "surface": 28660000, - "canton": null, - "numero_insee": "24551" - } - }, - { - "pk": 16925, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TOCANE-SAINT-APRE", - "center": "POINT (455501.1096260084304959 2027912.8459768658503890)", - "surface": 33000000, - "canton": null, - "numero_insee": "24553" - } - }, - { - "pk": 28081, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "LA TOUR-BLANCHE", - "center": "POINT (450375.4829936913447455 2042484.7363347036298364)", - "surface": 8210000, - "canton": null, - "numero_insee": "24554" - } - }, - { - "pk": 4992, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TOURTOIRAC", - "center": "POINT (499418.9698961115791462 2030980.1313882572576404)", - "surface": 26270000, - "canton": null, - "numero_insee": "24555" - } - }, - { - "pk": 25576, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TRELISSAC", - "center": "POINT (477552.0804971377365291 2024392.0804211092181504)", - "surface": 24080000, - "canton": null, - "numero_insee": "24557" - } - }, - { - "pk": 6414, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TREMOLAT", - "center": "POINT (481165.2013979095499963 1987084.6125799445435405)", - "surface": 14050000, - "canton": null, - "numero_insee": "24558" - } - }, - { - "pk": 28748, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "TURSAC", - "center": "POINT (497794.4628625368350185 1997633.3830619489308447)", - "surface": 18160000, - "canton": null, - "numero_insee": "24559" - } - }, - { - "pk": 8696, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "URVAL", - "center": "POINT (489444.5361783394473605 1978544.6189836303237826)", - "surface": 13390000, - "canton": null, - "numero_insee": "24560" - } - }, - { - "pk": 7951, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VALEUIL", - "center": "POINT (466029.5022355298860930 2037809.7730267550796270)", - "surface": 19220000, - "canton": null, - "numero_insee": "24561" - } - }, - { - "pk": 36086, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VALLEREUIL", - "center": "POINT (455253.3434560736641288 2009492.4811060973443091)", - "surface": 9160000, - "canton": null, - "numero_insee": "24562" - } - }, - { - "pk": 16922, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VALOJOULX", - "center": "POINT (506263.3015690773027018 2002408.5936219885479659)", - "surface": 12200000, - "canton": null, - "numero_insee": "24563" - } - }, - { - "pk": 21972, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VANXAINS", - "center": "POINT (439104.2430717807728797 2025574.9056354304775596)", - "surface": 35670000, - "canton": null, - "numero_insee": "24564" - } - }, - { - "pk": 21425, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VARAIGNES", - "center": "POINT (459061.2474196901894175 2069382.6215237255673856)", - "surface": 17250000, - "canton": null, - "numero_insee": "24565" - } - }, - { - "pk": 8072, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VARENNES", - "center": "POINT (467986.7129928570357151 1982871.0367686138488352)", - "surface": 4100000, - "canton": null, - "numero_insee": "24566" - } - }, - { - "pk": 37808, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VAUNAC", - "center": "POINT (484812.5489175621187314 2042069.6985856951214373)", - "surface": 14240000, - "canton": null, - "numero_insee": "24567" - } - }, - { - "pk": 10112, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VELINES", - "center": "POINT (424112.6914859249955043 1986411.7508156280964613)", - "surface": 10700000, - "canton": null, - "numero_insee": "24568" - } - }, - { - "pk": 17988, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VENDOIRE", - "center": "POINT (439621.0378909332794137 2047800.9816102390177548)", - "surface": 11790000, - "canton": null, - "numero_insee": "24569" - } - }, - { - "pk": 12818, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VERDON", - "center": "POINT (464901.1926918703247793 1980743.2952638445422053)", - "surface": 5020000, - "canton": null, - "numero_insee": "24570" - } - }, - { - "pk": 37007, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VERGT", - "center": "POINT (471800.3028990604216233 2005825.8809642340056598)", - "surface": 33620000, - "canton": null, - "numero_insee": "24571" - } - }, - { - "pk": 21032, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VERGT-DE-BIRON", - "center": "POINT (481886.0072890804149210 1960563.3500070893205702)", - "surface": 16300000, - "canton": null, - "numero_insee": "24572" - } - }, - { - "pk": 4949, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VERTEILLAC", - "center": "POINT (446285.8433207673369907 2040749.2098412485793233)", - "surface": 18490000, - "canton": null, - "numero_insee": "24573" - } - }, - { - "pk": 10670, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VEYRIGNAC", - "center": "POINT (519957.8175298502901569 1980700.5358694312162697)", - "surface": 9660000, - "canton": null, - "numero_insee": "24574" - } - }, - { - "pk": 11517, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VEYRINES-DE-DOMME", - "center": "POINT (502558.7175190954003483 1978453.4831616487354040)", - "surface": 11390000, - "canton": null, - "numero_insee": "24575" - } - }, - { - "pk": 10744, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VEYRINES-DE-VERGT", - "center": "POINT (476652.9913227438228205 2000060.3208949666004628)", - "surface": 12260000, - "canton": null, - "numero_insee": "24576" - } - }, - { - "pk": 19911, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VEZAC", - "center": "POINT (507928.0413937153643928 1982802.5749938294757158)", - "surface": 13560000, - "canton": null, - "numero_insee": "24577" - } - }, - { - "pk": 3186, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VIEUX-MAREUIL", - "center": "POINT (456320.3909241581568494 2049841.0992915390525013)", - "surface": 27510000, - "canton": null, - "numero_insee": "24579" - } - }, - { - "pk": 21803, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VILLAC", - "center": "POINT (514416.8298787848907523 2020994.9874456725083292)", - "surface": 21170000, - "canton": null, - "numero_insee": "24580" - } - }, - { - "pk": 26205, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VILLAMBLARD", - "center": "POINT (459698.9358840924105607 2004524.3058732848148793)", - "surface": 20520000, - "canton": null, - "numero_insee": "24581" - } - }, - { - "pk": 31911, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VILLARS", - "center": "POINT (477055.6981602348969318 2048011.1318154986947775)", - "surface": 28770000, - "canton": null, - "numero_insee": "24582" - } - }, - { - "pk": 16315, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VILLEFRANCHE-DE-LONCHAT", - "center": "POINT (420217.2979314994299784 1997490.8407885669730604)", - "surface": 15190000, - "canton": null, - "numero_insee": "24584" - } - }, - { - "pk": 23272, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VILLEFRANCHE-DU-PERIGORD", - "center": "POINT (502412.5304034836590290 1959933.1828390406444669)", - "surface": 25120000, - "canton": null, - "numero_insee": "24585" - } - }, - { - "pk": 18597, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VILLETOUREIX", - "center": "POINT (444755.6405120542622171 2032128.0963351037353277)", - "surface": 16180000, - "canton": null, - "numero_insee": "24586" - } - }, - { - "pk": 25149, - "model": "ishtar_common.town", - "fields": { - "departement": 25, - "name": "VITRAC", - "center": "POINT (511933.5166181913809851 1982635.7248930786736310)", - "surface": 14410000, - "canton": null, - "numero_insee": "24587" - } - }, - { - "pk": 30219, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ABBANS-DESSOUS", - "center": "POINT (868160.6068597340490669 2243088.3932448192499578)", - "surface": 3190000, - "canton": null, - "numero_insee": "25001" - } - }, - { - "pk": 10192, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ABBANS-DESSUS", - "center": "POINT (869167.3887759554199874 2242396.4717083224095404)", - "surface": 4400000, - "canton": null, - "numero_insee": "25002" - } - }, - { - "pk": 11853, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ABBENANS", - "center": "POINT (909829.4762686258181930 2285481.7062134067527950)", - "surface": 11290000, - "canton": null, - "numero_insee": "25003" - } - }, - { - "pk": 4036, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ABBEVILLERS", - "center": "POINT (945707.4427954484708607 2279787.1921083433553576)", - "surface": 11180000, - "canton": null, - "numero_insee": "25004" - } - }, - { - "pk": 27525, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ACCOLANS", - "center": "POINT (916137.4991830996004865 2285135.8710667644627392)", - "surface": 5180000, - "canton": null, - "numero_insee": "25005" - } - }, - { - "pk": 26452, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ADAM-LES-PASSAVANT", - "center": "POINT (904712.1910034930333495 2263820.0920939389616251)", - "surface": 9500000, - "canton": null, - "numero_insee": "25006" - } - }, - { - "pk": 11845, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ADAM-LES-VERCEL", - "center": "POINT (907149.5132113544968888 2248128.2258377443067729)", - "surface": 3100000, - "canton": null, - "numero_insee": "25007" - } - }, - { - "pk": 7350, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AIBRE", - "center": "POINT (928082.1493782799225301 2292645.0255420990288258)", - "surface": 4450000, - "canton": null, - "numero_insee": "25008" - } - }, - { - "pk": 12337, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AISSEY", - "center": "POINT (901743.6407946008257568 2259891.2901596198789775)", - "surface": 10740000, - "canton": null, - "numero_insee": "25009" - } - }, - { - "pk": 37686, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ALLENJOIE", - "center": "POINT (942802.2627621764549986 2291671.5550265423953533)", - "surface": 6510000, - "canton": null, - "numero_insee": "25011" - } - }, - { - "pk": 8206, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES ALLIES", - "center": "POINT (912755.7983023272827268 2224757.0379304657690227)", - "surface": 5300000, - "canton": null, - "numero_insee": "25012" - } - }, - { - "pk": 12097, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ALLONDANS", - "center": "POINT (932211.9417113978415728 2289578.2855601636692882)", - "surface": 5080000, - "canton": null, - "numero_insee": "25013" - } - }, - { - "pk": 23738, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AMAGNEY", - "center": "POINT (888105.0662132224533707 2263076.3890038914978504)", - "surface": 13070000, - "canton": null, - "numero_insee": "25014" - } - }, - { - "pk": 16702, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AMANCEY", - "center": "POINT (884065.6479619073215872 2232416.2745119687169790)", - "surface": 13890000, - "canton": null, - "numero_insee": "25015" - } - }, - { - "pk": 24787, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AMATHAY-VESIGNEUX", - "center": "POINT (893176.9216334216762334 2231994.3617323390208185)", - "surface": 12080000, - "canton": null, - "numero_insee": "25016" - } - }, - { - "pk": 32483, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AMONDANS", - "center": "POINT (880725.2093467256054282 2236791.1915245126001537)", - "surface": 5680000, - "canton": null, - "numero_insee": "25017" - } - }, - { - "pk": 9614, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ANTEUIL", - "center": "POINT (919949.1560555527685210 2272558.6695047803223133)", - "surface": 24220000, - "canton": null, - "numero_insee": "25018" - } - }, - { - "pk": 27929, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "APPENANS", - "center": "POINT (918975.8514325742144138 2280957.0311490623280406)", - "surface": 4090000, - "canton": null, - "numero_insee": "25019" - } - }, - { - "pk": 12782, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ARBOUANS", - "center": "POINT (936745.5087546992581338 2286114.7253427626565099)", - "surface": 1350000, - "canton": null, - "numero_insee": "25020" - } - }, - { - "pk": 26769, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ARC-ET-SENANS", - "center": "POINT (860751.2751546626677737 2231815.3431817158125341)", - "surface": 14890000, - "canton": null, - "numero_insee": "25021" - } - }, - { - "pk": 28812, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ARCEY", - "center": "POINT (924812.6566126953111961 2288813.7268525594845414)", - "surface": 12500000, - "canton": null, - "numero_insee": "25022" - } - }, - { - "pk": 11968, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ARCON", - "center": "POINT (907437.8895806460641325 2226312.4825131278485060)", - "surface": 21400000, - "canton": null, - "numero_insee": "25024" - } - }, - { - "pk": 37972, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ARC-SOUS-CICON", - "center": "POINT (908555.8848705239361152 2235930.2067163814790547)", - "surface": 28530000, - "canton": null, - "numero_insee": "25025" - } - }, - { - "pk": 36673, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ARC-SOUS-MONTENOT", - "center": "POINT (879374.8428606749512255 2219264.8259383938275278)", - "surface": 10850000, - "canton": null, - "numero_insee": "25026" - } - }, - { - "pk": 12283, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ARGUEL", - "center": "POINT (878116.4765543423127383 2249179.0314116566441953)", - "surface": 4960000, - "canton": null, - "numero_insee": "25027" - } - }, - { - "pk": 31189, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ATHOSE", - "center": "POINT (901634.2189024256076664 2237772.0667466432787478)", - "surface": 7720000, - "canton": null, - "numero_insee": "25028" - } - }, - { - "pk": 5735, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AUBONNE", - "center": "POINT (904269.0119113437831402 2233991.6175083448179066)", - "surface": 15270000, - "canton": null, - "numero_insee": "25029" - } - }, - { - "pk": 12548, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AUDEUX", - "center": "POINT (867241.2243676430080086 2256891.8676503319293261)", - "surface": 1760000, - "canton": null, - "numero_insee": "25030" - } - }, - { - "pk": 22857, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AUDINCOURT", - "center": "POINT (940254.1114204393234104 2285444.5398772135376930)", - "surface": 8800000, - "canton": null, - "numero_insee": "25031" - } - }, - { - "pk": 18235, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AUTECHAUX", - "center": "POINT (905538.5773331169039011 2272434.2103795409202576)", - "surface": 6580000, - "canton": null, - "numero_insee": "25032" - } - }, - { - "pk": 30116, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AUTECHAUX-ROIDE", - "center": "POINT (937542.1700689154677093 2275012.6944131399504840)", - "surface": 6580000, - "canton": null, - "numero_insee": "25033" - } - }, - { - "pk": 30327, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AUXON-DESSOUS", - "center": "POINT (872404.6274474745150656 2261640.1309176189824939)", - "surface": 6210000, - "canton": null, - "numero_insee": "25034" - } - }, - { - "pk": 24411, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AUXON-DESSUS", - "center": "POINT (874500.1562402406707406 2262358.7355976207181811)", - "surface": 3850000, - "canton": null, - "numero_insee": "25035" - } - }, - { - "pk": 29531, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AVANNE-AVENEY", - "center": "POINT (874098.8291602612007409 2250845.8524782643653452)", - "surface": 8510000, - "canton": null, - "numero_insee": "25036" - } - }, - { - "pk": 26269, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AVILLEY", - "center": "POINT (896489.6791087149176747 2277260.0937472013756633)", - "surface": 5610000, - "canton": null, - "numero_insee": "25038" - } - }, - { - "pk": 28803, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "AVOUDREY", - "center": "POINT (910573.6758723969105631 2245655.7130023026838899)", - "surface": 13000000, - "canton": null, - "numero_insee": "25039" - } - }, - { - "pk": 25626, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BADEVEL", - "center": "POINT (946436.0690687575843185 2288100.1611341512762010)", - "surface": 3710000, - "canton": null, - "numero_insee": "25040" - } - }, - { - "pk": 30455, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BANNANS", - "center": "POINT (896997.9744789507240057 2218315.7257993947714567)", - "surface": 11590000, - "canton": null, - "numero_insee": "25041" - } - }, - { - "pk": 25274, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE BARBOUX", - "center": "POINT (932797.3776460463413969 2245047.1162302582524717)", - "surface": 11330000, - "canton": null, - "numero_insee": "25042" - } - }, - { - "pk": 12363, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BART", - "center": "POINT (933642.3957909971941262 2286187.9489572988823056)", - "surface": 3800000, - "canton": null, - "numero_insee": "25043" - } - }, - { - "pk": 14086, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BARTHERANS", - "center": "POINT (872555.1323794105555862 2232517.3537784041836858)", - "surface": 5810000, - "canton": null, - "numero_insee": "25044" - } - }, - { - "pk": 6678, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BATTENANS-LES-MINES", - "center": "POINT (896912.4113471485907212 2274661.6442501223646104)", - "surface": 2860000, - "canton": null, - "numero_insee": "25045" - } - }, - { - "pk": 27113, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BATTENANS-VARIN", - "center": "POINT (930679.8709661939647049 2258439.8708842769265175)", - "surface": 6300000, - "canton": null, - "numero_insee": "25046" - } - }, - { - "pk": 23621, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BAUME-LES-DAMES", - "center": "POINT (902563.1426936883945018 2269306.0213508792221546)", - "surface": 24970000, - "canton": null, - "numero_insee": "25047" - } - }, - { - "pk": 23723, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BAVANS", - "center": "POINT (930548.8066146557684988 2285160.3825418977066875)", - "surface": 8880000, - "canton": null, - "numero_insee": "25048" - } - }, - { - "pk": 29448, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BELFAYS", - "center": "POINT (945369.1729089928558096 2261069.0682281446643174)", - "surface": 3260000, - "canton": null, - "numero_insee": "25049" - } - }, - { - "pk": 19317, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE BELIEU", - "center": "POINT (925695.4674096873495728 2244585.3642248399555683)", - "surface": 10860000, - "canton": null, - "numero_insee": "25050" - } - }, - { - "pk": 22446, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BELLEHERBE", - "center": "POINT (926359.3565348153933883 2260404.1459728577174246)", - "surface": 16100000, - "canton": null, - "numero_insee": "25051" - } - }, - { - "pk": 13163, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BELMONT", - "center": "POINT (904694.1615611384622753 2254312.1527613927610219)", - "surface": 4660000, - "canton": null, - "numero_insee": "25052" - } - }, - { - "pk": 11124, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BELVOIR", - "center": "POINT (923303.4875998750794679 2266582.7904747333377600)", - "surface": 9240000, - "canton": null, - "numero_insee": "25053" - } - }, - { - "pk": 29666, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BERCHE", - "center": "POINT (932266.4911265888949856 2283273.7212343602441251)", - "surface": 3120000, - "canton": null, - "numero_insee": "25054" - } - }, - { - "pk": 13332, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BERTHELANGE", - "center": "POINT (860793.1538054696284235 2250231.0015502949245274)", - "surface": 4030000, - "canton": null, - "numero_insee": "25055" - } - }, - { - "pk": 22461, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BESANCON", - "center": "POINT (878548.7867674978915602 2257089.2532740486785769)", - "surface": 65100000, - "canton": null, - "numero_insee": "25056" - } - }, - { - "pk": 7366, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BETHONCOURT", - "center": "POINT (935794.6195670996094123 2291911.1209079660475254)", - "surface": 6600000, - "canton": null, - "numero_insee": "25057" - } - }, - { - "pk": 33643, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BEURE", - "center": "POINT (877795.5745337775442749 2251578.2485692193731666)", - "surface": 4020000, - "canton": null, - "numero_insee": "25058" - } - }, - { - "pk": 6657, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BEUTAL", - "center": "POINT (923855.1947244061157107 2283801.4528341107070446)", - "surface": 5890000, - "canton": null, - "numero_insee": "25059" - } - }, - { - "pk": 33166, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BIANS-LES-USIERS", - "center": "POINT (899336.8304940294474363 2225642.0828783316537738)", - "surface": 14050000, - "canton": null, - "numero_insee": "25060" - } - }, - { - "pk": 25652, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BIEF", - "center": "POINT (935305.4363562185317278 2267487.2500036293640733)", - "surface": 3740000, - "canton": null, - "numero_insee": "25061" - } - }, - { - "pk": 35647, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE BIZOT", - "center": "POINT (928682.1596522156614810 2246412.6849505566060543)", - "surface": 7880000, - "canton": null, - "numero_insee": "25062" - } - }, - { - "pk": 4318, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BLAMONT", - "center": "POINT (940942.0647894857684150 2275342.3709443937987089)", - "surface": 9940000, - "canton": null, - "numero_insee": "25063" - } - }, - { - "pk": 8353, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BLARIANS", - "center": "POINT (889703.6883402480743825 2274999.8157705338671803)", - "surface": 870000, - "canton": null, - "numero_insee": "25065" - } - }, - { - "pk": 11956, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BLUSSANGEAUX", - "center": "POINT (922792.4607437716331333 2279388.7332183788530529)", - "surface": 2180000, - "canton": null, - "numero_insee": "25066" - } - }, - { - "pk": 27926, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BLUSSANS", - "center": "POINT (922313.7224784509744495 2276882.5813061725348234)", - "surface": 8160000, - "canton": null, - "numero_insee": "25067" - } - }, - { - "pk": 28224, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BOLANDOZ", - "center": "POINT (887191.2980202382896096 2229740.9308523591607809)", - "surface": 12230000, - "canton": null, - "numero_insee": "25070" - } - }, - { - "pk": 10376, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BONDEVAL", - "center": "POINT (939799.6698143735993654 2280136.3512696633115411)", - "surface": 4700000, - "canton": null, - "numero_insee": "25071" - } - }, - { - "pk": 35911, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BONNAL", - "center": "POINT (903316.9954747555311769 2286326.2066898066550493)", - "surface": 1710000, - "canton": null, - "numero_insee": "25072" - } - }, - { - "pk": 26446, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BONNAY", - "center": "POINT (880078.4558845935389400 2265409.2014658860862255)", - "surface": 7660000, - "canton": null, - "numero_insee": "25073" - } - }, - { - "pk": 21992, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BONNETAGE", - "center": "POINT (933441.6287898656446487 2251558.0784788257442415)", - "surface": 17890000, - "canton": null, - "numero_insee": "25074" - } - }, - { - "pk": 18644, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BONNEVAUX", - "center": "POINT (894483.0892733121290803 2208185.4159950716421008)", - "surface": 16520000, - "canton": null, - "numero_insee": "25075" - } - }, - { - "pk": 32253, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BONNEVAUX-LE-PRIEURE", - "center": "POINT (890668.1366371230687946 2244383.0909127746708691)", - "surface": 3060000, - "canton": null, - "numero_insee": "25076" - } - }, - { - "pk": 21269, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA BOSSE", - "center": "POINT (926873.8775353697128594 2247197.7122229328379035)", - "surface": 5160000, - "canton": null, - "numero_insee": "25077" - } - }, - { - "pk": 4246, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BOUCLANS", - "center": "POINT (894768.6330195214832202 2256328.2624028986319900)", - "surface": 21490000, - "canton": null, - "numero_insee": "25078" - } - }, - { - "pk": 14576, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BOUJAILLES", - "center": "POINT (885106.8431691895239055 2216111.4633733858354390)", - "surface": 28190000, - "canton": null, - "numero_insee": "25079" - } - }, - { - "pk": 33069, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BOURNOIS", - "center": "POINT (913237.9901722855865955 2284810.5832831966690719)", - "surface": 10430000, - "canton": null, - "numero_insee": "25083" - } - }, - { - "pk": 25730, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BOUSSIERES", - "center": "POINT (870244.9762758784927428 2245107.9815529808402061)", - "surface": 5620000, - "canton": null, - "numero_insee": "25084" - } - }, - { - "pk": 13648, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BOUVERANS", - "center": "POINT (895352.7353463358012959 2211795.9971201005391777)", - "surface": 18490000, - "canton": null, - "numero_insee": "25085" - } - }, - { - "pk": 12902, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BRAILLANS", - "center": "POINT (883396.4110257481224835 2263636.3113067229278386)", - "surface": 1960000, - "canton": null, - "numero_insee": "25086" - } - }, - { - "pk": 9616, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BRANNE", - "center": "POINT (912642.9282508061733097 2272595.6289522158913314)", - "surface": 6500000, - "canton": null, - "numero_insee": "25087" - } - }, - { - "pk": 4583, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BRECONCHAUX", - "center": "POINT (897072.8998957992298529 2267657.3610375798307359)", - "surface": 3310000, - "canton": null, - "numero_insee": "25088" - } - }, - { - "pk": 25889, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BREMONDANS", - "center": "POINT (907282.2865641006501392 2255935.8060984206385911)", - "surface": 7210000, - "canton": null, - "numero_insee": "25089" - } - }, - { - "pk": 8966, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BRERES", - "center": "POINT (867833.4652651866199449 2234578.4955310057848692)", - "surface": 2170000, - "canton": null, - "numero_insee": "25090" - } - }, - { - "pk": 36360, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES BRESEUX", - "center": "POINT (937552.1051324063446373 2262302.4493015157058835)", - "surface": 7430000, - "canton": null, - "numero_insee": "25091" - } - }, - { - "pk": 25467, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA BRETENIERE", - "center": "POINT (897339.4605456792050973 2271562.8222233587875962)", - "surface": 4190000, - "canton": null, - "numero_insee": "25092" - } - }, - { - "pk": 13200, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BRETIGNEY", - "center": "POINT (923743.8745540096424520 2285101.5310888253152370)", - "surface": 1780000, - "canton": null, - "numero_insee": "25093" - } - }, - { - "pk": 20735, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BRETIGNEY-NOTRE-DAME", - "center": "POINT (899805.1068208363140002 2264178.0790177783928812)", - "surface": 5770000, - "canton": null, - "numero_insee": "25094" - } - }, - { - "pk": 26646, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BRETONVILLERS", - "center": "POINT (924004.2864108076319098 2254979.3494173479266465)", - "surface": 13840000, - "canton": null, - "numero_insee": "25095" - } - }, - { - "pk": 6135, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BREY-ET-MAISON-DU-BOIS", - "center": "POINT (898244.6706858270335943 2201411.9926065178588033)", - "surface": 6100000, - "canton": null, - "numero_insee": "25096" - } - }, - { - "pk": 33541, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BROGNARD", - "center": "POINT (940809.4867428464349359 2290653.5013533076271415)", - "surface": 2910000, - "canton": null, - "numero_insee": "25097" - } - }, - { - "pk": 31818, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BUFFARD", - "center": "POINT (865256.4370352649129927 2231653.9049220159649849)", - "surface": 8110000, - "canton": null, - "numero_insee": "25098" - } - }, - { - "pk": 7240, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BUGNY", - "center": "POINT (905606.2771299660671502 2229799.6273429091088474)", - "surface": 4820000, - "canton": null, - "numero_insee": "25099" - } - }, - { - "pk": 7006, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BULLE", - "center": "POINT (894290.7030753513099626 2218892.8955172505229712)", - "surface": 14150000, - "canton": null, - "numero_insee": "25100" - } - }, - { - "pk": 10692, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BURGILLE", - "center": "POINT (860634.5849584356183186 2257035.2259748713113368)", - "surface": 9330000, - "canton": null, - "numero_insee": "25101" - } - }, - { - "pk": 33009, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BURNEVILLERS", - "center": "POINT (953801.7691743712639436 2269649.0773280132561922)", - "surface": 6720000, - "canton": null, - "numero_insee": "25102" - } - }, - { - "pk": 12969, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BUSY", - "center": "POINT (874130.6947563862195238 2247143.0712058660574257)", - "surface": 5280000, - "canton": null, - "numero_insee": "25103" - } - }, - { - "pk": 5896, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BY", - "center": "POINT (870677.7857704150956124 2229698.8517093141563237)", - "surface": 7270000, - "canton": null, - "numero_insee": "25104" - } - }, - { - "pk": 26538, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "BYANS-SUR-DOUBS", - "center": "POINT (866279.8248813501559198 2240670.2235119063407183)", - "surface": 9930000, - "canton": null, - "numero_insee": "25105" - } - }, - { - "pk": 14178, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CADEMENE", - "center": "POINT (880002.2733421435113996 2239387.1365297120064497)", - "surface": 3430000, - "canton": null, - "numero_insee": "25106" - } - }, - { - "pk": 36835, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CENDREY", - "center": "POINT (894917.8498762110248208 2273843.7981004654429853)", - "surface": 5590000, - "canton": null, - "numero_insee": "25107" - } - }, - { - "pk": 7002, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CERNAY-L'EGLISE", - "center": "POINT (940175.6977661490673199 2259823.1116540781222284)", - "surface": 6000000, - "canton": null, - "numero_insee": "25108" - } - }, - { - "pk": 29322, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CESSEY", - "center": "POINT (872081.6378919059643522 2241020.3788942540995777)", - "surface": 7580000, - "canton": null, - "numero_insee": "25109" - } - }, - { - "pk": 9396, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAFFOIS", - "center": "POINT (898380.9375303714768961 2220429.4353573964908719)", - "surface": 16330000, - "canton": null, - "numero_insee": "25110" - } - }, - { - "pk": 23035, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHALEZE", - "center": "POINT (884345.3527682581916451 2258039.9098368333652616)", - "surface": 5710000, - "canton": null, - "numero_insee": "25111" - } - }, - { - "pk": 10867, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHALEZEULE", - "center": "POINT (882148.8851843582233414 2257420.4995028218254447)", - "surface": 3940000, - "canton": null, - "numero_insee": "25112" - } - }, - { - "pk": 8324, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAMESEY", - "center": "POINT (924984.2703551275189966 2257389.7954593738541007)", - "surface": 6520000, - "canton": null, - "numero_insee": "25113" - } - }, - { - "pk": 27328, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAMESOL", - "center": "POINT (940384.0805986293125898 2270433.5690254778601229)", - "surface": 10230000, - "canton": null, - "numero_insee": "25114" - } - }, - { - "pk": 30767, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAMPAGNEY", - "center": "POINT (868945.0740827855188400 2256606.2773738596588373)", - "surface": 2990000, - "canton": null, - "numero_insee": "25115" - } - }, - { - "pk": 33031, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAMPLIVE", - "center": "POINT (895424.2841157586080953 2261538.1745938160456717)", - "surface": 8240000, - "canton": null, - "numero_insee": "25116" - } - }, - { - "pk": 26537, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAMPOUX", - "center": "POINT (886970.6221662352327257 2266969.7881687465123832)", - "surface": 3060000, - "canton": null, - "numero_insee": "25117" - } - }, - { - "pk": 26539, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAMPVANS-LES-MOULINS", - "center": "POINT (870144.2469684076495469 2256816.7572860070504248)", - "surface": 2510000, - "canton": null, - "numero_insee": "25119" - } - }, - { - "pk": 28094, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHANTRANS", - "center": "POINT (890652.5841630850918591 2234574.7849948350340128)", - "surface": 14290000, - "canton": null, - "numero_insee": "25120" - } - }, - { - "pk": 17774, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAPELLE-DES-BOIS", - "center": "POINT (888774.1861740503227338 2185416.5445457231253386)", - "surface": 39960000, - "canton": null, - "numero_insee": "25121" - } - }, - { - "pk": 36455, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAPELLE-D'HUIN", - "center": "POINT (891361.7172559623140842 2221970.2805976509116590)", - "surface": 23870000, - "canton": null, - "numero_insee": "25122" - } - }, - { - "pk": 35993, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHARBONNIERES-LES-SAPINS", - "center": "POINT (893455.5865387867670506 2246108.5276937396265566)", - "surface": 9170000, - "canton": null, - "numero_insee": "25123" - } - }, - { - "pk": 10547, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHARMAUVILLERS", - "center": "POINT (946596.9397503872169182 2257977.1579522658139467)", - "surface": 10790000, - "canton": null, - "numero_insee": "25124" - } - }, - { - "pk": 23285, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHARMOILLE", - "center": "POINT (927782.8997476084623486 2257814.3227180675603449)", - "surface": 9970000, - "canton": null, - "numero_insee": "25125" - } - }, - { - "pk": 37384, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHARNAY", - "center": "POINT (873968.4372970443218946 2242738.0275171506218612)", - "surface": 5650000, - "canton": null, - "numero_insee": "25126" - } - }, - { - "pk": 20809, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHARQUEMONT", - "center": "POINT (941124.0231305052293465 2254326.7976055676117539)", - "surface": 21730000, - "canton": null, - "numero_insee": "25127" - } - }, - { - "pk": 31820, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHASNANS", - "center": "POINT (902423.6037697202991694 2239079.9625277114100754)", - "surface": 7920000, - "canton": null, - "numero_insee": "25128" - } - }, - { - "pk": 29622, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHASSAGNE-SAINT-DENIS", - "center": "POINT (886416.6168427108787000 2238341.4627902228385210)", - "surface": 9170000, - "canton": null, - "numero_insee": "25129" - } - }, - { - "pk": 25538, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHATEAUVIEUX-LES-FOSSES", - "center": "POINT (893344.2930120073724538 2235798.9899810566566885)", - "surface": 4470000, - "canton": null, - "numero_insee": "25130" - } - }, - { - "pk": 5975, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHATELBLANC", - "center": "POINT (888318.6877640724414960 2191818.2069512791931629)", - "surface": 20870000, - "canton": null, - "numero_insee": "25131" - } - }, - { - "pk": 13926, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHATILLON-GUYOTTE", - "center": "POINT (889483.6796745723113418 2265690.3873105375096202)", - "surface": 4440000, - "canton": null, - "numero_insee": "25132" - } - }, - { - "pk": 23505, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHATILLON-LE-DUC", - "center": "POINT (876899.3510324368253350 2262679.6314075072295964)", - "surface": 6160000, - "canton": null, - "numero_insee": "25133" - } - }, - { - "pk": 29399, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHATILLON-SUR-LISON", - "center": "POINT (876622.9495949167758226 2236655.7918360168114305)", - "surface": 2850000, - "canton": null, - "numero_insee": "25134" - } - }, - { - "pk": 32250, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAUCENNE", - "center": "POINT (869016.7401321607176214 2259909.5946772047318518)", - "surface": 4910000, - "canton": null, - "numero_insee": "25136" - } - }, - { - "pk": 35990, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAUDEFONTAINE", - "center": "POINT (888765.9138535712845623 2267685.8270109747536480)", - "surface": 6320000, - "canton": null, - "numero_insee": "25137" - } - }, - { - "pk": 10635, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES TERRES-DE-CHAUX", - "center": "POINT (931809.7750589561183006 2266656.3519624727778137)", - "surface": 14490000, - "canton": null, - "numero_insee": "25138" - } - }, - { - "pk": 34028, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA CHAUX", - "center": "POINT (909787.9022384285926819 2232337.8222233043052256)", - "surface": 16980000, - "canton": null, - "numero_insee": "25139" - } - }, - { - "pk": 31320, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAUX-LES-CLERVAL", - "center": "POINT (915451.0366635713726282 2271919.3177324808202684)", - "surface": 8580000, - "canton": null, - "numero_insee": "25140" - } - }, - { - "pk": 30105, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAUX-LES-PASSAVANT", - "center": "POINT (903677.0058226768160239 2256204.9376817755401134)", - "surface": 8530000, - "canton": null, - "numero_insee": "25141" - } - }, - { - "pk": 16061, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAUX-NEUVE", - "center": "POINT (891929.3159177163615823 2190948.5328807025216520)", - "surface": 28190000, - "canton": null, - "numero_insee": "25142" - } - }, - { - "pk": 23620, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAY", - "center": "POINT (867756.6278083359356970 2231875.5728055685758591)", - "surface": 6540000, - "canton": null, - "numero_insee": "25143" - } - }, - { - "pk": 33058, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHAZOT", - "center": "POINT (917393.9367005777312443 2267132.2066658344119787)", - "surface": 5290000, - "canton": null, - "numero_insee": "25145" - } - }, - { - "pk": 35024, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHEMAUDIN", - "center": "POINT (869180.5186413136543706 2252504.9353659669868648)", - "surface": 7370000, - "canton": null, - "numero_insee": "25147" - } - }, - { - "pk": 27771, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA CHENALOTTE", - "center": "POINT (930009.9734862665645778 2243321.5907935416325927)", - "surface": 4930000, - "canton": null, - "numero_insee": "25148" - } - }, - { - "pk": 21560, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHENECEY-BUILLON", - "center": "POINT (875859.5384852534625679 2243955.2991091581061482)", - "surface": 16760000, - "canton": null, - "numero_insee": "25149" - } - }, - { - "pk": 31593, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHEVIGNEY-SUR-L'OGNON", - "center": "POINT (865307.1062417001230642 2260678.3420693799853325)", - "surface": 4550000, - "canton": null, - "numero_insee": "25150" - } - }, - { - "pk": 31314, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHEVIGNEY-LES-VERCEL", - "center": "POINT (905445.6416062907082960 2248413.7685538064688444)", - "surface": 5360000, - "canton": null, - "numero_insee": "25151" - } - }, - { - "pk": 34795, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA CHEVILLOTTE", - "center": "POINT (889186.8752441419055685 2253678.0112898657098413)", - "surface": 7640000, - "canton": null, - "numero_insee": "25152" - } - }, - { - "pk": 13646, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHEVROZ", - "center": "POINT (876675.0815249688457698 2265479.9806632259860635)", - "surface": 2030000, - "canton": null, - "numero_insee": "25153" - } - }, - { - "pk": 23270, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CHOUZELOT", - "center": "POINT (870872.1189507402013987 2242010.8042150521650910)", - "surface": 6310000, - "canton": null, - "numero_insee": "25154" - } - }, - { - "pk": 16508, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CLERON", - "center": "POINT (883416.9219061732292175 2238015.3735800902359188)", - "surface": 14540000, - "canton": null, - "numero_insee": "25155" - } - }, - { - "pk": 37066, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CLERVAL", - "center": "POINT (914329.4817746357293800 2274311.5707653751596808)", - "surface": 11780000, - "canton": null, - "numero_insee": "25156" - } - }, - { - "pk": 15078, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA CLUSE-ET-MIJOUX", - "center": "POINT (909032.3396740778116509 2215517.0757335219532251)", - "surface": 22710000, - "canton": null, - "numero_insee": "25157" - } - }, - { - "pk": 6018, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COLOMBIER-FONTAINE", - "center": "POINT (928082.4798097596503794 2281035.7613148111850023)", - "surface": 7700000, - "canton": null, - "numero_insee": "25159" - } - }, - { - "pk": 17620, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES COMBES", - "center": "POINT (918964.6841827910393476 2235920.0131652220152318)", - "surface": 17830000, - "canton": null, - "numero_insee": "25160" - } - }, - { - "pk": 37058, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CONSOLATION-MAISONNETTES", - "center": "POINT (923262.5104112245608121 2248167.3203844232484698)", - "surface": 4250000, - "canton": null, - "numero_insee": "25161" - } - }, - { - "pk": 37619, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CORCELLES-FERRIERES", - "center": "POINT (862469.4796140393009409 2253147.7990713054314256)", - "surface": 2270000, - "canton": null, - "numero_insee": "25162" - } - }, - { - "pk": 30326, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CORCELLE-MIESLOT", - "center": "POINT (890351.5681790083181113 2269500.9533025822602212)", - "surface": 6450000, - "canton": null, - "numero_insee": "25163" - } - }, - { - "pk": 8378, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CORCONDRAY", - "center": "POINT (864270.8263018608558923 2253163.2864761059172451)", - "surface": 5360000, - "canton": null, - "numero_insee": "25164" - } - }, - { - "pk": 30218, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COTEBRUNE", - "center": "POINT (900660.9520081807859242 2257780.2289585955440998)", - "surface": 3270000, - "canton": null, - "numero_insee": "25166" - } - }, - { - "pk": 10144, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COURCELLES-LES-MONTBELIARD", - "center": "POINT (935039.0800076038576663 2286700.4356164908967912)", - "surface": 2380000, - "canton": null, - "numero_insee": "25170" - } - }, - { - "pk": 9674, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COURCELLES", - "center": "POINT (874794.8803823525086045 2239742.6442600577138364)", - "surface": 3610000, - "canton": null, - "numero_insee": "25171" - } - }, - { - "pk": 13510, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COURCHAPON", - "center": "POINT (858337.1714784975629300 2256515.0705815507099032)", - "surface": 5370000, - "canton": null, - "numero_insee": "25172" - } - }, - { - "pk": 3643, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COUR-SAINT-MAURICE", - "center": "POINT (930760.0355434776283801 2260742.4506817427463830)", - "surface": 4510000, - "canton": null, - "numero_insee": "25173" - } - }, - { - "pk": 11586, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COURTEFONTAINE", - "center": "POINT (945609.5854305769316852 2267976.7884433004073799)", - "surface": 7740000, - "canton": null, - "numero_insee": "25174" - } - }, - { - "pk": 8592, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COURTETAIN-ET-SALANS", - "center": "POINT (909356.2083098744042218 2259156.3356860182248056)", - "surface": 6940000, - "canton": null, - "numero_insee": "25175" - } - }, - { - "pk": 34694, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "COURVIERES", - "center": "POINT (886727.0533708963776007 2213923.5439446442760527)", - "surface": 10940000, - "canton": null, - "numero_insee": "25176" - } - }, - { - "pk": 11413, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CROSEY-LE-GRAND", - "center": "POINT (916475.1155654744943604 2269225.9752767696045339)", - "surface": 10200000, - "canton": null, - "numero_insee": "25177" - } - }, - { - "pk": 7948, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CROSEY-LE-PETIT", - "center": "POINT (913278.8066552609670907 2268497.7964985705912113)", - "surface": 9600000, - "canton": null, - "numero_insee": "25178" - } - }, - { - "pk": 3767, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE CROUZET", - "center": "POINT (889979.5131518085254356 2196536.5984335425309837)", - "surface": 3750000, - "canton": null, - "numero_insee": "25179" - } - }, - { - "pk": 13511, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CROUZET-MIGETTE", - "center": "POINT (879635.4424753666389734 2223870.9665899574756622)", - "surface": 5610000, - "canton": null, - "numero_insee": "25180" - } - }, - { - "pk": 32169, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CUBRIAL", - "center": "POINT (906220.8216057752724737 2286151.1099556786939502)", - "surface": 5800000, - "canton": null, - "numero_insee": "25181" - } - }, - { - "pk": 8854, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CUBRY", - "center": "POINT (907727.0910537206800655 2285563.6339346314780414)", - "surface": 5410000, - "canton": null, - "numero_insee": "25182" - } - }, - { - "pk": 29006, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CUSANCE", - "center": "POINT (909896.1718372094910592 2266166.7151151774451137)", - "surface": 4030000, - "canton": null, - "numero_insee": "25183" - } - }, - { - "pk": 28603, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CUSE-ET-ADRISANS", - "center": "POINT (905140.7554067685268819 2283739.8688772409223020)", - "surface": 5490000, - "canton": null, - "numero_insee": "25184" - } - }, - { - "pk": 24786, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CUSSEY-SUR-LISON", - "center": "POINT (874931.9905447737546638 2235440.2352146664634347)", - "surface": 5670000, - "canton": null, - "numero_insee": "25185" - } - }, - { - "pk": 34574, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "CUSSEY-SUR-L'OGNON", - "center": "POINT (872176.9231488215737045 2264840.7785866558551788)", - "surface": 7460000, - "canton": null, - "numero_insee": "25186" - } - }, - { - "pk": 32789, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DAMBELIN", - "center": "POINT (926857.6886051925830543 2272218.0692292852327228)", - "surface": 12410000, - "canton": null, - "numero_insee": "25187" - } - }, - { - "pk": 35657, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DAMBENOIS", - "center": "POINT (941193.3103150960523635 2292558.3371013794094324)", - "surface": 3260000, - "canton": null, - "numero_insee": "25188" - } - }, - { - "pk": 7640, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DAMMARTIN-LES-TEMPLIERS", - "center": "POINT (898120.2472613318823278 2262261.9959452082403004)", - "surface": 9990000, - "canton": null, - "numero_insee": "25189" - } - }, - { - "pk": 22335, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DAMPIERRE-LES-BOIS", - "center": "POINT (944729.6377676490228623 2288685.8577490490861237)", - "surface": 4780000, - "canton": null, - "numero_insee": "25190" - } - }, - { - "pk": 24927, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DAMPIERRE-SUR-LE-DOUBS", - "center": "POINT (931164.8257520188344643 2283364.2699960330501199)", - "surface": 3150000, - "canton": null, - "numero_insee": "25191" - } - }, - { - "pk": 21795, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DAMPJOUX", - "center": "POINT (933189.1640410113614053 2269170.3206357182934880)", - "surface": 2360000, - "canton": null, - "numero_insee": "25192" - } - }, - { - "pk": 23375, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DAMPRICHARD", - "center": "POINT (943289.2748050636146218 2258549.0034073814749718)", - "surface": 21740000, - "canton": null, - "numero_insee": "25193" - } - }, - { - "pk": 34572, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DANNEMARIE-SUR-CRETE", - "center": "POINT (867191.0708890643436462 2251086.6706419182009995)", - "surface": 4090000, - "canton": null, - "numero_insee": "25195" - } - }, - { - "pk": 23106, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DASLE", - "center": "POINT (943453.8330802529817447 2285772.4890025383792818)", - "surface": 5590000, - "canton": null, - "numero_insee": "25196" - } - }, - { - "pk": 25799, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DELUZ", - "center": "POINT (891513.6246594195254147 2262405.1945566562935710)", - "surface": 7920000, - "canton": null, - "numero_insee": "25197" - } - }, - { - "pk": 10260, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DESANDANS", - "center": "POINT (926193.7635873667895794 2291127.5012189685367048)", - "surface": 5470000, - "canton": null, - "numero_insee": "25198" - } - }, - { - "pk": 7449, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DESERVILLERS", - "center": "POINT (883996.6014164765365422 2228812.6543033090420067)", - "surface": 14020000, - "canton": null, - "numero_insee": "25199" - } - }, - { - "pk": 14331, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DEVECEY", - "center": "POINT (878083.0087831885321066 2264691.4506402947008610)", - "surface": 3750000, - "canton": null, - "numero_insee": "25200" - } - }, - { - "pk": 23125, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DOMMARTIN", - "center": "POINT (902371.0855144590605050 2221965.1233824715018272)", - "surface": 6460000, - "canton": null, - "numero_insee": "25201" - } - }, - { - "pk": 11476, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DOMPIERRE-LES-TILLEULS", - "center": "POINT (891507.5064106953795999 2216667.0350005468353629)", - "surface": 13050000, - "canton": null, - "numero_insee": "25202" - } - }, - { - "pk": 14216, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DOMPREL", - "center": "POINT (913718.1850897949188948 2252388.4105834970250726)", - "surface": 9480000, - "canton": null, - "numero_insee": "25203" - } - }, - { - "pk": 22657, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DOUBS", - "center": "POINT (906170.5700455748010427 2222398.2449854658916593)", - "surface": 8920000, - "canton": null, - "numero_insee": "25204" - } - }, - { - "pk": 11700, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DUNG", - "center": "POINT (931927.3103511529043317 2287774.3870557420887053)", - "surface": 3290000, - "canton": null, - "numero_insee": "25207" - } - }, - { - "pk": 11086, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "DURNES", - "center": "POINT (894898.0583404533099383 2241316.9758911579847336)", - "surface": 8460000, - "canton": null, - "numero_insee": "25208" - } - }, - { - "pk": 8895, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ECHAY", - "center": "POINT (874446.2501507505076006 2233734.6321853315457702)", - "surface": 5500000, - "canton": null, - "numero_insee": "25209" - } - }, - { - "pk": 9353, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ECHENANS", - "center": "POINT (927805.3029776819748804 2289940.4834090596996248)", - "surface": 1740000, - "canton": null, - "numero_insee": "25210" - } - }, - { - "pk": 6482, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ECHEVANNES", - "center": "POINT (896032.5454187181312591 2237423.5042188353836536)", - "surface": 5330000, - "canton": null, - "numero_insee": "25211" - } - }, - { - "pk": 12153, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ECOLE-VALENTIN", - "center": "POINT (876229.8436582735739648 2259070.9280094979330897)", - "surface": 3220000, - "canton": null, - "numero_insee": "25212" - } - }, - { - "pk": 9751, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES ECORCES", - "center": "POINT (937720.6081038068514317 2254397.4182041008025408)", - "surface": 9510000, - "canton": null, - "numero_insee": "25213" - } - }, - { - "pk": 14336, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ECOT", - "center": "POINT (931407.3942185562336817 2278462.4306565388105810)", - "surface": 10940000, - "canton": null, - "numero_insee": "25214" - } - }, - { - "pk": 28005, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "L'ECOUVOTTE", - "center": "POINT (895771.0776988933794200 2267746.2156064696609974)", - "surface": 2080000, - "canton": null, - "numero_insee": "25215" - } - }, - { - "pk": 30469, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ECURCEY", - "center": "POINT (937027.9441302556078881 2276609.5360194328241050)", - "surface": 7510000, - "canton": null, - "numero_insee": "25216" - } - }, - { - "pk": 31475, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "EMAGNY", - "center": "POINT (866997.1790189973544329 2261993.9375883918255568)", - "surface": 5240000, - "canton": null, - "numero_insee": "25217" - } - }, - { - "pk": 29280, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "EPENOUSE", - "center": "POINT (907400.5016569197177887 2253835.0988372005522251)", - "surface": 5670000, - "canton": null, - "numero_insee": "25218" - } - }, - { - "pk": 6458, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "EPENOY", - "center": "POINT (906876.0637420013081282 2245023.2954020183533430)", - "surface": 13280000, - "canton": null, - "numero_insee": "25219" - } - }, - { - "pk": 25173, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "EPEUGNEY", - "center": "POINT (879271.5854982980526984 2242883.7578300843015313)", - "surface": 13960000, - "canton": null, - "numero_insee": "25220" - } - }, - { - "pk": 29104, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ESNANS", - "center": "POINT (901183.6958960858173668 2266792.0887961937114596)", - "surface": 3490000, - "canton": null, - "numero_insee": "25221" - } - }, - { - "pk": 32252, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ETALANS", - "center": "POINT (897446.5221737053943798 2247544.0983709678985178)", - "surface": 23980000, - "canton": null, - "numero_insee": "25222" - } - }, - { - "pk": 16509, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ETERNOZ", - "center": "POINT (878478.5959635998588055 2230366.4863096703775227)", - "surface": 29210000, - "canton": null, - "numero_insee": "25223" - } - }, - { - "pk": 36145, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ETOUVANS", - "center": "POINT (930374.6327662941766903 2282156.4713526135310531)", - "surface": 6540000, - "canton": null, - "numero_insee": "25224" - } - }, - { - "pk": 27794, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ETRABONNE", - "center": "POINT (857361.3646115079754964 2253604.3056724225170910)", - "surface": 5550000, - "canton": null, - "numero_insee": "25225" - } - }, - { - "pk": 38032, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ETRAY", - "center": "POINT (903184.4927785997278988 2243690.3587575592100620)", - "surface": 6070000, - "canton": null, - "numero_insee": "25227" - } - }, - { - "pk": 10540, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ETUPES", - "center": "POINT (941529.9235415060538799 2288357.9057642938569188)", - "surface": 9940000, - "canton": null, - "numero_insee": "25228" - } - }, - { - "pk": 24997, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "EVILLERS", - "center": "POINT (895304.4134095730260015 2229010.1794179035350680)", - "surface": 13130000, - "canton": null, - "numero_insee": "25229" - } - }, - { - "pk": 35171, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "EXINCOURT", - "center": "POINT (938633.8906307757133618 2287632.2713600024580956)", - "surface": 3510000, - "canton": null, - "numero_insee": "25230" - } - }, - { - "pk": 35166, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "EYSSON", - "center": "POINT (910011.9532293393276632 2252756.7364906445145607)", - "surface": 5980000, - "canton": null, - "numero_insee": "25231" - } - }, - { - "pk": 14122, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FAIMBE", - "center": "POINT (922345.4545577164972201 2284789.2014940399676561)", - "surface": 2000000, - "canton": null, - "numero_insee": "25232" - } - }, - { - "pk": 19325, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FALLERANS", - "center": "POINT (899869.0478075833525509 2245163.0026229526847601)", - "surface": 10540000, - "canton": null, - "numero_insee": "25233" - } - }, - { - "pk": 9606, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FERRIERES-LE-LAC", - "center": "POINT (944360.6278471327386796 2261961.0705750384368002)", - "surface": 2480000, - "canton": null, - "numero_insee": "25234" - } - }, - { - "pk": 19920, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FERRIERES-LES-BOIS", - "center": "POINT (862385.7511098671238869 2251245.5158288488164544)", - "surface": 4170000, - "canton": null, - "numero_insee": "25235" - } - }, - { - "pk": 32112, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FERTANS", - "center": "POINT (883041.6124379192478955 2235109.7174247922375798)", - "surface": 8200000, - "canton": null, - "numero_insee": "25236" - } - }, - { - "pk": 8977, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FESCHES-LE-CHATEL", - "center": "POINT (943517.5021912574302405 2289976.3956308881752193)", - "surface": 3490000, - "canton": null, - "numero_insee": "25237" - } - }, - { - "pk": 13457, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FESSEVILLERS", - "center": "POINT (946449.1869357019895688 2263480.3884430187754333)", - "surface": 6140000, - "canton": null, - "numero_insee": "25238" - } - }, - { - "pk": 3721, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FEULE", - "center": "POINT (932077.0970491957850754 2270461.7551025622524321)", - "surface": 3810000, - "canton": null, - "numero_insee": "25239" - } - }, - { - "pk": 4694, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES FINS", - "center": "POINT (925736.9971007509157062 2239781.7230622451752424)", - "surface": 25610000, - "canton": null, - "numero_insee": "25240" - } - }, - { - "pk": 6186, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FLAGEY", - "center": "POINT (886651.2554602052550763 2234340.1397573035210371)", - "surface": 7640000, - "canton": null, - "numero_insee": "25241" - } - }, - { - "pk": 28378, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FLAGEY-RIGNEY", - "center": "POINT (892901.7168846736894920 2275527.7862307373434305)", - "surface": 2960000, - "canton": null, - "numero_insee": "25242" - } - }, - { - "pk": 17558, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FLANGEBOUCHE", - "center": "POINT (913591.4989916407503188 2243880.2766878679394722)", - "surface": 23020000, - "canton": null, - "numero_insee": "25243" - } - }, - { - "pk": 27916, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FLEUREY", - "center": "POINT (935626.4434321911539882 2265088.0715045905672014)", - "surface": 8100000, - "canton": null, - "numero_insee": "25244" - } - }, - { - "pk": 30981, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FONTAIN", - "center": "POINT (880409.5881768673425540 2250199.6002667052671313)", - "surface": 16320000, - "canton": null, - "numero_insee": "25245" - } - }, - { - "pk": 32834, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FONTAINE-LES-CLERVAL", - "center": "POINT (911602.4395695340353996 2277190.3571016173809767)", - "surface": 11440000, - "canton": null, - "numero_insee": "25246" - } - }, - { - "pk": 6438, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FONTENELLE-MONTBY", - "center": "POINT (907074.9619346188846976 2279953.5181212285533547)", - "surface": 6700000, - "canton": null, - "numero_insee": "25247" - } - }, - { - "pk": 11694, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES FONTENELLES", - "center": "POINT (934530.3326720646582544 2252968.6546220006421208)", - "surface": 8390000, - "canton": null, - "numero_insee": "25248" - } - }, - { - "pk": 32775, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FOUCHERANS", - "center": "POINT (888753.7654888813849539 2245867.8374961405061185)", - "surface": 11030000, - "canton": null, - "numero_insee": "25250" - } - }, - { - "pk": 11384, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FOURBANNE", - "center": "POINT (899880.1457761222263798 2267081.0870358799584210)", - "surface": 2040000, - "canton": null, - "numero_insee": "25251" - } - }, - { - "pk": 27194, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FOURCATIER-ET-MAISON-NEUVE", - "center": "POINT (903529.8590637077577412 2203659.4743333025835454)", - "surface": 2740000, - "canton": null, - "numero_insee": "25252" - } - }, - { - "pk": 33900, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FOURG", - "center": "POINT (862995.3911822899244726 2238540.2346167173236609)", - "surface": 12060000, - "canton": null, - "numero_insee": "25253" - } - }, - { - "pk": 32038, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES FOURGS", - "center": "POINT (910959.7380613016430289 2212531.1504739397205412)", - "surface": 27860000, - "canton": null, - "numero_insee": "25254" - } - }, - { - "pk": 28133, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FOURNET-BLANCHEROCHE", - "center": "POINT (940056.9859426706098020 2250414.3375500808469951)", - "surface": 13130000, - "canton": null, - "numero_insee": "25255" - } - }, - { - "pk": 35648, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FRAMBOUHANS", - "center": "POINT (936222.9480616359505802 2253984.1266103400848806)", - "surface": 10140000, - "canton": null, - "numero_insee": "25256" - } - }, - { - "pk": 11761, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FRANEY", - "center": "POINT (863038.9543959579896182 2256755.6496611996553838)", - "surface": 3380000, - "canton": null, - "numero_insee": "25257" - } - }, - { - "pk": 19435, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FRANOIS", - "center": "POINT (871574.5664476975798607 2253426.2719213096424937)", - "surface": 7290000, - "canton": null, - "numero_insee": "25258" - } - }, - { - "pk": 27114, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FROIDEVAUX", - "center": "POINT (929224.2971608897205442 2264732.4378838371485472)", - "surface": 4030000, - "canton": null, - "numero_insee": "25261" - } - }, - { - "pk": 11285, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FUANS", - "center": "POINT (922588.7969309336040169 2245058.9247028860263526)", - "surface": 11060000, - "canton": null, - "numero_insee": "25262" - } - }, - { - "pk": 19729, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GELLIN", - "center": "POINT (897855.5730376966530457 2200107.5144083900377154)", - "surface": 4800000, - "canton": null, - "numero_insee": "25263" - } - }, - { - "pk": 13001, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GEMONVAL", - "center": "POINT (920196.3600207502022386 2290275.0140749006532133)", - "surface": 3350000, - "canton": null, - "numero_insee": "25264" - } - }, - { - "pk": 26987, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GENEUILLE", - "center": "POINT (874584.7268047796096653 2264160.9300750629045069)", - "surface": 6440000, - "canton": null, - "numero_insee": "25265" - } - }, - { - "pk": 35897, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GENEY", - "center": "POINT (918545.2926096420269459 2284456.1161555163562298)", - "surface": 4360000, - "canton": null, - "numero_insee": "25266" - } - }, - { - "pk": 11327, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GENNES", - "center": "POINT (887059.4358685482293367 2256662.1442102487199008)", - "surface": 7230000, - "canton": null, - "numero_insee": "25267" - } - }, - { - "pk": 27109, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GERMEFONTAINE", - "center": "POINT (913891.5409699396695942 2255492.4613675666041672)", - "surface": 11130000, - "canton": null, - "numero_insee": "25268" - } - }, - { - "pk": 21215, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GERMONDANS", - "center": "POINT (891402.3447489193640649 2275314.6992555442266166)", - "surface": 3710000, - "canton": null, - "numero_insee": "25269" - } - }, - { - "pk": 21869, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GEVRESIN", - "center": "POINT (882329.7687216326594353 2224794.9261489114724100)", - "surface": 7020000, - "canton": null, - "numero_insee": "25270" - } - }, - { - "pk": 4856, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GILLEY", - "center": "POINT (915155.7337938831187785 2236587.6956725567579269)", - "surface": 17420000, - "canton": null, - "numero_insee": "25271" - } - }, - { - "pk": 22542, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GLAMONDANS", - "center": "POINT (898746.5877652984345332 2259264.9449610961601138)", - "surface": 9700000, - "canton": null, - "numero_insee": "25273" - } - }, - { - "pk": 33305, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GLAY", - "center": "POINT (943730.2509388861944899 2276967.8086181092076004)", - "surface": 6620000, - "canton": null, - "numero_insee": "25274" - } - }, - { - "pk": 18084, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GLERE", - "center": "POINT (950884.8848669084254652 2271325.1776689197868109)", - "surface": 16070000, - "canton": null, - "numero_insee": "25275" - } - }, - { - "pk": 16408, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GONDENANS-MONTBY", - "center": "POINT (910580.1048347487812862 2279683.5401463769376278)", - "surface": 11850000, - "canton": null, - "numero_insee": "25276" - } - }, - { - "pk": 25661, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GONDENANS-LES-MOULINS", - "center": "POINT (904857.8121052082860842 2281735.8248122995719314)", - "surface": 3920000, - "canton": null, - "numero_insee": "25277" - } - }, - { - "pk": 28225, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GONSANS", - "center": "POINT (899785.3149194053839892 2254870.2937758057378232)", - "surface": 17400000, - "canton": null, - "numero_insee": "25278" - } - }, - { - "pk": 31282, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GOUHELANS", - "center": "POINT (903067.7296784487552941 2280419.3332001850940287)", - "surface": 6190000, - "canton": null, - "numero_insee": "25279" - } - }, - { - "pk": 6560, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GOUMOIS", - "center": "POINT (948063.3805634013842791 2261993.1443537990562618)", - "surface": 5830000, - "canton": null, - "numero_insee": "25280" - } - }, - { - "pk": 33806, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GOUX-LES-DAMBELIN", - "center": "POINT (927430.4355343640781939 2275425.6109336703084409)", - "surface": 8930000, - "canton": null, - "numero_insee": "25281" - } - }, - { - "pk": 10065, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GOUX-LES-USIERS", - "center": "POINT (900920.7984996434533969 2227657.4331444110721350)", - "surface": 17710000, - "canton": null, - "numero_insee": "25282" - } - }, - { - "pk": 28880, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GOUX-SOUS-LANDET", - "center": "POINT (873015.9035292901098728 2237125.1672710990533233)", - "surface": 5460000, - "canton": null, - "numero_insee": "25283" - } - }, - { - "pk": 6230, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GRAND-CHARMONT", - "center": "POINT (937602.8466142225079238 2291126.1364798387512565)", - "surface": 4520000, - "canton": null, - "numero_insee": "25284" - } - }, - { - "pk": 18211, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GRAND'COMBE-CHATELEU", - "center": "POINT (920895.5374864742625505 2232533.8436175226233900)", - "surface": 21550000, - "canton": null, - "numero_insee": "25285" - } - }, - { - "pk": 31954, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GRAND'COMBE-DES-BOIS", - "center": "POINT (936785.6810302544618025 2246783.0380957727320492)", - "surface": 11980000, - "canton": null, - "numero_insee": "25286" - } - }, - { - "pk": 7898, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GRANDFONTAINE", - "center": "POINT (869899.1219733776524663 2250409.3872679788619280)", - "surface": 5710000, - "canton": null, - "numero_insee": "25287" - } - }, - { - "pk": 18212, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "FOURNETS-LUISANS", - "center": "POINT (920312.1365400040522218 2242136.8362582507543266)", - "surface": 27720000, - "canton": null, - "numero_insee": "25288" - } - }, - { - "pk": 12093, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GRANDFONTAINE-SUR-CREUSE", - "center": "POINT (912030.7364855506457388 2250772.5170977795496583)", - "surface": 5950000, - "canton": null, - "numero_insee": "25289" - } - }, - { - "pk": 20351, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA GRANGE", - "center": "POINT (927639.5543204151326790 2262817.1803689971566200)", - "surface": 6340000, - "canton": null, - "numero_insee": "25290" - } - }, - { - "pk": 24661, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GRANGES-NARBOZ", - "center": "POINT (903420.2095638320315629 2216369.4138107760809362)", - "surface": 16290000, - "canton": null, - "numero_insee": "25293" - } - }, - { - "pk": 36452, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES GRANGETTES", - "center": "POINT (903365.0277302518952638 2211164.4957319837994874)", - "surface": 5450000, - "canton": null, - "numero_insee": "25295" - } - }, - { - "pk": 29660, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES GRAS", - "center": "POINT (919522.1352336461422965 2229319.2826349912211299)", - "surface": 14910000, - "canton": null, - "numero_insee": "25296" - } - }, - { - "pk": 5308, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE GRATTERIS", - "center": "POINT (887523.5430021968204528 2249260.0506382235325873)", - "surface": 2960000, - "canton": null, - "numero_insee": "25297" - } - }, - { - "pk": 6134, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GROSBOIS", - "center": "POINT (899669.6388612533919513 2268280.2460489566437900)", - "surface": 2910000, - "canton": null, - "numero_insee": "25298" - } - }, - { - "pk": 10894, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GUILLON-LES-BAINS", - "center": "POINT (906601.5059873389545828 2265237.5396840530447662)", - "surface": 4760000, - "canton": null, - "numero_insee": "25299" - } - }, - { - "pk": 32009, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GUYANS-DURNES", - "center": "POINT (896276.6837213388644159 2243931.0249937619082630)", - "surface": 9120000, - "canton": null, - "numero_insee": "25300" - } - }, - { - "pk": 16493, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "GUYANS-VENNES", - "center": "POINT (921750.1357347863959149 2249455.3250833922065794)", - "surface": 19670000, - "canton": null, - "numero_insee": "25301" - } - }, - { - "pk": 33642, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HAUTEPIERRE-LE-CHATELET", - "center": "POINT (901552.2724357551196590 2235669.6032254202291369)", - "surface": 9660000, - "canton": null, - "numero_insee": "25302" - } - }, - { - "pk": 30690, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HAUTERIVE-LA-FRESSE", - "center": "POINT (913338.9774023529607803 2226763.7645895369350910)", - "surface": 7510000, - "canton": null, - "numero_insee": "25303" - } - }, - { - "pk": 37852, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HERIMONCOURT", - "center": "POINT (942898.4651742777787149 2280563.5061400621198118)", - "surface": 7270000, - "canton": null, - "numero_insee": "25304" - } - }, - { - "pk": 34430, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "L'HOPITAL-DU-GROSBOIS", - "center": "POINT (893527.1918220082297921 2249411.8760346616618335)", - "surface": 7710000, - "canton": null, - "numero_insee": "25305" - } - }, - { - "pk": 6669, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "L'HOPITAL-SAINT-LIEFFROY", - "center": "POINT (910822.5946880489354953 2274781.6870282115414739)", - "surface": 3470000, - "canton": null, - "numero_insee": "25306" - } - }, - { - "pk": 5784, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES HOPITAUX-NEUFS", - "center": "POINT (909412.0463505203370005 2206312.4716515457257628)", - "surface": 6550000, - "canton": null, - "numero_insee": "25307" - } - }, - { - "pk": 25725, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES HOPITAUX-VIEUX", - "center": "POINT (909294.6913602198474109 2208313.1776252058334649)", - "surface": 14300000, - "canton": null, - "numero_insee": "25308" - } - }, - { - "pk": 10318, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HOUTAUD", - "center": "POINT (901787.0239163246005774 2220058.4726819903589785)", - "surface": 7860000, - "canton": null, - "numero_insee": "25309" - } - }, - { - "pk": 27886, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HUANNE-MONTMARTIN", - "center": "POINT (901988.5158351534046233 2277908.0115578579716384)", - "surface": 3560000, - "canton": null, - "numero_insee": "25310" - } - }, - { - "pk": 35426, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HYEMONDANS", - "center": "POINT (924645.6882395873544738 2273399.9142146110534668)", - "surface": 6880000, - "canton": null, - "numero_insee": "25311" - } - }, - { - "pk": 9352, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HYEVRE-MAGNY", - "center": "POINT (909359.5130921254167333 2270365.4938018550164998)", - "surface": 3400000, - "canton": null, - "numero_insee": "25312" - } - }, - { - "pk": 31525, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "HYEVRE-PAROISSE", - "center": "POINT (909147.2696322766132653 2271764.7956630662083626)", - "surface": 8770000, - "canton": null, - "numero_insee": "25313" - } - }, - { - "pk": 36353, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "INDEVILLERS", - "center": "POINT (950019.7760661414358765 2267214.3448696034029126)", - "surface": 23060000, - "canton": null, - "numero_insee": "25314" - } - }, - { - "pk": 32141, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "L'ISLE-SUR-LE-DOUBS", - "center": "POINT (920602.9646846326068044 2277968.6806492502801120)", - "surface": 10750000, - "canton": null, - "numero_insee": "25315" - } - }, - { - "pk": 12359, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ISSANS", - "center": "POINT (930707.3956860175821930 2289965.5870826109312475)", - "surface": 2700000, - "canton": null, - "numero_insee": "25316" - } - }, - { - "pk": 7166, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "JALLERANGE", - "center": "POINT (855937.1022041194373742 2256294.2829982466064394)", - "surface": 5540000, - "canton": null, - "numero_insee": "25317" - } - }, - { - "pk": 30979, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "JOUGNE", - "center": "POINT (910432.7017216689419001 2204019.3011653786525130)", - "surface": 29000000, - "canton": null, - "numero_insee": "25318" - } - }, - { - "pk": 36675, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LABERGEMENT-DU-NAVOIS", - "center": "POINT (884820.4893920930335298 2226117.4747465676628053)", - "surface": 6590000, - "canton": null, - "numero_insee": "25319" - } - }, - { - "pk": 18621, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LABERGEMENT-SAINTE-MARIE", - "center": "POINT (900714.7068655511830002 2205136.4834126969799399)", - "surface": 22050000, - "canton": null, - "numero_insee": "25320" - } - }, - { - "pk": 16494, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-LE-LAC", - "center": "POINT (930346.5541393646271899 2239120.9976303465664387)", - "surface": 30300000, - "canton": null, - "numero_insee": "25321" - } - }, - { - "pk": 27522, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LAIRE", - "center": "POINT (930884.1640486849937588 2292669.2643365003168583)", - "surface": 3200000, - "canton": null, - "numero_insee": "25322" - } - }, - { - "pk": 35510, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LAISSEY", - "center": "POINT (894111.2392838515806943 2262927.9961270731873810)", - "surface": 2810000, - "canton": null, - "numero_insee": "25323" - } - }, - { - "pk": 7844, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LANANS", - "center": "POINT (910826.2175424555316567 2262771.9731711461208761)", - "surface": 10210000, - "canton": null, - "numero_insee": "25324" - } - }, - { - "pk": 13328, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LANDRESSE", - "center": "POINT (914057.9807786428136751 2259397.1009002095088363)", - "surface": 14330000, - "canton": null, - "numero_insee": "25325" - } - }, - { - "pk": 9350, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LANTENNE-VERTIERE", - "center": "POINT (860063.3833496430888772 2253627.5270679462701082)", - "surface": 9770000, - "canton": null, - "numero_insee": "25326" - } - }, - { - "pk": 5543, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LANTHENANS", - "center": "POINT (923535.3639119728468359 2274491.2044748235493898)", - "surface": 3340000, - "canton": null, - "numero_insee": "25327" - } - }, - { - "pk": 37854, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LARNOD", - "center": "POINT (875520.5517325378023088 2248456.1076105064712465)", - "surface": 4070000, - "canton": null, - "numero_insee": "25328" - } - }, - { - "pk": 17636, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LAVAL-LE-PRIEURE", - "center": "POINT (924538.4014456953154877 2251080.7495183306746185)", - "surface": 5390000, - "canton": null, - "numero_insee": "25329" - } - }, - { - "pk": 9275, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LAVANS-QUINGEY", - "center": "POINT (870106.8101000386523083 2237900.8065920616500080)", - "surface": 5860000, - "canton": null, - "numero_insee": "25330" - } - }, - { - "pk": 5326, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LAVANS-VUILLAFANS", - "center": "POINT (897624.2702719747321680 2238538.1484862025827169)", - "surface": 10020000, - "canton": null, - "numero_insee": "25331" - } - }, - { - "pk": 26770, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LAVERNAY", - "center": "POINT (863453.0193400966236368 2255157.8976881718263030)", - "surface": 7810000, - "canton": null, - "numero_insee": "25332" - } - }, - { - "pk": 30464, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LAVIRON", - "center": "POINT (919465.4624098306521773 2259043.4894745927304029)", - "surface": 20190000, - "canton": null, - "numero_insee": "25333" - } - }, - { - "pk": 25098, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LIEBVILLERS", - "center": "POINT (935897.2191256855148822 2268493.1852974304929376)", - "surface": 3100000, - "canton": null, - "numero_insee": "25335" - } - }, - { - "pk": 8019, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LIESLE", - "center": "POINT (863923.6078336739446968 2235345.5436679678969085)", - "surface": 16600000, - "canton": null, - "numero_insee": "25336" - } - }, - { - "pk": 28687, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LIZINE", - "center": "POINT (877640.0787658866029233 2234762.9582161526195705)", - "surface": 7300000, - "canton": null, - "numero_insee": "25338" - } - }, - { - "pk": 32249, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LODS", - "center": "POINT (897553.5364917296683416 2235134.6954003688879311)", - "surface": 6280000, - "canton": null, - "numero_insee": "25339" - } - }, - { - "pk": 16105, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LOMBARD", - "center": "POINT (866611.0346796605736017 2237070.0718036512844265)", - "surface": 5900000, - "canton": null, - "numero_insee": "25340" - } - }, - { - "pk": 26725, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LOMONT-SUR-CRETE", - "center": "POINT (909781.4090054567204788 2267867.1070380010642111)", - "surface": 9830000, - "canton": null, - "numero_insee": "25341" - } - }, - { - "pk": 34705, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LONGECHAUX", - "center": "POINT (910647.8297667737351730 2248658.8397221225313842)", - "surface": 5060000, - "canton": null, - "numero_insee": "25342" - } - }, - { - "pk": 22281, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LONGEMAISON", - "center": "POINT (912627.9022357498761266 2239568.3728548046201468)", - "surface": 9910000, - "canton": null, - "numero_insee": "25343" - } - }, - { - "pk": 7972, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LONGEVELLE-LES-RUSSEY", - "center": "POINT (926898.6694076469866559 2255905.1144832116551697)", - "surface": 2540000, - "canton": null, - "numero_insee": "25344" - } - }, - { - "pk": 26656, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LONGEVELLE-SUR-DOUBS", - "center": "POINT (924969.8381521303672343 2282209.8074912689626217)", - "surface": 8320000, - "canton": null, - "numero_insee": "25345" - } - }, - { - "pk": 6938, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LONGEVILLE", - "center": "POINT (895672.7951796902343631 2232716.4661739575676620)", - "surface": 9340000, - "canton": null, - "numero_insee": "25346" - } - }, - { - "pk": 33503, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA LONGEVILLE", - "center": "POINT (913790.1006948336726055 2232472.4625307102687657)", - "surface": 15580000, - "canton": null, - "numero_insee": "25347" - } - }, - { - "pk": 18716, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LONGEVILLES-MONT-D'OR", - "center": "POINT (905049.1734008837956935 2201570.7701206007041037)", - "surface": 13140000, - "canton": null, - "numero_insee": "25348" - } - }, - { - "pk": 35638, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LORAY", - "center": "POINT (915254.7516966552939266 2248298.2932692347094417)", - "surface": 14280000, - "canton": null, - "numero_insee": "25349" - } - }, - { - "pk": 26657, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LOUGRES", - "center": "POINT (927459.5402709015179425 2283632.4598614773713052)", - "surface": 5960000, - "canton": null, - "numero_insee": "25350" - } - }, - { - "pk": 14287, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE LUHIER", - "center": "POINT (928849.4229960129596293 2250217.2808472546748817)", - "surface": 5190000, - "canton": null, - "numero_insee": "25351" - } - }, - { - "pk": 12633, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LUXIOL", - "center": "POINT (902739.1115532866679132 2272109.8083664937876165)", - "surface": 6350000, - "canton": null, - "numero_insee": "25354" - } - }, - { - "pk": 3792, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MAGNY-CHATELARD", - "center": "POINT (902077.5375324112828821 2255990.9725781828165054)", - "surface": 4100000, - "canton": null, - "numero_insee": "25355" - } - }, - { - "pk": 26454, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MAICHE", - "center": "POINT (937585.8862837299238890 2258399.5440413542091846)", - "surface": 17430000, - "canton": null, - "numero_insee": "25356" - } - }, - { - "pk": 30463, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MAISONS-DU-BOIS-LIEVREMONT", - "center": "POINT (910026.0691157958935946 2227936.1737812976352870)", - "surface": 15840000, - "canton": null, - "numero_insee": "25357" - } - }, - { - "pk": 6717, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MALANS", - "center": "POINT (880451.6931117910426110 2233686.2426465530879796)", - "surface": 10450000, - "canton": null, - "numero_insee": "25359" - } - }, - { - "pk": 18034, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MALBRANS", - "center": "POINT (884577.3195665986277163 2242729.2828854341059923)", - "surface": 8650000, - "canton": null, - "numero_insee": "25360" - } - }, - { - "pk": 28875, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MALBUISSON", - "center": "POINT (903296.8940538200549781 2207460.7346277702599764)", - "surface": 6690000, - "canton": null, - "numero_insee": "25361" - } - }, - { - "pk": 27865, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MALPAS", - "center": "POINT (901268.5654422212392092 2210545.8973587597720325)", - "surface": 5710000, - "canton": null, - "numero_insee": "25362" - } - }, - { - "pk": 33785, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MAMIROLLE", - "center": "POINT (889707.9482648198027164 2251280.5247773956507444)", - "surface": 11510000, - "canton": null, - "numero_insee": "25364" - } - }, - { - "pk": 25280, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MANCENANS", - "center": "POINT (916863.9463252145797014 2282139.7451198380440474)", - "surface": 11970000, - "canton": null, - "numero_insee": "25365" - } - }, - { - "pk": 32393, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MANCENANS-LIZERNE", - "center": "POINT (935567.0729725409764796 2260383.7132777171209455)", - "surface": 6040000, - "canton": null, - "numero_insee": "25366" - } - }, - { - "pk": 35870, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MANDEURE", - "center": "POINT (937299.5782656262163073 2279914.5470508718863130)", - "surface": 15200000, - "canton": null, - "numero_insee": "25367" - } - }, - { - "pk": 36771, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MARCHAUX", - "center": "POINT (885987.1280830390751362 2264959.6879790285602212)", - "surface": 10020000, - "canton": null, - "numero_insee": "25368" - } - }, - { - "pk": 8705, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MARVELISE", - "center": "POINT (920408.6135773675050586 2288875.7336919396184385)", - "surface": 4190000, - "canton": null, - "numero_insee": "25369" - } - }, - { - "pk": 29204, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MATHAY", - "center": "POINT (934189.5223169487435371 2280788.3539236159995198)", - "surface": 14870000, - "canton": null, - "numero_insee": "25370" - } - }, - { - "pk": 27202, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MAZEROLLES-LE-SALIN", - "center": "POINT (866953.9112097271718085 2255388.1665743449702859)", - "surface": 4200000, - "canton": null, - "numero_insee": "25371" - } - }, - { - "pk": 33791, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MEDIERE", - "center": "POINT (921465.5620557912625372 2282379.6728266025893390)", - "surface": 5720000, - "canton": null, - "numero_insee": "25372" - } - }, - { - "pk": 32165, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE MEMONT", - "center": "POINT (929659.5458250145893544 2249123.3766558449715376)", - "surface": 3120000, - "canton": null, - "numero_insee": "25373" - } - }, - { - "pk": 28753, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MERCEY-LE-GRAND", - "center": "POINT (858581.1826490071834996 2251412.9787812023423612)", - "surface": 6600000, - "canton": null, - "numero_insee": "25374" - } - }, - { - "pk": 11475, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MEREY-SOUS-MONTROND", - "center": "POINT (882438.6700471995864064 2247014.4291547662578523)", - "surface": 10680000, - "canton": null, - "numero_insee": "25375" - } - }, - { - "pk": 19036, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MEREY-VIEILLEY", - "center": "POINT (881575.2552987467497587 2265922.4979462763294578)", - "surface": 3330000, - "canton": null, - "numero_insee": "25376" - } - }, - { - "pk": 14015, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MESANDANS", - "center": "POINT (904891.4968699382152408 2277832.9827664224430919)", - "surface": 5600000, - "canton": null, - "numero_insee": "25377" - } - }, - { - "pk": 14304, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MESLIERES", - "center": "POINT (943615.4435171613004059 2278668.1856339457444847)", - "surface": 2990000, - "canton": null, - "numero_insee": "25378" - } - }, - { - "pk": 10946, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MESMAY", - "center": "POINT (866832.7026255064411089 2234569.8888485748320818)", - "surface": 3040000, - "canton": null, - "numero_insee": "25379" - } - }, - { - "pk": 31185, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "METABIEF", - "center": "POINT (906630.5732257933123037 2203886.3998791077174246)", - "surface": 5810000, - "canton": null, - "numero_insee": "25380" - } - }, - { - "pk": 37386, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MISEREY-SALINES", - "center": "POINT (874915.9566917074844241 2260560.8451555306091905)", - "surface": 6170000, - "canton": null, - "numero_insee": "25381" - } - }, - { - "pk": 28454, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONCEY", - "center": "POINT (886849.8537346379598603 2269370.6951640546321869)", - "surface": 4940000, - "canton": null, - "numero_insee": "25382" - } - }, - { - "pk": 31188, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONCLEY", - "center": "POINT (869499.0325946409720927 2262015.4579239925369620)", - "surface": 7900000, - "canton": null, - "numero_insee": "25383" - } - }, - { - "pk": 29229, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONDON", - "center": "POINT (899672.1605494455434382 2279589.3934890399686992)", - "surface": 4560000, - "canton": null, - "numero_insee": "25384" - } - }, - { - "pk": 34248, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTAGNEY-SERVIGNEY", - "center": "POINT (898954.3853768603876233 2281584.8063727263361216)", - "surface": 6600000, - "canton": null, - "numero_insee": "25385" - } - }, - { - "pk": 11155, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTANCY", - "center": "POINT (954378.7889228938147426 2272356.2730575944297016)", - "surface": 8770000, - "canton": null, - "numero_insee": "25386" - } - }, - { - "pk": 36517, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTANDON", - "center": "POINT (939929.6307630856754258 2265125.3188206641934812)", - "surface": 12740000, - "canton": null, - "numero_insee": "25387" - } - }, - { - "pk": 24270, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTBELIARD", - "center": "POINT (935319.3768012044019997 2289004.6979413414373994)", - "surface": 14920000, - "canton": null, - "numero_insee": "25388" - } - }, - { - "pk": 35165, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTBELIARDOT", - "center": "POINT (928338.6615522860083729 2251413.8559760474599898)", - "surface": 3870000, - "canton": null, - "numero_insee": "25389" - } - }, - { - "pk": 32870, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTBENOIT", - "center": "POINT (913923.8830474845599383 2228570.3347806497476995)", - "surface": 5080000, - "canton": null, - "numero_insee": "25390" - } - }, - { - "pk": 24519, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONT-DE-LAVAL", - "center": "POINT (925756.6080619078129530 2249089.6268471628427505)", - "surface": 8450000, - "canton": null, - "numero_insee": "25391" - } - }, - { - "pk": 27329, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONT-DE-VOUGNEY", - "center": "POINT (933182.6022728385869414 2258361.4397435495629907)", - "surface": 7110000, - "canton": null, - "numero_insee": "25392" - } - }, - { - "pk": 5098, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTECHEROUX", - "center": "POINT (936880.6344065789598972 2270503.3221509382128716)", - "surface": 13260000, - "canton": null, - "numero_insee": "25393" - } - }, - { - "pk": 27972, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTENOIS", - "center": "POINT (925438.1847940491279587 2285916.8205449264496565)", - "surface": 8140000, - "canton": null, - "numero_insee": "25394" - } - }, - { - "pk": 8942, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTFAUCON", - "center": "POINT (883763.8698334823129699 2255833.0968654113821685)", - "surface": 7230000, - "canton": null, - "numero_insee": "25395" - } - }, - { - "pk": 10694, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTFERRAND-LE-CHATEAU", - "center": "POINT (871311.3658634666353464 2249120.4644414377398789)", - "surface": 7500000, - "canton": null, - "numero_insee": "25397" - } - }, - { - "pk": 9877, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTFLOVIN", - "center": "POINT (911611.7463485132902861 2229751.3809674018993974)", - "surface": 3350000, - "canton": null, - "numero_insee": "25398" - } - }, - { - "pk": 33163, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTFORT", - "center": "POINT (870633.0179933591280133 2234902.8271384970284998)", - "surface": 2770000, - "canton": null, - "numero_insee": "25399" - } - }, - { - "pk": 30553, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTGESOYE", - "center": "POINT (892615.2925060285488144 2239095.4632539041340351)", - "surface": 11250000, - "canton": null, - "numero_insee": "25400" - } - }, - { - "pk": 6670, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTIVERNAGE", - "center": "POINT (908707.3799904232146218 2264755.3110051513649523)", - "surface": 3290000, - "canton": null, - "numero_insee": "25401" - } - }, - { - "pk": 25651, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTJOIE-LE-CHATEAU", - "center": "POINT (944285.2224353002384305 2270667.5134821711108088)", - "surface": 5380000, - "canton": null, - "numero_insee": "25402" - } - }, - { - "pk": 15889, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTLEBON", - "center": "POINT (925490.4091088604182005 2233574.3980304859578609)", - "surface": 27330000, - "canton": null, - "numero_insee": "25403" - } - }, - { - "pk": 26407, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTMAHOUX", - "center": "POINT (881110.7481443728320301 2226886.2016778849065304)", - "surface": 6650000, - "canton": null, - "numero_insee": "25404" - } - }, - { - "pk": 11611, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTPERREUX", - "center": "POINT (905677.1884024220053107 2209983.4167133765295148)", - "surface": 11620000, - "canton": null, - "numero_insee": "25405" - } - }, - { - "pk": 33480, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTROND-LE-CHATEAU", - "center": "POINT (880954.7749555160989985 2244999.9935520067811012)", - "surface": 11090000, - "canton": null, - "numero_insee": "25406" - } - }, - { - "pk": 24510, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MONTUSSAINT", - "center": "POINT (898183.1521681989543140 2278175.4238561843521893)", - "surface": 3030000, - "canton": null, - "numero_insee": "25408" - } - }, - { - "pk": 23377, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MORTEAU", - "center": "POINT (922349.9805992222391069 2237950.9410408656112850)", - "surface": 14250000, - "canton": null, - "numero_insee": "25411" - } - }, - { - "pk": 4158, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MOUTHE", - "center": "POINT (895805.6790499361231923 2194084.6408231626264751)", - "surface": 38840000, - "canton": null, - "numero_insee": "25413" - } - }, - { - "pk": 7770, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE MOUTHEROT", - "center": "POINT (856850.6718726637773216 2254800.9026748244650662)", - "surface": 1250000, - "canton": null, - "numero_insee": "25414" - } - }, - { - "pk": 22357, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MOUTHIER-HAUTE-PIERRE", - "center": "POINT (899169.4305790555663407 2233447.2059934264980257)", - "surface": 12150000, - "canton": null, - "numero_insee": "25415" - } - }, - { - "pk": 33065, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "MYON", - "center": "POINT (873881.0998185002245009 2229626.3282262138091028)", - "surface": 15910000, - "canton": null, - "numero_insee": "25416" - } - }, - { - "pk": 13785, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NAISEY-LES-GRANGES", - "center": "POINT (895100.7832754957489669 2252628.0831635249778628)", - "surface": 25200000, - "canton": null, - "numero_insee": "25417" - } - }, - { - "pk": 34794, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NANCRAY", - "center": "POINT (890558.5972771027591079 2257092.6263756919652224)", - "surface": 16630000, - "canton": null, - "numero_insee": "25418" - } - }, - { - "pk": 26649, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NANS", - "center": "POINT (906848.0361718984786421 2283054.0454877633601427)", - "surface": 3250000, - "canton": null, - "numero_insee": "25419" - } - }, - { - "pk": 28686, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NANS-SOUS-SAINTE-ANNE", - "center": "POINT (878015.2562490607379004 2226058.8769971048459411)", - "surface": 8730000, - "canton": null, - "numero_insee": "25420" - } - }, - { - "pk": 5653, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NARBIEF", - "center": "POINT (930389.5028907866217196 2245726.8696341807954013)", - "surface": 3510000, - "canton": null, - "numero_insee": "25421" - } - }, - { - "pk": 7479, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NEUCHATEL-URTIERE", - "center": "POINT (931553.3531218472635373 2273159.4129873039200902)", - "surface": 6140000, - "canton": null, - "numero_insee": "25422" - } - }, - { - "pk": 8969, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NODS", - "center": "POINT (904519.1553233363665640 2239798.6274531478993595)", - "surface": 11830000, - "canton": null, - "numero_insee": "25424" - } - }, - { - "pk": 12814, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NOEL-CERNEUX", - "center": "POINT (927912.7089874938828871 2242803.0372235784307122)", - "surface": 6370000, - "canton": null, - "numero_insee": "25425" - } - }, - { - "pk": 34704, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NOIREFONTAINE", - "center": "POINT (934281.3161472476786003 2270180.5833199033513665)", - "surface": 3360000, - "canton": null, - "numero_insee": "25426" - } - }, - { - "pk": 24602, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NOIRONTE", - "center": "POINT (867226.5920710758073255 2258593.1336894049309194)", - "surface": 6680000, - "canton": null, - "numero_insee": "25427" - } - }, - { - "pk": 35656, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NOMMAY", - "center": "POINT (939297.1409204594092444 2291941.4412932675331831)", - "surface": 3220000, - "canton": null, - "numero_insee": "25428" - } - }, - { - "pk": 36674, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "NOVILLARS", - "center": "POINT (886720.4112828623037785 2261162.9071698742918670)", - "surface": 2050000, - "canton": null, - "numero_insee": "25429" - } - }, - { - "pk": 35471, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "OLLANS", - "center": "POINT (894797.0666354165878147 2276244.6922197272069752)", - "surface": 2230000, - "canton": null, - "numero_insee": "25430" - } - }, - { - "pk": 13872, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ONANS", - "center": "POINT (921329.1589452961925417 2286581.8554512537084520)", - "surface": 14160000, - "canton": null, - "numero_insee": "25431" - } - }, - { - "pk": 3212, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ORCHAMPS-VENNES", - "center": "POINT (916801.7016509550157934 2243007.2557434006594121)", - "surface": 24750000, - "canton": null, - "numero_insee": "25432" - } - }, - { - "pk": 11846, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ORGEANS-BLANCHEFONTAINE", - "center": "POINT (934059.0284692835994065 2261171.3193173799663782)", - "surface": 4760000, - "canton": null, - "numero_insee": "25433" - } - }, - { - "pk": 29431, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ORNANS", - "center": "POINT (889304.1612625850830227 2240067.7599636884406209)", - "surface": 32660000, - "canton": null, - "numero_insee": "25434" - } - }, - { - "pk": 14586, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ORSANS", - "center": "POINT (905964.0406271056272089 2257926.0700953723862767)", - "surface": 8390000, - "canton": null, - "numero_insee": "25435" - } - }, - { - "pk": 4977, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ORVE", - "center": "POINT (918884.6680297148413956 2268346.0634349179454148)", - "surface": 5540000, - "canton": null, - "numero_insee": "25436" - } - }, - { - "pk": 11760, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "OSSE", - "center": "POINT (893038.8938900670036674 2259616.0545094250701368)", - "surface": 8320000, - "canton": null, - "numero_insee": "25437" - } - }, - { - "pk": 34573, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "OSSELLE", - "center": "POINT (867346.2308803074993193 2244682.7161971121095121)", - "surface": 7720000, - "canton": null, - "numero_insee": "25438" - } - }, - { - "pk": 30552, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "OUGNEY-DOUVOT", - "center": "POINT (897594.8464167357888073 2265159.8292464492842555)", - "surface": 6600000, - "canton": null, - "numero_insee": "25439" - } - }, - { - "pk": 34571, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "OUHANS", - "center": "POINT (901401.3274990171194077 2229963.5160663002170622)", - "surface": 15810000, - "canton": null, - "numero_insee": "25440" - } - }, - { - "pk": 9072, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "OUVANS", - "center": "POINT (914042.4222898678854108 2261198.4403909738175571)", - "surface": 5160000, - "canton": null, - "numero_insee": "25441" - } - }, - { - "pk": 24992, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "OYE-ET-PALLET", - "center": "POINT (904946.4179575151065364 2213480.1068246373906732)", - "surface": 10530000, - "canton": null, - "numero_insee": "25442" - } - }, - { - "pk": 9400, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PALANTINE", - "center": "POINT (873495.6162106727715582 2239531.2967635551467538)", - "surface": 4380000, - "canton": null, - "numero_insee": "25443" - } - }, - { - "pk": 6716, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PALISE", - "center": "POINT (883444.7645955379121006 2269641.6030112626031041)", - "surface": 2130000, - "canton": null, - "numero_insee": "25444" - } - }, - { - "pk": 3050, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PAROY", - "center": "POINT (869455.3454104105476290 2232190.4351171478629112)", - "surface": 4420000, - "canton": null, - "numero_insee": "25445" - } - }, - { - "pk": 34480, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PASSAVANT", - "center": "POINT (906837.9339866107329726 2261036.1520639951340854)", - "surface": 14870000, - "canton": null, - "numero_insee": "25446" - } - }, - { - "pk": 22382, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PASSONFONTAINE", - "center": "POINT (910015.5581843177787960 2240746.8182916413061321)", - "surface": 19490000, - "canton": null, - "numero_insee": "25447" - } - }, - { - "pk": 15511, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PELOUSEY", - "center": "POINT (871323.6155358667019755 2259328.9506524768657982)", - "surface": 6200000, - "canton": null, - "numero_insee": "25448" - } - }, - { - "pk": 34027, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PESEUX", - "center": "POINT (928606.5422629946842790 2266728.7256110226735473)", - "surface": 6640000, - "canton": null, - "numero_insee": "25449" - } - }, - { - "pk": 7290, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PESSANS", - "center": "POINT (869419.1905438594985753 2236393.6394440573640168)", - "surface": 4400000, - "canton": null, - "numero_insee": "25450" - } - }, - { - "pk": 6258, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PETITE-CHAUX", - "center": "POINT (892606.5864044462796301 2193656.7190633798018098)", - "surface": 9780000, - "canton": null, - "numero_insee": "25451" - } - }, - { - "pk": 3219, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PIERREFONTAINE-LES-BLAMONT", - "center": "POINT (938759.5105198521632701 2273121.6945453975349665)", - "surface": 8620000, - "canton": null, - "numero_insee": "25452" - } - }, - { - "pk": 3957, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PIERREFONTAINE-LES-VARANS", - "center": "POINT (918898.7394782309420407 2255135.3883936814963818)", - "surface": 29090000, - "canton": null, - "numero_insee": "25453" - } - }, - { - "pk": 14177, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PIREY", - "center": "POINT (874542.3596659606555477 2257455.0936648026108742)", - "surface": 6800000, - "canton": null, - "numero_insee": "25454" - } - }, - { - "pk": 14176, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PLACEY", - "center": "POINT (865740.1063383899163455 2256878.9577020774595439)", - "surface": 2590000, - "canton": null, - "numero_insee": "25455" - } - }, - { - "pk": 31726, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PLAIMBOIS-DU-MIROIR", - "center": "POINT (926525.1946910305414349 2252799.3306841622106731)", - "surface": 11810000, - "canton": null, - "numero_insee": "25456" - } - }, - { - "pk": 25100, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PLAIMBOIS-VENNES", - "center": "POINT (918933.3280140424612910 2251132.3888970692642033)", - "surface": 10850000, - "canton": null, - "numero_insee": "25457" - } - }, - { - "pk": 32597, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES PLAINS-ET-GRANDS-ESSARTS", - "center": "POINT (944726.2553086851257831 2265967.5071019409224391)", - "surface": 10480000, - "canton": null, - "numero_insee": "25458" - } - }, - { - "pk": 26134, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA PLANEE", - "center": "POINT (900053.8169175274670124 2212136.7897717021405697)", - "surface": 13010000, - "canton": null, - "numero_insee": "25459" - } - }, - { - "pk": 11692, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "POINTVILLERS", - "center": "POINT (871426.7400854456936941 2235710.3245405089110136)", - "surface": 3790000, - "canton": null, - "numero_insee": "25460" - } - }, - { - "pk": 22877, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "POMPIERRE-SUR-DOUBS", - "center": "POINT (915901.2600785421673208 2277727.8914741817861795)", - "surface": 8160000, - "canton": null, - "numero_insee": "25461" - } - }, - { - "pk": 14559, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PONTARLIER", - "center": "POINT (908490.4882707117358223 2220316.4849479715339839)", - "surface": 41300000, - "canton": null, - "numero_insee": "25462" - } - }, - { - "pk": 26865, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PONT-DE-ROIDE", - "center": "POINT (933944.7252296875230968 2274381.0747974333353341)", - "surface": 13560000, - "canton": null, - "numero_insee": "25463" - } - }, - { - "pk": 25265, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES PONTETS", - "center": "POINT (892365.8905186320189387 2198358.7214459734968841)", - "surface": 6380000, - "canton": null, - "numero_insee": "25464" - } - }, - { - "pk": 29233, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PONT-LES-MOULINS", - "center": "POINT (904391.2416096315719187 2266219.2776308655738831)", - "surface": 4920000, - "canton": null, - "numero_insee": "25465" - } - }, - { - "pk": 5161, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "POUILLEY-FRANCAIS", - "center": "POINT (865489.7961479844525456 2251072.0398314674384892)", - "surface": 6160000, - "canton": null, - "numero_insee": "25466" - } - }, - { - "pk": 17275, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "POUILLEY-LES-VIGNES", - "center": "POINT (872341.5815431708469987 2257336.0726707708090544)", - "surface": 9390000, - "canton": null, - "numero_insee": "25467" - } - }, - { - "pk": 12416, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "POULIGNEY-LUSANS", - "center": "POINT (891877.6898374776355922 2266611.7538905236870050)", - "surface": 11620000, - "canton": null, - "numero_insee": "25468" - } - }, - { - "pk": 22933, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PRESENTEVILLERS", - "center": "POINT (930531.4920038506388664 2287161.8318250859156251)", - "surface": 3800000, - "canton": null, - "numero_insee": "25469" - } - }, - { - "pk": 29021, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA PRETIERE", - "center": "POINT (922081.5694043979747221 2280583.5526633653789759)", - "surface": 2720000, - "canton": null, - "numero_insee": "25470" - } - }, - { - "pk": 19465, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PROVENCHERE", - "center": "POINT (925533.6685111845145002 2263299.3794205244630575)", - "surface": 6960000, - "canton": null, - "numero_insee": "25471" - } - }, - { - "pk": 13187, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PUESSANS", - "center": "POINT (900585.7670076170470566 2278096.0695799202658236)", - "surface": 3540000, - "canton": null, - "numero_insee": "25472" - } - }, - { - "pk": 36228, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "PUGEY", - "center": "POINT (877128.6468724769074470 2247669.2880386789329350)", - "surface": 7390000, - "canton": null, - "numero_insee": "25473" - } - }, - { - "pk": 9932, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE PUY", - "center": "POINT (894068.0978453475981951 2267931.6938389530405402)", - "surface": 3550000, - "canton": null, - "numero_insee": "25474" - } - }, - { - "pk": 32903, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "QUINGEY", - "center": "POINT (868890.4035279373638332 2239691.8434506603516638)", - "surface": 8670000, - "canton": null, - "numero_insee": "25475" - } - }, - { - "pk": 11328, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RANCENAY", - "center": "POINT (873312.8689055547583848 2249137.6863010628148913)", - "surface": 3630000, - "canton": null, - "numero_insee": "25477" - } - }, - { - "pk": 22619, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RANDEVILLERS", - "center": "POINT (916613.2308288669446483 2264823.5881314431317151)", - "surface": 4320000, - "canton": null, - "numero_insee": "25478" - } - }, - { - "pk": 24337, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RANG", - "center": "POINT (918602.3682214232394472 2277851.3105672472156584)", - "surface": 10470000, - "canton": null, - "numero_insee": "25479" - } - }, - { - "pk": 28804, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RANTECHAUX", - "center": "POINT (906697.5060075698420405 2242519.6761204409413040)", - "surface": 5720000, - "canton": null, - "numero_insee": "25480" - } - }, - { - "pk": 10147, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RAYNANS", - "center": "POINT (929897.2957024758215994 2291059.4546331511810422)", - "surface": 4000000, - "canton": null, - "numero_insee": "25481" - } - }, - { - "pk": 9467, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RECOLOGNE", - "center": "POINT (864524.5832139044068754 2258569.8969465685077012)", - "surface": 6810000, - "canton": null, - "numero_insee": "25482" - } - }, - { - "pk": 29747, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RECULFOZ", - "center": "POINT (891275.3690654315287247 2197148.2844658116810024)", - "surface": 2500000, - "canton": null, - "numero_insee": "25483" - } - }, - { - "pk": 13180, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "REMONDANS-VAIVRE", - "center": "POINT (929948.7149771435651928 2273545.8556138607673347)", - "surface": 9120000, - "canton": null, - "numero_insee": "25485" - } - }, - { - "pk": 15057, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "REMORAY-BOUJEONS", - "center": "POINT (896231.8761897729709744 2202695.7601760639809072)", - "surface": 15150000, - "canton": null, - "numero_insee": "25486" - } - }, - { - "pk": 37770, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RENEDALE", - "center": "POINT (899287.6327181516680866 2231346.4620618596673012)", - "surface": 2840000, - "canton": null, - "numero_insee": "25487" - } - }, - { - "pk": 8894, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "REUGNEY", - "center": "POINT (889988.2710858059581369 2230365.5351999858394265)", - "surface": 8250000, - "canton": null, - "numero_insee": "25489" - } - }, - { - "pk": 16243, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RIGNEY", - "center": "POINT (890125.5447608423419297 2272501.4335068925283849)", - "surface": 9420000, - "canton": null, - "numero_insee": "25490" - } - }, - { - "pk": 31106, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RILLANS", - "center": "POINT (903907.1755615894217044 2275922.9572608447633684)", - "surface": 3450000, - "canton": null, - "numero_insee": "25492" - } - }, - { - "pk": 28538, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA RIVIERE-DRUGEON", - "center": "POINT (895420.8907750688958913 2215499.7443867777474225)", - "surface": 19030000, - "canton": null, - "numero_insee": "25493" - } - }, - { - "pk": 21838, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROCHEJEAN", - "center": "POINT (903165.8039390032645315 2199452.7066015759482980)", - "surface": 24360000, - "canton": null, - "numero_insee": "25494" - } - }, - { - "pk": 10066, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROCHE-LEZ-BEAUPRE", - "center": "POINT (885126.1200885453727096 2260348.5179367493838072)", - "surface": 5610000, - "canton": null, - "numero_insee": "25495" - } - }, - { - "pk": 38013, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROCHE-LES-CLERVAL", - "center": "POINT (912058.0439008600078523 2270789.1198794874362648)", - "surface": 5280000, - "canton": null, - "numero_insee": "25496" - } - }, - { - "pk": 22593, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROCHES-LES-BLAMONT", - "center": "POINT (940721.9888858217746019 2277642.3227825309149921)", - "surface": 5490000, - "canton": null, - "numero_insee": "25497" - } - }, - { - "pk": 31790, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROGNON", - "center": "POINT (899499.6399973408551887 2276385.3310328451916575)", - "surface": 4040000, - "canton": null, - "numero_insee": "25498" - } - }, - { - "pk": 26650, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROMAIN", - "center": "POINT (904778.4683314117137343 2279333.2135558561421931)", - "surface": 4940000, - "canton": null, - "numero_insee": "25499" - } - }, - { - "pk": 32688, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RONCHAUX", - "center": "POINT (870948.7437558537349105 2233104.0361889936029911)", - "surface": 5220000, - "canton": null, - "numero_insee": "25500" - } - }, - { - "pk": 15056, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RONDEFONTAINE", - "center": "POINT (893755.7844358547590673 2199671.8251178208738565)", - "surface": 2760000, - "canton": null, - "numero_insee": "25501" - } - }, - { - "pk": 22841, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROSET-FLUANS", - "center": "POINT (864940.1167991980910301 2245162.4390136874280870)", - "surface": 8200000, - "canton": null, - "numero_insee": "25502" - } - }, - { - "pk": 33059, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROSIERES-SUR-BARBECHE", - "center": "POINT (926609.3897904327604920 2266211.0470370622351766)", - "surface": 5320000, - "canton": null, - "numero_insee": "25503" - } - }, - { - "pk": 26645, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROSUREUX", - "center": "POINT (929008.0297557560261339 2255022.6147792241536081)", - "surface": 6150000, - "canton": null, - "numero_insee": "25504" - } - }, - { - "pk": 22436, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROUGEMONT", - "center": "POINT (902142.8961548811057582 2283213.5971372565254569)", - "surface": 18220000, - "canton": null, - "numero_insee": "25505" - } - }, - { - "pk": 23075, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROUGEMONTOT", - "center": "POINT (896226.5699858339503407 2272954.3566288338042796)", - "surface": 4200000, - "canton": null, - "numero_insee": "25506" - } - }, - { - "pk": 37769, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROUHE", - "center": "POINT (875413.4230656919535249 2237646.2165900031104684)", - "surface": 4110000, - "canton": null, - "numero_insee": "25507" - } - }, - { - "pk": 10947, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROULANS", - "center": "POINT (894595.2156052135396749 2264833.7177782910875976)", - "surface": 8330000, - "canton": null, - "numero_insee": "25508" - } - }, - { - "pk": 13647, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "ROUTELLE", - "center": "POINT (866625.9076766353100538 2246978.4255773709155619)", - "surface": 3070000, - "canton": null, - "numero_insee": "25509" - } - }, - { - "pk": 33113, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RUFFEY-LE-CHATEAU", - "center": "POINT (862115.0547159197740257 2259449.9160701562650502)", - "surface": 7260000, - "canton": null, - "numero_insee": "25510" - } - }, - { - "pk": 22970, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "RUREY", - "center": "POINT (877801.4644849741598591 2239268.1059450488537550)", - "surface": 14890000, - "canton": null, - "numero_insee": "25511" - } - }, - { - "pk": 7001, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE RUSSEY", - "center": "POINT (933265.7212271244497970 2248754.2393368948251009)", - "surface": 24230000, - "canton": null, - "numero_insee": "25512" - } - }, - { - "pk": 10320, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINTE-ANNE", - "center": "POINT (877539.8528997446410358 2223152.3349076760932803)", - "surface": 6810000, - "canton": null, - "numero_insee": "25513" - } - }, - { - "pk": 12966, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-ANTOINE", - "center": "POINT (905012.9071753944735974 2205774.0778665952384472)", - "surface": 4500000, - "canton": null, - "numero_insee": "25514" - } - }, - { - "pk": 30832, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINTE-COLOMBE", - "center": "POINT (900123.6851978707127273 2215640.3813374931924045)", - "surface": 10520000, - "canton": null, - "numero_insee": "25515" - } - }, - { - "pk": 31058, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-GEORGES-ARMONT", - "center": "POINT (917720.7340289440471679 2275641.9185836729593575)", - "surface": 4710000, - "canton": null, - "numero_insee": "25516" - } - }, - { - "pk": 12911, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-GORGON-MAIN", - "center": "POINT (903887.7029117716010660 2231786.4804270113818347)", - "surface": 7970000, - "canton": null, - "numero_insee": "25517" - } - }, - { - "pk": 35025, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-HILAIRE", - "center": "POINT (895279.3380773866083473 2266741.1626995797269046)", - "surface": 2590000, - "canton": null, - "numero_insee": "25518" - } - }, - { - "pk": 17058, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-HIPPOLYTE", - "center": "POINT (938216.2430353603558615 2266511.6284433896653354)", - "surface": 11150000, - "canton": null, - "numero_insee": "25519" - } - }, - { - "pk": 29659, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-JUAN", - "center": "POINT (902925.5366574036888778 2262103.2867358955554664)", - "surface": 12230000, - "canton": null, - "numero_insee": "25520" - } - }, - { - "pk": 29243, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-JULIEN-LES-MONTBELIARD", - "center": "POINT (928913.8872747865971178 2289049.3549344325438142)", - "surface": 3740000, - "canton": null, - "numero_insee": "25521" - } - }, - { - "pk": 31955, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-JULIEN-LES-RUSSEY", - "center": "POINT (932506.3216534509556368 2255553.2863960978575051)", - "surface": 9990000, - "canton": null, - "numero_insee": "25522" - } - }, - { - "pk": 5531, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINTE-MARIE", - "center": "POINT (928230.6927970409160480 2287041.8496384299360216)", - "surface": 7320000, - "canton": null, - "numero_insee": "25523" - } - }, - { - "pk": 32389, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-MAURICE-COLOMBIER", - "center": "POINT (925196.8077770628733560 2279109.2790046916343272)", - "surface": 13380000, - "canton": null, - "numero_insee": "25524" - } - }, - { - "pk": 29614, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-POINT-LAC", - "center": "POINT (901985.5149891017936170 2208650.4525183807127178)", - "surface": 4540000, - "canton": null, - "numero_insee": "25525" - } - }, - { - "pk": 30905, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINTE-SUZANNE", - "center": "POINT (933626.8082458118442446 2287989.2522130249999464)", - "surface": 1540000, - "canton": null, - "numero_insee": "25526" - } - }, - { - "pk": 30982, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAINT-VIT", - "center": "POINT (863909.2470944523811340 2248656.4699059184640646)", - "surface": 16460000, - "canton": null, - "numero_insee": "25527" - } - }, - { - "pk": 32559, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAMSON", - "center": "POINT (869037.8236574134789407 2234188.5194306550547481)", - "surface": 1950000, - "canton": null, - "numero_insee": "25528" - } - }, - { - "pk": 4866, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SANCEY-LE-GRAND", - "center": "POINT (919430.8711527512641624 2263046.4645294873043895)", - "surface": 23510000, - "canton": null, - "numero_insee": "25529" - } - }, - { - "pk": 34250, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SANCEY-LE-LONG", - "center": "POINT (922119.0351899442030117 2264671.0032629496417940)", - "surface": 6950000, - "canton": null, - "numero_insee": "25530" - } - }, - { - "pk": 14016, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SANTOCHE", - "center": "POINT (914214.7132491408847272 2276011.9518139134161174)", - "surface": 2140000, - "canton": null, - "numero_insee": "25531" - } - }, - { - "pk": 31906, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAONE", - "center": "POINT (885891.3026196653954685 2252848.9568974967114627)", - "surface": 20760000, - "canton": null, - "numero_insee": "25532" - } - }, - { - "pk": 34796, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SARAZ", - "center": "POINT (876599.5357902289833874 2227748.1242131707258523)", - "surface": 5880000, - "canton": null, - "numero_insee": "25533" - } - }, - { - "pk": 20891, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SARRAGEOIS", - "center": "POINT (897884.9121673018671572 2196704.8237168928608298)", - "surface": 13320000, - "canton": null, - "numero_insee": "25534" - } - }, - { - "pk": 24996, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAULES", - "center": "POINT (892979.3643045768840238 2243302.0986051214858890)", - "surface": 7690000, - "canton": null, - "numero_insee": "25535" - } - }, - { - "pk": 29398, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SAUVAGNEY", - "center": "POINT (870081.3973231227137148 2264122.1789410249330103)", - "surface": 3950000, - "canton": null, - "numero_insee": "25536" - } - }, - { - "pk": 15313, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SCEY-MAISIERES", - "center": "POINT (883890.5812833921518177 2241122.0369963296689093)", - "surface": 12700000, - "canton": null, - "numero_insee": "25537" - } - }, - { - "pk": 6758, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SECHIN", - "center": "POINT (898275.5116965649649501 2267467.5707988217473030)", - "surface": 1080000, - "canton": null, - "numero_insee": "25538" - } - }, - { - "pk": 24338, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SELONCOURT", - "center": "POINT (941177.2947128245141357 2282850.4494050359353423)", - "surface": 7880000, - "canton": null, - "numero_insee": "25539" - } - }, - { - "pk": 8209, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SEMONDANS", - "center": "POINT (927693.1134657587390393 2291340.6273562693968415)", - "surface": 2750000, - "canton": null, - "numero_insee": "25540" - } - }, - { - "pk": 37385, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SEPTFONTAINES", - "center": "POINT (892122.6582489005522802 2226580.7287550000473857)", - "surface": 18440000, - "canton": null, - "numero_insee": "25541" - } - }, - { - "pk": 13512, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SERRE-LES-SAPINS", - "center": "POINT (872261.3125112738925964 2255033.4955852772109210)", - "surface": 5250000, - "canton": null, - "numero_insee": "25542" - } - }, - { - "pk": 28801, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SERVIN", - "center": "POINT (912513.6511334755923599 2264387.8508039736188948)", - "surface": 10160000, - "canton": null, - "numero_insee": "25544" - } - }, - { - "pk": 6480, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SILLEY-AMANCEY", - "center": "POINT (888666.5792310254182667 2232756.1620120098814368)", - "surface": 5210000, - "canton": null, - "numero_insee": "25545" - } - }, - { - "pk": 20058, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SILLEY-BLEFOND", - "center": "POINT (901694.4262935483129695 2265595.5187880466692150)", - "surface": 4310000, - "canton": null, - "numero_insee": "25546" - } - }, - { - "pk": 7721, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SOCHAUX", - "center": "POINT (938220.6060709315352142 2289129.8907503457739949)", - "surface": 2190000, - "canton": null, - "numero_insee": "25547" - } - }, - { - "pk": 5518, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SOLEMONT", - "center": "POINT (929981.6090744202956557 2269743.0591715537011623)", - "surface": 8180000, - "canton": null, - "numero_insee": "25548" - } - }, - { - "pk": 7408, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SOMBACOUR", - "center": "POINT (897048.8654267626116052 2224020.9996857563965023)", - "surface": 19260000, - "canton": null, - "numero_insee": "25549" - } - }, - { - "pk": 6890, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA SOMMETTE", - "center": "POINT (916024.2331818577367812 2251907.9164584809914231)", - "surface": 7400000, - "canton": null, - "numero_insee": "25550" - } - }, - { - "pk": 29449, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SOULCE-CERNAY", - "center": "POINT (942302.8130008394364268 2268448.5566422366537154)", - "surface": 8630000, - "canton": null, - "numero_insee": "25551" - } - }, - { - "pk": 29017, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SOURANS", - "center": "POINT (924617.1355883239302784 2276702.3333537625148892)", - "surface": 4170000, - "canton": null, - "numero_insee": "25552" - } - }, - { - "pk": 24528, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SOYE", - "center": "POINT (914073.1476857804227620 2280814.5918703218922019)", - "surface": 14050000, - "canton": null, - "numero_insee": "25553" - } - }, - { - "pk": 26456, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "SURMONT", - "center": "POINT (923249.2631066301837564 2261277.9946017567999661)", - "surface": 7340000, - "canton": null, - "numero_insee": "25554" - } - }, - { - "pk": 27927, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TAILLECOURT", - "center": "POINT (940141.0416920150164515 2286944.7608455251902342)", - "surface": 1860000, - "canton": null, - "numero_insee": "25555" - } - }, - { - "pk": 7482, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TALLANS", - "center": "POINT (898007.1749046819750220 2275371.6511114574968815)", - "surface": 4050000, - "canton": null, - "numero_insee": "25556" - } - }, - { - "pk": 13927, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TALLENAY", - "center": "POINT (878400.4627786281052977 2262692.5545794093050063)", - "surface": 2350000, - "canton": null, - "numero_insee": "25557" - } - }, - { - "pk": 29223, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TARCENAY", - "center": "POINT (885536.6952760133426636 2247541.5275408849120140)", - "surface": 13040000, - "canton": null, - "numero_insee": "25558" - } - }, - { - "pk": 24123, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "THIEBOUHANS", - "center": "POINT (940756.2170568866422400 2262130.0226006596349180)", - "surface": 5810000, - "canton": null, - "numero_insee": "25559" - } - }, - { - "pk": 35260, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "THISE", - "center": "POINT (883221.2601762149715796 2260732.4363039238378406)", - "surface": 8930000, - "canton": null, - "numero_insee": "25560" - } - }, - { - "pk": 35994, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "THORAISE", - "center": "POINT (870727.2733433926478028 2247213.8692261250689626)", - "surface": 3930000, - "canton": null, - "numero_insee": "25561" - } - }, - { - "pk": 9110, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "THULAY", - "center": "POINT (941004.0114961229264736 2279746.4570319047197700)", - "surface": 2240000, - "canton": null, - "numero_insee": "25562" - } - }, - { - "pk": 3224, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "THUREY-LE-MONT", - "center": "POINT (886736.8460214911028743 2270870.9364070412702858)", - "surface": 4850000, - "canton": null, - "numero_insee": "25563" - } - }, - { - "pk": 30768, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TORPES", - "center": "POINT (868523.8952921936288476 2247395.0804419810883701)", - "surface": 5610000, - "canton": null, - "numero_insee": "25564" - } - }, - { - "pk": 6130, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TOUILLON-ET-LOUTELET", - "center": "POINT (906402.7807433591224253 2207087.1885547800920904)", - "surface": 4730000, - "canton": null, - "numero_insee": "25565" - } - }, - { - "pk": 32152, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA TOUR-DE-SCAY", - "center": "POINT (893433.1435838676989079 2271929.4610937656834722)", - "surface": 8910000, - "canton": null, - "numero_insee": "25566" - } - }, - { - "pk": 30953, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TOURNANS", - "center": "POINT (899918.9253244646824896 2274187.1736786672845483)", - "surface": 9180000, - "canton": null, - "numero_insee": "25567" - } - }, - { - "pk": 32251, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TREPOT", - "center": "POINT (890436.0734142831061035 2248084.1568628875538707)", - "surface": 14720000, - "canton": null, - "numero_insee": "25569" - } - }, - { - "pk": 22447, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TRESSANDANS", - "center": "POINT (901224.9739508788334206 2285207.2762048579752445)", - "surface": 2350000, - "canton": null, - "numero_insee": "25570" - } - }, - { - "pk": 12361, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TREVILLERS", - "center": "POINT (943044.9282821961678565 2263651.0674416408874094)", - "surface": 10800000, - "canton": null, - "numero_insee": "25571" - } - }, - { - "pk": 16513, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "TROUVANS", - "center": "POINT (902500.1066197588806972 2276611.3792619169689715)", - "surface": 2760000, - "canton": null, - "numero_insee": "25572" - } - }, - { - "pk": 11695, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "URTIERE", - "center": "POINT (946872.0237305366899818 2260881.9219948835670948)", - "surface": 2160000, - "canton": null, - "numero_insee": "25573" - } - }, - { - "pk": 35427, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "UZELLE", - "center": "POINT (909358.4925230393419042 2282074.9181141923181713)", - "surface": 11700000, - "canton": null, - "numero_insee": "25574" - } - }, - { - "pk": 32337, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAIRE-ARCIER", - "center": "POINT (888533.8213701117783785 2259777.3883177214302123)", - "surface": 12710000, - "canton": null, - "numero_insee": "25575" - } - }, - { - "pk": 14211, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAIRE-LE-PETIT", - "center": "POINT (888220.6628630030900240 2261275.9159656153060496)", - "surface": 1270000, - "canton": null, - "numero_insee": "25576" - } - }, - { - "pk": 16988, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VALDAHON", - "center": "POINT (902747.0622089607641101 2247990.1514192316681147)", - "surface": 25380000, - "canton": null, - "numero_insee": "25578" - } - }, - { - "pk": 33290, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAL-DE-ROULANS", - "center": "POINT (896755.4176044526975602 2269656.2461139303632081)", - "surface": 2960000, - "canton": null, - "numero_insee": "25579" - } - }, - { - "pk": 31527, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VALENTIGNEY", - "center": "POINT (938169.0478995676385239 2283524.9656023201532662)", - "surface": 9740000, - "canton": null, - "numero_insee": "25580" - } - }, - { - "pk": 6677, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VALLEROY", - "center": "POINT (885826.7002017952036113 2271963.9843659331090748)", - "surface": 3030000, - "canton": null, - "numero_insee": "25582" - } - }, - { - "pk": 20397, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VALONNE", - "center": "POINT (927083.7978567733662203 2269217.5904666422866285)", - "surface": 8340000, - "canton": null, - "numero_insee": "25583" - } - }, - { - "pk": 26453, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VALOREILLE", - "center": "POINT (932932.2349149605724961 2264164.0236717276275158)", - "surface": 7580000, - "canton": null, - "numero_insee": "25584" - } - }, - { - "pk": 9473, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VANCLANS", - "center": "POINT (906312.7495456335600466 2240714.8561868080869317)", - "surface": 9580000, - "canton": null, - "numero_insee": "25585" - } - }, - { - "pk": 37617, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAUCHAMPS", - "center": "POINT (895842.7030762813519686 2259440.0651386780664325)", - "surface": 2880000, - "canton": null, - "numero_insee": "25587" - } - }, - { - "pk": 9349, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAUCLUSE", - "center": "POINT (929374.5732795242220163 2258928.9911569012328982)", - "surface": 5080000, - "canton": null, - "numero_insee": "25588" - } - }, - { - "pk": 13562, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAUCLUSOTTE", - "center": "POINT (932447.4483537846244872 2262358.3580814134329557)", - "surface": 7710000, - "canton": null, - "numero_insee": "25589" - } - }, - { - "pk": 33534, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAUFREY", - "center": "POINT (946991.5476507165003568 2270190.5496158148162067)", - "surface": 9350000, - "canton": null, - "numero_insee": "25591" - } - }, - { - "pk": 34542, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAUX-ET-CHANTEGRUE", - "center": "POINT (897393.9913066164590418 2207209.6528715011663735)", - "surface": 13920000, - "canton": null, - "numero_insee": "25592" - } - }, - { - "pk": 27323, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VAUX-LES-PRES", - "center": "POINT (868462.7783179003745317 2254500.4056396582163870)", - "surface": 5190000, - "canton": null, - "numero_insee": "25593" - } - }, - { - "pk": 14063, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VELESMES-ESSARTS", - "center": "POINT (867607.7247265266487375 2249188.6873140083625913)", - "surface": 2860000, - "canton": null, - "numero_insee": "25594" - } - }, - { - "pk": 10045, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VELLEROT-LES-BELVOIR", - "center": "POINT (921175.9863285946194082 2269566.8402377567254007)", - "surface": 6020000, - "canton": null, - "numero_insee": "25595" - } - }, - { - "pk": 25848, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VELLEROT-LES-VERCEL", - "center": "POINT (910670.1380416937172413 2257666.4499857313930988)", - "surface": 4590000, - "canton": null, - "numero_insee": "25596" - } - }, - { - "pk": 15258, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VELLEVANS", - "center": "POINT (914813.6264493020717055 2264607.8789009302854538)", - "surface": 13710000, - "canton": null, - "numero_insee": "25597" - } - }, - { - "pk": 25174, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VENISE", - "center": "POINT (885160.6721818840596825 2267955.0060773333534598)", - "surface": 6090000, - "canton": null, - "numero_insee": "25598" - } - }, - { - "pk": 12282, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VENNANS", - "center": "POINT (894283.7766286265105009 2266132.0905763097107410)", - "surface": 1380000, - "canton": null, - "numero_insee": "25599" - } - }, - { - "pk": 10603, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VENNES", - "center": "POINT (918558.1029732464812696 2248226.7477742680348456)", - "surface": 7200000, - "canton": null, - "numero_insee": "25600" - } - }, - { - "pk": 21593, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VERCEL-VILLEDIEU-LE-CAMP", - "center": "POINT (906322.9987044559093192 2251123.5723271509632468)", - "surface": 30310000, - "canton": null, - "numero_insee": "25601" - } - }, - { - "pk": 14683, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VERGRANNE", - "center": "POINT (905812.0208878582343459 2275539.0747603685595095)", - "surface": 5290000, - "canton": null, - "numero_insee": "25602" - } - }, - { - "pk": 12917, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VERNE", - "center": "POINT (902921.9876881085801870 2274113.0031324392184615)", - "surface": 7740000, - "canton": null, - "numero_insee": "25604" - } - }, - { - "pk": 33057, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VERNOIS-LES-BELVOIR", - "center": "POINT (925103.0884121372364461 2266798.5114329969510436)", - "surface": 4700000, - "canton": null, - "numero_insee": "25607" - } - }, - { - "pk": 26653, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LE VERNOY", - "center": "POINT (925966.7921127132140100 2294228.0005721468478441)", - "surface": 3310000, - "canton": null, - "numero_insee": "25608" - } - }, - { - "pk": 27193, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VERRIERES-DE-JOUX", - "center": "POINT (913116.5207878926303238 2217754.2103406158275902)", - "surface": 10110000, - "canton": null, - "numero_insee": "25609" - } - }, - { - "pk": 35745, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VERRIERES-DU-GROSBOIS", - "center": "POINT (898817.3669506711885333 2251058.8142405543476343)", - "surface": 7920000, - "canton": null, - "numero_insee": "25610" - } - }, - { - "pk": 35351, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LA VEZE", - "center": "POINT (883006.3690946928691119 2250822.4581418354064226)", - "surface": 5280000, - "canton": null, - "numero_insee": "25611" - } - }, - { - "pk": 35743, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VIEILLEY", - "center": "POINT (883072.9155686332378536 2266335.7221674583852291)", - "surface": 9600000, - "canton": null, - "numero_insee": "25612" - } - }, - { - "pk": 31325, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VIETHOREY", - "center": "POINT (908101.6093240883201361 2276959.9677545083686709)", - "surface": 7960000, - "canton": null, - "numero_insee": "25613" - } - }, - { - "pk": 36853, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VIEUX-CHARMONT", - "center": "POINT (939212.6644886481808499 2290139.2767794802784920)", - "surface": 2540000, - "canton": null, - "numero_insee": "25614" - } - }, - { - "pk": 27168, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLARS-LES-BLAMONT", - "center": "POINT (942263.8165886328788474 2272951.8735281405970454)", - "surface": 6920000, - "canton": null, - "numero_insee": "25615" - } - }, - { - "pk": 36906, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLARS-SAINT-GEORGES", - "center": "POINT (864367.1989568665158004 2241954.8580415416508913)", - "surface": 5170000, - "canton": null, - "numero_insee": "25616" - } - }, - { - "pk": 26878, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLARS-SOUS-DAMPJOUX", - "center": "POINT (933266.7247677955310792 2271773.1025440138764679)", - "surface": 3100000, - "canton": null, - "numero_insee": "25617" - } - }, - { - "pk": 9857, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLARS-SOUS-ECOT", - "center": "POINT (928909.8955833960790187 2277940.4234403590671718)", - "surface": 11470000, - "canton": null, - "numero_insee": "25618" - } - }, - { - "pk": 14828, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "LES VILLEDIEU", - "center": "POINT (900276.4574645939283073 2197926.4865397103130817)", - "surface": 14950000, - "canton": null, - "numero_insee": "25619" - } - }, - { - "pk": 34982, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLE-DU-PONT", - "center": "POINT (916209.2269547230098397 2230491.6736965840682387)", - "surface": 15110000, - "canton": null, - "numero_insee": "25620" - } - }, - { - "pk": 33164, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLENEUVE-D'AMONT", - "center": "POINT (881952.7281248006038368 2222089.3955456134863198)", - "surface": 14310000, - "canton": null, - "numero_insee": "25621" - } - }, - { - "pk": 20684, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-BUZON", - "center": "POINT (866068.7305692303925753 2253579.0756256086751819)", - "surface": 3180000, - "canton": null, - "numero_insee": "25622" - } - }, - { - "pk": 11014, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-CHIEF", - "center": "POINT (910391.5158050786703825 2255161.9901245003566146)", - "surface": 7970000, - "canton": null, - "numero_insee": "25623" - } - }, - { - "pk": 29746, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-GRELOT", - "center": "POINT (894353.6504977639997378 2269635.5351865729317069)", - "surface": 7100000, - "canton": null, - "numero_insee": "25624" - } - }, - { - "pk": 8326, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-LA-COMBE", - "center": "POINT (912976.1754075414501131 2257185.9529276140965521)", - "surface": 5800000, - "canton": null, - "numero_insee": "25625" - } - }, - { - "pk": 34068, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-SAINT-MARTIN", - "center": "POINT (907176.8983996536117047 2268144.8656452805735171)", - "surface": 8900000, - "canton": null, - "numero_insee": "25626" - } - }, - { - "pk": 37621, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-SOUS-CHALAMONT", - "center": "POINT (882489.3098769497592002 2217890.4522689678706229)", - "surface": 22560000, - "canton": null, - "numero_insee": "25627" - } - }, - { - "pk": 26335, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VILLERS-SOUS-MONTROND", - "center": "POINT (884456.5554321310482919 2245130.2350516426376998)", - "surface": 6430000, - "canton": null, - "numero_insee": "25628" - } - }, - { - "pk": 7480, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VOILLANS", - "center": "POINT (908030.0462958051357418 2273656.6871745432727039)", - "surface": 10160000, - "canton": null, - "numero_insee": "25629" - } - }, - { - "pk": 27203, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VOIRES", - "center": "POINT (897405.1320315418997779 2240738.0936215552501380)", - "surface": 4870000, - "canton": null, - "numero_insee": "25630" - } - }, - { - "pk": 6823, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VORGES-LES-PINS", - "center": "POINT (872343.9776764586567879 2245426.2889784346334636)", - "surface": 4790000, - "canton": null, - "numero_insee": "25631" - } - }, - { - "pk": 29022, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VOUJEAUCOURT", - "center": "POINT (934959.7932824890594929 2284297.8287795572541654)", - "surface": 9480000, - "canton": null, - "numero_insee": "25632" - } - }, - { - "pk": 27596, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VUILLAFANS", - "center": "POINT (894939.4733059827703983 2236513.3274165792390704)", - "surface": 6250000, - "canton": null, - "numero_insee": "25633" - } - }, - { - "pk": 8850, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VUILLECIN", - "center": "POINT (904049.0866479075048119 2224681.8866745186969638)", - "surface": 14200000, - "canton": null, - "numero_insee": "25634" - } - }, - { - "pk": 13866, - "model": "ishtar_common.town", - "fields": { - "departement": 26, - "name": "VYT-LES-BELVOIR", - "center": "POINT (923877.1116937147453427 2269690.2702925796620548)", - "surface": 7510000, - "canton": null, - "numero_insee": "25635" - } - }, - { - "pk": 21721, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AIX-EN-DIOIS", - "center": "POINT (841465.5167254675179720 1971506.2276487462222576)", - "surface": 16430000, - "canton": null, - "numero_insee": "26001" - } - }, - { - "pk": 20226, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ALBON", - "center": "POINT (798325.3024880618322641 2029596.1752764668781310)", - "surface": 26080000, - "canton": null, - "numero_insee": "26002" - } - }, - { - "pk": 28755, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ALEYRAC", - "center": "POINT (807534.6666302721714601 1947591.1799328885972500)", - "surface": 6650000, - "canton": null, - "numero_insee": "26003" - } - }, - { - "pk": 31545, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ALIXAN", - "center": "POINT (811378.4098493643105030 2001479.5172826142515987)", - "surface": 28120000, - "canton": null, - "numero_insee": "26004" - } - }, - { - "pk": 38039, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ALLAN", - "center": "POINT (795830.0633539026603103 1946690.3511276352219284)", - "surface": 29160000, - "canton": null, - "numero_insee": "26005" - } - }, - { - "pk": 35460, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ALLEX", - "center": "POINT (804177.6064965059049428 1977293.3789803253021091)", - "surface": 20350000, - "canton": null, - "numero_insee": "26006" - } - }, - { - "pk": 9428, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AMBONIL", - "center": "POINT (803653.1802819654112682 1980091.7760170956607908)", - "surface": 1160000, - "canton": null, - "numero_insee": "26007" - } - }, - { - "pk": 22377, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ANCONE", - "center": "POINT (789343.5076061512809247 1956044.8313723762985319)", - "surface": 1680000, - "canton": null, - "numero_insee": "26008" - } - }, - { - "pk": 17659, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ANNEYRON", - "center": "POINT (800495.6790742563316599 2033318.3741546545643359)", - "surface": 36760000, - "canton": null, - "numero_insee": "26010" - } - }, - { - "pk": 20742, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AOUSTE-SUR-SYE", - "center": "POINT (815643.2992944889701903 1970984.8011508262716234)", - "surface": 17910000, - "canton": null, - "numero_insee": "26011" - } - }, - { - "pk": 16188, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ARNAYON", - "center": "POINT (836661.4129075806122273 1948040.6469852309674025)", - "surface": 19680000, - "canton": null, - "numero_insee": "26012" - } - }, - { - "pk": 24153, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ARPAVON", - "center": "POINT (834176.3440610268153250 1934304.8807972620707005)", - "surface": 13480000, - "canton": null, - "numero_insee": "26013" - } - }, - { - "pk": 28145, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ARTHEMONAY", - "center": "POINT (814229.6869495080318302 2019221.6856125839985907)", - "surface": 5720000, - "canton": null, - "numero_insee": "26014" - } - }, - { - "pk": 8101, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AUBENASSON", - "center": "POINT (822675.7254265886731446 1968041.8652228298597038)", - "surface": 6810000, - "canton": null, - "numero_insee": "26015" - } - }, - { - "pk": 15673, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AUBRES", - "center": "POINT (824551.4365604040212929 1936024.3753138266038150)", - "surface": 20290000, - "canton": null, - "numero_insee": "26016" - } - }, - { - "pk": 35563, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AULAN", - "center": "POINT (846619.8287905883044004 1919095.1966143243480474)", - "surface": 10720000, - "canton": null, - "numero_insee": "26018" - } - }, - { - "pk": 19786, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AUREL", - "center": "POINT (834770.2277809800580144 1970147.5031884342897683)", - "surface": 26150000, - "canton": null, - "numero_insee": "26019" - } - }, - { - "pk": 20201, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA REPARA-AURIPLES", - "center": "POINT (810782.2377197082387283 1965837.9484738674946129)", - "surface": 15210000, - "canton": null, - "numero_insee": "26020" - } - }, - { - "pk": 29155, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "AUTICHAMP", - "center": "POINT (809060.9175922272261232 1968125.6172746801748872)", - "surface": 6320000, - "canton": null, - "numero_insee": "26021" - } - }, - { - "pk": 24034, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BALLONS", - "center": "POINT (864211.6349421855993569 1922249.3761812960729003)", - "surface": 17000000, - "canton": null, - "numero_insee": "26022" - } - }, - { - "pk": 10408, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BARCELONNE", - "center": "POINT (814790.2360155140049756 1988795.7922780537046492)", - "surface": 8230000, - "canton": null, - "numero_insee": "26024" - } - }, - { - "pk": 27544, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BARNAVE", - "center": "POINT (840408.2175583529751748 1966391.8790792853105813)", - "surface": 12460000, - "canton": null, - "numero_insee": "26025" - } - }, - { - "pk": 22746, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BARRET-DE-LIOURE", - "center": "POINT (854377.3429647313896567 1913355.5003540364559740)", - "surface": 34860000, - "canton": null, - "numero_insee": "26026" - } - }, - { - "pk": 16277, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BARSAC", - "center": "POINT (835138.8807186721824110 1973854.4870524297002703)", - "surface": 15820000, - "canton": null, - "numero_insee": "26027" - } - }, - { - "pk": 11561, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BATHERNAY", - "center": "POINT (809185.6967071314575151 2023783.1337413387373090)", - "surface": 5680000, - "canton": null, - "numero_insee": "26028" - } - }, - { - "pk": 36395, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA BATIE-DES-FONDS", - "center": "POINT (861858.5607344689778984 1951460.1434455737471581)", - "surface": 11560000, - "canton": null, - "numero_insee": "26030" - } - }, - { - "pk": 13350, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA BATIE-ROLLAND", - "center": "POINT (801073.6845407544169575 1953942.6842975304462016)", - "surface": 8340000, - "canton": null, - "numero_insee": "26031" - } - }, - { - "pk": 22594, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA BAUME-CORNILLANE", - "center": "POINT (814425.8134628876578063 1984588.3815105683170259)", - "surface": 14370000, - "canton": null, - "numero_insee": "26032" - } - }, - { - "pk": 19191, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA BAUME-DE-TRANSIT", - "center": "POINT (802092.5158255777787417 1928424.4703725462313741)", - "surface": 12190000, - "canton": null, - "numero_insee": "26033" - } - }, - { - "pk": 36525, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA BAUME-D'HOSTUN", - "center": "POINT (827113.5231335218995810 2010923.5373333506286144)", - "surface": 8550000, - "canton": null, - "numero_insee": "26034" - } - }, - { - "pk": 26691, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUFORT-SUR-GERVANNE", - "center": "POINT (822680.7282008907059208 1979153.3664858404081315)", - "surface": 9570000, - "canton": null, - "numero_insee": "26035" - } - }, - { - "pk": 33744, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUMONT-EN-DIOIS", - "center": "POINT (849003.1374459535581991 1956355.0530344014987350)", - "surface": 17550000, - "canton": null, - "numero_insee": "26036" - } - }, - { - "pk": 27748, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUMONT-LES-VALENCE", - "center": "POINT (806277.9048519536154345 1989223.5210059746168554)", - "surface": 17780000, - "canton": null, - "numero_insee": "26037" - } - }, - { - "pk": 24679, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUMONT-MONTEUX", - "center": "POINT (803724.2370320443296805 2006919.6374655100516975)", - "surface": 13450000, - "canton": null, - "numero_insee": "26038" - } - }, - { - "pk": 19360, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUREGARD-BARET", - "center": "POINT (823864.4311938534956425 2004589.3752435329370201)", - "surface": 23800000, - "canton": null, - "numero_insee": "26039" - } - }, - { - "pk": 5795, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAURIERES", - "center": "POINT (855611.2727349267806858 1956211.5425801353994757)", - "surface": 24530000, - "canton": null, - "numero_insee": "26040" - } - }, - { - "pk": 34849, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUSEMBLANT", - "center": "POINT (796649.3894702289253473 2026578.8876728191971779)", - "surface": 11790000, - "canton": null, - "numero_insee": "26041" - } - }, - { - "pk": 11904, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUVALLON", - "center": "POINT (802991.8848120403708890 1987193.3977213574107736)", - "surface": 3220000, - "canton": null, - "numero_insee": "26042" - } - }, - { - "pk": 36397, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEAUVOISIN", - "center": "POINT (829639.5112772706197575 1926357.6159404451027513)", - "surface": 9500000, - "canton": null, - "numero_insee": "26043" - } - }, - { - "pk": 17410, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA BEGUDE-DE-MAZENC", - "center": "POINT (806182.9246566242072731 1953485.8154285878408700)", - "surface": 23920000, - "canton": null, - "numero_insee": "26045" - } - }, - { - "pk": 35101, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BELLECOMBE-TARENDOL", - "center": "POINT (840794.0196609382983297 1933060.2042060098610818)", - "surface": 13570000, - "canton": null, - "numero_insee": "26046" - } - }, - { - "pk": 23627, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BELLEGARDE-EN-DIOIS", - "center": "POINT (846227.0255231522023678 1953227.9975717978086323)", - "surface": 25650000, - "canton": null, - "numero_insee": "26047" - } - }, - { - "pk": 30719, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BENIVAY-OLLON", - "center": "POINT (827628.0967817301861942 1927441.5679415923077613)", - "surface": 8840000, - "canton": null, - "numero_insee": "26048" - } - }, - { - "pk": 26485, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BESAYES", - "center": "POINT (816998.2206150245619938 1999825.8638783118221909)", - "surface": 9540000, - "canton": null, - "numero_insee": "26049" - } - }, - { - "pk": 7052, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BESIGNAN", - "center": "POINT (838127.3742583855055273 1928832.8810756122693419)", - "surface": 9040000, - "canton": null, - "numero_insee": "26050" - } - }, - { - "pk": 6101, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BEZAUDUN-SUR-BINE", - "center": "POINT (825440.8779153007781133 1960757.9479095956776291)", - "surface": 17850000, - "canton": null, - "numero_insee": "26051" - } - }, - { - "pk": 33496, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BONLIEU-SUR-ROUBION", - "center": "POINT (801045.4674122307915241 1957245.8915622313506901)", - "surface": 6090000, - "canton": null, - "numero_insee": "26052" - } - }, - { - "pk": 6397, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BOUCHET", - "center": "POINT (803422.0265922865364701 1925132.3098144973628223)", - "surface": 11820000, - "canton": null, - "numero_insee": "26054" - } - }, - { - "pk": 14967, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BOULC", - "center": "POINT (857738.6564104211283848 1964938.8776038615033031)", - "surface": 57040000, - "canton": null, - "numero_insee": "26055" - } - }, - { - "pk": 14969, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BOURDEAUX", - "center": "POINT (823570.7368621747009456 1957038.0801384567748755)", - "surface": 23230000, - "canton": null, - "numero_insee": "26056" - } - }, - { - "pk": 5249, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BOURG-DE-PEAGE", - "center": "POINT (813946.6046643352601677 2005505.5198513329960406)", - "surface": 13950000, - "canton": null, - "numero_insee": "26057" - } - }, - { - "pk": 5126, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BOURG-LES-VALENCE", - "center": "POINT (801787.3641212417278439 1999295.4130828920751810)", - "surface": 20200000, - "canton": null, - "numero_insee": "26058" - } - }, - { - "pk": 18058, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BOUVANTE", - "center": "POINT (834239.2503177515463904 1997070.5334048650693148)", - "surface": 84460000, - "canton": null, - "numero_insee": "26059" - } - }, - { - "pk": 16329, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BOUVIERES", - "center": "POINT (829430.3707739883102477 1950781.6489573975559324)", - "surface": 24960000, - "canton": null, - "numero_insee": "26060" - } - }, - { - "pk": 35907, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BREN", - "center": "POINT (804820.9935304851969704 2019141.2402882082387805)", - "surface": 11130000, - "canton": null, - "numero_insee": "26061" - } - }, - { - "pk": 12080, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BRETTE", - "center": "POINT (837367.8435414306586608 1959058.2234966210089624)", - "surface": 15520000, - "canton": null, - "numero_insee": "26062" - } - }, - { - "pk": 18521, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "BUIS-LES-BARONNIES", - "center": "POINT (834366.4768468021648005 1923795.3216451997868717)", - "surface": 34030000, - "canton": null, - "numero_insee": "26063" - } - }, - { - "pk": 22218, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHABEUIL", - "center": "POINT (810948.1218302294146270 1993267.5206719150301069)", - "surface": 40010000, - "canton": null, - "numero_insee": "26064" - } - }, - { - "pk": 24743, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHABRILLAN", - "center": "POINT (807930.7682624732842669 1971519.4743787709157914)", - "surface": 17470000, - "canton": null, - "numero_insee": "26065" - } - }, - { - "pk": 33482, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LE CHAFFAL", - "center": "POINT (824590.9537749213632196 1989880.6768181142397225)", - "surface": 11650000, - "canton": null, - "numero_insee": "26066" - } - }, - { - "pk": 16780, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHALANCON", - "center": "POINT (838730.8692330672638491 1951862.3715038576629013)", - "surface": 35920000, - "canton": null, - "numero_insee": "26067" - } - }, - { - "pk": 25670, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LE CHALON", - "center": "POINT (816418.0206463150680065 2020842.0017110938206315)", - "surface": 8470000, - "canton": null, - "numero_insee": "26068" - } - }, - { - "pk": 33092, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHAMALOC", - "center": "POINT (841161.4974370328709483 1983616.0840600214432925)", - "surface": 22040000, - "canton": null, - "numero_insee": "26069" - } - }, - { - "pk": 8415, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHAMARET", - "center": "POINT (802429.6330180244985968 1935835.2109879096969962)", - "surface": 8040000, - "canton": null, - "numero_insee": "26070" - } - }, - { - "pk": 34283, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHANOS-CURSON", - "center": "POINT (803300.7698613801039755 2009618.7349089784547687)", - "surface": 8180000, - "canton": null, - "numero_insee": "26071" - } - }, - { - "pk": 8331, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHANTEMERLE-LES-BLES", - "center": "POINT (800836.9629641993669793 2016804.8993281365837902)", - "surface": 15520000, - "canton": null, - "numero_insee": "26072" - } - }, - { - "pk": 30617, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHANTEMERLE-LES-GRIGNAN", - "center": "POINT (799116.9739461544668302 1936908.0802659820765257)", - "surface": 10080000, - "canton": null, - "numero_insee": "26073" - } - }, - { - "pk": 25247, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA CHAPELLE-EN-VERCORS", - "center": "POINT (842609.3996908004628494 2001546.7351606255397201)", - "surface": 45400000, - "canton": null, - "numero_insee": "26074" - } - }, - { - "pk": 28289, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA CHARCE", - "center": "POINT (847394.1995665309950709 1945529.9146384063642472)", - "surface": 9400000, - "canton": null, - "numero_insee": "26075" - } - }, - { - "pk": 12203, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHARENS", - "center": "POINT (852125.9046005124691874 1954079.4350823077838868)", - "surface": 12950000, - "canton": null, - "numero_insee": "26076" - } - }, - { - "pk": 37072, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHARMES-SUR-L'HERBASSE", - "center": "POINT (810611.8073969820979983 2020892.4401628698688000)", - "surface": 12960000, - "canton": null, - "numero_insee": "26077" - } - }, - { - "pk": 37100, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHAROLS", - "center": "POINT (807848.6458337330259383 1957704.4413881828077137)", - "surface": 7330000, - "canton": null, - "numero_insee": "26078" - } - }, - { - "pk": 36770, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHARPEY", - "center": "POINT (816519.1580256951274350 1997319.2315372461453080)", - "surface": 15810000, - "canton": null, - "numero_insee": "26079" - } - }, - { - "pk": 36730, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHASTEL-ARNAUD", - "center": "POINT (827897.0177983179455623 1966184.5914747735951096)", - "surface": 13130000, - "canton": null, - "numero_insee": "26080" - } - }, - { - "pk": 15018, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHATEAUDOUBLE", - "center": "POINT (817561.2042570936027914 1992523.2680628062225878)", - "surface": 17360000, - "canton": null, - "numero_insee": "26081" - } - }, - { - "pk": 11952, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHATEAUNEUF-DE-BORDETTE", - "center": "POINT (826202.7141099605942145 1930232.3488401230424643)", - "surface": 15410000, - "canton": null, - "numero_insee": "26082" - } - }, - { - "pk": 15376, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHATEAUNEUF-SUR-ISERE", - "center": "POINT (806248.8155847146408632 2004338.5927830901928246)", - "surface": 45420000, - "canton": null, - "numero_insee": "26084" - } - }, - { - "pk": 29173, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHATEAUNEUF-DU-RHONE", - "center": "POINT (790016.7008834681473672 1947541.6732177571393549)", - "surface": 27550000, - "canton": null, - "numero_insee": "26085" - } - }, - { - "pk": 23024, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHATILLON-EN-DIOIS", - "center": "POINT (849671.6790384153136984 1971776.8073813461232930)", - "surface": 28370000, - "canton": null, - "numero_insee": "26086" - } - }, - { - "pk": 34688, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHATILLON-SAINT-JEAN", - "center": "POINT (820176.2603098620893434 2014467.7630806805100292)", - "surface": 8960000, - "canton": null, - "numero_insee": "26087" - } - }, - { - "pk": 34647, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHATUZANGE-LE-GOUBET", - "center": "POINT (817655.2029078190680593 2004936.6396407871507108)", - "surface": 28200000, - "canton": null, - "numero_insee": "26088" - } - }, - { - "pk": 10599, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHAUDEBONNE", - "center": "POINT (830974.6975417797220871 1945789.6178892643656582)", - "surface": 20760000, - "canton": null, - "numero_insee": "26089" - } - }, - { - "pk": 29374, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA CHAUDIERE", - "center": "POINT (829224.8436855522450060 1963092.7402278238441795)", - "surface": 12360000, - "canton": null, - "numero_insee": "26090" - } - }, - { - "pk": 17492, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHAUVAC-LAUX-MONTAUX", - "center": "POINT (855238.3313008347759023 1929680.3577425424009562)", - "surface": 24540000, - "canton": null, - "numero_insee": "26091" - } - }, - { - "pk": 32429, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CHAVANNES", - "center": "POINT (803556.5714243659749627 2014826.1365771465934813)", - "surface": 4650000, - "canton": null, - "numero_insee": "26092" - } - }, - { - "pk": 32566, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CLANSAYES", - "center": "POINT (796941.3021532717393711 1933786.2154799276031554)", - "surface": 14700000, - "canton": null, - "numero_insee": "26093" - } - }, - { - "pk": 32968, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CLAVEYSON", - "center": "POINT (804092.1179881825810298 2022438.3000709495972842)", - "surface": 16270000, - "canton": null, - "numero_insee": "26094" - } - }, - { - "pk": 31546, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CLEON-D'ANDRAN", - "center": "POINT (806128.1763292773393914 1959892.0309484712779522)", - "surface": 10320000, - "canton": null, - "numero_insee": "26095" - } - }, - { - "pk": 3257, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CLERIEUX", - "center": "POINT (806081.1352772237733006 2012245.1072403439320624)", - "surface": 13630000, - "canton": null, - "numero_insee": "26096" - } - }, - { - "pk": 37734, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CLIOUSCLAT", - "center": "POINT (797815.0866408195579425 1972133.7685759153682739)", - "surface": 9610000, - "canton": null, - "numero_insee": "26097" - } - }, - { - "pk": 29388, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "COMBOVIN", - "center": "POINT (819001.0673683172790334 1988030.9983146826270968)", - "surface": 35640000, - "canton": null, - "numero_insee": "26100" - } - }, - { - "pk": 26863, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "COMPS", - "center": "POINT (819993.7908893978456035 1953904.2284543202258646)", - "surface": 11960000, - "canton": null, - "numero_insee": "26101" - } - }, - { - "pk": 12307, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CONDILLAC", - "center": "POINT (797694.3941096612252295 1962823.1024285899475217)", - "surface": 10000000, - "canton": null, - "numero_insee": "26102" - } - }, - { - "pk": 20478, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CONDORCET", - "center": "POINT (826428.4611482459586114 1938943.5136266148183495)", - "surface": 22500000, - "canton": null, - "numero_insee": "26103" - } - }, - { - "pk": 13547, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CORNILLAC", - "center": "POINT (844317.7662599375471473 1942400.2638014541007578)", - "surface": 19070000, - "canton": null, - "numero_insee": "26104" - } - }, - { - "pk": 32756, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CORNILLON-SUR-L'OULE", - "center": "POINT (840700.5021923376480117 1943970.9432050196919590)", - "surface": 14410000, - "canton": null, - "numero_insee": "26105" - } - }, - { - "pk": 30852, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA COUCOURDE", - "center": "POINT (794288.5444034022511914 1963094.3324802047573030)", - "surface": 10000000, - "canton": null, - "numero_insee": "26106" - } - }, - { - "pk": 9882, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CREPOL", - "center": "POINT (814797.7063017173204571 2023030.3319497120101005)", - "surface": 11450000, - "canton": null, - "numero_insee": "26107" - } - }, - { - "pk": 3530, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CREST", - "center": "POINT (812715.6904432714218274 1973862.7583932685665786)", - "surface": 23640000, - "canton": null, - "numero_insee": "26108" - } - }, - { - "pk": 11059, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CROZES-HERMITAGE", - "center": "POINT (797357.6572674127528444 2013972.3767175693064928)", - "surface": 5650000, - "canton": null, - "numero_insee": "26110" - } - }, - { - "pk": 9331, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CRUPIES", - "center": "POINT (825996.2042305093491450 1954356.0186627537477762)", - "surface": 13330000, - "canton": null, - "numero_insee": "26111" - } - }, - { - "pk": 28403, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "CURNIER", - "center": "POINT (830957.7518138182349503 1936079.2231283809524029)", - "surface": 8150000, - "canton": null, - "numero_insee": "26112" - } - }, - { - "pk": 20229, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "DIE", - "center": "POINT (840721.9424690740415826 1976505.0164374220184982)", - "surface": 57440000, - "canton": null, - "numero_insee": "26113" - } - }, - { - "pk": 6919, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "DIEULEFIT", - "center": "POINT (816911.3227292691590264 1951475.3433893357869238)", - "surface": 27600000, - "canton": null, - "numero_insee": "26114" - } - }, - { - "pk": 18312, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "DIVAJEU", - "center": "POINT (811847.3515097006456926 1970051.4071207437664270)", - "surface": 13090000, - "canton": null, - "numero_insee": "26115" - } - }, - { - "pk": 10243, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "DONZERE", - "center": "POINT (788983.1035181018523872 1939624.5305331512354314)", - "surface": 32440000, - "canton": null, - "numero_insee": "26116" - } - }, - { - "pk": 17352, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ECHEVIS", - "center": "POINT (840258.3312894749687985 2007232.3357855433132499)", - "surface": 11210000, - "canton": null, - "numero_insee": "26117" - } - }, - { - "pk": 37935, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EPINOUZE", - "center": "POINT (803960.3848289898596704 2037852.4152590106241405)", - "surface": 11420000, - "canton": null, - "numero_insee": "26118" - } - }, - { - "pk": 12046, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EROME", - "center": "POINT (796630.5074415630660951 2017069.2675400371663272)", - "surface": 7480000, - "canton": null, - "numero_insee": "26119" - } - }, - { - "pk": 38007, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ESPELUCHE", - "center": "POINT (797705.4232681052526459 1949809.6205805148929358)", - "surface": 11440000, - "canton": null, - "numero_insee": "26121" - } - }, - { - "pk": 35320, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ESPENEL", - "center": "POINT (829773.9913706019287929 1969103.6712473253719509)", - "surface": 15080000, - "canton": null, - "numero_insee": "26122" - } - }, - { - "pk": 28546, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ESTABLET", - "center": "POINT (846860.2307444724719971 1949429.4395790225826204)", - "surface": 12690000, - "canton": null, - "numero_insee": "26123" - } - }, - { - "pk": 21135, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ETOILE-SUR-RHONE", - "center": "POINT (800713.6457047282019630 1984371.0699528162367642)", - "surface": 40030000, - "canton": null, - "numero_insee": "26124" - } - }, - { - "pk": 26486, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EURRE", - "center": "POINT (808989.0403300125617534 1976533.6784176600631326)", - "surface": 18920000, - "canton": null, - "numero_insee": "26125" - } - }, - { - "pk": 28921, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EYGALAYES", - "center": "POINT (860437.9216265417635441 1918713.2186618419364095)", - "surface": 18260000, - "canton": null, - "numero_insee": "26126" - } - }, - { - "pk": 32990, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EYGALIERS", - "center": "POINT (835601.9737174841575325 1919801.6220480711199343)", - "surface": 8210000, - "canton": null, - "numero_insee": "26127" - } - }, - { - "pk": 17464, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EYGLUY-ESCOULIN", - "center": "POINT (827364.6467195829609409 1981595.9294988943729550)", - "surface": 26450000, - "canton": null, - "numero_insee": "26128" - } - }, - { - "pk": 7812, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EYMEUX", - "center": "POINT (824107.3017464937875047 2011298.2002493781037629)", - "surface": 10130000, - "canton": null, - "numero_insee": "26129" - } - }, - { - "pk": 32098, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EYROLES", - "center": "POINT (831429.9552371748723090 1939386.7619127875659615)", - "surface": 8710000, - "canton": null, - "numero_insee": "26130" - } - }, - { - "pk": 13616, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "EYZAHUT", - "center": "POINT (811878.2035507210530341 1954735.7552506902720779)", - "surface": 6760000, - "canton": null, - "numero_insee": "26131" - } - }, - { - "pk": 6898, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "FAY-LE-CLOS", - "center": "POINT (801945.7082924945279956 2027625.1241714442148805)", - "surface": 4530000, - "canton": null, - "numero_insee": "26133" - } - }, - { - "pk": 33576, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "FELINES-SUR-RIMANDOULE", - "center": "POINT (815958.2190315646585077 1957573.5726296678185463)", - "surface": 8520000, - "canton": null, - "numero_insee": "26134" - } - }, - { - "pk": 28408, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "FERRASSIERES", - "center": "POINT (852510.6446871316293254 1909235.0600180327892303)", - "surface": 29490000, - "canton": null, - "numero_insee": "26135" - } - }, - { - "pk": 3260, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VAL-MARAVEL", - "center": "POINT (858082.7699154895963147 1959836.5186081947758794)", - "surface": 20940000, - "canton": null, - "numero_insee": "26136" - } - }, - { - "pk": 27951, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "FRANCILLON-SUR-ROUBION", - "center": "POINT (817129.4147846882697195 1961087.2401273283176124)", - "surface": 10890000, - "canton": null, - "numero_insee": "26137" - } - }, - { - "pk": 23118, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA GARDE-ADHEMAR", - "center": "POINT (792324.7965598285663873 1935148.2881756080314517)", - "surface": 27880000, - "canton": null, - "numero_insee": "26138" - } - }, - { - "pk": 22580, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GENISSIEUX", - "center": "POINT (816787.6609852112596855 2012737.0638785010669380)", - "surface": 9090000, - "canton": null, - "numero_insee": "26139" - } - }, - { - "pk": 33550, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GEYSSANS", - "center": "POINT (816747.4132876032963395 2017441.4256527631077915)", - "surface": 10930000, - "canton": null, - "numero_insee": "26140" - } - }, - { - "pk": 35102, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GLANDAGE", - "center": "POINT (859782.2439310196787119 1971763.4766169602517039)", - "surface": 52450000, - "canton": null, - "numero_insee": "26142" - } - }, - { - "pk": 15319, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LE GRAND-SERRE", - "center": "POINT (817015.9018458141945302 2032859.0273047834634781)", - "surface": 24920000, - "canton": null, - "numero_insee": "26143" - } - }, - { - "pk": 23214, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GRANE", - "center": "POINT (802919.9807025797199458 1972177.3756339880637825)", - "surface": 45620000, - "canton": null, - "numero_insee": "26144" - } - }, - { - "pk": 23775, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LES GRANGES-GONTARDES", - "center": "POINT (792791.1128882291959599 1939156.5016617199871689)", - "surface": 7270000, - "canton": null, - "numero_insee": "26145" - } - }, - { - "pk": 17153, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GRIGNAN", - "center": "POINT (804291.3093675943091512 1940556.0882843111176044)", - "surface": 44220000, - "canton": null, - "numero_insee": "26146" - } - }, - { - "pk": 31345, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GUMIANE", - "center": "POINT (833145.9857460526982322 1949412.0013973596505821)", - "surface": 8860000, - "canton": null, - "numero_insee": "26147" - } - }, - { - "pk": 18847, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "HAUTERIVES", - "center": "POINT (812121.6919116773642600 2031615.9751885826699436)", - "surface": 30770000, - "canton": null, - "numero_insee": "26148" - } - }, - { - "pk": 27747, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "HOSTUN", - "center": "POINT (825840.5933546680025756 2007609.3182819664943963)", - "surface": 18470000, - "canton": null, - "numero_insee": "26149" - } - }, - { - "pk": 22892, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "IZON-LA-BRUISSE", - "center": "POINT (860898.8892173969652504 1923322.1088137417100370)", - "surface": 14640000, - "canton": null, - "numero_insee": "26150" - } - }, - { - "pk": 36311, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "JONCHERES", - "center": "POINT (843597.8876004397170618 1956308.6991320170927793)", - "surface": 16320000, - "canton": null, - "numero_insee": "26152" - } - }, - { - "pk": 14737, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LABOREL", - "center": "POINT (859873.8310242572333664 1926116.3033521221950650)", - "surface": 23660000, - "canton": null, - "numero_insee": "26153" - } - }, - { - "pk": 20430, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LACHAU", - "center": "POINT (865045.9614842907758430 1918352.3568880385719240)", - "surface": 25670000, - "canton": null, - "numero_insee": "26154" - } - }, - { - "pk": 26604, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LAPEYROUSE-MORNAY", - "center": "POINT (807947.7693952210247517 2039788.3672530457843095)", - "surface": 11470000, - "canton": null, - "numero_insee": "26155" - } - }, - { - "pk": 11307, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LARNAGE", - "center": "POINT (798858.1950429180869833 2014085.2936856180895120)", - "surface": 9180000, - "canton": null, - "numero_insee": "26156" - } - }, - { - "pk": 37008, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA LAUPIE", - "center": "POINT (799624.4443369699874893 1959536.1519348400179297)", - "surface": 9540000, - "canton": null, - "numero_insee": "26157" - } - }, - { - "pk": 18522, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LAVAL-D'AIX", - "center": "POINT (846445.4261319456854835 1974451.9246647558175027)", - "surface": 19780000, - "canton": null, - "numero_insee": "26159" - } - }, - { - "pk": 6752, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LAVEYRON", - "center": "POINT (795056.4662676956504583 2025564.2915126616135240)", - "surface": 5340000, - "canton": null, - "numero_insee": "26160" - } - }, - { - "pk": 11301, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LEMPS", - "center": "POINT (845301.0461528275627643 1932798.5225977525115013)", - "surface": 16870000, - "canton": null, - "numero_insee": "26161" - } - }, - { - "pk": 33816, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LENS-LESTANG", - "center": "POINT (812080.6029245990794152 2036420.3615250370930880)", - "surface": 16510000, - "canton": null, - "numero_insee": "26162" - } - }, - { - "pk": 17152, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LEONCEL", - "center": "POINT (826543.9974710405804217 1995603.2012734292075038)", - "surface": 42900000, - "canton": null, - "numero_insee": "26163" - } - }, - { - "pk": 33996, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LESCHES-EN-DIOIS", - "center": "POINT (852577.4358783216448501 1959789.2692089888732880)", - "surface": 19890000, - "canton": null, - "numero_insee": "26164" - } - }, - { - "pk": 5788, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LIVRON-SUR-DROME", - "center": "POINT (798052.9684762521646917 1979443.3186341682448983)", - "surface": 41420000, - "canton": null, - "numero_insee": "26165" - } - }, - { - "pk": 23905, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LORIOL-SUR-DROME", - "center": "POINT (795487.2391261310549453 1975116.9844044432975352)", - "surface": 28790000, - "canton": null, - "numero_insee": "26166" - } - }, - { - "pk": 16358, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LUC-EN-DIOIS", - "center": "POINT (847857.4245370319113135 1961550.6544841900467873)", - "surface": 23090000, - "canton": null, - "numero_insee": "26167" - } - }, - { - "pk": 15681, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LUS-LA-CROIX-HAUTE", - "center": "POINT (868502.6472377085592598 1970436.9291389593854547)", - "surface": 87940000, - "canton": null, - "numero_insee": "26168" - } - }, - { - "pk": 30850, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MALATAVERNE", - "center": "POINT (791746.5568053915631026 1944252.9659405173733830)", - "surface": 16580000, - "canton": null, - "numero_insee": "26169" - } - }, - { - "pk": 34514, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MANAS", - "center": "POINT (809938.7036074507050216 1959123.7679164209403098)", - "surface": 1890000, - "canton": null, - "numero_insee": "26171" - } - }, - { - "pk": 31742, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MANTHES", - "center": "POINT (809067.5973806267138571 2037595.7780432379804552)", - "surface": 6850000, - "canton": null, - "numero_insee": "26172" - } - }, - { - "pk": 11052, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MARCHES", - "center": "POINT (819187.4399729564320296 2001346.1130864766892046)", - "surface": 11230000, - "canton": null, - "numero_insee": "26173" - } - }, - { - "pk": 26066, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MARGES", - "center": "POINT (811936.1195428882492706 2018201.0708301253616810)", - "surface": 9930000, - "canton": null, - "numero_insee": "26174" - } - }, - { - "pk": 24551, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MARIGNAC-EN-DIOIS", - "center": "POINT (837160.2633204276207834 1983281.4810368763282895)", - "surface": 18500000, - "canton": null, - "numero_insee": "26175" - } - }, - { - "pk": 23406, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MARSANNE", - "center": "POINT (802096.0812591555295512 1963161.0119320410303771)", - "surface": 34560000, - "canton": null, - "numero_insee": "26176" - } - }, - { - "pk": 13026, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MARSAZ", - "center": "POINT (804240.9683702596230432 2016733.8860626115929335)", - "surface": 9080000, - "canton": null, - "numero_insee": "26177" - } - }, - { - "pk": 16816, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MENGLON", - "center": "POINT (848812.8865744640352204 1966864.3623678400181234)", - "surface": 36440000, - "canton": null, - "numero_insee": "26178" - } - }, - { - "pk": 36168, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MERCUROL", - "center": "POINT (800985.7993810063926503 2011100.4614385750610381)", - "surface": 20770000, - "canton": null, - "numero_insee": "26179" - } - }, - { - "pk": 30517, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MERINDOL-LES-OLIVIERS", - "center": "POINT (826164.3089215373620391 1923024.3374819124583155)", - "surface": 9570000, - "canton": null, - "numero_insee": "26180" - } - }, - { - "pk": 11434, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MIRABEL-AUX-BARONNIES", - "center": "POINT (820719.5318560386076570 1927582.6530376393347979)", - "surface": 22590000, - "canton": null, - "numero_insee": "26182" - } - }, - { - "pk": 10150, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MIRIBEL", - "center": "POINT (817578.0213758671889082 2025656.7034915881231427)", - "surface": 6620000, - "canton": null, - "numero_insee": "26184" - } - }, - { - "pk": 31879, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MIRMANDE", - "center": "POINT (798847.6784196270164102 1968438.7617672902997583)", - "surface": 26550000, - "canton": null, - "numero_insee": "26185" - } - }, - { - "pk": 16581, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MISCON", - "center": "POINT (852247.9437937507173046 1963189.9856498145963997)", - "surface": 12160000, - "canton": null, - "numero_insee": "26186" - } - }, - { - "pk": 24744, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MOLIERES-GLANDAZ", - "center": "POINT (843445.1244939327007160 1974125.8866573241539299)", - "surface": 2830000, - "canton": null, - "numero_insee": "26187" - } - }, - { - "pk": 17979, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MOLLANS-SUR-OUVEZE", - "center": "POINT (828402.4954211090225726 1918838.9988969073165208)", - "surface": 20350000, - "canton": null, - "numero_insee": "26188" - } - }, - { - "pk": 18911, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTAUBAN-SUR-L'OUVEZE", - "center": "POINT (854080.0865207690512761 1924665.0808999426662922)", - "surface": 32540000, - "canton": null, - "numero_insee": "26189" - } - }, - { - "pk": 10794, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTAULIEU", - "center": "POINT (829785.7105019955197349 1932665.5774612345267087)", - "surface": 13130000, - "canton": null, - "numero_insee": "26190" - } - }, - { - "pk": 31686, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTBOUCHER-SUR-JABRON", - "center": "POINT (796973.9687323037069291 1953407.1463066369760782)", - "surface": 9980000, - "canton": null, - "numero_insee": "26191" - } - }, - { - "pk": 7989, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTBRISON-SUR-LEZ", - "center": "POINT (813900.7468450228916481 1940638.2289372845552862)", - "surface": 13200000, - "canton": null, - "numero_insee": "26192" - } - }, - { - "pk": 14426, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTBRUN-LES-BAINS", - "center": "POINT (847761.2743864287622273 1914399.9324588968884200)", - "surface": 33470000, - "canton": null, - "numero_insee": "26193" - } - }, - { - "pk": 37306, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTCHENU", - "center": "POINT (812379.2289545556996018 2024911.5358054246753454)", - "surface": 16480000, - "canton": null, - "numero_insee": "26194" - } - }, - { - "pk": 30843, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTCLAR-SUR-GERVANNE", - "center": "POINT (823409.6695146034471691 1975856.2085131106432527)", - "surface": 30020000, - "canton": null, - "numero_insee": "26195" - } - }, - { - "pk": 29694, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTELEGER", - "center": "POINT (804793.5921601556474343 1987208.7936022265348583)", - "surface": 9460000, - "canton": null, - "numero_insee": "26196" - } - }, - { - "pk": 27357, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTELIER", - "center": "POINT (811816.4462134445784613 1997078.8062301476020366)", - "surface": 24530000, - "canton": null, - "numero_insee": "26197" - } - }, - { - "pk": 14388, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTELIMAR", - "center": "POINT (791669.6640832598786801 1953261.7571026873774827)", - "surface": 46400000, - "canton": null, - "numero_insee": "26198" - } - }, - { - "pk": 24675, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTFERRAND-LA-FARE", - "center": "POINT (848314.3167653450509533 1931623.0863220100291073)", - "surface": 11430000, - "canton": null, - "numero_insee": "26199" - } - }, - { - "pk": 36060, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTFROC", - "center": "POINT (865898.3470861194655299 1912353.2178931212984025)", - "surface": 14750000, - "canton": null, - "numero_insee": "26200" - } - }, - { - "pk": 7261, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTGUERS", - "center": "POINT (850354.0780151262879372 1927235.8925052410922945)", - "surface": 11080000, - "canton": null, - "numero_insee": "26201" - } - }, - { - "pk": 34232, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTJOUX", - "center": "POINT (820152.9841398641001433 1946998.3503321057651192)", - "surface": 18490000, - "canton": null, - "numero_insee": "26202" - } - }, - { - "pk": 37328, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTJOYER", - "center": "POINT (802245.7315630998928100 1945643.9880182850174606)", - "surface": 18350000, - "canton": null, - "numero_insee": "26203" - } - }, - { - "pk": 12311, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTLAUR-EN-DIOIS", - "center": "POINT (844339.4446560081560165 1963222.2555089171510190)", - "surface": 9440000, - "canton": null, - "numero_insee": "26204" - } - }, - { - "pk": 26832, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTMAUR-EN-DIOIS", - "center": "POINT (840088.1948231719434261 1968691.5218824886251241)", - "surface": 12850000, - "canton": null, - "numero_insee": "26205" - } - }, - { - "pk": 13349, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTMEYRAN", - "center": "POINT (809415.9259621184319258 1985146.1558492116164416)", - "surface": 23600000, - "canton": null, - "numero_insee": "26206" - } - }, - { - "pk": 17154, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTMIRAL", - "center": "POINT (822023.1936657215701416 2020889.9672597460448742)", - "surface": 26490000, - "canton": null, - "numero_insee": "26207" - } - }, - { - "pk": 37816, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTOISON", - "center": "POINT (805248.7184549525845796 1980806.1292208489030600)", - "surface": 16190000, - "canton": null, - "numero_insee": "26208" - } - }, - { - "pk": 6690, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTREAL-LES-SOURCES", - "center": "POINT (836649.6543353527085856 1937729.6754701358731836)", - "surface": 10440000, - "canton": null, - "numero_insee": "26209" - } - }, - { - "pk": 16540, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTRIGAUD", - "center": "POINT (820352.3291889225365594 2028983.7186213354580104)", - "surface": 28980000, - "canton": null, - "numero_insee": "26210" - } - }, - { - "pk": 27466, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTSEGUR-SUR-LAUZON", - "center": "POINT (800953.8039655892644078 1932819.4220908426214010)", - "surface": 18420000, - "canton": null, - "numero_insee": "26211" - } - }, - { - "pk": 3259, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MONTVENDRE", - "center": "POINT (811488.8210008047753945 1988567.3542424479965121)", - "surface": 17220000, - "canton": null, - "numero_insee": "26212" - } - }, - { - "pk": 13738, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MORAS-EN-VALLOIRE", - "center": "POINT (808888.8097606552764773 2035091.7863995365332812)", - "surface": 8500000, - "canton": null, - "numero_insee": "26213" - } - }, - { - "pk": 9185, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MORNANS", - "center": "POINT (822029.8754885267699137 1961629.6897872735280544)", - "surface": 11780000, - "canton": null, - "numero_insee": "26214" - } - }, - { - "pk": 5614, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA MOTTE-CHALANCON", - "center": "POINT (842463.6537420739186928 1948490.7958948058076203)", - "surface": 22720000, - "canton": null, - "numero_insee": "26215" - } - }, - { - "pk": 32967, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA MOTTE-DE-GALAURE", - "center": "POINT (801465.7741765953833237 2025218.6416667888406664)", - "surface": 7740000, - "canton": null, - "numero_insee": "26216" - } - }, - { - "pk": 32085, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA MOTTE-FANJAS", - "center": "POINT (831131.8242104896344244 2009256.2427153275348246)", - "surface": 4840000, - "canton": null, - "numero_insee": "26217" - } - }, - { - "pk": 28958, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MOURS-SAINT-EUSEBE", - "center": "POINT (814395.7033933792263269 2011515.3978329929523170)", - "surface": 5340000, - "canton": null, - "numero_insee": "26218" - } - }, - { - "pk": 9076, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "MUREILS", - "center": "POINT (803551.4545898438664153 2027138.3498208641540259)", - "surface": 5460000, - "canton": null, - "numero_insee": "26219" - } - }, - { - "pk": 3092, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "NYONS", - "center": "POINT (822681.2567312476458028 1932304.4422875125892460)", - "surface": 23540000, - "canton": null, - "numero_insee": "26220" - } - }, - { - "pk": 17943, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "OMBLEZE", - "center": "POINT (828703.4079533836338669 1988914.8672791977878660)", - "surface": 45050000, - "canton": null, - "numero_insee": "26221" - } - }, - { - "pk": 10816, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ORCINAS", - "center": "POINT (822598.8918664063094184 1953626.2068023588508368)", - "surface": 5410000, - "canton": null, - "numero_insee": "26222" - } - }, - { - "pk": 23786, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ORIOL-EN-ROYANS", - "center": "POINT (829783.6701381638413295 2003038.4432396306656301)", - "surface": 16080000, - "canton": null, - "numero_insee": "26223" - } - }, - { - "pk": 10035, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "OURCHES", - "center": "POINT (814448.0721194405341521 1981985.9072522839996964)", - "surface": 9200000, - "canton": null, - "numero_insee": "26224" - } - }, - { - "pk": 25860, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PARNANS", - "center": "POINT (822060.8899647893849760 2016485.8952610415872186)", - "surface": 11320000, - "canton": null, - "numero_insee": "26225" - } - }, - { - "pk": 24361, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LE PEGUE", - "center": "POINT (817594.1093705862294883 1941871.0847546886652708)", - "surface": 11280000, - "canton": null, - "numero_insee": "26226" - } - }, - { - "pk": 11171, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PELONNE", - "center": "POINT (842671.8726205872371793 1935879.2736669760197401)", - "surface": 2820000, - "canton": null, - "numero_insee": "26227" - } - }, - { - "pk": 13556, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PENNES-LE-SEC", - "center": "POINT (836825.3303370869252831 1963958.6789828138425946)", - "surface": 9080000, - "canton": null, - "numero_insee": "26228" - } - }, - { - "pk": 10157, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA PENNE-SUR-L'OUVEZE", - "center": "POINT (831389.2063078605569899 1920766.6102345513645560)", - "surface": 7460000, - "canton": null, - "numero_insee": "26229" - } - }, - { - "pk": 15917, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PEYRINS", - "center": "POINT (813168.0486888570012525 2014608.0059701059944928)", - "surface": 25340000, - "canton": null, - "numero_insee": "26231" - } - }, - { - "pk": 10034, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PEYRUS", - "center": "POINT (819955.7630871220026165 1993444.6727072934154421)", - "surface": 10560000, - "canton": null, - "numero_insee": "26232" - } - }, - { - "pk": 3839, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PIEGON", - "center": "POINT (822536.7377244082745165 1925796.2821677895262837)", - "surface": 10260000, - "canton": null, - "numero_insee": "26233" - } - }, - { - "pk": 4775, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PIEGROS-LA-CLASTRE", - "center": "POINT (818866.0710707688704133 1968709.9905256014317274)", - "surface": 24790000, - "canton": null, - "numero_insee": "26234" - } - }, - { - "pk": 21604, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PIERRELATTE", - "center": "POINT (787449.8521992474561557 1931602.9737221279647201)", - "surface": 49440000, - "canton": null, - "numero_insee": "26235" - } - }, - { - "pk": 28634, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LES PILLES", - "center": "POINT (828165.2731354748830199 1934854.0388222676701844)", - "surface": 6310000, - "canton": null, - "numero_insee": "26238" - } - }, - { - "pk": 26094, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LE POET-CELARD", - "center": "POINT (819549.7234348304336891 1959005.7577739711850882)", - "surface": 8380000, - "canton": null, - "numero_insee": "26241" - } - }, - { - "pk": 25130, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LE POET-EN-PERCIP", - "center": "POINT (844300.3661161730997264 1921077.4542525401338935)", - "surface": 6160000, - "canton": null, - "numero_insee": "26242" - } - }, - { - "pk": 31041, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LE POET-LAVAL", - "center": "POINT (811912.4379296305123717 1950731.8584739828947932)", - "surface": 31460000, - "canton": null, - "numero_insee": "26243" - } - }, - { - "pk": 36639, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "POMMEROL", - "center": "POINT (849124.1992301635909826 1942241.2707872902974486)", - "surface": 10050000, - "canton": null, - "numero_insee": "26245" - } - }, - { - "pk": 27142, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PONET-ET-SAINT-AUBAN", - "center": "POINT (835588.7583399387076497 1979764.4206330252345651)", - "surface": 13400000, - "canton": null, - "numero_insee": "26246" - } - }, - { - "pk": 8920, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PONSAS", - "center": "POINT (797001.8124155384721234 2020475.8317534956149757)", - "surface": 2910000, - "canton": null, - "numero_insee": "26247" - } - }, - { - "pk": 9579, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PONTAIX", - "center": "POINT (831210.2781167849898338 1976723.8235065047629178)", - "surface": 19750000, - "canton": null, - "numero_insee": "26248" - } - }, - { - "pk": 11906, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PONT-DE-L'ISERE", - "center": "POINT (800639.2995226584607735 2004791.1625248235650361)", - "surface": 10440000, - "canton": null, - "numero_insee": "26250" - } - }, - { - "pk": 15230, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PORTES-EN-VALDAINE", - "center": "POINT (805010.8383002362679690 1950072.2364274251740426)", - "surface": 15270000, - "canton": null, - "numero_insee": "26251" - } - }, - { - "pk": 6067, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PORTES-LES-VALENCE", - "center": "POINT (801272.3145179009297863 1989280.8496357444673777)", - "surface": 14250000, - "canton": null, - "numero_insee": "26252" - } - }, - { - "pk": 35159, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "POYOLS", - "center": "POINT (844668.0585276796482503 1959921.6349460245110095)", - "surface": 12940000, - "canton": null, - "numero_insee": "26253" - } - }, - { - "pk": 19363, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PRADELLE", - "center": "POINT (833737.7695375781040639 1962130.3525507960002869)", - "surface": 13040000, - "canton": null, - "numero_insee": "26254" - } - }, - { - "pk": 9603, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LES PRES", - "center": "POINT (857537.1789562356425449 1953425.1406520232558250)", - "surface": 16280000, - "canton": null, - "numero_insee": "26255" - } - }, - { - "pk": 14031, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PROPIAC", - "center": "POINT (829462.4542057686485350 1923653.2153939404524863)", - "surface": 11240000, - "canton": null, - "numero_insee": "26256" - } - }, - { - "pk": 5104, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PUYGIRON", - "center": "POINT (800089.8112095122924075 1951932.1863460873719305)", - "surface": 6710000, - "canton": null, - "numero_insee": "26257" - } - }, - { - "pk": 34741, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "PUY-SAINT-MARTIN", - "center": "POINT (809116.5363647027406842 1961619.3436156301759183)", - "surface": 11790000, - "canton": null, - "numero_insee": "26258" - } - }, - { - "pk": 10146, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "RATIERES", - "center": "POINT (806992.2258664804976434 2022763.3865350626874715)", - "surface": 9120000, - "canton": null, - "numero_insee": "26259" - } - }, - { - "pk": 27296, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "REAUVILLE", - "center": "POINT (799272.7158396241720766 1942114.9054519692435861)", - "surface": 18560000, - "canton": null, - "numero_insee": "26261" - } - }, - { - "pk": 34887, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "RECOUBEAU-JANSAC", - "center": "POINT (843315.3060958497226238 1965916.2815132047981024)", - "surface": 12490000, - "canton": null, - "numero_insee": "26262" - } - }, - { - "pk": 13620, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "REILHANETTE", - "center": "POINT (845475.2741526602767408 1912478.2835499523207545)", - "surface": 15030000, - "canton": null, - "numero_insee": "26263" - } - }, - { - "pk": 4101, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "REMUZAT", - "center": "POINT (840650.1654513156972826 1938164.3818207024596632)", - "surface": 16820000, - "canton": null, - "numero_insee": "26264" - } - }, - { - "pk": 36050, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "RIMON-ET-SAVEL", - "center": "POINT (836099.7813902824418619 1966855.4744771921541542)", - "surface": 12110000, - "canton": null, - "numero_insee": "26266" - } - }, - { - "pk": 28402, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "RIOMS", - "center": "POINT (849584.1918981982162222 1923625.4414658122695982)", - "surface": 9550000, - "canton": null, - "numero_insee": "26267" - } - }, - { - "pk": 18315, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROCHEBAUDIN", - "center": "POINT (814067.5031260934192687 1956256.0442754747346044)", - "surface": 7560000, - "canton": null, - "numero_insee": "26268" - } - }, - { - "pk": 36960, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROCHEBRUNE", - "center": "POINT (831416.4400712369242683 1929275.9246540069580078)", - "surface": 16700000, - "canton": null, - "numero_insee": "26269" - } - }, - { - "pk": 14330, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROCHECHINARD", - "center": "POINT (829047.8676250906428322 2007136.2789416543673724)", - "surface": 9740000, - "canton": null, - "numero_insee": "26270" - } - }, - { - "pk": 34303, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA ROCHE-DE-GLUN", - "center": "POINT (798634.0088802783284336 2005174.4358268657233566)", - "surface": 12480000, - "canton": null, - "numero_insee": "26271" - } - }, - { - "pk": 21566, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROCHEFORT-EN-VALDAINE", - "center": "POINT (800515.8514853981323540 1948932.6792590802069753)", - "surface": 12860000, - "canton": null, - "numero_insee": "26272" - } - }, - { - "pk": 16189, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROCHEFORT-SAMSON", - "center": "POINT (823193.7636010695714504 2001080.0970288873650134)", - "surface": 24880000, - "canton": null, - "numero_insee": "26273" - } - }, - { - "pk": 30147, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROCHEFOURCHAT", - "center": "POINT (830651.0578295076265931 1960201.9340875744819641)", - "surface": 12690000, - "canton": null, - "numero_insee": "26274" - } - }, - { - "pk": 19761, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROCHE-SAINT-SECRET-BECONNE", - "center": "POINT (815358.5604709994513541 1945756.0740992096252739)", - "surface": 33290000, - "canton": null, - "numero_insee": "26276" - } - }, - { - "pk": 35809, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA ROCHE-SUR-GRANE", - "center": "POINT (806466.1138371306005865 1967202.5054096814710647)", - "surface": 12100000, - "canton": null, - "numero_insee": "26277" - } - }, - { - "pk": 4020, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA ROCHE-SUR-LE-BUIS", - "center": "POINT (839984.0642768032848835 1922441.9557543520350009)", - "surface": 28090000, - "canton": null, - "numero_insee": "26278" - } - }, - { - "pk": 4196, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA ROCHETTE-DU-BUIS", - "center": "POINT (846489.6867861287901178 1922597.8324557342566550)", - "surface": 10510000, - "canton": null, - "numero_insee": "26279" - } - }, - { - "pk": 18602, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROMANS-SUR-ISERE", - "center": "POINT (812810.4789680390385911 2009599.9308225857093930)", - "surface": 33410000, - "canton": null, - "numero_insee": "26281" - } - }, - { - "pk": 17479, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROMEYER", - "center": "POINT (845282.5680950050009415 1981649.3662990359589458)", - "surface": 40040000, - "canton": null, - "numero_insee": "26282" - } - }, - { - "pk": 7736, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROTTIER", - "center": "POINT (845082.5039507658220828 1946611.2496880022808909)", - "surface": 8380000, - "canton": null, - "numero_insee": "26283" - } - }, - { - "pk": 9851, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROUSSAS", - "center": "POINT (795178.0912749718409032 1940978.7799171861261129)", - "surface": 15990000, - "canton": null, - "numero_insee": "26284" - } - }, - { - "pk": 22037, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROUSSET-LES-VIGNES", - "center": "POINT (817514.5611744795460254 1939467.8688443936407566)", - "surface": 15570000, - "canton": null, - "numero_insee": "26285" - } - }, - { - "pk": 20265, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "ROUSSIEUX", - "center": "POINT (850726.1393010683823377 1930542.6024519624188542)", - "surface": 9560000, - "canton": null, - "numero_insee": "26286" - } - }, - { - "pk": 16849, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAHUNE", - "center": "POINT (833842.6071826744591817 1938206.1567673410754651)", - "surface": 16780000, - "canton": null, - "numero_insee": "26288" - } - }, - { - "pk": 17724, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAILLANS", - "center": "POINT (826061.8611604387406260 1970072.9215251647401601)", - "surface": 15720000, - "canton": null, - "numero_insee": "26289" - } - }, - { - "pk": 23138, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-AGNAN-EN-VERCORS", - "center": "POINT (845283.0888032261282206 1993261.2349883005954325)", - "surface": 84010000, - "canton": null, - "numero_insee": "26290" - } - }, - { - "pk": 5671, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-ANDEOL", - "center": "POINT (831558.3614769753767177 1982833.0757487225346267)", - "surface": 13460000, - "canton": null, - "numero_insee": "26291" - } - }, - { - "pk": 31762, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-AUBAN-SUR-L'OUVEZE", - "center": "POINT (846955.8498394840862602 1926606.1066408383194357)", - "surface": 16470000, - "canton": null, - "numero_insee": "26292" - } - }, - { - "pk": 28093, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-AVIT", - "center": "POINT (806468.6640717904083431 2025461.5955644750501961)", - "surface": 9030000, - "canton": null, - "numero_insee": "26293" - } - }, - { - "pk": 31994, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-BARDOUX", - "center": "POINT (808380.7070599810685962 2012565.0654210771899670)", - "surface": 10710000, - "canton": null, - "numero_insee": "26294" - } - }, - { - "pk": 18866, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-BARTHELEMY-DE-VALS", - "center": "POINT (799598.2284968935418874 2021198.7072864589281380)", - "surface": 20260000, - "canton": null, - "numero_insee": "26295" - } - }, - { - "pk": 10529, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-BENOIT-EN-DIOIS", - "center": "POINT (832303.8340539810014889 1965922.0201445955317467)", - "surface": 11210000, - "canton": null, - "numero_insee": "26296" - } - }, - { - "pk": 28108, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-BONNET-DE-VALCLERIEUX", - "center": "POINT (820881.9145896566333249 2025584.8772029825486243)", - "surface": 8300000, - "canton": null, - "numero_insee": "26297" - } - }, - { - "pk": 34502, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-CHRISTOPHE-ET-LE-LARIS", - "center": "POINT (814757.4646821690257639 2027734.6574604299385101)", - "surface": 11530000, - "canton": null, - "numero_insee": "26298" - } - }, - { - "pk": 25239, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINTE-CROIX", - "center": "POINT (833594.5667225879151374 1978846.4093861700966954)", - "surface": 10950000, - "canton": null, - "numero_insee": "26299" - } - }, - { - "pk": 24552, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-DIZIER-EN-DIOIS", - "center": "POINT (850555.2597924992442131 1950462.1836206787265837)", - "surface": 13900000, - "canton": null, - "numero_insee": "26300" - } - }, - { - "pk": 17673, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-DONAT-SUR-L'HERBASSE", - "center": "POINT (808339.6331189891789109 2017369.5197026031091809)", - "surface": 19800000, - "canton": null, - "numero_insee": "26301" - } - }, - { - "pk": 12647, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINTE-EULALIE-EN-ROYANS", - "center": "POINT (836736.1894092140719295 2009404.3616554071195424)", - "surface": 6060000, - "canton": null, - "numero_insee": "26302" - } - }, - { - "pk": 33464, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINTE-EUPHEMIE-SUR-OUVEZE", - "center": "POINT (843850.1937281321734190 1926879.7982896883040667)", - "surface": 11300000, - "canton": null, - "numero_insee": "26303" - } - }, - { - "pk": 14971, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-FERREOL-TRENTE-PAS", - "center": "POINT (829905.3352189650759101 1942076.5587636774871498)", - "surface": 21530000, - "canton": null, - "numero_insee": "26304" - } - }, - { - "pk": 12113, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-GERVAIS-SUR-ROUBION", - "center": "POINT (803451.2179888540413231 1956866.0269361601676792)", - "surface": 14720000, - "canton": null, - "numero_insee": "26305" - } - }, - { - "pk": 4790, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINTE-JALLE", - "center": "POINT (834711.9956579891731963 1930205.1104099277872592)", - "surface": 18450000, - "canton": null, - "numero_insee": "26306" - } - }, - { - "pk": 20705, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-JEAN-EN-ROYANS", - "center": "POINT (833570.0804682958405465 2005072.8983838034328073)", - "surface": 28030000, - "canton": null, - "numero_insee": "26307" - } - }, - { - "pk": 19695, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-JULIEN-EN-QUINT", - "center": "POINT (834017.0066627042833716 1987959.3596021304838359)", - "surface": 47690000, - "canton": null, - "numero_insee": "26308" - } - }, - { - "pk": 16311, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-JULIEN-EN-VERCORS", - "center": "POINT (844930.9612715571420267 2010976.1254929550923407)", - "surface": 18450000, - "canton": null, - "numero_insee": "26309" - } - }, - { - "pk": 13702, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-LAURENT-D'ONAY", - "center": "POINT (818096.4669076914433390 2023559.0516394537407905)", - "surface": 6260000, - "canton": null, - "numero_insee": "26310" - } - }, - { - "pk": 32363, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-LAURENT-EN-ROYANS", - "center": "POINT (837270.1116753575624898 2005505.0076959924772382)", - "surface": 27570000, - "canton": null, - "numero_insee": "26311" - } - }, - { - "pk": 12608, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MARCEL-LES-SAUZET", - "center": "POINT (795928.5515407512430102 1958603.6509657609276474)", - "surface": 3890000, - "canton": null, - "numero_insee": "26312" - } - }, - { - "pk": 9329, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MARCEL-LES-VALENCE", - "center": "POINT (806183.7983862193068489 2000233.8939965099561960)", - "surface": 14910000, - "canton": null, - "numero_insee": "26313" - } - }, - { - "pk": 9069, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MARTIN-D'AOUT", - "center": "POINT (808147.9797044567530975 2028078.5313940267078578)", - "surface": 7730000, - "canton": null, - "numero_insee": "26314" - } - }, - { - "pk": 9059, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MARTIN-EN-VERCORS", - "center": "POINT (845269.8706864297855645 2006474.5006942737381905)", - "surface": 26880000, - "canton": null, - "numero_insee": "26315" - } - }, - { - "pk": 11433, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MARTIN-LE-COLONEL", - "center": "POINT (832090.1130807430017740 2002557.6939000426791608)", - "surface": 3170000, - "canton": null, - "numero_insee": "26316" - } - }, - { - "pk": 8615, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MAURICE-SUR-EYGUES", - "center": "POINT (813124.8250751300947741 1926016.0930387126281857)", - "surface": 9030000, - "canton": null, - "numero_insee": "26317" - } - }, - { - "pk": 35200, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MAY", - "center": "POINT (838428.2682952769100666 1940447.7732912353239954)", - "surface": 10400000, - "canton": null, - "numero_insee": "26318" - } - }, - { - "pk": 18313, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-MICHEL-SUR-SAVASSE", - "center": "POINT (819027.2744549048366025 2020063.5292597690131515)", - "surface": 11370000, - "canton": null, - "numero_insee": "26319" - } - }, - { - "pk": 5152, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-NAZAIRE-EN-ROYANS", - "center": "POINT (829019.5788528183475137 2010439.3577394429594278)", - "surface": 3570000, - "canton": null, - "numero_insee": "26320" - } - }, - { - "pk": 18055, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-NAZAIRE-LE-DESERT", - "center": "POINT (833195.4949448166880757 1955318.6105473651550710)", - "surface": 46610000, - "canton": null, - "numero_insee": "26321" - } - }, - { - "pk": 29044, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-PANTALEON-LES-VIGNES", - "center": "POINT (815739.3294790234649554 1936349.4034378211945295)", - "surface": 8550000, - "canton": null, - "numero_insee": "26322" - } - }, - { - "pk": 35198, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-PAUL-LES-ROMANS", - "center": "POINT (819711.7710106399608776 2010259.5737158518750221)", - "surface": 15410000, - "canton": null, - "numero_insee": "26323" - } - }, - { - "pk": 4832, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-PAUL-TROIS-CHATEAUX", - "center": "POINT (793066.5003388609038666 1930349.5237591890618205)", - "surface": 22070000, - "canton": null, - "numero_insee": "26324" - } - }, - { - "pk": 32081, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-RAMBERT-D'ALBON", - "center": "POINT (795675.9051496223546565 2035078.9796571000479162)", - "surface": 13420000, - "canton": null, - "numero_insee": "26325" - } - }, - { - "pk": 8115, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-RESTITUT", - "center": "POINT (796289.3269222980597988 1928074.5895857722498477)", - "surface": 14460000, - "canton": null, - "numero_insee": "26326" - } - }, - { - "pk": 35935, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-ROMAN", - "center": "POINT (844980.8966312763513997 1970134.9189616560470313)", - "surface": 7140000, - "canton": null, - "numero_insee": "26327" - } - }, - { - "pk": 10284, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-SAUVEUR-EN-DIOIS", - "center": "POINT (824379.9330750092631206 1967756.1409541226457804)", - "surface": 6990000, - "canton": null, - "numero_insee": "26328" - } - }, - { - "pk": 21785, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-SAUVEUR-GOUVERNET", - "center": "POINT (842521.4435610671062022 1930071.8193033752031624)", - "surface": 19530000, - "canton": null, - "numero_insee": "26329" - } - }, - { - "pk": 19370, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-SORLIN-EN-VALLOIRE", - "center": "POINT (805692.7327581292483956 2034263.6746251964941621)", - "surface": 26380000, - "canton": null, - "numero_insee": "26330" - } - }, - { - "pk": 5204, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-THOMAS-EN-ROYANS", - "center": "POINT (832829.1221206478076056 2009771.2857156300451607)", - "surface": 5210000, - "canton": null, - "numero_insee": "26331" - } - }, - { - "pk": 30376, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-UZE", - "center": "POINT (798871.9318841829663143 2024195.4881697050295770)", - "surface": 10090000, - "canton": null, - "numero_insee": "26332" - } - }, - { - "pk": 26821, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-VALLIER", - "center": "POINT (795179.6361917012836784 2022862.6599413005169481)", - "surface": 5350000, - "canton": null, - "numero_insee": "26333" - } - }, - { - "pk": 13755, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SALETTES", - "center": "POINT (809172.1546695888973773 1955113.0386964723002166)", - "surface": 7030000, - "canton": null, - "numero_insee": "26334" - } - }, - { - "pk": 37565, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SALLES-SOUS-BOIS", - "center": "POINT (807260.8939209338277578 1944485.5783159460406750)", - "surface": 9680000, - "canton": null, - "numero_insee": "26335" - } - }, - { - "pk": 4058, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAOU", - "center": "POINT (820103.1986401946051046 1964516.2187373735941947)", - "surface": 41340000, - "canton": null, - "numero_insee": "26336" - } - }, - { - "pk": 32440, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAULCE-SUR-RHONE", - "center": "POINT (794529.8667556126601994 1970003.5457529248669744)", - "surface": 18900000, - "canton": null, - "numero_insee": "26337" - } - }, - { - "pk": 11673, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAUZET", - "center": "POINT (797640.4576107668690383 1957417.0177049417980015)", - "surface": 19040000, - "canton": null, - "numero_insee": "26338" - } - }, - { - "pk": 15841, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAVASSE", - "center": "POINT (793821.3882514988072217 1959186.2857120255939662)", - "surface": 22140000, - "canton": null, - "numero_insee": "26339" - } - }, - { - "pk": 30833, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SEDERON", - "center": "POINT (857358.8768011493375525 1915883.7786479040514678)", - "surface": 20460000, - "canton": null, - "numero_insee": "26340" - } - }, - { - "pk": 6512, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SERVES-SUR-RHONE", - "center": "POINT (796215.6052465932443738 2018767.4217261541634798)", - "surface": 6940000, - "canton": null, - "numero_insee": "26341" - } - }, - { - "pk": 36754, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SOLERIEUX", - "center": "POINT (798571.0925713670440018 1930496.6278824063483626)", - "surface": 8650000, - "canton": null, - "numero_insee": "26342" - } - }, - { - "pk": 4221, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SOYANS", - "center": "POINT (813407.0011583990417421 1963257.6915171081200242)", - "surface": 25660000, - "canton": null, - "numero_insee": "26344" - } - }, - { - "pk": 21971, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SUZE-LA-ROUSSE", - "center": "POINT (800224.8293897537514567 1924404.2513337382115424)", - "surface": 30370000, - "canton": null, - "numero_insee": "26345" - } - }, - { - "pk": 6580, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SUZE", - "center": "POINT (819297.1802352030063048 1976822.0447575002908707)", - "surface": 14730000, - "canton": null, - "numero_insee": "26346" - } - }, - { - "pk": 28945, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TAIN-L'HERMITAGE", - "center": "POINT (797983.8622311840299517 2010974.7171971639618278)", - "surface": 4700000, - "canton": null, - "numero_insee": "26347" - } - }, - { - "pk": 31344, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TAULIGNAN", - "center": "POINT (810274.9589036885881796 1943209.9718122668564320)", - "surface": 35300000, - "canton": null, - "numero_insee": "26348" - } - }, - { - "pk": 21252, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TERSANNE", - "center": "POINT (810455.2268324984470382 2027497.6637381026521325)", - "surface": 9600000, - "canton": null, - "numero_insee": "26349" - } - }, - { - "pk": 14739, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TEYSSIERES", - "center": "POINT (823386.0997917188797146 1943522.3310981250833720)", - "surface": 28070000, - "canton": null, - "numero_insee": "26350" - } - }, - { - "pk": 7861, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LES TONILS", - "center": "POINT (828266.7309115803800523 1958079.3254915995057672)", - "surface": 13060000, - "canton": null, - "numero_insee": "26351" - } - }, - { - "pk": 31644, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LA TOUCHE", - "center": "POINT (802712.0141974431462586 1949652.1749388317111880)", - "surface": 8340000, - "canton": null, - "numero_insee": "26352" - } - }, - { - "pk": 10849, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "LES TOURRETTES", - "center": "POINT (795667.6754204349126667 1965708.8070505373179913)", - "surface": 6980000, - "canton": null, - "numero_insee": "26353" - } - }, - { - "pk": 36961, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TRESCHENU-CREYERS", - "center": "POINT (853942.3094438232947141 1975717.4798987573012710)", - "surface": 82090000, - "canton": null, - "numero_insee": "26354" - } - }, - { - "pk": 13214, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TRIORS", - "center": "POINT (818475.5382661886978894 2014353.1093263037037104)", - "surface": 5770000, - "canton": null, - "numero_insee": "26355" - } - }, - { - "pk": 22471, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TRUINAS", - "center": "POINT (818269.0149823073297739 1956592.2953561423346400)", - "surface": 8560000, - "canton": null, - "numero_insee": "26356" - } - }, - { - "pk": 29910, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "TULETTE", - "center": "POINT (807739.1349575144704431 1923667.5972583992406726)", - "surface": 22980000, - "canton": null, - "numero_insee": "26357" - } - }, - { - "pk": 32857, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "UPIE", - "center": "POINT (809250.8202867249492556 1981040.5424722826573998)", - "surface": 19440000, - "canton": null, - "numero_insee": "26358" - } - }, - { - "pk": 5932, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VACHERES-EN-QUINT", - "center": "POINT (830578.8415749990381300 1980322.1193714304827154)", - "surface": 5230000, - "canton": null, - "numero_insee": "26359" - } - }, - { - "pk": 35084, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VALAURIE", - "center": "POINT (797100.4720695372670889 1938592.6584187794942409)", - "surface": 12430000, - "canton": null, - "numero_insee": "26360" - } - }, - { - "pk": 31258, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VALENCE", - "center": "POINT (803529.1610977347008884 1994605.5283060516230762)", - "surface": 36790000, - "canton": null, - "numero_insee": "26362" - } - }, - { - "pk": 5582, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VALOUSE", - "center": "POINT (827286.4985551612917334 1943956.1400483902543783)", - "surface": 6290000, - "canton": null, - "numero_insee": "26363" - } - }, - { - "pk": 22147, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VASSIEUX-EN-VERCORS", - "center": "POINT (839995.2417190150590613 1991213.8586174694355577)", - "surface": 47900000, - "canton": null, - "numero_insee": "26364" - } - }, - { - "pk": 25803, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VAUNAVEYS-LA-ROCHETTE", - "center": "POINT (813373.5608208472840488 1978873.5340009457431734)", - "surface": 22180000, - "canton": null, - "numero_insee": "26365" - } - }, - { - "pk": 7381, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VEAUNES", - "center": "POINT (803776.4303567113820463 2012525.7109171424526721)", - "surface": 4200000, - "canton": null, - "numero_insee": "26366" - } - }, - { - "pk": 23593, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VENTEROL", - "center": "POINT (820140.2436257967492566 1936787.4740588543936610)", - "surface": 31450000, - "canton": null, - "numero_insee": "26367" - } - }, - { - "pk": 10156, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VERCHENY", - "center": "POINT (830746.6633031023666263 1972415.4157735358458012)", - "surface": 11280000, - "canton": null, - "numero_insee": "26368" - } - }, - { - "pk": 19596, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VERCLAUSE", - "center": "POINT (844761.0719923322321847 1937398.7753065750002861)", - "surface": 25890000, - "canton": null, - "numero_insee": "26369" - } - }, - { - "pk": 28836, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VERCOIRAN", - "center": "POINT (840654.7348859845660627 1925951.4461523881182075)", - "surface": 20250000, - "canton": null, - "numero_insee": "26370" - } - }, - { - "pk": 34646, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VERONNE", - "center": "POINT (827423.7833656418370083 1974689.3351978980936110)", - "surface": 21660000, - "canton": null, - "numero_insee": "26371" - } - }, - { - "pk": 14206, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VERS-SUR-MEOUGE", - "center": "POINT (856921.5344702105503529 1920184.6449145602528006)", - "surface": 13750000, - "canton": null, - "numero_insee": "26372" - } - }, - { - "pk": 19680, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VESC", - "center": "POINT (824436.6293761380948126 1949437.5314313815906644)", - "surface": 40460000, - "canton": null, - "numero_insee": "26373" - } - }, - { - "pk": 20753, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VILLEBOIS-LES-PINS", - "center": "POINT (860244.1509815522003919 1929623.2179646897129714)", - "surface": 10820000, - "canton": null, - "numero_insee": "26374" - } - }, - { - "pk": 33835, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VILLEFRANCHE-LE-CHATEAU", - "center": "POINT (853538.7503862839657813 1917753.0398112316615880)", - "surface": 7400000, - "canton": null, - "numero_insee": "26375" - } - }, - { - "pk": 5213, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VILLEPERDRIX", - "center": "POINT (835896.6502652933122590 1943829.6712038023397326)", - "surface": 26210000, - "canton": null, - "numero_insee": "26376" - } - }, - { - "pk": 23566, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VINSOBRES", - "center": "POINT (816496.5265460155205801 1929748.8704871628433466)", - "surface": 35100000, - "canton": null, - "numero_insee": "26377" - } - }, - { - "pk": 30491, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "VOLVENT", - "center": "POINT (839392.0889008592348546 1956472.8554032088723034)", - "surface": 16680000, - "canton": null, - "numero_insee": "26378" - } - }, - { - "pk": 9490, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GRANGES-LES-BEAUMONT", - "center": "POINT (807813.5198565862374380 2008656.2995964628644288)", - "surface": 7710000, - "canton": null, - "numero_insee": "26379" - } - }, - { - "pk": 5009, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "GERVANS", - "center": "POINT (796348.1806528443703428 2014964.7563859461806715)", - "surface": 3460000, - "canton": null, - "numero_insee": "26380" - } - }, - { - "pk": 22948, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "JAILLANS", - "center": "POINT (823242.4496291318209842 2007086.5719550659414381)", - "surface": 8950000, - "canton": null, - "numero_insee": "26381" - } - }, - { - "pk": 28633, - "model": "ishtar_common.town", - "fields": { - "departement": 27, - "name": "SAINT-VINCENT-LA-COMMANDERIE", - "center": "POINT (820432.2512319660745561 1996251.5963192775379866)", - "surface": 13270000, - "canton": null, - "numero_insee": "26382" - } - }, - { - "pk": 10676, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ACLOU", - "center": "POINT (480406.4375698384828866 2464277.1849934123456478)", - "surface": 3740000, - "canton": null, - "numero_insee": "27001" - } - }, - { - "pk": 28778, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ACON", - "center": "POINT (509396.0233223764225841 2419688.1592375212348998)", - "surface": 9280000, - "canton": null, - "numero_insee": "27002" - } - }, - { - "pk": 22056, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ACQUIGNY", - "center": "POINT (515335.0211352039477788 2463566.8327337978407741)", - "surface": 17890000, - "canton": null, - "numero_insee": "27003" - } - }, - { - "pk": 11284, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AILLY", - "center": "POINT (520245.3665583893307485 2462707.1368566732853651)", - "surface": 15690000, - "canton": null, - "numero_insee": "27005" - } - }, - { - "pk": 11595, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AIZIER", - "center": "POINT (475758.2627164314617403 2493857.5092677013017237)", - "surface": 2300000, - "canton": null, - "numero_insee": "27006" - } - }, - { - "pk": 10875, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AJOU", - "center": "POINT (485177.7202308063278906 2444003.4281091648153961)", - "surface": 9820000, - "canton": null, - "numero_insee": "27007" - } - }, - { - "pk": 35213, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ALIZAY", - "center": "POINT (515689.5325600737123750 2481081.0358565566129982)", - "surface": 8700000, - "canton": null, - "numero_insee": "27008" - } - }, - { - "pk": 34440, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AMBENAY", - "center": "POINT (482709.0389712298056111 2427972.1782124852761626)", - "surface": 16790000, - "canton": null, - "numero_insee": "27009" - } - }, - { - "pk": 26684, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AMECOURT", - "center": "POINT (556068.0784084454644471 2486721.2122621950693429)", - "surface": 5970000, - "canton": null, - "numero_insee": "27010" - } - }, - { - "pk": 27775, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AMFREVILLE-LA-CAMPAGNE", - "center": "POINT (497076.2200212735915557 2469218.7162239416502416)", - "surface": 6710000, - "canton": null, - "numero_insee": "27011" - } - }, - { - "pk": 17218, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AMFREVILLE-LES-CHAMPS", - "center": "POINT (526106.2629213186446577 2479866.9745449665933847)", - "surface": 6500000, - "canton": null, - "numero_insee": "27012" - } - }, - { - "pk": 30238, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AMFREVILLE-SOUS-LES-MONTS", - "center": "POINT (522012.2718809215584770 2478832.2259939336217940)", - "surface": 7440000, - "canton": null, - "numero_insee": "27013" - } - }, - { - "pk": 34472, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AMFREVILLE-SUR-ITON", - "center": "POINT (513040.3481644560233690 2462747.2109011840075254)", - "surface": 5380000, - "canton": null, - "numero_insee": "27014" - } - }, - { - "pk": 10329, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ANDE", - "center": "POINT (520380.4769892856711522 2470513.3129394147545099)", - "surface": 5150000, - "canton": null, - "numero_insee": "27015" - } - }, - { - "pk": 23241, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES ANDELYS", - "center": "POINT (533773.9929615692235529 2472326.0362792788073421)", - "surface": 39730000, - "canton": null, - "numero_insee": "27016" - } - }, - { - "pk": 30714, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ANGERVILLE-LA-CAMPAGNE", - "center": "POINT (513596.3292408114066347 2444039.5304348445497453)", - "surface": 3620000, - "canton": null, - "numero_insee": "27017" - } - }, - { - "pk": 17820, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "APPEVILLE-ANNEBAULT", - "center": "POINT (477359.5145732864039019 2481763.1563420086167753)", - "surface": 13530000, - "canton": null, - "numero_insee": "27018" - } - }, - { - "pk": 34930, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ARMENTIERES-SUR-AVRE", - "center": "POINT (487160.3815956577891484 2410096.8526713126339018)", - "surface": 6100000, - "canton": null, - "numero_insee": "27019" - } - }, - { - "pk": 34246, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ARNIERES-SUR-ITON", - "center": "POINT (508689.2442336825188249 2444499.0258613275364041)", - "surface": 12270000, - "canton": null, - "numero_insee": "27020" - } - }, - { - "pk": 32230, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ASNIERES", - "center": "POINT (458852.5188121363753453 2469101.7768161152489483)", - "surface": 8170000, - "canton": null, - "numero_insee": "27021" - } - }, - { - "pk": 26451, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AUBEVOYE", - "center": "POINT (526734.1334313391707838 2464562.3696376467123628)", - "surface": 7970000, - "canton": null, - "numero_insee": "27022" - } - }, - { - "pk": 7970, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AULNAY-SUR-ITON", - "center": "POINT (506086.0297169061959721 2444677.5025075711309910)", - "surface": 1530000, - "canton": null, - "numero_insee": "27023" - } - }, - { - "pk": 27301, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE RONCENAY-AUTHENAY", - "center": "POINT (504802.5368077730527148 2430557.3670444134622812)", - "surface": 8800000, - "canton": null, - "numero_insee": "27024" - } - }, - { - "pk": 37527, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AUTHEUIL-AUTHOUILLET", - "center": "POINT (523800.7569881326053292 2456332.5749346599914134)", - "surface": 11730000, - "canton": null, - "numero_insee": "27025" - } - }, - { - "pk": 6262, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AUTHEVERNES", - "center": "POINT (548609.2158129713498056 2469247.7890925374813378)", - "surface": 8170000, - "canton": null, - "numero_insee": "27026" - } - }, - { - "pk": 21211, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES AUTHIEUX", - "center": "POINT (519084.5509884950006381 2433878.3957761642523110)", - "surface": 4870000, - "canton": null, - "numero_insee": "27027" - } - }, - { - "pk": 33363, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AUTHOU", - "center": "POINT (480450.8727625346509740 2470981.8889667391777039)", - "surface": 2970000, - "canton": null, - "numero_insee": "27028" - } - }, - { - "pk": 11150, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AVIRON", - "center": "POINT (511031.5535126770846546 2451623.2200898020528257)", - "surface": 7360000, - "canton": null, - "numero_insee": "27031" - } - }, - { - "pk": 26254, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "AVRILLY", - "center": "POINT (512651.5327472954522818 2437327.1879207319580019)", - "surface": 7130000, - "canton": null, - "numero_insee": "27032" - } - }, - { - "pk": 13591, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BACQUEPUIS", - "center": "POINT (505595.9078197435010225 2455480.5636699935421348)", - "surface": 5110000, - "canton": null, - "numero_insee": "27033" - } - }, - { - "pk": 12657, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BACQUEVILLE", - "center": "POINT (529399.7938217369373888 2480895.0625444473698735)", - "surface": 11030000, - "canton": null, - "numero_insee": "27034" - } - }, - { - "pk": 31794, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BAILLEUL-LA-VALLEE", - "center": "POINT (460961.1891494557494298 2468218.6559439259581268)", - "surface": 4710000, - "canton": null, - "numero_insee": "27035" - } - }, - { - "pk": 3478, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BALINES", - "center": "POINT (500007.7018147375201806 2417508.6325647891499102)", - "surface": 3750000, - "canton": null, - "numero_insee": "27036" - } - }, - { - "pk": 30108, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BARC", - "center": "POINT (489393.0366573271458037 2454545.3757444019429386)", - "surface": 11510000, - "canton": null, - "numero_insee": "27037" - } - }, - { - "pk": 6209, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES BARILS", - "center": "POINT (488219.5206749182543717 2415109.1029262626543641)", - "surface": 9600000, - "canton": null, - "numero_insee": "27038" - } - }, - { - "pk": 27174, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BARNEVILLE-SUR-SEINE", - "center": "POINT (492213.9357610545703210 2488390.5664171380922198)", - "surface": 8750000, - "canton": null, - "numero_insee": "27039" - } - }, - { - "pk": 18222, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BARQUET", - "center": "POINT (491531.6725663288962096 2450060.1712890649214387)", - "surface": 13900000, - "canton": null, - "numero_insee": "27040" - } - }, - { - "pk": 30901, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA BARRE-EN-OUCHE", - "center": "POINT (477407.0929744878085330 2439836.2079597390256822)", - "surface": 17500000, - "canton": null, - "numero_insee": "27041" - } - }, - { - "pk": 8328, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BARVILLE", - "center": "POINT (464800.6880778470076621 2463747.5398087287321687)", - "surface": 2740000, - "canton": null, - "numero_insee": "27042" - } - }, - { - "pk": 29661, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES BAUX-DE-BRETEUIL", - "center": "POINT (487288.5808649044483900 2430812.0924918148666620)", - "surface": 34140000, - "canton": null, - "numero_insee": "27043" - } - }, - { - "pk": 26718, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES BAUX-SAINTE-CROIX", - "center": "POINT (509814.0453961817547679 2441606.4519792227074504)", - "surface": 17050000, - "canton": null, - "numero_insee": "27044" - } - }, - { - "pk": 14812, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BAZINCOURT-SUR-EPTE", - "center": "POINT (557816.7068770063342527 2481032.2173420595936477)", - "surface": 11010000, - "canton": null, - "numero_insee": "27045" - } - }, - { - "pk": 3894, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BAZOQUES", - "center": "POINT (469592.6985514991683885 2465088.0936075374484062)", - "surface": 6910000, - "canton": null, - "numero_insee": "27046" - } - }, - { - "pk": 6904, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEAUBRAY", - "center": "POINT (494653.9992539503145963 2435576.4412398487329483)", - "surface": 15410000, - "canton": null, - "numero_insee": "27047" - } - }, - { - "pk": 4709, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEAUFICEL-EN-LYONS", - "center": "POINT (541032.1007154652616009 2489897.7148718526586890)", - "surface": 7200000, - "canton": null, - "numero_insee": "27048" - } - }, - { - "pk": 29849, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEAUMESNIL", - "center": "POINT (479850.4798894161358476 2446861.1445899615064263)", - "surface": 12640000, - "canton": null, - "numero_insee": "27049" - } - }, - { - "pk": 30113, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEAUMONTEL", - "center": "POINT (486276.2599014667212032 2456320.6785646658390760)", - "surface": 11690000, - "canton": null, - "numero_insee": "27050" - } - }, - { - "pk": 20154, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEAUMONT-LE-ROGER", - "center": "POINT (484307.4763630321249366 2452401.7703150683082640)", - "surface": 36510000, - "canton": null, - "numero_insee": "27051" - } - }, - { - "pk": 33865, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE BEC-HELLOUIN", - "center": "POINT (482553.7418578380020335 2470799.2094641234725714)", - "surface": 9570000, - "canton": null, - "numero_insee": "27052" - } - }, - { - "pk": 32499, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE BEC-THOMAS", - "center": "POINT (500755.0618950763018802 2472051.0988853401504457)", - "surface": 1340000, - "canton": null, - "numero_insee": "27053" - } - }, - { - "pk": 13598, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEMECOURT", - "center": "POINT (490712.2549556196900085 2428238.7632420347072184)", - "surface": 17060000, - "canton": null, - "numero_insee": "27054" - } - }, - { - "pk": 8848, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERENGEVILLE-LA-CAMPAGNE", - "center": "POINT (506575.6872374132508412 2457990.3522857264615595)", - "surface": 9390000, - "canton": null, - "numero_insee": "27055" - } - }, - { - "pk": 23722, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERNAY", - "center": "POINT (472267.2078150975285098 2456304.5199602469801903)", - "surface": 24110000, - "canton": null, - "numero_insee": "27056" - } - }, - { - "pk": 28360, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERNIENVILLE", - "center": "POINT (504310.1227311088005081 2453668.6866200552321970)", - "surface": 7830000, - "canton": null, - "numero_insee": "27057" - } - }, - { - "pk": 36272, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERNIERES-SUR-SEINE", - "center": "POINT (527778.8929666035110131 2471275.4085814892314374)", - "surface": 6730000, - "canton": null, - "numero_insee": "27058" - } - }, - { - "pk": 24418, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERNOUVILLE", - "center": "POINT (551745.8553009489551187 2477078.9985828073695302)", - "surface": 6030000, - "canton": null, - "numero_insee": "27059" - } - }, - { - "pk": 33150, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERTHENONVILLE", - "center": "POINT (549543.1637272092048079 2465253.0021154857240617)", - "surface": 5950000, - "canton": null, - "numero_insee": "27060" - } - }, - { - "pk": 32227, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERTHOUVILLE", - "center": "POINT (474896.6043813732685521 2465032.0010120626538992)", - "surface": 7570000, - "canton": null, - "numero_insee": "27061" - } - }, - { - "pk": 33209, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERVILLE-EN-ROUMOIS", - "center": "POINT (490094.9628083943389356 2478466.6887536421418190)", - "surface": 9270000, - "canton": null, - "numero_insee": "27062" - } - }, - { - "pk": 27707, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERVILLE-LA-CAMPAGNE", - "center": "POINT (494346.6316569836344570 2448482.4977425672113895)", - "surface": 8680000, - "canton": null, - "numero_insee": "27063" - } - }, - { - "pk": 10052, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BERVILLE-SUR-MER", - "center": "POINT (456241.5952384457923472 2494396.2528985356912017)", - "surface": 6450000, - "canton": null, - "numero_insee": "27064" - } - }, - { - "pk": 17102, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEUZEVILLE", - "center": "POINT (454926.1064585942076519 2484078.8764131953939795)", - "surface": 23280000, - "canton": null, - "numero_insee": "27065" - } - }, - { - "pk": 26340, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEZU-LA-FORET", - "center": "POINT (548245.3162458983715624 2488857.2427328634075820)", - "surface": 8970000, - "canton": null, - "numero_insee": "27066" - } - }, - { - "pk": 32695, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BEZU-SAINT-ELOI", - "center": "POINT (552432.8781850215746090 2478685.7597468085587025)", - "surface": 11470000, - "canton": null, - "numero_insee": "27067" - } - }, - { - "pk": 33538, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOIS-ANZERAY", - "center": "POINT (479326.4977095405338332 2437650.6566657125949860)", - "surface": 11750000, - "canton": null, - "numero_insee": "27068" - } - }, - { - "pk": 25855, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOIS-ARNAULT", - "center": "POINT (483230.9372550756088458 2425374.7422095946967602)", - "surface": 12980000, - "canton": null, - "numero_insee": "27069" - } - }, - { - "pk": 31611, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOISEMONT", - "center": "POINT (538334.0529026746517047 2477467.3431706447154284)", - "surface": 13320000, - "canton": null, - "numero_insee": "27070" - } - }, - { - "pk": 7623, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE BOIS-HELLAIN", - "center": "POINT (458285.9584865309298038 2477102.2295581968501210)", - "surface": 3180000, - "canton": null, - "numero_insee": "27071" - } - }, - { - "pk": 27464, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOIS-JEROME-SAINT-OUEN", - "center": "POINT (542412.4929087248165160 2456387.7235373356379569)", - "surface": 10420000, - "canton": null, - "numero_insee": "27072" - } - }, - { - "pk": 12768, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOIS-LE-ROI", - "center": "POINT (526825.0653678562957793 2429639.9831073642708361)", - "surface": 5500000, - "canton": null, - "numero_insee": "27073" - } - }, - { - "pk": 9466, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOISNEY", - "center": "POINT (476811.8154520348180085 2463346.7799668139778078)", - "surface": 5620000, - "canton": null, - "numero_insee": "27074" - } - }, - { - "pk": 25279, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOIS-NORMAND-PRES-LYRE", - "center": "POINT (479449.8031730499933474 2434849.7973828446120024)", - "surface": 16810000, - "canton": null, - "numero_insee": "27075" - } - }, - { - "pk": 37286, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOISSET-LES-PREVANCHES", - "center": "POINT (526427.3105721999891102 2441344.5359204448759556)", - "surface": 7410000, - "canton": null, - "numero_insee": "27076" - } - }, - { - "pk": 33864, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOISSEY-LE-CHATEL", - "center": "POINT (486713.7941276482888497 2475937.0156182628124952)", - "surface": 4390000, - "canton": null, - "numero_insee": "27077" - } - }, - { - "pk": 10632, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA BOISSIERE", - "center": "POINT (529043.8806577675277367 2439565.1429356061853468)", - "surface": 3460000, - "canton": null, - "numero_insee": "27078" - } - }, - { - "pk": 28666, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOISSY-LAMBERVILLE", - "center": "POINT (471607.1312344795442186 2463503.7519617062062025)", - "surface": 8120000, - "canton": null, - "numero_insee": "27079" - } - }, - { - "pk": 10768, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BONCOURT", - "center": "POINT (523875.7910075773252174 2447327.2656179475598037)", - "surface": 4160000, - "canton": null, - "numero_insee": "27081" - } - }, - { - "pk": 7378, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA BONNEVILLE-SUR-ITON", - "center": "POINT (504681.8665392354596406 2445066.0894253025762737)", - "surface": 3970000, - "canton": null, - "numero_insee": "27082" - } - }, - { - "pk": 33861, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BONNEVILLE-APTOT", - "center": "POINT (484523.3336467661429197 2474617.9992336402647197)", - "surface": 7520000, - "canton": null, - "numero_insee": "27083" - } - }, - { - "pk": 33362, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSC-BENARD-COMMIN", - "center": "POINT (491876.8724173628143035 2480782.9539250317029655)", - "surface": 4210000, - "canton": null, - "numero_insee": "27084" - } - }, - { - "pk": 13959, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSC-BENARD-CRESCY", - "center": "POINT (488673.3953118552453816 2480956.4769967636093497)", - "surface": 4420000, - "canton": null, - "numero_insee": "27085" - } - }, - { - "pk": 5879, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSC-RENOULT-EN-OUCHE", - "center": "POINT (481402.8522019721567631 2440669.8950853580608964)", - "surface": 7870000, - "canton": null, - "numero_insee": "27088" - } - }, - { - "pk": 27977, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSC-RENOULT-EN-ROUMOIS", - "center": "POINT (486087.7020857583265752 2479033.7990368795581162)", - "surface": 2650000, - "canton": null, - "numero_insee": "27089" - } - }, - { - "pk": 24582, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE BOSC-ROGER-EN-ROUMOIS", - "center": "POINT (497001.3840231980429962 2478223.8721150956116617)", - "surface": 9990000, - "canton": null, - "numero_insee": "27090" - } - }, - { - "pk": 31792, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSGOUET", - "center": "POINT (491540.9671644510817714 2485082.8927123714238405)", - "surface": 9530000, - "canton": null, - "numero_insee": "27091" - } - }, - { - "pk": 7397, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSGUERARD-DE-MARCOUVILLE", - "center": "POINT (491221.3509549399022944 2475374.0612538033165038)", - "surface": 12110000, - "canton": null, - "numero_insee": "27092" - } - }, - { - "pk": 20722, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSNORMAND", - "center": "POINT (496015.7803367412416264 2476414.5315300067886710)", - "surface": 3360000, - "canton": null, - "numero_insee": "27093" - } - }, - { - "pk": 32190, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSQUENTIN", - "center": "POINT (545627.1530146197183058 2490836.6373952450230718)", - "surface": 6920000, - "canton": null, - "numero_insee": "27094" - } - }, - { - "pk": 27173, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOSROBERT", - "center": "POINT (485460.3943467196659185 2470222.9476136984303594)", - "surface": 9320000, - "canton": null, - "numero_insee": "27095" - } - }, - { - "pk": 3498, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES BOTTEREAUX", - "center": "POINT (478076.3496676156064495 2431536.1761324591934681)", - "surface": 22250000, - "canton": null, - "numero_insee": "27096" - } - }, - { - "pk": 5892, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOUAFLES", - "center": "POINT (530713.0930247395299375 2467397.3524490366689861)", - "surface": 12790000, - "canton": null, - "numero_insee": "27097" - } - }, - { - "pk": 6721, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOUCHEVILLIERS", - "center": "POINT (554547.1694776037475094 2489110.0143065676093102)", - "surface": 4370000, - "canton": null, - "numero_insee": "27098" - } - }, - { - "pk": 4337, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE BOULAY-MORIN", - "center": "POINT (515917.7842736184829846 2453665.2100582337006927)", - "surface": 5520000, - "canton": null, - "numero_insee": "27099" - } - }, - { - "pk": 34544, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOULLEVILLE", - "center": "POINT (458699.2617829006630927 2487612.3238749364390969)", - "surface": 7230000, - "canton": null, - "numero_insee": "27100" - } - }, - { - "pk": 30955, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOUQUELON", - "center": "POINT (465878.4430119384778664 2490673.6720463670790195)", - "surface": 11750000, - "canton": null, - "numero_insee": "27101" - } - }, - { - "pk": 16068, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOUQUETOT", - "center": "POINT (486130.4466379228979349 2485938.5355151426047087)", - "surface": 13130000, - "canton": null, - "numero_insee": "27102" - } - }, - { - "pk": 32226, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOURG-ACHARD", - "center": "POINT (488847.7529826737008989 2484059.8932018210180104)", - "surface": 12490000, - "canton": null, - "numero_insee": "27103" - } - }, - { - "pk": 13522, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOURG-BEAUDOUIN", - "center": "POINT (524938.9394759889692068 2487862.3157573970966041)", - "surface": 5320000, - "canton": null, - "numero_insee": "27104" - } - }, - { - "pk": 13346, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOURGTHEROULDE-INFREVILLE", - "center": "POINT (493693.6867897882475518 2478896.8354193801060319)", - "surface": 11680000, - "canton": null, - "numero_insee": "27105" - } - }, - { - "pk": 8207, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOURNAINVILLE-FAVEROLLES", - "center": "POINT (465933.6603425440262072 2459854.3840309395454824)", - "surface": 7030000, - "canton": null, - "numero_insee": "27106" - } - }, - { - "pk": 11071, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOURNEVILLE", - "center": "POINT (475293.6617559705046006 2489550.9573745727539062)", - "surface": 11040000, - "canton": null, - "numero_insee": "27107" - } - }, - { - "pk": 33298, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BOURTH", - "center": "POINT (487384.1281201514648274 2419305.0529525210149586)", - "surface": 18630000, - "canton": null, - "numero_insee": "27108" - } - }, - { - "pk": 6321, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BRAY", - "center": "POINT (490271.1290157476323657 2457254.4404171910136938)", - "surface": 5790000, - "canton": null, - "numero_insee": "27109" - } - }, - { - "pk": 34536, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BRESTOT", - "center": "POINT (479542.4998145897407085 2483982.6612220732495189)", - "surface": 8820000, - "canton": null, - "numero_insee": "27110" - } - }, - { - "pk": 8439, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BRETAGNOLLES", - "center": "POINT (527046.0172897778684273 2439148.2215629122219980)", - "surface": 3810000, - "canton": null, - "numero_insee": "27111" - } - }, - { - "pk": 33063, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BRETEUIL", - "center": "POINT (494507.0881250659585930 2429170.8992571444250643)", - "surface": 27650000, - "canton": null, - "numero_insee": "27112" - } - }, - { - "pk": 26317, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BRETIGNY", - "center": "POINT (477858.5061797411181033 2469859.6733539621345699)", - "surface": 5480000, - "canton": null, - "numero_insee": "27113" - } - }, - { - "pk": 36133, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BREUILPONT", - "center": "POINT (534234.4799752284307033 2441109.4280394352972507)", - "surface": 12210000, - "canton": null, - "numero_insee": "27114" - } - }, - { - "pk": 7579, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BREUX-SUR-AVRE", - "center": "POINT (506896.1482933076331392 2419467.2230446604080498)", - "surface": 7140000, - "canton": null, - "numero_insee": "27115" - } - }, - { - "pk": 19968, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BRIONNE", - "center": "POINT (481487.1497774965828285 2466687.7093235012143850)", - "surface": 16810000, - "canton": null, - "numero_insee": "27116" - } - }, - { - "pk": 28126, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BROGLIE", - "center": "POINT (467445.5888736852211878 2446458.0835829284042120)", - "surface": 7970000, - "canton": null, - "numero_insee": "27117" - } - }, - { - "pk": 27108, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BROSVILLE", - "center": "POINT (510582.1914013029308990 2457523.3585246223956347)", - "surface": 7210000, - "canton": null, - "numero_insee": "27118" - } - }, - { - "pk": 10254, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BUEIL", - "center": "POINT (534563.0356107634725049 2437709.8928257972002029)", - "surface": 4890000, - "canton": null, - "numero_insee": "27119" - } - }, - { - "pk": 7732, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BUREY", - "center": "POINT (497981.2012218268355355 2444610.1123591489158571)", - "surface": 5340000, - "canton": null, - "numero_insee": "27120" - } - }, - { - "pk": 29421, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BUS-SAINT-REMY", - "center": "POINT (548777.7999420592095703 2461043.8786259894259274)", - "surface": 7790000, - "canton": null, - "numero_insee": "27121" - } - }, - { - "pk": 5909, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAHAIGNES", - "center": "POINT (546818.2062656206544489 2468032.0570572642609477)", - "surface": 9560000, - "canton": null, - "numero_insee": "27122" - } - }, - { - "pk": 31096, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAILLOUET-ORGEVILLE", - "center": "POINT (525292.4648179464275017 2445437.8094244860112667)", - "surface": 7910000, - "canton": null, - "numero_insee": "27123" - } - }, - { - "pk": 6558, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAILLY-SUR-EURE", - "center": "POINT (518279.2003946247277781 2458488.0218426398932934)", - "surface": 3310000, - "canton": null, - "numero_insee": "27124" - } - }, - { - "pk": 35712, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CALLEVILLE", - "center": "POINT (484687.3409929974004626 2466914.3980212295427918)", - "surface": 8600000, - "canton": null, - "numero_insee": "27125" - } - }, - { - "pk": 34275, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAMPIGNY", - "center": "POINT (470758.2607824467122555 2481408.2299810783006251)", - "surface": 10880000, - "canton": null, - "numero_insee": "27126" - } - }, - { - "pk": 25094, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CANAPPEVILLE", - "center": "POINT (508937.1319279940798879 2462813.1300791706889868)", - "surface": 10450000, - "canton": null, - "numero_insee": "27127" - } - }, - { - "pk": 6494, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CANTIERS", - "center": "POINT (545092.9998854722362012 2470919.5227902247570455)", - "surface": 2310000, - "canton": null, - "numero_insee": "27128" - } - }, - { - "pk": 33283, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAORCHES-SAINT-NICOLAS", - "center": "POINT (469177.8262312392471358 2454777.9251274680718780)", - "surface": 11910000, - "canton": null, - "numero_insee": "27129" - } - }, - { - "pk": 26876, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAPELLE-LES-GRANDS", - "center": "POINT (463600.2236356404609978 2451629.6662409491837025)", - "surface": 13330000, - "canton": null, - "numero_insee": "27130" - } - }, - { - "pk": 27119, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CARSIX", - "center": "POINT (478626.9733946324558929 2461660.7296454743482172)", - "surface": 6590000, - "canton": null, - "numero_insee": "27131" - } - }, - { - "pk": 22488, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAUGE", - "center": "POINT (505256.4247654754435644 2448172.9255726053379476)", - "surface": 11600000, - "canton": null, - "numero_insee": "27132" - } - }, - { - "pk": 16673, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAUMONT", - "center": "POINT (496133.5834985327674076 2486321.8050352013669908)", - "surface": 6100000, - "canton": null, - "numero_insee": "27133" - } - }, - { - "pk": 6119, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CAUVERVILLE-EN-ROUMOIS", - "center": "POINT (477128.6955168811837211 2485463.5884630489163101)", - "surface": 3310000, - "canton": null, - "numero_insee": "27134" - } - }, - { - "pk": 6316, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CESSEVILLE", - "center": "POINT (500709.9043135432875715 2465446.4601975269615650)", - "surface": 6570000, - "canton": null, - "numero_insee": "27135" - } - }, - { - "pk": 24545, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAIGNES", - "center": "POINT (535190.0078233870444819 2446520.9932684320956469)", - "surface": 6460000, - "canton": null, - "numero_insee": "27136" - } - }, - { - "pk": 4114, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAISE-DIEU-DU-THEIL", - "center": "POINT (484788.3391791906324215 2418583.0212466721422970)", - "surface": 5930000, - "canton": null, - "numero_insee": "27137" - } - }, - { - "pk": 27091, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAMBLAC", - "center": "POINT (470057.9193868376896717 2445178.8707740847021341)", - "surface": 21190000, - "canton": null, - "numero_insee": "27138" - } - }, - { - "pk": 28827, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAMBRAY", - "center": "POINT (525621.8246091289911419 2453946.1734869945794344)", - "surface": 8470000, - "canton": null, - "numero_insee": "27140" - } - }, - { - "pk": 8085, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAMP-DOLENT", - "center": "POINT (502615.5605677027488127 2440846.1058291406370699)", - "surface": 2330000, - "canton": null, - "numero_insee": "27141" - } - }, - { - "pk": 34448, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAMPENARD", - "center": "POINT (526297.2192330975085497 2456953.7715472117997706)", - "surface": 2310000, - "canton": null, - "numero_insee": "27142" - } - }, - { - "pk": 32168, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAMPIGNOLLES", - "center": "POINT (484501.3890224448405206 2441095.8790893414989114)", - "surface": 2610000, - "canton": null, - "numero_insee": "27143" - } - }, - { - "pk": 34165, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAMPIGNY-LA-FUTELAYE", - "center": "POINT (523914.9655659914715216 2430616.4080284843221307)", - "surface": 16080000, - "canton": null, - "numero_insee": "27144" - } - }, - { - "pk": 33084, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHANTELOUP", - "center": "POINT (503984.5755326964426786 2432651.9831798295490444)", - "surface": 4210000, - "canton": null, - "numero_insee": "27145" - } - }, - { - "pk": 36649, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA CHAPELLE-BAYVEL", - "center": "POINT (459382.4443541088839993 2477611.6276811650022864)", - "surface": 4960000, - "canton": null, - "numero_insee": "27146" - } - }, - { - "pk": 13326, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA CHAPELLE-DU-BOIS-DES-FAULX", - "center": "POINT (514887.2081492154393345 2457258.9936058395542204)", - "surface": 4340000, - "canton": null, - "numero_insee": "27147" - } - }, - { - "pk": 38036, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA CHAPELLE-GAUTHIER", - "center": "POINT (462857.7682761829928495 2444618.8753388212062418)", - "surface": 16580000, - "canton": null, - "numero_insee": "27148" - } - }, - { - "pk": 30107, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA CHAPELLE-HARENG", - "center": "POINT (459739.1480469850357622 2458702.3547847964800894)", - "surface": 4100000, - "canton": null, - "numero_insee": "27149" - } - }, - { - "pk": 14239, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA CHAPELLE-REANVILLE", - "center": "POINT (530111.1237697118194774 2455584.6447981093078852)", - "surface": 8040000, - "canton": null, - "numero_insee": "27150" - } - }, - { - "pk": 10848, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHARLEVAL", - "center": "POINT (531147.4218014352954924 2487313.6861028335988522)", - "surface": 14070000, - "canton": null, - "numero_insee": "27151" - } - }, - { - "pk": 12543, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHATEAU-SUR-EPTE", - "center": "POINT (550527.8615768215386197 2467162.4580961880274117)", - "surface": 4580000, - "canton": null, - "numero_insee": "27152" - } - }, - { - "pk": 29705, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAUVINCOURT-PROVEMONT", - "center": "POINT (549653.0175519031472504 2476060.8765806904993951)", - "surface": 10930000, - "canton": null, - "numero_insee": "27153" - } - }, - { - "pk": 13056, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHAVIGNY-BAILLEUL", - "center": "POINT (516299.5214836982195266 2431853.8541536508128047)", - "surface": 18480000, - "canton": null, - "numero_insee": "27154" - } - }, - { - "pk": 10636, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHENNEBRUN", - "center": "POINT (484854.7927802932681516 2410578.0568061033263803)", - "surface": 2940000, - "canton": null, - "numero_insee": "27155" - } - }, - { - "pk": 26515, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CHERONVILLIERS", - "center": "POINT (484153.9140207451418974 2422680.5620031408034265)", - "surface": 21440000, - "canton": null, - "numero_insee": "27156" - } - }, - { - "pk": 37680, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE CHESNE", - "center": "POINT (497173.8034128226572648 2433395.8993000774644315)", - "surface": 17870000, - "canton": null, - "numero_insee": "27157" - } - }, - { - "pk": 21044, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CIERREY", - "center": "POINT (521591.0966696575051174 2445306.9033193602226675)", - "surface": 4020000, - "canton": null, - "numero_insee": "27158" - } - }, - { - "pk": 25852, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CINTRAY", - "center": "POINT (493867.3516167368507013 2421860.6147604719735682)", - "surface": 16270000, - "canton": null, - "numero_insee": "27159" - } - }, - { - "pk": 35697, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CIVIERES", - "center": "POINT (544648.6815366446971893 2464211.4806087967008352)", - "surface": 7720000, - "canton": null, - "numero_insee": "27160" - } - }, - { - "pk": 15267, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CLAVILLE", - "center": "POINT (503532.9499001139192842 2450860.3777869073674083)", - "surface": 17770000, - "canton": null, - "numero_insee": "27161" - } - }, - { - "pk": 12486, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COLLANDRES-QUINCARNON", - "center": "POINT (492074.3582605036790483 2444961.2973241494037211)", - "surface": 8000000, - "canton": null, - "numero_insee": "27162" - } - }, - { - "pk": 11743, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COLLETOT", - "center": "POINT (475431.8855972051969729 2484949.1996382116340101)", - "surface": 4300000, - "canton": null, - "numero_insee": "27163" - } - }, - { - "pk": 26635, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COMBON", - "center": "POINT (493881.5523067636531778 2456283.7752253431826830)", - "surface": 16210000, - "canton": null, - "numero_insee": "27164" - } - }, - { - "pk": 30100, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CONCHES-EN-OUCHE", - "center": "POINT (497014.6996845026733354 2440499.3447669981978834)", - "surface": 16680000, - "canton": null, - "numero_insee": "27165" - } - }, - { - "pk": 4115, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CONDE-SUR-ITON", - "center": "POINT (499333.2996798781678081 2426409.1090543451718986)", - "surface": 19530000, - "canton": null, - "numero_insee": "27166" - } - }, - { - "pk": 8003, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CONDE-SUR-RISLE", - "center": "POINT (474170.1452377489185892 2480235.7521261973306537)", - "surface": 9910000, - "canton": null, - "numero_insee": "27167" - } - }, - { - "pk": 8658, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CONNELLES", - "center": "POINT (522751.8476842846139334 2474135.3812551009468734)", - "surface": 4150000, - "canton": null, - "numero_insee": "27168" - } - }, - { - "pk": 10176, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CONTEVILLE", - "center": "POINT (458656.1862784492550418 2492815.2387377317063510)", - "surface": 10680000, - "canton": null, - "numero_insee": "27169" - } - }, - { - "pk": 21083, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CORMEILLES", - "center": "POINT (457707.9809030148899183 2474395.7143528843298554)", - "surface": 3060000, - "canton": null, - "numero_insee": "27170" - } - }, - { - "pk": 24108, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE CORMIER", - "center": "POINT (523808.2467252090573311 2443424.1109971064142883)", - "surface": 10560000, - "canton": null, - "numero_insee": "27171" - } - }, - { - "pk": 13859, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CORNEUIL", - "center": "POINT (512292.1001043762080371 2432420.8982850555330515)", - "surface": 11150000, - "canton": null, - "numero_insee": "27172" - } - }, - { - "pk": 12775, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CORNEVILLE-LA-FOUQUETIERE", - "center": "POINT (480504.4027774123242125 2452470.2747181784361601)", - "surface": 4020000, - "canton": null, - "numero_insee": "27173" - } - }, - { - "pk": 15469, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CORNEVILLE-SUR-RISLE", - "center": "POINT (473539.1092159451218322 2483932.8711847662925720)", - "surface": 13330000, - "canton": null, - "numero_insee": "27174" - } - }, - { - "pk": 35702, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CORNY", - "center": "POINT (535941.0335752976825461 2476446.7400278858840466)", - "surface": 5250000, - "canton": null, - "numero_insee": "27175" - } - }, - { - "pk": 35769, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COUDRAY", - "center": "POINT (538886.8065253465902060 2483175.5826573204249144)", - "surface": 7900000, - "canton": null, - "numero_insee": "27176" - } - }, - { - "pk": 9698, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COUDRES", - "center": "POINT (519117.8857809752225876 2429875.9717712500132620)", - "surface": 15360000, - "canton": null, - "numero_insee": "27177" - } - }, - { - "pk": 29453, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COURBEPINE", - "center": "POINT (470631.4319382501998916 2460493.7085884590633214)", - "surface": 12140000, - "canton": null, - "numero_insee": "27179" - } - }, - { - "pk": 36847, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COURCELLES-SUR-SEINE", - "center": "POINT (529126.3492135136621073 2465683.0230956715531647)", - "surface": 5580000, - "canton": null, - "numero_insee": "27180" - } - }, - { - "pk": 22292, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COURDEMANCHE", - "center": "POINT (522076.3335224368493073 2423095.9933457104489207)", - "surface": 9110000, - "canton": null, - "numero_insee": "27181" - } - }, - { - "pk": 37612, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "COURTEILLES", - "center": "POINT (501618.6743851893697865 2416321.2016104231588542)", - "surface": 6220000, - "canton": null, - "numero_insee": "27182" - } - }, - { - "pk": 26898, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA COUTURE-BOUSSEY", - "center": "POINT (530990.9069944253424183 2434077.6832539453171194)", - "surface": 11020000, - "canton": null, - "numero_insee": "27183" - } - }, - { - "pk": 5475, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CRASVILLE", - "center": "POINT (507691.4852813892066479 2468206.2687397743575275)", - "surface": 2470000, - "canton": null, - "numero_insee": "27184" - } - }, - { - "pk": 9167, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CRESTOT", - "center": "POINT (500287.2142327663605101 2468144.6945901717990637)", - "surface": 6360000, - "canton": null, - "numero_insee": "27185" - } - }, - { - "pk": 28182, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CRIQUEBEUF-LA-CAMPAGNE", - "center": "POINT (502293.3604058813652955 2467560.9854177339002490)", - "surface": 7810000, - "canton": null, - "numero_insee": "27187" - } - }, - { - "pk": 12160, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CRIQUEBEUF-SUR-SEINE", - "center": "POINT (510012.1117606678744778 2477931.8073792681097984)", - "surface": 14680000, - "canton": null, - "numero_insee": "27188" - } - }, - { - "pk": 5385, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA CROISILLE", - "center": "POINT (500284.2361404174007475 2444429.1232334328815341)", - "surface": 5360000, - "canton": null, - "numero_insee": "27189" - } - }, - { - "pk": 28129, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CROISY-SUR-EURE", - "center": "POINT (527172.7455522234085947 2447955.1387682626955211)", - "surface": 3970000, - "canton": null, - "numero_insee": "27190" - } - }, - { - "pk": 6777, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA CROIX-SAINT-LEUFROY", - "center": "POINT (520482.1534505956806242 2458306.2383948531933129)", - "surface": 15100000, - "canton": null, - "numero_insee": "27191" - } - }, - { - "pk": 33053, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CROSVILLE-LA-VIEILLE", - "center": "POINT (497432.9389366905670613 2462417.2720708590932190)", - "surface": 7820000, - "canton": null, - "numero_insee": "27192" - } - }, - { - "pk": 7359, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CROTH", - "center": "POINT (528836.2904053905513138 2428455.9348512087017298)", - "surface": 10550000, - "canton": null, - "numero_insee": "27193" - } - }, - { - "pk": 11178, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "CUVERVILLE", - "center": "POINT (529636.6086832507280633 2476494.2306741229258478)", - "surface": 6170000, - "canton": null, - "numero_insee": "27194" - } - }, - { - "pk": 26641, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DAME-MARIE", - "center": "POINT (502357.5970361631480046 2423732.4148896881379187)", - "surface": 11440000, - "canton": null, - "numero_insee": "27195" - } - }, - { - "pk": 31774, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES DAMPS", - "center": "POINT (515215.0711355347884819 2477975.1107526295818388)", - "surface": 4770000, - "canton": null, - "numero_insee": "27196" - } - }, - { - "pk": 14340, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DAMPSMESNIL", - "center": "POINT (549859.2171583471354097 2463354.4084436269477010)", - "surface": 5540000, - "canton": null, - "numero_insee": "27197" - } - }, - { - "pk": 5799, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DAMVILLE", - "center": "POINT (507706.7953229462727904 2430281.3228369890712202)", - "surface": 11750000, - "canton": null, - "numero_insee": "27198" - } - }, - { - "pk": 13515, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DANGU", - "center": "POINT (552773.1763435998000205 2473885.5328109515830874)", - "surface": 8020000, - "canton": null, - "numero_insee": "27199" - } - }, - { - "pk": 7714, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DARDEZ", - "center": "POINT (517411.1683986887801439 2454578.2364256079308689)", - "surface": 2860000, - "canton": null, - "numero_insee": "27200" - } - }, - { - "pk": 29664, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DAUBEUF-LA-CAMPAGNE", - "center": "POINT (504603.8425204920931719 2466479.4864427936263382)", - "surface": 6470000, - "canton": null, - "numero_insee": "27201" - } - }, - { - "pk": 30262, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DAUBEUF-PRES-VATTEVILLE", - "center": "POINT (525254.1113558075157925 2474056.1661218828521669)", - "surface": 11270000, - "canton": null, - "numero_insee": "27202" - } - }, - { - "pk": 35404, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DOUAINS", - "center": "POINT (533760.8027403659652919 2449911.3242190289311111)", - "surface": 11230000, - "canton": null, - "numero_insee": "27203" - } - }, - { - "pk": 27765, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DOUDEAUVILLE-EN-VEXIN", - "center": "POINT (545611.4728000101167709 2480730.1236492041498423)", - "surface": 5910000, - "canton": null, - "numero_insee": "27204" - } - }, - { - "pk": 3695, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DOUVILLE-SUR-ANDELLE", - "center": "POINT (525086.5191757825668901 2482159.9393018870614469)", - "surface": 4520000, - "canton": null, - "numero_insee": "27205" - } - }, - { - "pk": 15300, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DROISY", - "center": "POINT (510971.1937362949829549 2422803.3875832799822092)", - "surface": 17740000, - "canton": null, - "numero_insee": "27206" - } - }, - { - "pk": 25655, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DRUCOURT", - "center": "POINT (462836.8201211791019887 2459228.3364581144414842)", - "surface": 12020000, - "canton": null, - "numero_insee": "27207" - } - }, - { - "pk": 32821, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "DURANVILLE", - "center": "POINT (465815.3631708719767630 2462054.8396234451793134)", - "surface": 4730000, - "canton": null, - "numero_insee": "27208" - } - }, - { - "pk": 10029, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ECAQUELON", - "center": "POINT (481993.6724800434894860 2477999.1811663270927966)", - "surface": 13140000, - "canton": null, - "numero_insee": "27209" - } - }, - { - "pk": 4999, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ECARDENVILLE-LA-CAMPAGNE", - "center": "POINT (490252.8469842390622944 2459455.7282860456034541)", - "surface": 7440000, - "canton": null, - "numero_insee": "27210" - } - }, - { - "pk": 14555, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ECARDENVILLE-SUR-EURE", - "center": "POINT (521893.8081675230641849 2457017.1463406402617693)", - "surface": 6710000, - "canton": null, - "numero_insee": "27211" - } - }, - { - "pk": 7842, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ECAUVILLE", - "center": "POINT (501760.3985862741246819 2459451.2878082883544266)", - "surface": 3350000, - "canton": null, - "numero_insee": "27212" - } - }, - { - "pk": 17263, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ECOS", - "center": "POINT (545970.3217269459273666 2461720.8895185920409858)", - "surface": 15270000, - "canton": null, - "numero_insee": "27213" - } - }, - { - "pk": 28417, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ECOUIS", - "center": "POINT (534017.4196795193711296 2479132.4192401086911559)", - "surface": 13160000, - "canton": null, - "numero_insee": "27214" - } - }, - { - "pk": 24061, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ECQUETOT", - "center": "POINT (503421.4532151064486243 2464268.2265772894024849)", - "surface": 5580000, - "canton": null, - "numero_insee": "27215" - } - }, - { - "pk": 25846, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EMALLEVILLE", - "center": "POINT (513792.3941045101382770 2456549.4210539413616061)", - "surface": 4190000, - "canton": null, - "numero_insee": "27216" - } - }, - { - "pk": 29239, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EMANVILLE", - "center": "POINT (495417.3524984882096760 2452093.7733947215601802)", - "surface": 10780000, - "canton": null, - "numero_insee": "27217" - } - }, - { - "pk": 19826, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EPAIGNES", - "center": "POINT (462792.6718866404262371 2476639.2292513521388173)", - "surface": 26330000, - "canton": null, - "numero_insee": "27218" - } - }, - { - "pk": 7878, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EPEGARD", - "center": "POINT (493301.4595452180365101 2465885.2168991263024509)", - "surface": 4390000, - "canton": null, - "numero_insee": "27219" - } - }, - { - "pk": 7595, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EPIEDS", - "center": "POINT (530960.0374358908738941 2437779.9126502727158368)", - "surface": 4820000, - "canton": null, - "numero_insee": "27220" - } - }, - { - "pk": 15244, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EPINAY", - "center": "POINT (475874.6563337625702843 2443626.0351521037518978)", - "surface": 13740000, - "canton": null, - "numero_insee": "27221" - } - }, - { - "pk": 23179, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EPREVILLE-EN-LIEUVIN", - "center": "POINT (468859.9510455864947289 2468984.5464623137377203)", - "surface": 6740000, - "canton": null, - "numero_insee": "27222" - } - }, - { - "pk": 9913, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EPREVILLE-EN-ROUMOIS", - "center": "POINT (486468.8247856403468177 2481338.4277660902589560)", - "surface": 6670000, - "canton": null, - "numero_insee": "27223" - } - }, - { - "pk": 28369, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EPREVILLE-PRES-LE-NEUBOURG", - "center": "POINT (493350.5025279544061050 2459981.7852008519694209)", - "surface": 7770000, - "canton": null, - "numero_insee": "27224" - } - }, - { - "pk": 33295, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES ESSARTS", - "center": "POINT (501387.9924090460408479 2432029.9861415261402726)", - "surface": 15150000, - "canton": null, - "numero_insee": "27225" - } - }, - { - "pk": 25736, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ETREPAGNY", - "center": "POINT (547522.5754918198799714 2479545.3178815436549485)", - "surface": 20460000, - "canton": null, - "numero_insee": "27226" - } - }, - { - "pk": 10651, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ETREVILLE", - "center": "POINT (477806.6821183147258125 2488170.9173013605177402)", - "surface": 11290000, - "canton": null, - "numero_insee": "27227" - } - }, - { - "pk": 32461, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ETURQUERAYE", - "center": "POINT (480217.9914779454120435 2486990.1633227183483541)", - "surface": 6800000, - "canton": null, - "numero_insee": "27228" - } - }, - { - "pk": 24031, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EVREUX", - "center": "POINT (512466.5248129502288066 2447532.4514582976698875)", - "surface": 26340000, - "canton": null, - "numero_insee": "27229" - } - }, - { - "pk": 29701, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "EZY-SUR-EURE", - "center": "POINT (532119.9412888797232881 2430684.8030188698321581)", - "surface": 8860000, - "canton": null, - "numero_insee": "27230" - } - }, - { - "pk": 32592, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FAINS", - "center": "POINT (530302.1134647168219090 2444679.0352718601934612)", - "surface": 3750000, - "canton": null, - "numero_insee": "27231" - } - }, - { - "pk": 6266, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FARCEAUX", - "center": "POINT (541136.4811299419961870 2477390.6647216007113457)", - "surface": 7630000, - "canton": null, - "numero_insee": "27232" - } - }, - { - "pk": 6355, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FATOUVILLE-GRESTAIN", - "center": "POINT (454356.2687626488041133 2492479.4588490268215537)", - "surface": 10340000, - "canton": null, - "numero_insee": "27233" - } - }, - { - "pk": 5761, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FAUVILLE", - "center": "POINT (516666.5181573592126369 2447867.6144568575546145)", - "surface": 3400000, - "canton": null, - "numero_insee": "27234" - } - }, - { - "pk": 6563, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FAVEROLLES-LA-CAMPAGNE", - "center": "POINT (496753.8760824630735442 2447802.0371035011485219)", - "surface": 4690000, - "canton": null, - "numero_insee": "27235" - } - }, - { - "pk": 31793, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE FAVRIL", - "center": "POINT (467880.1031081951223314 2466474.8082617558538914)", - "surface": 4080000, - "canton": null, - "numero_insee": "27237" - } - }, - { - "pk": 6206, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FERRIERES-HAUT-CLOCHER", - "center": "POINT (501257.3793249663431197 2447739.4054723079316318)", - "surface": 11400000, - "canton": null, - "numero_insee": "27238" - } - }, - { - "pk": 35903, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FERRIERES-SAINT-HILAIRE", - "center": "POINT (470725.1583841410465539 2449187.0562354899011552)", - "surface": 9870000, - "canton": null, - "numero_insee": "27239" - } - }, - { - "pk": 4755, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA FERRIERE-SUR-RISLE", - "center": "POINT (486485.1421832264168188 2443213.7490989146754146)", - "surface": 250000, - "canton": null, - "numero_insee": "27240" - } - }, - { - "pk": 12479, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FEUGUEROLLES", - "center": "POINT (504857.2165442973491736 2460077.4316337318159640)", - "surface": 8210000, - "canton": null, - "numero_insee": "27241" - } - }, - { - "pk": 12362, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE FIDELAIRE", - "center": "POINT (487517.3109508398920298 2439419.7801734595559537)", - "surface": 33350000, - "canton": null, - "numero_insee": "27242" - } - }, - { - "pk": 7212, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FIQUEFLEUR-EQUAINVILLE", - "center": "POINT (453268.9009716145228595 2490869.4558740844950080)", - "surface": 9650000, - "canton": null, - "numero_insee": "27243" - } - }, - { - "pk": 36727, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FLANCOURT-CATELON", - "center": "POINT (485056.4036382413469255 2482727.5926272580400109)", - "surface": 8040000, - "canton": null, - "numero_insee": "27244" - } - }, - { - "pk": 7650, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FLEURY-LA-FORET", - "center": "POINT (543313.3411373180570081 2492318.2617288599722087)", - "surface": 7830000, - "canton": null, - "numero_insee": "27245" - } - }, - { - "pk": 4634, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FLEURY-SUR-ANDELLE", - "center": "POINT (528360.8625336899422109 2485489.3190647694282234)", - "surface": 3760000, - "canton": null, - "numero_insee": "27246" - } - }, - { - "pk": 13939, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FLIPOU", - "center": "POINT (523403.8974853444960900 2479944.5205012909136713)", - "surface": 6980000, - "canton": null, - "numero_insee": "27247" - } - }, - { - "pk": 37357, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FOLLEVILLE", - "center": "POINT (466900.2513234391808510 2463965.0656702388077974)", - "surface": 6110000, - "canton": null, - "numero_insee": "27248" - } - }, - { - "pk": 25451, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FONTAINE-BELLENGER", - "center": "POINT (520924.9370404810179025 2465214.4214445296674967)", - "surface": 5010000, - "canton": null, - "numero_insee": "27249" - } - }, - { - "pk": 13195, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FONTAINE-HEUDEBOURG", - "center": "POINT (518566.0434064146829769 2460091.4560885736718774)", - "surface": 4040000, - "canton": null, - "numero_insee": "27250" - } - }, - { - "pk": 18786, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FONTAINE-L'ABBE", - "center": "POINT (479477.2477252630051225 2455663.8579250825569034)", - "surface": 13230000, - "canton": null, - "numero_insee": "27251" - } - }, - { - "pk": 35234, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FONTAINE-LA-LOUVET", - "center": "POINT (461997.4017920392216183 2463924.4489352842792869)", - "surface": 11010000, - "canton": null, - "numero_insee": "27252" - } - }, - { - "pk": 32601, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FONTAINE-LA-SORET", - "center": "POINT (481125.9400227228179574 2461981.6584692778997123)", - "surface": 9710000, - "canton": null, - "numero_insee": "27253" - } - }, - { - "pk": 37061, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FONTAINE-SOUS-JOUY", - "center": "POINT (522733.4567178470897488 2452321.0529424212872982)", - "surface": 7310000, - "canton": null, - "numero_insee": "27254" - } - }, - { - "pk": 32012, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FONTENAY", - "center": "POINT (544314.2589944056235254 2468311.3442399548366666)", - "surface": 6740000, - "canton": null, - "numero_insee": "27255" - } - }, - { - "pk": 7322, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA FORET-DU-PARC", - "center": "POINT (519558.1843602235312574 2437084.4926415774971247)", - "surface": 7660000, - "canton": null, - "numero_insee": "27256" - } - }, - { - "pk": 9939, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FORET-LA-FOLIE", - "center": "POINT (540201.8760062556248158 2469477.7936523165553808)", - "surface": 10950000, - "canton": null, - "numero_insee": "27257" - } - }, - { - "pk": 13233, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FORT-MOVILLE", - "center": "POINT (459238.4794311751611531 2482913.8126059859059751)", - "surface": 9340000, - "canton": null, - "numero_insee": "27258" - } - }, - { - "pk": 25481, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FOUCRAINVILLE", - "center": "POINT (525462.5684334044344723 2437033.6167962756007910)", - "surface": 5210000, - "canton": null, - "numero_insee": "27259" - } - }, - { - "pk": 26123, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FOULBEC", - "center": "POINT (460879.7855485158506781 2490131.9541945667006075)", - "surface": 11820000, - "canton": null, - "numero_insee": "27260" - } - }, - { - "pk": 34323, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FOUQUEVILLE", - "center": "POINT (499869.5165727893472649 2470242.5780810220167041)", - "surface": 8210000, - "canton": null, - "numero_insee": "27261" - } - }, - { - "pk": 8373, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FOURGES", - "center": "POINT (548095.7766767160501331 2458836.7463344647549093)", - "surface": 7660000, - "canton": null, - "numero_insee": "27262" - } - }, - { - "pk": 8119, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FOURMETOT", - "center": "POINT (471903.3677200468955562 2488121.9657625467516482)", - "surface": 10120000, - "canton": null, - "numero_insee": "27263" - } - }, - { - "pk": 36218, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FOURS-EN-VEXIN", - "center": "POINT (546837.4235285288887098 2465730.7289643418043852)", - "surface": 5850000, - "canton": null, - "numero_insee": "27264" - } - }, - { - "pk": 4338, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FRANCHEVILLE", - "center": "POINT (489857.4138322090730071 2422727.9190268898382783)", - "surface": 24130000, - "canton": null, - "numero_insee": "27265" - } - }, - { - "pk": 30745, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FRANQUEVILLE", - "center": "POINT (479498.4436981661710888 2465170.2360499878413975)", - "surface": 3200000, - "canton": null, - "numero_insee": "27266" - } - }, - { - "pk": 34083, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FRENEUSE-SUR-RISLE", - "center": "POINT (478630.7461226413724944 2473268.2685988768935204)", - "surface": 8190000, - "canton": null, - "numero_insee": "27267" - } - }, - { - "pk": 12769, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE FRESNE", - "center": "POINT (500215.7862288790638559 2440626.0195064479485154)", - "surface": 9160000, - "canton": null, - "numero_insee": "27268" - } - }, - { - "pk": 24975, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FRESNE-CAUVERVILLE", - "center": "POINT (463759.4925813797162846 2468642.0916631859727204)", - "surface": 6090000, - "canton": null, - "numero_insee": "27269" - } - }, - { - "pk": 31839, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FRESNE-L'ARCHEVEQUE", - "center": "POINT (532434.0326828699326143 2477017.8743944400921464)", - "surface": 10610000, - "canton": null, - "numero_insee": "27270" - } - }, - { - "pk": 20823, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "FRESNEY", - "center": "POINT (524443.6233894169563428 2439226.6004831064492464)", - "surface": 6410000, - "canton": null, - "numero_insee": "27271" - } - }, - { - "pk": 29003, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GADENCOURT", - "center": "POINT (531614.5685067636659369 2443289.0466076158918440)", - "surface": 3940000, - "canton": null, - "numero_insee": "27273" - } - }, - { - "pk": 10449, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GAILLARDBOIS-CRESSENVILLE", - "center": "POINT (531786.1358033575816080 2482716.1015614299103618)", - "surface": 7000000, - "canton": null, - "numero_insee": "27274" - } - }, - { - "pk": 32824, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GAILLON", - "center": "POINT (527749.7250934337498620 2462769.6646338105201721)", - "surface": 10360000, - "canton": null, - "numero_insee": "27275" - } - }, - { - "pk": 36680, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GAMACHES-EN-VEXIN", - "center": "POINT (547464.2971174994017929 2474541.6361353271640837)", - "surface": 8690000, - "canton": null, - "numero_insee": "27276" - } - }, - { - "pk": 10258, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GARENCIERES", - "center": "POINT (520838.1292551361257210 2439596.8294484522193670)", - "surface": 6900000, - "canton": null, - "numero_insee": "27277" - } - }, - { - "pk": 28592, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GARENNES-SUR-EURE", - "center": "POINT (533685.8614506683079526 2434900.6956381807103753)", - "surface": 10570000, - "canton": null, - "numero_insee": "27278" - } - }, - { - "pk": 32589, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GASNY", - "center": "POINT (546116.3316410705447197 2456218.5140621014870703)", - "surface": 12840000, - "canton": null, - "numero_insee": "27279" - } - }, - { - "pk": 34446, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GAUCIEL", - "center": "POINT (520258.6524143551941961 2449098.3240260737948120)", - "surface": 7820000, - "canton": null, - "numero_insee": "27280" - } - }, - { - "pk": 26285, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GAUDREVILLE-LA-RIVIERE", - "center": "POINT (504215.6869959711912088 2440959.4792745867744088)", - "surface": 6660000, - "canton": null, - "numero_insee": "27281" - } - }, - { - "pk": 36815, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GAUVILLE-LA-CAMPAGNE", - "center": "POINT (508336.6192892417311668 2450800.2679582247510552)", - "surface": 6130000, - "canton": null, - "numero_insee": "27282" - } - }, - { - "pk": 26236, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GISAY-LA-COUDRE", - "center": "POINT (473703.2113210071111098 2440005.6229812963865697)", - "surface": 16200000, - "canton": null, - "numero_insee": "27283" - } - }, - { - "pk": 36851, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GISORS", - "center": "POINT (558561.4353262152289972 2475735.0619841688312590)", - "surface": 16710000, - "canton": null, - "numero_insee": "27284" - } - }, - { - "pk": 37928, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GIVERNY", - "center": "POINT (541231.8322163275443017 2453976.2931410772725940)", - "surface": 6450000, - "canton": null, - "numero_insee": "27285" - } - }, - { - "pk": 31795, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GIVERVILLE", - "center": "POINT (470974.4342504706000909 2467401.0378399579785764)", - "surface": 6190000, - "canton": null, - "numero_insee": "27286" - } - }, - { - "pk": 32423, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GLISOLLES", - "center": "POINT (502289.5887160733691417 2443945.4633428873494267)", - "surface": 10950000, - "canton": null, - "numero_insee": "27287" - } - }, - { - "pk": 32020, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GLOS-SUR-RISLE", - "center": "POINT (479607.2467112605227157 2476178.2294988157227635)", - "surface": 7340000, - "canton": null, - "numero_insee": "27288" - } - }, - { - "pk": 10487, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA GOULAFRIERE", - "center": "POINT (460390.2498645613086410 2440495.7016582475043833)", - "surface": 14380000, - "canton": null, - "numero_insee": "27289" - } - }, - { - "pk": 26057, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GOURNAY-LE-GUERIN", - "center": "POINT (484624.7642459954367951 2414178.6357937315478921)", - "surface": 12310000, - "canton": null, - "numero_insee": "27291" - } - }, - { - "pk": 6664, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GOUTTIERES", - "center": "POINT (482944.8498062246944755 2447787.4194239079952240)", - "surface": 5240000, - "canton": null, - "numero_insee": "27292" - } - }, - { - "pk": 28982, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GOUVILLE", - "center": "POINT (501817.3545396262779832 2428531.1873060036450624)", - "surface": 8430000, - "canton": null, - "numero_insee": "27293" - } - }, - { - "pk": 11096, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GRAINVILLE", - "center": "POINT (529478.9977090774336830 2483397.3102095900103450)", - "surface": 4020000, - "canton": null, - "numero_insee": "27294" - } - }, - { - "pk": 10393, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GRAND-CAMP", - "center": "POINT (468107.8602600159356371 2451066.6189531646668911)", - "surface": 14100000, - "canton": null, - "numero_insee": "27295" - } - }, - { - "pk": 25854, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GRANCHAIN", - "center": "POINT (476520.2993055781698786 2450235.7708411421626806)", - "surface": 8150000, - "canton": null, - "numero_insee": "27296" - } - }, - { - "pk": 37052, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GRANDVILLIERS", - "center": "POINT (507258.1022625885671005 2424073.3786324854008853)", - "surface": 17680000, - "canton": null, - "numero_insee": "27297" - } - }, - { - "pk": 29864, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GRAVERON-SEMERVILLE", - "center": "POINT (499787.5101385650923476 2456032.6596577432937920)", - "surface": 8060000, - "canton": null, - "numero_insee": "27298" - } - }, - { - "pk": 23858, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GRAVIGNY", - "center": "POINT (514240.9388828302035108 2450749.3385324948467314)", - "surface": 10050000, - "canton": null, - "numero_insee": "27299" - } - }, - { - "pk": 8847, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GROSSOEUVRE", - "center": "POINT (515643.3408903873059899 2438552.8982637771405280)", - "surface": 16430000, - "canton": null, - "numero_insee": "27301" - } - }, - { - "pk": 27978, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE GROS-THEIL", - "center": "POINT (490956.9133554633008316 2471069.1024612388573587)", - "surface": 10960000, - "canton": null, - "numero_insee": "27302" - } - }, - { - "pk": 26262, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GUERNANVILLE", - "center": "POINT (490269.6266714477678761 2433338.5370601844042540)", - "surface": 3180000, - "canton": null, - "numero_insee": "27303" - } - }, - { - "pk": 6140, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GUERNY", - "center": "POINT (552107.0500841022003442 2469777.3301904080435634)", - "surface": 6090000, - "canton": null, - "numero_insee": "27304" - } - }, - { - "pk": 32394, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA GUEROULDE", - "center": "POINT (492535.7959044142626226 2425552.0760232256725430)", - "surface": 11450000, - "canton": null, - "numero_insee": "27305" - } - }, - { - "pk": 6553, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GUICHAINVILLE", - "center": "POINT (515205.6137163434759714 2443052.2612127745524049)", - "surface": 15370000, - "canton": null, - "numero_insee": "27306" - } - }, - { - "pk": 28896, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GUISENIERS", - "center": "POINT (537406.1081117433495820 2468754.0138742192648351)", - "surface": 10780000, - "canton": null, - "numero_insee": "27307" - } - }, - { - "pk": 19289, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "GUITRY", - "center": "POINT (542504.8697919852565974 2469296.8855879018083215)", - "surface": 8060000, - "canton": null, - "numero_insee": "27308" - } - }, - { - "pk": 31514, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "L'HABIT", - "center": "POINT (527412.9193712787237018 2431145.8977472805418074)", - "surface": 5060000, - "canton": null, - "numero_insee": "27309" - } - }, - { - "pk": 27965, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HACQUEVILLE", - "center": "POINT (543247.6988001739373431 2476207.5193248633295298)", - "surface": 9740000, - "canton": null, - "numero_insee": "27310" - } - }, - { - "pk": 21935, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HARCOURT", - "center": "POINT (486110.5785804445622489 2464224.4611063264310360)", - "surface": 15240000, - "canton": null, - "numero_insee": "27311" - } - }, - { - "pk": 11842, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HARDENCOURT-COCHEREL", - "center": "POINT (525256.6099353287136182 2449740.3606153125874698)", - "surface": 5020000, - "canton": null, - "numero_insee": "27312" - } - }, - { - "pk": 3860, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HARENGERE", - "center": "POINT (502663.6403860115678981 2471166.3878074702806771)", - "surface": 3640000, - "canton": null, - "numero_insee": "27313" - } - }, - { - "pk": 4957, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HARQUENCY", - "center": "POINT (538974.4688296134117991 2472669.6116835381835699)", - "surface": 14110000, - "canton": null, - "numero_insee": "27315" - } - }, - { - "pk": 24579, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HAUVILLE", - "center": "POINT (485897.1107672916841693 2489939.1210164874792099)", - "surface": 14840000, - "canton": null, - "numero_insee": "27316" - } - }, - { - "pk": 26520, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HAYE-AUBREE", - "center": "POINT (480595.8024237576173618 2489694.9998644012957811)", - "surface": 7590000, - "canton": null, - "numero_insee": "27317" - } - }, - { - "pk": 13771, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HAYE-DE-CALLEVILLE", - "center": "POINT (486290.7587428500410169 2466627.5139619191177189)", - "surface": 2980000, - "canton": null, - "numero_insee": "27318" - } - }, - { - "pk": 8760, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HAYE-DE-ROUTOT", - "center": "POINT (483089.7301130526466295 2490616.2600060058757663)", - "surface": 2550000, - "canton": null, - "numero_insee": "27319" - } - }, - { - "pk": 23688, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HAYE-DU-THEIL", - "center": "POINT (493450.8700480373227037 2471990.3979104594327509)", - "surface": 7070000, - "canton": null, - "numero_insee": "27320" - } - }, - { - "pk": 7893, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HAYE-LE-COMTE", - "center": "POINT (512203.2419834128813818 2467143.0988920084200799)", - "surface": 3330000, - "canton": null, - "numero_insee": "27321" - } - }, - { - "pk": 36602, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HAYE-MALHERBE", - "center": "POINT (507362.1798454094096087 2471705.7865260704420507)", - "surface": 9990000, - "canton": null, - "numero_insee": "27322" - } - }, - { - "pk": 16367, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HAYE-SAINT-SYLVESTRE", - "center": "POINT (472134.6047578813740984 2436090.0001920731738210)", - "surface": 18470000, - "canton": null, - "numero_insee": "27323" - } - }, - { - "pk": 28690, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HEBECOURT", - "center": "POINT (555286.0254739986266941 2484513.2856873017735779)", - "surface": 11310000, - "canton": null, - "numero_insee": "27324" - } - }, - { - "pk": 5233, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HECMANVILLE", - "center": "POINT (477897.5154040880152024 2465156.9551623626612127)", - "surface": 2990000, - "canton": null, - "numero_insee": "27325" - } - }, - { - "pk": 33589, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HECOURT", - "center": "POINT (533512.3640176695771515 2443705.1392876324243844)", - "surface": 7710000, - "canton": null, - "numero_insee": "27326" - } - }, - { - "pk": 10000, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HECTOMARE", - "center": "POINT (498396.0969665109878406 2466928.1987247732467949)", - "surface": 2010000, - "canton": null, - "numero_insee": "27327" - } - }, - { - "pk": 28373, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HENNEZIS", - "center": "POINT (535726.8293650994310156 2466138.3232884034514427)", - "surface": 15590000, - "canton": null, - "numero_insee": "27329" - } - }, - { - "pk": 31203, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HERQUEVILLE", - "center": "POINT (522467.5137279062182643 2472231.7922623706981540)", - "surface": 3760000, - "canton": null, - "numero_insee": "27330" - } - }, - { - "pk": 26247, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HEUBECOURT-HARICOURT", - "center": "POINT (543588.1373601573286578 2459399.5005748672410846)", - "surface": 11870000, - "canton": null, - "numero_insee": "27331" - } - }, - { - "pk": 34926, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HEUDEBOUVILLE", - "center": "POINT (519712.5750289230491035 2466605.2307714913040400)", - "surface": 9330000, - "canton": null, - "numero_insee": "27332" - } - }, - { - "pk": 11169, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HEUDICOURT", - "center": "POINT (550903.6078083661850542 2482075.1472399630583823)", - "surface": 10770000, - "canton": null, - "numero_insee": "27333" - } - }, - { - "pk": 34777, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HEUDREVILLE-EN-LIEUVIN", - "center": "POINT (466269.2273950473754667 2467662.2371801836416125)", - "surface": 4180000, - "canton": null, - "numero_insee": "27334" - } - }, - { - "pk": 13171, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HEUDREVILLE-SUR-EURE", - "center": "POINT (516166.3094014643575065 2459871.3431667420081794)", - "surface": 14180000, - "canton": null, - "numero_insee": "27335" - } - }, - { - "pk": 11409, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HEUNIERE", - "center": "POINT (532440.8427852083696052 2452201.8341564033180475)", - "surface": 3070000, - "canton": null, - "numero_insee": "27336" - } - }, - { - "pk": 37120, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HEUQUEVILLE", - "center": "POINT (526029.5536237533669919 2477064.5490318750962615)", - "surface": 7870000, - "canton": null, - "numero_insee": "27337" - } - }, - { - "pk": 28510, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES HOGUES", - "center": "POINT (532511.4963927968638018 2491727.8275796854868531)", - "surface": 11680000, - "canton": null, - "numero_insee": "27338" - } - }, - { - "pk": 11555, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HONDOUVILLE", - "center": "POINT (510849.8935548898880370 2461428.1342183211818337)", - "surface": 7000000, - "canton": null, - "numero_insee": "27339" - } - }, - { - "pk": 24387, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HONGUEMARE-GUENOUVILLE", - "center": "POINT (489417.3496363434242085 2487766.9622234269045293)", - "surface": 9430000, - "canton": null, - "numero_insee": "27340" - } - }, - { - "pk": 37525, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "L'HOSMES", - "center": "POINT (503972.7245680816704407 2422044.6857585515826941)", - "surface": 6720000, - "canton": null, - "numero_insee": "27341" - } - }, - { - "pk": 8724, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HOUETTEVILLE", - "center": "POINT (508962.9393267247942276 2459711.3238842892460525)", - "surface": 6800000, - "canton": null, - "numero_insee": "27342" - } - }, - { - "pk": 26929, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HOULBEC-COCHEREL", - "center": "POINT (528637.7686047208262607 2452270.1916603725403547)", - "surface": 11730000, - "canton": null, - "numero_insee": "27343" - } - }, - { - "pk": 30747, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HOULBEC-PRES-LE-GROS-THEIL", - "center": "POINT (489935.5646296496852301 2473562.2280312632210553)", - "surface": 2560000, - "canton": null, - "numero_insee": "27344" - } - }, - { - "pk": 28600, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA HOUSSAYE", - "center": "POINT (487466.6311263050301932 2445523.4292072928510606)", - "surface": 4320000, - "canton": null, - "numero_insee": "27345" - } - }, - { - "pk": 37167, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HOUVILLE-EN-VEXIN", - "center": "POINT (528720.2486215776298195 2478387.8053556298837066)", - "surface": 8050000, - "canton": null, - "numero_insee": "27346" - } - }, - { - "pk": 27714, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "HUEST", - "center": "POINT (517355.2686356537742540 2449274.2763851610943675)", - "surface": 6510000, - "canton": null, - "numero_insee": "27347" - } - }, - { - "pk": 26350, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "IGOVILLE", - "center": "POINT (513687.5666175046353601 2481164.4341485584154725)", - "surface": 5690000, - "canton": null, - "numero_insee": "27348" - } - }, - { - "pk": 28282, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ILLEVILLE-SUR-MONTFORT", - "center": "POINT (481565.2160366729367524 2481397.7927347971126437)", - "surface": 14980000, - "canton": null, - "numero_insee": "27349" - } - }, - { - "pk": 15268, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ILLIERS-L'EVEQUE", - "center": "POINT (520853.9263197294203565 2425687.5815095091238618)", - "surface": 20910000, - "canton": null, - "numero_insee": "27350" - } - }, - { - "pk": 6620, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "INCARVILLE", - "center": "POINT (513349.8011443949653767 2473656.8312041210010648)", - "surface": 7030000, - "canton": null, - "numero_insee": "27351" - } - }, - { - "pk": 35895, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "IRREVILLE", - "center": "POINT (516897.5441197867621668 2456175.0101150176487863)", - "surface": 5620000, - "canton": null, - "numero_insee": "27353" - } - }, - { - "pk": 33360, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "IVILLE", - "center": "POINT (497009.4232577998773195 2465215.5722437910735607)", - "surface": 8700000, - "canton": null, - "numero_insee": "27354" - } - }, - { - "pk": 14114, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "IVRY-LA-BATAILLE", - "center": "POINT (534708.1647049572784454 2432307.4700877089053392)", - "surface": 7760000, - "canton": null, - "numero_insee": "27355" - } - }, - { - "pk": 27519, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "JONQUERETS-DE-LIVET", - "center": "POINT (473635.1754845387185924 2448210.5202948707155883)", - "surface": 10310000, - "canton": null, - "numero_insee": "27356" - } - }, - { - "pk": 33789, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "JOUY-SUR-EURE", - "center": "POINT (523548.1010327083640732 2450626.7188112996518612)", - "surface": 9720000, - "canton": null, - "numero_insee": "27358" - } - }, - { - "pk": 18831, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "JUIGNETTES", - "center": "POINT (475596.4089085106388666 2428913.8447916544973850)", - "surface": 13010000, - "canton": null, - "numero_insee": "27359" - } - }, - { - "pk": 7713, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "JUMELLES", - "center": "POINT (517466.0860369402216747 2435966.3305300772190094)", - "surface": 7290000, - "canton": null, - "numero_insee": "27360" - } - }, - { - "pk": 37601, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA LANDE-SAINT-LEGER", - "center": "POINT (454363.0293175037950277 2479571.3545148158445954)", - "surface": 7960000, - "canton": null, - "numero_insee": "27361" - } - }, - { - "pk": 15130, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LANDEPEREUSE", - "center": "POINT (474955.8627651103306562 2445819.8792901607230306)", - "surface": 8870000, - "canton": null, - "numero_insee": "27362" - } - }, - { - "pk": 13368, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE LANDIN", - "center": "POINT (488590.3148458953946829 2490962.1090380898676813)", - "surface": 3120000, - "canton": null, - "numero_insee": "27363" - } - }, - { - "pk": 8586, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LAUNAY", - "center": "POINT (483161.9832104411325417 2457795.8110766699537635)", - "surface": 2340000, - "canton": null, - "numero_insee": "27364" - } - }, - { - "pk": 28649, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LERY", - "center": "POINT (516822.6463407060946338 2477187.9837830015458167)", - "surface": 8450000, - "canton": null, - "numero_insee": "27365" - } - }, - { - "pk": 4687, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LETTEGUIVES", - "center": "POINT (526605.7044811622472480 2491978.7830613600090146)", - "surface": 4120000, - "canton": null, - "numero_insee": "27366" - } - }, - { - "pk": 22950, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LIEUREY", - "center": "POINT (466131.8630351198371500 2472164.0033330079168081)", - "surface": 18380000, - "canton": null, - "numero_insee": "27367" - } - }, - { - "pk": 10011, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LIGNEROLLES", - "center": "POINT (521836.1980258966796100 2427897.2591511793434620)", - "surface": 6160000, - "canton": null, - "numero_insee": "27368" - } - }, - { - "pk": 13392, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LILLY", - "center": "POINT (544035.4479846515459940 2489722.6575795295648277)", - "surface": 6050000, - "canton": null, - "numero_insee": "27369" - } - }, - { - "pk": 10297, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LISORS", - "center": "POINT (537172.4913567166076973 2484762.2932038418948650)", - "surface": 10810000, - "canton": null, - "numero_insee": "27370" - } - }, - { - "pk": 36198, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LIVET-SUR-AUTHOU", - "center": "POINT (477345.7689626903738827 2471356.3873631455935538)", - "surface": 3970000, - "canton": null, - "numero_insee": "27371" - } - }, - { - "pk": 28463, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LONGCHAMPS", - "center": "POINT (547980.2432800852693617 2484652.3780824807472527)", - "surface": 15400000, - "canton": null, - "numero_insee": "27372" - } - }, - { - "pk": 26110, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LORLEAU", - "center": "POINT (539515.3990735833067447 2491786.2509864494204521)", - "surface": 12340000, - "canton": null, - "numero_insee": "27373" - } - }, - { - "pk": 31731, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LOUVERSEY", - "center": "POINT (495980.0087105371057987 2444593.4809141014702618)", - "surface": 10780000, - "canton": null, - "numero_insee": "27374" - } - }, - { - "pk": 17037, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LOUVIERS", - "center": "POINT (513682.4542425259714946 2469757.0905652130022645)", - "surface": 27120000, - "canton": null, - "numero_insee": "27375" - } - }, - { - "pk": 36814, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LOUYE", - "center": "POINT (525183.2367575814714655 2422521.4716677623800933)", - "surface": 5250000, - "canton": null, - "numero_insee": "27376" - } - }, - { - "pk": 35374, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LYONS-LA-FORET", - "center": "POINT (537239.1585129676386714 2488765.3741654558107257)", - "surface": 27150000, - "canton": null, - "numero_insee": "27377" - } - }, - { - "pk": 19598, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA MADELEINE-DE-NONANCOURT", - "center": "POINT (517683.6356209616642445 2421858.5853375638835132)", - "surface": 22550000, - "canton": null, - "numero_insee": "27378" - } - }, - { - "pk": 16644, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MAINNEVILLE", - "center": "POINT (552767.8980416400590912 2486493.5081734294071794)", - "surface": 8130000, - "canton": null, - "numero_insee": "27379" - } - }, - { - "pk": 32883, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MALLEVILLE-SUR-LE-BEC", - "center": "POINT (484038.8262339178472757 2472712.7576914876699448)", - "surface": 7160000, - "canton": null, - "numero_insee": "27380" - } - }, - { - "pk": 8455, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MALOUY", - "center": "POINT (467930.6838276330381632 2460371.2587734074331820)", - "surface": 3140000, - "canton": null, - "numero_insee": "27381" - } - }, - { - "pk": 9803, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MANDEVILLE", - "center": "POINT (503479.0768707570969127 2469372.0079030124470592)", - "surface": 3060000, - "canton": null, - "numero_insee": "27382" - } - }, - { - "pk": 11288, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MANDRES", - "center": "POINT (490696.1366250265855342 2418131.7352580530568957)", - "surface": 11830000, - "canton": null, - "numero_insee": "27383" - } - }, - { - "pk": 10932, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MANNEVILLE-LA-RAOULT", - "center": "POINT (453897.3887497220421210 2487472.5144449304789305)", - "surface": 7480000, - "canton": null, - "numero_insee": "27384" - } - }, - { - "pk": 33867, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MANNEVILLE-SUR-RISLE", - "center": "POINT (469817.1148215354187414 2486303.5363014074973762)", - "surface": 9380000, - "canton": null, - "numero_insee": "27385" - } - }, - { - "pk": 6145, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE MANOIR", - "center": "POINT (517195.3810425839037634 2480493.1916991127654910)", - "surface": 2410000, - "canton": null, - "numero_insee": "27386" - } - }, - { - "pk": 14552, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MANTHELON", - "center": "POINT (504764.2545670565450564 2435160.1523774438537657)", - "surface": 14540000, - "canton": null, - "numero_insee": "27387" - } - }, - { - "pk": 12950, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MARAIS-VERNIER", - "center": "POINT (464041.7965178382582963 2494961.1528619043529034)", - "surface": 26290000, - "canton": null, - "numero_insee": "27388" - } - }, - { - "pk": 29867, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MARBEUF", - "center": "POINT (499632.5556551972986199 2462635.6848871652036905)", - "surface": 8560000, - "canton": null, - "numero_insee": "27389" - } - }, - { - "pk": 21037, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MARCILLY-LA-CAMPAGNE", - "center": "POINT (515548.1889173606177792 2425943.5993561046198010)", - "surface": 19770000, - "canton": null, - "numero_insee": "27390" - } - }, - { - "pk": 31951, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MARCILLY-SUR-EURE", - "center": "POINT (526261.3945523431757465 2425232.2978551373817027)", - "surface": 15510000, - "canton": null, - "numero_insee": "27391" - } - }, - { - "pk": 34118, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MARTAGNY", - "center": "POINT (550646.6593867531046271 2488877.2997804698534310)", - "surface": 4420000, - "canton": null, - "numero_insee": "27392" - } - }, - { - "pk": 10930, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MARTAINVILLE", - "center": "POINT (457960.9366187751293182 2480101.4542715284042060)", - "surface": 8900000, - "canton": null, - "numero_insee": "27393" - } - }, - { - "pk": 4557, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MARTOT", - "center": "POINT (507824.1774495129939169 2476312.5814335774630308)", - "surface": 8390000, - "canton": null, - "numero_insee": "27394" - } - }, - { - "pk": 17074, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MELICOURT", - "center": "POINT (465427.2431493023759685 2436434.6762385726906359)", - "surface": 6460000, - "canton": null, - "numero_insee": "27395" - } - }, - { - "pk": 34815, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MENESQUEVILLE", - "center": "POINT (532368.9535928209079430 2484822.2919979011639953)", - "surface": 4130000, - "canton": null, - "numero_insee": "27396" - } - }, - { - "pk": 10789, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MENILLES", - "center": "POINT (529262.3125558035681024 2449373.4835470383986831)", - "surface": 5780000, - "canton": null, - "numero_insee": "27397" - } - }, - { - "pk": 28807, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MENNEVAL", - "center": "POINT (474660.3201179874595255 2457325.0187553218565881)", - "surface": 6610000, - "canton": null, - "numero_insee": "27398" - } - }, - { - "pk": 13590, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MERCEY", - "center": "POINT (531423.5669554691994563 2454194.6679275752976537)", - "surface": 3610000, - "canton": null, - "numero_insee": "27399" - } - }, - { - "pk": 6668, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MEREY", - "center": "POINT (530838.2856179458322003 2440380.6383954808115959)", - "surface": 8650000, - "canton": null, - "numero_insee": "27400" - } - }, - { - "pk": 28826, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE MESNIL-FUGUET", - "center": "POINT (510616.3296935471589677 2453420.9507533013820648)", - "surface": 3570000, - "canton": null, - "numero_insee": "27401" - } - }, - { - "pk": 18811, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE MESNIL-HARDRAY", - "center": "POINT (501037.0634117746958509 2438131.1735655013471842)", - "surface": 4770000, - "canton": null, - "numero_insee": "27402" - } - }, - { - "pk": 29228, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE MESNIL-JOURDAIN", - "center": "POINT (511717.1091075971489772 2465437.9517362304031849)", - "surface": 10450000, - "canton": null, - "numero_insee": "27403" - } - }, - { - "pk": 9107, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MESNIL-ROUSSET", - "center": "POINT (469447.9037433062912896 2434266.5157181210815907)", - "surface": 7310000, - "canton": null, - "numero_insee": "27404" - } - }, - { - "pk": 9489, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MESNIL-SOUS-VIENNE", - "center": "POINT (551357.0814940864220262 2487682.4785036207176745)", - "surface": 5710000, - "canton": null, - "numero_insee": "27405" - } - }, - { - "pk": 5621, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MESNIL-SUR-L'ESTREE", - "center": "POINT (523000.2287550183245912 2420301.7769268727861345)", - "surface": 5810000, - "canton": null, - "numero_insee": "27406" - } - }, - { - "pk": 30786, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MESNIL-VERCLIVES", - "center": "POINT (536604.7060515077318996 2480855.0824120133183897)", - "surface": 9820000, - "canton": null, - "numero_insee": "27407" - } - }, - { - "pk": 33289, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MEZIERES-EN-VEXIN", - "center": "POINT (539142.9886639784090221 2464465.7217519260011613)", - "surface": 12760000, - "canton": null, - "numero_insee": "27408" - } - }, - { - "pk": 4033, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MISEREY", - "center": "POINT (521274.2477792913559824 2447305.5915354113094509)", - "surface": 8130000, - "canton": null, - "numero_insee": "27410" - } - }, - { - "pk": 22862, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MOISVILLE", - "center": "POINT (514027.2813137858174741 2428332.5675404476933181)", - "surface": 7030000, - "canton": null, - "numero_insee": "27411" - } - }, - { - "pk": 7783, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MONTAURE", - "center": "POINT (509670.1608232213184237 2470924.4730133167468011)", - "surface": 10180000, - "canton": null, - "numero_insee": "27412" - } - }, - { - "pk": 12405, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MONTFORT-SUR-RISLE", - "center": "POINT (478685.9819256791379303 2478672.1847557211294770)", - "surface": 3970000, - "canton": null, - "numero_insee": "27413" - } - }, - { - "pk": 14320, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MONTREUIL-L'ARGILLE", - "center": "POINT (463000.0995594656560570 2439516.6485123364254832)", - "surface": 13820000, - "canton": null, - "numero_insee": "27414" - } - }, - { - "pk": 20339, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MORAINVILLE-JOUVEAUX", - "center": "POINT (462038.6214215084910393 2471029.3870025752112269)", - "surface": 15710000, - "canton": null, - "numero_insee": "27415" - } - }, - { - "pk": 14112, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "BUIS-SUR-DAMVILLE", - "center": "POINT (510729.4352883117971942 2427804.7792333611287177)", - "surface": 24600000, - "canton": null, - "numero_insee": "27416" - } - }, - { - "pk": 7416, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MORGNY", - "center": "POINT (544859.2847149472218007 2486927.7715393374674022)", - "surface": 17460000, - "canton": null, - "numero_insee": "27417" - } - }, - { - "pk": 37126, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MORSAN", - "center": "POINT (473087.2635974233271554 2466017.6468761297874153)", - "surface": 4870000, - "canton": null, - "numero_insee": "27418" - } - }, - { - "pk": 36474, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MOUFLAINES", - "center": "POINT (542981.7714421161217615 2472102.6699624531902373)", - "surface": 3780000, - "canton": null, - "numero_insee": "27420" - } - }, - { - "pk": 31515, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MOUSSEAUX-NEUVILLE", - "center": "POINT (526782.5321169557282701 2434743.0716925757005811)", - "surface": 14270000, - "canton": null, - "numero_insee": "27421" - } - }, - { - "pk": 11643, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MUIDS", - "center": "POINT (523383.8690028917044401 2470338.2035035216249526)", - "surface": 15390000, - "canton": null, - "numero_insee": "27422" - } - }, - { - "pk": 13727, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "MUZY", - "center": "POINT (525600.9941634056158364 2420423.5174227543175220)", - "surface": 9040000, - "canton": null, - "numero_insee": "27423" - } - }, - { - "pk": 14008, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NAGEL-SEEZ-MESNIL", - "center": "POINT (497643.3350663351593539 2437102.2913349703885615)", - "surface": 11710000, - "canton": null, - "numero_insee": "27424" - } - }, - { - "pk": 36588, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NASSANDRES", - "center": "POINT (483338.0175325340824202 2460699.1680032471194863)", - "surface": 4910000, - "canton": null, - "numero_insee": "27425" - } - }, - { - "pk": 10294, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NEAUFLES-SAINT-MARTIN", - "center": "POINT (555560.5611359738977626 2475609.9146335590630770)", - "surface": 9080000, - "canton": null, - "numero_insee": "27426" - } - }, - { - "pk": 30467, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NEAUFLES-AUVERGNY", - "center": "POINT (483077.7241126790759154 2431777.8120227828621864)", - "surface": 17430000, - "canton": null, - "numero_insee": "27427" - } - }, - { - "pk": 27333, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE NEUBOURG", - "center": "POINT (494833.9198595804627985 2462095.4793606735765934)", - "surface": 9930000, - "canton": null, - "numero_insee": "27428" - } - }, - { - "pk": 33291, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NEUILLY", - "center": "POINT (532566.0056856086011976 2437192.9018470495939255)", - "surface": 4660000, - "canton": null, - "numero_insee": "27429" - } - }, - { - "pk": 6107, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA NEUVE-GRANGE", - "center": "POINT (543375.1472462110687047 2484914.1180206048302352)", - "surface": 5050000, - "canton": null, - "numero_insee": "27430" - } - }, - { - "pk": 12631, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA NEUVE-LYRE", - "center": "POINT (482550.8464682710473426 2434975.5976052451878786)", - "surface": 2890000, - "canton": null, - "numero_insee": "27431" - } - }, - { - "pk": 24973, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA NEUVILLE-DU-BOSC", - "center": "POINT (488986.5052916335407645 2467350.3497170805931091)", - "surface": 14600000, - "canton": null, - "numero_insee": "27432" - } - }, - { - "pk": 24144, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NEUVILLE-SUR-AUTHOU", - "center": "POINT (475466.2502925124717876 2468739.1215829593129456)", - "surface": 5610000, - "canton": null, - "numero_insee": "27433" - } - }, - { - "pk": 13232, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NOARDS", - "center": "POINT (466753.7640016421792097 2469567.4802275476977229)", - "surface": 4250000, - "canton": null, - "numero_insee": "27434" - } - }, - { - "pk": 14162, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA NOE-POULAIN", - "center": "POINT (467598.7305793722043745 2476278.7897395882755518)", - "surface": 4710000, - "canton": null, - "numero_insee": "27435" - } - }, - { - "pk": 24942, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NOGENT-LE-SEC", - "center": "POINT (502251.0971668342244811 2436540.1939195329323411)", - "surface": 10140000, - "canton": null, - "numero_insee": "27436" - } - }, - { - "pk": 32449, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NOJEON-EN-VEXIN", - "center": "POINT (543203.4319332144223154 2481510.5288700293749571)", - "surface": 12930000, - "canton": null, - "numero_insee": "27437" - } - }, - { - "pk": 9747, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NONANCOURT", - "center": "POINT (514893.5790363578707911 2420434.3962045246735215)", - "surface": 7340000, - "canton": null, - "numero_insee": "27438" - } - }, - { - "pk": 25436, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NORMANVILLE", - "center": "POINT (514119.2235622863518074 2453350.0394303137436509)", - "surface": 9120000, - "canton": null, - "numero_insee": "27439" - } - }, - { - "pk": 12906, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NOTRE-DAME-DE-L'ISLE", - "center": "POINT (535058.1390160020673648 2462330.2779186861589551)", - "surface": 11930000, - "canton": null, - "numero_insee": "27440" - } - }, - { - "pk": 10304, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NOTRE-DAME-D'EPINE", - "center": "POINT (473073.1604114501969889 2467718.6311367820017040)", - "surface": 1720000, - "canton": null, - "numero_insee": "27441" - } - }, - { - "pk": 35168, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NOTRE-DAME-DU-HAMEL", - "center": "POINT (465946.6144494044128805 2434137.4313224195502698)", - "surface": 13650000, - "canton": null, - "numero_insee": "27442" - } - }, - { - "pk": 3430, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE NOYER-EN-OUCHE", - "center": "POINT (484657.4877075869590044 2446400.7056720494292676)", - "surface": 11030000, - "canton": null, - "numero_insee": "27444" - } - }, - { - "pk": 37862, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "NOYERS", - "center": "POINT (551686.7580281018745154 2472175.3641875139437616)", - "surface": 5300000, - "canton": null, - "numero_insee": "27445" - } - }, - { - "pk": 19459, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ORMES", - "center": "POINT (499022.8042040817090310 2451723.4739310531876981)", - "surface": 14140000, - "canton": null, - "numero_insee": "27446" - } - }, - { - "pk": 37051, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ORVAUX", - "center": "POINT (503532.7419198894058354 2438852.3945690002292395)", - "surface": 6160000, - "canton": null, - "numero_insee": "27447" - } - }, - { - "pk": 14636, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PACY-SUR-EURE", - "center": "POINT (531379.4073482208186761 2447489.8767283381894231)", - "surface": 13500000, - "canton": null, - "numero_insee": "27448" - } - }, - { - "pk": 26051, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PANILLEUSE", - "center": "POINT (538965.4152237182715908 2461762.4843357000499964)", - "surface": 8790000, - "canton": null, - "numero_insee": "27449" - } - }, - { - "pk": 23425, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PARVILLE", - "center": "POINT (508952.7917900027823634 2448904.1384905749000609)", - "surface": 4530000, - "canton": null, - "numero_insee": "27451" - } - }, - { - "pk": 37534, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PERRIERS-LA-CAMPAGNE", - "center": "POINT (484728.0374723584391177 2462011.5529903965070844)", - "surface": 4420000, - "canton": null, - "numero_insee": "27452" - } - }, - { - "pk": 7196, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PERRIERS-SUR-ANDELLE", - "center": "POINT (529219.6650044454727322 2490499.6290219658985734)", - "surface": 11300000, - "canton": null, - "numero_insee": "27453" - } - }, - { - "pk": 11625, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PERRUEL", - "center": "POINT (529197.9791858333628625 2493101.0788627099245787)", - "surface": 5440000, - "canton": null, - "numero_insee": "27454" - } - }, - { - "pk": 26739, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PIENCOURT", - "center": "POINT (459183.3457995806820691 2465402.1197417685762048)", - "surface": 8740000, - "canton": null, - "numero_insee": "27455" - } - }, - { - "pk": 8609, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PINTERVILLE", - "center": "POINT (516410.6671257264679298 2466577.7345511363819242)", - "surface": 5990000, - "canton": null, - "numero_insee": "27456" - } - }, - { - "pk": 18795, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PISEUX", - "center": "POINT (499185.5805486661847681 2420103.5816540331579745)", - "surface": 19640000, - "canton": null, - "numero_insee": "27457" - } - }, - { - "pk": 29499, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PITRES", - "center": "POINT (518583.6762876522261649 2482005.7057126765139401)", - "surface": 10980000, - "canton": null, - "numero_insee": "27458" - } - }, - { - "pk": 8230, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES PLACES", - "center": "POINT (459800.2648433950380422 2463405.9281719126738608)", - "surface": 1970000, - "canton": null, - "numero_insee": "27459" - } - }, - { - "pk": 32588, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PLAINVILLE", - "center": "POINT (465674.1072472588857636 2454949.0217019766569138)", - "surface": 6520000, - "canton": null, - "numero_insee": "27460" - } - }, - { - "pk": 4227, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE PLANQUAY", - "center": "POINT (460455.3017117796698585 2456807.0402114563621581)", - "surface": 4010000, - "canton": null, - "numero_insee": "27462" - } - }, - { - "pk": 37060, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PLASNES", - "center": "POINT (474927.3053535546641797 2461329.8480022829025984)", - "surface": 16230000, - "canton": null, - "numero_insee": "27463" - } - }, - { - "pk": 34228, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE PLESSIS-GROHAN", - "center": "POINT (511736.0013317944831215 2439120.7745866142213345)", - "surface": 8240000, - "canton": null, - "numero_insee": "27464" - } - }, - { - "pk": 16339, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE PLESSIS-HEBERT", - "center": "POINT (528615.2808892858447507 2442963.8406484103761613)", - "surface": 11790000, - "canton": null, - "numero_insee": "27465" - } - }, - { - "pk": 36783, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE PLESSIS-SAINTE-OPPORTUNE", - "center": "POINT (491703.5324197770096362 2453463.8417731602676213)", - "surface": 11460000, - "canton": null, - "numero_insee": "27466" - } - }, - { - "pk": 17702, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PONT-AUDEMER", - "center": "POINT (468829.8187359701842070 2484694.3413221440277994)", - "surface": 9580000, - "canton": null, - "numero_insee": "27467" - } - }, - { - "pk": 27380, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PONT-AUTHOU", - "center": "POINT (480836.1591420245822519 2472786.2442927239462733)", - "surface": 3370000, - "canton": null, - "numero_insee": "27468" - } - }, - { - "pk": 27422, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PONT-DE-L'ARCHE", - "center": "POINT (513116.3744854048127308 2477657.4494553068652749)", - "surface": 9440000, - "canton": null, - "numero_insee": "27469" - } - }, - { - "pk": 28026, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PONT-SAINT-PIERRE", - "center": "POINT (523676.5574438820476644 2483248.8891170602291822)", - "surface": 6960000, - "canton": null, - "numero_insee": "27470" - } - }, - { - "pk": 33180, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PORTE-JOIE", - "center": "POINT (520858.2617299749399535 2473219.0294774845242500)", - "surface": 3350000, - "canton": null, - "numero_insee": "27471" - } - }, - { - "pk": 14089, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PORTES", - "center": "POINT (498350.6675854080822319 2448315.6396144353784621)", - "surface": 9450000, - "canton": null, - "numero_insee": "27472" - } - }, - { - "pk": 11729, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PORT-MORT", - "center": "POINT (532339.8820256604813039 2464308.9079113639891148)", - "surface": 12180000, - "canton": null, - "numero_insee": "27473" - } - }, - { - "pk": 34128, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "POSES", - "center": "POINT (520213.7491561764036305 2478517.0535411001183093)", - "surface": 5330000, - "canton": null, - "numero_insee": "27474" - } - }, - { - "pk": 24039, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA POTERIE-MATHIEU", - "center": "POINT (467715.3706206679344177 2474278.4741805340163410)", - "surface": 6470000, - "canton": null, - "numero_insee": "27475" - } - }, - { - "pk": 36652, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES PREAUX", - "center": "POINT (464943.3651887081796303 2482760.9335871040821075)", - "surface": 6010000, - "canton": null, - "numero_insee": "27476" - } - }, - { - "pk": 17045, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PRESSAGNY-L'ORGUEILLEUX", - "center": "POINT (536282.2079410559963435 2459538.6629490018822253)", - "surface": 10180000, - "canton": null, - "numero_insee": "27477" - } - }, - { - "pk": 33530, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PREY", - "center": "POINT (518028.9503837735392153 2440474.0343072675168514)", - "surface": 8030000, - "canton": null, - "numero_insee": "27478" - } - }, - { - "pk": 11066, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PUCHAY", - "center": "POINT (540978.8063450031913817 2484293.7369682402350008)", - "surface": 14040000, - "canton": null, - "numero_insee": "27480" - } - }, - { - "pk": 10638, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "PULLAY", - "center": "POINT (491619.9661916564800777 2415337.4834625860676169)", - "surface": 11940000, - "canton": null, - "numero_insee": "27481" - } - }, - { - "pk": 7441, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA PYLE", - "center": "POINT (494986.6483466571662575 2467800.4480085619725287)", - "surface": 1700000, - "canton": null, - "numero_insee": "27482" - } - }, - { - "pk": 30139, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "QUATREMARE", - "center": "POINT (508411.8677938615437597 2465810.7083291253075004)", - "surface": 5940000, - "canton": null, - "numero_insee": "27483" - } - }, - { - "pk": 6425, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "QUESSIGNY", - "center": "POINT (522157.2481542679015547 2437406.3441462209448218)", - "surface": 4330000, - "canton": null, - "numero_insee": "27484" - } - }, - { - "pk": 5042, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "QUILLEBEUF-SUR-SEINE", - "center": "POINT (466814.3391617632005364 2498486.3049945319071412)", - "surface": 10270000, - "canton": null, - "numero_insee": "27485" - } - }, - { - "pk": 34475, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "QUITTEBEUF", - "center": "POINT (502678.3963445413392037 2457357.5467899227514863)", - "surface": 13460000, - "canton": null, - "numero_insee": "27486" - } - }, - { - "pk": 19462, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "RADEPONT", - "center": "POINT (526368.9094147313153371 2484372.0208559222519398)", - "surface": 15910000, - "canton": null, - "numero_insee": "27487" - } - }, - { - "pk": 23622, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "RENNEVILLE", - "center": "POINT (526528.9966604715446010 2489176.3849324532784522)", - "surface": 6270000, - "canton": null, - "numero_insee": "27488" - } - }, - { - "pk": 21731, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "REUILLY", - "center": "POINT (518822.8242782847955823 2453289.1370497350580990)", - "surface": 9730000, - "canton": null, - "numero_insee": "27489" - } - }, - { - "pk": 13086, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "RICHEVILLE", - "center": "POINT (541768.5567518724128604 2473593.5070275510661304)", - "surface": 3930000, - "canton": null, - "numero_insee": "27490" - } - }, - { - "pk": 31312, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROMAN", - "center": "POINT (505131.0157699711853638 2427157.7941930810920894)", - "surface": 15230000, - "canton": null, - "numero_insee": "27491" - } - }, - { - "pk": 26903, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROMILLY-LA-PUTHENAYE", - "center": "POINT (490255.0025979070924222 2447147.6470130449160933)", - "surface": 11960000, - "canton": null, - "numero_insee": "27492" - } - }, - { - "pk": 30163, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROMILLY-SUR-ANDELLE", - "center": "POINT (521182.6467568150255829 2482327.5421007117256522)", - "surface": 8570000, - "canton": null, - "numero_insee": "27493" - } - }, - { - "pk": 12428, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA ROQUETTE", - "center": "POINT (527656.3180694861803204 2473976.1220497433096170)", - "surface": 5880000, - "canton": null, - "numero_insee": "27495" - } - }, - { - "pk": 24113, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROSAY-SUR-LIEURE", - "center": "POINT (533954.8343010896351188 2486636.6548382565379143)", - "surface": 8120000, - "canton": null, - "numero_insee": "27496" - } - }, - { - "pk": 32648, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROUGEMONTIERS", - "center": "POINT (482731.0223542479798198 2485610.1306308065541089)", - "surface": 11980000, - "canton": null, - "numero_insee": "27497" - } - }, - { - "pk": 35651, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROUGE-PERRIERS", - "center": "POINT (490232.0721259721904062 2461957.1870511751621962)", - "surface": 4170000, - "canton": null, - "numero_insee": "27498" - } - }, - { - "pk": 22532, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA ROUSSIERE", - "center": "POINT (471484.4698280645534396 2442088.6305811936035752)", - "surface": 10280000, - "canton": null, - "numero_insee": "27499" - } - }, - { - "pk": 27575, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROUTOT", - "center": "POINT (482906.2248561837477610 2488613.4785437234677374)", - "surface": 6620000, - "canton": null, - "numero_insee": "27500" - } - }, - { - "pk": 10135, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "ROUVRAY", - "center": "POINT (527035.1574989119544625 2452456.9650435657240450)", - "surface": 2490000, - "canton": null, - "numero_insee": "27501" - } - }, - { - "pk": 7976, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "RUGLES", - "center": "POINT (479028.3667488219216466 2425339.8675358835607767)", - "surface": 14080000, - "canton": null, - "numero_insee": "27502" - } - }, - { - "pk": 26477, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE SACQ", - "center": "POINT (506780.4446214164490812 2433375.7105076671577990)", - "surface": 4440000, - "canton": null, - "numero_insee": "27503" - } - }, - { - "pk": 19132, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SACQUENVILLE", - "center": "POINT (507706.2976775935385376 2454397.3959546373225749)", - "surface": 9930000, - "canton": null, - "numero_insee": "27504" - } - }, - { - "pk": 9753, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AGNAN-DE-CERNIERES", - "center": "POINT (467694.6323221155325882 2440556.2145599024370313)", - "surface": 7570000, - "canton": null, - "numero_insee": "27505" - } - }, - { - "pk": 32229, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AMAND-DES-HAUTES-TERRES", - "center": "POINT (497459.8195400006370619 2471223.1937559489160776)", - "surface": 2960000, - "canton": null, - "numero_insee": "27506" - } - }, - { - "pk": 34479, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-ANDRE-DE-L'EURE", - "center": "POINT (522383.2107899351976812 2434306.1428311211057007)", - "surface": 20010000, - "canton": null, - "numero_insee": "27507" - } - }, - { - "pk": 8087, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-ANTONIN-DE-SOMMAIRE", - "center": "POINT (477013.8621968987863511 2426924.2439589365385473)", - "surface": 7130000, - "canton": null, - "numero_insee": "27508" - } - }, - { - "pk": 24915, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AQUILIN-DE-PACY", - "center": "POINT (527788.1139745374675840 2446159.0742074544541538)", - "surface": 8510000, - "canton": null, - "numero_insee": "27510" - } - }, - { - "pk": 18639, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-D'ECROSVILLE", - "center": "POINT (501444.4172923471778631 2461349.9007218126207590)", - "surface": 14800000, - "canton": null, - "numero_insee": "27511" - } - }, - { - "pk": 26740, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-DE-SCELLON", - "center": "POINT (463981.9874990269308910 2465942.1863988838158548)", - "surface": 14020000, - "canton": null, - "numero_insee": "27512" - } - }, - { - "pk": 6437, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-DES-HAYES", - "center": "POINT (478160.2593713399837725 2445546.2583736507222056)", - "surface": 5920000, - "canton": null, - "numero_insee": "27513" - } - }, - { - "pk": 29850, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-DU-THENNEY", - "center": "POINT (465132.6129599337582476 2447839.8471316592767835)", - "surface": 14050000, - "canton": null, - "numero_insee": "27514" - } - }, - { - "pk": 12230, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-LE-GUICHARD", - "center": "POINT (480823.6758553045219742 2450171.4055318678729236)", - "surface": 11200000, - "canton": null, - "numero_insee": "27515" - } - }, - { - "pk": 3452, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-LE-VERTUEUX", - "center": "POINT (473798.7874277018127032 2452614.7852651872672141)", - "surface": 15190000, - "canton": null, - "numero_insee": "27516" - } - }, - { - "pk": 30668, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-SUR-GAILLON", - "center": "POINT (526873.3863042952725664 2459860.4703806699253619)", - "surface": 19650000, - "canton": null, - "numero_insee": "27517" - } - }, - { - "pk": 12670, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-AUBIN-SUR-QUILLEBEUF", - "center": "POINT (468435.1243484988808632 2496098.2392531703226268)", - "surface": 12290000, - "canton": null, - "numero_insee": "27518" - } - }, - { - "pk": 3490, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-BARBE-SUR-GAILLON", - "center": "POINT (524345.2482077914755791 2463041.4874096224084496)", - "surface": 4220000, - "canton": null, - "numero_insee": "27519" - } - }, - { - "pk": 7278, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-BENOIT-DES-OMBRES", - "center": "POINT (474745.9326862100278959 2471134.6967950561083853)", - "surface": 3640000, - "canton": null, - "numero_insee": "27520" - } - }, - { - "pk": 35605, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-CHRISTOPHE-SUR-AVRE", - "center": "POINT (487142.9334539730334654 2412198.1614669468253851)", - "surface": 10750000, - "canton": null, - "numero_insee": "27521" - } - }, - { - "pk": 30526, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-CHRISTOPHE-SUR-CONDE", - "center": "POINT (473590.5445327096967958 2477729.3513308963738382)", - "surface": 9060000, - "canton": null, - "numero_insee": "27522" - } - }, - { - "pk": 35418, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-CLAIR-D'ARCEY", - "center": "POINT (477597.7106806716183200 2453046.5554797006770968)", - "surface": 11650000, - "canton": null, - "numero_insee": "27523" - } - }, - { - "pk": 37555, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-COLOMBE-LA-COMMANDERIE", - "center": "POINT (497573.7447255374863744 2457515.2423757864162326)", - "surface": 10790000, - "canton": null, - "numero_insee": "27524" - } - }, - { - "pk": 29002, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-COLOMBE-PRES-VERNON", - "center": "POINT (527208.5880442614434287 2455660.5148230725899339)", - "surface": 2720000, - "canton": null, - "numero_insee": "27525" - } - }, - { - "pk": 36199, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-CROIX-SUR-AIZIER", - "center": "POINT (476273.4774686359451152 2492060.6539531387388706)", - "surface": 4780000, - "canton": null, - "numero_insee": "27526" - } - }, - { - "pk": 32500, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE VAUDREUIL", - "center": "POINT (518251.7731367587111890 2473797.7065591737627983)", - "surface": 5530000, - "canton": null, - "numero_insee": "27528" - } - }, - { - "pk": 7300, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-CYR-LA-CAMPAGNE", - "center": "POINT (503946.9140863580396399 2473278.4093427518382668)", - "surface": 2900000, - "canton": null, - "numero_insee": "27529" - } - }, - { - "pk": 11970, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-DENIS-D'AUGERONS", - "center": "POINT (463223.4285391715238802 2436716.6197941666468978)", - "surface": 4240000, - "canton": null, - "numero_insee": "27530" - } - }, - { - "pk": 8363, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-DENIS-DES-MONTS", - "center": "POINT (488529.7772366547724232 2474150.9394519720226526)", - "surface": 3910000, - "canton": null, - "numero_insee": "27531" - } - }, - { - "pk": 14009, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-DENIS-DU-BEHELAN", - "center": "POINT (497995.0795925818383694 2430901.0369068081490695)", - "surface": 9560000, - "canton": null, - "numero_insee": "27532" - } - }, - { - "pk": 23034, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-DENIS-LE-FERMENT", - "center": "POINT (554918.4104946225415915 2480607.7387677188962698)", - "surface": 17990000, - "canton": null, - "numero_insee": "27533" - } - }, - { - "pk": 13394, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-DIDIER-DES-BOIS", - "center": "POINT (505356.0381711674272083 2472289.4856491098180413)", - "surface": 5860000, - "canton": null, - "numero_insee": "27534" - } - }, - { - "pk": 11843, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-ELIER", - "center": "POINT (499189.4024214284727350 2443719.5558498515747488)", - "surface": 2350000, - "canton": null, - "numero_insee": "27535" - } - }, - { - "pk": 25327, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-ELOI-DE-FOURQUES", - "center": "POINT (488147.8256581440218724 2471946.3542364886961877)", - "surface": 7320000, - "canton": null, - "numero_insee": "27536" - } - }, - { - "pk": 9891, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-ETIENNE-DU-VAUVRAY", - "center": "POINT (518265.9379125159466639 2472096.7323714965023100)", - "surface": 1690000, - "canton": null, - "numero_insee": "27537" - } - }, - { - "pk": 27979, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-ETIENNE-L'ALLIER", - "center": "POINT (470405.3068776504369453 2475701.6656104275025427)", - "surface": 11350000, - "canton": null, - "numero_insee": "27538" - } - }, - { - "pk": 6844, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-ETIENNE-SOUS-BAILLEUL", - "center": "POINT (531892.9898763134842739 2457901.0092474566772580)", - "surface": 4320000, - "canton": null, - "numero_insee": "27539" - } - }, - { - "pk": 28590, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-GENEVIEVE-LES-GASNY", - "center": "POINT (543933.4193972949869931 2453998.8438768610358238)", - "surface": 4180000, - "canton": null, - "numero_insee": "27540" - } - }, - { - "pk": 10543, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GEORGES-DU-MESNIL", - "center": "POINT (470856.9586376418592408 2469501.4217146076261997)", - "surface": 3190000, - "canton": null, - "numero_insee": "27541" - } - }, - { - "pk": 34857, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GEORGES-DU-VIEVRE", - "center": "POINT (471928.5608361011836678 2473012.5598989170975983)", - "surface": 10310000, - "canton": null, - "numero_insee": "27542" - } - }, - { - "pk": 26253, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GEORGES-MOTEL", - "center": "POINT (528090.0199828067561612 2421945.2892432576045394)", - "surface": 4950000, - "canton": null, - "numero_insee": "27543" - } - }, - { - "pk": 25830, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GERMAIN-DE-FRESNEY", - "center": "POINT (523031.9456630406202748 2440515.7076916643418372)", - "surface": 5270000, - "canton": null, - "numero_insee": "27544" - } - }, - { - "pk": 36374, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GERMAIN-DE-PASQUIER", - "center": "POINT (502753.7141512478119694 2472367.9089696020819247)", - "surface": 1990000, - "canton": null, - "numero_insee": "27545" - } - }, - { - "pk": 34476, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GERMAIN-DES-ANGLES", - "center": "POINT (512303.1734846251201816 2455136.1068163849413395)", - "surface": 1840000, - "canton": null, - "numero_insee": "27546" - } - }, - { - "pk": 20874, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GERMAIN-LA-CAMPAGNE", - "center": "POINT (459293.5374258686788380 2452094.3276007263921201)", - "surface": 22310000, - "canton": null, - "numero_insee": "27547" - } - }, - { - "pk": 11552, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GERMAIN-SUR-AVRE", - "center": "POINT (521002.3325694725499488 2419884.8583002015948296)", - "surface": 5470000, - "canton": null, - "numero_insee": "27548" - } - }, - { - "pk": 35957, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GERMAIN-VILLAGE", - "center": "POINT (466329.2358714920701459 2484573.5571125592105091)", - "surface": 5210000, - "canton": null, - "numero_insee": "27549" - } - }, - { - "pk": 30748, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-GREGOIRE-DU-VIEVRE", - "center": "POINT (475328.8528596952673979 2473240.8820077269338071)", - "surface": 9030000, - "canton": null, - "numero_insee": "27550" - } - }, - { - "pk": 12815, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-JEAN-DE-LA-LEQUERAYE", - "center": "POINT (470443.4578195787034929 2471099.0261817201972008)", - "surface": 4690000, - "canton": null, - "numero_insee": "27551" - } - }, - { - "pk": 15605, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-JEAN-DU-THENNEY", - "center": "POINT (462530.2384801997104660 2447918.3549960986711085)", - "surface": 8390000, - "canton": null, - "numero_insee": "27552" - } - }, - { - "pk": 25844, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-JULIEN-DE-LA-LIEGUE", - "center": "POINT (523363.8413383937440813 2460731.8122272738255560)", - "surface": 4690000, - "canton": null, - "numero_insee": "27553" - } - }, - { - "pk": 24839, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-JUST", - "center": "POINT (534003.3977647433057427 2456817.8884877203963697)", - "surface": 4480000, - "canton": null, - "numero_insee": "27554" - } - }, - { - "pk": 29227, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-LAURENT-DES-BOIS", - "center": "POINT (525238.2688552251784131 2427925.6060426644980907)", - "surface": 3310000, - "canton": null, - "numero_insee": "27555" - } - }, - { - "pk": 24332, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-LAURENT-DU-TENCEMENT", - "center": "POINT (462343.6059766935650259 2434207.6489737159572542)", - "surface": 2780000, - "canton": null, - "numero_insee": "27556" - } - }, - { - "pk": 8830, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-LEGER-DE-ROTES", - "center": "POINT (477652.9498396484414116 2458450.5595732629299164)", - "surface": 6520000, - "canton": null, - "numero_insee": "27557" - } - }, - { - "pk": 24581, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-LEGER-DU-GENNETEY", - "center": "POINT (484601.7977647477528080 2477220.3153755473904312)", - "surface": 3310000, - "canton": null, - "numero_insee": "27558" - } - }, - { - "pk": 8452, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-LUC", - "center": "POINT (519114.6090453320648521 2442284.2778370007872581)", - "surface": 5050000, - "canton": null, - "numero_insee": "27560" - } - }, - { - "pk": 21346, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MACLOU", - "center": "POINT (460208.3907593077747151 2486624.1875454150140285)", - "surface": 5530000, - "canton": null, - "numero_insee": "27561" - } - }, - { - "pk": 34676, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MARCEL", - "center": "POINT (534416.9848910734290257 2455220.2884365236386657)", - "surface": 10050000, - "canton": null, - "numero_insee": "27562" - } - }, - { - "pk": 13099, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MARDS-DE-BLACARVILLE", - "center": "POINT (467100.6704135378822684 2488082.1615215102210641)", - "surface": 8790000, - "canton": null, - "numero_insee": "27563" - } - }, - { - "pk": 29630, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MARDS-DE-FRESNE", - "center": "POINT (462369.6779441473190673 2455221.8445173441432416)", - "surface": 13570000, - "canton": null, - "numero_insee": "27564" - } - }, - { - "pk": 5243, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-MARGUERITE-DE-L'AUTEL", - "center": "POINT (490649.9227020983817056 2435743.3121083811856806)", - "surface": 23380000, - "canton": null, - "numero_insee": "27565" - } - }, - { - "pk": 9610, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-MARGUERITE-EN-OUCHE", - "center": "POINT (476637.7870500566205010 2448135.3552793050184846)", - "surface": 5390000, - "canton": null, - "numero_insee": "27566" - } - }, - { - "pk": 31553, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-MARIE-DE-VATIMESNIL", - "center": "POINT (545057.9138252553530037 2475121.9273549648933113)", - "surface": 7460000, - "canton": null, - "numero_insee": "27567" - } - }, - { - "pk": 24923, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-MARTHE", - "center": "POINT (493309.1560316915856674 2440868.8214395921677351)", - "surface": 17450000, - "canton": null, - "numero_insee": "27568" - } - }, - { - "pk": 29878, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MARTIN-DU-TILLEUL", - "center": "POINT (467750.4675293955369852 2457968.1956491167657077)", - "surface": 5170000, - "canton": null, - "numero_insee": "27569" - } - }, - { - "pk": 9346, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MARTIN-LA-CAMPAGNE", - "center": "POINT (507821.3400853408966213 2452597.1683414108119905)", - "surface": 3500000, - "canton": null, - "numero_insee": "27570" - } - }, - { - "pk": 11744, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MARTIN-SAINT-FIRMIN", - "center": "POINT (470580.5401050416985527 2478705.0365087077952921)", - "surface": 6370000, - "canton": null, - "numero_insee": "27571" - } - }, - { - "pk": 13908, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-MESLIN-DU-BOSC", - "center": "POINT (493670.9348127849516459 2469590.6796250273473561)", - "surface": 1550000, - "canton": null, - "numero_insee": "27572" - } - }, - { - "pk": 9098, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-NICOLAS-D'ATTEZ", - "center": "POINT (496748.3435249830363318 2424386.2616179506294429)", - "surface": 5250000, - "canton": null, - "numero_insee": "27573" - } - }, - { - "pk": 34778, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-NICOLAS-DU-BOSC", - "center": "POINT (492483.5417610250879079 2467979.7820745967328548)", - "surface": 9390000, - "canton": null, - "numero_insee": "27574" - } - }, - { - "pk": 25581, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-OPPORTUNE-DU-BOSC", - "center": "POINT (490812.4767647185362875 2464363.5687826341018081)", - "surface": 8200000, - "canton": null, - "numero_insee": "27576" - } - }, - { - "pk": 33866, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINTE-OPPORTUNE-LA-MARE", - "center": "POINT (469057.8460562193067744 2493401.7114672577008605)", - "surface": 10970000, - "canton": null, - "numero_insee": "27577" - } - }, - { - "pk": 27900, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-OUEN-D'ATTEZ", - "center": "POINT (497562.1401057803886943 2422791.9337529484182596)", - "surface": 9570000, - "canton": null, - "numero_insee": "27578" - } - }, - { - "pk": 22678, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-OUEN-DE-PONTCHEUIL", - "center": "POINT (498957.3551127411192283 2471635.8977931016124785)", - "surface": 1120000, - "canton": null, - "numero_insee": "27579" - } - }, - { - "pk": 8492, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-OUEN-DE-THOUBERVILLE", - "center": "POINT (495148.8160651567741297 2484412.4206309285946190)", - "surface": 6400000, - "canton": null, - "numero_insee": "27580" - } - }, - { - "pk": 26741, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-OUEN-DES-CHAMPS", - "center": "POINT (468581.6131275095976889 2490495.9447953705675900)", - "surface": 6160000, - "canton": null, - "numero_insee": "27581" - } - }, - { - "pk": 34545, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-OUEN-DU-TILLEUL", - "center": "POINT (498696.5302334841107950 2478938.4069878775626421)", - "surface": 4020000, - "canton": null, - "numero_insee": "27582" - } - }, - { - "pk": 10810, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PAUL-DE-FOURQUES", - "center": "POINT (487564.0960345438215882 2469940.2189106256701052)", - "surface": 4190000, - "canton": null, - "numero_insee": "27584" - } - }, - { - "pk": 10675, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PHILBERT-SUR-BOISSEY", - "center": "POINT (486926.3687772274133749 2474437.8190845395438373)", - "surface": 3070000, - "canton": null, - "numero_insee": "27586" - } - }, - { - "pk": 18996, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PHILBERT-SUR-RISLE", - "center": "POINT (476900.7248064482118934 2476756.1624065786600113)", - "surface": 13340000, - "canton": null, - "numero_insee": "27587" - } - }, - { - "pk": 22544, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-D'AUTILS", - "center": "POINT (533586.4737966860411689 2458815.7203601701185107)", - "surface": 7120000, - "canton": null, - "numero_insee": "27588" - } - }, - { - "pk": 7114, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DE-BAILLEUL", - "center": "POINT (530382.1018249898916110 2459089.1962921801023185)", - "surface": 6410000, - "canton": null, - "numero_insee": "27589" - } - }, - { - "pk": 36589, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DE-CERNIERES", - "center": "POINT (466711.4444404126843438 2438446.6602696725167334)", - "surface": 11860000, - "canton": null, - "numero_insee": "27590" - } - }, - { - "pk": 14429, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DE-CORMEILLES", - "center": "POINT (456319.6016990268253721 2472883.2573777488432825)", - "surface": 17570000, - "canton": null, - "numero_insee": "27591" - } - }, - { - "pk": 27573, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DE-SALERNE", - "center": "POINT (478267.8668572054011747 2468762.3587578418664634)", - "surface": 6830000, - "canton": null, - "numero_insee": "27592" - } - }, - { - "pk": 9288, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DES-FLEURS", - "center": "POINT (499844.5642972627538256 2473244.3013017266057432)", - "surface": 2850000, - "canton": null, - "numero_insee": "27593" - } - }, - { - "pk": 33359, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DES-IFS", - "center": "POINT (474109.0820581090520136 2475532.2430969732813537)", - "surface": 6190000, - "canton": null, - "numero_insee": "27594" - } - }, - { - "pk": 35315, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DU-BOSGUERARD", - "center": "POINT (494529.8877150795306079 2474601.0323966643773019)", - "surface": 10220000, - "canton": null, - "numero_insee": "27595" - } - }, - { - "pk": 9476, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DU-MESNIL", - "center": "POINT (470814.7415630460600369 2438380.6025005211122334)", - "surface": 8110000, - "canton": null, - "numero_insee": "27596" - } - }, - { - "pk": 9054, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DU-VAL", - "center": "POINT (456779.1435078983195126 2489897.8781443797051907)", - "surface": 12150000, - "canton": null, - "numero_insee": "27597" - } - }, - { - "pk": 22629, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-DU-VAUVRAY", - "center": "POINT (518482.7175172157585621 2470097.2497626678086817)", - "surface": 4490000, - "canton": null, - "numero_insee": "27598" - } - }, - { - "pk": 35403, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-PIERRE-LA-GARENNE", - "center": "POINT (530963.2640060868579894 2461395.5427588578313589)", - "surface": 7790000, - "canton": null, - "numero_insee": "27599" - } - }, - { - "pk": 26729, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-QUENTIN-DES-ISLES", - "center": "POINT (471205.5471733823651448 2451592.6250407905317843)", - "surface": 4040000, - "canton": null, - "numero_insee": "27600" - } - }, - { - "pk": 27172, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-SAMSON-DE-LA-ROQUE", - "center": "POINT (461150.9537107223877683 2493636.3968480085022748)", - "surface": 17950000, - "canton": null, - "numero_insee": "27601" - } - }, - { - "pk": 3972, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-SEBASTIEN-DE-MORSENT", - "center": "POINT (507569.4428774767438881 2446791.2377161048352718)", - "surface": 10010000, - "canton": null, - "numero_insee": "27602" - } - }, - { - "pk": 25328, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-SIMEON", - "center": "POINT (467486.2365897630224936 2477778.8170272083953023)", - "surface": 7520000, - "canton": null, - "numero_insee": "27603" - } - }, - { - "pk": 12816, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-SULPICE-DE-GRIMBOUVILLE", - "center": "POINT (462698.1972007175209001 2488045.6906457561999559)", - "surface": 4330000, - "canton": null, - "numero_insee": "27604" - } - }, - { - "pk": 28361, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-SYLVESTRE-DE-CORMEILLES", - "center": "POINT (460414.5000855466932990 2473817.7384235034696758)", - "surface": 9510000, - "canton": null, - "numero_insee": "27605" - } - }, - { - "pk": 7514, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (463058.8640524292131886 2480744.0513868778944016)", - "surface": 3840000, - "canton": null, - "numero_insee": "27606" - } - }, - { - "pk": 9912, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-THURIEN", - "center": "POINT (470179.1919218368129805 2490909.4365523457527161)", - "surface": 5360000, - "canton": null, - "numero_insee": "27607" - } - }, - { - "pk": 37295, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-VICTOR-DE-CHRETIENVILLE", - "center": "POINT (466688.7909791946876794 2453256.3104818905703723)", - "surface": 5860000, - "canton": null, - "numero_insee": "27608" - } - }, - { - "pk": 33975, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-VICTOR-D'EPINE", - "center": "POINT (473257.5134869210305624 2469621.3876371169462800)", - "surface": 7970000, - "canton": null, - "numero_insee": "27609" - } - }, - { - "pk": 31957, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-VICTOR-SUR-AVRE", - "center": "POINT (490548.3738958009053022 2411826.1663596527650952)", - "surface": 6900000, - "canton": null, - "numero_insee": "27610" - } - }, - { - "pk": 30889, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-VIGOR", - "center": "POINT (521222.5703957887599245 2453509.2564483922906220)", - "surface": 6610000, - "canton": null, - "numero_insee": "27611" - } - }, - { - "pk": 36348, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-VINCENT-DES-BOIS", - "center": "POINT (531044.1889787622494623 2451689.8584740953519940)", - "surface": 5350000, - "canton": null, - "numero_insee": "27612" - } - }, - { - "pk": 7957, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAINT-VINCENT-DU-BOULAY", - "center": "POINT (465053.0294225797988474 2457445.5170491263270378)", - "surface": 6590000, - "canton": null, - "numero_insee": "27613" - } - }, - { - "pk": 14067, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SANCOURT", - "center": "POINT (551886.6186498685274273 2484184.6909617115743458)", - "surface": 6630000, - "canton": null, - "numero_insee": "27614" - } - }, - { - "pk": 34471, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SASSEY", - "center": "POINT (518443.4206721343216486 2450784.3292313991114497)", - "surface": 4310000, - "canton": null, - "numero_insee": "27615" - } - }, - { - "pk": 28476, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA SAUSSAYE", - "center": "POINT (501541.3792864528368227 2473758.7284903968684375)", - "surface": 3520000, - "canton": null, - "numero_insee": "27616" - } - }, - { - "pk": 32922, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SAUSSAY-LA-CAMPAGNE", - "center": "POINT (539710.6362131378846243 2480380.6783402618020773)", - "surface": 4910000, - "canton": null, - "numero_insee": "27617" - } - }, - { - "pk": 35422, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SEBECOURT", - "center": "POINT (489689.5473579660174437 2442940.1574087115004659)", - "surface": 14850000, - "canton": null, - "numero_insee": "27618" - } - }, - { - "pk": 24974, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SELLES", - "center": "POINT (465469.3457284966716543 2479663.3185571413487196)", - "surface": 10140000, - "canton": null, - "numero_insee": "27620" - } - }, - { - "pk": 4759, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SEREZ", - "center": "POINT (528259.2486365825170651 2437657.3291390165686607)", - "surface": 6270000, - "canton": null, - "numero_insee": "27621" - } - }, - { - "pk": 3185, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SERQUIGNY", - "center": "POINT (480954.0519116058712825 2458578.0121146482415497)", - "surface": 11520000, - "canton": null, - "numero_insee": "27622" - } - }, - { - "pk": 8733, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SURTAUVILLE", - "center": "POINT (506397.3932929247384891 2467394.9865129319950938)", - "surface": 4410000, - "canton": null, - "numero_insee": "27623" - } - }, - { - "pk": 13393, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SURVILLE", - "center": "POINT (509996.9752900968887843 2467725.1270208316855133)", - "surface": 5750000, - "canton": null, - "numero_insee": "27624" - } - }, - { - "pk": 36473, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SUZAY", - "center": "POINT (540055.8945009855087847 2474980.1114515792578459)", - "surface": 4080000, - "canton": null, - "numero_insee": "27625" - } - }, - { - "pk": 7151, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "THEILLEMENT", - "center": "POINT (487798.6381175119895488 2477847.2375365048646927)", - "surface": 7170000, - "canton": null, - "numero_insee": "27626" - } - }, - { - "pk": 24523, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE THEIL-NOLENT", - "center": "POINT (468408.5865553083713166 2463076.9796168096363544)", - "surface": 4120000, - "canton": null, - "numero_insee": "27627" - } - }, - { - "pk": 15303, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "THEVRAY", - "center": "POINT (481481.3234066937002353 2443272.2821685718372464)", - "surface": 15000000, - "canton": null, - "numero_insee": "27628" - } - }, - { - "pk": 9139, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "THIBERVILLE", - "center": "POINT (461521.1427147412905470 2461018.6152677740901709)", - "surface": 7980000, - "canton": null, - "numero_insee": "27629" - } - }, - { - "pk": 7241, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "THIBOUVILLE", - "center": "POINT (488034.9446669198223390 2461438.6158184246160090)", - "surface": 8890000, - "canton": null, - "numero_insee": "27630" - } - }, - { - "pk": 11455, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "THIERVILLE", - "center": "POINT (482017.7509825851302594 2475097.5253929174505174)", - "surface": 3630000, - "canton": null, - "numero_insee": "27631" - } - }, - { - "pk": 3871, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE THIL", - "center": "POINT (543123.4204653234919533 2479108.3336456133984029)", - "surface": 4200000, - "canton": null, - "numero_insee": "27632" - } - }, - { - "pk": 33847, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES THILLIERS-EN-VEXIN", - "center": "POINT (546592.1901263763429597 2471132.1693232427351177)", - "surface": 1580000, - "canton": null, - "numero_insee": "27633" - } - }, - { - "pk": 32158, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "THOMER-LA-SOGNE", - "center": "POINT (514072.3661660708603449 2434937.4020485468208790)", - "surface": 9090000, - "canton": null, - "numero_insee": "27634" - } - }, - { - "pk": 34759, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE THUIT", - "center": "POINT (529357.2904740567319095 2473990.3008289332501590)", - "surface": 3110000, - "canton": null, - "numero_insee": "27635" - } - }, - { - "pk": 13498, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "THUIT-HEBERT", - "center": "POINT (490373.5285850559594110 2481070.6588186156004667)", - "surface": 3750000, - "canton": null, - "numero_insee": "27637" - } - }, - { - "pk": 36045, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE THUIT-SIGNOL", - "center": "POINT (498136.1054532530251890 2474130.6785124479793012)", - "surface": 9880000, - "canton": null, - "numero_insee": "27638" - } - }, - { - "pk": 5460, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE THUIT-SIMER", - "center": "POINT (496425.1546390171861276 2475317.2290067030116916)", - "surface": 2750000, - "canton": null, - "numero_insee": "27639" - } - }, - { - "pk": 8329, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TILLEUL-DAME-AGNES", - "center": "POINT (494164.8024823646992445 2446279.5280058402568102)", - "surface": 5160000, - "canton": null, - "numero_insee": "27640" - } - }, - { - "pk": 26640, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE TILLEUL-LAMBERT", - "center": "POINT (497197.6256922567263246 2454610.2135505308397114)", - "surface": 5810000, - "canton": null, - "numero_insee": "27641" - } - }, - { - "pk": 12794, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE TILLEUL-OTHON", - "center": "POINT (487460.3488137791864574 2458331.8199451514519751)", - "surface": 4710000, - "canton": null, - "numero_insee": "27642" - } - }, - { - "pk": 11324, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TILLIERES-SUR-AVRE", - "center": "POINT (503699.1694899339927360 2418840.2198037598282099)", - "surface": 16770000, - "canton": null, - "numero_insee": "27643" - } - }, - { - "pk": 36553, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TILLY", - "center": "POINT (540974.9292003260925412 2460778.6020921887829900)", - "surface": 12200000, - "canton": null, - "numero_insee": "27644" - } - }, - { - "pk": 13091, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOCQUEVILLE", - "center": "POINT (474777.6176131332176737 2491447.8726637135259807)", - "surface": 2480000, - "canton": null, - "numero_insee": "27645" - } - }, - { - "pk": 29508, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE TORPT", - "center": "POINT (457729.3466013465076685 2483901.9529739767313004)", - "surface": 6630000, - "canton": null, - "numero_insee": "27646" - } - }, - { - "pk": 25950, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOSNY", - "center": "POINT (528991.2592523875646293 2469884.6124155013822019)", - "surface": 14800000, - "canton": null, - "numero_insee": "27647" - } - }, - { - "pk": 36164, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOSTES", - "center": "POINT (510941.7658809876302257 2474437.3035751422867179)", - "surface": 12140000, - "canton": null, - "numero_insee": "27648" - } - }, - { - "pk": 27421, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOUFFREVILLE", - "center": "POINT (534482.6538782819407061 2483338.9692245321348310)", - "surface": 10750000, - "canton": null, - "numero_insee": "27649" - } - }, - { - "pk": 6998, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOURNEDOS-BOIS-HUBERT", - "center": "POINT (501308.3561382835614495 2453643.7260277299210429)", - "surface": 8050000, - "canton": null, - "numero_insee": "27650" - } - }, - { - "pk": 27491, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOURNEDOS-SUR-SEINE", - "center": "POINT (521336.0444779898971319 2475924.7402716283686459)", - "surface": 3240000, - "canton": null, - "numero_insee": "27651" - } - }, - { - "pk": 6557, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOURNEVILLE", - "center": "POINT (509995.9940662658191286 2455817.3661215398460627)", - "surface": 7250000, - "canton": null, - "numero_insee": "27652" - } - }, - { - "pk": 37556, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOURNY", - "center": "POINT (542333.9856077530421317 2465793.1958461217582226)", - "surface": 12000000, - "canton": null, - "numero_insee": "27653" - } - }, - { - "pk": 9008, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOURVILLE-LA-CAMPAGNE", - "center": "POINT (495163.4854832001728937 2470603.7251058924011886)", - "surface": 8100000, - "canton": null, - "numero_insee": "27654" - } - }, - { - "pk": 20656, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOURVILLE-SUR-PONT-AUDEMER", - "center": "POINT (467552.2996554620331153 2481881.9777540834620595)", - "surface": 10820000, - "canton": null, - "numero_insee": "27655" - } - }, - { - "pk": 37964, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOUTAINVILLE", - "center": "POINT (463415.9947942305589095 2485950.3094576965086162)", - "surface": 11880000, - "canton": null, - "numero_insee": "27656" - } - }, - { - "pk": 24175, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TOUVILLE", - "center": "POINT (484681.0921746640815400 2479722.5692302039824426)", - "surface": 3560000, - "canton": null, - "numero_insee": "27657" - } - }, - { - "pk": 5397, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE TREMBLAY-OMONVILLE", - "center": "POINT (496060.3938512647291645 2459003.6474316846579313)", - "surface": 5420000, - "canton": null, - "numero_insee": "27658" - } - }, - { - "pk": 11283, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA TRINITE", - "center": "POINT (519403.1211175330099650 2443687.6138666113838553)", - "surface": 2970000, - "canton": null, - "numero_insee": "27659" - } - }, - { - "pk": 26883, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA TRINITE-DE-REVILLE", - "center": "POINT (466177.9788207610836253 2442444.9160133195109665)", - "surface": 11310000, - "canton": null, - "numero_insee": "27660" - } - }, - { - "pk": 4301, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA TRINITE-DE-THOUBERVILLE", - "center": "POINT (493933.1766824300866574 2486203.4596965634264052)", - "surface": 3410000, - "canton": null, - "numero_insee": "27661" - } - }, - { - "pk": 28162, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TRIQUEVILLE", - "center": "POINT (461839.1233199064154178 2483035.4114285716786981)", - "surface": 9560000, - "canton": null, - "numero_insee": "27662" - } - }, - { - "pk": 30746, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE TRONCQ", - "center": "POINT (496394.1088427635841072 2467011.6254524751566350)", - "surface": 4660000, - "canton": null, - "numero_insee": "27663" - } - }, - { - "pk": 34814, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE TRONQUAY", - "center": "POINT (535897.5345439057564363 2493657.2575954315252602)", - "surface": 19060000, - "canton": null, - "numero_insee": "27664" - } - }, - { - "pk": 14838, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "TROUVILLE-LA-HAULE", - "center": "POINT (472364.6630210073199123 2492828.7449395703151822)", - "surface": 12420000, - "canton": null, - "numero_insee": "27665" - } - }, - { - "pk": 13057, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA VACHERIE", - "center": "POINT (512270.6953178690164350 2459038.3919411888346076)", - "surface": 7610000, - "canton": null, - "numero_insee": "27666" - } - }, - { - "pk": 5778, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VALAILLES", - "center": "POINT (474345.2091120065888390 2459123.5841458612121642)", - "surface": 5400000, - "canton": null, - "numero_insee": "27667" - } - }, - { - "pk": 33294, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE VAL-DAVID", - "center": "POINT (521311.7561790590989403 2442802.9122007843106985)", - "surface": 6850000, - "canton": null, - "numero_insee": "27668" - } - }, - { - "pk": 35120, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VALLETOT", - "center": "POINT (474615.6703155391733162 2486843.6328150974586606)", - "surface": 5900000, - "canton": null, - "numero_insee": "27669" - } - }, - { - "pk": 24425, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VANDRIMARE", - "center": "POINT (528342.5143088998738676 2487690.5551486113108695)", - "surface": 6510000, - "canton": null, - "numero_insee": "27670" - } - }, - { - "pk": 10050, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VANNECROCQ", - "center": "POINT (461063.5280485129333101 2480027.0800029295496643)", - "surface": 4890000, - "canton": null, - "numero_insee": "27671" - } - }, - { - "pk": 21502, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VASCOEUIL", - "center": "POINT (530886.4122667365008965 2494616.0930627211928368)", - "surface": 7460000, - "canton": null, - "numero_insee": "27672" - } - }, - { - "pk": 12558, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VATTEVILLE", - "center": "POINT (523333.8510710551636294 2476341.6393226077780128)", - "surface": 4390000, - "canton": null, - "numero_insee": "27673" - } - }, - { - "pk": 3207, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VAUX-SUR-EURE", - "center": "POINT (526563.2164750039810315 2449050.7867959057912230)", - "surface": 2880000, - "canton": null, - "numero_insee": "27674" - } - }, - { - "pk": 25847, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VENABLES", - "center": "POINT (524107.6151164949405938 2467542.4259226745925844)", - "surface": 14940000, - "canton": null, - "numero_insee": "27676" - } - }, - { - "pk": 9100, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VENON", - "center": "POINT (506220.5812000193400308 2464591.7010592357255518)", - "surface": 5180000, - "canton": null, - "numero_insee": "27677" - } - }, - { - "pk": 15102, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LES VENTES", - "center": "POINT (506821.4061846618424170 2440480.8185598365962505)", - "surface": 20600000, - "canton": null, - "numero_insee": "27678" - } - }, - { - "pk": 15787, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VERNEUIL-SUR-AVRE", - "center": "POINT (496114.4391872872365639 2416375.5152657786384225)", - "surface": 31850000, - "canton": null, - "numero_insee": "27679" - } - }, - { - "pk": 28759, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VERNEUSSES", - "center": "POINT (459825.5198440279928036 2436188.1403350424952805)", - "surface": 16260000, - "canton": null, - "numero_insee": "27680" - } - }, - { - "pk": 19700, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VERNON", - "center": "POINT (537723.0959342907881364 2454747.5395468105562031)", - "surface": 34310000, - "canton": null, - "numero_insee": "27681" - } - }, - { - "pk": 34117, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VESLY", - "center": "POINT (549287.8897558161988854 2471855.1325351414270699)", - "surface": 11920000, - "canton": null, - "numero_insee": "27682" - } - }, - { - "pk": 33666, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VEZILLON", - "center": "POINT (531594.4235399488825351 2469706.1864718021824956)", - "surface": 2010000, - "canton": null, - "numero_insee": "27683" - } - }, - { - "pk": 24544, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LE VIEIL-EVREUX", - "center": "POINT (517686.2755825200583786 2445574.5797769525088370)", - "surface": 11570000, - "canton": null, - "numero_insee": "27684" - } - }, - { - "pk": 37006, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "LA VIEILLE-LYRE", - "center": "POINT (483634.0701758120558225 2437086.0001639393158257)", - "surface": 17110000, - "canton": null, - "numero_insee": "27685" - } - }, - { - "pk": 26121, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VIEUX-PORT", - "center": "POINT (474460.0273477056180127 2493546.5560693321749568)", - "surface": 560000, - "canton": null, - "numero_insee": "27686" - } - }, - { - "pk": 26638, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VIEUX-VILLEZ", - "center": "POINT (523237.1064438867615536 2463932.8393706558272243)", - "surface": 2590000, - "canton": null, - "numero_insee": "27687" - } - }, - { - "pk": 31097, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLALET", - "center": "POINT (506145.1238462844630703 2437573.2505897190421820)", - "surface": 2290000, - "canton": null, - "numero_insee": "27688" - } - }, - { - "pk": 21330, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLEGATS", - "center": "POINT (536104.7323761425213888 2444827.4943897421471775)", - "surface": 3600000, - "canton": null, - "numero_insee": "27689" - } - }, - { - "pk": 6377, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLERS-EN-VEXIN", - "center": "POINT (545579.0847429630812258 2472624.6747966744005680)", - "surface": 6310000, - "canton": null, - "numero_insee": "27690" - } - }, - { - "pk": 29869, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLERS-SUR-LE-ROULE", - "center": "POINT (525718.5447226194664836 2466355.0729294116608799)", - "surface": 4290000, - "canton": null, - "numero_insee": "27691" - } - }, - { - "pk": 37511, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLETTES", - "center": "POINT (505736.9358508365694433 2462586.3781231446191669)", - "surface": 6840000, - "canton": null, - "numero_insee": "27692" - } - }, - { - "pk": 4655, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "SYLVAINS-LES-MOULINS", - "center": "POINT (509472.9195503361988813 2434498.8527118456549942)", - "surface": 21590000, - "canton": null, - "numero_insee": "27693" - } - }, - { - "pk": 7371, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLEZ-SOUS-BAILLEUL", - "center": "POINT (528998.8006511821877211 2456976.2897578356787562)", - "surface": 4440000, - "canton": null, - "numero_insee": "27694" - } - }, - { - "pk": 33537, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLEZ-SUR-LE-NEUBOURG", - "center": "POINT (492133.1787850214168429 2461972.9773248350247741)", - "surface": 4800000, - "canton": null, - "numero_insee": "27695" - } - }, - { - "pk": 11410, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VILLIERS-EN-DESOEUVRE", - "center": "POINT (537243.7880615101894364 2440233.9298165217041969)", - "surface": 14640000, - "canton": null, - "numero_insee": "27696" - } - }, - { - "pk": 10960, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VIRONVAY", - "center": "POINT (518498.5492336712777615 2468196.1551583269611001)", - "surface": 3850000, - "canton": null, - "numero_insee": "27697" - } - }, - { - "pk": 34031, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VITOT", - "center": "POINT (494215.2817065477138385 2464291.7704593702219427)", - "surface": 4650000, - "canton": null, - "numero_insee": "27698" - } - }, - { - "pk": 37600, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VOISCREVILLE", - "center": "POINT (485704.9168794552097097 2476929.2802413264289498)", - "surface": 1730000, - "canton": null, - "numero_insee": "27699" - } - }, - { - "pk": 10418, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VRAIVILLE", - "center": "POINT (505178.3920457599451765 2469586.2689585560001433)", - "surface": 6620000, - "canton": null, - "numero_insee": "27700" - } - }, - { - "pk": 37650, - "model": "ishtar_common.town", - "fields": { - "departement": 28, - "name": "VAL-DE-REUIL", - "center": "POINT (516345.6872350688790902 2474382.2201403188519180)", - "surface": 25930000, - "canton": null, - "numero_insee": "27701" - } - }, - { - "pk": 16992, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ABONDANT", - "center": "POINT (532591.1126779613550752 2422182.9548520222306252)", - "surface": 35070000, - "canton": null, - "numero_insee": "28001" - } - }, - { - "pk": 35654, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ALLAINES-MERVILLIERS", - "center": "POINT (561873.5679001439129934 2354879.5937474202364683)", - "surface": 22310000, - "canton": null, - "numero_insee": "28002" - } - }, - { - "pk": 34567, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ALLAINVILLE", - "center": "POINT (523252.0428727014223114 2414099.6149462130852044)", - "surface": 5350000, - "canton": null, - "numero_insee": "28003" - } - }, - { - "pk": 25168, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ALLONNES", - "center": "POINT (549234.0008310674456879 2370485.4143090592697263)", - "surface": 10260000, - "canton": null, - "numero_insee": "28004" - } - }, - { - "pk": 29646, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ALLUYES", - "center": "POINT (527711.6217477297177538 2359297.7996047590859234)", - "surface": 19820000, - "canton": null, - "numero_insee": "28005" - } - }, - { - "pk": 29102, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "AMILLY", - "center": "POINT (531117.0811845993157476 2382943.2724117347970605)", - "surface": 20160000, - "canton": null, - "numero_insee": "28006" - } - }, - { - "pk": 29445, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ANET", - "center": "POINT (534338.8023849297314882 2428601.8862921348772943)", - "surface": 7910000, - "canton": null, - "numero_insee": "28007" - } - }, - { - "pk": 35506, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ARDELLES", - "center": "POINT (514507.3017596041900106 2394713.3229560190811753)", - "surface": 10410000, - "canton": null, - "numero_insee": "28008" - } - }, - { - "pk": 10165, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ARDELU", - "center": "POINT (568527.3650283634196967 2372948.3871408319100738)", - "surface": 4080000, - "canton": null, - "numero_insee": "28009" - } - }, - { - "pk": 25533, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ARGENVILLIERS", - "center": "POINT (498443.1557992560556158 2364958.4589267531409860)", - "surface": 18310000, - "canton": null, - "numero_insee": "28010" - } - }, - { - "pk": 21139, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ARROU", - "center": "POINT (506802.5833365651778877 2346514.3641885635443032)", - "surface": 65420000, - "canton": null, - "numero_insee": "28012" - } - }, - { - "pk": 34394, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "AUNAY-SOUS-AUNEAU", - "center": "POINT (561239.8246187689946964 2382794.5336551703512669)", - "surface": 19610000, - "canton": null, - "numero_insee": "28013" - } - }, - { - "pk": 26532, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "AUNAY-SOUS-CRECY", - "center": "POINT (523811.5515767199103720 2406999.3608645200729370)", - "surface": 8490000, - "canton": null, - "numero_insee": "28014" - } - }, - { - "pk": 6285, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "AUNEAU", - "center": "POINT (558312.8586151708150283 2385772.1994419428519905)", - "surface": 17120000, - "canton": null, - "numero_insee": "28015" - } - }, - { - "pk": 11426, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LES AUTELS-VILLEVILLON", - "center": "POINT (500437.5964732943684794 2353766.8288918239995837)", - "surface": 10160000, - "canton": null, - "numero_insee": "28016" - } - }, - { - "pk": 25264, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "AUTHEUIL", - "center": "POINT (522212.9465872918954119 2334633.6985815176740289)", - "surface": 16190000, - "canton": null, - "numero_insee": "28017" - } - }, - { - "pk": 15517, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "AUTHON-DU-PERCHE", - "center": "POINT (492106.2746916227624752 2356799.8652879302389920)", - "surface": 16890000, - "canton": null, - "numero_insee": "28018" - } - }, - { - "pk": 34257, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAIGNEAUX", - "center": "POINT (561532.7189918560907245 2347771.4941948186606169)", - "surface": 11930000, - "canton": null, - "numero_insee": "28019" - } - }, - { - "pk": 5235, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAIGNOLET", - "center": "POINT (547474.8334612959297374 2353458.2954969895072281)", - "surface": 10170000, - "canton": null, - "numero_insee": "28020" - } - }, - { - "pk": 31183, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAILLEAU-LE-PIN", - "center": "POINT (524788.8411335723940283 2373783.9844556828029454)", - "surface": 16720000, - "canton": null, - "numero_insee": "28021" - } - }, - { - "pk": 17559, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAILLEAU-L'EVEQUE", - "center": "POINT (530474.1418276756303385 2388041.5440536877140403)", - "surface": 19800000, - "canton": null, - "numero_insee": "28022" - } - }, - { - "pk": 16698, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAILLEAU-ARMENONVILLE", - "center": "POINT (549052.6216173470020294 2392199.4266397133469582)", - "surface": 17840000, - "canton": null, - "numero_insee": "28023" - } - }, - { - "pk": 35020, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BARJOUVILLE", - "center": "POINT (535953.5677253497997299 2378980.7486504805274308)", - "surface": 4130000, - "canton": null, - "numero_insee": "28024" - } - }, - { - "pk": 33303, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BARMAINVILLE", - "center": "POINT (571618.9491526990896091 2362266.4901882088743150)", - "surface": 6430000, - "canton": null, - "numero_insee": "28025" - } - }, - { - "pk": 32004, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAUDREVILLE", - "center": "POINT (566853.0489058449165896 2369732.0616023084148765)", - "surface": 13110000, - "canton": null, - "numero_insee": "28026" - } - }, - { - "pk": 14964, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA BAZOCHE-GOUET", - "center": "POINT (498268.5691608101478778 2349845.9126481832936406)", - "surface": 37980000, - "canton": null, - "numero_insee": "28027" - } - }, - { - "pk": 36235, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAZOCHES-EN-DUNOIS", - "center": "POINT (542949.4541289855260402 2344113.6131852492690086)", - "surface": 18870000, - "canton": null, - "numero_insee": "28028" - } - }, - { - "pk": 13064, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BAZOCHES-LES-HAUTES", - "center": "POINT (561503.4284608792513609 2351273.8417239077389240)", - "surface": 17050000, - "canton": null, - "numero_insee": "28029" - } - }, - { - "pk": 33633, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BEAUCHE", - "center": "POINT (499973.3583613229566254 2409602.8945913421921432)", - "surface": 16910000, - "canton": null, - "numero_insee": "28030" - } - }, - { - "pk": 20736, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BEAUMONT-LES-AUTELS", - "center": "POINT (497075.5027044615126215 2360944.1685625226236880)", - "surface": 21430000, - "canton": null, - "numero_insee": "28031" - } - }, - { - "pk": 31296, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BEAUVILLIERS", - "center": "POINT (549263.2564942683093250 2366983.1192965311929584)", - "surface": 23280000, - "canton": null, - "numero_insee": "28032" - } - }, - { - "pk": 26413, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BELHOMERT-GUEHOUVILLE", - "center": "POINT (504936.9875345202744938 2390330.6422045864164829)", - "surface": 11020000, - "canton": null, - "numero_insee": "28033" - } - }, - { - "pk": 15301, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BERCHERES-SAINT-GERMAIN", - "center": "POINT (535835.0274926117854193 2393189.8675918481312692)", - "surface": 27800000, - "canton": null, - "numero_insee": "28034" - } - }, - { - "pk": 27591, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BERCHERES-LES-PIERRES", - "center": "POINT (542089.2600430308375508 2375229.2197501878254116)", - "surface": 20220000, - "canton": null, - "numero_insee": "28035" - } - }, - { - "pk": 10512, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BERCHERES-SUR-VESGRE", - "center": "POINT (542453.7519402464386076 2427468.7843064502812922)", - "surface": 12230000, - "canton": null, - "numero_insee": "28036" - } - }, - { - "pk": 3116, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BEROU-LA-MULOTIERE", - "center": "POINT (506921.1210095287533477 2416465.3709673839621246)", - "surface": 13220000, - "canton": null, - "numero_insee": "28037" - } - }, - { - "pk": 25258, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BETHONVILLIERS", - "center": "POINT (493180.4006265390780754 2360011.1387360445223749)", - "surface": 12300000, - "canton": null, - "numero_insee": "28038" - } - }, - { - "pk": 31554, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BEVILLE-LE-COMTE", - "center": "POINT (553136.2767292630160227 2382526.6494486806914210)", - "surface": 20310000, - "canton": null, - "numero_insee": "28039" - } - }, - { - "pk": 12072, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BILLANCELLES", - "center": "POINT (516857.0932622968684882 2388928.7856239099055529)", - "surface": 12030000, - "canton": null, - "numero_insee": "28040" - } - }, - { - "pk": 24194, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BLANDAINVILLE", - "center": "POINT (522427.2958892948227003 2368960.8327594324946404)", - "surface": 13770000, - "canton": null, - "numero_insee": "28041" - } - }, - { - "pk": 30986, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BOISGASSON", - "center": "POINT (510763.5133490163134411 2339542.1034771502017975)", - "surface": 7460000, - "canton": null, - "numero_insee": "28044" - } - }, - { - "pk": 31441, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BOISSY-EN-DROUAIS", - "center": "POINT (520142.6190638678381220 2414974.3308456279337406)", - "surface": 6080000, - "canton": null, - "numero_insee": "28045" - } - }, - { - "pk": 35811, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BOISSY-LES-PERCHE", - "center": "POINT (494265.6430447683087550 2410055.8019360476173460)", - "surface": 33740000, - "canton": null, - "numero_insee": "28046" - } - }, - { - "pk": 25142, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BOISVILLE-LA-SAINT-PERE", - "center": "POINT (552736.2907905704341829 2370514.6746925786137581)", - "surface": 25200000, - "canton": null, - "numero_insee": "28047" - } - }, - { - "pk": 31080, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA BOURDINIERE-SAINT-LOUP", - "center": "POINT (532734.0510334083810449 2369046.7513708276674151)", - "surface": 20260000, - "canton": null, - "numero_insee": "28048" - } - }, - { - "pk": 31812, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BONCE", - "center": "POINT (539148.2680481141433120 2367899.3927221442572773)", - "surface": 8990000, - "canton": null, - "numero_insee": "28049" - } - }, - { - "pk": 5856, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BONCOURT", - "center": "POINT (535845.5578457250958309 2427913.9800957529805601)", - "surface": 3750000, - "canton": null, - "numero_insee": "28050" - } - }, - { - "pk": 15186, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BONNEVAL", - "center": "POINT (529157.6031619397690520 2353905.8846254409290850)", - "surface": 28860000, - "canton": null, - "numero_insee": "28051" - } - }, - { - "pk": 26334, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BOUGLAINVAL", - "center": "POINT (538913.6201154730515555 2396017.5283911200240254)", - "surface": 14470000, - "canton": null, - "numero_insee": "28052" - } - }, - { - "pk": 26763, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE BOULLAY-LES-DEUX-EGLISES", - "center": "POINT (525536.7993356432998553 2404111.7185446876101196)", - "surface": 13930000, - "canton": null, - "numero_insee": "28053" - } - }, - { - "pk": 32246, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE BOULLAY-MIVOYE", - "center": "POINT (531420.4785283417440951 2406562.4392481301911175)", - "surface": 11070000, - "canton": null, - "numero_insee": "28054" - } - }, - { - "pk": 12278, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE BOULLAY-THIERRY", - "center": "POINT (533340.0279836041154340 2404376.9153010034933686)", - "surface": 12900000, - "canton": null, - "numero_insee": "28055" - } - }, - { - "pk": 22559, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BOUTIGNY-PROUAIS", - "center": "POINT (543555.4369705173885450 2415369.7086649700067937)", - "surface": 32950000, - "canton": null, - "numero_insee": "28056" - } - }, - { - "pk": 26499, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BOUVILLE", - "center": "POINT (528782.3178223232971504 2362909.3596516400575638)", - "surface": 15670000, - "canton": null, - "numero_insee": "28057" - } - }, - { - "pk": 36451, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BRECHAMPS", - "center": "POINT (539909.9318895450560376 2408534.5795415597967803)", - "surface": 5500000, - "canton": null, - "numero_insee": "28058" - } - }, - { - "pk": 35256, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BREZOLLES", - "center": "POINT (506268.1336903527844697 2410756.0053275786340237)", - "surface": 14250000, - "canton": null, - "numero_insee": "28059" - } - }, - { - "pk": 35984, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BRICONVILLE", - "center": "POINT (529947.9577607648679987 2391139.3548229197040200)", - "surface": 6300000, - "canton": null, - "numero_insee": "28060" - } - }, - { - "pk": 33773, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BROU", - "center": "POINT (512309.7304629707941785 2358168.7638987246900797)", - "surface": 19680000, - "canton": null, - "numero_insee": "28061" - } - }, - { - "pk": 26333, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BROUE", - "center": "POINT (540236.6932906461879611 2417343.3824559273198247)", - "surface": 12180000, - "canton": null, - "numero_insee": "28062" - } - }, - { - "pk": 21983, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BRUNELLES", - "center": "POINT (494293.8853151952498592 2370528.0413276613689959)", - "surface": 20180000, - "canton": null, - "numero_insee": "28063" - } - }, - { - "pk": 4368, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BU", - "center": "POINT (537988.5808510610368103 2422928.4568158360198140)", - "surface": 23080000, - "canton": null, - "numero_insee": "28064" - } - }, - { - "pk": 4085, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BULLAINVILLE", - "center": "POINT (538274.5340435145189986 2352680.9712858269922435)", - "surface": 6680000, - "canton": null, - "numero_insee": "28065" - } - }, - { - "pk": 35029, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BULLOU", - "center": "POINT (518998.3467771449941210 2360125.8521280977874994)", - "surface": 9230000, - "canton": null, - "numero_insee": "28066" - } - }, - { - "pk": 35019, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CERNAY", - "center": "POINT (518058.6361607892904431 2376830.1471248683519661)", - "surface": 7900000, - "canton": null, - "numero_insee": "28067" - } - }, - { - "pk": 23020, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHALLET", - "center": "POINT (532813.0890521497931331 2395566.3535312470048666)", - "surface": 10130000, - "canton": null, - "numero_insee": "28068" - } - }, - { - "pk": 34023, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAMPAGNE", - "center": "POINT (542727.3775864136405289 2418665.0637120129540563)", - "surface": 2240000, - "canton": null, - "numero_insee": "28069" - } - }, - { - "pk": 34396, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAMPHOL", - "center": "POINT (538900.3985375841148198 2385610.0542641780339181)", - "surface": 5490000, - "canton": null, - "numero_insee": "28070" - } - }, - { - "pk": 21623, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAMPROND-EN-GATINE", - "center": "POINT (506439.4418912235996686 2378134.4362996332347393)", - "surface": 34240000, - "canton": null, - "numero_insee": "28071" - } - }, - { - "pk": 18663, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAMPROND-EN-PERCHET", - "center": "POINT (492507.6706464749295264 2368711.8942107497714460)", - "surface": 9190000, - "canton": null, - "numero_insee": "28072" - } - }, - { - "pk": 36221, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAMPSERU", - "center": "POINT (548885.9267534627579153 2388195.2001656899228692)", - "surface": 15090000, - "canton": null, - "numero_insee": "28073" - } - }, - { - "pk": 34065, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA CHAPELLE-D'AUNAINVILLE", - "center": "POINT (560064.1527585877338424 2379782.5556796961463988)", - "surface": 7510000, - "canton": null, - "numero_insee": "28074" - } - }, - { - "pk": 25733, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA CHAPELLE-DU-NOYER", - "center": "POINT (523981.6524966399883851 2338551.3660732451826334)", - "surface": 13370000, - "canton": null, - "numero_insee": "28075" - } - }, - { - "pk": 34565, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA CHAPELLE-FORAINVILLIERS", - "center": "POINT (537756.8572600639890879 2414720.9001863189041615)", - "surface": 5440000, - "canton": null, - "numero_insee": "28076" - } - }, - { - "pk": 19765, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA CHAPELLE-FORTIN", - "center": "POINT (491293.6943307692417875 2406428.6108541809953749)", - "surface": 14540000, - "canton": null, - "numero_insee": "28077" - } - }, - { - "pk": 32798, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAPELLE-GUILLAUME", - "center": "POINT (492482.9651431639213115 2347596.1969095100648701)", - "surface": 20070000, - "canton": null, - "numero_insee": "28078" - } - }, - { - "pk": 37850, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAPELLE-ROYALE", - "center": "POINT (503761.4421535444562323 2351192.5503777563571930)", - "surface": 9970000, - "canton": null, - "numero_insee": "28079" - } - }, - { - "pk": 25936, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHARBONNIERES", - "center": "POINT (496421.6149479824816808 2355334.6220016172155738)", - "surface": 21070000, - "canton": null, - "numero_insee": "28080" - } - }, - { - "pk": 23582, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHARONVILLE", - "center": "POINT (523758.1676185289979912 2365369.3056602999567986)", - "surface": 9690000, - "canton": null, - "numero_insee": "28081" - } - }, - { - "pk": 32896, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHARPONT", - "center": "POINT (533383.3409359308425337 2411181.9996811286546290)", - "surface": 7240000, - "canton": null, - "numero_insee": "28082" - } - }, - { - "pk": 27407, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHARRAY", - "center": "POINT (525551.8993817525915802 2330258.2055050553753972)", - "surface": 10990000, - "canton": null, - "numero_insee": "28083" - } - }, - { - "pk": 34566, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHARTAINVILLIERS", - "center": "POINT (541531.9734662382397801 2394037.9714831770397723)", - "surface": 9200000, - "canton": null, - "numero_insee": "28084" - } - }, - { - "pk": 34012, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHARTRES", - "center": "POINT (538518.5115519608370960 2383405.2987510156817734)", - "surface": 16900000, - "canton": null, - "numero_insee": "28085" - } - }, - { - "pk": 23970, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHASSANT", - "center": "POINT (505734.6512033788603730 2366620.2602207129821181)", - "surface": 4450000, - "canton": null, - "numero_insee": "28086" - } - }, - { - "pk": 30549, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHATAINCOURT", - "center": "POINT (518775.0869526723399758 2410960.1783813643269241)", - "surface": 14810000, - "canton": null, - "numero_insee": "28087" - } - }, - { - "pk": 19715, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHATEAUDUN", - "center": "POINT (524650.4371096227550879 2342359.7818700461648405)", - "surface": 28450000, - "canton": null, - "numero_insee": "28088" - } - }, - { - "pk": 35986, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHATEAUNEUF-EN-THYMERAIS", - "center": "POINT (518870.9278414205182344 2399452.9645670112222433)", - "surface": 4090000, - "canton": null, - "numero_insee": "28089" - } - }, - { - "pk": 33894, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LES CHATELETS", - "center": "POINT (502792.5802969128126279 2407524.8782482100650668)", - "surface": 9880000, - "canton": null, - "numero_insee": "28090" - } - }, - { - "pk": 25534, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LES CHATELLIERS-NOTRE-DAME", - "center": "POINT (516393.3617705551441759 2372513.1787657230161130)", - "surface": 10960000, - "canton": null, - "numero_insee": "28091" - } - }, - { - "pk": 8110, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHATENAY", - "center": "POINT (566325.9303638706915081 2372929.9663358442485332)", - "surface": 10450000, - "canton": null, - "numero_insee": "28092" - } - }, - { - "pk": 34792, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAUDON", - "center": "POINT (537825.3190769538050517 2406515.7945576971396804)", - "surface": 11490000, - "canton": null, - "numero_insee": "28094" - } - }, - { - "pk": 11393, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHAUFFOURS", - "center": "POINT (525957.0967903488781303 2377696.5293560763821006)", - "surface": 7530000, - "canton": null, - "numero_insee": "28095" - } - }, - { - "pk": 31311, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA CHAUSSEE-D'IVRY", - "center": "POINT (537708.3109397385269403 2432532.6332568903453648)", - "surface": 8440000, - "canton": null, - "numero_insee": "28096" - } - }, - { - "pk": 10513, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHERISY", - "center": "POINT (533627.6118277375353500 2417888.6545745278708637)", - "surface": 12390000, - "canton": null, - "numero_insee": "28098" - } - }, - { - "pk": 26440, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CHUISNES", - "center": "POINT (515008.3640352475922555 2382608.9050902971066535)", - "surface": 23220000, - "canton": null, - "numero_insee": "28099" - } - }, - { - "pk": 9929, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CINTRAY", - "center": "POINT (528110.9759835327276960 2383418.5657923184335232)", - "surface": 4010000, - "canton": null, - "numero_insee": "28100" - } - }, - { - "pk": 8135, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CIVRY", - "center": "POINT (536252.4435626140329987 2343157.0497942757792771)", - "surface": 18080000, - "canton": null, - "numero_insee": "28101" - } - }, - { - "pk": 33635, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CLEVILLIERS", - "center": "POINT (529615.2293253545649350 2395039.3351667830720544)", - "surface": 15940000, - "canton": null, - "numero_insee": "28102" - } - }, - { - "pk": 16451, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CLOYES-SUR-LE-LOIR", - "center": "POINT (516720.8566019877325743 2333186.8942101653665304)", - "surface": 20090000, - "canton": null, - "numero_insee": "28103" - } - }, - { - "pk": 10436, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COLTAINVILLE", - "center": "POINT (545281.9505468066781759 2388365.2439142498187721)", - "surface": 18130000, - "canton": null, - "numero_insee": "28104" - } - }, - { - "pk": 22656, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COMBRES", - "center": "POINT (505292.7679774935822934 2371620.2115310463123024)", - "surface": 15170000, - "canton": null, - "numero_insee": "28105" - } - }, - { - "pk": 27207, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CONIE-MOLITARD", - "center": "POINT (533323.7737352886470035 2346335.0010397825390100)", - "surface": 15150000, - "canton": null, - "numero_insee": "28106" - } - }, - { - "pk": 15501, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CORANCEZ", - "center": "POINT (539093.1533812858397141 2374503.7086137859150767)", - "surface": 6880000, - "canton": null, - "numero_insee": "28107" - } - }, - { - "pk": 6261, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CORMAINVILLE", - "center": "POINT (545617.0165656928438693 2348238.9339725314639509)", - "surface": 18050000, - "canton": null, - "numero_insee": "28108" - } - }, - { - "pk": 27687, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LES CORVEES-LES-YYS", - "center": "POINT (511872.0977731188759208 2374677.1252454859204590)", - "surface": 13730000, - "canton": null, - "numero_insee": "28109" - } - }, - { - "pk": 13033, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE COUDRAY", - "center": "POINT (538244.2027451947797090 2380300.7927284948527813)", - "surface": 5490000, - "canton": null, - "numero_insee": "28110" - } - }, - { - "pk": 25354, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COUDRAY-AU-PERCHE", - "center": "POINT (490070.8622763033490628 2360885.9643275910057127)", - "surface": 14620000, - "canton": null, - "numero_insee": "28111" - } - }, - { - "pk": 23978, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COUDRECEAU", - "center": "POINT (495174.5168627734528854 2372937.0958017716184258)", - "surface": 13590000, - "canton": null, - "numero_insee": "28112" - } - }, - { - "pk": 20052, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COULOMBS", - "center": "POINT (542227.2374889239436015 2406652.6008787103928626)", - "surface": 12640000, - "canton": null, - "numero_insee": "28113" - } - }, - { - "pk": 36234, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COURBEHAYE", - "center": "POINT (545701.2068653185851872 2350141.0448953201994300)", - "surface": 19910000, - "canton": null, - "numero_insee": "28114" - } - }, - { - "pk": 26497, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COURTALAIN", - "center": "POINT (510531.7284459434449673 2343343.0138728576712310)", - "surface": 2540000, - "canton": null, - "numero_insee": "28115" - } - }, - { - "pk": 10943, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "COURVILLE-SUR-EURE", - "center": "POINT (519497.9316934847738594 2384247.4357267981395125)", - "surface": 11180000, - "canton": null, - "numero_insee": "28116" - } - }, - { - "pk": 13381, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CRECY-COUVE", - "center": "POINT (522289.7711739015066996 2409488.4168895799666643)", - "surface": 6780000, - "canton": null, - "numero_insee": "28117" - } - }, - { - "pk": 32681, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CROISILLES", - "center": "POINT (538292.2342186704045162 2410522.4664078587666154)", - "surface": 5770000, - "canton": null, - "numero_insee": "28118" - } - }, - { - "pk": 31182, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA CROIX-DU-PERCHE", - "center": "POINT (503843.3881460915436037 2365403.6548956600017846)", - "surface": 12560000, - "canton": null, - "numero_insee": "28119" - } - }, - { - "pk": 18596, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "CRUCEY-VILLAGES", - "center": "POINT (509389.2158488009590656 2408480.3780939662829041)", - "surface": 44420000, - "canton": null, - "numero_insee": "28120" - } - }, - { - "pk": 30117, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DAMBRON", - "center": "POINT (565346.9932406132575125 2346402.3595575904473662)", - "surface": 11910000, - "canton": null, - "numero_insee": "28121" - } - }, - { - "pk": 28446, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DAMMARIE", - "center": "POINT (537718.9601443349383771 2371289.9301570011302829)", - "surface": 32760000, - "canton": null, - "numero_insee": "28122" - } - }, - { - "pk": 26055, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DAMPIERRE-SOUS-BROU", - "center": "POINT (508699.8432025145739317 2359039.3799376557581127)", - "surface": 14510000, - "canton": null, - "numero_insee": "28123" - } - }, - { - "pk": 3393, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DAMPIERRE-SUR-AVRE", - "center": "POINT (512109.3458955980604514 2418309.7798697967082262)", - "surface": 18270000, - "canton": null, - "numero_insee": "28124" - } - }, - { - "pk": 11090, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DANCY", - "center": "POINT (534888.1214193233754486 2350751.3128244443796575)", - "surface": 9880000, - "canton": null, - "numero_insee": "28126" - } - }, - { - "pk": 17024, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DANGEAU", - "center": "POINT (521135.5868825429352000 2355840.4992207861505449)", - "surface": 39650000, - "canton": null, - "numero_insee": "28127" - } - }, - { - "pk": 35255, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DANGERS", - "center": "POINT (527051.1112145778024569 2390514.7800364317372441)", - "surface": 7370000, - "canton": null, - "numero_insee": "28128" - } - }, - { - "pk": 7994, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DENONVILLE", - "center": "POINT (560185.9723551603965461 2377181.7080093757249415)", - "surface": 12920000, - "canton": null, - "numero_insee": "28129" - } - }, - { - "pk": 18841, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DIGNY", - "center": "POINT (511220.1945030331262387 2392884.6900256867520511)", - "surface": 40670000, - "canton": null, - "numero_insee": "28130" - } - }, - { - "pk": 31597, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DONNEMAIN-SAINT-MAMES", - "center": "POINT (527930.9807228605495766 2344989.0646137623116374)", - "surface": 12790000, - "canton": null, - "numero_insee": "28132" - } - }, - { - "pk": 12551, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DOUY", - "center": "POINT (521084.6828087334288284 2337926.7771937726065516)", - "surface": 6880000, - "canton": null, - "numero_insee": "28133" - } - }, - { - "pk": 17418, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DREUX", - "center": "POINT (528030.8297412490937859 2417041.4380659828893840)", - "surface": 24270000, - "canton": null, - "numero_insee": "28134" - } - }, - { - "pk": 12806, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "DROUE-SUR-DROUETTE", - "center": "POINT (553085.8336942715104669 2400538.9621088216081262)", - "surface": 5410000, - "canton": null, - "numero_insee": "28135" - } - }, - { - "pk": 3587, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ECLUZELLES", - "center": "POINT (532571.1603789961664006 2412576.1939663365483284)", - "surface": 3250000, - "canton": null, - "numero_insee": "28136" - } - }, - { - "pk": 6800, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ECROSNES", - "center": "POINT (555432.4449872265104204 2395154.7796499496325850)", - "surface": 23880000, - "canton": null, - "numero_insee": "28137" - } - }, - { - "pk": 26762, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "EPEAUTROLLES", - "center": "POINT (525531.8312628096900880 2368686.4861165257170796)", - "surface": 9320000, - "canton": null, - "numero_insee": "28139" - } - }, - { - "pk": 8623, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "EPERNON", - "center": "POINT (551892.6015454297885299 2399628.3613468473777175)", - "surface": 6590000, - "canton": null, - "numero_insee": "28140" - } - }, - { - "pk": 12007, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ERMENONVILLE-LA-GRANDE", - "center": "POINT (529114.1703978704754263 2371118.0874985423870385)", - "surface": 12090000, - "canton": null, - "numero_insee": "28141" - } - }, - { - "pk": 34007, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ERMENONVILLE-LA-PETITE", - "center": "POINT (526552.5053396791918203 2366293.2495358702726662)", - "surface": 5160000, - "canton": null, - "numero_insee": "28142" - } - }, - { - "pk": 11202, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ESCORPAIN", - "center": "POINT (517348.3838432115153410 2414050.4384568422101438)", - "surface": 9570000, - "canton": null, - "numero_insee": "28143" - } - }, - { - "pk": 27902, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LES ETILLEUX", - "center": "POINT (487062.2252889106748626 2361661.5617604395374656)", - "surface": 8430000, - "canton": null, - "numero_insee": "28144" - } - }, - { - "pk": 15515, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FAINS-LA-FOLIE", - "center": "POINT (547439.7317820152966306 2357661.0933585092425346)", - "surface": 22010000, - "canton": null, - "numero_insee": "28145" - } - }, - { - "pk": 28447, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FAVEROLLES", - "center": "POINT (544506.1196603294229135 2409373.5003830888308585)", - "surface": 10040000, - "canton": null, - "numero_insee": "28146" - } - }, - { - "pk": 12829, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FAVIERES", - "center": "POINT (518122.9239368771086447 2393142.3008368667215109)", - "surface": 12780000, - "canton": null, - "numero_insee": "28147" - } - }, - { - "pk": 8780, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE FAVRIL", - "center": "POINT (509282.2029403244378045 2385263.1688792691566050)", - "surface": 24000000, - "canton": null, - "numero_insee": "28148" - } - }, - { - "pk": 23321, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA FERTE-VIDAME", - "center": "POINT (492738.6321063698851503 2401136.9149815994314849)", - "surface": 40240000, - "canton": null, - "numero_insee": "28149" - } - }, - { - "pk": 7902, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA FERTE-VILLENEUIL", - "center": "POINT (525837.0916543458588421 2332061.9420750699937344)", - "surface": 8420000, - "canton": null, - "numero_insee": "28150" - } - }, - { - "pk": 32680, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FESSANVILLIERS-MATTANVILLIERS", - "center": "POINT (504152.6774087784579024 2412439.5851907967589796)", - "surface": 11860000, - "canton": null, - "numero_insee": "28151" - } - }, - { - "pk": 35749, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FLACEY", - "center": "POINT (525281.6870620251866058 2350671.2112536607310176)", - "surface": 14180000, - "canton": null, - "numero_insee": "28153" - } - }, - { - "pk": 35504, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FONTAINE-LA-GUYON", - "center": "POINT (523079.4052258463343605 2386779.0537323784083128)", - "surface": 14690000, - "canton": null, - "numero_insee": "28154" - } - }, - { - "pk": 30209, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FONTAINE-LES-RIBOUTS", - "center": "POINT (519710.6527351274853572 2406765.0568603207357228)", - "surface": 7170000, - "canton": null, - "numero_insee": "28155" - } - }, - { - "pk": 3586, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FONTAINE-SIMON", - "center": "POINT (500630.0780498231761158 2390795.1792288371361792)", - "surface": 17140000, - "canton": null, - "numero_insee": "28156" - } - }, - { - "pk": 35817, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FONTENAY-SUR-CONIE", - "center": "POINT (551289.9118343505542725 2351989.0575450574979186)", - "surface": 13430000, - "canton": null, - "numero_insee": "28157" - } - }, - { - "pk": 27790, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FONTENAY-SUR-EURE", - "center": "POINT (532251.1707301281858236 2378949.8662171997129917)", - "surface": 13750000, - "canton": null, - "numero_insee": "28158" - } - }, - { - "pk": 8505, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA FRAMBOISIERE", - "center": "POINT (502549.8077282122685574 2400618.0451077469624579)", - "surface": 5110000, - "canton": null, - "numero_insee": "28159" - } - }, - { - "pk": 35597, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRANCOURVILLE", - "center": "POINT (550069.3867542274529114 2378298.0170219321735203)", - "surface": 18590000, - "canton": null, - "numero_insee": "28160" - } - }, - { - "pk": 17266, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRAZE", - "center": "POINT (507966.9058832606533542 2362936.1353583354502916)", - "surface": 27770000, - "canton": null, - "numero_insee": "28161" - } - }, - { - "pk": 12545, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRESNAY-LE-COMTE", - "center": "POINT (536248.8686048672534525 2367574.9817623486742377)", - "surface": 8340000, - "canton": null, - "numero_insee": "28162" - } - }, - { - "pk": 29739, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRESNAY-LE-GILMERT", - "center": "POINT (532051.8014614946441725 2390856.6855763038620353)", - "surface": 6070000, - "canton": null, - "numero_insee": "28163" - } - }, - { - "pk": 22554, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRESNAY-L'EVEQUE", - "center": "POINT (561211.2419593348167837 2362279.4830156546086073)", - "surface": 29230000, - "canton": null, - "numero_insee": "28164" - } - }, - { - "pk": 18049, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRETIGNY", - "center": "POINT (501464.4871145338402130 2374690.6109382905997336)", - "surface": 23150000, - "canton": null, - "numero_insee": "28165" - } - }, - { - "pk": 5675, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRIAIZE", - "center": "POINT (510111.0310239318059757 2381867.6387491459026933)", - "surface": 10630000, - "canton": null, - "numero_insee": "28166" - } - }, - { - "pk": 29967, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "FRUNCE", - "center": "POINT (515637.9129302219953388 2379111.6406551189720631)", - "surface": 17010000, - "canton": null, - "numero_insee": "28167" - } - }, - { - "pk": 29277, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GALLARDON", - "center": "POINT (552148.7440120496321470 2392925.7867894722148776)", - "surface": 11220000, - "canton": null, - "numero_insee": "28168" - } - }, - { - "pk": 27757, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GARANCIERES-EN-BEAUCE", - "center": "POINT (568754.7058151399251074 2381656.5427599237300456)", - "surface": 11380000, - "canton": null, - "numero_insee": "28169" - } - }, - { - "pk": 6364, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GARANCIERES-EN-DROUAIS", - "center": "POINT (522268.0959178539924324 2412090.0361086349003017)", - "surface": 6530000, - "canton": null, - "numero_insee": "28170" - } - }, - { - "pk": 29318, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GARNAY", - "center": "POINT (526374.8146953467512503 2411623.9119716566056013)", - "surface": 14410000, - "canton": null, - "numero_insee": "28171" - } - }, - { - "pk": 27399, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GAS", - "center": "POINT (550519.3036848615156487 2396314.5702772415243089)", - "surface": 12330000, - "canton": null, - "numero_insee": "28172" - } - }, - { - "pk": 37536, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GASVILLE-OISEME", - "center": "POINT (542097.4426794797182083 2386237.1645994470454752)", - "surface": 9120000, - "canton": null, - "numero_insee": "28173" - } - }, - { - "pk": 33634, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA GAUDAINE", - "center": "POINT (497222.4018434666795656 2367350.0580478226765990)", - "surface": 9190000, - "canton": null, - "numero_insee": "28175" - } - }, - { - "pk": 17859, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE GAULT-SAINT-DENIS", - "center": "POINT (536603.3328969096764922 2361073.2002169038169086)", - "surface": 23630000, - "canton": null, - "numero_insee": "28176" - } - }, - { - "pk": 10062, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GELLAINVILLE", - "center": "POINT (540649.0954884256934747 2379920.5759542528539896)", - "surface": 12010000, - "canton": null, - "numero_insee": "28177" - } - }, - { - "pk": 31586, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GERMAINVILLE", - "center": "POINT (536740.3765370210167021 2416613.7270812457427382)", - "surface": 8790000, - "canton": null, - "numero_insee": "28178" - } - }, - { - "pk": 25584, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GILLES", - "center": "POINT (539890.4364496695343405 2434852.3916392852552235)", - "surface": 7330000, - "canton": null, - "numero_insee": "28180" - } - }, - { - "pk": 37291, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GOHORY", - "center": "POINT (517162.0889998291968368 2352304.8209764752537012)", - "surface": 9600000, - "canton": null, - "numero_insee": "28182" - } - }, - { - "pk": 18941, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GOMMERVILLE", - "center": "POINT (571541.0481376503594220 2371572.5989346215501428)", - "surface": 27470000, - "canton": null, - "numero_insee": "28183" - } - }, - { - "pk": 34067, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GOUILLONS", - "center": "POINT (563435.7569850869476795 2371504.7763426713645458)", - "surface": 12130000, - "canton": null, - "numero_insee": "28184" - } - }, - { - "pk": 37678, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GOUSSAINVILLE", - "center": "POINT (542809.8981846513925120 2420767.1911252373829484)", - "surface": 11060000, - "canton": null, - "numero_insee": "28185" - } - }, - { - "pk": 24514, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GUAINVILLE", - "center": "POINT (537377.2407420690869913 2436232.3622911460697651)", - "surface": 14340000, - "canton": null, - "numero_insee": "28187" - } - }, - { - "pk": 9640, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE GUE-DE-LONGROI", - "center": "POINT (553488.8718056180514395 2388233.6562102306634188)", - "surface": 6930000, - "canton": null, - "numero_insee": "28188" - } - }, - { - "pk": 26651, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GUILLEVILLE", - "center": "POINT (560244.8883221372961998 2358168.3996883216314018)", - "surface": 13470000, - "canton": null, - "numero_insee": "28189" - } - }, - { - "pk": 29871, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "GUILLONVILLE", - "center": "POINT (548254.7042253328254446 2343957.7662828806787729)", - "surface": 27390000, - "canton": null, - "numero_insee": "28190" - } - }, - { - "pk": 4206, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "HANCHES", - "center": "POINT (549187.5540696145035326 2400006.0435876850970089)", - "surface": 16310000, - "canton": null, - "numero_insee": "28191" - } - }, - { - "pk": 37297, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "HAPPONVILLIERS", - "center": "POINT (508602.4205826699035242 2370747.0957570401951671)", - "surface": 19160000, - "canton": null, - "numero_insee": "28192" - } - }, - { - "pk": 31089, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "HAVELU", - "center": "POINT (540904.5550488191656768 2421251.6293223490938544)", - "surface": 3730000, - "canton": null, - "numero_insee": "28193" - } - }, - { - "pk": 35018, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "HOUVILLE-LA-BRANCHE", - "center": "POINT (548329.0029462099773809 2382986.8450421746820211)", - "surface": 13830000, - "canton": null, - "numero_insee": "28194" - } - }, - { - "pk": 20421, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "HOUX", - "center": "POINT (547111.2989767446415499 2396986.5965865380130708)", - "surface": 6290000, - "canton": null, - "numero_insee": "28195" - } - }, - { - "pk": 18122, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ILLIERS-COMBRAY", - "center": "POINT (517634.1474603941314854 2367720.0338024236261845)", - "surface": 33950000, - "canton": null, - "numero_insee": "28196" - } - }, - { - "pk": 36367, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "INTREVILLE", - "center": "POINT (570182.0102310945512727 2366557.5969024817459285)", - "surface": 8990000, - "canton": null, - "numero_insee": "28197" - } - }, - { - "pk": 10624, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "JALLANS", - "center": "POINT (529154.3173516681417823 2342297.2511654882691801)", - "surface": 9080000, - "canton": null, - "numero_insee": "28198" - } - }, - { - "pk": 36829, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "JANVILLE", - "center": "POINT (566769.2978541041957214 2355821.2104405057616532)", - "surface": 12330000, - "canton": null, - "numero_insee": "28199" - } - }, - { - "pk": 22547, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "JAUDRAIS", - "center": "POINT (510378.0473004234372638 2397881.2040900788269937)", - "surface": 15450000, - "canton": null, - "numero_insee": "28200" - } - }, - { - "pk": 28681, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "JOUY", - "center": "POINT (541557.0303189870901406 2391036.0605899654328823)", - "surface": 13020000, - "canton": null, - "numero_insee": "28201" - } - }, - { - "pk": 12912, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LAMBLORE", - "center": "POINT (495216.9269029131974094 2403959.4644549251534045)", - "surface": 10810000, - "canton": null, - "numero_insee": "28202" - } - }, - { - "pk": 11756, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LANDELLES", - "center": "POINT (515285.2291437833919190 2385413.2083047204650939)", - "surface": 10400000, - "canton": null, - "numero_insee": "28203" - } - }, - { - "pk": 32379, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LANGEY", - "center": "POINT (514067.4215477948309854 2339369.4572464814409614)", - "surface": 19670000, - "canton": null, - "numero_insee": "28204" - } - }, - { - "pk": 20138, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LANNERAY", - "center": "POINT (517434.7282944127218798 2343600.6354843019507825)", - "surface": 26930000, - "canton": null, - "numero_insee": "28205" - } - }, - { - "pk": 9024, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LAONS", - "center": "POINT (515267.0756610389216803 2411631.4505804171785712)", - "surface": 15850000, - "canton": null, - "numero_insee": "28206" - } - }, - { - "pk": 24959, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LETHUIN", - "center": "POINT (564804.0246090122964233 2375419.0368957393802702)", - "surface": 7010000, - "canton": null, - "numero_insee": "28207" - } - }, - { - "pk": 5714, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LEVAINVILLE", - "center": "POINT (556389.8918254434829578 2388357.9728865390643477)", - "surface": 5510000, - "canton": null, - "numero_insee": "28208" - } - }, - { - "pk": 8947, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LEVES", - "center": "POINT (535785.8849897311301902 2387085.1351317195221782)", - "surface": 7520000, - "canton": null, - "numero_insee": "28209" - } - }, - { - "pk": 13084, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LEVESVILLE-LA-CHENARD", - "center": "POINT (562471.9281591605395079 2367093.5243947021663189)", - "surface": 13950000, - "canton": null, - "numero_insee": "28210" - } - }, - { - "pk": 9464, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LOGRON", - "center": "POINT (519386.0669757800642401 2349621.3473191149532795)", - "surface": 22790000, - "canton": null, - "numero_insee": "28211" - } - }, - { - "pk": 29665, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LOIGNY-LA-BATAILLE", - "center": "POINT (554327.8794769173255190 2347711.2595831779763103)", - "surface": 18250000, - "canton": null, - "numero_insee": "28212" - } - }, - { - "pk": 9787, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LORMAYE", - "center": "POINT (541442.6056900050025433 2404744.7287020729854703)", - "surface": 1450000, - "canton": null, - "numero_insee": "28213" - } - }, - { - "pk": 29740, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA LOUPE", - "center": "POINT (502764.7062713528866880 2386810.0900107794441283)", - "surface": 7390000, - "canton": null, - "numero_insee": "28214" - } - }, - { - "pk": 37727, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LOUVILLE-LA-CHENARD", - "center": "POINT (559847.6290513041894883 2369773.5377275533974171)", - "surface": 19900000, - "canton": null, - "numero_insee": "28215" - } - }, - { - "pk": 11469, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LOUVILLIERS-EN-DROUAIS", - "center": "POINT (522439.0417452615802176 2415593.8746326286345720)", - "surface": 4180000, - "canton": null, - "numero_insee": "28216" - } - }, - { - "pk": 35505, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LOUVILLIERS-LES-PERCHE", - "center": "POINT (506235.4950627533253282 2402650.0994991422630847)", - "surface": 14520000, - "canton": null, - "numero_insee": "28217" - } - }, - { - "pk": 4060, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LUIGNY", - "center": "POINT (502683.3750824463786557 2360490.4283921830356121)", - "surface": 16250000, - "canton": null, - "numero_insee": "28219" - } - }, - { - "pk": 28217, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LUISANT", - "center": "POINT (535738.4119637748226523 2380780.2438406171277165)", - "surface": 4390000, - "canton": null, - "numero_insee": "28220" - } - }, - { - "pk": 10395, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LUMEAU", - "center": "POINT (558350.6472440266516060 2345343.1027342760935426)", - "surface": 15140000, - "canton": null, - "numero_insee": "28221" - } - }, - { - "pk": 30978, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LUPLANTE", - "center": "POINT (529248.4417710180860013 2367016.2330848043784499)", - "surface": 16690000, - "canton": null, - "numero_insee": "28222" - } - }, - { - "pk": 9152, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LURAY", - "center": "POINT (530963.4916971337515861 2413363.3400018746033311)", - "surface": 4540000, - "canton": null, - "numero_insee": "28223" - } - }, - { - "pk": 23659, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LUTZ-EN-DUNOIS", - "center": "POINT (531773.6025325664086267 2340217.5233532376587391)", - "surface": 27640000, - "canton": null, - "numero_insee": "28224" - } - }, - { - "pk": 13109, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MAGNY", - "center": "POINT (520898.8021003510802984 2372250.4879178693518043)", - "surface": 13220000, - "canton": null, - "numero_insee": "28225" - } - }, - { - "pk": 29437, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MAILLEBOIS", - "center": "POINT (512426.0714848853531294 2404302.7297821324318647)", - "surface": 41340000, - "canton": null, - "numero_insee": "28226" - } - }, - { - "pk": 35983, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MAINTENON", - "center": "POINT (544396.2217747663380578 2398565.0489816851913929)", - "surface": 11520000, - "canton": null, - "numero_insee": "28227" - } - }, - { - "pk": 5188, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MAINVILLIERS", - "center": "POINT (534100.6529302129056305 2385169.7248692149296403)", - "surface": 12020000, - "canton": null, - "numero_insee": "28229" - } - }, - { - "pk": 35209, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MAISONS", - "center": "POINT (563578.1343571769539267 2378410.9394169864244759)", - "surface": 9520000, - "canton": null, - "numero_insee": "28230" - } - }, - { - "pk": 6654, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA MANCELIERE", - "center": "POINT (500305.9904214633861557 2405702.9499854180030525)", - "surface": 5920000, - "canton": null, - "numero_insee": "28231" - } - }, - { - "pk": 3046, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MANOU", - "center": "POINT (498502.9497467620531097 2393879.6869928110390902)", - "surface": 13610000, - "canton": null, - "numero_insee": "28232" - } - }, - { - "pk": 16983, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MARBOUE", - "center": "POINT (523309.5313562396913767 2347152.1812341520562768)", - "surface": 26690000, - "canton": null, - "numero_insee": "28233" - } - }, - { - "pk": 22326, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MARCHEVILLE", - "center": "POINT (518879.1590313211781904 2374435.2526740469038486)", - "surface": 12600000, - "canton": null, - "numero_insee": "28234" - } - }, - { - "pk": 11965, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MARCHEZAIS", - "center": "POINT (539415.3240769403055310 2419838.2426763805560768)", - "surface": 2230000, - "canton": null, - "numero_insee": "28235" - } - }, - { - "pk": 23286, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MARGON", - "center": "POINT (489779.2998341045458801 2371891.5476002604700625)", - "surface": 12230000, - "canton": null, - "numero_insee": "28236" - } - }, - { - "pk": 17358, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MAROLLES-LES-BUIS", - "center": "POINT (496658.0310997580527328 2375050.9408214334398508)", - "surface": 13210000, - "canton": null, - "numero_insee": "28237" - } - }, - { - "pk": 19571, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MARVILLE-MOUTIERS-BRULE", - "center": "POINT (529400.0391034354688600 2408847.1906016049906611)", - "surface": 20380000, - "canton": null, - "numero_insee": "28239" - } - }, - { - "pk": 28459, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE MEE", - "center": "POINT (530731.2686791642336175 2333203.5748424022458494)", - "surface": 19110000, - "canton": null, - "numero_insee": "28241" - } - }, - { - "pk": 22859, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MEREGLISE", - "center": "POINT (514441.2091789914411493 2366592.6464610612019897)", - "surface": 4420000, - "canton": null, - "numero_insee": "28242" - } - }, - { - "pk": 8976, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MEROUVILLE", - "center": "POINT (567675.3433087982703000 2367137.0551761891692877)", - "surface": 9660000, - "canton": null, - "numero_insee": "28243" - } - }, - { - "pk": 24193, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MESLAY-LE-GRENET", - "center": "POINT (529782.0894373839255422 2375026.4727754164487123)", - "surface": 8920000, - "canton": null, - "numero_insee": "28245" - } - }, - { - "pk": 17845, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MESLAY-LE-VIDAME", - "center": "POINT (536574.1119495711755008 2364575.5122856367379427)", - "surface": 14900000, - "canton": null, - "numero_insee": "28246" - } - }, - { - "pk": 29865, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE MESNIL-SIMON", - "center": "POINT (541109.5330875949002802 2432661.0835255212150514)", - "surface": 9220000, - "canton": null, - "numero_insee": "28247" - } - }, - { - "pk": 31811, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE MESNIL-THOMAS", - "center": "POINT (507960.7089748340076767 2399762.4225068469531834)", - "surface": 16170000, - "canton": null, - "numero_insee": "28248" - } - }, - { - "pk": 35942, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MEVOISINS", - "center": "POINT (545526.1608722656965256 2395072.0221315110102296)", - "surface": 4330000, - "canton": null, - "numero_insee": "28249" - } - }, - { - "pk": 36000, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MEZIERES-AU-PERCHE", - "center": "POINT (520786.2019350025802851 2361741.9161656768992543)", - "surface": 6160000, - "canton": null, - "numero_insee": "28250" - } - }, - { - "pk": 37378, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MEZIERES-EN-DROUAIS", - "center": "POINT (534157.1312685385346413 2414390.6634192746132612)", - "surface": 8520000, - "canton": null, - "numero_insee": "28251" - } - }, - { - "pk": 32260, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MIERMAIGNE", - "center": "POINT (500470.2678223708644509 2361873.0493107242509723)", - "surface": 11140000, - "canton": null, - "numero_insee": "28252" - } - }, - { - "pk": 32783, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MIGNIERES", - "center": "POINT (532293.7312340995995328 2373846.5516117028892040)", - "surface": 13080000, - "canton": null, - "numero_insee": "28253" - } - }, - { - "pk": 28874, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MITTAINVILLIERS", - "center": "POINT (524358.5589149885345250 2389391.5594992674887180)", - "surface": 11710000, - "canton": null, - "numero_insee": "28254" - } - }, - { - "pk": 6396, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MOINVILLE-LA-JEULIN", - "center": "POINT (552796.2209010788938031 2375318.6421478311531246)", - "surface": 6120000, - "canton": null, - "numero_insee": "28255" - } - }, - { - "pk": 24417, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MOLEANS", - "center": "POINT (530421.8200802676146850 2346310.7993822987191379)", - "surface": 10980000, - "canton": null, - "numero_insee": "28256" - } - }, - { - "pk": 19226, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONDONVILLE-SAINT-JEAN", - "center": "POINT (562014.7571724363369867 2373894.6249571549706161)", - "surface": 5500000, - "canton": null, - "numero_insee": "28257" - } - }, - { - "pk": 37146, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTAINVILLE", - "center": "POINT (540377.4518714770674706 2364507.1775288856588304)", - "surface": 15640000, - "canton": null, - "numero_insee": "28258" - } - }, - { - "pk": 34111, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTBOISSIER", - "center": "POINT (531113.8775394272524863 2359326.1665957230143249)", - "surface": 14190000, - "canton": null, - "numero_insee": "28259" - } - }, - { - "pk": 25542, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTHARVILLE", - "center": "POINT (524758.0007290580542758 2353468.9153022146783769)", - "surface": 6460000, - "canton": null, - "numero_insee": "28260" - } - }, - { - "pk": 15500, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTIGNY-LE-CHARTIF", - "center": "POINT (510439.4098097985843197 2366459.2619161857292056)", - "surface": 26150000, - "canton": null, - "numero_insee": "28261" - } - }, - { - "pk": 34910, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTIGNY-LE-GANNELON", - "center": "POINT (517099.4619415758643299 2335792.0042803320102394)", - "surface": 8970000, - "canton": null, - "numero_insee": "28262" - } - }, - { - "pk": 31069, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTIGNY-SUR-AVRE", - "center": "POINT (502435.8108281331951730 2414326.6187910791486502)", - "surface": 7440000, - "canton": null, - "numero_insee": "28263" - } - }, - { - "pk": 15502, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTIREAU", - "center": "POINT (503619.3151520363753662 2380312.5563896032981575)", - "surface": 10420000, - "canton": null, - "numero_insee": "28264" - } - }, - { - "pk": 8016, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTLANDON", - "center": "POINT (502843.7627333601703867 2377303.9529613149352372)", - "surface": 2940000, - "canton": null, - "numero_insee": "28265" - } - }, - { - "pk": 11857, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MONTREUIL", - "center": "POINT (529609.2936229199403897 2419756.4495966974645853)", - "surface": 6310000, - "canton": null, - "numero_insee": "28267" - } - }, - { - "pk": 11583, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MORAINVILLE", - "center": "POINT (562700.1483738282695413 2375701.6546153738163412)", - "surface": 3880000, - "canton": null, - "numero_insee": "28268" - } - }, - { - "pk": 24405, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MORANCEZ", - "center": "POINT (538265.0774768478004262 2377799.1734269023872912)", - "surface": 7130000, - "canton": null, - "numero_insee": "28269" - } - }, - { - "pk": 32261, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MORIERS", - "center": "POINT (533324.5179814428556710 2358243.7963621090166271)", - "surface": 9040000, - "canton": null, - "numero_insee": "28270" - } - }, - { - "pk": 6935, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MORVILLIERS", - "center": "POINT (497497.5804037345806137 2406480.1608642037026584)", - "surface": 10020000, - "canton": null, - "numero_insee": "28271" - } - }, - { - "pk": 36461, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MOTTEREAU", - "center": "POINT (513178.6731286102440208 2361978.7811004049144685)", - "surface": 8840000, - "canton": null, - "numero_insee": "28272" - } - }, - { - "pk": 30985, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MOULHARD", - "center": "POINT (501504.2144732066662982 2357878.7156908232718706)", - "surface": 11420000, - "canton": null, - "numero_insee": "28273" - } - }, - { - "pk": 37940, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "MOUTIERS", - "center": "POINT (557474.4995656416285783 2366351.2280111722648144)", - "surface": 21490000, - "canton": null, - "numero_insee": "28274" - } - }, - { - "pk": 11114, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NERON", - "center": "POINT (538479.9673352427780628 2400016.7190371472388506)", - "surface": 19250000, - "canton": null, - "numero_insee": "28275" - } - }, - { - "pk": 29234, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NEUVY-EN-BEAUCE", - "center": "POINT (565599.0793619863688946 2364117.4989885883405805)", - "surface": 15780000, - "canton": null, - "numero_insee": "28276" - } - }, - { - "pk": 28009, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NEUVY-EN-DUNOIS", - "center": "POINT (540446.7726734150201082 2356201.6789434682577848)", - "surface": 25890000, - "canton": null, - "numero_insee": "28277" - } - }, - { - "pk": 13247, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NOGENT-LE-PHAYE", - "center": "POINT (543818.5840222587576136 2383849.8226545443758368)", - "surface": 14980000, - "canton": null, - "numero_insee": "28278" - } - }, - { - "pk": 35016, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NOGENT-LE-ROI", - "center": "POINT (540050.0784399068215862 2403732.4089849703013897)", - "surface": 13220000, - "canton": null, - "numero_insee": "28279" - } - }, - { - "pk": 16956, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NOGENT-LE-ROTROU", - "center": "POINT (486294.4582051535835490 2369761.0856106178835034)", - "surface": 23360000, - "canton": null, - "numero_insee": "28280" - } - }, - { - "pk": 34791, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NOGENT-SUR-EURE", - "center": "POINT (528763.9192901232745498 2377119.4954372160136700)", - "surface": 9200000, - "canton": null, - "numero_insee": "28281" - } - }, - { - "pk": 24205, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "NOTTONVILLE", - "center": "POINT (539518.7632943828357384 2347487.5051513607613742)", - "surface": 24710000, - "canton": null, - "numero_insee": "28283" - } - }, - { - "pk": 5581, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OINVILLE-SAINT-LIPHARD", - "center": "POINT (569339.2042589564807713 2359645.5060665071941912)", - "surface": 21850000, - "canton": null, - "numero_insee": "28284" - } - }, - { - "pk": 34066, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OINVILLE-SOUS-AUNEAU", - "center": "POINT (553909.1971055229660124 2385835.4622600814327598)", - "surface": 10480000, - "canton": null, - "numero_insee": "28285" - } - }, - { - "pk": 37823, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OLLE", - "center": "POINT (522961.8199652234325185 2376870.9928925703279674)", - "surface": 13100000, - "canton": null, - "numero_insee": "28286" - } - }, - { - "pk": 21287, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ORGERES-EN-BEAUCE", - "center": "POINT (551415.0609174405690283 2348987.8833091123960912)", - "surface": 15370000, - "canton": null, - "numero_insee": "28287" - } - }, - { - "pk": 31775, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ORLU", - "center": "POINT (569613.8451323322951794 2374658.7064050254411995)", - "surface": 5160000, - "canton": null, - "numero_insee": "28288" - } - }, - { - "pk": 19113, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ORMOY", - "center": "POINT (536151.8027183634694666 2403199.5322839878499508)", - "surface": 9230000, - "canton": null, - "numero_insee": "28289" - } - }, - { - "pk": 33382, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ORROUER", - "center": "POINT (521642.6344833768671378 2379061.5819318019784987)", - "surface": 13170000, - "canton": null, - "numero_insee": "28290" - } - }, - { - "pk": 35210, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OUARVILLE", - "center": "POINT (557912.9226844182703644 2373760.2544001499190927)", - "surface": 20380000, - "canton": null, - "numero_insee": "28291" - } - }, - { - "pk": 34095, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OUERRE", - "center": "POINT (537575.9355697532882914 2412417.8037539361976087)", - "surface": 12810000, - "canton": null, - "numero_insee": "28292" - } - }, - { - "pk": 10633, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OULINS", - "center": "POINT (537728.3475755215622485 2430131.1786130364052951)", - "surface": 10240000, - "canton": null, - "numero_insee": "28293" - } - }, - { - "pk": 17098, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OYSONVILLE", - "center": "POINT (571194.7837592998985201 2377073.6665567439049482)", - "surface": 9620000, - "canton": null, - "numero_insee": "28294" - } - }, - { - "pk": 27209, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "OZOIR-LE-BREUIL", - "center": "POINT (535717.9912220741389319 2335246.6745860930532217)", - "surface": 22780000, - "canton": null, - "numero_insee": "28295" - } - }, - { - "pk": 37155, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PERONVILLE", - "center": "POINT (543783.4136619917117059 2340117.5895172622986138)", - "surface": 24910000, - "canton": null, - "numero_insee": "28296" - } - }, - { - "pk": 12148, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PEZY", - "center": "POINT (542844.0140365799888968 2368730.8209464345127344)", - "surface": 6210000, - "canton": null, - "numero_insee": "28297" - } - }, - { - "pk": 30210, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PIERRES", - "center": "POINT (542089.7562983907992020 2399146.2150017186067998)", - "surface": 10540000, - "canton": null, - "numero_insee": "28298" - } - }, - { - "pk": 25532, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LES PINTHIERES", - "center": "POINT (543783.1279848420526832 2412069.3331607296131551)", - "surface": 4070000, - "canton": null, - "numero_insee": "28299" - } - }, - { - "pk": 13601, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "POINVILLE", - "center": "POINT (567494.0465780464001000 2352925.1378158344887197)", - "surface": 8160000, - "canton": null, - "numero_insee": "28300" - } - }, - { - "pk": 24597, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "POISVILLIERS", - "center": "POINT (535260.5221971136052161 2390082.8819567556492984)", - "surface": 10630000, - "canton": null, - "numero_insee": "28301" - } - }, - { - "pk": 17844, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PONTGOUIN", - "center": "POINT (511855.5574534339830279 2388687.0037417756393552)", - "surface": 25460000, - "canton": null, - "numero_insee": "28302" - } - }, - { - "pk": 33068, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "POUPRY", - "center": "POINT (562460.1062554910313338 2344576.8716840674169362)", - "surface": 14570000, - "canton": null, - "numero_insee": "28303" - } - }, - { - "pk": 17076, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PRASVILLE", - "center": "POINT (553591.1684506393503398 2364017.0948527851141989)", - "surface": 16580000, - "canton": null, - "numero_insee": "28304" - } - }, - { - "pk": 34668, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PRE-SAINT-MARTIN", - "center": "POINT (535726.9469234843272716 2358163.7634306508116424)", - "surface": 7310000, - "canton": null, - "numero_insee": "28306" - } - }, - { - "pk": 34096, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PRUDEMANCHE", - "center": "POINT (511442.2255237880744971 2414301.4758262848481536)", - "surface": 15490000, - "canton": null, - "numero_insee": "28308" - } - }, - { - "pk": 25167, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PRUNAY-LE-GILLON", - "center": "POINT (548000.6204921487951651 2374377.9303841912187636)", - "surface": 25730000, - "canton": null, - "numero_insee": "28309" - } - }, - { - "pk": 33154, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA PUISAYE", - "center": "POINT (499132.6881874803220853 2402390.8930201879702508)", - "surface": 20550000, - "canton": null, - "numero_insee": "28310" - } - }, - { - "pk": 29019, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE PUISET", - "center": "POINT (564756.2468177470145747 2357205.3976855515502393)", - "surface": 7950000, - "canton": null, - "numero_insee": "28311" - } - }, - { - "pk": 8250, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "PUISEUX", - "center": "POINT (528632.9067888209829107 2404838.0137506779283285)", - "surface": 5180000, - "canton": null, - "numero_insee": "28312" - } - }, - { - "pk": 5198, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "RECLAINVILLE", - "center": "POINT (555734.0714747271267697 2371040.0897410023026168)", - "surface": 9940000, - "canton": null, - "numero_insee": "28313" - } - }, - { - "pk": 35609, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LES RESSUINTES", - "center": "POINT (495846.4092928102472797 2400462.2482120306231081)", - "surface": 7530000, - "canton": null, - "numero_insee": "28314" - } - }, - { - "pk": 28216, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "REVERCOURT", - "center": "POINT (507237.9556630759034306 2414466.6295960457064211)", - "surface": 5470000, - "canton": null, - "numero_insee": "28315" - } - }, - { - "pk": 10248, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ROHAIRE", - "center": "POINT (489674.4076599670224823 2408616.6899477657862008)", - "surface": 10040000, - "canton": null, - "numero_insee": "28316" - } - }, - { - "pk": 26498, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ROINVILLE", - "center": "POINT (557037.1180077111348510 2382759.3947905940003693)", - "surface": 6840000, - "canton": null, - "numero_insee": "28317" - } - }, - { - "pk": 37942, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ROMILLY-SUR-AIGRE", - "center": "POINT (521336.5100867367582396 2331724.2104207905940711)", - "surface": 12140000, - "canton": null, - "numero_insee": "28318" - } - }, - { - "pk": 33542, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ROUVRAY-SAINT-DENIS", - "center": "POINT (570701.6030656540533528 2364260.2711423779837787)", - "surface": 19560000, - "canton": null, - "numero_insee": "28319" - } - }, - { - "pk": 36678, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ROUVRAY-SAINT-FLORENTIN", - "center": "POINT (542498.0491378393489867 2362223.1999341994524002)", - "surface": 9420000, - "canton": null, - "numero_insee": "28320" - } - }, - { - "pk": 32346, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "ROUVRES", - "center": "POINT (537059.6454626868944615 2426323.0220983079634607)", - "surface": 16440000, - "canton": null, - "numero_insee": "28321" - } - }, - { - "pk": 14611, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-ANGE-ET-TORCAY", - "center": "POINT (517213.2539692446007393 2406243.9095324105583131)", - "surface": 16700000, - "canton": null, - "numero_insee": "28323" - } - }, - { - "pk": 30548, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-ARNOULT-DES-BOIS", - "center": "POINT (519960.7449450800777413 2388754.4928892408497632)", - "surface": 20680000, - "canton": null, - "numero_insee": "28324" - } - }, - { - "pk": 8891, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-AUBIN-DES-BOIS", - "center": "POINT (526594.1622748887166381 2385307.2770775840617716)", - "surface": 18150000, - "canton": null, - "numero_insee": "28325" - } - }, - { - "pk": 31184, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-AVIT-LES-GUESPIERES", - "center": "POINT (520269.1991757288342342 2363739.0699735111556947)", - "surface": 12740000, - "canton": null, - "numero_insee": "28326" - } - }, - { - "pk": 28460, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-BOMER", - "center": "POINT (487908.4627001968910918 2356164.5542384386062622)", - "surface": 13400000, - "canton": null, - "numero_insee": "28327" - } - }, - { - "pk": 19280, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (528001.8499711118638515 2348492.2558635873720050)", - "surface": 6180000, - "canton": null, - "numero_insee": "28329" - } - }, - { - "pk": 5315, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-CLOUD-EN-DUNOIS", - "center": "POINT (535287.6645643684314564 2338845.7866024300456047)", - "surface": 8730000, - "canton": null, - "numero_insee": "28330" - } - }, - { - "pk": 19128, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-DENIS-D'AUTHOU", - "center": "POINT (500593.0210155680542812 2371180.8360238191671669)", - "surface": 22070000, - "canton": null, - "numero_insee": "28331" - } - }, - { - "pk": 14084, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINTE-GEMME-MORONVAL", - "center": "POINT (531945.7548070942284539 2415573.0471770465373993)", - "surface": 5480000, - "canton": null, - "numero_insee": "28332" - } - }, - { - "pk": 35370, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-DENIS-DES-PUITS", - "center": "POINT (512959.4866935854079202 2376287.3293080469593406)", - "surface": 13790000, - "canton": null, - "numero_insee": "28333" - } - }, - { - "pk": 3593, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-DENIS-LES-PONTS", - "center": "POINT (520661.0678494508028962 2340725.3447780981659889)", - "surface": 13770000, - "canton": null, - "numero_insee": "28334" - } - }, - { - "pk": 11953, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-EMAN", - "center": "POINT (515613.6693764111842029 2370004.8771115886047482)", - "surface": 4650000, - "canton": null, - "numero_insee": "28336" - } - }, - { - "pk": 32245, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-GEORGES-SUR-EURE", - "center": "POINT (527434.7145301074488088 2380510.8545088013634086)", - "surface": 15480000, - "canton": null, - "numero_insee": "28337" - } - }, - { - "pk": 35739, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-GERMAIN-LE-GAILLARD", - "center": "POINT (519824.7975270808674395 2381047.8716206643730402)", - "surface": 8270000, - "canton": null, - "numero_insee": "28339" - } - }, - { - "pk": 19194, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-HILAIRE-SUR-YERRE", - "center": "POINT (516585.7871530470438302 2337388.9280213289894164)", - "surface": 16940000, - "canton": null, - "numero_insee": "28340" - } - }, - { - "pk": 10688, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-JEAN-DE-REBERVILLIERS", - "center": "POINT (520340.2015024205902591 2403267.8618711880408227)", - "surface": 10930000, - "canton": null, - "numero_insee": "28341" - } - }, - { - "pk": 7292, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-JEAN-PIERRE-FIXTE", - "center": "POINT (488118.9082405581721105 2366974.2029055668972433)", - "surface": 7030000, - "canton": null, - "numero_insee": "28342" - } - }, - { - "pk": 25814, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-LAURENT-LA-GATINE", - "center": "POINT (541292.4318130702013150 2410747.6427181405015290)", - "surface": 7000000, - "canton": null, - "numero_insee": "28343" - } - }, - { - "pk": 27366, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-LEGER-DES-AUBEES", - "center": "POINT (556563.5617376493755728 2379553.1460469253361225)", - "surface": 13350000, - "canton": null, - "numero_insee": "28344" - } - }, - { - "pk": 9395, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-LUBIN-DE-CRAVANT", - "center": "POINT (509053.2260969305061735 2412780.5598113215528429)", - "surface": 6910000, - "canton": null, - "numero_insee": "28346" - } - }, - { - "pk": 11691, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-LUBIN-DE-LA-HAYE", - "center": "POINT (542977.4445461749564856 2424671.2520123952999711)", - "surface": 14340000, - "canton": null, - "numero_insee": "28347" - } - }, - { - "pk": 14060, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-LUBIN-DES-JONCHERETS", - "center": "POINT (515418.0465303879464045 2417536.7741086869500577)", - "surface": 14450000, - "canton": null, - "numero_insee": "28348" - } - }, - { - "pk": 35017, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-LUCIEN", - "center": "POINT (547347.1416640564566478 2404693.9566933815367520)", - "surface": 8830000, - "canton": null, - "numero_insee": "28349" - } - }, - { - "pk": 36664, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-LUPERCE", - "center": "POINT (523415.4512351704761386 2382478.7877978151664138)", - "surface": 14520000, - "canton": null, - "numero_insee": "28350" - } - }, - { - "pk": 31813, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-MAIXME-HAUTERIVE", - "center": "POINT (515364.5505484510213137 2399924.1158305201679468)", - "surface": 32060000, - "canton": null, - "numero_insee": "28351" - } - }, - { - "pk": 9788, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-MARTIN-DE-NIGELLES", - "center": "POINT (546670.9355607990873978 2401786.2849049880169332)", - "surface": 12380000, - "canton": null, - "numero_insee": "28352" - } - }, - { - "pk": 3319, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-MAUR-SUR-LE-LOIR", - "center": "POINT (531586.7443676996044815 2350623.7026796601712704)", - "surface": 16680000, - "canton": null, - "numero_insee": "28353" - } - }, - { - "pk": 27083, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-MAURICE-SAINT-GERMAIN", - "center": "POINT (506552.1622245545149781 2388642.8723764820024371)", - "surface": 12130000, - "canton": null, - "numero_insee": "28354" - } - }, - { - "pk": 9469, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-OUEN-MARCHEFROY", - "center": "POINT (540739.3547379351221025 2429055.5599185959435999)", - "surface": 9410000, - "canton": null, - "numero_insee": "28355" - } - }, - { - "pk": 27208, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-PELLERIN", - "center": "POINT (511042.8944176372024231 2342046.2982710334472358)", - "surface": 13740000, - "canton": null, - "numero_insee": "28356" - } - }, - { - "pk": 26533, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-PIAT", - "center": "POINT (544029.3856580039719120 2394559.1723531358875334)", - "surface": 11410000, - "canton": null, - "numero_insee": "28357" - } - }, - { - "pk": 27192, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-PREST", - "center": "POINT (539177.2098737854976207 2388414.3552780426107347)", - "surface": 16900000, - "canton": null, - "numero_insee": "28358" - } - }, - { - "pk": 13412, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-REMY-SUR-AVRE", - "center": "POINT (519022.7695633918629028 2417266.5857479278929532)", - "surface": 13050000, - "canton": null, - "numero_insee": "28359" - } - }, - { - "pk": 24596, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-SAUVEUR-MARVILLE", - "center": "POINT (522459.0294503240147606 2401184.0454924572259188)", - "surface": 18850000, - "canton": null, - "numero_insee": "28360" - } - }, - { - "pk": 31788, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "BLEURY-SAINT-SYMPHORIEN", - "center": "POINT (557066.9187866981374100 2391165.6169926673173904)", - "surface": 17310000, - "canton": null, - "numero_insee": "28361" - } - }, - { - "pk": 16202, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINT-VICTOR-DE-BUTHON", - "center": "POINT (499421.5874899558839388 2379677.2205959972925484)", - "surface": 28210000, - "canton": null, - "numero_insee": "28362" - } - }, - { - "pk": 24756, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAINVILLE", - "center": "POINT (566269.8369133430533111 2379634.3180306525900960)", - "surface": 22020000, - "canton": null, - "numero_insee": "28363" - } - }, - { - "pk": 27917, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SANCHEVILLE", - "center": "POINT (543668.1183908259263262 2353926.8762112823314965)", - "surface": 21940000, - "canton": null, - "numero_insee": "28364" - } - }, - { - "pk": 3316, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SANDARVILLE", - "center": "POINT (526702.5913484751945361 2372298.8515772591345012)", - "surface": 9550000, - "canton": null, - "numero_insee": "28365" - } - }, - { - "pk": 31292, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SANTEUIL", - "center": "POINT (555791.4810293816262856 2376144.2501934436149895)", - "surface": 9340000, - "canton": null, - "numero_insee": "28366" - } - }, - { - "pk": 34034, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SANTILLY", - "center": "POINT (565917.2571084577357396 2350009.8008968373760581)", - "surface": 17910000, - "canton": null, - "numero_insee": "28367" - } - }, - { - "pk": 35985, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LA SAUCELLE", - "center": "POINT (503321.1866933935089037 2404126.9067666870541871)", - "surface": 14260000, - "canton": null, - "numero_insee": "28368" - } - }, - { - "pk": 33384, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAULNIERES", - "center": "POINT (521102.3597791546490043 2407877.4142888151109219)", - "surface": 10650000, - "canton": null, - "numero_insee": "28369" - } - }, - { - "pk": 35816, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAUMERAY", - "center": "POINT (524387.7499875607900321 2361871.9983917982317507)", - "surface": 19450000, - "canton": null, - "numero_insee": "28370" - } - }, - { - "pk": 8204, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SAUSSAY", - "center": "POINT (531939.0111489441478625 2428381.7366366828791797)", - "surface": 4690000, - "canton": null, - "numero_insee": "28371" - } - }, - { - "pk": 33155, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SENANTES", - "center": "POINT (544529.5119932845700532 2406571.7513986583799124)", - "surface": 7680000, - "canton": null, - "numero_insee": "28372" - } - }, - { - "pk": 18230, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SENONCHES", - "center": "POINT (502684.8201983082108200 2396416.2188809178769588)", - "surface": 62800000, - "canton": null, - "numero_insee": "28373" - } - }, - { - "pk": 32084, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SERAZEREUX", - "center": "POINT (533577.7095051629003137 2399875.7518073748797178)", - "surface": 15670000, - "canton": null, - "numero_insee": "28374" - } - }, - { - "pk": 7435, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SERVILLE", - "center": "POINT (537518.3294016575673595 2419322.0710906465537846)", - "surface": 5620000, - "canton": null, - "numero_insee": "28375" - } - }, - { - "pk": 10562, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SOIZE", - "center": "POINT (492336.3384551486233249 2353199.1245755371637642)", - "surface": 18360000, - "canton": null, - "numero_insee": "28376" - } - }, - { - "pk": 25086, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SOREL-MOUSSEL", - "center": "POINT (530757.4700050991959870 2426070.3225092487409711)", - "surface": 12980000, - "canton": null, - "numero_insee": "28377" - } - }, - { - "pk": 21319, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SOUANCE-AU-PERCHE", - "center": "POINT (488439.0514288517297246 2364575.1139575983397663)", - "surface": 19050000, - "canton": null, - "numero_insee": "28378" - } - }, - { - "pk": 37857, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SOULAIRES", - "center": "POINT (544758.2367526731686667 2391162.8558834251016378)", - "surface": 5980000, - "canton": null, - "numero_insee": "28379" - } - }, - { - "pk": 26764, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "SOURS", - "center": "POINT (545154.5132337285904214 2379657.9728789515793324)", - "surface": 33140000, - "canton": null, - "numero_insee": "28380" - } - }, - { - "pk": 36368, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TERMINIERS", - "center": "POINT (554763.2748015680117533 2343511.7745095328427851)", - "surface": 32110000, - "canton": null, - "numero_insee": "28382" - } - }, - { - "pk": 30761, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "THEUVILLE", - "center": "POINT (544729.3851775343064219 2370647.9389401506632566)", - "surface": 24110000, - "canton": null, - "numero_insee": "28383" - } - }, - { - "pk": 16278, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "LE THIEULIN", - "center": "POINT (511332.6274727297713980 2379376.0149495317600667)", - "surface": 11880000, - "canton": null, - "numero_insee": "28385" - } - }, - { - "pk": 14535, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "THIMERT-GATELLES", - "center": "POINT (520603.6769950615707785 2395664.7270846967585385)", - "surface": 42860000, - "canton": null, - "numero_insee": "28386" - } - }, - { - "pk": 37840, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "THIRON-GARDAIS", - "center": "POINT (501619.4709018039284274 2368087.1234467942267656)", - "surface": 13470000, - "canton": null, - "numero_insee": "28387" - } - }, - { - "pk": 34097, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "THIVARS", - "center": "POINT (534174.9376810916000977 2376263.9713067864067852)", - "surface": 9210000, - "canton": null, - "numero_insee": "28388" - } - }, - { - "pk": 6311, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "THIVILLE", - "center": "POINT (527505.7215985235525295 2335978.7881986750289798)", - "surface": 28160000, - "canton": null, - "numero_insee": "28389" - } - }, - { - "pk": 34712, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TILLAY-LE-PENEUX", - "center": "POINT (557300.6171381067251787 2351238.7001922577619553)", - "surface": 22310000, - "canton": null, - "numero_insee": "28390" - } - }, - { - "pk": 34711, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TOURY", - "center": "POINT (570677.7569117394741625 2355153.4041948467493057)", - "surface": 18950000, - "canton": null, - "numero_insee": "28391" - } - }, - { - "pk": 11851, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TRANCRAINVILLE", - "center": "POINT (564633.5784582367632538 2359906.3521626917645335)", - "surface": 11670000, - "canton": null, - "numero_insee": "28392" - } - }, - { - "pk": 16102, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TREMBLAY-LES-VILLAGES", - "center": "POINT (527777.3843834594590589 2399427.1067558573558927)", - "surface": 63480000, - "canton": null, - "numero_insee": "28393" - } - }, - { - "pk": 6934, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TREON", - "center": "POINT (525396.7082977429963648 2408913.8900143918581307)", - "surface": 10990000, - "canton": null, - "numero_insee": "28394" - } - }, - { - "pk": 21578, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TRIZAY-COUTRETOT-SAINT-SERGE", - "center": "POINT (491722.1090913824737072 2366904.0598016055300832)", - "surface": 11140000, - "canton": null, - "numero_insee": "28395" - } - }, - { - "pk": 34580, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "TRIZAY-LES-BONNEVAL", - "center": "POINT (525336.7173553128959611 2356075.6538158380426466)", - "surface": 9880000, - "canton": null, - "numero_insee": "28396" - } - }, - { - "pk": 7636, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "UMPEAU", - "center": "POINT (550307.7214244324713945 2385705.2992468583397567)", - "surface": 11490000, - "canton": null, - "numero_insee": "28397" - } - }, - { - "pk": 16822, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "UNVERRE", - "center": "POINT (505930.4500856965314597 2355113.4714934942312539)", - "surface": 62240000, - "canton": null, - "numero_insee": "28398" - } - }, - { - "pk": 11331, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VARIZE", - "center": "POINT (539557.1800023816758767 2342884.4026194317266345)", - "surface": 13840000, - "canton": null, - "numero_insee": "28400" - } - }, - { - "pk": 33383, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VAUPILLON", - "center": "POINT (498873.8473503112909384 2385376.7417405308224261)", - "surface": 12700000, - "canton": null, - "numero_insee": "28401" - } - }, - { - "pk": 12544, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VERIGNY", - "center": "POINT (526132.1881462463643402 2392708.6771567203104496)", - "surface": 13090000, - "canton": null, - "numero_insee": "28402" - } - }, - { - "pk": 7892, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VER-LES-CHARTRES", - "center": "POINT (536480.6068308640969917 2375782.8457589098252356)", - "surface": 9510000, - "canton": null, - "numero_insee": "28403" - } - }, - { - "pk": 33893, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VERNOUILLET", - "center": "POINT (527357.0872548517072573 2413833.6187505903653800)", - "surface": 12240000, - "canton": null, - "numero_insee": "28404" - } - }, - { - "pk": 37613, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VERT-EN-DROUAIS", - "center": "POINT (523324.5914999151718803 2417402.4907270306721330)", - "surface": 9730000, - "canton": null, - "numero_insee": "28405" - } - }, - { - "pk": 23183, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VIABON", - "center": "POINT (552143.6907109089661390 2357600.3158809030428529)", - "surface": 36840000, - "canton": null, - "numero_insee": "28406" - } - }, - { - "pk": 19478, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VICHERES", - "center": "POINT (493849.2677961422014050 2363819.4752821144647896)", - "surface": 12460000, - "canton": null, - "numero_insee": "28407" - } - }, - { - "pk": 15311, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VIERVILLE", - "center": "POINT (567599.1465059766778722 2376242.9986307993531227)", - "surface": 6730000, - "canton": null, - "numero_insee": "28408" - } - }, - { - "pk": 37761, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VIEUVICQ", - "center": "POINT (516072.2592079877504148 2363003.6036750208586454)", - "surface": 15750000, - "canton": null, - "numero_insee": "28409" - } - }, - { - "pk": 28458, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLAMPUY", - "center": "POINT (538395.6163860212545842 2338171.1940424358472228)", - "surface": 16690000, - "canton": null, - "numero_insee": "28410" - } - }, - { - "pk": 30770, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLARS", - "center": "POINT (541120.5106379212811589 2359409.6518718609586358)", - "surface": 8410000, - "canton": null, - "numero_insee": "28411" - } - }, - { - "pk": 22616, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLEAU", - "center": "POINT (545014.7413769973209128 2360442.8952849218621850)", - "surface": 13920000, - "canton": null, - "numero_insee": "28412" - } - }, - { - "pk": 15139, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLEBON", - "center": "POINT (515652.9105115473503247 2377310.4728293851949275)", - "surface": 2260000, - "canton": null, - "numero_insee": "28414" - } - }, - { - "pk": 37197, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLEMEUX-SUR-EURE", - "center": "POINT (535207.8323891522595659 2408395.2774941800162196)", - "surface": 18780000, - "canton": null, - "numero_insee": "28415" - } - }, - { - "pk": 7833, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLENEUVE-SAINT-NICOLAS", - "center": "POINT (542768.1740319209638983 2365828.0803714822977781)", - "surface": 5240000, - "canton": null, - "numero_insee": "28416" - } - }, - { - "pk": 29101, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLIERS-LE-MORHIER", - "center": "POINT (543560.6302407113835216 2402761.0136623596772552)", - "surface": 10600000, - "canton": null, - "numero_insee": "28417" - } - }, - { - "pk": 23475, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VILLIERS-SAINT-ORIEN", - "center": "POINT (537299.7491978325415403 2349570.5448965122923255)", - "surface": 15210000, - "canton": null, - "numero_insee": "28418" - } - }, - { - "pk": 17267, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VITRAY-EN-BEAUCE", - "center": "POINT (532171.2113038076786324 2364538.7852134034037590)", - "surface": 10940000, - "canton": null, - "numero_insee": "28419" - } - }, - { - "pk": 5727, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VOISE", - "center": "POINT (553471.5902094702469185 2378326.4431207124143839)", - "surface": 10320000, - "canton": null, - "numero_insee": "28421" - } - }, - { - "pk": 36450, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "VOVES", - "center": "POINT (547590.5548895234242082 2363566.6716324584558606)", - "surface": 33570000, - "canton": null, - "numero_insee": "28422" - } - }, - { - "pk": 25724, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "YERMENONVILLE", - "center": "POINT (547231.4184963251464069 2394585.9099514773115516)", - "surface": 5160000, - "canton": null, - "numero_insee": "28423" - } - }, - { - "pk": 21429, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "YEVRES", - "center": "POINT (514735.4875164307304658 2355286.8267624885775149)", - "surface": 41730000, - "canton": null, - "numero_insee": "28424" - } - }, - { - "pk": 4813, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "YMERAY", - "center": "POINT (553172.7927529352018610 2390132.3626539744436741)", - "surface": 6850000, - "canton": null, - "numero_insee": "28425" - } - }, - { - "pk": 11157, - "model": "ishtar_common.town", - "fields": { - "departement": 29, - "name": "YMONVILLE", - "center": "POINT (556416.4352135601220652 2361238.6630778945982456)", - "surface": 20880000, - "canton": null, - "numero_insee": "28426" - } - }, - { - "pk": 23869, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ARGOL", - "center": "POINT (108023.8090158067643642 2381587.5299093876965344)", - "surface": 31570000, - "canton": null, - "numero_insee": "29001" - } - }, - { - "pk": 22208, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ARZANO", - "center": "POINT (168123.5987286543822847 2337336.7908444707281888)", - "surface": 33890000, - "canton": null, - "numero_insee": "29002" - } - }, - { - "pk": 7568, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "AUDIERNE", - "center": "POINT (87292.9531805535079911 2358504.8163593774661422)", - "surface": 2990000, - "canton": null, - "numero_insee": "29003" - } - }, - { - "pk": 18046, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BANNALEC", - "center": "POINT (149660.9016778261284344 2343392.9274918944574893)", - "surface": 78090000, - "canton": null, - "numero_insee": "29004" - } - }, - { - "pk": 19346, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BENODET", - "center": "POINT (120671.2775516659021378 2339357.3029938256368041)", - "surface": 10410000, - "canton": null, - "numero_insee": "29006" - } - }, - { - "pk": 17265, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BERRIEN", - "center": "POINT (148439.7238425234099850 2395721.6320097325369716)", - "surface": 55930000, - "canton": null, - "numero_insee": "29007" - } - }, - { - "pk": 22652, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BEUZEC-CAP-SIZUN", - "center": "POINT (90555.2255510369432159 2363534.6189015158452094)", - "surface": 34990000, - "canton": null, - "numero_insee": "29008" - } - }, - { - "pk": 25442, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BODILIS", - "center": "POINT (123304.7181582867633551 2410330.4466526936739683)", - "surface": 20080000, - "canton": null, - "numero_insee": "29010" - } - }, - { - "pk": 36642, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BOHARS", - "center": "POINT (92937.9506376178469509 2403482.7470364342443645)", - "surface": 7360000, - "canton": null, - "numero_insee": "29011" - } - }, - { - "pk": 30676, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BOLAZEC", - "center": "POINT (161421.6169594303937629 2399128.3676834269426763)", - "surface": 17610000, - "canton": null, - "numero_insee": "29012" - } - }, - { - "pk": 25923, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BOTMEUR", - "center": "POINT (136648.0959069849923253 2393625.5024778107181191)", - "surface": 14340000, - "canton": null, - "numero_insee": "29013" - } - }, - { - "pk": 21121, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BOTSORHEL", - "center": "POINT (159462.4348485688096844 2406317.7171899317763746)", - "surface": 25610000, - "canton": null, - "numero_insee": "29014" - } - }, - { - "pk": 15595, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BOURG-BLANC", - "center": "POINT (95183.4599145706743002 2410505.6644338145852089)", - "surface": 28730000, - "canton": null, - "numero_insee": "29015" - } - }, - { - "pk": 14864, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BRASPARTS", - "center": "POINT (134095.3762143427738920 2387500.6194643531925976)", - "surface": 47150000, - "canton": null, - "numero_insee": "29016" - } - }, - { - "pk": 3778, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BRELES", - "center": "POINT (81186.4219892803230323 2408892.8104192432947457)", - "surface": 13960000, - "canton": null, - "numero_insee": "29017" - } - }, - { - "pk": 5446, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BRENNILIS", - "center": "POINT (141769.9107976896921173 2391364.9679085002280772)", - "surface": 20340000, - "canton": null, - "numero_insee": "29018" - } - }, - { - "pk": 15498, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BREST", - "center": "POINT (94067.4545765867806040 2399889.2011639936827123)", - "surface": 49120000, - "canton": null, - "numero_insee": "29019" - } - }, - { - "pk": 25346, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BRIEC", - "center": "POINT (126887.1100520475301892 2362924.8292431659065187)", - "surface": 67560000, - "canton": null, - "numero_insee": "29020" - } - }, - { - "pk": 8257, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "BRIGNOGAN-PLAGES", - "center": "POINT (109049.9235481417272240 2428429.0144341699779034)", - "surface": 3750000, - "canton": null, - "numero_insee": "29021" - } - }, - { - "pk": 16636, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CAMARET-SUR-MER", - "center": "POINT (86474.3175625174771994 2385818.4307003575377166)", - "surface": 13220000, - "canton": null, - "numero_insee": "29022" - } - }, - { - "pk": 27493, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CARANTEC", - "center": "POINT (139802.1025253830594011 2424572.6305693411268294)", - "surface": 9240000, - "canton": null, - "numero_insee": "29023" - } - }, - { - "pk": 3995, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CARHAIX-PLOUGUER", - "center": "POINT (162078.1434264222043566 2379719.6793016223236918)", - "surface": 25890000, - "canton": null, - "numero_insee": "29024" - } - }, - { - "pk": 18162, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CAST", - "center": "POINT (120027.9555455783847719 2369674.8715866557322443)", - "surface": 37400000, - "canton": null, - "numero_insee": "29025" - } - }, - { - "pk": 23896, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CHATEAULIN", - "center": "POINT (123884.8525491699110717 2375409.9821000746451318)", - "surface": 20150000, - "canton": null, - "numero_insee": "29026" - } - }, - { - "pk": 35623, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CHATEAUNEUF-DU-FAOU", - "center": "POINT (142523.0028584098326974 2372357.1988955643028021)", - "surface": 42060000, - "canton": null, - "numero_insee": "29027" - } - }, - { - "pk": 3013, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CLEDEN-CAP-SIZUN", - "center": "POINT (79254.7163169371197000 2362543.6848314721137285)", - "surface": 19360000, - "canton": null, - "numero_insee": "29028" - } - }, - { - "pk": 15417, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CLEDEN-POHER", - "center": "POINT (154590.8714808743679896 2377457.8467046483419836)", - "surface": 30190000, - "canton": null, - "numero_insee": "29029" - } - }, - { - "pk": 4321, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CLEDER", - "center": "POINT (124376.3668675289954990 2426450.2958076847717166)", - "surface": 37600000, - "canton": null, - "numero_insee": "29030" - } - }, - { - "pk": 19730, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CLOHARS-CARNOET", - "center": "POINT (158097.8966086796717718 2327148.3494697995483875)", - "surface": 35090000, - "canton": null, - "numero_insee": "29031" - } - }, - { - "pk": 3244, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CLOHARS-FOUESNANT", - "center": "POINT (120453.4885811954154633 2341557.2312346296384931)", - "surface": 12940000, - "canton": null, - "numero_insee": "29032" - } - }, - { - "pk": 5131, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE CLOITRE-SAINT-THEGONNEC", - "center": "POINT (146986.5572123517049477 2402214.5935508115217090)", - "surface": 28600000, - "canton": null, - "numero_insee": "29034" - } - }, - { - "pk": 15299, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "COAT-MEAL", - "center": "POINT (92271.1998055066796951 2411783.3115745508112013)", - "surface": 10680000, - "canton": null, - "numero_insee": "29035" - } - }, - { - "pk": 18438, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "COLLOREC", - "center": "POINT (147037.6367237559170462 2383401.4998431848362088)", - "surface": 28110000, - "canton": null, - "numero_insee": "29036" - } - }, - { - "pk": 19139, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "COMBRIT", - "center": "POINT (114253.9834580618189648 2340907.0894302199594676)", - "surface": 24060000, - "canton": null, - "numero_insee": "29037" - } - }, - { - "pk": 22317, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "COMMANA", - "center": "POINT (133413.0857585325720720 2397702.4810287179425359)", - "surface": 40260000, - "canton": null, - "numero_insee": "29038" - } - }, - { - "pk": 19347, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CONCARNEAU", - "center": "POINT (133573.0397860937518999 2340361.4878163342364132)", - "surface": 41010000, - "canton": null, - "numero_insee": "29039" - } - }, - { - "pk": 4682, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE CONQUET", - "center": "POINT (74384.1272691059857607 2396029.3828175226226449)", - "surface": 8820000, - "canton": null, - "numero_insee": "29040" - } - }, - { - "pk": 21434, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CORAY", - "center": "POINT (138928.9970510089769959 2358818.3432023725472391)", - "surface": 31460000, - "canton": null, - "numero_insee": "29041" - } - }, - { - "pk": 19032, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CROZON", - "center": "POINT (93304.4218500544666313 2382670.6714473757892847)", - "surface": 80510000, - "canton": null, - "numero_insee": "29042" - } - }, - { - "pk": 19591, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "DAOULAS", - "center": "POINT (111331.5302249087835662 2393422.5607970035634935)", - "surface": 5650000, - "canton": null, - "numero_insee": "29043" - } - }, - { - "pk": 18439, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "DINEAULT", - "center": "POINT (117163.5318990362575278 2377457.6524508767761290)", - "surface": 45200000, - "canton": null, - "numero_insee": "29044" - } - }, - { - "pk": 33153, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "DIRINON", - "center": "POINT (111290.6729825984803028 2398525.8951316522434354)", - "surface": 32960000, - "canton": null, - "numero_insee": "29045" - } - }, - { - "pk": 15429, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE DRENNEC", - "center": "POINT (104262.8978304364718497 2413880.5903057353571057)", - "surface": 9600000, - "canton": null, - "numero_insee": "29047" - } - }, - { - "pk": 24008, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "EDERN", - "center": "POINT (131570.2250357172451913 2365464.2529194615781307)", - "surface": 40180000, - "canton": null, - "numero_insee": "29048" - } - }, - { - "pk": 18284, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ELLIANT", - "center": "POINT (134875.2035128805437125 2352681.2329208669252694)", - "surface": 70510000, - "canton": null, - "numero_insee": "29049" - } - }, - { - "pk": 30131, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ERGUE-GABERIC", - "center": "POINT (127060.2175340106477961 2353819.4236782602965832)", - "surface": 39620000, - "canton": null, - "numero_insee": "29051" - } - }, - { - "pk": 16347, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ESQUIBIEN", - "center": "POINT (85787.1291350173414685 2359093.2354290876537561)", - "surface": 15350000, - "canton": null, - "numero_insee": "29052" - } - }, - { - "pk": 21400, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE FAOU", - "center": "POINT (119787.5512540633790195 2387185.7417189152911305)", - "surface": 11970000, - "canton": null, - "numero_insee": "29053" - } - }, - { - "pk": 9668, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LA FEUILLEE", - "center": "POINT (141941.1136542939930223 2394968.9286589324474335)", - "surface": 31570000, - "canton": null, - "numero_insee": "29054" - } - }, - { - "pk": 3189, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE FOLGOET", - "center": "POINT (106636.4127472190884873 2417402.0380147891119123)", - "surface": 9800000, - "canton": null, - "numero_insee": "29055" - } - }, - { - "pk": 27191, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LA FOREST-LANDERNEAU", - "center": "POINT (108156.6185122189926915 2402503.6665693335235119)", - "surface": 9280000, - "canton": null, - "numero_insee": "29056" - } - }, - { - "pk": 35443, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LA FORET-FOUESNANT", - "center": "POINT (129145.0869272494455799 2343428.3057565954513848)", - "surface": 18730000, - "canton": null, - "numero_insee": "29057" - } - }, - { - "pk": 36337, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "FOUESNANT", - "center": "POINT (125077.5564217463252135 2338992.3316186945885420)", - "surface": 32450000, - "canton": null, - "numero_insee": "29058" - } - }, - { - "pk": 17115, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GOUESNACH", - "center": "POINT (118532.9163999713491648 2343943.6582419173792005)", - "surface": 17110000, - "canton": null, - "numero_insee": "29060" - } - }, - { - "pk": 5037, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GOUESNOU", - "center": "POINT (97430.4718204982928000 2404819.5806321562267840)", - "surface": 12190000, - "canton": null, - "numero_insee": "29061" - } - }, - { - "pk": 23508, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GOUEZEC", - "center": "POINT (131124.9928841820219532 2371064.8165081348270178)", - "surface": 30990000, - "canton": null, - "numero_insee": "29062" - } - }, - { - "pk": 26677, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GOULIEN", - "center": "POINT (84057.9913443863042630 2362582.0390359992161393)", - "surface": 12900000, - "canton": null, - "numero_insee": "29063" - } - }, - { - "pk": 28413, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GOULVEN", - "center": "POINT (111391.4134668330079876 2423444.2822118625044823)", - "surface": 6560000, - "canton": null, - "numero_insee": "29064" - } - }, - { - "pk": 35441, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GOURLIZON", - "center": "POINT (107720.5299756946042180 2356966.9183088922873139)", - "surface": 9880000, - "canton": null, - "numero_insee": "29065" - } - }, - { - "pk": 23669, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUENGAT", - "center": "POINT (113315.5458372257999144 2358112.5461466317065060)", - "surface": 22870000, - "canton": null, - "numero_insee": "29066" - } - }, - { - "pk": 15419, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUERLESQUIN", - "center": "POINT (162643.5568522787652910 2408945.1429012799635530)", - "surface": 22040000, - "canton": null, - "numero_insee": "29067" - } - }, - { - "pk": 21009, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUICLAN", - "center": "POINT (133894.6553662498481572 2412516.8430509772151709)", - "surface": 42940000, - "canton": null, - "numero_insee": "29068" - } - }, - { - "pk": 14792, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUILERS", - "center": "POINT (89844.7307235512998886 2402357.2477823793888092)", - "surface": 18910000, - "canton": null, - "numero_insee": "29069" - } - }, - { - "pk": 11672, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUILER-SUR-GOYEN", - "center": "POINT (100819.0059729857603088 2356511.3847592873498797)", - "surface": 11350000, - "canton": null, - "numero_insee": "29070" - } - }, - { - "pk": 21157, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUILLIGOMARC'H", - "center": "POINT (169780.4455134961172007 2342854.3086938327178359)", - "surface": 22950000, - "canton": null, - "numero_insee": "29071" - } - }, - { - "pk": 27347, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUILVINEC", - "center": "POINT (104416.7701827895361930 2332121.6547688259743154)", - "surface": 2400000, - "canton": null, - "numero_insee": "29072" - } - }, - { - "pk": 14610, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUIMAEC", - "center": "POINT (155201.3239566469565034 2425997.2280819155275822)", - "surface": 19050000, - "canton": null, - "numero_insee": "29073" - } - }, - { - "pk": 14059, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUIMILIAU", - "center": "POINT (132147.2838232828653418 2405798.0937544987536967)", - "surface": 11250000, - "canton": null, - "numero_insee": "29074" - } - }, - { - "pk": 33381, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUIPAVAS", - "center": "POINT (102151.9235765941557474 2402555.6962171266786754)", - "surface": 43800000, - "canton": null, - "numero_insee": "29075" - } - }, - { - "pk": 32600, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUIPRONVEL", - "center": "POINT (89980.1124844137812033 2410464.0886846575886011)", - "surface": 8450000, - "canton": null, - "numero_insee": "29076" - } - }, - { - "pk": 18158, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "GUISSENY", - "center": "POINT (102886.0381359022576362 2423376.2323612631298602)", - "surface": 25260000, - "canton": null, - "numero_insee": "29077" - } - }, - { - "pk": 15496, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "HANVEC", - "center": "POINT (120266.2304039666196331 2389891.5303680901415646)", - "surface": 59610000, - "canton": null, - "numero_insee": "29078" - } - }, - { - "pk": 30937, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "HENVIC", - "center": "POINT (138320.4322276143357158 2422159.0715750837698579)", - "surface": 9970000, - "canton": null, - "numero_insee": "29079" - } - }, - { - "pk": 15497, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "HOPITAL-CAMFROUT", - "center": "POINT (112761.2938835057429969 2389831.4119896753691137)", - "surface": 13240000, - "canton": null, - "numero_insee": "29080" - } - }, - { - "pk": 30208, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "HUELGOAT", - "center": "POINT (148676.8421388069982640 2391120.2358171087689698)", - "surface": 14840000, - "canton": null, - "numero_insee": "29081" - } - }, - { - "pk": 3542, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ILE-DE-BATZ", - "center": "POINT (133212.9353023022995330 2435127.0705456556752324)", - "surface": 3410000, - "canton": null, - "numero_insee": "29082" - } - }, - { - "pk": 31541, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ILE-DE-SEIN", - "center": "POINT (64446.2014103379333392 2362225.4028826863504946)", - "surface": 600000, - "canton": null, - "numero_insee": "29083" - } - }, - { - "pk": 31728, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ILE-MOLENE", - "center": "POINT (60223.0513286367058754 2402421.1725215204060078)", - "surface": 940000, - "canton": null, - "numero_insee": "29084" - } - }, - { - "pk": 6685, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ILE-TUDY", - "center": "POINT (114184.3809244167059660 2337103.6341163394972682)", - "surface": 1280000, - "canton": null, - "numero_insee": "29085" - } - }, - { - "pk": 15844, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "IRVILLAC", - "center": "POINT (115928.1339368165936321 2394259.9458297030068934)", - "surface": 29660000, - "canton": null, - "numero_insee": "29086" - } - }, - { - "pk": 20822, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE JUCH", - "center": "POINT (108295.3035187753848732 2360173.9121877886354923)", - "surface": 14260000, - "canton": null, - "numero_insee": "29087" - } - }, - { - "pk": 4377, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "KERGLOFF", - "center": "POINT (156259.8109433217905462 2381474.1815107003785670)", - "surface": 24940000, - "canton": null, - "numero_insee": "29089" - } - }, - { - "pk": 3315, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "KERLAZ", - "center": "POINT (108863.6654896293766797 2364181.4414504789747298)", - "surface": 11730000, - "canton": null, - "numero_insee": "29090" - } - }, - { - "pk": 23718, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "KERLOUAN", - "center": "POINT (105562.9322737212642096 2426499.7990633798763156)", - "surface": 18010000, - "canton": null, - "numero_insee": "29091" - } - }, - { - "pk": 37937, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "KERNILIS", - "center": "POINT (102523.3961781976977363 2418670.0485289217904210)", - "surface": 10150000, - "canton": null, - "numero_insee": "29093" - } - }, - { - "pk": 27362, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "KERNOUES", - "center": "POINT (107512.9666601205826737 2420411.1515125716105103)", - "surface": 7760000, - "canton": null, - "numero_insee": "29094" - } - }, - { - "pk": 20845, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "KERSAINT-PLABENNEC", - "center": "POINT (105112.2415939996135421 2407783.0746180498972535)", - "surface": 11920000, - "canton": null, - "numero_insee": "29095" - } - }, - { - "pk": 13246, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LAMPAUL-GUIMILIAU", - "center": "POINT (128841.1444387289229780 2406271.9313673744909465)", - "surface": 17630000, - "canton": null, - "numero_insee": "29097" - } - }, - { - "pk": 12127, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LAMPAUL-PLOUARZEL", - "center": "POINT (75196.1141744072083384 2407143.8058237140066922)", - "surface": 4030000, - "canton": null, - "numero_insee": "29098" - } - }, - { - "pk": 33119, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LAMPAUL-PLOUDALMEZEAU", - "center": "POINT (84817.7091033724718727 2417828.0802070097997785)", - "surface": 6240000, - "canton": null, - "numero_insee": "29099" - } - }, - { - "pk": 37706, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANARVILY", - "center": "POINT (104438.2124118896317668 2416984.1718807741999626)", - "surface": 5860000, - "canton": null, - "numero_insee": "29100" - } - }, - { - "pk": 3554, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDEDA", - "center": "POINT (90394.1076983802486211 2421274.9938164167106152)", - "surface": 11070000, - "canton": null, - "numero_insee": "29101" - } - }, - { - "pk": 21938, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDELEAU", - "center": "POINT (149575.4802170631592162 2378918.6208566725254059)", - "surface": 30250000, - "canton": null, - "numero_insee": "29102" - } - }, - { - "pk": 5984, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDERNEAU", - "center": "POINT (112047.1315201263641939 2404035.8766932263970375)", - "surface": 13650000, - "canton": null, - "numero_insee": "29103" - } - }, - { - "pk": 9219, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDEVENNEC", - "center": "POINT (106991.9094492982258089 2385482.1098687639459968)", - "surface": 13870000, - "canton": null, - "numero_insee": "29104" - } - }, - { - "pk": 11545, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDIVISIAU", - "center": "POINT (127610.6852698674774729 2409964.6818635887466371)", - "surface": 19130000, - "canton": null, - "numero_insee": "29105" - } - }, - { - "pk": 18659, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDREVARZEC", - "center": "POINT (122685.0613690962200053 2362791.0594728165306151)", - "surface": 20500000, - "canton": null, - "numero_insee": "29106" - } - }, - { - "pk": 14710, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDUDAL", - "center": "POINT (129724.3342878934345208 2358544.3121312940493226)", - "surface": 16970000, - "canton": null, - "numero_insee": "29107" - } - }, - { - "pk": 16779, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANDUNVEZ", - "center": "POINT (78625.7242052631918341 2416277.6064179548993707)", - "surface": 14790000, - "canton": null, - "numero_insee": "29109" - } - }, - { - "pk": 20992, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANHOUARNEAU", - "center": "POINT (117643.4168744316557422 2417490.1510522100143135)", - "surface": 17990000, - "canton": null, - "numero_insee": "29111" - } - }, - { - "pk": 17269, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANILDUT", - "center": "POINT (77771.4515619983430952 2410466.6939342138357460)", - "surface": 5830000, - "canton": null, - "numero_insee": "29112" - } - }, - { - "pk": 19290, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANMEUR", - "center": "POINT (153732.5546212687040679 2421982.6489912727847695)", - "surface": 26510000, - "canton": null, - "numero_insee": "29113" - } - }, - { - "pk": 4055, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANNEDERN", - "center": "POINT (137426.4669644033419900 2383924.7462363820523024)", - "surface": 12320000, - "canton": null, - "numero_insee": "29115" - } - }, - { - "pk": 31810, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANNEUFFRET", - "center": "POINT (117114.3642277119215578 2408579.6474432796239853)", - "surface": 2230000, - "canton": null, - "numero_insee": "29116" - } - }, - { - "pk": 13413, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANNILIS", - "center": "POINT (94116.4474870040430687 2418802.9822913054376841)", - "surface": 24820000, - "canton": null, - "numero_insee": "29117" - } - }, - { - "pk": 3555, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANRIVOARE", - "center": "POINT (84896.0016568639548495 2408021.7843657121993601)", - "surface": 15470000, - "canton": null, - "numero_insee": "29119" - } - }, - { - "pk": 3657, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LANVEOC", - "center": "POINT (97183.0141297976369970 2385703.8622187827713788)", - "surface": 19190000, - "canton": null, - "numero_insee": "29120" - } - }, - { - "pk": 20368, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LAZ", - "center": "POINT (140669.1433483031578362 2366437.9606880350038409)", - "surface": 33860000, - "canton": null, - "numero_insee": "29122" - } - }, - { - "pk": 22257, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LENNON", - "center": "POINT (136500.5055693830363452 2374610.5282395579852164)", - "surface": 22880000, - "canton": null, - "numero_insee": "29123" - } - }, - { - "pk": 5640, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LESNEVEN", - "center": "POINT (109728.7776482869521715 2418627.6239551915787160)", - "surface": 10150000, - "canton": null, - "numero_insee": "29124" - } - }, - { - "pk": 18437, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LEUHAN", - "center": "POINT (144905.7449418960022740 2362268.8805633215233684)", - "surface": 32670000, - "canton": null, - "numero_insee": "29125" - } - }, - { - "pk": 12521, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOC-BREVALAIRE", - "center": "POINT (102541.8022989315213636 2416368.5824406296014786)", - "surface": 1680000, - "canton": null, - "numero_insee": "29126" - } - }, - { - "pk": 30547, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOC-EGUINER-SAINT-THEGONNEC", - "center": "POINT (135074.0435458792489953 2402719.3742098109796643)", - "surface": 8100000, - "canton": null, - "numero_insee": "29127" - } - }, - { - "pk": 18440, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOC-EGUINER", - "center": "POINT (124942.6415087339119054 2405740.3201171536929905)", - "surface": 12110000, - "canton": null, - "numero_insee": "29128" - } - }, - { - "pk": 16613, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOCMARIA-BERRIEN", - "center": "POINT (152886.0275917905964889 2390353.4912729193456471)", - "surface": 17100000, - "canton": null, - "numero_insee": "29129" - } - }, - { - "pk": 16637, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOCMARIA-PLOUZANE", - "center": "POINT (82877.7219339520088397 2397598.2421502941288054)", - "surface": 23190000, - "canton": null, - "numero_insee": "29130" - } - }, - { - "pk": 13505, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOCMELAR", - "center": "POINT (127268.9968584533780813 2402656.7681718999519944)", - "surface": 15970000, - "canton": null, - "numero_insee": "29131" - } - }, - { - "pk": 14760, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOCQUENOLE", - "center": "POINT (143135.5123375953407958 2420696.6809562332928181)", - "surface": 930000, - "canton": null, - "numero_insee": "29132" - } - }, - { - "pk": 16004, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOCQUIREC", - "center": "POINT (158101.5322811282239854 2426220.6837485879659653)", - "surface": 6260000, - "canton": null, - "numero_insee": "29133" - } - }, - { - "pk": 31181, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOCRONAN", - "center": "POINT (112562.9712748763849959 2364611.3614059714600444)", - "surface": 7990000, - "canton": null, - "numero_insee": "29134" - } - }, - { - "pk": 3813, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOGONNA-DAOULAS", - "center": "POINT (109152.5147810223861597 2390603.0977138206362724)", - "surface": 12500000, - "canton": null, - "numero_insee": "29137" - } - }, - { - "pk": 22071, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOPEREC", - "center": "POINT (127702.3931264570564963 2386048.3210001648403704)", - "surface": 40080000, - "canton": null, - "numero_insee": "29139" - } - }, - { - "pk": 21519, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOPERHET", - "center": "POINT (107801.2046489677159116 2396896.8170774378813803)", - "surface": 20580000, - "canton": null, - "numero_insee": "29140" - } - }, - { - "pk": 21176, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOQUEFFRET", - "center": "POINT (140895.0330886787851341 2388155.6352396323345602)", - "surface": 27690000, - "canton": null, - "numero_insee": "29141" - } - }, - { - "pk": 20322, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LOTHEY", - "center": "POINT (127207.1232844029436819 2372934.7866386519744992)", - "surface": 13330000, - "canton": null, - "numero_insee": "29142" - } - }, - { - "pk": 35353, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MAHALON", - "center": "POINT (96603.3217210514121689 2358078.8632419994100928)", - "surface": 21220000, - "canton": null, - "numero_insee": "29143" - } - }, - { - "pk": 22369, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LA MARTYRE", - "center": "POINT (118869.1682911156676710 2401888.9462374350987375)", - "surface": 18340000, - "canton": null, - "numero_insee": "29144" - } - }, - { - "pk": 17354, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "CONFORT-MEILARS", - "center": "POINT (95777.1683566928841174 2361274.6486775702796876)", - "surface": 14800000, - "canton": null, - "numero_insee": "29145" - } - }, - { - "pk": 14709, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MELGVEN", - "center": "POINT (138565.2667534956708550 2341802.6342012905515730)", - "surface": 51220000, - "canton": null, - "numero_insee": "29146" - } - }, - { - "pk": 18362, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MELLAC", - "center": "POINT (157304.0021631806157529 2338750.8328765267506242)", - "surface": 26460000, - "canton": null, - "numero_insee": "29147" - } - }, - { - "pk": 4067, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MESPAUL", - "center": "POINT (130626.0025601415545680 2420796.4369901199825108)", - "surface": 11550000, - "canton": null, - "numero_insee": "29148" - } - }, - { - "pk": 19310, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MILIZAC", - "center": "POINT (89709.4941215842845850 2406759.3025184450671077)", - "surface": 33550000, - "canton": null, - "numero_insee": "29149" - } - }, - { - "pk": 22574, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MOELAN-SUR-MER", - "center": "POINT (152280.1274614732246846 2328802.8535339403897524)", - "surface": 47400000, - "canton": null, - "numero_insee": "29150" - } - }, - { - "pk": 16055, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MORLAIX", - "center": "POINT (146060.6518364061485045 2417818.1493607782758772)", - "surface": 24990000, - "canton": null, - "numero_insee": "29151" - } - }, - { - "pk": 14419, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "MOTREFF", - "center": "POINT (161922.2992762108915485 2374214.4103512046858668)", - "surface": 21400000, - "canton": null, - "numero_insee": "29152" - } - }, - { - "pk": 23040, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "NEVEZ", - "center": "POINT (142558.0223408978781663 2330626.1599286342971027)", - "surface": 25580000, - "canton": null, - "numero_insee": "29153" - } - }, - { - "pk": 20878, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "OUESSANT", - "center": "POINT (51652.9970778850838542 2410458.7193844933062792)", - "surface": 16280000, - "canton": null, - "numero_insee": "29155" - } - }, - { - "pk": 20223, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PENCRAN", - "center": "POINT (115157.9529822338954546 2402960.0029179668053985)", - "surface": 8900000, - "canton": null, - "numero_insee": "29156" - } - }, - { - "pk": 6008, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PENMARCH", - "center": "POINT (100501.2105918313609436 2333691.5460323705337942)", - "surface": 16450000, - "canton": null, - "numero_insee": "29158" - } - }, - { - "pk": 23603, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PEUMERIT", - "center": "POINT (104987.4938268913538195 2348338.5701841963455081)", - "surface": 19660000, - "canton": null, - "numero_insee": "29159" - } - }, - { - "pk": 21950, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLABENNEC", - "center": "POINT (101093.6568925575702451 2409752.3481020508334041)", - "surface": 50490000, - "canton": null, - "numero_insee": "29160" - } - }, - { - "pk": 22789, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLEUVEN", - "center": "POINT (123341.8643475192366168 2343281.6809194716624916)", - "surface": 13650000, - "canton": null, - "numero_insee": "29161" - } - }, - { - "pk": 20018, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLEYBEN", - "center": "POINT (131464.2438156634452753 2378673.1119680139236152)", - "surface": 75860000, - "canton": null, - "numero_insee": "29162" - } - }, - { - "pk": 34342, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLEYBER-CHRIST", - "center": "POINT (141534.0561941887717694 2408275.1249058241955936)", - "surface": 45750000, - "canton": null, - "numero_insee": "29163" - } - }, - { - "pk": 21688, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOBANNALEC-LESCONIL", - "center": "POINT (108904.7124530774890445 2334059.0464713210240006)", - "surface": 18170000, - "canton": null, - "numero_insee": "29165" - } - }, - { - "pk": 18161, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOEVEN", - "center": "POINT (113210.5482859103358351 2371221.4315716293640435)", - "surface": 13040000, - "canton": null, - "numero_insee": "29166" - } - }, - { - "pk": 18885, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOGASTEL-SAINT-GERMAIN", - "center": "POINT (107763.7921879490604624 2351563.2093741642311215)", - "surface": 31480000, - "canton": null, - "numero_insee": "29167" - } - }, - { - "pk": 25066, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOGOFF", - "center": "POINT (77268.5266164598870091 2360626.4107131087221205)", - "surface": 11980000, - "canton": null, - "numero_insee": "29168" - } - }, - { - "pk": 35187, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOMELIN", - "center": "POINT (115812.5994357928866521 2346223.6000457108020782)", - "surface": 26310000, - "canton": null, - "numero_insee": "29170" - } - }, - { - "pk": 15089, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOMEUR", - "center": "POINT (104082.9162013362511061 2336322.2033132966607809)", - "surface": 29760000, - "canton": null, - "numero_insee": "29171" - } - }, - { - "pk": 17843, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOMODIERN", - "center": "POINT (112989.5764952879981138 2373821.5762138804420829)", - "surface": 46800000, - "canton": null, - "numero_insee": "29172" - } - }, - { - "pk": 20948, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLONEIS", - "center": "POINT (112039.5029578641406260 2355000.0038478919304907)", - "surface": 22010000, - "canton": null, - "numero_insee": "29173" - } - }, - { - "pk": 16552, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLONEOUR-LANVERN", - "center": "POINT (106924.8594587358529679 2343850.6704266564920545)", - "surface": 48830000, - "canton": null, - "numero_insee": "29174" - } - }, - { - "pk": 15296, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLONEVEZ-DU-FAOU", - "center": "POINT (142963.8594863338512369 2379766.1549425357952714)", - "surface": 80830000, - "canton": null, - "numero_insee": "29175" - } - }, - { - "pk": 22354, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLONEVEZ-PORZAY", - "center": "POINT (110934.6411245779599994 2368000.8415157753042877)", - "surface": 29150000, - "canton": null, - "numero_insee": "29176" - } - }, - { - "pk": 16639, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUARZEL", - "center": "POINT (78310.8967681909562089 2405567.5163958119228482)", - "surface": 42680000, - "canton": null, - "numero_insee": "29177" - } - }, - { - "pk": 15297, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUDALMEZEAU", - "center": "POINT (83129.4032168416306376 2416213.4777510170824826)", - "surface": 24040000, - "canton": null, - "numero_insee": "29178" - } - }, - { - "pk": 19534, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUDANIEL", - "center": "POINT (109178.8468007369665429 2412318.7962757321074605)", - "surface": 45670000, - "canton": null, - "numero_insee": "29179" - } - }, - { - "pk": 5698, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUDIRY", - "center": "POINT (122155.2694813807611354 2403916.7008444480597973)", - "surface": 27770000, - "canton": null, - "numero_insee": "29180" - } - }, - { - "pk": 22985, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUEDERN", - "center": "POINT (113220.6674375022412278 2407447.6868801559321582)", - "surface": 19560000, - "canton": null, - "numero_insee": "29181" - } - }, - { - "pk": 6020, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUEGAT-MOYSAN", - "center": "POINT (160806.9881709592882544 2413333.4610090944916010)", - "surface": 14990000, - "canton": null, - "numero_insee": "29183" - } - }, - { - "pk": 21506, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUENAN", - "center": "POINT (134526.0612409769091755 2421127.9289359687827528)", - "surface": 30770000, - "canton": null, - "numero_insee": "29184" - } - }, - { - "pk": 3494, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUEZOC'H", - "center": "POINT (146827.4011211923789233 2422027.2348505654372275)", - "surface": 15860000, - "canton": null, - "numero_insee": "29186" - } - }, - { - "pk": 23644, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGAR", - "center": "POINT (123068.5030078903073445 2414831.7218363913707435)", - "surface": 17580000, - "canton": null, - "numero_insee": "29187" - } - }, - { - "pk": 16497, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGASNOU", - "center": "POINT (147392.4134289965149947 2426434.8242379245348275)", - "surface": 34390000, - "canton": null, - "numero_insee": "29188" - } - }, - { - "pk": 17264, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGASTEL-DAOULAS", - "center": "POINT (102515.3504431808833033 2394652.9435063651762903)", - "surface": 47200000, - "canton": null, - "numero_insee": "29189" - } - }, - { - "pk": 18519, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGONVELIN", - "center": "POINT (77687.8904349779477343 2395855.5967991165816784)", - "surface": 19050000, - "canton": null, - "numero_insee": "29190" - } - }, - { - "pk": 19031, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGONVEN", - "center": "POINT (152152.9194913090905175 2406859.3694868297316134)", - "surface": 69850000, - "canton": null, - "numero_insee": "29191" - } - }, - { - "pk": 16629, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGOULM", - "center": "POINT (130388.9641034266678616 2425397.7343672555871308)", - "surface": 18450000, - "canton": null, - "numero_insee": "29192" - } - }, - { - "pk": 6821, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGOURVEST", - "center": "POINT (127075.8677401656168513 2414263.4218949070200324)", - "surface": 14160000, - "canton": null, - "numero_insee": "29193" - } - }, - { - "pk": 18679, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUGUERNEAU", - "center": "POINT (96990.3013722189352848 2422328.3977604275569320)", - "surface": 43520000, - "canton": null, - "numero_insee": "29195" - } - }, - { - "pk": 20629, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUHINEC", - "center": "POINT (91608.6958771315403283 2356938.1063790656626225)", - "surface": 27780000, - "canton": null, - "numero_insee": "29197" - } - }, - { - "pk": 21389, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUIDER", - "center": "POINT (111311.3733898982172832 2420941.8986328486353159)", - "surface": 23500000, - "canton": null, - "numero_insee": "29198" - } - }, - { - "pk": 17067, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUIGNEAU", - "center": "POINT (154494.9326092026894912 2414283.4039046671241522)", - "surface": 63950000, - "canton": null, - "numero_insee": "29199" - } - }, - { - "pk": 19483, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUMOGUER", - "center": "POINT (78345.2306807510904036 2401264.7194269746541977)", - "surface": 38820000, - "canton": null, - "numero_insee": "29201" - } - }, - { - "pk": 4325, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUNEOUR-MENEZ", - "center": "POINT (140291.0626001160708256 2401060.0383837050758302)", - "surface": 51790000, - "canton": null, - "numero_insee": "29202" - } - }, - { - "pk": 19473, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUNEOUR-TREZ", - "center": "POINT (109167.6021376102580689 2426228.4309990848414600)", - "surface": 11260000, - "canton": null, - "numero_insee": "29203" - } - }, - { - "pk": 21084, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUNEVENTER", - "center": "POINT (116790.9291154166567139 2411479.1056350707076490)", - "surface": 27420000, - "canton": null, - "numero_insee": "29204" - } - }, - { - "pk": 17190, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUNEVEZEL", - "center": "POINT (161838.5557320369989611 2384621.3081427924335003)", - "surface": 24390000, - "canton": null, - "numero_insee": "29205" - } - }, - { - "pk": 21165, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUNEVEZ-LOCHRIST", - "center": "POINT (118505.5168062023585662 2422300.4093777225352824)", - "surface": 39640000, - "canton": null, - "numero_insee": "29206" - } - }, - { - "pk": 14666, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOURIN-LES-MORLAIX", - "center": "POINT (146931.0903169192024507 2409119.0340844066813588)", - "surface": 42400000, - "canton": null, - "numero_insee": "29207" - } - }, - { - "pk": 18374, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOURIN", - "center": "POINT (81657.9928191447397694 2412499.1237456430681050)", - "surface": 25640000, - "canton": null, - "numero_insee": "29208" - } - }, - { - "pk": 16499, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUVIEN", - "center": "POINT (98149.3920280056772754 2415032.5469689904712141)", - "surface": 34270000, - "canton": null, - "numero_insee": "29209" - } - }, - { - "pk": 17353, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUVORN", - "center": "POINT (131060.7638110631378368 2416496.9189449786208570)", - "surface": 35370000, - "canton": null, - "numero_insee": "29210" - } - }, - { - "pk": 18827, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUYE", - "center": "POINT (150115.5579080745810643 2386428.4076947444118559)", - "surface": 37620000, - "canton": null, - "numero_insee": "29211" - } - }, - { - "pk": 22940, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUZANE", - "center": "POINT (86677.0123868133523501 2398028.8665165337733924)", - "surface": 33050000, - "canton": null, - "numero_insee": "29212" - } - }, - { - "pk": 22991, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOUZEVEDE", - "center": "POINT (125839.8085872319643386 2418656.5963864927180111)", - "surface": 18200000, - "canton": null, - "numero_insee": "29213" - } - }, - { - "pk": 32117, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOVAN", - "center": "POINT (100092.9103379362495616 2347198.5697515341453254)", - "surface": 15760000, - "canton": null, - "numero_insee": "29214" - } - }, - { - "pk": 21048, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLOZEVET", - "center": "POINT (96943.5418666994082741 2353077.8309313883073628)", - "surface": 27510000, - "canton": null, - "numero_insee": "29215" - } - }, - { - "pk": 14705, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PLUGUFFAN", - "center": "POINT (113376.4667274997918867 2350507.3295732238329947)", - "surface": 32240000, - "canton": null, - "numero_insee": "29216" - } - }, - { - "pk": 3246, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PONT-AVEN", - "center": "POINT (143808.2762688463553786 2336941.0249093100428581)", - "surface": 28570000, - "canton": null, - "numero_insee": "29217" - } - }, - { - "pk": 7600, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PONT-CROIX", - "center": "POINT (91077.9599811904481612 2360736.7082821396179497)", - "surface": 7990000, - "canton": null, - "numero_insee": "29218" - } - }, - { - "pk": 5107, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE PONTHOU", - "center": "POINT (159115.5633754187147133 2412119.0140995290130377)", - "surface": 1350000, - "canton": null, - "numero_insee": "29219" - } - }, - { - "pk": 21043, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PONT-L'ABBE", - "center": "POINT (109967.0151642109849490 2338871.2250975235365331)", - "surface": 18170000, - "canton": null, - "numero_insee": "29220" - } - }, - { - "pk": 22184, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PORSPODER", - "center": "POINT (76554.7124079798813909 2412458.4026380865834653)", - "surface": 11510000, - "canton": null, - "numero_insee": "29221" - } - }, - { - "pk": 14946, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "POULDERGAT", - "center": "POINT (103701.7743439344922081 2358936.2478751633316278)", - "surface": 24390000, - "canton": null, - "numero_insee": "29224" - } - }, - { - "pk": 17351, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "POULDREUZIC", - "center": "POINT (100067.2913587165530771 2350400.7831562901847064)", - "surface": 16790000, - "canton": null, - "numero_insee": "29225" - } - }, - { - "pk": 22310, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "POULLAN-SUR-MER", - "center": "POINT (98762.4064932905603200 2363400.0875487481243908)", - "surface": 30550000, - "canton": null, - "numero_insee": "29226" - } - }, - { - "pk": 23863, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "POULLAOUEN", - "center": "POINT (158003.8555663519073278 2388593.3481061523780227)", - "surface": 72050000, - "canton": null, - "numero_insee": "29227" - } - }, - { - "pk": 30734, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PRIMELIN", - "center": "POINT (82781.8780344998813234 2359469.5309858545660973)", - "surface": 8670000, - "canton": null, - "numero_insee": "29228" - } - }, - { - "pk": 20463, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "QUEMENEVEN", - "center": "POINT (117953.0014035988715477 2366355.8027259046211839)", - "surface": 27940000, - "canton": null, - "numero_insee": "29229" - } - }, - { - "pk": 18444, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "QUERRIEN", - "center": "POINT (160857.3759209686540999 2344884.0493021323345602)", - "surface": 54260000, - "canton": null, - "numero_insee": "29230" - } - }, - { - "pk": 22245, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "QUIMPER", - "center": "POINT (120764.7196721276850440 2352668.1157001028768718)", - "surface": 84310000, - "canton": null, - "numero_insee": "29232" - } - }, - { - "pk": 18951, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "QUIMPERLE", - "center": "POINT (159344.8533880409668200 2333863.5207382687367499)", - "surface": 30650000, - "canton": null, - "numero_insee": "29233" - } - }, - { - "pk": 23544, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "REDENE", - "center": "POINT (164552.5166576873743907 2333405.0591664570383728)", - "surface": 24630000, - "canton": null, - "numero_insee": "29234" - } - }, - { - "pk": 37439, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE RELECQ-KERHUON", - "center": "POINT (101475.4782852010102943 2399548.1423705182969570)", - "surface": 6530000, - "canton": null, - "numero_insee": "29235" - } - }, - { - "pk": 23346, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "RIEC-SUR-BELON", - "center": "POINT (149236.9837379974778742 2333882.2918872800655663)", - "surface": 54380000, - "canton": null, - "numero_insee": "29236" - } - }, - { - "pk": 23365, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LA ROCHE-MAURICE", - "center": "POINT (117434.5952562472666614 2406080.4410198028199375)", - "surface": 11960000, - "canton": null, - "numero_insee": "29237" - } - }, - { - "pk": 13488, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ROSCOFF", - "center": "POINT (134744.3696379419416189 2431336.7441966938786209)", - "surface": 6550000, - "canton": null, - "numero_insee": "29239" - } - }, - { - "pk": 25347, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ROSNOEN", - "center": "POINT (115211.7653219126514159 2383746.6145590320229530)", - "surface": 33750000, - "canton": null, - "numero_insee": "29240" - } - }, - { - "pk": 21741, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "ROSPORDEN", - "center": "POINT (141929.0398210600251332 2346633.2857400570064783)", - "surface": 57440000, - "canton": null, - "numero_insee": "29241" - } - }, - { - "pk": 22879, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-COULITZ", - "center": "POINT (124204.3083852305426262 2373010.7809700393117964)", - "surface": 11020000, - "canton": null, - "numero_insee": "29243" - } - }, - { - "pk": 18520, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-DERRIEN", - "center": "POINT (118772.9730595645960420 2413896.6720814267173409)", - "surface": 12290000, - "canton": null, - "numero_insee": "29244" - } - }, - { - "pk": 25531, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-DIVY", - "center": "POINT (107237.6173988664522767 2404797.9499564282596111)", - "surface": 8540000, - "canton": null, - "numero_insee": "29245" - } - }, - { - "pk": 20462, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-ELOY", - "center": "POINT (122239.4754465917358175 2393409.8667755918577313)", - "surface": 12530000, - "canton": null, - "numero_insee": "29246" - } - }, - { - "pk": 24956, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-FREGANT", - "center": "POINT (105406.0302419384242967 2421094.7841026326641440)", - "surface": 8400000, - "canton": null, - "numero_insee": "29248" - } - }, - { - "pk": 16101, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-GOAZEC", - "center": "POINT (146262.4685070297564380 2367783.8534376230090857)", - "surface": 33390000, - "canton": null, - "numero_insee": "29249" - } - }, - { - "pk": 4342, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-HERNIN", - "center": "POINT (158227.0744719048379920 2373284.0197536540217698)", - "surface": 29300000, - "canton": null, - "numero_insee": "29250" - } - }, - { - "pk": 16186, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-JEAN-DU-DOIGT", - "center": "POINT (151003.5148125530104153 2425363.0746746873483062)", - "surface": 19980000, - "canton": null, - "numero_insee": "29251" - } - }, - { - "pk": 37267, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-JEAN-TROLIMON", - "center": "POINT (103359.9992733762483113 2339118.5568027347326279)", - "surface": 14480000, - "canton": null, - "numero_insee": "29252" - } - }, - { - "pk": 3297, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-MARTIN-DES-CHAMPS", - "center": "POINT (143278.1603771514492109 2415394.1241387231275439)", - "surface": 15690000, - "canton": null, - "numero_insee": "29254" - } - }, - { - "pk": 19318, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-MEEN", - "center": "POINT (113455.9653522299486212 2415555.2855151644907892)", - "surface": 11990000, - "canton": null, - "numero_insee": "29255" - } - }, - { - "pk": 32679, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-NIC", - "center": "POINT (108657.8516832279274240 2377389.5345874419435859)", - "surface": 17960000, - "canton": null, - "numero_insee": "29256" - } - }, - { - "pk": 31782, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-PABU", - "center": "POINT (87012.7214178082649596 2418646.1675378009676933)", - "surface": 9820000, - "canton": null, - "numero_insee": "29257" - } - }, - { - "pk": 28598, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-POL-DE-LEON", - "center": "POINT (134379.4389325911761262 2426930.7796131642535329)", - "surface": 23680000, - "canton": null, - "numero_insee": "29259" - } - }, - { - "pk": 17213, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-RENAN", - "center": "POINT (85332.2149773987475783 2403522.0640012696385384)", - "surface": 13310000, - "canton": null, - "numero_insee": "29260" - } - }, - { - "pk": 11468, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-RIVOAL", - "center": "POINT (131564.8292921765823849 2391082.9147042739205062)", - "surface": 19090000, - "canton": null, - "numero_insee": "29261" - } - }, - { - "pk": 4743, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-SAUVEUR", - "center": "POINT (131575.7929707537405193 2402190.9522115886211395)", - "surface": 13300000, - "canton": null, - "numero_insee": "29262" - } - }, - { - "pk": 36219, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-SEGAL", - "center": "POINT (123956.0381787566002458 2379013.1878698291257024)", - "surface": 16240000, - "canton": null, - "numero_insee": "29263" - } - }, - { - "pk": 14865, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-SERVAIS", - "center": "POINT (120501.3180479689617641 2410508.1231039324775338)", - "surface": 10410000, - "canton": null, - "numero_insee": "29264" - } - }, - { - "pk": 28445, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINTE-SEVE", - "center": "POINT (140787.8163217172841541 2413973.1472917045466602)", - "surface": 9950000, - "canton": null, - "numero_insee": "29265" - } - }, - { - "pk": 18157, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-THEGONNEC", - "center": "POINT (136726.9592155239661224 2408736.8908400526270270)", - "surface": 41790000, - "canton": null, - "numero_insee": "29266" - } - }, - { - "pk": 4950, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-THOIS", - "center": "POINT (135845.8214544574148022 2368901.0804238351993263)", - "surface": 17860000, - "canton": null, - "numero_insee": "29267" - } - }, - { - "pk": 22370, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-THONAN", - "center": "POINT (108018.9161469496903010 2407205.9067737441509962)", - "surface": 11450000, - "canton": null, - "numero_insee": "29268" - } - }, - { - "pk": 14494, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-THURIEN", - "center": "POINT (155448.8168626275728457 2345440.9846517732366920)", - "surface": 21370000, - "canton": null, - "numero_insee": "29269" - } - }, - { - "pk": 16100, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-URBAIN", - "center": "POINT (114699.2994750204961747 2397752.6157089350745082)", - "surface": 15200000, - "canton": null, - "numero_insee": "29270" - } - }, - { - "pk": 14759, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-VOUGAY", - "center": "POINT (122137.4594147085445002 2418626.9239746956154704)", - "surface": 14830000, - "canton": null, - "numero_insee": "29271" - } - }, - { - "pk": 26036, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SAINT-YVI", - "center": "POINT (131713.1604938061791472 2347652.0900501864962280)", - "surface": 27370000, - "canton": null, - "numero_insee": "29272" - } - }, - { - "pk": 4901, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SANTEC", - "center": "POINT (131651.2619086522026919 2430211.1765274936333299)", - "surface": 8190000, - "canton": null, - "numero_insee": "29273" - } - }, - { - "pk": 22104, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SCAER", - "center": "POINT (147774.3962648664601147 2353985.7440704088658094)", - "surface": 117790000, - "canton": null, - "numero_insee": "29274" - } - }, - { - "pk": 22258, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SCRIGNAC", - "center": "POINT (155828.4486867295927368 2397782.4536215467378497)", - "surface": 70560000, - "canton": null, - "numero_insee": "29275" - } - }, - { - "pk": 23197, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SIBIRIL", - "center": "POINT (128178.7553244522423483 2426480.7748891189694405)", - "surface": 11540000, - "canton": null, - "numero_insee": "29276" - } - }, - { - "pk": 20222, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SIZUN", - "center": "POINT (127719.0039014109061100 2396455.9490746250376105)", - "surface": 59030000, - "canton": null, - "numero_insee": "29277" - } - }, - { - "pk": 21650, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "SPEZET", - "center": "POINT (152139.0865901517099701 2371233.5914379442110658)", - "surface": 61390000, - "canton": null, - "numero_insee": "29278" - } - }, - { - "pk": 22065, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TAULE", - "center": "POINT (140449.0677242288948037 2418773.7879527769982815)", - "surface": 29550000, - "canton": null, - "numero_insee": "29279" - } - }, - { - "pk": 19813, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TELGRUC-SUR-MER", - "center": "POINT (103228.6203810943407007 2380548.4261962687596679)", - "surface": 28420000, - "canton": null, - "numero_insee": "29280" - } - }, - { - "pk": 3245, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TOURCH", - "center": "POINT (140866.4586621429771185 2354330.5404480248689651)", - "surface": 19820000, - "canton": null, - "numero_insee": "29281" - } - }, - { - "pk": 28060, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREBABU", - "center": "POINT (76769.7349702028441243 2398049.8533586394041777)", - "surface": 4340000, - "canton": null, - "numero_insee": "29282" - } - }, - { - "pk": 29896, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREFFIAGAT", - "center": "POINT (106416.5763440164155327 2332337.8182916301302612)", - "surface": 8200000, - "canton": null, - "numero_insee": "29284" - } - }, - { - "pk": 33060, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREFLEVENEZ", - "center": "POINT (118288.0184486347134225 2399482.5773887485265732)", - "surface": 9750000, - "canton": null, - "numero_insee": "29286" - } - }, - { - "pk": 18884, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREFLEZ", - "center": "POINT (114193.1828677784651518 2423466.7111683893017471)", - "surface": 16050000, - "canton": null, - "numero_insee": "29287" - } - }, - { - "pk": 7868, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREGARANTEC", - "center": "POINT (111158.5022514610318467 2415036.5419797645881772)", - "surface": 5100000, - "canton": null, - "numero_insee": "29288" - } - }, - { - "pk": 9928, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREGARVAN", - "center": "POINT (112538.8222285932861269 2380122.5831861975602806)", - "surface": 9640000, - "canton": null, - "numero_insee": "29289" - } - }, - { - "pk": 38000, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREGLONOU", - "center": "POINT (92133.5603966489434242 2416485.5243433974683285)", - "surface": 5850000, - "canton": null, - "numero_insee": "29290" - } - }, - { - "pk": 4236, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREGOUREZ", - "center": "POINT (138091.4919888473814353 2363415.0396227599121630)", - "surface": 17590000, - "canton": null, - "numero_insee": "29291" - } - }, - { - "pk": 16058, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREGUENNEC", - "center": "POINT (101237.7117912662797607 2341703.5543906115926802)", - "surface": 9360000, - "canton": null, - "numero_insee": "29292" - } - }, - { - "pk": 18139, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREGUNC", - "center": "POINT (137931.4820675074588507 2333491.2181039350107312)", - "surface": 50690000, - "canton": null, - "numero_insee": "29293" - } - }, - { - "pk": 37041, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE TREHOU", - "center": "POINT (121510.9492407487123273 2396906.5408294382505119)", - "surface": 23190000, - "canton": null, - "numero_insee": "29294" - } - }, - { - "pk": 24699, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREMAOUEZAN", - "center": "POINT (113296.6963952519581653 2410450.4182577943429351)", - "surface": 8490000, - "canton": null, - "numero_insee": "29295" - } - }, - { - "pk": 5818, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREMEOC", - "center": "POINT (110330.4278164868010208 2343477.6366035290993750)", - "surface": 11690000, - "canton": null, - "numero_insee": "29296" - } - }, - { - "pk": 21154, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREMEVEN", - "center": "POINT (162107.3395212783943862 2338789.4886730946600437)", - "surface": 15460000, - "canton": null, - "numero_insee": "29297" - } - }, - { - "pk": 27488, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREOGAT", - "center": "POINT (101315.3609745847061276 2344506.3040666067972779)", - "surface": 9730000, - "canton": null, - "numero_insee": "29298" - } - }, - { - "pk": 25505, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREOUERGAT", - "center": "POINT (87573.7719359262264334 2411045.2934491722844541)", - "surface": 6180000, - "canton": null, - "numero_insee": "29299" - } - }, - { - "pk": 33248, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "LE TREVOUX", - "center": "POINT (152105.2131982123246416 2338108.5584413781762123)", - "surface": 20880000, - "canton": null, - "numero_insee": "29300" - } - }, - { - "pk": 34747, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "TREZILIDE", - "center": "POINT (126825.2019883651519194 2420565.8223311379551888)", - "surface": 4590000, - "canton": null, - "numero_insee": "29301" - } - }, - { - "pk": 19592, - "model": "ishtar_common.town", - "fields": { - "departement": 30, - "name": "PONT-DE-BUIS-LES-QUIMERCH", - "center": "POINT (122117.9430443638120778 2383601.8057116470299661)", - "surface": 40770000, - "canton": null, - "numero_insee": "29302" - } - }, - { - "pk": 19922, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "AFA", - "center": "POINT (1136573.7775039507541806 1686337.1345064642373472)", - "surface": 11980000, - "canton": null, - "numero_insee": "2A001" - } - }, - { - "pk": 19606, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "AJACCIO", - "center": "POINT (1129018.3745854692533612 1680163.2067064924631268)", - "surface": 83140000, - "canton": null, - "numero_insee": "2A004" - } - }, - { - "pk": 15131, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ALATA", - "center": "POINT (1131181.4666272925678641 1684687.8297707485035062)", - "surface": 30650000, - "canton": null, - "numero_insee": "2A006" - } - }, - { - "pk": 36418, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ALBITRECCIA", - "center": "POINT (1144298.7359892358072102 1673188.2986799092032015)", - "surface": 45990000, - "canton": null, - "numero_insee": "2A008" - } - }, - { - "pk": 7803, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ALTAGENE", - "center": "POINT (1162357.2804015944711864 1657727.1002096058800817)", - "surface": 4750000, - "canton": null, - "numero_insee": "2A011" - } - }, - { - "pk": 5195, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "AMBIEGNA", - "center": "POINT (1133670.3693051137961447 1697725.9209134241100401)", - "surface": 6210000, - "canton": null, - "numero_insee": "2A014" - } - }, - { - "pk": 27564, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "APPIETTO", - "center": "POINT (1131052.3763405019417405 1687990.8369225063361228)", - "surface": 34590000, - "canton": null, - "numero_insee": "2A017" - } - }, - { - "pk": 20451, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ARBELLARA", - "center": "POINT (1155391.1045499225147069 1652859.7554761816281825)", - "surface": 11290000, - "canton": null, - "numero_insee": "2A018" - } - }, - { - "pk": 18966, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ARBORI", - "center": "POINT (1135032.4828569823876023 1702243.4717900815885514)", - "surface": 20110000, - "canton": null, - "numero_insee": "2A019" - } - }, - { - "pk": 10020, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ARGIUSTA-MORICCIO", - "center": "POINT (1157650.5993133764714003 1669200.3673740192316473)", - "surface": 10310000, - "canton": null, - "numero_insee": "2A021" - } - }, - { - "pk": 26113, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ARRO", - "center": "POINT (1136063.5139373308047652 1698848.2856368708889931)", - "surface": 8840000, - "canton": null, - "numero_insee": "2A022" - } - }, - { - "pk": 20270, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "AULLENE", - "center": "POINT (1162661.8339117527939379 1668643.6480893348343670)", - "surface": 40960000, - "canton": null, - "numero_insee": "2A024" - } - }, - { - "pk": 5000, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "AZILONE-AMPAZA", - "center": "POINT (1155795.6788998316042125 1675191.6645150571130216)", - "surface": 8020000, - "canton": null, - "numero_insee": "2A026" - } - }, - { - "pk": 22655, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "AZZANA", - "center": "POINT (1146352.6974784936755896 1701541.8325923914089799)", - "surface": 11990000, - "canton": null, - "numero_insee": "2A027" - } - }, - { - "pk": 21345, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "BALOGNA", - "center": "POINT (1131072.6175106372684240 1708516.5554777372162789)", - "surface": 27790000, - "canton": null, - "numero_insee": "2A028" - } - }, - { - "pk": 17785, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "BASTELICA", - "center": "POINT (1157280.5666813144925982 1688521.4576632936950773)", - "surface": 127660000, - "canton": null, - "numero_insee": "2A031" - } - }, - { - "pk": 23831, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "BASTELICACCIA", - "center": "POINT (1140223.7033105934970081 1681162.6255099251866341)", - "surface": 18130000, - "canton": null, - "numero_insee": "2A032" - } - }, - { - "pk": 3080, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "BELVEDERE-CAMPOMORO", - "center": "POINT (1142036.4986477715428919 1645733.5397227406501770)", - "surface": 27090000, - "canton": null, - "numero_insee": "2A035" - } - }, - { - "pk": 27839, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "BILIA", - "center": "POINT (1148835.0338125438429415 1646894.6219632616266608)", - "surface": 7430000, - "canton": null, - "numero_insee": "2A038" - } - }, - { - "pk": 16026, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "BOCOGNANO", - "center": "POINT (1158182.3143336703069508 1699843.5131125317420810)", - "surface": 71480000, - "canton": null, - "numero_insee": "2A040" - } - }, - { - "pk": 37211, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "BONIFACIO", - "center": "POINT (1173931.5263234497979283 1628190.7712712383363396)", - "surface": 140960000, - "canton": null, - "numero_insee": "2A041" - } - }, - { - "pk": 18610, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CALCATOGGIO", - "center": "POINT (1131127.9106979288626462 1690795.0053215580992401)", - "surface": 23270000, - "canton": null, - "numero_insee": "2A048" - } - }, - { - "pk": 22315, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CAMPO", - "center": "POINT (1154274.5496087539941072 1677381.0790638364851475)", - "surface": 3290000, - "canton": null, - "numero_insee": "2A056" - } - }, - { - "pk": 7392, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CANNELLE", - "center": "POINT (1137611.8255770495161414 1693555.2573457998223603)", - "surface": 3450000, - "canton": null, - "numero_insee": "2A060" - } - }, - { - "pk": 19193, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CARBUCCIA", - "center": "POINT (1147634.1029849080368876 1692441.7295445576310158)", - "surface": 14520000, - "canton": null, - "numero_insee": "2A062" - } - }, - { - "pk": 9647, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CARDO-TORGIA", - "center": "POINT (1152210.7544431332498789 1672957.3907900033518672)", - "surface": 3920000, - "canton": null, - "numero_insee": "2A064" - } - }, - { - "pk": 19733, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CARGESE", - "center": "POINT (1120898.4964731507934630 1704122.0299083536956459)", - "surface": 46740000, - "canton": null, - "numero_insee": "2A065" - } - }, - { - "pk": 16273, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CARGIACA", - "center": "POINT (1159133.2088455418124795 1660001.6992949172854424)", - "surface": 7950000, - "canton": null, - "numero_insee": "2A066" - } - }, - { - "pk": 27565, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CASAGLIONE", - "center": "POINT (1132688.5185447693802416 1695514.5650164138060063)", - "surface": 14920000, - "canton": null, - "numero_insee": "2A070" - } - }, - { - "pk": 33050, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CASALABRIVA", - "center": "POINT (1149200.2601608457043767 1662317.5049984781071544)", - "surface": 15870000, - "canton": null, - "numero_insee": "2A071" - } - }, - { - "pk": 22912, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CAURO", - "center": "POINT (1145256.8572205137461424 1678102.8963773529976606)", - "surface": 27800000, - "canton": null, - "numero_insee": "2A085" - } - }, - { - "pk": 18375, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CIAMANNACCE", - "center": "POINT (1164899.1978000882081687 1687487.0478667805436999)", - "surface": 25150000, - "canton": null, - "numero_insee": "2A089" - } - }, - { - "pk": 29288, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "COGGIA", - "center": "POINT (1130245.3226301458198577 1700098.8706016254145652)", - "surface": 31540000, - "canton": null, - "numero_insee": "2A090" - } - }, - { - "pk": 21751, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "COGNOCOLI-MONTICCHI", - "center": "POINT (1143856.1409574260469526 1666576.0538143720477819)", - "surface": 35900000, - "canton": null, - "numero_insee": "2A091" - } - }, - { - "pk": 15263, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CONCA", - "center": "POINT (1182924.6947778719477355 1664416.3147228837478906)", - "surface": 78430000, - "canton": null, - "numero_insee": "2A092" - } - }, - { - "pk": 19467, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CORRANO", - "center": "POINT (1160185.9403837556019425 1676932.3914758122991771)", - "surface": 12740000, - "canton": null, - "numero_insee": "2A094" - } - }, - { - "pk": 15448, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "COTI-CHIAVARI", - "center": "POINT (1134783.9336924068629742 1662090.8674691913183779)", - "surface": 63300000, - "canton": null, - "numero_insee": "2A098" - } - }, - { - "pk": 14793, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "COZZANO", - "center": "POINT (1169240.3706447624135762 1683420.0713485493324697)", - "surface": 25130000, - "canton": null, - "numero_insee": "2A099" - } - }, - { - "pk": 21998, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CRISTINACCE", - "center": "POINT (1138921.1696757483296096 1715493.9457706725224853)", - "surface": 20650000, - "canton": null, - "numero_insee": "2A100" - } - }, - { - "pk": 19867, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "CUTTOLI-CORTICCHIATO", - "center": "POINT (1143784.8936513755470514 1686100.0398727939464152)", - "surface": 30730000, - "canton": null, - "numero_insee": "2A103" - } - }, - { - "pk": 21156, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ECCICA-SUARELLA", - "center": "POINT (1145138.2817978695966303 1680204.5019379898440093)", - "surface": 14440000, - "canton": null, - "numero_insee": "2A104" - } - }, - { - "pk": 15506, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "EVISA", - "center": "POINT (1135678.8158350987359881 1719870.9162999619729817)", - "surface": 67200000, - "canton": null, - "numero_insee": "2A108" - } - }, - { - "pk": 15634, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "FIGARI", - "center": "POINT (1167849.3840694697573781 1636648.2894545930903405)", - "surface": 100510000, - "canton": null, - "numero_insee": "2A114" - } - }, - { - "pk": 4708, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "FOCE", - "center": "POINT (1159741.1424278649501503 1647791.4392935619689524)", - "surface": 20800000, - "canton": null, - "numero_insee": "2A115" - } - }, - { - "pk": 3480, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "FOZZANO", - "center": "POINT (1154963.3602435397915542 1655959.9605420974548906)", - "surface": 19510000, - "canton": null, - "numero_insee": "2A118" - } - }, - { - "pk": 18961, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "FRASSETO", - "center": "POINT (1157147.1943599665537477 1680910.7316164714284241)", - "surface": 16610000, - "canton": null, - "numero_insee": "2A119" - } - }, - { - "pk": 34156, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "GIUNCHETO", - "center": "POINT (1153473.1158660417422652 1643230.5959063926711679)", - "surface": 7700000, - "canton": null, - "numero_insee": "2A127" - } - }, - { - "pk": 32747, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "GRANACE", - "center": "POINT (1157621.8974759378470480 1649675.2553966327104717)", - "surface": 4050000, - "canton": null, - "numero_insee": "2A128" - } - }, - { - "pk": 21586, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "GROSSA", - "center": "POINT (1145652.2657080660574138 1644463.6017921087332070)", - "surface": 18410000, - "canton": null, - "numero_insee": "2A129" - } - }, - { - "pk": 28817, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "GROSSETO-PRUGNA", - "center": "POINT (1146575.9761192412115633 1676111.9536116835661232)", - "surface": 32020000, - "canton": null, - "numero_insee": "2A130" - } - }, - { - "pk": 16025, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "GUAGNO", - "center": "POINT (1150190.4159734472632408 1709184.9761676127091050)", - "surface": 43070000, - "canton": null, - "numero_insee": "2A131" - } - }, - { - "pk": 17789, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "GUARGUALE", - "center": "POINT (1148833.9691249816678464 1669823.8111827643588185)", - "surface": 10640000, - "canton": null, - "numero_insee": "2A132" - } - }, - { - "pk": 19134, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "GUITERA-LES-BAINS", - "center": "POINT (1160447.5767271914519370 1681340.2405054885894060)", - "surface": 14650000, - "canton": null, - "numero_insee": "2A133" - } - }, - { - "pk": 20994, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "LECCI", - "center": "POINT (1182910.9571815952658653 1654603.6841529700905085)", - "surface": 27340000, - "canton": null, - "numero_insee": "2A139" - } - }, - { - "pk": 21393, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "LETIA", - "center": "POINT (1140949.8477073339745402 1712508.0454422004986554)", - "surface": 36730000, - "canton": null, - "numero_insee": "2A141" - } - }, - { - "pk": 18594, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "LEVIE", - "center": "POINT (1166115.4120970931835473 1651652.3369260323233902)", - "surface": 86030000, - "canton": null, - "numero_insee": "2A142" - } - }, - { - "pk": 19499, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "LOPIGNA", - "center": "POINT (1140271.9376071162987500 1698484.7157009551301599)", - "surface": 19700000, - "canton": null, - "numero_insee": "2A144" - } - }, - { - "pk": 5985, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "MARIGNANA", - "center": "POINT (1128149.9359168868977576 1710693.6482244720682502)", - "surface": 55460000, - "canton": null, - "numero_insee": "2A154" - } - }, - { - "pk": 33448, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "MELA", - "center": "POINT (1163881.9615815556608140 1655137.1810138081200421)", - "surface": 4630000, - "canton": null, - "numero_insee": "2A158" - } - }, - { - "pk": 20395, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "MOCA-CROCE", - "center": "POINT (1155976.7225782333407551 1665981.5992681165225804)", - "surface": 27680000, - "canton": null, - "numero_insee": "2A160" - } - }, - { - "pk": 3288, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "MURZO", - "center": "POINT (1139004.6399361940566450 1705982.9210666068829596)", - "surface": 21500000, - "canton": null, - "numero_insee": "2A174" - } - }, - { - "pk": 19811, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "OCANA", - "center": "POINT (1146212.3334906431846321 1683317.8324098868761212)", - "surface": 26070000, - "canton": null, - "numero_insee": "2A181" - } - }, - { - "pk": 29291, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "OLIVESE", - "center": "POINT (1160427.5353561656083912 1672228.5720507672522217)", - "surface": 29460000, - "canton": null, - "numero_insee": "2A186" - } - }, - { - "pk": 20056, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "OLMETO", - "center": "POINT (1147947.0515931881964207 1656799.4938369493465871)", - "surface": 44130000, - "canton": null, - "numero_insee": "2A189" - } - }, - { - "pk": 5393, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "OLMICCIA", - "center": "POINT (1158993.6727048126049340 1653091.6620238840114325)", - "surface": 11330000, - "canton": null, - "numero_insee": "2A191" - } - }, - { - "pk": 19148, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ORTO", - "center": "POINT (1147769.1625892296433449 1711266.3109327603597194)", - "surface": 16070000, - "canton": null, - "numero_insee": "2A196" - } - }, - { - "pk": 18198, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "OSANI", - "center": "POINT (1118913.0571987202856690 1725030.4158189720474184)", - "surface": 52200000, - "canton": null, - "numero_insee": "2A197" - } - }, - { - "pk": 8114, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "OTA", - "center": "POINT (1128704.9798489862587303 1715904.9380010198801756)", - "surface": 38300000, - "canton": null, - "numero_insee": "2A198" - } - }, - { - "pk": 23219, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PALNECA", - "center": "POINT (1168882.7760691964067519 1689925.0933624464087188)", - "surface": 43800000, - "canton": null, - "numero_insee": "2A200" - } - }, - { - "pk": 3432, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PARTINELLO", - "center": "POINT (1124639.7959807831794024 1722777.7867588892113417)", - "surface": 18670000, - "canton": null, - "numero_insee": "2A203" - } - }, - { - "pk": 5287, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PERI", - "center": "POINT (1145859.2396825440227985 1689322.2638900624588132)", - "surface": 24070000, - "canton": null, - "numero_insee": "2A209" - } - }, - { - "pk": 18244, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PETRETO-BICCHISANO", - "center": "POINT (1152792.2517318159807473 1663750.8299817568622530)", - "surface": 39330000, - "canton": null, - "numero_insee": "2A211" - } - }, - { - "pk": 29287, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PIANA", - "center": "POINT (1120328.6071480279788375 1712026.8187282443977892)", - "surface": 63270000, - "canton": null, - "numero_insee": "2A212" - } - }, - { - "pk": 21715, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PIANOTTOLI-CALDARELLO", - "center": "POINT (1161958.0595182252582163 1634794.1795738169457763)", - "surface": 43120000, - "canton": null, - "numero_insee": "2A215" - } - }, - { - "pk": 19890, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PIETROSELLA", - "center": "POINT (1139327.9387528710067272 1669139.6130465033929795)", - "surface": 35760000, - "canton": null, - "numero_insee": "2A228" - } - }, - { - "pk": 32450, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "POGGIOLO", - "center": "POINT (1143202.4971464029513299 1706820.7600361402146518)", - "surface": 12160000, - "canton": null, - "numero_insee": "2A240" - } - }, - { - "pk": 16812, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PORTO-VECCHIO", - "center": "POINT (1178180.0773929033894092 1646051.1408043641131371)", - "surface": 169470000, - "canton": null, - "numero_insee": "2A247" - } - }, - { - "pk": 3836, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "PROPRIANO", - "center": "POINT (1147607.2191617107018828 1649887.6888567800633609)", - "surface": 19060000, - "canton": null, - "numero_insee": "2A249" - } - }, - { - "pk": 31156, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "QUASQUARA", - "center": "POINT (1154757.5504239562433213 1679387.8450877387076616)", - "surface": 6170000, - "canton": null, - "numero_insee": "2A253" - } - }, - { - "pk": 14820, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "QUENZA", - "center": "POINT (1171664.6316336197778583 1669623.9562240482773632)", - "surface": 96250000, - "canton": null, - "numero_insee": "2A254" - } - }, - { - "pk": 26713, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "RENNO", - "center": "POINT (1136355.9352144924923778 1711166.1214128048159182)", - "surface": 12690000, - "canton": null, - "numero_insee": "2A258" - } - }, - { - "pk": 15262, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "REZZA", - "center": "POINT (1148042.3727970931213349 1702958.4121875052805990)", - "surface": 13650000, - "canton": null, - "numero_insee": "2A259" - } - }, - { - "pk": 19732, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ROSAZIA", - "center": "POINT (1140537.1406166718807071 1702492.0229776082560420)", - "surface": 19860000, - "canton": null, - "numero_insee": "2A262" - } - }, - { - "pk": 18379, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SALICE", - "center": "POINT (1144059.6810704399831593 1700420.3305590567179024)", - "surface": 22090000, - "canton": null, - "numero_insee": "2A266" - } - }, - { - "pk": 25318, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SAMPOLO", - "center": "POINT (1163624.0733723109588027 1684472.0662713469937444)", - "surface": 7130000, - "canton": null, - "numero_insee": "2A268" - } - }, - { - "pk": 36343, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SARI-SOLENZARA", - "center": "POINT (1184165.4193012702744454 1671336.0068941242061555)", - "surface": 74810000, - "canton": null, - "numero_insee": "2A269" - } - }, - { - "pk": 20838, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SARI-D'ORCINO", - "center": "POINT (1138795.6618484091013670 1695568.1430569661315531)", - "surface": 22240000, - "canton": null, - "numero_insee": "2A270" - } - }, - { - "pk": 18969, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SARROLA-CARCOPINO", - "center": "POINT (1139458.7430724301375449 1688465.0809813418891281)", - "surface": 27000000, - "canton": null, - "numero_insee": "2A271" - } - }, - { - "pk": 23771, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SARTENE", - "center": "POINT (1151786.0072615970857441 1641513.5930914683267474)", - "surface": 201820000, - "canton": null, - "numero_insee": "2A272" - } - }, - { - "pk": 18798, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SERRA-DI-FERRO", - "center": "POINT (1140013.8639190648682415 1659433.3092986685223877)", - "surface": 32920000, - "canton": null, - "numero_insee": "2A276" - } - }, - { - "pk": 19228, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SERRA-DI-SCOPAMENE", - "center": "POINT (1164389.3849267540499568 1665755.1522862005513161)", - "surface": 20560000, - "canton": null, - "numero_insee": "2A278" - } - }, - { - "pk": 10888, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SOCCIA", - "center": "POINT (1144857.0066007869318128 1712241.9754942266736180)", - "surface": 27970000, - "canton": null, - "numero_insee": "2A282" - } - }, - { - "pk": 3206, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SOLLACARO", - "center": "POINT (1145616.1715968747157604 1659983.1115835744421929)", - "surface": 24090000, - "canton": null, - "numero_insee": "2A284" - } - }, - { - "pk": 18800, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SORBOLLANO", - "center": "POINT (1165118.3877009879797697 1662557.4908569874241948)", - "surface": 7850000, - "canton": null, - "numero_insee": "2A285" - } - }, - { - "pk": 19392, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SOTTA", - "center": "POINT (1172512.8210807440336794 1641495.4905094015412033)", - "surface": 66950000, - "canton": null, - "numero_insee": "2A288" - } - }, - { - "pk": 27563, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SANT'ANDREA-D'ORCINO", - "center": "POINT (1135314.3986004821490496 1692934.3512630036566406)", - "surface": 8900000, - "canton": null, - "numero_insee": "2A295" - } - }, - { - "pk": 16223, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SAN-GAVINO-DI-CARBINI", - "center": "POINT (1175591.6107061642687768 1655740.8007515789940953)", - "surface": 48010000, - "canton": null, - "numero_insee": "2A300" - } - }, - { - "pk": 34401, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SAINTE-LUCIE-DE-TALLANO", - "center": "POINT (1161396.5577962263487279 1653112.7778403800912201)", - "surface": 25730000, - "canton": null, - "numero_insee": "2A308" - } - }, - { - "pk": 3481, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SANTA-MARIA-FIGANIELLA", - "center": "POINT (1156538.0126318624243140 1659077.7494788360781968)", - "surface": 13130000, - "canton": null, - "numero_insee": "2A310" - } - }, - { - "pk": 20505, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "SANTA-MARIA-SICHE", - "center": "POINT (1152580.4503086660988629 1676465.0613869708031416)", - "surface": 10720000, - "canton": null, - "numero_insee": "2A312" - } - }, - { - "pk": 29286, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "TASSO", - "center": "POINT (1161419.7166869402863085 1684652.9388593018520623)", - "surface": 16890000, - "canton": null, - "numero_insee": "2A322" - } - }, - { - "pk": 20010, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "TAVERA", - "center": "POINT (1153798.2812367912847549 1697401.9952791586983949)", - "surface": 32570000, - "canton": null, - "numero_insee": "2A324" - } - }, - { - "pk": 18968, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "UCCIANI", - "center": "POINT (1151319.9787248671054840 1694576.7268492882139981)", - "surface": 28750000, - "canton": null, - "numero_insee": "2A330" - } - }, - { - "pk": 17792, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "URBALACONE", - "center": "POINT (1150636.1108426228165627 1669839.6364280027337372)", - "surface": 8320000, - "canton": null, - "numero_insee": "2A331" - } - }, - { - "pk": 14154, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "VALLE-DI-MEZZANA", - "center": "POINT (1138036.0133547913283110 1690855.6026898296549916)", - "surface": 7080000, - "canton": null, - "numero_insee": "2A336" - } - }, - { - "pk": 17791, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "VERO", - "center": "POINT (1146103.3335486389696598 1695732.4127316472586244)", - "surface": 23730000, - "canton": null, - "numero_insee": "2A345" - } - }, - { - "pk": 14798, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "VICO", - "center": "POINT (1129506.7546132795978338 1704397.7388760903850198)", - "surface": 52440000, - "canton": null, - "numero_insee": "2A348" - } - }, - { - "pk": 4640, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "VIGGIANELLO", - "center": "POINT (1151691.0534648559987545 1652326.6181859141215682)", - "surface": 17040000, - "canton": null, - "numero_insee": "2A349" - } - }, - { - "pk": 7272, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "VILLANOVA", - "center": "POINT (1126188.7388885316904634 1683142.1728070802055299)", - "surface": 11450000, - "canton": null, - "numero_insee": "2A351" - } - }, - { - "pk": 3227, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ZERUBIA", - "center": "POINT (1160315.2882495396770537 1662214.8896419703960419)", - "surface": 13520000, - "canton": null, - "numero_insee": "2A357" - } - }, - { - "pk": 11035, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ZEVACO", - "center": "POINT (1157981.5730060082860291 1677113.2712922114878893)", - "surface": 10060000, - "canton": null, - "numero_insee": "2A358" - } - }, - { - "pk": 20271, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ZICAVO", - "center": "POINT (1168087.3819932227488607 1677902.9965701675973833)", - "surface": 92760000, - "canton": null, - "numero_insee": "2A359" - } - }, - { - "pk": 19425, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ZIGLIARA", - "center": "POINT (1153428.8893765597604215 1671065.6855442679952830)", - "surface": 12980000, - "canton": null, - "numero_insee": "2A360" - } - }, - { - "pk": 21399, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ZONZA", - "center": "POINT (1177953.0818871632218361 1660467.5828908653929830)", - "surface": 134860000, - "canton": null, - "numero_insee": "2A362" - } - }, - { - "pk": 30271, - "model": "ishtar_common.town", - "fields": { - "departement": 20, - "name": "ZOZA", - "center": "POINT (1161744.2415262260474265 1659123.4982276540249586)", - "surface": 5040000, - "canton": null, - "numero_insee": "2A363" - } - }, - { - "pk": 17786, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "AGHIONE", - "center": "POINT (1186286.0836760152596980 1703394.9122223290614784)", - "surface": 33870000, - "canton": null, - "numero_insee": "2B002" - } - }, - { - "pk": 36148, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "AITI", - "center": "POINT (1168177.2897913530468941 1735975.8341083806008101)", - "surface": 12150000, - "canton": null, - "numero_insee": "2B003" - } - }, - { - "pk": 13980, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ALANDO", - "center": "POINT (1173875.3436386226676404 1725613.2311820737086236)", - "surface": 3090000, - "canton": null, - "numero_insee": "2B005" - } - }, - { - "pk": 20135, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ALBERTACCE", - "center": "POINT (1143956.7486692075617611 1723548.0026693246327341)", - "surface": 97180000, - "canton": null, - "numero_insee": "2B007" - } - }, - { - "pk": 17783, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ALERIA", - "center": "POINT (1193181.7916359524242580 1704857.4178341277875006)", - "surface": 63570000, - "canton": null, - "numero_insee": "2B009" - } - }, - { - "pk": 3350, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ALGAJOLA", - "center": "POINT (1135764.7532265572808683 1755715.2841637823730707)", - "surface": 1680000, - "canton": null, - "numero_insee": "2B010" - } - }, - { - "pk": 5067, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ALTIANI", - "center": "POINT (1174061.8130615155678242 1715802.7901453389786184)", - "surface": 18470000, - "canton": null, - "numero_insee": "2B012" - } - }, - { - "pk": 33389, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "AMPRIANI", - "center": "POINT (1180230.2084072863217443 1720262.5277170334011316)", - "surface": 2320000, - "canton": null, - "numero_insee": "2B015" - } - }, - { - "pk": 22682, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ANTISANTI", - "center": "POINT (1183428.1442110529169440 1709577.4494782472029328)", - "surface": 48270000, - "canton": null, - "numero_insee": "2B016" - } - }, - { - "pk": 20614, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "AREGNO", - "center": "POINT (1137478.9742218158207834 1754328.6414630874060094)", - "surface": 9300000, - "canton": null, - "numero_insee": "2B020" - } - }, - { - "pk": 20001, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ASCO", - "center": "POINT (1148838.5063154506497085 1737708.1358769247308373)", - "surface": 124030000, - "canton": null, - "numero_insee": "2B023" - } - }, - { - "pk": 13806, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "AVAPESSA", - "center": "POINT (1139211.6548269568011165 1750839.6233971761539578)", - "surface": 3260000, - "canton": null, - "numero_insee": "2B025" - } - }, - { - "pk": 32766, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BARBAGGIO", - "center": "POINT (1176805.3791582151316106 1768090.5209856447763741)", - "surface": 10980000, - "canton": null, - "numero_insee": "2B029" - } - }, - { - "pk": 21913, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BASTIA", - "center": "POINT (1181505.3605669320095330 1768732.6385827932972461)", - "surface": 19770000, - "canton": null, - "numero_insee": "2B033" - } - }, - { - "pk": 24035, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BELGODERE", - "center": "POINT (1148568.6460579270496964 1757029.1628715933766216)", - "surface": 13040000, - "canton": null, - "numero_insee": "2B034" - } - }, - { - "pk": 6406, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BIGORNO", - "center": "POINT (1172954.2385574940126389 1750635.6366896016988903)", - "surface": 8960000, - "canton": null, - "numero_insee": "2B036" - } - }, - { - "pk": 3397, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BIGUGLIA", - "center": "POINT (1183475.4122669612988830 1761040.7384808391798288)", - "surface": 26860000, - "canton": null, - "numero_insee": "2B037" - } - }, - { - "pk": 36294, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BISINCHI", - "center": "POINT (1174799.4671951250638813 1745745.9345921091735363)", - "surface": 12770000, - "canton": null, - "numero_insee": "2B039" - } - }, - { - "pk": 3118, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BORGO", - "center": "POINT (1185217.9086333406157792 1756450.5412571411579847)", - "surface": 48380000, - "canton": null, - "numero_insee": "2B042" - } - }, - { - "pk": 4118, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BRANDO", - "center": "POINT (1182614.0881030326709151 1779254.9615804275963455)", - "surface": 22280000, - "canton": null, - "numero_insee": "2B043" - } - }, - { - "pk": 35338, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "BUSTANICO", - "center": "POINT (1175456.0353739676065743 1728030.0936026426497847)", - "surface": 11580000, - "canton": null, - "numero_insee": "2B045" - } - }, - { - "pk": 17132, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CAGNANO", - "center": "POINT (1181122.5607951651327312 1789453.9400786887854338)", - "surface": 14830000, - "canton": null, - "numero_insee": "2B046" - } - }, - { - "pk": 4945, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CALACUCCIA", - "center": "POINT (1152949.5216677286662161 1725629.4490485037676990)", - "surface": 18200000, - "canton": null, - "numero_insee": "2B047" - } - }, - { - "pk": 19089, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CALENZANA", - "center": "POINT (1132487.4015621356666088 1741269.0933888701256365)", - "surface": 184650000, - "canton": null, - "numero_insee": "2B049" - } - }, - { - "pk": 18858, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CALVI", - "center": "POINT (1128319.5138866000343114 1748441.2654052167199552)", - "surface": 31600000, - "canton": null, - "numero_insee": "2B050" - } - }, - { - "pk": 35856, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CAMBIA", - "center": "POINT (1174614.5771296503953636 1732628.3267358972225338)", - "surface": 8340000, - "canton": null, - "numero_insee": "2B051" - } - }, - { - "pk": 7443, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CAMPANA", - "center": "POINT (1177496.7476918774191290 1735056.6375925489701331)", - "surface": 2360000, - "canton": null, - "numero_insee": "2B052" - } - }, - { - "pk": 23317, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CAMPI", - "center": "POINT (1185517.8141071808058769 1722411.6891508838161826)", - "surface": 4880000, - "canton": null, - "numero_insee": "2B053" - } - }, - { - "pk": 27281, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CAMPILE", - "center": "POINT (1177691.3060670532286167 1747072.9755544879008085)", - "surface": 9790000, - "canton": null, - "numero_insee": "2B054" - } - }, - { - "pk": 9194, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CAMPITELLO", - "center": "POINT (1174859.9188852200750262 1750251.9281386770308018)", - "surface": 8190000, - "canton": null, - "numero_insee": "2B055" - } - }, - { - "pk": 20781, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CANALE-DI-VERDE", - "center": "POINT (1192024.4386039506644011 1722569.1488376299384981)", - "surface": 14650000, - "canton": null, - "numero_insee": "2B057" - } - }, - { - "pk": 4075, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CANARI", - "center": "POINT (1173448.4180407766252756 1785481.7219910433050245)", - "surface": 16910000, - "canton": null, - "numero_insee": "2B058" - } - }, - { - "pk": 17272, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CANAVAGGIA", - "center": "POINT (1167686.1062516341917217 1746284.0581543280277401)", - "surface": 35150000, - "canton": null, - "numero_insee": "2B059" - } - }, - { - "pk": 5380, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CARCHETO-BRUSTICO", - "center": "POINT (1179530.7769856327213347 1731470.1405628058128059)", - "surface": 5210000, - "canton": null, - "numero_insee": "2B063" - } - }, - { - "pk": 25322, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CARPINETO", - "center": "POINT (1181129.9686592929065228 1731784.5917204646393657)", - "surface": 2450000, - "canton": null, - "numero_insee": "2B067" - } - }, - { - "pk": 27664, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CARTICASI", - "center": "POINT (1174935.1908714640885592 1730328.3307472891174257)", - "surface": 13120000, - "canton": null, - "numero_insee": "2B068" - } - }, - { - "pk": 14047, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASABIANCA", - "center": "POINT (1179540.0819333421532065 1741782.8092194634955376)", - "surface": 3670000, - "canton": null, - "numero_insee": "2B069" - } - }, - { - "pk": 26602, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASALTA", - "center": "POINT (1183852.9251814470626414 1740919.7006688583642244)", - "surface": 4940000, - "canton": null, - "numero_insee": "2B072" - } - }, - { - "pk": 14634, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASAMACCIOLI", - "center": "POINT (1150087.5207090517506003 1720898.5252157910726964)", - "surface": 36500000, - "canton": null, - "numero_insee": "2B073" - } - }, - { - "pk": 3854, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASANOVA", - "center": "POINT (1163214.9660726743750274 1719612.1800668989308178)", - "surface": 9960000, - "canton": null, - "numero_insee": "2B074" - } - }, - { - "pk": 21514, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASEVECCHIE", - "center": "POINT (1182348.0245964210480452 1707164.9556322486605495)", - "surface": 9090000, - "canton": null, - "numero_insee": "2B075" - } - }, - { - "pk": 30051, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASTELLARE-DI-CASINCA", - "center": "POINT (1189921.0630778481718153 1745378.5318089101929218)", - "surface": 9030000, - "canton": null, - "numero_insee": "2B077" - } - }, - { - "pk": 9979, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASTELLARE-DI-MERCURIO", - "center": "POINT (1170570.6619231684599072 1725684.2711854642257094)", - "surface": 6130000, - "canton": null, - "numero_insee": "2B078" - } - }, - { - "pk": 14088, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASTELLO-DI-ROSTINO", - "center": "POINT (1173213.5094477871898562 1743929.7849798977840692)", - "surface": 12480000, - "canton": null, - "numero_insee": "2B079" - } - }, - { - "pk": 20792, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASTIFAO", - "center": "POINT (1157953.0768844503909349 1748701.4870644730981439)", - "surface": 42380000, - "canton": null, - "numero_insee": "2B080" - } - }, - { - "pk": 27061, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASTIGLIONE", - "center": "POINT (1158667.3025033541489393 1735792.0723145005758852)", - "surface": 23210000, - "canton": null, - "numero_insee": "2B081" - } - }, - { - "pk": 13313, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASTINETA", - "center": "POINT (1171554.7476956183090806 1739009.2165492789354175)", - "surface": 9430000, - "canton": null, - "numero_insee": "2B082" - } - }, - { - "pk": 18612, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CASTIRLA", - "center": "POINT (1160108.5151086095720530 1731299.2406478715129197)", - "surface": 24530000, - "canton": null, - "numero_insee": "2B083" - } - }, - { - "pk": 29575, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CATERI", - "center": "POINT (1139302.1004603076726198 1751941.7471290496177971)", - "surface": 3230000, - "canton": null, - "numero_insee": "2B084" - } - }, - { - "pk": 22802, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CENTURI", - "center": "POINT (1173726.3258706703782082 1799400.5979671671520919)", - "surface": 8650000, - "canton": null, - "numero_insee": "2B086" - } - }, - { - "pk": 9324, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CERVIONE", - "center": "POINT (1192569.5336159747093916 1728881.7065029882360250)", - "surface": 11490000, - "canton": null, - "numero_insee": "2B087" - } - }, - { - "pk": 6530, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CHIATRA", - "center": "POINT (1190701.7604137226007879 1724960.4474805761128664)", - "surface": 8270000, - "canton": null, - "numero_insee": "2B088" - } - }, - { - "pk": 23170, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CORBARA", - "center": "POINT (1139254.6406532339751720 1757347.8457950560841709)", - "surface": 10230000, - "canton": null, - "numero_insee": "2B093" - } - }, - { - "pk": 16950, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CORSCIA", - "center": "POINT (1154305.3823580271564424 1730847.7399487984366715)", - "surface": 59100000, - "canton": null, - "numero_insee": "2B095" - } - }, - { - "pk": 21975, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CORTE", - "center": "POINT (1157503.9806143757887185 1720062.5865705306641757)", - "surface": 149430000, - "canton": null, - "numero_insee": "2B096" - } - }, - { - "pk": 22431, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "COSTA", - "center": "POINT (1147699.2922412762418389 1753417.1812253997195512)", - "surface": 1080000, - "canton": null, - "numero_insee": "2B097" - } - }, - { - "pk": 31662, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CROCE", - "center": "POINT (1178677.8457298537250608 1737369.8486120866145939)", - "surface": 6460000, - "canton": null, - "numero_insee": "2B101" - } - }, - { - "pk": 13162, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CROCICCHIA", - "center": "POINT (1177613.2313925195485353 1744569.2496331096626818)", - "surface": 4250000, - "canton": null, - "numero_insee": "2B102" - } - }, - { - "pk": 18356, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ERBAJOLO", - "center": "POINT (1172528.3573629683814943 1719393.7406477483455092)", - "surface": 15640000, - "canton": null, - "numero_insee": "2B105" - } - }, - { - "pk": 9977, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ERONE", - "center": "POINT (1171606.7313285304699093 1733102.4650103421881795)", - "surface": 3940000, - "canton": null, - "numero_insee": "2B106" - } - }, - { - "pk": 3658, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ERSA", - "center": "POINT (1175007.4762097718194127 1801714.5859411126002669)", - "surface": 20380000, - "canton": null, - "numero_insee": "2B107" - } - }, - { - "pk": 25602, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "FAVALELLO", - "center": "POINT (1170992.2658900907263160 1723285.0290658818557858)", - "surface": 5560000, - "canton": null, - "numero_insee": "2B110" - } - }, - { - "pk": 14212, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "FELCE", - "center": "POINT (1184841.2720485632307827 1731016.3019217923283577)", - "surface": 4710000, - "canton": null, - "numero_insee": "2B111" - } - }, - { - "pk": 4496, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "FELICETO", - "center": "POINT (1143022.9900336079299450 1750072.1191915615927428)", - "surface": 15310000, - "canton": null, - "numero_insee": "2B112" - } - }, - { - "pk": 14338, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "FICAJA", - "center": "POINT (1180365.6827968047000468 1738986.6659434009343386)", - "surface": 5110000, - "canton": null, - "numero_insee": "2B113" - } - }, - { - "pk": 16638, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "FOCICCHIA", - "center": "POINT (1174932.0134950214996934 1719314.7723180397879332)", - "surface": 7270000, - "canton": null, - "numero_insee": "2B116" - } - }, - { - "pk": 5978, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "FURIANI", - "center": "POINT (1181138.4252501877490431 1764924.8433357286266983)", - "surface": 18980000, - "canton": null, - "numero_insee": "2B120" - } - }, - { - "pk": 16996, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "GALERIA", - "center": "POINT (1125252.8264147860463709 1732795.4080138015560806)", - "surface": 136510000, - "canton": null, - "numero_insee": "2B121" - } - }, - { - "pk": 28343, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "GAVIGNANO", - "center": "POINT (1170559.7726522274315357 1738299.6062742059584707)", - "surface": 10840000, - "canton": null, - "numero_insee": "2B122" - } - }, - { - "pk": 16027, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "GHISONACCIA", - "center": "POINT (1187740.6403311726171523 1697400.2374081560410559)", - "surface": 76290000, - "canton": null, - "numero_insee": "2B123" - } - }, - { - "pk": 15507, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "GHISONI", - "center": "POINT (1169686.0747641939669847 1701046.0384371408727020)", - "surface": 125990000, - "canton": null, - "numero_insee": "2B124" - } - }, - { - "pk": 6754, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "GIOCATOJO", - "center": "POINT (1177442.0942134552169591 1741263.7252260392997414)", - "surface": 2470000, - "canton": null, - "numero_insee": "2B125" - } - }, - { - "pk": 21856, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "GIUNCAGGIO", - "center": "POINT (1182993.2905052790883929 1713478.4555138484574854)", - "surface": 16180000, - "canton": null, - "numero_insee": "2B126" - } - }, - { - "pk": 31922, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "L'ILE-ROUSSE", - "center": "POINT (1141741.6359420814551413 1759171.8489378970116377)", - "surface": 2610000, - "canton": null, - "numero_insee": "2B134" - } - }, - { - "pk": 16699, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ISOLACCIO-DI-FIUMORBO", - "center": "POINT (1174962.6418681126087904 1693082.4706194601021707)", - "surface": 41420000, - "canton": null, - "numero_insee": "2B135" - } - }, - { - "pk": 30626, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LAMA", - "center": "POINT (1161300.5866727968677878 1755138.6652730531059206)", - "surface": 20000000, - "canton": null, - "numero_insee": "2B136" - } - }, - { - "pk": 15768, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LANO", - "center": "POINT (1169001.9890953749418259 1733279.7890019326005131)", - "surface": 8260000, - "canton": null, - "numero_insee": "2B137" - } - }, - { - "pk": 28002, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LAVATOGGIO", - "center": "POINT (1136396.1839314741082489 1752216.6021429484244436)", - "surface": 6830000, - "canton": null, - "numero_insee": "2B138" - } - }, - { - "pk": 18983, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LENTO", - "center": "POINT (1169753.2529794308356941 1750307.0999057358130813)", - "surface": 23580000, - "canton": null, - "numero_insee": "2B140" - } - }, - { - "pk": 17787, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LINGUIZZETTA", - "center": "POINT (1193171.5998625312931836 1717372.8401625850237906)", - "surface": 65120000, - "canton": null, - "numero_insee": "2B143" - } - }, - { - "pk": 25603, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LORETO-DI-CASINCA", - "center": "POINT (1183613.0080793355591595 1745423.0665673485491425)", - "surface": 8090000, - "canton": null, - "numero_insee": "2B145" - } - }, - { - "pk": 17508, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LOZZI", - "center": "POINT (1148108.8241396113298833 1729591.8277631448581815)", - "surface": 30740000, - "canton": null, - "numero_insee": "2B147" - } - }, - { - "pk": 15769, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LUCCIANA", - "center": "POINT (1186949.8280513505451381 1753061.6904932691249996)", - "surface": 29320000, - "canton": null, - "numero_insee": "2B148" - } - }, - { - "pk": 3287, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LUGO-DI-NAZZA", - "center": "POINT (1179205.1147764553315938 1700228.6888548610731959)", - "surface": 25430000, - "canton": null, - "numero_insee": "2B149" - } - }, - { - "pk": 5043, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LUMIO", - "center": "POINT (1133388.3990541927050799 1752690.8106531272642314)", - "surface": 19560000, - "canton": null, - "numero_insee": "2B150" - } - }, - { - "pk": 17708, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LURI", - "center": "POINT (1178200.8321337709203362 1791530.6858958546072245)", - "surface": 27680000, - "canton": null, - "numero_insee": "2B152" - } - }, - { - "pk": 17851, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MANSO", - "center": "POINT (1134794.4434446403756738 1729374.8183340667746961)", - "surface": 121250000, - "canton": null, - "numero_insee": "2B153" - } - }, - { - "pk": 23001, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MATRA", - "center": "POINT (1182402.7715920573100448 1723685.8513294677250087)", - "surface": 6570000, - "canton": null, - "numero_insee": "2B155" - } - }, - { - "pk": 3153, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MAUSOLEO", - "center": "POINT (1145577.7004118966870010 1744187.4028112604282796)", - "surface": 19460000, - "canton": null, - "numero_insee": "2B156" - } - }, - { - "pk": 11252, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MAZZOLA", - "center": "POINT (1177379.3753440296277404 1725644.0769109888933599)", - "surface": 6580000, - "canton": null, - "numero_insee": "2B157" - } - }, - { - "pk": 11890, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MOITA", - "center": "POINT (1184304.9636585884727538 1723702.6063315621577203)", - "surface": 5690000, - "canton": null, - "numero_insee": "2B161" - } - }, - { - "pk": 15508, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MOLTIFAO", - "center": "POINT (1158804.1573504870757461 1743002.0497079975903034)", - "surface": 55770000, - "canton": null, - "numero_insee": "2B162" - } - }, - { - "pk": 25236, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MONACIA-D'OREZZA", - "center": "POINT (1182906.4607860881369561 1734703.7901853916700929)", - "surface": 4660000, - "canton": null, - "numero_insee": "2B164" - } - }, - { - "pk": 31629, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MONCALE", - "center": "POINT (1133564.0582565455697477 1744081.9407315789721906)", - "surface": 7230000, - "canton": null, - "numero_insee": "2B165" - } - }, - { - "pk": 18690, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MONTE", - "center": "POINT (1181605.4404343827627599 1746006.1111338729970157)", - "surface": 14810000, - "canton": null, - "numero_insee": "2B166" - } - }, - { - "pk": 6045, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MONTEGROSSO", - "center": "POINT (1136225.8316945345140994 1748810.9954757788218558)", - "surface": 22810000, - "canton": null, - "numero_insee": "2B167" - } - }, - { - "pk": 4710, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MONTICELLO", - "center": "POINT (1144153.1316520073451102 1758191.8222494130022824)", - "surface": 10710000, - "canton": null, - "numero_insee": "2B168" - } - }, - { - "pk": 17273, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MOROSAGLIA", - "center": "POINT (1169935.3005341012030840 1740997.4028628047090024)", - "surface": 24540000, - "canton": null, - "numero_insee": "2B169" - } - }, - { - "pk": 18899, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MORSIGLIA", - "center": "POINT (1174757.4013538712169975 1796005.6721510160714388)", - "surface": 13560000, - "canton": null, - "numero_insee": "2B170" - } - }, - { - "pk": 3286, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MURACCIOLE", - "center": "POINT (1167308.5345135743264109 1709535.6928270161151886)", - "surface": 14240000, - "canton": null, - "numero_insee": "2B171" - } - }, - { - "pk": 19800, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MURATO", - "center": "POINT (1174620.0295580197125673 1754755.2631005796138197)", - "surface": 20660000, - "canton": null, - "numero_insee": "2B172" - } - }, - { - "pk": 11824, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "MURO", - "center": "POINT (1141225.3460447746329010 1749555.7295934841968119)", - "surface": 7990000, - "canton": null, - "numero_insee": "2B173" - } - }, - { - "pk": 11793, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "NESSA", - "center": "POINT (1144323.5835036677308381 1750183.6617319067008793)", - "surface": 5870000, - "canton": null, - "numero_insee": "2B175" - } - }, - { - "pk": 30550, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "NOCARIO", - "center": "POINT (1178190.4970946758985519 1735863.7243042504414916)", - "surface": 3140000, - "canton": null, - "numero_insee": "2B176" - } - }, - { - "pk": 4276, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "NOCETA", - "center": "POINT (1168575.6977080891374499 1713451.6716026687063277)", - "surface": 18690000, - "canton": null, - "numero_insee": "2B177" - } - }, - { - "pk": 34039, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "NONZA", - "center": "POINT (1174702.6427659224718809 1779485.6315173264592886)", - "surface": 8500000, - "canton": null, - "numero_insee": "2B178" - } - }, - { - "pk": 31666, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "NOVALE", - "center": "POINT (1184181.9186371983960271 1726304.7218720137607306)", - "surface": 4890000, - "canton": null, - "numero_insee": "2B179" - } - }, - { - "pk": 19633, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "NOVELLA", - "center": "POINT (1155982.2762234150432050 1756493.5924673629924655)", - "surface": 30180000, - "canton": null, - "numero_insee": "2B180" - } - }, - { - "pk": 16759, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OCCHIATANA", - "center": "POINT (1148295.5730485608801246 1753923.0234936838969588)", - "surface": 12640000, - "canton": null, - "numero_insee": "2B182" - } - }, - { - "pk": 27355, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OGLIASTRO", - "center": "POINT (1174368.8104401784949005 1783287.2134561038110405)", - "surface": 9550000, - "canton": null, - "numero_insee": "2B183" - } - }, - { - "pk": 10589, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OLCANI", - "center": "POINT (1177186.0288819381967187 1781710.1208731825463474)", - "surface": 14380000, - "canton": null, - "numero_insee": "2B184" - } - }, - { - "pk": 20473, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OLETTA", - "center": "POINT (1174446.7591894981451333 1763063.7463084706105292)", - "surface": 26600000, - "canton": null, - "numero_insee": "2B185" - } - }, - { - "pk": 3891, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OLMETA-DI-TUDA", - "center": "POINT (1177276.3589502666145563 1760085.0496747377328575)", - "surface": 17460000, - "canton": null, - "numero_insee": "2B188" - } - }, - { - "pk": 18443, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OLMI-CAPPELLA", - "center": "POINT (1149855.3231563400477171 1747328.7406872347928584)", - "surface": 51330000, - "canton": null, - "numero_insee": "2B190" - } - }, - { - "pk": 27298, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OLMO", - "center": "POINT (1182387.8306390915531665 1748115.5540954149328172)", - "surface": 4490000, - "canton": null, - "numero_insee": "2B192" - } - }, - { - "pk": 3400, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "OMESSA", - "center": "POINT (1165497.0973086585290730 1733349.0771446619182825)", - "surface": 24520000, - "canton": null, - "numero_insee": "2B193" - } - }, - { - "pk": 12526, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ORTALE", - "center": "POINT (1186077.0509544927626848 1727122.4009523980785161)", - "surface": 4200000, - "canton": null, - "numero_insee": "2B194" - } - }, - { - "pk": 11380, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ORTIPORIO", - "center": "POINT (1177230.4063659741077572 1742563.4448351121973246)", - "surface": 5000000, - "canton": null, - "numero_insee": "2B195" - } - }, - { - "pk": 30694, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PALASCA", - "center": "POINT (1151947.8474413440562785 1759862.2285391192417592)", - "surface": 50060000, - "canton": null, - "numero_insee": "2B199" - } - }, - { - "pk": 29629, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PARATA", - "center": "POINT (1184220.2979705217294395 1733313.6500534429214895)", - "surface": 2810000, - "canton": null, - "numero_insee": "2B202" - } - }, - { - "pk": 3699, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PATRIMONIO", - "center": "POINT (1176583.1142436019144952 1770591.5601427662186325)", - "surface": 17490000, - "canton": null, - "numero_insee": "2B205" - } - }, - { - "pk": 28085, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PENTA-ACQUATELLA", - "center": "POINT (1179323.9838200844824314 1743583.0980022489093244)", - "surface": 3060000, - "canton": null, - "numero_insee": "2B206" - } - }, - { - "pk": 4621, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PENTA-DI-CASINCA", - "center": "POINT (1189636.6047671048436314 1743573.8336576013825834)", - "surface": 18580000, - "canton": null, - "numero_insee": "2B207" - } - }, - { - "pk": 34191, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PERELLI", - "center": "POINT (1182271.7940287468954921 1727189.0031297435052693)", - "surface": 6230000, - "canton": null, - "numero_insee": "2B208" - } - }, - { - "pk": 35109, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PERO-CASEVECCHIE", - "center": "POINT (1187373.6830911943688989 1739048.4035547447856516)", - "surface": 4620000, - "canton": null, - "numero_insee": "2B210" - } - }, - { - "pk": 26872, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIANELLO", - "center": "POINT (1179787.4298927797935903 1725064.5418713581748307)", - "surface": 17000000, - "canton": null, - "numero_insee": "2B213" - } - }, - { - "pk": 3028, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIANO", - "center": "POINT (1181646.8866129848174751 1741300.7554534536320716)", - "surface": 3390000, - "canton": null, - "numero_insee": "2B214" - } - }, - { - "pk": 6976, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIAZZALI", - "center": "POINT (1183567.1174541213549674 1727901.2726582847535610)", - "surface": 790000, - "canton": null, - "numero_insee": "2B216" - } - }, - { - "pk": 6182, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIAZZOLE", - "center": "POINT (1182893.2326272823847830 1736205.5082728464622051)", - "surface": 3900000, - "canton": null, - "numero_insee": "2B217" - } - }, - { - "pk": 21069, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIEDICORTE-DI-GAGGIO", - "center": "POINT (1177867.9795877020806074 1715636.0468056953977793)", - "surface": 27390000, - "canton": null, - "numero_insee": "2B218" - } - }, - { - "pk": 36884, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIEDICROCE", - "center": "POINT (1179802.0270821962039918 1734776.5701041410211474)", - "surface": 3310000, - "canton": null, - "numero_insee": "2B219" - } - }, - { - "pk": 12463, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIEDIGRIGGIO", - "center": "POINT (1163833.6264411150477827 1740342.9913707559462637)", - "surface": 10520000, - "canton": null, - "numero_insee": "2B220" - } - }, - { - "pk": 6529, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIEDIPARTINO", - "center": "POINT (1178127.4068002211861312 1731658.0282153217121959)", - "surface": 3320000, - "canton": null, - "numero_insee": "2B221" - } - }, - { - "pk": 34422, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIE-D'OREZZA", - "center": "POINT (1177510.8515025973320007 1733454.8040952053852379)", - "surface": 5730000, - "canton": null, - "numero_insee": "2B222" - } - }, - { - "pk": 20208, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIETRACORBARA", - "center": "POINT (1180949.6825987673364580 1786348.7412656820379198)", - "surface": 26250000, - "canton": null, - "numero_insee": "2B224" - } - }, - { - "pk": 36882, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIETRA-DI-VERDE", - "center": "POINT (1186995.7295481641776860 1725128.0352752001490444)", - "surface": 8720000, - "canton": null, - "numero_insee": "2B225" - } - }, - { - "pk": 10439, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIETRASERENA", - "center": "POINT (1180249.6035379401873797 1718059.9828204531222582)", - "surface": 6790000, - "canton": null, - "numero_insee": "2B226" - } - }, - { - "pk": 37471, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIETRICAGGIO", - "center": "POINT (1181056.3053651200607419 1728780.2631439464166760)", - "surface": 5320000, - "canton": null, - "numero_insee": "2B227" - } - }, - { - "pk": 3012, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIETROSO", - "center": "POINT (1176854.8352803697343916 1705614.7256188420578837)", - "surface": 25950000, - "canton": null, - "numero_insee": "2B229" - } - }, - { - "pk": 35873, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIEVE", - "center": "POINT (1171506.8300761668942869 1755829.1869153128936887)", - "surface": 19710000, - "canton": null, - "numero_insee": "2B230" - } - }, - { - "pk": 8673, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIGNA", - "center": "POINT (1139372.3314032233320177 1755346.4683446898125112)", - "surface": 2210000, - "canton": null, - "numero_insee": "2B231" - } - }, - { - "pk": 4162, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PINO", - "center": "POINT (1173486.8229803417343646 1792490.3508707736618817)", - "surface": 7280000, - "canton": null, - "numero_insee": "2B233" - } - }, - { - "pk": 12734, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIOBETTA", - "center": "POINT (1180245.6871849214658141 1729874.4742448725737631)", - "surface": 5030000, - "canton": null, - "numero_insee": "2B234" - } - }, - { - "pk": 15574, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PIOGGIOLA", - "center": "POINT (1146250.3576839710585773 1747397.1932621328160167)", - "surface": 18690000, - "canton": null, - "numero_insee": "2B235" - } - }, - { - "pk": 16024, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "POGGIO-DI-VENACO", - "center": "POINT (1167710.4783641095273197 1720753.0759027688764036)", - "surface": 13360000, - "canton": null, - "numero_insee": "2B238" - } - }, - { - "pk": 14292, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "POGGIO-D'OLETTA", - "center": "POINT (1176332.1474212352186441 1764982.6318035512231290)", - "surface": 16070000, - "canton": null, - "numero_insee": "2B239" - } - }, - { - "pk": 4042, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "POGGIO-MARINACCIO", - "center": "POINT (1177650.2562197740189731 1740364.4611209726426750)", - "surface": 2870000, - "canton": null, - "numero_insee": "2B241" - } - }, - { - "pk": 16876, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "POGGIO-MEZZANA", - "center": "POINT (1191489.8426752928644419 1737783.0934098020661622)", - "surface": 8930000, - "canton": null, - "numero_insee": "2B242" - } - }, - { - "pk": 3749, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "POLVEROSO", - "center": "POINT (1179084.4745516963303089 1736672.5741782714612782)", - "surface": 1950000, - "canton": null, - "numero_insee": "2B243" - } - }, - { - "pk": 30403, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "POPOLASCA", - "center": "POINT (1160140.8494025343097746 1739008.9323066738434136)", - "surface": 10460000, - "canton": null, - "numero_insee": "2B244" - } - }, - { - "pk": 9980, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PORRI", - "center": "POINT (1185340.5241776015609503 1742534.7568299351260066)", - "surface": 4540000, - "canton": null, - "numero_insee": "2B245" - } - }, - { - "pk": 26600, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "LA PORTA", - "center": "POINT (1178661.9770479379221797 1739171.9062930401414633)", - "surface": 5120000, - "canton": null, - "numero_insee": "2B246" - } - }, - { - "pk": 35107, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PRATO-DI-GIOVELLINA", - "center": "POINT (1163160.1232304340228438 1737233.2877006181515753)", - "surface": 12340000, - "canton": null, - "numero_insee": "2B248" - } - }, - { - "pk": 35337, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PRUNELLI-DI-CASACCONI", - "center": "POINT (1181678.2165410665329546 1749110.5168732348829508)", - "surface": 6020000, - "canton": null, - "numero_insee": "2B250" - } - }, - { - "pk": 36066, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PRUNELLI-DI-FIUMORBO", - "center": "POINT (1183574.5107824457809329 1692958.0344031392596662)", - "surface": 37760000, - "canton": null, - "numero_insee": "2B251" - } - }, - { - "pk": 6769, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "PRUNO", - "center": "POINT (1185965.0258930290583521 1739836.9674445274285972)", - "surface": 6470000, - "canton": null, - "numero_insee": "2B252" - } - }, - { - "pk": 31667, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "QUERCITELLO", - "center": "POINT (1177357.8473291499540210 1739460.7888283089268953)", - "surface": 2980000, - "canton": null, - "numero_insee": "2B255" - } - }, - { - "pk": 7208, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "RAPAGGIO", - "center": "POINT (1181211.5668336977250874 1733887.8824714857619256)", - "surface": 2560000, - "canton": null, - "numero_insee": "2B256" - } - }, - { - "pk": 7229, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "RAPALE", - "center": "POINT (1171961.5711381467990577 1761039.4609185494482517)", - "surface": 10030000, - "canton": null, - "numero_insee": "2B257" - } - }, - { - "pk": 33854, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "RIVENTOSA", - "center": "POINT (1167530.5034823701716959 1718448.6562441275455058)", - "surface": 5880000, - "canton": null, - "numero_insee": "2B260" - } - }, - { - "pk": 17678, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ROGLIANO", - "center": "POINT (1178622.8936902161221951 1800444.9036082644015551)", - "surface": 26840000, - "canton": null, - "numero_insee": "2B261" - } - }, - { - "pk": 34308, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ROSPIGLIANI", - "center": "POINT (1170985.5294405468739569 1712671.8829676921013743)", - "surface": 9930000, - "canton": null, - "numero_insee": "2B263" - } - }, - { - "pk": 20231, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "RUSIO", - "center": "POINT (1171128.1836916077882051 1730595.1915676775388420)", - "surface": 8630000, - "canton": null, - "numero_insee": "2B264" - } - }, - { - "pk": 7944, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "RUTALI", - "center": "POINT (1179006.4912735354155302 1756896.4260003257077187)", - "surface": 17480000, - "canton": null, - "numero_insee": "2B265" - } - }, - { - "pk": 16369, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SALICETO", - "center": "POINT (1170871.5689293490722775 1737000.7632556199096143)", - "surface": 12490000, - "canton": null, - "numero_insee": "2B267" - } - }, - { - "pk": 11188, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SCATA", - "center": "POINT (1182465.4370208962354809 1739305.5263961991295218)", - "surface": 2800000, - "canton": null, - "numero_insee": "2B273" - } - }, - { - "pk": 12875, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SCOLCA", - "center": "POINT (1177948.4483557930216193 1751981.1824392746202648)", - "surface": 6890000, - "canton": null, - "numero_insee": "2B274" - } - }, - { - "pk": 35583, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SERMANO", - "center": "POINT (1172166.3370863078162074 1726399.1732916338369250)", - "surface": 7680000, - "canton": null, - "numero_insee": "2B275" - } - }, - { - "pk": 19587, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SERRA-DI-FIUMORBO", - "center": "POINT (1180808.2418346256017685 1688728.4075196944177151)", - "surface": 43720000, - "canton": null, - "numero_insee": "2B277" - } - }, - { - "pk": 18011, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SILVARECCIO", - "center": "POINT (1183235.4834361583925784 1742816.5765905475709587)", - "surface": 4830000, - "canton": null, - "numero_insee": "2B280" - } - }, - { - "pk": 13753, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SISCO", - "center": "POINT (1181579.4561635702848434 1783050.3696129792369902)", - "surface": 24910000, - "canton": null, - "numero_insee": "2B281" - } - }, - { - "pk": 21878, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SOLARO", - "center": "POINT (1180899.0302436058409512 1678416.2340425697620958)", - "surface": 94370000, - "canton": null, - "numero_insee": "2B283" - } - }, - { - "pk": 21851, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SORBO-OCAGNANO", - "center": "POINT (1188809.2222177453804761 1746570.1914222154300660)", - "surface": 10780000, - "canton": null, - "numero_insee": "2B286" - } - }, - { - "pk": 31969, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SORIO", - "center": "POINT (1167706.0590736155863851 1755395.2549959889147431)", - "surface": 15520000, - "canton": null, - "numero_insee": "2B287" - } - }, - { - "pk": 16286, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SOVERIA", - "center": "POINT (1161828.0722606040071696 1729311.9100165669806302)", - "surface": 12170000, - "canton": null, - "numero_insee": "2B289" - } - }, - { - "pk": 21253, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SPELONCATO", - "center": "POINT (1145300.0959718003869057 1752995.6235277641098946)", - "surface": 17620000, - "canton": null, - "numero_insee": "2B290" - } - }, - { - "pk": 7086, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "STAZZONA", - "center": "POINT (1180507.2375777447596192 1734282.1688982241321355)", - "surface": 1350000, - "canton": null, - "numero_insee": "2B291" - } - }, - { - "pk": 23919, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANT'ANDREA-DI-BOZIO", - "center": "POINT (1174005.4189942902885377 1722210.1919578046072274)", - "surface": 24100000, - "canton": null, - "numero_insee": "2B292" - } - }, - { - "pk": 24664, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANT'ANDREA-DI-COTONE", - "center": "POINT (1189073.4473756863735616 1727949.7868458586744964)", - "surface": 8760000, - "canton": null, - "numero_insee": "2B293" - } - }, - { - "pk": 7922, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANT'ANTONINO", - "center": "POINT (1140187.2976942448876798 1753751.6925422002095729)", - "surface": 4150000, - "canton": null, - "numero_insee": "2B296" - } - }, - { - "pk": 6408, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-DAMIANO", - "center": "POINT (1183381.4581703313160688 1737611.5199075953569263)", - "surface": 5860000, - "canton": null, - "numero_insee": "2B297" - } - }, - { - "pk": 19815, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAINT-FLORENT", - "center": "POINT (1169006.3221129076555371 1766920.5415422220248729)", - "surface": 18310000, - "canton": null, - "numero_insee": "2B298" - } - }, - { - "pk": 31664, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-GAVINO-D'AMPUGNANI", - "center": "POINT (1184170.9074918120168149 1738920.0620315829291940)", - "surface": 3190000, - "canton": null, - "numero_insee": "2B299" - } - }, - { - "pk": 20547, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-GAVINO-DI-TENDA", - "center": "POINT (1159429.0051420270465314 1763031.7240162715315819)", - "surface": 50560000, - "canton": null, - "numero_insee": "2B301" - } - }, - { - "pk": 16104, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-GIOVANNI-DI-MORIANI", - "center": "POINT (1187916.6020620102062821 1734247.3195313927717507)", - "surface": 10200000, - "canton": null, - "numero_insee": "2B302" - } - }, - { - "pk": 22172, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-GIULIANO", - "center": "POINT (1194002.9185847637709230 1725289.9155177925713360)", - "surface": 23880000, - "canton": null, - "numero_insee": "2B303" - } - }, - { - "pk": 24279, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-LORENZO", - "center": "POINT (1173293.7000703937374055 1734819.3921528432983905)", - "surface": 10260000, - "canton": null, - "numero_insee": "2B304" - } - }, - { - "pk": 36732, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-MARTINO-DI-LOTA", - "center": "POINT (1181560.4913234398700297 1773839.2318354751914740)", - "surface": 9600000, - "canton": null, - "numero_insee": "2B305" - } - }, - { - "pk": 19947, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTA-LUCIA-DI-MERCURIO", - "center": "POINT (1168361.9629666935652494 1726365.6979059369768947)", - "surface": 23840000, - "canton": null, - "numero_insee": "2B306" - } - }, - { - "pk": 4347, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTA-LUCIA-DI-MORIANI", - "center": "POINT (1191606.7246240891981870 1735881.8005755492486060)", - "surface": 6150000, - "canton": null, - "numero_insee": "2B307" - } - }, - { - "pk": 16787, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTA-MARIA-DI-LOTA", - "center": "POINT (1180841.1876308075152338 1775935.4042345848865807)", - "surface": 13330000, - "canton": null, - "numero_insee": "2B309" - } - }, - { - "pk": 33983, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTA-MARIA-POGGIO", - "center": "POINT (1191740.3739461828954518 1732078.3246968914754689)", - "surface": 10240000, - "canton": null, - "numero_insee": "2B311" - } - }, - { - "pk": 5175, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-NICOLAO", - "center": "POINT (1191622.6094780866988003 1734079.7373669485095888)", - "surface": 7720000, - "canton": null, - "numero_insee": "2B313" - } - }, - { - "pk": 18900, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTO-PIETRO-DI-TENDA", - "center": "POINT (1163511.5993161401711404 1765570.6344418884254992)", - "surface": 126360000, - "canton": null, - "numero_insee": "2B314" - } - }, - { - "pk": 22196, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTO-PIETRO-DI-VENACO", - "center": "POINT (1164531.4364693465176970 1717921.6603079591877759)", - "surface": 7910000, - "canton": null, - "numero_insee": "2B315" - } - }, - { - "pk": 7668, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTA-REPARATA-DI-BALAGNA", - "center": "POINT (1141871.6374128004536033 1755768.8944995328783989)", - "surface": 10150000, - "canton": null, - "numero_insee": "2B316" - } - }, - { - "pk": 6648, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SANTA-REPARATA-DI-MORIANI", - "center": "POINT (1187337.9685841451864690 1731739.1578328167088330)", - "surface": 9000000, - "canton": null, - "numero_insee": "2B317" - } - }, - { - "pk": 20730, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "TAGLIO-ISOLACCIO", - "center": "POINT (1189956.3599427845329046 1741373.9710901763755828)", - "surface": 11610000, - "canton": null, - "numero_insee": "2B318" - } - }, - { - "pk": 18376, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "TALLONE", - "center": "POINT (1189903.0665370919741690 1713339.0814472865313292)", - "surface": 70080000, - "canton": null, - "numero_insee": "2B320" - } - }, - { - "pk": 30631, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "TARRANO", - "center": "POINT (1183042.7320531923323870 1730599.9677888001315296)", - "surface": 3890000, - "canton": null, - "numero_insee": "2B321" - } - }, - { - "pk": 31542, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "TOMINO", - "center": "POINT (1180651.5538955829106271 1797459.2437903033569455)", - "surface": 5880000, - "canton": null, - "numero_insee": "2B327" - } - }, - { - "pk": 14791, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "TOX", - "center": "POINT (1187442.9432462139520794 1719825.4431480288039893)", - "surface": 14680000, - "canton": null, - "numero_insee": "2B328" - } - }, - { - "pk": 18005, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "URTACA", - "center": "POINT (1159460.6979430140927434 1759427.6712132943794131)", - "surface": 31220000, - "canton": null, - "numero_insee": "2B332" - } - }, - { - "pk": 6295, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VALLECALLE", - "center": "POINT (1175087.9817447112873197 1758463.8509390472900122)", - "surface": 6950000, - "canton": null, - "numero_insee": "2B333" - } - }, - { - "pk": 18614, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VALLE-D'ALESANI", - "center": "POINT (1185860.0618031085468829 1729022.8233558782376349)", - "surface": 9700000, - "canton": null, - "numero_insee": "2B334" - } - }, - { - "pk": 10739, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VALLE-DI-CAMPOLORO", - "center": "POINT (1192355.1832745964638889 1730481.7815055479295552)", - "surface": 5640000, - "canton": null, - "numero_insee": "2B335" - } - }, - { - "pk": 3403, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VALLE-DI-ROSTINO", - "center": "POINT (1170523.6504732500761747 1742404.2852961833123118)", - "surface": 15590000, - "canton": null, - "numero_insee": "2B337" - } - }, - { - "pk": 29393, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VALLE-D'OREZZA", - "center": "POINT (1182824.8652780186384916 1732600.5003213505260646)", - "surface": 4020000, - "canton": null, - "numero_insee": "2B338" - } - }, - { - "pk": 36040, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VALLICA", - "center": "POINT (1152958.8422593255527318 1747356.0116469620261341)", - "surface": 12150000, - "canton": null, - "numero_insee": "2B339" - } - }, - { - "pk": 18013, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VELONE-ORNETO", - "center": "POINT (1186597.4688695748336613 1736238.1427162894979119)", - "surface": 12230000, - "canton": null, - "numero_insee": "2B340" - } - }, - { - "pk": 3907, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VENACO", - "center": "POINT (1162461.5793055486865342 1714198.8872597734443843)", - "surface": 53620000, - "canton": null, - "numero_insee": "2B341" - } - }, - { - "pk": 19437, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VENTISERI", - "center": "POINT (1183839.9902129722759128 1685551.0801440624054521)", - "surface": 47040000, - "canton": null, - "numero_insee": "2B342" - } - }, - { - "pk": 22512, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VENZOLASCA", - "center": "POINT (1188990.9198129521682858 1748674.3440916812978685)", - "surface": 16550000, - "canton": null, - "numero_insee": "2B343" - } - }, - { - "pk": 13383, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VERDESE", - "center": "POINT (1180092.6723285510670394 1735880.4749499391764402)", - "surface": 990000, - "canton": null, - "numero_insee": "2B344" - } - }, - { - "pk": 18613, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VESCOVATO", - "center": "POINT (1187175.6405665313359350 1750160.1659308106172830)", - "surface": 17650000, - "canton": null, - "numero_insee": "2B346" - } - }, - { - "pk": 21572, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VEZZANI", - "center": "POINT (1175823.7077103059273213 1709009.8738017238210887)", - "surface": 46470000, - "canton": null, - "numero_insee": "2B347" - } - }, - { - "pk": 28535, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VIGNALE", - "center": "POINT (1180551.3952705161646008 1752004.1069486388005316)", - "surface": 10860000, - "canton": null, - "numero_insee": "2B350" - } - }, - { - "pk": 14924, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VILLE-DI-PARASO", - "center": "POINT (1146892.2317567667923868 1754110.9369245055131614)", - "surface": 9520000, - "canton": null, - "numero_insee": "2B352" - } - }, - { - "pk": 10244, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VILLE-DI-PIETRABUGNO", - "center": "POINT (1181376.1434076023288071 1772035.4542395935859531)", - "surface": 7580000, - "canton": null, - "numero_insee": "2B353" - } - }, - { - "pk": 21934, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VIVARIO", - "center": "POINT (1161721.3884538102429360 1707283.8292671323288232)", - "surface": 78590000, - "canton": null, - "numero_insee": "2B354" - } - }, - { - "pk": 33981, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "VOLPAJOLA", - "center": "POINT (1177867.7303761760704219 1749777.8056634345557541)", - "surface": 12960000, - "canton": null, - "numero_insee": "2B355" - } - }, - { - "pk": 4531, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ZILIA", - "center": "POINT (1140352.4519080054014921 1746344.1894682243000716)", - "surface": 14000000, - "canton": null, - "numero_insee": "2B361" - } - }, - { - "pk": 33899, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "ZUANI", - "center": "POINT (1178818.8935340261086822 1721351.4570693923160434)", - "surface": 5190000, - "canton": null, - "numero_insee": "2B364" - } - }, - { - "pk": 14795, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "SAN-GAVINO-DI-FIUMORBO", - "center": "POINT (1174005.5168608210515231 1688067.7772440693806857)", - "surface": 22550000, - "canton": null, - "numero_insee": "2B365" - } - }, - { - "pk": 21864, - "model": "ishtar_common.town", - "fields": { - "departement": 21, - "name": "CHISA", - "center": "POINT (1175955.3354314286261797 1682678.1433367340359837)", - "surface": 29590000, - "canton": null, - "numero_insee": "2B366" - } - }, - { - "pk": 11550, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AIGALIERS", - "center": "POINT (758301.0275153309339657 1898419.2671537678688765)", - "surface": 27880000, - "canton": null, - "numero_insee": "30001" - } - }, - { - "pk": 23318, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AIGREMONT", - "center": "POINT (743090.1627788629848510 1885976.5021790158934891)", - "surface": 12570000, - "canton": null, - "numero_insee": "30002" - } - }, - { - "pk": 18623, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AIGUES-MORTES", - "center": "POINT (749383.4634854795876890 1840479.4370986567810178)", - "surface": 57760000, - "canton": null, - "numero_insee": "30003" - } - }, - { - "pk": 35822, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AIGUES-VIVES", - "center": "POINT (749510.1437727648299187 1860903.3707517390139401)", - "surface": 12050000, - "canton": null, - "numero_insee": "30004" - } - }, - { - "pk": 16850, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AIGUEZE", - "center": "POINT (774080.9535259979311377 1926283.4464564791414887)", - "surface": 20040000, - "canton": null, - "numero_insee": "30005" - } - }, - { - "pk": 13561, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AIMARGUES", - "center": "POINT (750770.1286387596046552 1854006.3875239421613514)", - "surface": 26540000, - "canton": null, - "numero_insee": "30006" - } - }, - { - "pk": 16019, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ALES", - "center": "POINT (740232.6074605832109228 1904172.0197061044164002)", - "surface": 23260000, - "canton": null, - "numero_insee": "30007" - } - }, - { - "pk": 15780, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ALLEGRE-LES-FUMADES", - "center": "POINT (753276.0026456905761734 1912491.7505857003852725)", - "surface": 25150000, - "canton": null, - "numero_insee": "30008" - } - }, - { - "pk": 30876, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ALZON", - "center": "POINT (689227.5453063274035230 1886420.7940459214150906)", - "surface": 27790000, - "canton": null, - "numero_insee": "30009" - } - }, - { - "pk": 8358, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ANDUZE", - "center": "POINT (731395.0173709817463532 1895687.8510986566543579)", - "surface": 14610000, - "canton": null, - "numero_insee": "30010" - } - }, - { - "pk": 16180, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LES ANGLES", - "center": "POINT (794048.1835365134757012 1885709.7489813095889986)", - "surface": 16930000, - "canton": null, - "numero_insee": "30011" - } - }, - { - "pk": 8543, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ARAMON", - "center": "POINT (788683.6530930877197534 1880858.7008175740484148)", - "surface": 31230000, - "canton": null, - "numero_insee": "30012" - } - }, - { - "pk": 22955, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ARGILLIERS", - "center": "POINT (772996.8489723153179511 1889034.0537095966283232)", - "surface": 6710000, - "canton": null, - "numero_insee": "30013" - } - }, - { - "pk": 10109, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ARPAILLARGUES-ET-AUREILLAC", - "center": "POINT (762671.0008477423107252 1890748.0785468996036798)", - "surface": 13790000, - "canton": null, - "numero_insee": "30014" - } - }, - { - "pk": 16634, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ARPHY", - "center": "POINT (700274.4678415919188410 1894122.5751006235368550)", - "surface": 21010000, - "canton": null, - "numero_insee": "30015" - } - }, - { - "pk": 7433, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ARRE", - "center": "POINT (694947.7708425235468894 1884767.3347565729636699)", - "surface": 7220000, - "canton": null, - "numero_insee": "30016" - } - }, - { - "pk": 4811, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ARRIGAS", - "center": "POINT (691915.0579968469683081 1888245.4975970613304526)", - "surface": 20120000, - "canton": null, - "numero_insee": "30017" - } - }, - { - "pk": 34765, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ASPERES", - "center": "POINT (737030.0699928092071787 1868706.0805720165371895)", - "surface": 10040000, - "canton": null, - "numero_insee": "30018" - } - }, - { - "pk": 28299, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AUBAIS", - "center": "POINT (745792.6792727940483019 1862473.5467886510305107)", - "surface": 11890000, - "canton": null, - "numero_insee": "30019" - } - }, - { - "pk": 12644, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AUBORD", - "center": "POINT (759703.7200329983606935 1862992.3070728008169681)", - "surface": 9440000, - "canton": null, - "numero_insee": "30020" - } - }, - { - "pk": 16220, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AUBUSSARGUES", - "center": "POINT (759658.5726495669223368 1891823.6376689868047833)", - "surface": 8200000, - "canton": null, - "numero_insee": "30021" - } - }, - { - "pk": 18914, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AUJAC", - "center": "POINT (734109.8804716414306313 1929647.3405410549603403)", - "surface": 16290000, - "canton": null, - "numero_insee": "30022" - } - }, - { - "pk": 12193, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AUJARGUES", - "center": "POINT (744351.2368554665008560 1867166.5123406907077879)", - "surface": 6930000, - "canton": null, - "numero_insee": "30023" - } - }, - { - "pk": 12663, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AULAS", - "center": "POINT (700315.1523571240250021 1889317.6896586176007986)", - "surface": 2920000, - "canton": null, - "numero_insee": "30024" - } - }, - { - "pk": 15453, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AUMESSAS", - "center": "POINT (694397.2767964630620554 1890669.1210030007641762)", - "surface": 21310000, - "canton": null, - "numero_insee": "30025" - } - }, - { - "pk": 30176, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "AVEZE", - "center": "POINT (701337.3635881625814363 1886823.6147942743264139)", - "surface": 4130000, - "canton": null, - "numero_insee": "30026" - } - }, - { - "pk": 31785, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BAGARD", - "center": "POINT (736881.0439348348882049 1898036.9378916204441339)", - "surface": 14510000, - "canton": null, - "numero_insee": "30027" - } - }, - { - "pk": 23339, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BAGNOLS-SUR-CEZE", - "center": "POINT (783134.9181268716929480 1909342.4056422978173941)", - "surface": 31220000, - "canton": null, - "numero_insee": "30028" - } - }, - { - "pk": 16325, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BARJAC", - "center": "POINT (760573.5119002743158489 1925467.6586642677430063)", - "surface": 42950000, - "canton": null, - "numero_insee": "30029" - } - }, - { - "pk": 31227, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BARON", - "center": "POINT (755411.7149894675239921 1896792.9445260465145111)", - "surface": 10020000, - "canton": null, - "numero_insee": "30030" - } - }, - { - "pk": 13305, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA BASTIDE-D'ENGRAS", - "center": "POINT (771489.6722817232366651 1901434.7100728093646467)", - "surface": 9820000, - "canton": null, - "numero_insee": "30031" - } - }, - { - "pk": 16560, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BEAUCAIRE", - "center": "POINT (781896.0645716001745313 1866785.3467129494529217)", - "surface": 86430000, - "canton": null, - "numero_insee": "30032" - } - }, - { - "pk": 20950, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BEAUVOISIN", - "center": "POINT (760256.2080399121623486 1856890.2139194952324033)", - "surface": 28000000, - "canton": null, - "numero_insee": "30033" - } - }, - { - "pk": 37317, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BELLEGARDE", - "center": "POINT (774016.0221679850947112 1863414.5159008526243269)", - "surface": 44950000, - "canton": null, - "numero_insee": "30034" - } - }, - { - "pk": 8430, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BELVEZET", - "center": "POINT (761784.1237641877960414 1900851.5160977041814476)", - "surface": 22380000, - "canton": null, - "numero_insee": "30035" - } - }, - { - "pk": 23600, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BERNIS", - "center": "POINT (756882.0728579615242779 1865170.7410368921700865)", - "surface": 12880000, - "canton": null, - "numero_insee": "30036" - } - }, - { - "pk": 3088, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BESSEGES", - "center": "POINT (741477.5038537504151464 1922602.3682582834735513)", - "surface": 10230000, - "canton": null, - "numero_insee": "30037" - } - }, - { - "pk": 30518, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BEZ-ET-ESPARON", - "center": "POINT (696129.5106220957823098 1887079.8523282429669052)", - "surface": 8370000, - "canton": null, - "numero_insee": "30038" - } - }, - { - "pk": 24454, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BEZOUCE", - "center": "POINT (774099.3734492124058306 1877130.3887576712295413)", - "surface": 12490000, - "canton": null, - "numero_insee": "30039" - } - }, - { - "pk": 18151, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BLANDAS", - "center": "POINT (694082.4299680816475302 1880555.4077725317329168)", - "surface": 37440000, - "canton": null, - "numero_insee": "30040" - } - }, - { - "pk": 25579, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BLAUZAC", - "center": "POINT (763702.6999719123123214 1887152.9272778215818107)", - "surface": 15800000, - "canton": null, - "numero_insee": "30041" - } - }, - { - "pk": 36767, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BOISSET-ET-GAUJAC", - "center": "POINT (735601.8311921693384647 1895423.2475952154491097)", - "surface": 14450000, - "canton": null, - "numero_insee": "30042" - } - }, - { - "pk": 36974, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BOISSIERES", - "center": "POINT (752579.3141083035152406 1864933.9170111273415387)", - "surface": 3330000, - "canton": null, - "numero_insee": "30043" - } - }, - { - "pk": 23685, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BONNEVAUX", - "center": "POINT (735495.1128846398787573 1931561.1226829476654530)", - "surface": 8950000, - "canton": null, - "numero_insee": "30044" - } - }, - { - "pk": 11275, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BORDEZAC", - "center": "POINT (739651.0475612961454317 1925489.9417089375201613)", - "surface": 9460000, - "canton": null, - "numero_insee": "30045" - } - }, - { - "pk": 10048, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BOUCOIRAN-ET-NOZIERES", - "center": "POINT (747863.5800971505232155 1889721.1225861229468137)", - "surface": 14570000, - "canton": null, - "numero_insee": "30046" - } - }, - { - "pk": 13750, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BOUILLARGUES", - "center": "POINT (768963.9347700499929488 1868877.5813268029596657)", - "surface": 15940000, - "canton": null, - "numero_insee": "30047" - } - }, - { - "pk": 17357, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BOUQUET", - "center": "POINT (756520.0948667358607054 1907714.1792000338900834)", - "surface": 30200000, - "canton": null, - "numero_insee": "30048" - } - }, - { - "pk": 9714, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BOURDIC", - "center": "POINT (760490.0589121773373336 1888226.7831661559175700)", - "surface": 7290000, - "canton": null, - "numero_insee": "30049" - } - }, - { - "pk": 34616, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BRAGASSARGUES", - "center": "POINT (737325.0477805474074557 1881122.2575038860086352)", - "surface": 7670000, - "canton": null, - "numero_insee": "30050" - } - }, - { - "pk": 21634, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BRANOUX-LES-TAILLADES", - "center": "POINT (730926.4423286762321368 1915505.2565038001630455)", - "surface": 14980000, - "canton": null, - "numero_insee": "30051" - } - }, - { - "pk": 4716, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BREAU-ET-SALAGOSSE", - "center": "POINT (697883.8932412686990574 1892700.8117794438730925)", - "surface": 24720000, - "canton": null, - "numero_insee": "30052" - } - }, - { - "pk": 6805, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BRIGNON", - "center": "POINT (750663.8810893618501723 1890045.2612755545414984)", - "surface": 6790000, - "canton": null, - "numero_insee": "30053" - } - }, - { - "pk": 13853, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BROUZET-LES-QUISSAC", - "center": "POINT (732472.7175180320627987 1874874.2281095455400646)", - "surface": 15900000, - "canton": null, - "numero_insee": "30054" - } - }, - { - "pk": 6305, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "BROUZET-LES-ALES", - "center": "POINT (753237.2089871951611713 1905283.6586331131402403)", - "surface": 13100000, - "canton": null, - "numero_insee": "30055" - } - }, - { - "pk": 14205, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA BRUGUIERE", - "center": "POINT (765475.9334301420021802 1902284.4643886969424784)", - "surface": 16520000, - "canton": null, - "numero_insee": "30056" - } - }, - { - "pk": 26197, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CABRIERES", - "center": "POINT (771265.7924347617663443 1880710.2083214328158647)", - "surface": 14870000, - "canton": null, - "numero_insee": "30057" - } - }, - { - "pk": 16650, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA CADIERE-ET-CAMBO", - "center": "POINT (718065.4557173860957846 1885663.9489749320782721)", - "surface": 11940000, - "canton": null, - "numero_insee": "30058" - } - }, - { - "pk": 15333, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LE CAILAR", - "center": "POINT (753886.1422018955927342 1852531.2103554620407522)", - "surface": 30320000, - "canton": null, - "numero_insee": "30059" - } - }, - { - "pk": 3524, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CAISSARGUES", - "center": "POINT (765870.1022273960988969 1867750.0156668238341808)", - "surface": 8530000, - "canton": null, - "numero_insee": "30060" - } - }, - { - "pk": 5939, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA CALMETTE", - "center": "POINT (754833.6317025924799964 1882372.2986198195721954)", - "surface": 11210000, - "canton": null, - "numero_insee": "30061" - } - }, - { - "pk": 16020, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CALVISSON", - "center": "POINT (749159.6142428789753467 1866806.9443149096332490)", - "surface": 28960000, - "canton": null, - "numero_insee": "30062" - } - }, - { - "pk": 33276, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CAMPESTRE-ET-LUC", - "center": "POINT (685457.5233975481241941 1882384.5291299838572741)", - "surface": 38090000, - "canton": null, - "numero_insee": "30064" - } - }, - { - "pk": 14572, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CANAULES-ET-ARGENTIERES", - "center": "POINT (737468.2822779959533364 1887830.8144314053934067)", - "surface": 10160000, - "canton": null, - "numero_insee": "30065" - } - }, - { - "pk": 15050, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CANNES-ET-CLAIRAN", - "center": "POINT (740535.1344292170833796 1880348.6497493204660714)", - "surface": 12180000, - "canton": null, - "numero_insee": "30066" - } - }, - { - "pk": 20335, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA CAPELLE-ET-MASMOLENE", - "center": "POINT (776037.7331990264356136 1896367.9267577719874680)", - "surface": 24820000, - "canton": null, - "numero_insee": "30067" - } - }, - { - "pk": 37122, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CARDET", - "center": "POINT (740637.5272909194463864 1891862.1057735262438655)", - "surface": 8240000, - "canton": null, - "numero_insee": "30068" - } - }, - { - "pk": 24967, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CARNAS", - "center": "POINT (733206.5881044033449143 1870976.1540989151690155)", - "surface": 15750000, - "canton": null, - "numero_insee": "30069" - } - }, - { - "pk": 5266, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CARSAN", - "center": "POINT (779767.5918752432335168 1916821.7599115450866520)", - "surface": 11820000, - "canton": null, - "numero_insee": "30070" - } - }, - { - "pk": 37123, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CASSAGNOLES", - "center": "POINT (743635.4765399710740894 1892488.2360443547368050)", - "surface": 5230000, - "canton": null, - "numero_insee": "30071" - } - }, - { - "pk": 28080, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CASTELNAU-VALENCE", - "center": "POINT (753053.5558022951008752 1891567.2222656966187060)", - "surface": 10310000, - "canton": null, - "numero_insee": "30072" - } - }, - { - "pk": 33710, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CASTILLON-DU-GARD", - "center": "POINT (778204.7147837186930701 1888778.1085760050918907)", - "surface": 17820000, - "canton": null, - "numero_insee": "30073" - } - }, - { - "pk": 35706, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CAUSSE-BEGON", - "center": "POINT (681633.5674224498216063 1896567.6887650806456804)", - "surface": 7610000, - "canton": null, - "numero_insee": "30074" - } - }, - { - "pk": 22667, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CAVEIRAC", - "center": "POINT (755421.8596737635089085 1872065.9599336995743215)", - "surface": 15450000, - "canton": null, - "numero_insee": "30075" - } - }, - { - "pk": 24068, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CAVILLARGUES", - "center": "POINT (774669.8760929035488516 1904164.7316775440704077)", - "surface": 11120000, - "canton": null, - "numero_insee": "30076" - } - }, - { - "pk": 22316, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CENDRAS", - "center": "POINT (736004.5638900676276535 1906939.1262566349469125)", - "surface": 13050000, - "canton": null, - "numero_insee": "30077" - } - }, - { - "pk": 21996, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CHAMBON", - "center": "POINT (734355.9845737449359149 1924243.6829639975912869)", - "surface": 14480000, - "canton": null, - "numero_insee": "30079" - } - }, - { - "pk": 17159, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CHAMBORIGAUD", - "center": "POINT (729758.2097050292650238 1923403.7900450213346630)", - "surface": 17840000, - "canton": null, - "numero_insee": "30080" - } - }, - { - "pk": 3614, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CHUSCLAN", - "center": "POINT (788246.0252907777903602 1908685.2484701704233885)", - "surface": 13260000, - "canton": null, - "numero_insee": "30081" - } - }, - { - "pk": 26190, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CLARENSAC", - "center": "POINT (752014.9436512429965660 1872437.4225719496607780)", - "surface": 14660000, - "canton": null, - "numero_insee": "30082" - } - }, - { - "pk": 29899, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CODOGNAN", - "center": "POINT (752424.2293934670742601 1859626.7040717813652009)", - "surface": 4650000, - "canton": null, - "numero_insee": "30083" - } - }, - { - "pk": 24667, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CODOLET", - "center": "POINT (789372.7559613131452352 1905691.6215014327317476)", - "surface": 5460000, - "canton": null, - "numero_insee": "30084" - } - }, - { - "pk": 30813, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "COLLIAS", - "center": "POINT (771526.8718809144338593 1885317.4805543608963490)", - "surface": 21130000, - "canton": null, - "numero_insee": "30085" - } - }, - { - "pk": 33435, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "COLLORGUES", - "center": "POINT (756550.3061290150508285 1892397.8419750037137419)", - "surface": 9280000, - "canton": null, - "numero_insee": "30086" - } - }, - { - "pk": 21728, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "COLOGNAC", - "center": "POINT (718699.9539230922237039 1893477.8432321446016431)", - "surface": 12420000, - "canton": null, - "numero_insee": "30087" - } - }, - { - "pk": 29639, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "COMBAS", - "center": "POINT (743587.5566910735797137 1874568.2035262002609670)", - "surface": 16000000, - "canton": null, - "numero_insee": "30088" - } - }, - { - "pk": 27249, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "COMPS", - "center": "POINT (781530.0334959562169388 1874490.7473276304081082)", - "surface": 8500000, - "canton": null, - "numero_insee": "30089" - } - }, - { - "pk": 16583, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CONCOULES", - "center": "POINT (728287.1440850952640176 1931600.0261322688311338)", - "surface": 16350000, - "canton": null, - "numero_insee": "30090" - } - }, - { - "pk": 29719, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CONGENIES", - "center": "POINT (746869.1443994101136923 1865385.9184048082679510)", - "surface": 8780000, - "canton": null, - "numero_insee": "30091" - } - }, - { - "pk": 22724, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CONNAUX", - "center": "POINT (781314.0930400746874511 1899816.6004629007074982)", - "surface": 9540000, - "canton": null, - "numero_insee": "30092" - } - }, - { - "pk": 5696, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CONQUEYRAC", - "center": "POINT (726096.5699292895151302 1883029.1206096201203763)", - "surface": 27620000, - "canton": null, - "numero_insee": "30093" - } - }, - { - "pk": 8628, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CORBES", - "center": "POINT (729671.1983397644944489 1898276.0410876558162272)", - "surface": 3260000, - "canton": null, - "numero_insee": "30094" - } - }, - { - "pk": 3833, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CORCONNE", - "center": "POINT (728961.4644584745401517 1875745.4118741685524583)", - "surface": 13140000, - "canton": null, - "numero_insee": "30095" - } - }, - { - "pk": 12611, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CORNILLON", - "center": "POINT (772571.4791798621881753 1915459.0306474301032722)", - "surface": 15520000, - "canton": null, - "numero_insee": "30096" - } - }, - { - "pk": 6102, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "COURRY", - "center": "POINT (745669.7714256085455418 1924039.4942705011926591)", - "surface": 8360000, - "canton": null, - "numero_insee": "30097" - } - }, - { - "pk": 33857, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CRESPIAN", - "center": "POINT (742762.9130098775494844 1877364.2806714433245361)", - "surface": 7950000, - "canton": null, - "numero_insee": "30098" - } - }, - { - "pk": 4794, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CROS", - "center": "POINT (719330.2783528324216604 1889979.3743790532462299)", - "surface": 16700000, - "canton": null, - "numero_insee": "30099" - } - }, - { - "pk": 34767, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "CRUVIERS-LASCOURS", - "center": "POINT (748946.8274502321146429 1891832.6243508937768638)", - "surface": 5680000, - "canton": null, - "numero_insee": "30100" - } - }, - { - "pk": 8294, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "DEAUX", - "center": "POINT (745990.2658932902850211 1898114.3432343183085322)", - "surface": 5860000, - "canton": null, - "numero_insee": "30101" - } - }, - { - "pk": 10343, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "DIONS", - "center": "POINT (757135.9892419512616470 1882391.8867108710110188)", - "surface": 11610000, - "canton": null, - "numero_insee": "30102" - } - }, - { - "pk": 25060, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "DOMAZAN", - "center": "POINT (786350.5525972137693316 1884442.7506414786912501)", - "surface": 11370000, - "canton": null, - "numero_insee": "30103" - } - }, - { - "pk": 13903, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "DOMESSARGUES", - "center": "POINT (746882.1334556847577915 1887410.2652486185543239)", - "surface": 7500000, - "canton": null, - "numero_insee": "30104" - } - }, - { - "pk": 15826, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "DOURBIES", - "center": "POINT (691645.4028696246678010 1896452.1455815965309739)", - "surface": 61090000, - "canton": null, - "numero_insee": "30105" - } - }, - { - "pk": 16982, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "DURFORT-ET-SAINT-MARTIN-DE-SOSSENAC", - "center": "POINT (729855.4252918189158663 1888366.8244653504807502)", - "surface": 16320000, - "canton": null, - "numero_insee": "30106" - } - }, - { - "pk": 33205, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ESTEZARGUES", - "center": "POINT (784732.6929509318433702 1886331.0336618172004819)", - "surface": 11570000, - "canton": null, - "numero_insee": "30107" - } - }, - { - "pk": 22671, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "L'ESTRECHURE", - "center": "POINT (716237.2517668098444119 1900564.6702446269337088)", - "surface": 19450000, - "canton": null, - "numero_insee": "30108" - } - }, - { - "pk": 7393, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "EUZET", - "center": "POINT (752191.4407652207883075 1898767.7236388074234128)", - "surface": 6870000, - "canton": null, - "numero_insee": "30109" - } - }, - { - "pk": 8410, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FLAUX", - "center": "POINT (774468.5239064510678872 1892550.4150161696597934)", - "surface": 11020000, - "canton": null, - "numero_insee": "30110" - } - }, - { - "pk": 5454, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FOISSAC", - "center": "POINT (757432.4830221979646012 1894607.7448870399966836)", - "surface": 3920000, - "canton": null, - "numero_insee": "30111" - } - }, - { - "pk": 6861, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FONS", - "center": "POINT (748245.5906798226060346 1880113.8539914470165968)", - "surface": 9360000, - "canton": null, - "numero_insee": "30112" - } - }, - { - "pk": 34852, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FONS-SUR-LUSSAN", - "center": "POINT (759192.1432314957492054 1911340.7971334827598184)", - "surface": 10610000, - "canton": null, - "numero_insee": "30113" - } - }, - { - "pk": 11830, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FONTANES", - "center": "POINT (741410.8068776953732595 1871546.3938079178333282)", - "surface": 14530000, - "canton": null, - "numero_insee": "30114" - } - }, - { - "pk": 25989, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FONTARECHES", - "center": "POINT (767765.4696361992973834 1903805.5859858100302517)", - "surface": 13240000, - "canton": null, - "numero_insee": "30115" - } - }, - { - "pk": 28279, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FOURNES", - "center": "POINT (782150.5201659920858219 1883906.3822811753489077)", - "surface": 17720000, - "canton": null, - "numero_insee": "30116" - } - }, - { - "pk": 28625, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FOURQUES", - "center": "POINT (778457.2845655598212034 1859147.5777819834183902)", - "surface": 38350000, - "canton": null, - "numero_insee": "30117" - } - }, - { - "pk": 22600, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "FRESSAC", - "center": "POINT (727142.4755345080047846 1889545.1077824202366173)", - "surface": 5950000, - "canton": null, - "numero_insee": "30119" - } - }, - { - "pk": 17730, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GAGNIERES", - "center": "POINT (742554.7787910621846095 1925414.5100272970739752)", - "surface": 11170000, - "canton": null, - "numero_insee": "30120" - } - }, - { - "pk": 28418, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GAILHAN", - "center": "POINT (736191.8332168696215376 1873103.8249150868505239)", - "surface": 5530000, - "canton": null, - "numero_insee": "30121" - } - }, - { - "pk": 23019, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GAJAN", - "center": "POINT (751856.9486068871337920 1879243.5736633585765958)", - "surface": 11030000, - "canton": null, - "numero_insee": "30122" - } - }, - { - "pk": 34219, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GALLARGUES-LE-MONTUEUX", - "center": "POINT (748025.6039238338125870 1858888.5214362549595535)", - "surface": 10890000, - "canton": null, - "numero_insee": "30123" - } - }, - { - "pk": 37232, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LE GARN", - "center": "POINT (769881.0463037975132465 1925747.1289020723197609)", - "surface": 11070000, - "canton": null, - "numero_insee": "30124" - } - }, - { - "pk": 10652, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GARONS", - "center": "POINT (769392.4850857809651643 1865577.5721345976926386)", - "surface": 12480000, - "canton": null, - "numero_insee": "30125" - } - }, - { - "pk": 16772, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GARRIGUES-SAINTE-EULALIE", - "center": "POINT (758078.2390314303338528 1889307.4599228738807142)", - "surface": 9920000, - "canton": null, - "numero_insee": "30126" - } - }, - { - "pk": 37876, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GAUJAC", - "center": "POINT (779112.7187448731856421 1899697.7233374821953475)", - "surface": 10260000, - "canton": null, - "numero_insee": "30127" - } - }, - { - "pk": 35677, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GENERAC", - "center": "POINT (763032.7137661287561059 1860017.3029706892557442)", - "surface": 24380000, - "canton": null, - "numero_insee": "30128" - } - }, - { - "pk": 11737, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GENERARGUES", - "center": "POINT (732668.2880449546501040 1899002.2458522350061685)", - "surface": 10680000, - "canton": null, - "numero_insee": "30129" - } - }, - { - "pk": 18524, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GENOLHAC", - "center": "POINT (728815.6787915769964457 1928301.0078202704899013)", - "surface": 17280000, - "canton": null, - "numero_insee": "30130" - } - }, - { - "pk": 16378, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "GOUDARGUES", - "center": "POINT (768177.3058557613985613 1914220.3080380235332996)", - "surface": 30450000, - "canton": null, - "numero_insee": "30131" - } - }, - { - "pk": 26095, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA GRAND-COMBE", - "center": "POINT (735331.6948865512385964 1915442.5570751035120338)", - "surface": 12490000, - "canton": null, - "numero_insee": "30132" - } - }, - { - "pk": 20467, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LE GRAU-DU-ROI", - "center": "POINT (748123.7922708838013932 1835563.1925225642044097)", - "surface": 57950000, - "canton": null, - "numero_insee": "30133" - } - }, - { - "pk": 8551, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ISSIRAC", - "center": "POINT (770922.1211592481704429 1921050.9792089185211807)", - "surface": 20320000, - "canton": null, - "numero_insee": "30134" - } - }, - { - "pk": 25385, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "JONQUIERES-SAINT-VINCENT", - "center": "POINT (778847.7290888132993132 1872065.2285017475951463)", - "surface": 21440000, - "canton": null, - "numero_insee": "30135" - } - }, - { - "pk": 8957, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "JUNAS", - "center": "POINT (743579.3330122795887291 1863756.1795613984577358)", - "surface": 7830000, - "canton": null, - "numero_insee": "30136" - } - }, - { - "pk": 3086, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LAMELOUZE", - "center": "POINT (730055.2843691479647532 1911994.1016698423773050)", - "surface": 8810000, - "canton": null, - "numero_insee": "30137" - } - }, - { - "pk": 29673, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LANGLADE", - "center": "POINT (754548.1796036810846999 1868854.9878783735912293)", - "surface": 9070000, - "canton": null, - "numero_insee": "30138" - } - }, - { - "pk": 15454, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LANUEJOLS", - "center": "POINT (683177.6385457688011229 1903388.1089205062016845)", - "surface": 62690000, - "canton": null, - "numero_insee": "30139" - } - }, - { - "pk": 21663, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LASALLE", - "center": "POINT (721493.4597669511567801 1894602.7342852945439517)", - "surface": 10120000, - "canton": null, - "numero_insee": "30140" - } - }, - { - "pk": 19797, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LAUDUN-L'ARDOISE", - "center": "POINT (786493.7412331922678277 1902864.0285140469204634)", - "surface": 34110000, - "canton": null, - "numero_insee": "30141" - } - }, - { - "pk": 30417, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LAVAL-SAINT-ROMAN", - "center": "POINT (773095.3137317260261625 1924473.1277345912531018)", - "surface": 10430000, - "canton": null, - "numero_insee": "30143" - } - }, - { - "pk": 8008, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LECQUES", - "center": "POINT (738397.5041917874477804 1872722.1184459417127073)", - "surface": 5210000, - "canton": null, - "numero_insee": "30144" - } - }, - { - "pk": 26378, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LEDENON", - "center": "POINT (775168.0893902770476416 1880943.6771676670759916)", - "surface": 19350000, - "canton": null, - "numero_insee": "30145" - } - }, - { - "pk": 10423, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LEDIGNAN", - "center": "POINT (742266.3771475767716765 1888672.4541719327680767)", - "surface": 6950000, - "canton": null, - "numero_insee": "30146" - } - }, - { - "pk": 4934, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LEZAN", - "center": "POINT (737536.0723243341781199 1891635.5388157316483557)", - "surface": 9380000, - "canton": null, - "numero_insee": "30147" - } - }, - { - "pk": 25321, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LIOUC", - "center": "POINT (732347.9666179929627106 1877776.3629776388406754)", - "surface": 9570000, - "canton": null, - "numero_insee": "30148" - } - }, - { - "pk": 9425, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LIRAC", - "center": "POINT (788163.6800409334246069 1894869.5849171781446785)", - "surface": 9790000, - "canton": null, - "numero_insee": "30149" - } - }, - { - "pk": 28424, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LOGRIAN-FLORIAN", - "center": "POINT (735597.7989279842004180 1884110.8776250518858433)", - "surface": 8710000, - "canton": null, - "numero_insee": "30150" - } - }, - { - "pk": 14632, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LUSSAN", - "center": "POINT (763213.2030401031952351 1909372.8706253282725811)", - "surface": 46700000, - "canton": null, - "numero_insee": "30151" - } - }, - { - "pk": 14368, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LES MAGES", - "center": "POINT (746941.6001920995768160 1915741.4270449352916330)", - "surface": 12650000, - "canton": null, - "numero_insee": "30152" - } - }, - { - "pk": 17356, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MALONS-ET-ELZE", - "center": "POINT (733946.0245822103461251 1937153.8961847557220608)", - "surface": 31220000, - "canton": null, - "numero_insee": "30153" - } - }, - { - "pk": 12397, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MANDAGOUT", - "center": "POINT (703492.9800003694836050 1892347.8717900996562093)", - "surface": 15120000, - "canton": null, - "numero_insee": "30154" - } - }, - { - "pk": 11429, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MANDUEL", - "center": "POINT (773264.1208775058621541 1869414.7667573383077979)", - "surface": 26450000, - "canton": null, - "numero_insee": "30155" - } - }, - { - "pk": 35075, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MARGUERITTES", - "center": "POINT (770008.7971014835638925 1875493.7756237396970391)", - "surface": 25430000, - "canton": null, - "numero_insee": "30156" - } - }, - { - "pk": 31075, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MARS", - "center": "POINT (697209.4496908364817500 1889591.7235822638031095)", - "surface": 3790000, - "canton": null, - "numero_insee": "30157" - } - }, - { - "pk": 12263, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MARTIGNARGUES", - "center": "POINT (747719.2228053563740104 1894925.5635233779903501)", - "surface": 4940000, - "canton": null, - "numero_insee": "30158" - } - }, - { - "pk": 28061, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MARUEJOLS-LES-GARDON", - "center": "POINT (744449.0528841848718002 1890993.5152633055113256)", - "surface": 3780000, - "canton": null, - "numero_insee": "30160" - } - }, - { - "pk": 7929, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MASSANES", - "center": "POINT (742331.6017734254710376 1892777.4819572987034917)", - "surface": 1690000, - "canton": null, - "numero_insee": "30161" - } - }, - { - "pk": 5167, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MASSILLARGUES-ATTUECH", - "center": "POINT (735232.0304522733204067 1891816.1870609531179070)", - "surface": 6260000, - "canton": null, - "numero_insee": "30162" - } - }, - { - "pk": 37349, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MAURESSARGUES", - "center": "POINT (746598.8465653647435829 1885405.6682799770496786)", - "surface": 5680000, - "canton": null, - "numero_insee": "30163" - } - }, - { - "pk": 14981, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MEJANNES-LE-CLAP", - "center": "POINT (762051.5954738387372345 1916470.6163200936280191)", - "surface": 38460000, - "canton": null, - "numero_insee": "30164" - } - }, - { - "pk": 22427, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MEJANNES-LES-ALES", - "center": "POINT (745359.8764053849736229 1901612.7802590453065932)", - "surface": 6600000, - "canton": null, - "numero_insee": "30165" - } - }, - { - "pk": 10184, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MEYNES", - "center": "POINT (778400.3853332253638655 1877567.4848805645015091)", - "surface": 16590000, - "canton": null, - "numero_insee": "30166" - } - }, - { - "pk": 28729, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MEYRANNES", - "center": "POINT (745593.4981740976218134 1921235.8560658846981823)", - "surface": 6560000, - "canton": null, - "numero_insee": "30167" - } - }, - { - "pk": 15820, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MIALET", - "center": "POINT (728222.1997968258801848 1903869.8076463839970529)", - "surface": 30880000, - "canton": null, - "numero_insee": "30168" - } - }, - { - "pk": 34945, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MILHAUD", - "center": "POINT (758867.1110266207251698 1867189.8503136672079563)", - "surface": 18430000, - "canton": null, - "numero_insee": "30169" - } - }, - { - "pk": 27895, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MOLIERES-CAVAILLAC", - "center": "POINT (699140.2016337922541425 1886204.3549011019058526)", - "surface": 7690000, - "canton": null, - "numero_insee": "30170" - } - }, - { - "pk": 31137, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MOLIERES-SUR-CEZE", - "center": "POINT (744707.9169930859934539 1919426.4030984072014689)", - "surface": 8660000, - "canton": null, - "numero_insee": "30171" - } - }, - { - "pk": 13312, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONS", - "center": "POINT (747543.3769491197308525 1903833.7239667507819831)", - "surface": 15970000, - "canton": null, - "numero_insee": "30173" - } - }, - { - "pk": 11395, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTAREN-ET-SAINT-MEDIERS", - "center": "POINT (764129.9160696195904166 1895765.9475860092788935)", - "surface": 19320000, - "canton": null, - "numero_insee": "30174" - } - }, - { - "pk": 22784, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTCLUS", - "center": "POINT (766319.2405070262029767 1920811.5590303963981569)", - "surface": 21980000, - "canton": null, - "numero_insee": "30175" - } - }, - { - "pk": 9090, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTDARDIER", - "center": "POINT (699775.5643335836939514 1882105.2444413625635207)", - "surface": 35460000, - "canton": null, - "numero_insee": "30176" - } - }, - { - "pk": 5697, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTEILS", - "center": "POINT (747773.3664211174473166 1900331.8891763796564192)", - "surface": 7070000, - "canton": null, - "numero_insee": "30177" - } - }, - { - "pk": 3752, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTFAUCON", - "center": "POINT (792822.3207735159667209 1900315.2097631404176354)", - "surface": 4070000, - "canton": null, - "numero_insee": "30178" - } - }, - { - "pk": 29791, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTFRIN", - "center": "POINT (781405.1787727377377450 1877392.8809631019830704)", - "surface": 15390000, - "canton": null, - "numero_insee": "30179" - } - }, - { - "pk": 12398, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTIGNARGUES", - "center": "POINT (750223.8092751718359068 1882933.7489150709006935)", - "surface": 4490000, - "canton": null, - "numero_insee": "30180" - } - }, - { - "pk": 26508, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTMIRAT", - "center": "POINT (743145.4593955380842090 1879469.8418668196536601)", - "surface": 9530000, - "canton": null, - "numero_insee": "30181" - } - }, - { - "pk": 13495, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTPEZAT", - "center": "POINT (746695.0064001237042248 1874094.0646877512335777)", - "surface": 12010000, - "canton": null, - "numero_insee": "30182" - } - }, - { - "pk": 10807, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MOULEZAN", - "center": "POINT (744024.2633688729256392 1882080.1664455973077565)", - "surface": 11240000, - "canton": null, - "numero_insee": "30183" - } - }, - { - "pk": 4746, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MUS", - "center": "POINT (750508.6306733400560915 1861212.1948946109041572)", - "surface": 2650000, - "canton": null, - "numero_insee": "30185" - } - }, - { - "pk": 37093, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "NAGES-ET-SOLORGUES", - "center": "POINT (752763.3449600160820410 1866837.5901690032333136)", - "surface": 6200000, - "canton": null, - "numero_insee": "30186" - } - }, - { - "pk": 4084, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "NAVACELLES", - "center": "POINT (752005.3489828336751089 1908877.0663791107945144)", - "surface": 11160000, - "canton": null, - "numero_insee": "30187" - } - }, - { - "pk": 3294, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "NERS", - "center": "POINT (746132.9146407421212643 1893110.1178240096196532)", - "surface": 4960000, - "canton": null, - "numero_insee": "30188" - } - }, - { - "pk": 19468, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "NIMES", - "center": "POINT (761916.6421523343306035 1873522.7745256971102208)", - "surface": 161180000, - "canton": null, - "numero_insee": "30189" - } - }, - { - "pk": 4641, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "NOTRE-DAME-DE-LA-ROUVIERE", - "center": "POINT (710567.9658030200516805 1896211.9466790889855474)", - "surface": 16580000, - "canton": null, - "numero_insee": "30190" - } - }, - { - "pk": 6963, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ORSAN", - "center": "POINT (786463.0003305212594569 1906467.6613729486707598)", - "surface": 6970000, - "canton": null, - "numero_insee": "30191" - } - }, - { - "pk": 18120, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ORTHOUX-SERIGNAC-QUILHAN", - "center": "POINT (737253.8549002830404788 1877717.9153370058629662)", - "surface": 14060000, - "canton": null, - "numero_insee": "30192" - } - }, - { - "pk": 10481, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PARIGNARGUES", - "center": "POINT (750984.1164847433101386 1875932.5177784254774451)", - "surface": 11060000, - "canton": null, - "numero_insee": "30193" - } - }, - { - "pk": 29481, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PEYREMALE", - "center": "POINT (737568.5196732627227902 1923169.7962656409945339)", - "surface": 8700000, - "canton": null, - "numero_insee": "30194" - } - }, - { - "pk": 6112, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PEYROLLES", - "center": "POINT (719532.9482800563564524 1901493.5934641440398991)", - "surface": 8260000, - "canton": null, - "numero_insee": "30195" - } - }, - { - "pk": 4173, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LE PIN", - "center": "POINT (776197.8379407937172800 1901074.3957383856177330)", - "surface": 6090000, - "canton": null, - "numero_insee": "30196" - } - }, - { - "pk": 8490, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LES PLANS", - "center": "POINT (750127.2734490683069453 1906058.0726598664186895)", - "surface": 6260000, - "canton": null, - "numero_insee": "30197" - } - }, - { - "pk": 15819, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LES PLANTIERS", - "center": "POINT (710221.0035318054724485 1901714.9706912606488913)", - "surface": 30960000, - "canton": null, - "numero_insee": "30198" - } - }, - { - "pk": 7612, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "POMMIERS", - "center": "POINT (702765.0743874176405370 1883732.3130657211877406)", - "surface": 6520000, - "canton": null, - "numero_insee": "30199" - } - }, - { - "pk": 36557, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "POMPIGNAN", - "center": "POINT (722432.6926984279416502 1878292.8727876183111221)", - "surface": 41320000, - "canton": null, - "numero_insee": "30200" - } - }, - { - "pk": 15387, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PONTEILS-ET-BRESIS", - "center": "POINT (729965.8803428630344570 1934317.1384506744798273)", - "surface": 27610000, - "canton": null, - "numero_insee": "30201" - } - }, - { - "pk": 31237, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PONT-SAINT-ESPRIT", - "center": "POINT (783949.5948890533763915 1919460.2087373593822122)", - "surface": 18660000, - "canton": null, - "numero_insee": "30202" - } - }, - { - "pk": 16193, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PORTES", - "center": "POINT (735998.3862020648084581 1919452.5051848804578185)", - "surface": 14590000, - "canton": null, - "numero_insee": "30203" - } - }, - { - "pk": 28659, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "POTELIERES", - "center": "POINT (751148.3563602296635509 1915476.8765206041280180)", - "surface": 6520000, - "canton": null, - "numero_insee": "30204" - } - }, - { - "pk": 4563, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "POUGNADORESSE", - "center": "POINT (774094.0076063341693953 1901256.6833823099732399)", - "surface": 7710000, - "canton": null, - "numero_insee": "30205" - } - }, - { - "pk": 28936, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "POULX", - "center": "POINT (767756.2324229467194527 1881381.0841753785498440)", - "surface": 11890000, - "canton": null, - "numero_insee": "30206" - } - }, - { - "pk": 12588, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "POUZILHAC", - "center": "POINT (780048.6208429937250912 1895601.2458412295673043)", - "surface": 16060000, - "canton": null, - "numero_insee": "30207" - } - }, - { - "pk": 26116, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PUECHREDON", - "center": "POINT (738102.0585404894081876 1883931.9294069358147681)", - "surface": 7870000, - "canton": null, - "numero_insee": "30208" - } - }, - { - "pk": 10586, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "PUJAUT", - "center": "POINT (794898.6883343339432031 1891623.4628566801548004)", - "surface": 23700000, - "canton": null, - "numero_insee": "30209" - } - }, - { - "pk": 15833, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "QUISSAC", - "center": "POINT (733421.8973517232807353 1880988.9990621167235076)", - "surface": 23190000, - "canton": null, - "numero_insee": "30210" - } - }, - { - "pk": 37437, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "REDESSAN", - "center": "POINT (775137.9364240780705586 1872734.3837687470950186)", - "surface": 15600000, - "canton": null, - "numero_insee": "30211" - } - }, - { - "pk": 9981, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "REMOULINS", - "center": "POINT (779041.3717131065204740 1884580.6419570711441338)", - "surface": 8260000, - "canton": null, - "numero_insee": "30212" - } - }, - { - "pk": 3087, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "REVENS", - "center": "POINT (677405.6220534216845408 1899334.9904774329625070)", - "surface": 13990000, - "canton": null, - "numero_insee": "30213" - } - }, - { - "pk": 7554, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "RIBAUTE-LES-TAVERNES", - "center": "POINT (740211.6046536833746359 1894861.7542482493445277)", - "surface": 14250000, - "canton": null, - "numero_insee": "30214" - } - }, - { - "pk": 27842, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "RIVIERES", - "center": "POINT (756061.7770151349250227 1914517.5996923493221402)", - "surface": 9670000, - "canton": null, - "numero_insee": "30215" - } - }, - { - "pk": 31547, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ROBIAC-ROCHESSADOULE", - "center": "POINT (740994.0180792140308768 1920596.1228362508118153)", - "surface": 10540000, - "canton": null, - "numero_insee": "30216" - } - }, - { - "pk": 19308, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ROCHEFORT-DU-GARD", - "center": "POINT (788310.7532231369987130 1889364.8380992193706334)", - "surface": 34170000, - "canton": null, - "numero_insee": "30217" - } - }, - { - "pk": 17614, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ROCHEGUDE", - "center": "POINT (755538.2814364093355834 1917216.0427260186988860)", - "surface": 12120000, - "canton": null, - "numero_insee": "30218" - } - }, - { - "pk": 32877, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ROGUES", - "center": "POINT (698525.9270102843875065 1875987.9618413115385920)", - "surface": 30670000, - "canton": null, - "numero_insee": "30219" - } - }, - { - "pk": 34684, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ROQUEDUR", - "center": "POINT (706440.0283831929555163 1887167.1617614906281233)", - "surface": 10980000, - "canton": null, - "numero_insee": "30220" - } - }, - { - "pk": 35804, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ROQUEMAURE", - "center": "POINT (794057.7139675264479592 1896321.4072246369905770)", - "surface": 26270000, - "canton": null, - "numero_insee": "30221" - } - }, - { - "pk": 35313, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA ROQUE-SUR-CEZE", - "center": "POINT (774500.6786186044337228 1912272.0301594941411167)", - "surface": 8400000, - "canton": null, - "numero_insee": "30222" - } - }, - { - "pk": 14811, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "ROUSSON", - "center": "POINT (745168.7297389877494425 1912322.7037000902928412)", - "surface": 33050000, - "canton": null, - "numero_insee": "30223" - } - }, - { - "pk": 13181, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA ROUVIERE", - "center": "POINT (753037.7467713002115488 1881656.2538076806813478)", - "surface": 7860000, - "canton": null, - "numero_insee": "30224" - } - }, - { - "pk": 16372, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SABRAN", - "center": "POINT (777240.9304299396462739 1907890.6429889909923077)", - "surface": 35720000, - "canton": null, - "numero_insee": "30225" - } - }, - { - "pk": 7446, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ALEXANDRE", - "center": "POINT (783476.4145516572752967 1916252.7419563224539161)", - "surface": 12960000, - "canton": null, - "numero_insee": "30226" - } - }, - { - "pk": 22137, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-AMBROIX", - "center": "POINT (748419.2690571863204241 1918556.9919134918600321)", - "surface": 11890000, - "canton": null, - "numero_insee": "30227" - } - }, - { - "pk": 21965, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINTE-ANASTASIE", - "center": "POINT (761134.1251399503089488 1883126.6795316627249122)", - "surface": 43820000, - "canton": null, - "numero_insee": "30228" - } - }, - { - "pk": 20476, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ANDRE-DE-MAJENCOULES", - "center": "POINT (707494.5049535501748323 1892682.0959471203386784)", - "surface": 22020000, - "canton": null, - "numero_insee": "30229" - } - }, - { - "pk": 17372, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ANDRE-DE-ROQUEPERTUIS", - "center": "POINT (768748.0649125890340656 1917728.9257721698377281)", - "surface": 12140000, - "canton": null, - "numero_insee": "30230" - } - }, - { - "pk": 14615, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ANDRE-DE-VALBORGNE", - "center": "POINT (707982.3093608806375414 1906000.6478309738449752)", - "surface": 48910000, - "canton": null, - "numero_insee": "30231" - } - }, - { - "pk": 13543, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ANDRE-D'OLERARGUES", - "center": "POINT (772822.8546875993488356 1909454.7170973883476108)", - "surface": 9780000, - "canton": null, - "numero_insee": "30232" - } - }, - { - "pk": 26954, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-BAUZELY", - "center": "POINT (749132.8961343595292419 1881723.1557448618113995)", - "surface": 4960000, - "canton": null, - "numero_insee": "30233" - } - }, - { - "pk": 7802, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-BENEZET", - "center": "POINT (744462.6660342562245205 1889391.8845127308741212)", - "surface": 6440000, - "canton": null, - "numero_insee": "30234" - } - }, - { - "pk": 25037, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-BONNET-DU-GARD", - "center": "POINT (776952.0198035601060838 1883061.1870145760476589)", - "surface": 6820000, - "canton": null, - "numero_insee": "30235" - } - }, - { - "pk": 33856, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-BONNET-DE-SALENDRINQUE", - "center": "POINT (723101.0298675764352083 1893915.6103150274138898)", - "surface": 3600000, - "canton": null, - "numero_insee": "30236" - } - }, - { - "pk": 9492, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-BRES", - "center": "POINT (748691.4802341561298817 1921862.8363394704647362)", - "surface": 11250000, - "canton": null, - "numero_insee": "30237" - } - }, - { - "pk": 25150, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-BRESSON", - "center": "POINT (704960.5429045010823756 1884551.7844806970097125)", - "surface": 8530000, - "canton": null, - "numero_insee": "30238" - } - }, - { - "pk": 24012, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINTE-CECILE-D'ANDORGE", - "center": "POINT (731596.5461416339967400 1919114.8029133221134543)", - "surface": 19050000, - "canton": null, - "numero_insee": "30239" - } - }, - { - "pk": 37590, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-CESAIRE-DE-GAUZIGNAN", - "center": "POINT (749624.5575836785137653 1894541.3287023897282779)", - "surface": 6850000, - "canton": null, - "numero_insee": "30240" - } - }, - { - "pk": 22347, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-CHAPTES", - "center": "POINT (755695.3788218606496230 1886984.6705121849663556)", - "surface": 12960000, - "canton": null, - "numero_insee": "30241" - } - }, - { - "pk": 23256, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-CHRISTOL-DE-RODIERES", - "center": "POINT (773928.5238798205973580 1920676.1675404720008373)", - "surface": 8070000, - "canton": null, - "numero_insee": "30242" - } - }, - { - "pk": 3447, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-CHRISTOL-LES-ALES", - "center": "POINT (739470.9217730994569138 1899560.5668176563922316)", - "surface": 20160000, - "canton": null, - "numero_insee": "30243" - } - }, - { - "pk": 32655, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-CLEMENT", - "center": "POINT (736009.4808579712407663 1870999.9565108362585306)", - "surface": 4910000, - "canton": null, - "numero_insee": "30244" - } - }, - { - "pk": 11187, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-COME-ET-MARUEJOLS", - "center": "POINT (749018.6560766543261707 1871611.0591437374241650)", - "surface": 13060000, - "canton": null, - "numero_insee": "30245" - } - }, - { - "pk": 9445, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINTE-CROIX-DE-CADERLE", - "center": "POINT (722971.2042719552991912 1897418.3136974417138845)", - "surface": 7780000, - "canton": null, - "numero_insee": "30246" - } - }, - { - "pk": 37914, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-DENIS", - "center": "POINT (752837.2856954284943640 1916992.8506410738918930)", - "surface": 3650000, - "canton": null, - "numero_insee": "30247" - } - }, - { - "pk": 11995, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-DEZERY", - "center": "POINT (754768.0605153731303290 1890080.1697184843942523)", - "surface": 6020000, - "canton": null, - "numero_insee": "30248" - } - }, - { - "pk": 7508, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-DIONISY", - "center": "POINT (751946.3403123987372965 1868732.7468885518610477)", - "surface": 3430000, - "canton": null, - "numero_insee": "30249" - } - }, - { - "pk": 29500, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ETIENNE-DE-L'OLM", - "center": "POINT (748098.3517419511917979 1897431.5050302282907069)", - "surface": 4270000, - "canton": null, - "numero_insee": "30250" - } - }, - { - "pk": 7553, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ETIENNE-DES-SORTS", - "center": "POINT (789123.8697157111018896 1911395.6493171902839094)", - "surface": 9710000, - "canton": null, - "numero_insee": "30251" - } - }, - { - "pk": 4238, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-FELIX-DE-PALLIERES", - "center": "POINT (727517.3957875424530357 1892551.5614133353810757)", - "surface": 18820000, - "canton": null, - "numero_insee": "30252" - } - }, - { - "pk": 15600, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-FLORENT-SUR-AUZONNET", - "center": "POINT (741527.6911914682714269 1916696.4823699227999896)", - "surface": 9270000, - "canton": null, - "numero_insee": "30253" - } - }, - { - "pk": 14314, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-GENIES-DE-COMOLAS", - "center": "POINT (791933.3699092986062169 1898906.1026365344878286)", - "surface": 8270000, - "canton": null, - "numero_insee": "30254" - } - }, - { - "pk": 33124, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-GENIES-DE-MALGOIRES", - "center": "POINT (750710.7011839209590107 1884539.6435795775614679)", - "surface": 12130000, - "canton": null, - "numero_insee": "30255" - } - }, - { - "pk": 36957, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-GERVAIS", - "center": "POINT (779400.4747538976371288 1912914.4401679900474846)", - "surface": 11810000, - "canton": null, - "numero_insee": "30256" - } - }, - { - "pk": 30379, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-GERVASY", - "center": "POINT (771597.6536042287480086 1877008.9638353521004319)", - "surface": 7110000, - "canton": null, - "numero_insee": "30257" - } - }, - { - "pk": 33827, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-GILLES", - "center": "POINT (767198.3593199192546308 1852844.7298077356535941)", - "surface": 152200000, - "canton": null, - "numero_insee": "30258" - } - }, - { - "pk": 4823, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-HILAIRE-DE-BRETHMAS", - "center": "POINT (743166.1599202685756609 1900593.0510290486272424)", - "surface": 13990000, - "canton": null, - "numero_insee": "30259" - } - }, - { - "pk": 10223, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-HILAIRE-D'OZILHAN", - "center": "POINT (781713.4082270510261878 1888207.3655593066941947)", - "surface": 16820000, - "canton": null, - "numero_insee": "30260" - } - }, - { - "pk": 27375, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-HIPPOLYTE-DE-CATON", - "center": "POINT (749491.2592759934486821 1898444.4346790506970137)", - "surface": 6190000, - "canton": null, - "numero_insee": "30261" - } - }, - { - "pk": 36044, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-HIPPOLYTE-DE-MONTAIGU", - "center": "POINT (773048.3348135912092403 1894740.7109087188728154)", - "surface": 4120000, - "canton": null, - "numero_insee": "30262" - } - }, - { - "pk": 16652, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-HIPPOLYTE-DU-FORT", - "center": "POINT (721776.8806634289212525 1884794.4425139767117798)", - "surface": 29410000, - "canton": null, - "numero_insee": "30263" - } - }, - { - "pk": 23832, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JEAN-DE-CEYRARGUES", - "center": "POINT (751509.4612440690398216 1896559.5336282949429005)", - "surface": 6720000, - "canton": null, - "numero_insee": "30264" - } - }, - { - "pk": 8736, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JEAN-DE-CRIEULON", - "center": "POINT (733476.9491046075709164 1886295.2757906985934824)", - "surface": 5660000, - "canton": null, - "numero_insee": "30265" - } - }, - { - "pk": 3357, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JEAN-DE-MARUEJOLS-ET-AVEJAN", - "center": "POINT (756913.2760545779019594 1920331.0617467169649899)", - "surface": 17560000, - "canton": null, - "numero_insee": "30266" - } - }, - { - "pk": 33602, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JEAN-DE-SERRES", - "center": "POINT (739660.3225315712625161 1889050.7475382043048739)", - "surface": 8290000, - "canton": null, - "numero_insee": "30267" - } - }, - { - "pk": 34515, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JEAN-DE-VALERISCLE", - "center": "POINT (744132.8430295807775110 1916418.3013145055156201)", - "surface": 8250000, - "canton": null, - "numero_insee": "30268" - } - }, - { - "pk": 14813, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JEAN-DU-GARD", - "center": "POINT (723434.3422432963270694 1901827.0135151557624340)", - "surface": 41510000, - "canton": null, - "numero_insee": "30269" - } - }, - { - "pk": 9383, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JEAN-DU-PIN", - "center": "POINT (735836.6702368279220536 1903133.5943750061560422)", - "surface": 13920000, - "canton": null, - "numero_insee": "30270" - } - }, - { - "pk": 32771, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JULIEN-DE-CASSAGNAS", - "center": "POINT (749357.6206885024439543 1914160.2520406707189977)", - "surface": 4590000, - "canton": null, - "numero_insee": "30271" - } - }, - { - "pk": 23534, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JULIEN-DE-LA-NEF", - "center": "POINT (708256.2853622708935291 1885480.6906661540269852)", - "surface": 8920000, - "canton": null, - "numero_insee": "30272" - } - }, - { - "pk": 26013, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JULIEN-DE-PEYROLAS", - "center": "POINT (778215.7452157705556601 1922714.8470116080716252)", - "surface": 12560000, - "canton": null, - "numero_insee": "30273" - } - }, - { - "pk": 35879, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-JULIEN-LES-ROSIERS", - "center": "POINT (741072.2728221875149757 1911386.9201738452538848)", - "surface": 14150000, - "canton": null, - "numero_insee": "30274" - } - }, - { - "pk": 23824, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-LAURENT-D'AIGOUZE", - "center": "POINT (754169.7970320266904309 1842722.6201474792324007)", - "surface": 89680000, - "canton": null, - "numero_insee": "30276" - } - }, - { - "pk": 30646, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-LAURENT-DE-CARNOLS", - "center": "POINT (775468.4102589052636176 1916184.4686479335650802)", - "surface": 10000000, - "canton": null, - "numero_insee": "30277" - } - }, - { - "pk": 28111, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-LAURENT-DES-ARBRES", - "center": "POINT (788940.5787603951757774 1897679.2601845837198198)", - "surface": 16370000, - "canton": null, - "numero_insee": "30278" - } - }, - { - "pk": 6531, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-LAURENT-LA-VERNEDE", - "center": "POINT (770171.3032922284910455 1903425.6452390935737640)", - "surface": 11820000, - "canton": null, - "numero_insee": "30279" - } - }, - { - "pk": 23292, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-LAURENT-LE-MINIER", - "center": "POINT (705789.3450220344820991 1881255.1880902040284127)", - "surface": 13260000, - "canton": null, - "numero_insee": "30280" - } - }, - { - "pk": 7826, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-MARCEL-DE-CAREIRET", - "center": "POINT (771944.1239976615179330 1906844.4245262900367379)", - "surface": 10200000, - "canton": null, - "numero_insee": "30282" - } - }, - { - "pk": 15451, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-MARTIAL", - "center": "POINT (712889.8151213404489681 1893929.1251819806639105)", - "surface": 17300000, - "canton": null, - "numero_insee": "30283" - } - }, - { - "pk": 15072, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-MARTIN-DE-VALGALGUES", - "center": "POINT (739093.2275927850278094 1908667.1972028571180999)", - "surface": 13330000, - "canton": null, - "numero_insee": "30284" - } - }, - { - "pk": 7611, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-MAURICE-DE-CAZEVIEILLE", - "center": "POINT (752928.7620680800173432 1894469.3208063393831253)", - "surface": 13320000, - "canton": null, - "numero_insee": "30285" - } - }, - { - "pk": 22479, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-MAXIMIN", - "center": "POINT (770088.7737942279782146 1889609.9345858544111252)", - "surface": 10010000, - "canton": null, - "numero_insee": "30286" - } - }, - { - "pk": 28292, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-MICHEL-D'EUZET", - "center": "POINT (777087.9291076189838350 1914096.0167893755715340)", - "surface": 10340000, - "canton": null, - "numero_insee": "30287" - } - }, - { - "pk": 13145, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-NAZAIRE", - "center": "POINT (782798.7629194898763672 1913544.0619090620893985)", - "surface": 6740000, - "canton": null, - "numero_insee": "30288" - } - }, - { - "pk": 34766, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-NAZAIRE-DES-GARDIES", - "center": "POINT (734764.6758557113353163 1887907.9608394785318524)", - "surface": 11410000, - "canton": null, - "numero_insee": "30289" - } - }, - { - "pk": 34410, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-PAULET-DE-CAISSON", - "center": "POINT (779738.5749080866808072 1920225.1560749697964638)", - "surface": 16800000, - "canton": null, - "numero_insee": "30290" - } - }, - { - "pk": 23437, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-PAUL-LA-COSTE", - "center": "POINT (730796.7787257133750245 1907195.2268629414029419)", - "surface": 19150000, - "canton": null, - "numero_insee": "30291" - } - }, - { - "pk": 28974, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-PONS-LA-CALM", - "center": "POINT (777689.9694058967288584 1902188.3062502108514309)", - "surface": 6350000, - "canton": null, - "numero_insee": "30292" - } - }, - { - "pk": 7096, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-PRIVAT-DE-CHAMPCLOS", - "center": "POINT (761208.1913308530347422 1921468.7910181921906769)", - "surface": 11800000, - "canton": null, - "numero_insee": "30293" - } - }, - { - "pk": 16179, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-QUENTIN-LA-POTERIE", - "center": "POINT (768521.5947287591407076 1897304.9766354521270841)", - "surface": 24080000, - "canton": null, - "numero_insee": "30295" - } - }, - { - "pk": 27698, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-ROMAN-DE-CODIERES", - "center": "POINT (715316.0174394620116800 1891146.6433210729155689)", - "surface": 18600000, - "canton": null, - "numero_insee": "30296" - } - }, - { - "pk": 21790, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-SAUVEUR-CAMPRIEU", - "center": "POINT (691206.8851671062875539 1900953.3147501966450363)", - "surface": 31920000, - "canton": null, - "numero_insee": "30297" - } - }, - { - "pk": 36880, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-SEBASTIEN-D'AIGREFEUILLE", - "center": "POINT (732435.7873023551655933 1902804.3887915550731122)", - "surface": 16130000, - "canton": null, - "numero_insee": "30298" - } - }, - { - "pk": 29583, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-SIFFRET", - "center": "POINT (771063.3578627291135490 1892721.6201654870528728)", - "surface": 11410000, - "canton": null, - "numero_insee": "30299" - } - }, - { - "pk": 6351, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-THEODORIT", - "center": "POINT (740304.3107141517102718 1883950.6389184701256454)", - "surface": 8580000, - "canton": null, - "numero_insee": "30300" - } - }, - { - "pk": 36269, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-VICTOR-DES-OULES", - "center": "POINT (772238.1404138316866010 1895835.0051858767401427)", - "surface": 4770000, - "canton": null, - "numero_insee": "30301" - } - }, - { - "pk": 19705, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-VICTOR-LA-COSTE", - "center": "POINT (784837.2741703045321628 1897544.1474702716805041)", - "surface": 26710000, - "canton": null, - "numero_insee": "30302" - } - }, - { - "pk": 18584, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-VICTOR-DE-MALCAP", - "center": "POINT (751320.4618825153447688 1918781.8777368490118533)", - "surface": 11050000, - "canton": null, - "numero_insee": "30303" - } - }, - { - "pk": 12205, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SALAZAC", - "center": "POINT (775738.8503071406157687 1919690.5254134966526181)", - "surface": 9960000, - "canton": null, - "numero_insee": "30304" - } - }, - { - "pk": 31366, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SALINDRES", - "center": "POINT (746000.1664529774570838 1908725.8954532274510711)", - "surface": 11590000, - "canton": null, - "numero_insee": "30305" - } - }, - { - "pk": 7917, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SALINELLES", - "center": "POINT (739328.1979170410195366 1869226.1558259120211005)", - "surface": 8900000, - "canton": null, - "numero_insee": "30306" - } - }, - { - "pk": 20299, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LES SALLES-DU-GARDON", - "center": "POINT (734462.2483836173778400 1911731.1983891658019274)", - "surface": 21070000, - "canton": null, - "numero_insee": "30307" - } - }, - { - "pk": 28772, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SANILHAC-SAGRIES", - "center": "POINT (767317.4601820675889030 1885882.2833401698153466)", - "surface": 22160000, - "canton": null, - "numero_insee": "30308" - } - }, - { - "pk": 8767, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SARDAN", - "center": "POINT (736573.5407330275047570 1875309.4935882675927132)", - "surface": 6300000, - "canton": null, - "numero_insee": "30309" - } - }, - { - "pk": 32454, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAUMANE", - "center": "POINT (714715.3669568749610335 1902954.3648655556607991)", - "surface": 12260000, - "canton": null, - "numero_insee": "30310" - } - }, - { - "pk": 15452, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAUVE", - "center": "POINT (730000.5646166643127799 1883062.2556748790666461)", - "surface": 31630000, - "canton": null, - "numero_insee": "30311" - } - }, - { - "pk": 23972, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAUVETERRE", - "center": "POINT (798385.1587353793438524 1893655.4114015633240342)", - "surface": 13200000, - "canton": null, - "numero_insee": "30312" - } - }, - { - "pk": 32652, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAUZET", - "center": "POINT (751096.6383887315168977 1886244.7874751053750515)", - "surface": 6860000, - "canton": null, - "numero_insee": "30313" - } - }, - { - "pk": 6407, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAVIGNARGUES", - "center": "POINT (739981.8908260628813878 1886550.7466683383099735)", - "surface": 2730000, - "canton": null, - "numero_insee": "30314" - } - }, - { - "pk": 33701, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAZE", - "center": "POINT (789746.3467526909662411 1885372.7078890637494624)", - "surface": 12600000, - "canton": null, - "numero_insee": "30315" - } - }, - { - "pk": 20955, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SENECHAS", - "center": "POINT (732827.2933003369253129 1927434.1096830540336668)", - "surface": 14920000, - "canton": null, - "numero_insee": "30316" - } - }, - { - "pk": 28280, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SERNHAC", - "center": "POINT (778768.3708197984378785 1881374.8023462123237550)", - "surface": 9040000, - "canton": null, - "numero_insee": "30317" - } - }, - { - "pk": 7749, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SERVAS", - "center": "POINT (748610.4414254286093637 1907847.1172935466747731)", - "surface": 10820000, - "canton": null, - "numero_insee": "30318" - } - }, - { - "pk": 27711, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SERVIERS-ET-LABAUME", - "center": "POINT (760933.4833037151256576 1894937.8663108451291919)", - "surface": 12530000, - "canton": null, - "numero_insee": "30319" - } - }, - { - "pk": 7798, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SEYNES", - "center": "POINT (756759.4760358468629420 1903111.2449205026496202)", - "surface": 14270000, - "canton": null, - "numero_insee": "30320" - } - }, - { - "pk": 22669, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SOMMIERES", - "center": "POINT (740663.5636231749085709 1865233.0682712215930223)", - "surface": 10270000, - "canton": null, - "numero_insee": "30321" - } - }, - { - "pk": 17566, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SOUDORGUES", - "center": "POINT (717867.7319959491724148 1897174.8083932125009596)", - "surface": 25840000, - "canton": null, - "numero_insee": "30322" - } - }, - { - "pk": 17804, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SOUSTELLE", - "center": "POINT (733082.0938693282660097 1909216.7868973179720342)", - "surface": 11180000, - "canton": null, - "numero_insee": "30323" - } - }, - { - "pk": 29497, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SOUVIGNARGUES", - "center": "POINT (744825.3791334927082062 1870273.9745558558497578)", - "surface": 11190000, - "canton": null, - "numero_insee": "30324" - } - }, - { - "pk": 19153, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SUMENE", - "center": "POINT (712035.5653052775887772 1888415.8883924456313252)", - "surface": 36750000, - "canton": null, - "numero_insee": "30325" - } - }, - { - "pk": 34612, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "TAVEL", - "center": "POINT (788984.9910201375605538 1892473.9760396003257483)", - "surface": 20040000, - "canton": null, - "numero_insee": "30326" - } - }, - { - "pk": 9850, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "THARAUX", - "center": "POINT (758738.9242100162664428 1917543.5994696042034775)", - "surface": 9590000, - "canton": null, - "numero_insee": "30327" - } - }, - { - "pk": 25219, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "THEZIERS", - "center": "POINT (784080.6385010054800659 1880619.2173524433746934)", - "surface": 11370000, - "canton": null, - "numero_insee": "30328" - } - }, - { - "pk": 37589, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "THOIRAS", - "center": "POINT (726976.9583173088030890 1897252.0870405756868422)", - "surface": 23080000, - "canton": null, - "numero_insee": "30329" - } - }, - { - "pk": 14045, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "TORNAC", - "center": "POINT (732226.4268928456585854 1892090.9912389134988189)", - "surface": 19610000, - "canton": null, - "numero_insee": "30330" - } - }, - { - "pk": 22723, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "TRESQUES", - "center": "POINT (780675.0785890284460038 1904316.0287052467465401)", - "surface": 17800000, - "canton": null, - "numero_insee": "30331" - } - }, - { - "pk": 18741, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "TREVES", - "center": "POINT (684533.1227294384734705 1896992.6381391570903361)", - "surface": 27180000, - "canton": null, - "numero_insee": "30332" - } - }, - { - "pk": 11166, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "UCHAUD", - "center": "POINT (755392.4388114993926138 1863756.5129679969977587)", - "surface": 8740000, - "canton": null, - "numero_insee": "30333" - } - }, - { - "pk": 16204, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "UZES", - "center": "POINT (766861.6412238370394334 1892385.5049689284060150)", - "surface": 25480000, - "canton": null, - "numero_insee": "30334" - } - }, - { - "pk": 13979, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VABRES", - "center": "POINT (724211.4905792127829045 1892823.8342556117568165)", - "surface": 4830000, - "canton": null, - "numero_insee": "30335" - } - }, - { - "pk": 32436, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VALLABREGUES", - "center": "POINT (784825.7523535398067906 1875419.8448581965640187)", - "surface": 14190000, - "canton": null, - "numero_insee": "30336" - } - }, - { - "pk": 10093, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VALLABRIX", - "center": "POINT (772116.7175474171526730 1898336.6885378353763372)", - "surface": 7950000, - "canton": null, - "numero_insee": "30337" - } - }, - { - "pk": 28091, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VALLERARGUES", - "center": "POINT (761850.1405601496808231 1904856.4087472148239613)", - "surface": 12850000, - "canton": null, - "numero_insee": "30338" - } - }, - { - "pk": 23716, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VALLERAUGUE", - "center": "POINT (702833.8725214637815952 1899249.7872779979370534)", - "surface": 79000000, - "canton": null, - "numero_insee": "30339" - } - }, - { - "pk": 25036, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VALLIGUIERES", - "center": "POINT (780878.4519571099663153 1892204.6159809464588761)", - "surface": 19390000, - "canton": null, - "numero_insee": "30340" - } - }, - { - "pk": 21963, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VAUVERT", - "center": "POINT (759121.4000171606894583 1849071.8285357449203730)", - "surface": 110520000, - "canton": null, - "numero_insee": "30341" - } - }, - { - "pk": 27044, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VENEJAN", - "center": "POINT (786503.3263162970542908 1913475.5519707759376615)", - "surface": 18600000, - "canton": null, - "numero_insee": "30342" - } - }, - { - "pk": 6027, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VERFEUIL", - "center": "POINT (769019.0341773118125275 1909422.3114474411122501)", - "surface": 26180000, - "canton": null, - "numero_insee": "30343" - } - }, - { - "pk": 34276, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VERGEZE", - "center": "POINT (752910.2762091597542167 1861332.7306746381800622)", - "surface": 10090000, - "canton": null, - "numero_insee": "30344" - } - }, - { - "pk": 7496, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LA VERNAREDE", - "center": "POINT (733476.3409755105385557 1921733.5445365337654948)", - "surface": 5710000, - "canton": null, - "numero_insee": "30345" - } - }, - { - "pk": 9486, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VESTRIC-ET-CANDIAC", - "center": "POINT (755413.7286295085214078 1861253.9141616486012936)", - "surface": 10900000, - "canton": null, - "numero_insee": "30347" - } - }, - { - "pk": 28193, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VEZENOBRES", - "center": "POINT (744206.3087478287052363 1895996.8976475431118160)", - "surface": 17070000, - "canton": null, - "numero_insee": "30348" - } - }, - { - "pk": 30947, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VIC-LE-FESQ", - "center": "POINT (739975.3417568816803396 1875538.6117211794480681)", - "surface": 9610000, - "canton": null, - "numero_insee": "30349" - } - }, - { - "pk": 17805, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "LE VIGAN", - "center": "POINT (703427.6389383517671376 1888242.8466540849767625)", - "surface": 17220000, - "canton": null, - "numero_insee": "30350" - } - }, - { - "pk": 36270, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VILLENEUVE-LES-AVIGNON", - "center": "POINT (797321.6458587700035423 1889241.5259507426526397)", - "surface": 18190000, - "canton": null, - "numero_insee": "30351" - } - }, - { - "pk": 3444, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "VILLEVIEILLE", - "center": "POINT (742145.5551429395563900 1867548.2110138025600463)", - "surface": 8340000, - "canton": null, - "numero_insee": "30352" - } - }, - { - "pk": 36192, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "MONTAGNAC", - "center": "POINT (745915.1491144391475245 1883397.6647098553366959)", - "surface": 8710000, - "canton": null, - "numero_insee": "30354" - } - }, - { - "pk": 8675, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "SAINT-PAUL-LES-FONTS", - "center": "POINT (782716.3642941882135347 1899728.4493205416947603)", - "surface": 5390000, - "canton": null, - "numero_insee": "30355" - } - }, - { - "pk": 13676, - "model": "ishtar_common.town", - "fields": { - "departement": 31, - "name": "RODILHAN", - "center": "POINT (768841.6641692935954779 1871479.4173719291575253)", - "surface": 4660000, - "canton": null, - "numero_insee": "30356" - } - }, - { - "pk": 35164, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AGASSAC", - "center": "POINT (482153.5350228972383775 1819912.4674985781311989)", - "surface": 9610000, - "canton": null, - "numero_insee": "31001" - } - }, - { - "pk": 17417, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AIGNES", - "center": "POINT (539059.5127830302808434 1814980.3009720982518047)", - "surface": 22050000, - "canton": null, - "numero_insee": "31002" - } - }, - { - "pk": 31024, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AIGREFEUILLE", - "center": "POINT (539041.5577277297852561 1841109.7679127147421241)", - "surface": 4640000, - "canton": null, - "numero_insee": "31003" - } - }, - { - "pk": 5929, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AYGUESVIVES", - "center": "POINT (539773.4324901787331328 1825398.1229637474752963)", - "surface": 13360000, - "canton": null, - "numero_insee": "31004" - } - }, - { - "pk": 18251, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ALAN", - "center": "POINT (485298.1955729192704894 1802919.1003258458804339)", - "surface": 11460000, - "canton": null, - "numero_insee": "31005" - } - }, - { - "pk": 12856, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ALBIAC", - "center": "POINT (555173.6148575466359034 1839442.5371870645321906)", - "surface": 4810000, - "canton": null, - "numero_insee": "31006" - } - }, - { - "pk": 32957, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AMBAX", - "center": "POINT (486363.0289414688013494 1819346.7659663562662899)", - "surface": 5920000, - "canton": null, - "numero_insee": "31007" - } - }, - { - "pk": 34839, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ANAN", - "center": "POINT (475963.5162369272438809 1817858.7648785789497197)", - "surface": 13690000, - "canton": null, - "numero_insee": "31008" - } - }, - { - "pk": 25267, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ANTICHAN-DE-FRONTIGNES", - "center": "POINT (464301.1216828682227060 1775513.0991973713971674)", - "surface": 4360000, - "canton": null, - "numero_insee": "31009" - } - }, - { - "pk": 29839, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ANTIGNAC", - "center": "POINT (456618.6780039058066905 1760231.4640826676040888)", - "surface": 5780000, - "canton": null, - "numero_insee": "31010" - } - }, - { - "pk": 36125, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARBAS", - "center": "POINT (483005.1258705158834346 1777670.7532388025429100)", - "surface": 7320000, - "canton": null, - "numero_insee": "31011" - } - }, - { - "pk": 10507, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARBON", - "center": "POINT (468778.6697703293757513 1778854.1230487802531570)", - "surface": 4530000, - "canton": null, - "numero_insee": "31012" - } - }, - { - "pk": 14242, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARDIEGE", - "center": "POINT (461808.7869193837977946 1786305.0509128498379141)", - "surface": 3940000, - "canton": null, - "numero_insee": "31013" - } - }, - { - "pk": 31505, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARGUENOS", - "center": "POINT (468316.3396964205312543 1774244.8931065981741995)", - "surface": 10870000, - "canton": null, - "numero_insee": "31014" - } - }, - { - "pk": 22356, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARGUT-DESSOUS", - "center": "POINT (467276.6051710358005948 1766827.5567527932580560)", - "surface": 2750000, - "canton": null, - "numero_insee": "31015" - } - }, - { - "pk": 10497, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARLOS", - "center": "POINT (465591.3318788364995271 1764811.2113654110580683)", - "surface": 9560000, - "canton": null, - "numero_insee": "31017" - } - }, - { - "pk": 25604, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARNAUD-GUILHEM", - "center": "POINT (482762.7590648985351436 1794788.6645147870294750)", - "surface": 7680000, - "canton": null, - "numero_insee": "31018" - } - }, - { - "pk": 6842, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ARTIGUE", - "center": "POINT (460929.2862637900398113 1759566.3835948382038623)", - "surface": 9780000, - "canton": null, - "numero_insee": "31019" - } - }, - { - "pk": 4786, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ASPET", - "center": "POINT (474877.0758971816394478 1779905.9234463642351329)", - "surface": 26490000, - "canton": null, - "numero_insee": "31020" - } - }, - { - "pk": 32813, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ASPRET-SARRAT", - "center": "POINT (468013.9227974395034835 1786556.7686876722145826)", - "surface": 3880000, - "canton": null, - "numero_insee": "31021" - } - }, - { - "pk": 32759, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUCAMVILLE", - "center": "POINT (526232.1337309967493638 1852515.7636281168088317)", - "surface": 3980000, - "canton": null, - "numero_insee": "31022" - } - }, - { - "pk": 4335, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AULON", - "center": "POINT (475913.7775102016166784 1799737.5544361327774823)", - "surface": 15080000, - "canton": null, - "numero_insee": "31023" - } - }, - { - "pk": 24835, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AURAGNE", - "center": "POINT (532799.3820106267230585 1821335.3504760321229696)", - "surface": 13740000, - "canton": null, - "numero_insee": "31024" - } - }, - { - "pk": 27445, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUREVILLE", - "center": "POINT (528711.5873356907395646 1831312.6018665120936930)", - "surface": 6830000, - "canton": null, - "numero_insee": "31025" - } - }, - { - "pk": 19612, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AURIAC-SUR-VENDINELLE", - "center": "POINT (558511.4299087330000475 1835365.8262462783604860)", - "surface": 31040000, - "canton": null, - "numero_insee": "31026" - } - }, - { - "pk": 11687, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AURIBAIL", - "center": "POINT (521827.6757776569575071 1816438.3497243816964328)", - "surface": 9160000, - "canton": null, - "numero_insee": "31027" - } - }, - { - "pk": 16247, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AURIGNAC", - "center": "POINT (480698.1992031150148250 1802280.1828803222160786)", - "surface": 18170000, - "canton": null, - "numero_insee": "31028" - } - }, - { - "pk": 26820, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AURIN", - "center": "POINT (546883.2474518356611952 1837170.7610206138342619)", - "surface": 7520000, - "canton": null, - "numero_insee": "31029" - } - }, - { - "pk": 13320, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUSSEING", - "center": "POINT (493569.5326226878096350 1795479.2040344092529267)", - "surface": 5920000, - "canton": null, - "numero_insee": "31030" - } - }, - { - "pk": 3790, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUSSON", - "center": "POINT (457479.9993759557837620 1789172.5276094267610461)", - "surface": 4400000, - "canton": null, - "numero_insee": "31031" - } - }, - { - "pk": 28723, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUSSONNE", - "center": "POINT (518610.8231210111407563 1854054.0053951414301991)", - "surface": 13960000, - "canton": null, - "numero_insee": "31032" - } - }, - { - "pk": 15061, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUTERIVE", - "center": "POINT (530225.8345786661375314 1817809.8819432645104825)", - "surface": 37410000, - "canton": null, - "numero_insee": "31033" - } - }, - { - "pk": 21359, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUZAS", - "center": "POINT (482436.6443835087702610 1797889.5442587991710752)", - "surface": 7870000, - "canton": null, - "numero_insee": "31034" - } - }, - { - "pk": 7431, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUZEVILLE-TOLOSANE", - "center": "POINT (531169.9723596068797633 1836639.1046697930432856)", - "surface": 6720000, - "canton": null, - "numero_insee": "31035" - } - }, - { - "pk": 9093, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AUZIELLE", - "center": "POINT (537767.7664381065405905 1837795.4150303795468062)", - "surface": 4640000, - "canton": null, - "numero_insee": "31036" - } - }, - { - "pk": 8409, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "AZAS", - "center": "POINT (546510.7347182021476328 1857790.7336704877670854)", - "surface": 12870000, - "canton": null, - "numero_insee": "31038" - } - }, - { - "pk": 26889, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BACHAS", - "center": "POINT (486472.8680181518429890 1806132.5505888853222132)", - "surface": 2650000, - "canton": null, - "numero_insee": "31039" - } - }, - { - "pk": 9345, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BACHOS", - "center": "POINT (458159.0283905436517671 1767652.9797719370108098)", - "surface": 2600000, - "canton": null, - "numero_insee": "31040" - } - }, - { - "pk": 22506, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BAGIRY", - "center": "POINT (459986.4100161974783987 1776678.7146204572636634)", - "surface": 2770000, - "canton": null, - "numero_insee": "31041" - } - }, - { - "pk": 15097, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BAGNERES-DE-LUCHON", - "center": "POINT (459610.7553111502784304 1749543.5655767726711929)", - "surface": 52220000, - "canton": null, - "numero_insee": "31042" - } - }, - { - "pk": 28571, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BALESTA", - "center": "POINT (455575.1175822932273149 1801571.1048365593887866)", - "surface": 7110000, - "canton": null, - "numero_insee": "31043" - } - }, - { - "pk": 33812, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BALMA", - "center": "POINT (532694.8081917788367718 1845862.1808676330838352)", - "surface": 16730000, - "canton": null, - "numero_insee": "31044" - } - }, - { - "pk": 35961, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BARBAZAN", - "center": "POINT (459935.7629050126997754 1782785.4323093011043966)", - "surface": 6130000, - "canton": null, - "numero_insee": "31045" - } - }, - { - "pk": 17337, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BAREN", - "center": "POINT (460590.7546370242489502 1764169.0171011702623218)", - "surface": 3050000, - "canton": null, - "numero_insee": "31046" - } - }, - { - "pk": 9182, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BAX", - "center": "POINT (514631.6144543374539353 1802962.9850020688027143)", - "surface": 6020000, - "canton": null, - "numero_insee": "31047" - } - }, - { - "pk": 5523, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BAZIEGE", - "center": "POINT (542545.4820624720305204 1829125.4745808148290962)", - "surface": 20000000, - "canton": null, - "numero_insee": "31048" - } - }, - { - "pk": 33831, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BAZUS", - "center": "POINT (534081.9227359816431999 1859589.0582727417349815)", - "surface": 9200000, - "canton": null, - "numero_insee": "31049" - } - }, - { - "pk": 13716, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEAUCHALOT", - "center": "POINT (480389.2533597231376916 1791264.8818704530131072)", - "surface": 6420000, - "canton": null, - "numero_insee": "31050" - } - }, - { - "pk": 9758, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEAUFORT", - "center": "POINT (500200.4515633294358850 1828772.4337517276871949)", - "surface": 8520000, - "canton": null, - "numero_insee": "31051" - } - }, - { - "pk": 23478, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEAUMONT-SUR-LEZE", - "center": "POINT (520395.2940355770988390 1820130.6326375086791813)", - "surface": 26420000, - "canton": null, - "numero_insee": "31052" - } - }, - { - "pk": 32300, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEAUPUY", - "center": "POINT (537162.7703948987182230 1850304.4034168205689639)", - "surface": 5860000, - "canton": null, - "numero_insee": "31053" - } - }, - { - "pk": 10018, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEAUTEVILLE", - "center": "POINT (550960.5816391983535141 1816481.3288481945637614)", - "surface": 4560000, - "canton": null, - "numero_insee": "31054" - } - }, - { - "pk": 32122, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEAUVILLE", - "center": "POINT (554054.3699598764069378 1829622.1046166182495654)", - "surface": 6130000, - "canton": null, - "numero_insee": "31055" - } - }, - { - "pk": 25211, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEAUZELLE", - "center": "POINT (522230.4479777968954295 1852182.0581099917180836)", - "surface": 4640000, - "canton": null, - "numero_insee": "31056" - } - }, - { - "pk": 10092, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BELBERAUD", - "center": "POINT (537801.1980404380010441 1833791.1776012810878456)", - "surface": 7490000, - "canton": null, - "numero_insee": "31057" - } - }, - { - "pk": 25975, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BELBEZE-DE-LAURAGAIS", - "center": "POINT (536761.8745954806217924 1826374.1143081034533679)", - "surface": 3670000, - "canton": null, - "numero_insee": "31058" - } - }, - { - "pk": 30866, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BELBEZE-EN-COMMINGES", - "center": "POINT (493388.4657870745286345 1793175.0315808884333819)", - "surface": 9660000, - "canton": null, - "numero_insee": "31059" - } - }, - { - "pk": 25572, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BELESTA-EN-LAURAGAIS", - "center": "POINT (558986.3760231536580250 1826459.7182275732047856)", - "surface": 5660000, - "canton": null, - "numero_insee": "31060" - } - }, - { - "pk": 27058, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BELLEGARDE-SAINTE-MARIE", - "center": "POINT (500095.6262531270040199 1853399.2478902244474739)", - "surface": 11810000, - "canton": null, - "numero_insee": "31061" - } - }, - { - "pk": 9095, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BELLESSERRE", - "center": "POINT (500392.7482540235505439 1865815.5093404976651073)", - "surface": 3390000, - "canton": null, - "numero_insee": "31062" - } - }, - { - "pk": 34316, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BENQUE", - "center": "POINT (484560.8288950784481131 1807318.0389590417034924)", - "surface": 11420000, - "canton": null, - "numero_insee": "31063" - } - }, - { - "pk": 6318, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BENQUE-DESSOUS-ET-DESSUS", - "center": "POINT (452823.5676439601811580 1759098.6985775702632964)", - "surface": 3710000, - "canton": null, - "numero_insee": "31064" - } - }, - { - "pk": 25403, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BERAT", - "center": "POINT (505377.5604450121172704 1820205.7449583245906979)", - "surface": 24340000, - "canton": null, - "numero_insee": "31065" - } - }, - { - "pk": 5620, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BESSIERES", - "center": "POINT (539531.6500590729992837 1866341.9862066134810448)", - "surface": 16750000, - "canton": null, - "numero_insee": "31066" - } - }, - { - "pk": 13303, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BEZINS-GARRAUX", - "center": "POINT (466232.2955521825933829 1772025.0130500299856067)", - "surface": 7860000, - "canton": null, - "numero_insee": "31067" - } - }, - { - "pk": 6886, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BILLIERE", - "center": "POINT (451725.6587679749354720 1758689.1244652150198817)", - "surface": 2190000, - "canton": null, - "numero_insee": "31068" - } - }, - { - "pk": 36268, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BLAGNAC", - "center": "POINT (522554.1327902750344947 1849381.6256523411720991)", - "surface": 17200000, - "canton": null, - "numero_insee": "31069" - } - }, - { - "pk": 11020, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BLAJAN", - "center": "POINT (462637.1517992379376665 1807136.0059729716740549)", - "surface": 12780000, - "canton": null, - "numero_insee": "31070" - } - }, - { - "pk": 31992, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOIS-DE-LA-PIERRE", - "center": "POINT (504510.7661961295525543 1816093.8460696546826512)", - "surface": 7450000, - "canton": null, - "numero_insee": "31071" - } - }, - { - "pk": 11912, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOISSEDE", - "center": "POINT (477415.2394034775788896 1823877.6633173499722034)", - "surface": 3930000, - "canton": null, - "numero_insee": "31072" - } - }, - { - "pk": 11237, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BONDIGOUX", - "center": "POINT (536084.6715291289146990 1871518.9543527602218091)", - "surface": 7520000, - "canton": null, - "numero_insee": "31073" - } - }, - { - "pk": 32964, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BONREPOS-RIQUET", - "center": "POINT (542346.4853555274894461 1852950.5951365313958377)", - "surface": 5780000, - "canton": null, - "numero_insee": "31074" - } - }, - { - "pk": 37996, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BONREPOS-SUR-AUSSONNELLE", - "center": "POINT (502820.8340553218731657 1838705.4375065942294896)", - "surface": 10260000, - "canton": null, - "numero_insee": "31075" - } - }, - { - "pk": 34437, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BORDES-DE-RIVIERE", - "center": "POINT (461255.0960883055813611 1792707.9019378945231438)", - "surface": 8460000, - "canton": null, - "numero_insee": "31076" - } - }, - { - "pk": 34170, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE BORN", - "center": "POINT (535835.1648267369018868 1877423.3676108587533236)", - "surface": 10940000, - "canton": null, - "numero_insee": "31077" - } - }, - { - "pk": 33517, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOUDRAC", - "center": "POINT (451784.2662614680593833 1799937.8351486488245428)", - "surface": 11470000, - "canton": null, - "numero_insee": "31078" - } - }, - { - "pk": 17382, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOULOC", - "center": "POINT (526015.9773573719430715 1866429.4172270663548261)", - "surface": 18770000, - "canton": null, - "numero_insee": "31079" - } - }, - { - "pk": 3377, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOULOGNE-SUR-GESSE", - "center": "POINT (462903.4287651284248568 1811242.9251945712603629)", - "surface": 24700000, - "canton": null, - "numero_insee": "31080" - } - }, - { - "pk": 24517, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOURG-D'OUEIL", - "center": "POINT (448480.6106459872098640 1763668.1506863450631499)", - "surface": 9650000, - "canton": null, - "numero_insee": "31081" - } - }, - { - "pk": 15752, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOURG-SAINT-BERNARD", - "center": "POINT (548418.8526208093389869 1845092.4822497353889048)", - "surface": 16570000, - "canton": null, - "numero_insee": "31082" - } - }, - { - "pk": 13997, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOUSSAN", - "center": "POINT (481072.8488446184783243 1805386.8685457054525614)", - "surface": 12710000, - "canton": null, - "numero_insee": "31083" - } - }, - { - "pk": 11837, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOUSSENS", - "center": "POINT (487841.6852652092347853 1798034.5838268327061087)", - "surface": 4380000, - "canton": null, - "numero_insee": "31084" - } - }, - { - "pk": 33749, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOUTX", - "center": "POINT (471761.6536701839067973 1769267.6140504586510360)", - "surface": 47450000, - "canton": null, - "numero_insee": "31085" - } - }, - { - "pk": 10764, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BOUZIN", - "center": "POINT (481619.9700787924230099 1799784.9550234682392329)", - "surface": 4270000, - "canton": null, - "numero_insee": "31086" - } - }, - { - "pk": 7852, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BRAGAYRAC", - "center": "POINT (497365.8202256959630176 1832553.1526473374105990)", - "surface": 8330000, - "canton": null, - "numero_insee": "31087" - } - }, - { - "pk": 18859, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BRAX", - "center": "POINT (510664.1523325049784034 1846579.5144067239016294)", - "surface": 4500000, - "canton": null, - "numero_insee": "31088" - } - }, - { - "pk": 13587, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BRETX", - "center": "POINT (507877.1186718433164060 1856667.5927449867594987)", - "surface": 8530000, - "canton": null, - "numero_insee": "31089" - } - }, - { - "pk": 15271, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BRIGNEMONT", - "center": "POINT (492099.1143679021624848 1863944.5231875078752637)", - "surface": 22210000, - "canton": null, - "numero_insee": "31090" - } - }, - { - "pk": 17917, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BRUGUIERES", - "center": "POINT (525178.4910061653936282 1858813.9990219979081303)", - "surface": 9090000, - "canton": null, - "numero_insee": "31091" - } - }, - { - "pk": 7107, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BURGALAYS", - "center": "POINT (460775.2000277345068753 1766072.7901092451065779)", - "surface": 4880000, - "canton": null, - "numero_insee": "31092" - } - }, - { - "pk": 19964, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE BURGAUD", - "center": "POINT (503994.8188426755950786 1866045.7105254805646837)", - "surface": 24320000, - "canton": null, - "numero_insee": "31093" - } - }, - { - "pk": 17641, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BUZET-SUR-TARN", - "center": "POINT (541660.5808894672663882 1863156.2187161482870579)", - "surface": 30440000, - "canton": null, - "numero_insee": "31094" - } - }, - { - "pk": 13053, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CABANAC-CAZAUX", - "center": "POINT (469548.8052799723809585 1782564.8418657104484737)", - "surface": 3840000, - "canton": null, - "numero_insee": "31095" - } - }, - { - "pk": 6428, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CABANAC-SEGUENVILLE", - "center": "POINT (493881.0044847541139461 1866362.0010472210124135)", - "surface": 10250000, - "canton": null, - "numero_insee": "31096" - } - }, - { - "pk": 28050, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE CABANIAL", - "center": "POINT (562113.5684079092461616 1835596.1853453833609819)", - "surface": 8630000, - "canton": null, - "numero_insee": "31097" - } - }, - { - "pk": 37280, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CADOURS", - "center": "POINT (495843.7632328852778301 1859070.2250866203103215)", - "surface": 10880000, - "canton": null, - "numero_insee": "31098" - } - }, - { - "pk": 24725, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAIGNAC", - "center": "POINT (548784.9923556470312178 1813259.4837277703918517)", - "surface": 9470000, - "canton": null, - "numero_insee": "31099" - } - }, - { - "pk": 27338, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CALMONT", - "center": "POINT (542210.5033400390530005 1809300.0822581683751196)", - "surface": 40520000, - "canton": null, - "numero_insee": "31100" - } - }, - { - "pk": 29581, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAMBERNARD", - "center": "POINT (506100.9003314881119877 1829522.3433185869362205)", - "surface": 8530000, - "canton": null, - "numero_insee": "31101" - } - }, - { - "pk": 31856, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAMBIAC", - "center": "POINT (555635.1444013023283333 1832138.1538607738912106)", - "surface": 7730000, - "canton": null, - "numero_insee": "31102" - } - }, - { - "pk": 10847, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CANENS", - "center": "POINT (518243.8589355782605708 1801991.9359931538347155)", - "surface": 4830000, - "canton": null, - "numero_insee": "31103" - } - }, - { - "pk": 20616, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAPENS", - "center": "POINT (512526.8644098984077573 1815259.5755092119798064)", - "surface": 6920000, - "canton": null, - "numero_insee": "31104" - } - }, - { - "pk": 25976, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CARAGOUDES", - "center": "POINT (549518.6276894608745351 1833288.3786879566032439)", - "surface": 8330000, - "canton": null, - "numero_insee": "31105" - } - }, - { - "pk": 3628, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CARAMAN", - "center": "POINT (552696.0796849922044203 1836418.4404669040814042)", - "surface": 30670000, - "canton": null, - "numero_insee": "31106" - } - }, - { - "pk": 19595, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CARBONNE", - "center": "POINT (509053.1180649709422141 1811626.5165151732508093)", - "surface": 26840000, - "canton": null, - "numero_insee": "31107" - } - }, - { - "pk": 16526, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CARDEILHAC", - "center": "POINT (464793.4099139869795181 1800646.4017241606488824)", - "surface": 18410000, - "canton": null, - "numero_insee": "31108" - } - }, - { - "pk": 20050, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASSAGNABERE-TOURNAS", - "center": "POINT (474874.4509635351132601 1804334.2314387043006718)", - "surface": 25410000, - "canton": null, - "numero_insee": "31109" - } - }, - { - "pk": 27697, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASSAGNE", - "center": "POINT (490293.4083195467246696 1792148.1313958305399865)", - "surface": 11090000, - "canton": null, - "numero_insee": "31110" - } - }, - { - "pk": 9776, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTAGNAC", - "center": "POINT (519126.4757546123582870 1804201.8293693144805729)", - "surface": 10850000, - "canton": null, - "numero_insee": "31111" - } - }, - { - "pk": 30286, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTAGNEDE", - "center": "POINT (488958.4674884756095707 1784127.7211794324684888)", - "surface": 3250000, - "canton": null, - "numero_insee": "31112" - } - }, - { - "pk": 33952, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTANET-TOLOSAN", - "center": "POINT (532485.5506972398143262 1834948.1632722734939307)", - "surface": 8240000, - "canton": null, - "numero_insee": "31113" - } - }, - { - "pk": 25435, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTELBIAGUE", - "center": "POINT (484868.1127419430413283 1782391.7337510492652655)", - "surface": 5860000, - "canton": null, - "numero_insee": "31114" - } - }, - { - "pk": 28266, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTELGAILLARD", - "center": "POINT (483474.0617835244629532 1817620.8143605785444379)", - "surface": 6810000, - "canton": null, - "numero_insee": "31115" - } - }, - { - "pk": 12177, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTELGINEST", - "center": "POINT (527208.9662085984600708 1855427.1475824420340359)", - "surface": 8150000, - "canton": null, - "numero_insee": "31116" - } - }, - { - "pk": 3251, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTELMAUROU", - "center": "POINT (535430.9059088610811159 1853893.9683862132951617)", - "surface": 16980000, - "canton": null, - "numero_insee": "31117" - } - }, - { - "pk": 18253, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTELNAU-D'ESTRETEFONDS", - "center": "POINT (521412.8748672230867669 1866190.8125690522138029)", - "surface": 28670000, - "canton": null, - "numero_insee": "31118" - } - }, - { - "pk": 7463, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTELNAU-PICAMPEAU", - "center": "POINT (492525.3490585634135641 1812690.3387527777813375)", - "surface": 11510000, - "canton": null, - "numero_insee": "31119" - } - }, - { - "pk": 34677, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTERA-VIGNOLES", - "center": "POINT (473630.7596314348047599 1809429.7716134008951485)", - "surface": 4180000, - "canton": null, - "numero_insee": "31121" - } - }, - { - "pk": 24505, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTIES-LABRANDE", - "center": "POINT (490806.0374163653468713 1814778.4462132358457893)", - "surface": 8890000, - "canton": null, - "numero_insee": "31122" - } - }, - { - "pk": 22067, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTILLON-DE-LARBOUST", - "center": "POINT (454407.4058547232998535 1749200.0614174944348633)", - "surface": 28040000, - "canton": null, - "numero_insee": "31123" - } - }, - { - "pk": 19658, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CASTILLON-DE-SAINT-MARTORY", - "center": "POINT (478865.9926657251780853 1793855.2450573500245810)", - "surface": 11040000, - "canton": null, - "numero_insee": "31124" - } - }, - { - "pk": 9605, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CATHERVIELLE", - "center": "POINT (450017.1237226386438124 1759475.9129719207994640)", - "surface": 3630000, - "canton": null, - "numero_insee": "31125" - } - }, - { - "pk": 19687, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAUBIAC", - "center": "POINT (498059.3839650162844919 1857486.8764688014052808)", - "surface": 8090000, - "canton": null, - "numero_insee": "31126" - } - }, - { - "pk": 22381, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAUBOUS", - "center": "POINT (451297.0021704699611291 1762089.5976957059465349)", - "surface": 3990000, - "canton": null, - "numero_insee": "31127" - } - }, - { - "pk": 8803, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAUJAC", - "center": "POINT (528583.3073224652325734 1810688.0502740088850260)", - "surface": 10830000, - "canton": null, - "numero_insee": "31128" - } - }, - { - "pk": 19197, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZARIL-LASPENES", - "center": "POINT (456043.7402937074657530 1757123.0227077286690474)", - "surface": 2430000, - "canton": null, - "numero_insee": "31129" - } - }, - { - "pk": 33030, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZARIL-TAMBOURES", - "center": "POINT (453794.7378980404464528 1798953.3422712231986225)", - "surface": 7000000, - "canton": null, - "numero_insee": "31130" - } - }, - { - "pk": 7967, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZAUNOUS", - "center": "POINT (468189.6410078338813037 1777447.5945857306942344)", - "surface": 4700000, - "canton": null, - "numero_insee": "31131" - } - }, - { - "pk": 8580, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZAUX-LAYRISSE", - "center": "POINT (457483.1554205996217206 1764643.8355011022649705)", - "surface": 2730000, - "canton": null, - "numero_insee": "31132" - } - }, - { - "pk": 19189, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZEAUX-DE-LARBOUST", - "center": "POINT (451885.5129345363238826 1751481.8965918559115380)", - "surface": 21570000, - "canton": null, - "numero_insee": "31133" - } - }, - { - "pk": 25637, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZENEUVE-MONTAUT", - "center": "POINT (479826.3312872581882402 1798768.8971129122655839)", - "surface": 4650000, - "canton": null, - "numero_insee": "31134" - } - }, - { - "pk": 33761, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZERES", - "center": "POINT (498715.2179895783774555 1802730.3351174402050674)", - "surface": 19800000, - "canton": null, - "numero_insee": "31135" - } - }, - { - "pk": 32301, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CEPET", - "center": "POINT (527364.0851773353060707 1860834.4513750742189586)", - "surface": 7130000, - "canton": null, - "numero_insee": "31136" - } - }, - { - "pk": 28275, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CESSALES", - "center": "POINT (551961.3414779091253877 1828503.3592434362508357)", - "surface": 3360000, - "canton": null, - "numero_insee": "31137" - } - }, - { - "pk": 23950, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CHARLAS", - "center": "POINT (466159.2113618018338457 1804962.6939814090728760)", - "surface": 11430000, - "canton": null, - "numero_insee": "31138" - } - }, - { - "pk": 5649, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CHAUM", - "center": "POINT (463226.4839550998876803 1772300.4258248182013631)", - "surface": 5740000, - "canton": null, - "numero_insee": "31139" - } - }, - { - "pk": 31488, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CHEIN-DESSUS", - "center": "POINT (480590.8357627306832001 1779052.3312770142219961)", - "surface": 12700000, - "canton": null, - "numero_insee": "31140" - } - }, - { - "pk": 37070, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CIADOUX", - "center": "POINT (470247.0319339206907898 1806998.9217456611804664)", - "surface": 9710000, - "canton": null, - "numero_insee": "31141" - } - }, - { - "pk": 13144, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CIER-DE-LUCHON", - "center": "POINT (456696.3771263476228341 1762935.3029155372641981)", - "surface": 10530000, - "canton": null, - "numero_insee": "31142" - } - }, - { - "pk": 3733, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CIER-DE-RIVIERE", - "center": "POINT (460414.7245220749173313 1785392.4388669664040208)", - "surface": 9410000, - "canton": null, - "numero_insee": "31143" - } - }, - { - "pk": 15816, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CIERP-GAUD", - "center": "POINT (460649.3478114589815959 1769175.4005296537652612)", - "surface": 14560000, - "canton": null, - "numero_insee": "31144" - } - }, - { - "pk": 20329, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CINTEGABELLE", - "center": "POINT (534880.9041909632505849 1811841.8646568125113845)", - "surface": 53600000, - "canton": null, - "numero_insee": "31145" - } - }, - { - "pk": 5268, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CIRES", - "center": "POINT (450290.9102992038242519 1762681.9694049870595336)", - "surface": 4900000, - "canton": null, - "numero_insee": "31146" - } - }, - { - "pk": 11018, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CLARAC", - "center": "POINT (459662.4815780614153482 1791593.4157767153810710)", - "surface": 4690000, - "canton": null, - "numero_insee": "31147" - } - }, - { - "pk": 11110, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CLERMONT-LE-FORT", - "center": "POINT (527531.1884410794591531 1828799.9215365853160620)", - "surface": 10200000, - "canton": null, - "numero_insee": "31148" - } - }, - { - "pk": 4553, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "COLOMIERS", - "center": "POINT (518378.0921576386899687 1845943.0025529989507049)", - "surface": 21040000, - "canton": null, - "numero_insee": "31149" - } - }, - { - "pk": 27270, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CORNEBARRIEU", - "center": "POINT (518042.7341924720676616 1850144.9127535661682487)", - "surface": 18830000, - "canton": null, - "numero_insee": "31150" - } - }, - { - "pk": 12571, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "COUEILLES", - "center": "POINT (481476.0736036255257204 1817103.6411249767988920)", - "surface": 6490000, - "canton": null, - "numero_insee": "31152" - } - }, - { - "pk": 36571, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "COULADERE", - "center": "POINT (498837.8182252118131146 1800028.2389754266478121)", - "surface": 2290000, - "canton": null, - "numero_insee": "31153" - } - }, - { - "pk": 14157, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "COURET", - "center": "POINT (475943.3669026449788362 1784119.6856631133705378)", - "surface": 4320000, - "canton": null, - "numero_insee": "31155" - } - }, - { - "pk": 8978, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "COX", - "center": "POINT (495611.9125251779914834 1862872.5184795500244945)", - "surface": 4090000, - "canton": null, - "numero_insee": "31156" - } - }, - { - "pk": 28722, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CUGNAUX", - "center": "POINT (519540.9993082818109542 1838544.3743269774131477)", - "surface": 13020000, - "canton": null, - "numero_insee": "31157" - } - }, - { - "pk": 30184, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CUGURON", - "center": "POINT (451460.1574563130852766 1790724.4863511940930039)", - "surface": 7040000, - "canton": null, - "numero_insee": "31158" - } - }, - { - "pk": 28142, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE CUING", - "center": "POINT (459431.5451919550541788 1795295.7935651126317680)", - "surface": 13030000, - "canton": null, - "numero_insee": "31159" - } - }, - { - "pk": 10749, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "DAUX", - "center": "POINT (513501.3163073324249126 1854511.9851493928581476)", - "surface": 16820000, - "canton": null, - "numero_insee": "31160" - } - }, - { - "pk": 9558, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "DEYME", - "center": "POINT (534817.2339154296787456 1831463.6651188386604190)", - "surface": 7060000, - "canton": null, - "numero_insee": "31161" - } - }, - { - "pk": 31023, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "DONNEVILLE", - "center": "POINT (536328.0202650149585679 1830375.0304604857228696)", - "surface": 2710000, - "canton": null, - "numero_insee": "31162" - } - }, - { - "pk": 19102, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "DREMIL-LAFAGE", - "center": "POINT (540623.1827411822741851 1843525.6738132431637496)", - "surface": 12560000, - "canton": null, - "numero_insee": "31163" - } - }, - { - "pk": 11023, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "DRUDAS", - "center": "POINT (500115.7609625383629464 1863010.1005494203418493)", - "surface": 11290000, - "canton": null, - "numero_insee": "31164" - } - }, - { - "pk": 26189, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "EAUNES", - "center": "POINT (520650.5484772224444896 1825538.9089472675696015)", - "surface": 14940000, - "canton": null, - "numero_insee": "31165" - } - }, - { - "pk": 21522, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "EMPEAUX", - "center": "POINT (498121.6925165440770797 1837965.5419955465476960)", - "surface": 4520000, - "canton": null, - "numero_insee": "31166" - } - }, - { - "pk": 27316, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ENCAUSSE-LES-THERMES", - "center": "POINT (470132.0136022294755094 1784672.1340744365006685)", - "surface": 8140000, - "canton": null, - "numero_insee": "31167" - } - }, - { - "pk": 12217, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "EOUX", - "center": "POINT (481740.3349053979036398 1809397.0144308065064251)", - "surface": 9260000, - "canton": null, - "numero_insee": "31168" - } - }, - { - "pk": 14203, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESCALQUENS", - "center": "POINT (536483.9407446435652673 1835682.3271660136524588)", - "surface": 8510000, - "canton": null, - "numero_insee": "31169" - } - }, - { - "pk": 33762, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESCANECRABE", - "center": "POINT (471532.6477436046116054 1808911.7781308079138398)", - "surface": 16080000, - "canton": null, - "numero_insee": "31170" - } - }, - { - "pk": 28920, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESPANES", - "center": "POINT (531042.4320531187113374 1827928.1946561499498785)", - "surface": 3590000, - "canton": null, - "numero_insee": "31171" - } - }, - { - "pk": 8446, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESPARRON", - "center": "POINT (475948.2071349587058648 1807646.9467869997024536)", - "surface": 5560000, - "canton": null, - "numero_insee": "31172" - } - }, - { - "pk": 22380, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESPERCE", - "center": "POINT (523874.0681165714631788 1811149.3444278135430068)", - "surface": 16520000, - "canton": null, - "numero_insee": "31173" - } - }, - { - "pk": 22442, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESTADENS", - "center": "POINT (478060.6403794668149203 1782335.1700268774293363)", - "surface": 17580000, - "canton": null, - "numero_insee": "31174" - } - }, - { - "pk": 25829, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESTANCARBON", - "center": "POINT (473084.6021934761083685 1790803.7480746074579656)", - "surface": 6350000, - "canton": null, - "numero_insee": "31175" - } - }, - { - "pk": 30456, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESTENOS", - "center": "POINT (460823.8282868104288355 1772280.4951262865215540)", - "surface": 3370000, - "canton": null, - "numero_insee": "31176" - } - }, - { - "pk": 6555, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "EUP", - "center": "POINT (464842.3753431775839999 1770611.8332106664311141)", - "surface": 2240000, - "canton": null, - "numero_insee": "31177" - } - }, - { - "pk": 16527, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FABAS", - "center": "POINT (482609.6963115840917453 1813208.5973088503815234)", - "surface": 18630000, - "canton": null, - "numero_insee": "31178" - } - }, - { - "pk": 35365, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE FAGET", - "center": "POINT (558669.7766371774487197 1840372.7887204771395773)", - "surface": 11480000, - "canton": null, - "numero_insee": "31179" - } - }, - { - "pk": 9693, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FALGA", - "center": "POINT (560250.0772963837953284 1830975.3930617426522076)", - "surface": 5410000, - "canton": null, - "numero_insee": "31180" - } - }, - { - "pk": 34180, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE FAUGA", - "center": "POINT (515371.5868598212255165 1822291.2685236139222980)", - "surface": 9160000, - "canton": null, - "numero_insee": "31181" - } - }, - { - "pk": 7257, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FENOUILLET", - "center": "POINT (523616.0547237872960977 1854095.7329926737584174)", - "surface": 9760000, - "canton": null, - "numero_insee": "31182" - } - }, - { - "pk": 16853, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FIGAROL", - "center": "POINT (483218.9339964415412396 1788084.6734332337509841)", - "surface": 11850000, - "canton": null, - "numero_insee": "31183" - } - }, - { - "pk": 10217, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FLOURENS", - "center": "POINT (536712.3876123127993196 1844293.9187221352476627)", - "surface": 9710000, - "canton": null, - "numero_insee": "31184" - } - }, - { - "pk": 7591, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FOLCARDE", - "center": "POINT (556014.1520949285477400 1822730.6525856570806354)", - "surface": 2290000, - "canton": null, - "numero_insee": "31185" - } - }, - { - "pk": 13409, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FONBEAUZARD", - "center": "POINT (527124.7264486334752291 1853524.3252733994740993)", - "surface": 1290000, - "canton": null, - "numero_insee": "31186" - } - }, - { - "pk": 28741, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FONSORBES", - "center": "POINT (511042.8487313886871561 1837172.0953463420737535)", - "surface": 19440000, - "canton": null, - "numero_insee": "31187" - } - }, - { - "pk": 28125, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FONTENILLES", - "center": "POINT (507816.9529959827195853 1839848.2721512932330370)", - "surface": 20200000, - "canton": null, - "numero_insee": "31188" - } - }, - { - "pk": 5163, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FORGUES", - "center": "POINT (495115.8373618242330849 1826227.2908728048205376)", - "surface": 5290000, - "canton": null, - "numero_insee": "31189" - } - }, - { - "pk": 22897, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FOS", - "center": "POINT (469809.2975764597067609 1763244.3281886209733784)", - "surface": 18460000, - "canton": null, - "numero_insee": "31190" - } - }, - { - "pk": 7874, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FOUGARON", - "center": "POINT (485418.5885915161925368 1776389.2884233149234205)", - "surface": 9190000, - "canton": null, - "numero_insee": "31191" - } - }, - { - "pk": 26376, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FOURQUEVAUX", - "center": "POINT (542011.5058460602303967 1833125.5446715261787176)", - "surface": 10210000, - "canton": null, - "numero_insee": "31192" - } - }, - { - "pk": 14567, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE FOUSSERET", - "center": "POINT (496551.3101420793100260 1810120.8447904018685222)", - "surface": 38430000, - "canton": null, - "numero_insee": "31193" - } - }, - { - "pk": 11790, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRANCARVILLE", - "center": "POINT (552341.3673390239709988 1842922.7961535702925175)", - "surface": 7040000, - "canton": null, - "numero_insee": "31194" - } - }, - { - "pk": 28793, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRANCAZAL", - "center": "POINT (490500.9046031452016905 1779234.8211919555906206)", - "surface": 5490000, - "canton": null, - "numero_insee": "31195" - } - }, - { - "pk": 34449, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRANCON", - "center": "POINT (490266.1569015152053908 1807465.5822604268323630)", - "surface": 9600000, - "canton": null, - "numero_insee": "31196" - } - }, - { - "pk": 31300, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRANQUEVIELLE", - "center": "POINT (453037.8441895024734549 1793640.9297332509886473)", - "surface": 10960000, - "canton": null, - "numero_insee": "31197" - } - }, - { - "pk": 35960, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE FRECHET", - "center": "POINT (485526.7028277817880735 1799517.0745917144231498)", - "surface": 4290000, - "canton": null, - "numero_insee": "31198" - } - }, - { - "pk": 36560, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRONSAC", - "center": "POINT (463013.8049264461733401 1773800.4237560699693859)", - "surface": 4140000, - "canton": null, - "numero_insee": "31199" - } - }, - { - "pk": 28583, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRONTIGNAN-DE-COMMINGES", - "center": "POINT (463405.9416889467975125 1774804.8509447844699025)", - "surface": 2600000, - "canton": null, - "numero_insee": "31200" - } - }, - { - "pk": 8083, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRONTIGNAN-SAVES", - "center": "POINT (484431.0414835959672928 1822934.8126678743865341)", - "surface": 2830000, - "canton": null, - "numero_insee": "31201" - } - }, - { - "pk": 19984, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FRONTON", - "center": "POINT (522860.1784649276523851 1872710.0599926812574267)", - "surface": 46060000, - "canton": null, - "numero_insee": "31202" - } - }, - { - "pk": 12043, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FROUZINS", - "center": "POINT (517060.0465925632743165 1835920.7625317850615829)", - "surface": 7860000, - "canton": null, - "numero_insee": "31203" - } - }, - { - "pk": 8449, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "FUSTIGNAC", - "center": "POINT (490029.3159524069633335 1811868.6653740191832185)", - "surface": 4000000, - "canton": null, - "numero_insee": "31204" - } - }, - { - "pk": 23652, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GAGNAC-SUR-GARONNE", - "center": "POINT (521392.0540477585163899 1856680.0886304513551295)", - "surface": 4670000, - "canton": null, - "numero_insee": "31205" - } - }, - { - "pk": 16174, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GAILLAC-TOULZA", - "center": "POINT (528318.8952622589422390 1806380.9041994039434940)", - "surface": 40590000, - "canton": null, - "numero_insee": "31206" - } - }, - { - "pk": 3201, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GALIE", - "center": "POINT (460775.6679209680296481 1778086.9012627205811441)", - "surface": 2970000, - "canton": null, - "numero_insee": "31207" - } - }, - { - "pk": 21500, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GANTIES", - "center": "POINT (477531.8187257481040433 1785734.7447077073156834)", - "surface": 12160000, - "canton": null, - "numero_insee": "31208" - } - }, - { - "pk": 33790, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GARAC", - "center": "POINT (499482.5032382648205385 1854895.8198809779714793)", - "surface": 6090000, - "canton": null, - "numero_insee": "31209" - } - }, - { - "pk": 29151, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GARDOUCH", - "center": "POINT (546522.4017726844176650 1820448.8051330819725990)", - "surface": 16320000, - "canton": null, - "numero_insee": "31210" - } - }, - { - "pk": 10859, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GARGAS", - "center": "POINT (529254.3717622697586194 1862251.7746962076053023)", - "surface": 7420000, - "canton": null, - "numero_insee": "31211" - } - }, - { - "pk": 13410, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GARIDECH", - "center": "POINT (536605.4197112224064767 1857107.3402309040538967)", - "surface": 7120000, - "canton": null, - "numero_insee": "31212" - } - }, - { - "pk": 9748, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GARIN", - "center": "POINT (449230.3334473298164085 1757767.3779753681737930)", - "surface": 5600000, - "canton": null, - "numero_insee": "31213" - } - }, - { - "pk": 6634, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GEMIL", - "center": "POINT (540185.7714142499025911 1859940.3490545700769871)", - "surface": 2770000, - "canton": null, - "numero_insee": "31216" - } - }, - { - "pk": 12222, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GENOS", - "center": "POINT (463673.8814509598305449 1778711.6455029058270156)", - "surface": 3490000, - "canton": null, - "numero_insee": "31217" - } - }, - { - "pk": 5412, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GENSAC-DE-BOULOGNE", - "center": "POINT (459027.4473351858905517 1807806.8728049122728407)", - "surface": 11040000, - "canton": null, - "numero_insee": "31218" - } - }, - { - "pk": 19886, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GENSAC-SUR-GARONNE", - "center": "POINT (502824.6615938337054104 1802163.8446279105264693)", - "surface": 10470000, - "canton": null, - "numero_insee": "31219" - } - }, - { - "pk": 22552, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GIBEL", - "center": "POINT (546298.1959078235086054 1811336.5256949302274734)", - "surface": 19420000, - "canton": null, - "numero_insee": "31220" - } - }, - { - "pk": 6433, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GOUAUX-DE-LARBOUST", - "center": "POINT (447453.2055377626093104 1754749.0918415933847427)", - "surface": 10780000, - "canton": null, - "numero_insee": "31221" - } - }, - { - "pk": 26577, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GOUAUX-DE-LUCHON", - "center": "POINT (461107.0884223871398717 1762271.0541552214417607)", - "surface": 14450000, - "canton": null, - "numero_insee": "31222" - } - }, - { - "pk": 10406, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GOUDEX", - "center": "POINT (487954.7577775886747986 1820561.3664557980373502)", - "surface": 2620000, - "canton": null, - "numero_insee": "31223" - } - }, - { - "pk": 8843, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GOURDAN-POLIGNAN", - "center": "POINT (456298.6058857936877757 1786759.9381227958947420)", - "surface": 5270000, - "canton": null, - "numero_insee": "31224" - } - }, - { - "pk": 5298, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GOUTEVERNISSE", - "center": "POINT (505329.8725448125624098 1801884.3545524976216257)", - "surface": 4850000, - "canton": null, - "numero_insee": "31225" - } - }, - { - "pk": 7466, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GOUZENS", - "center": "POINT (505862.0892396541894414 1798084.3962818039581180)", - "surface": 5630000, - "canton": null, - "numero_insee": "31226" - } - }, - { - "pk": 32521, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GOYRANS", - "center": "POINT (526208.0955243586795405 1831391.8319204873405397)", - "surface": 5720000, - "canton": null, - "numero_insee": "31227" - } - }, - { - "pk": 3355, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GRAGNAGUE", - "center": "POINT (539036.3439081899123266 1853723.8451934794429690)", - "surface": 12970000, - "canton": null, - "numero_insee": "31228" - } - }, - { - "pk": 16010, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GRATENS", - "center": "POINT (501320.6598192349774763 1814465.4608094459399581)", - "surface": 15510000, - "canton": null, - "numero_insee": "31229" - } - }, - { - "pk": 11362, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GRATENTOUR", - "center": "POINT (527187.2564698025817052 1858029.8628101930953562)", - "surface": 4040000, - "canton": null, - "numero_insee": "31230" - } - }, - { - "pk": 28719, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GRAZAC", - "center": "POINT (527767.4133725760038942 1812483.3078476972877979)", - "surface": 7220000, - "canton": null, - "numero_insee": "31231" - } - }, - { - "pk": 19447, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GRENADE", - "center": "POINT (514831.8832322335802019 1863032.5275895250961185)", - "surface": 38060000, - "canton": null, - "numero_insee": "31232" - } - }, - { - "pk": 34610, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GREPIAC", - "center": "POINT (528278.7000389551976696 1823199.7942137073259801)", - "surface": 8210000, - "canton": null, - "numero_insee": "31233" - } - }, - { - "pk": 12493, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE GRES", - "center": "POINT (500155.7456798493512906 1858205.0991189552005380)", - "surface": 8170000, - "canton": null, - "numero_insee": "31234" - } - }, - { - "pk": 37867, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "GURAN", - "center": "POINT (458370.8731145266210660 1766253.0854948710184544)", - "surface": 5260000, - "canton": null, - "numero_insee": "31235" - } - }, - { - "pk": 24320, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "HERRAN", - "center": "POINT (481322.3839378398261033 1775354.0741427061147988)", - "surface": 15630000, - "canton": null, - "numero_insee": "31236" - } - }, - { - "pk": 26738, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "HIS", - "center": "POINT (488044.9954512158292346 1785621.8757311515510082)", - "surface": 5160000, - "canton": null, - "numero_insee": "31237" - } - }, - { - "pk": 16143, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "HUOS", - "center": "POINT (458301.6285132738412358 1786676.4299584438558668)", - "surface": 4060000, - "canton": null, - "numero_insee": "31238" - } - }, - { - "pk": 19195, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "L'ISLE-EN-DODON", - "center": "POINT (477939.8868610799545422 1820978.7173286187462509)", - "surface": 22520000, - "canton": null, - "numero_insee": "31239" - } - }, - { - "pk": 19099, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ISSUS", - "center": "POINT (532369.7144381797406822 1824835.7489694450050592)", - "surface": 7190000, - "canton": null, - "numero_insee": "31240" - } - }, - { - "pk": 34021, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "IZAUT-DE-L'HOTEL", - "center": "POINT (470369.6290273617487401 1780168.8501564143225551)", - "surface": 9640000, - "canton": null, - "numero_insee": "31241" - } - }, - { - "pk": 8203, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "JURVIELLE", - "center": "POINT (447407.5866248714737594 1760255.2380420949775726)", - "surface": 5900000, - "canton": null, - "numero_insee": "31242" - } - }, - { - "pk": 10463, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "JUZES", - "center": "POINT (555875.5379029685864225 1827334.7232392972800881)", - "surface": 3820000, - "canton": null, - "numero_insee": "31243" - } - }, - { - "pk": 13408, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "JUZET-DE-LUCHON", - "center": "POINT (460049.8708660102565773 1756956.0070195537991822)", - "surface": 7080000, - "canton": null, - "numero_insee": "31244" - } - }, - { - "pk": 28784, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "JUZET-D'IZAUT", - "center": "POINT (470910.0707093761302531 1775367.7137431842274964)", - "surface": 14790000, - "canton": null, - "numero_insee": "31245" - } - }, - { - "pk": 15331, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABARTHE-INARD", - "center": "POINT (477291.6869943400961347 1790538.3368915203027427)", - "surface": 10300000, - "canton": null, - "numero_insee": "31246" - } - }, - { - "pk": 32404, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABARTHE-RIVIERE", - "center": "POINT (464098.8503016205504537 1787825.7958132147323340)", - "surface": 14000000, - "canton": null, - "numero_insee": "31247" - } - }, - { - "pk": 5364, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABARTHE-SUR-LEZE", - "center": "POINT (524126.7340269597480074 1828871.6402173957321793)", - "surface": 10370000, - "canton": null, - "numero_insee": "31248" - } - }, - { - "pk": 7926, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABASTIDE-BEAUVOIR", - "center": "POINT (545429.3317526786122471 1831452.1712452126666903)", - "surface": 10250000, - "canton": null, - "numero_insee": "31249" - } - }, - { - "pk": 27313, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABASTIDE-CLERMONT", - "center": "POINT (499997.6014905195916072 1817057.4236390592996031)", - "surface": 14560000, - "canton": null, - "numero_insee": "31250" - } - }, - { - "pk": 24030, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABASTIDE-PAUMES", - "center": "POINT (486194.4338381601264700 1815541.0223681780043989)", - "surface": 8070000, - "canton": null, - "numero_insee": "31251" - } - }, - { - "pk": 15959, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABASTIDE-SAINT-SERNIN", - "center": "POINT (529676.5020921708783135 1859652.4081417899578810)", - "surface": 5080000, - "canton": null, - "numero_insee": "31252" - } - }, - { - "pk": 34389, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABASTIDETTE", - "center": "POINT (510810.9057742967270315 1828960.8873563068918884)", - "surface": 6330000, - "canton": null, - "numero_insee": "31253" - } - }, - { - "pk": 30373, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABEGE", - "center": "POINT (533863.6405439990339801 1837762.8248939726036042)", - "surface": 7740000, - "canton": null, - "numero_insee": "31254" - } - }, - { - "pk": 33045, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABROQUERE", - "center": "POINT (457525.6542394640855491 1783666.4967896067537367)", - "surface": 4420000, - "canton": null, - "numero_insee": "31255" - } - }, - { - "pk": 9342, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LABRUYERE-DORSA", - "center": "POINT (529783.6438227639300749 1822811.8943463005125523)", - "surface": 2240000, - "canton": null, - "numero_insee": "31256" - } - }, - { - "pk": 31022, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LACAUGNE", - "center": "POINT (514278.7386684501543641 1809267.2940052517224103)", - "surface": 6050000, - "canton": null, - "numero_insee": "31258" - } - }, - { - "pk": 33951, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LACROIX-FALGARDE", - "center": "POINT (525989.5142813108395785 1833592.4982602426316589)", - "surface": 6050000, - "canton": null, - "numero_insee": "31259" - } - }, - { - "pk": 7355, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAFFITE-TOUPIERE", - "center": "POINT (483946.5955531529034488 1796900.9348983331583440)", - "surface": 4880000, - "canton": null, - "numero_insee": "31260" - } - }, - { - "pk": 9732, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAFITTE-VIGORDANE", - "center": "POINT (504545.7698156936676241 1811889.3282456018496305)", - "surface": 11360000, - "canton": null, - "numero_insee": "31261" - } - }, - { - "pk": 27704, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAGARDELLE-SUR-LEZE", - "center": "POINT (523365.9507889799424447 1824059.8435499730985612)", - "surface": 13650000, - "canton": null, - "numero_insee": "31263" - } - }, - { - "pk": 19659, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAGRAULET-SAINT-NICOLAS", - "center": "POINT (498088.6947429644642398 1865996.5593482884578407)", - "surface": 16070000, - "canton": null, - "numero_insee": "31265" - } - }, - { - "pk": 35851, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAHAGE", - "center": "POINT (496909.4294286950025707 1827243.3475366681814194)", - "surface": 7590000, - "canton": null, - "numero_insee": "31266" - } - }, - { - "pk": 29943, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAHITERE", - "center": "POINT (506097.3163392191636376 1793881.4911339960526675)", - "surface": 3890000, - "canton": null, - "numero_insee": "31267" - } - }, - { - "pk": 30438, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LALOURET-LAFFITEAU", - "center": "POINT (466704.6113273090450093 1799560.9889624181669205)", - "surface": 5420000, - "canton": null, - "numero_insee": "31268" - } - }, - { - "pk": 9120, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAMASQUERE", - "center": "POINT (511786.9529926185496151 1831972.4170702239498496)", - "surface": 6110000, - "canton": null, - "numero_insee": "31269" - } - }, - { - "pk": 28818, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LANDORTHE", - "center": "POINT (472865.2664207486086525 1793104.5977228791452944)", - "surface": 9770000, - "canton": null, - "numero_insee": "31270" - } - }, - { - "pk": 16767, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LANTA", - "center": "POINT (545857.0980688682757318 1840165.5683951552491635)", - "surface": 30320000, - "canton": null, - "numero_insee": "31271" - } - }, - { - "pk": 31226, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAPEYRERE", - "center": "POINT (516451.9191941251629032 1800775.6159416064620018)", - "surface": 6320000, - "canton": null, - "numero_insee": "31272" - } - }, - { - "pk": 29789, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAPEYROUSE-FOSSAT", - "center": "POINT (533312.0000237746862695 1855878.5136801886837929)", - "surface": 9520000, - "canton": null, - "numero_insee": "31273" - } - }, - { - "pk": 37509, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LARCAN", - "center": "POINT (468421.4141043245908804 1797773.1548516522161663)", - "surface": 7080000, - "canton": null, - "numero_insee": "31274" - } - }, - { - "pk": 31854, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAREOLE", - "center": "POINT (494127.0034244828857481 1860857.9467357785906643)", - "surface": 8940000, - "canton": null, - "numero_insee": "31275" - } - }, - { - "pk": 22899, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LARROQUE", - "center": "POINT (459687.0403106495505199 1800704.1601121367421001)", - "surface": 19950000, - "canton": null, - "numero_insee": "31276" - } - }, - { - "pk": 37047, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LATOUE", - "center": "POINT (473326.7453134622192010 1797813.8750738617964089)", - "surface": 17850000, - "canton": null, - "numero_insee": "31278" - } - }, - { - "pk": 10719, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LATOUR", - "center": "POINT (514051.8175801655161195 1800455.2692012602929026)", - "surface": 6180000, - "canton": null, - "numero_insee": "31279" - } - }, - { - "pk": 14932, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LATRAPE", - "center": "POINT (514908.5822645833832212 1805768.5183595640119165)", - "surface": 19470000, - "canton": null, - "numero_insee": "31280" - } - }, - { - "pk": 37223, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAUNAC", - "center": "POINT (505934.2951595371123403 1861556.8663951323833317)", - "surface": 22590000, - "canton": null, - "numero_insee": "31281" - } - }, - { - "pk": 31636, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAUNAGUET", - "center": "POINT (528736.4223073499742895 1852336.4295794870704412)", - "surface": 7090000, - "canton": null, - "numero_insee": "31282" - } - }, - { - "pk": 4951, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAUTIGNAC", - "center": "POINT (496565.6349526774138212 1820432.7490182300098240)", - "surface": 17700000, - "canton": null, - "numero_insee": "31283" - } - }, - { - "pk": 3354, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAUZERVILLE", - "center": "POINT (537650.1093424608698115 1839896.7992550740018487)", - "surface": 3420000, - "canton": null, - "numero_insee": "31284" - } - }, - { - "pk": 15587, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAVALETTE", - "center": "POINT (539778.0359534615417942 1848824.5607049281243235)", - "surface": 13820000, - "canton": null, - "numero_insee": "31285" - } - }, - { - "pk": 28410, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAVELANET-DE-COMMINGES", - "center": "POINT (500587.2837900044396520 1806350.0610309722833335)", - "surface": 13810000, - "canton": null, - "numero_insee": "31286" - } - }, - { - "pk": 28056, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAVERNOSE-LACASSE", - "center": "POINT (511473.2531432086252607 1821557.9917901922017336)", - "surface": 18040000, - "canton": null, - "numero_insee": "31287" - } - }, - { - "pk": 12313, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LAYRAC-SUR-TARN", - "center": "POINT (537694.6822485232260078 1870531.2913710924331099)", - "surface": 7270000, - "canton": null, - "numero_insee": "31288" - } - }, - { - "pk": 37557, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LECUSSAN", - "center": "POINT (449711.0161760906339623 1796416.6053323985543102)", - "surface": 7550000, - "canton": null, - "numero_insee": "31289" - } - }, - { - "pk": 31299, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LEGE", - "center": "POINT (457776.0176333270501345 1765547.3265740466304123)", - "surface": 2750000, - "canton": null, - "numero_insee": "31290" - } - }, - { - "pk": 19481, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LEGUEVIN", - "center": "POINT (510386.3489976067794487 1843874.1700433029327542)", - "surface": 24710000, - "canton": null, - "numero_insee": "31291" - } - }, - { - "pk": 12762, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LESCUNS", - "center": "POINT (491582.5466704664868303 1805674.4578193684574217)", - "surface": 3060000, - "canton": null, - "numero_insee": "31292" - } - }, - { - "pk": 31865, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LESPINASSE", - "center": "POINT (522987.0476269828504883 1857494.2779447874054313)", - "surface": 4240000, - "canton": null, - "numero_insee": "31293" - } - }, - { - "pk": 35889, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LESPITEAU", - "center": "POINT (471522.7457290181773715 1785985.1948530089575797)", - "surface": 1800000, - "canton": null, - "numero_insee": "31294" - } - }, - { - "pk": 7706, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LESPUGUE", - "center": "POINT (464061.0897164770867676 1804444.7099133369047195)", - "surface": 4900000, - "canton": null, - "numero_insee": "31295" - } - }, - { - "pk": 13054, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LESTELLE-DE-SAINT-MARTORY", - "center": "POINT (482988.7661248010117561 1791686.9460471039637923)", - "surface": 9140000, - "canton": null, - "numero_insee": "31296" - } - }, - { - "pk": 19100, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LEVIGNAC", - "center": "POINT (508420.9896466999198310 1851466.3186121180187911)", - "surface": 12300000, - "canton": null, - "numero_insee": "31297" - } - }, - { - "pk": 12900, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LEZ", - "center": "POINT (466560.8738652141764760 1768623.7385964328423142)", - "surface": 2580000, - "canton": null, - "numero_insee": "31298" - } - }, - { - "pk": 19872, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LHERM", - "center": "POINT (509635.4747822913923301 1825847.5774581113364547)", - "surface": 27600000, - "canton": null, - "numero_insee": "31299" - } - }, - { - "pk": 33515, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LIEOUX", - "center": "POINT (472546.6536377206211910 1795304.5034862654283643)", - "surface": 5820000, - "canton": null, - "numero_insee": "31300" - } - }, - { - "pk": 6880, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LILHAC", - "center": "POINT (475825.6523805202450603 1810349.0309995161369443)", - "surface": 7330000, - "canton": null, - "numero_insee": "31301" - } - }, - { - "pk": 19754, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LODES", - "center": "POINT (463218.2471772063872777 1797429.6339760699775070)", - "surface": 13960000, - "canton": null, - "numero_insee": "31302" - } - }, - { - "pk": 17341, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LONGAGES", - "center": "POINT (508801.2114322524284944 1817831.5144215526524931)", - "surface": 21470000, - "canton": null, - "numero_insee": "31303" - } - }, - { - "pk": 22455, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LOUDET", - "center": "POINT (456534.1938932646298781 1794570.9573060448747128)", - "surface": 5180000, - "canton": null, - "numero_insee": "31305" - } - }, - { - "pk": 35154, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LOURDE", - "center": "POINT (462785.3470481529366225 1777202.5171376741491258)", - "surface": 1200000, - "canton": null, - "numero_insee": "31306" - } - }, - { - "pk": 12035, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LUNAX", - "center": "POINT (466564.2235994804650545 1816479.2536188359372318)", - "surface": 5130000, - "canton": null, - "numero_insee": "31307" - } - }, - { - "pk": 23493, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LUSCAN", - "center": "POINT (460256.0197376964497380 1780385.2833439286332577)", - "surface": 3290000, - "canton": null, - "numero_insee": "31308" - } - }, - { - "pk": 22241, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LUSSAN-ADEILHAC", - "center": "POINT (487430.6754301905166358 1811346.4871556526049972)", - "surface": 12660000, - "canton": null, - "numero_insee": "31309" - } - }, - { - "pk": 37019, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LUX", - "center": "POINT (554889.5394146619364619 1825524.4338404396548867)", - "surface": 7620000, - "canton": null, - "numero_insee": "31310" - } - }, - { - "pk": 24645, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LA MAGDELAINE-SUR-TARN", - "center": "POINT (535410.6862838955130428 1868309.7945206551812589)", - "surface": 6980000, - "canton": null, - "numero_insee": "31311" - } - }, - { - "pk": 34848, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAILHOLAS", - "center": "POINT (511608.3492995451088063 1805340.5615862391423434)", - "surface": 3010000, - "canton": null, - "numero_insee": "31312" - } - }, - { - "pk": 33858, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MALVEZIE", - "center": "POINT (466270.1003697877749801 1779534.1234583675395697)", - "surface": 8390000, - "canton": null, - "numero_insee": "31313" - } - }, - { - "pk": 11444, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MANCIOUX", - "center": "POINT (486348.3754210941260681 1797021.0130417393520474)", - "surface": 7120000, - "canton": null, - "numero_insee": "31314" - } - }, - { - "pk": 13718, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MANE", - "center": "POINT (486429.0943127174396068 1787310.4230361268855631)", - "surface": 6600000, - "canton": null, - "numero_insee": "31315" - } - }, - { - "pk": 8840, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARIGNAC", - "center": "POINT (463168.7304316728259437 1767193.9426967990584671)", - "surface": 12950000, - "canton": null, - "numero_insee": "31316" - } - }, - { - "pk": 11834, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARIGNAC-LASCLARES", - "center": "POINT (500038.4230304609518498 1812152.1546081132255495)", - "surface": 10240000, - "canton": null, - "numero_insee": "31317" - } - }, - { - "pk": 25083, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARIGNAC-LASPEYRES", - "center": "POINT (488008.6125346726039425 1802040.5925413537770510)", - "surface": 12440000, - "canton": null, - "numero_insee": "31318" - } - }, - { - "pk": 9231, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARLIAC", - "center": "POINT (529651.2043584585189819 1802687.7580770347267389)", - "surface": 7260000, - "canton": null, - "numero_insee": "31319" - } - }, - { - "pk": 5426, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARSOULAS", - "center": "POINT (490409.3339254031889141 1790246.8883304088376462)", - "surface": 2440000, - "canton": null, - "numero_insee": "31321" - } - }, - { - "pk": 25968, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARTISSERRE", - "center": "POINT (482232.8473177480627783 1822415.9765993785113096)", - "surface": 6170000, - "canton": null, - "numero_insee": "31322" - } - }, - { - "pk": 28786, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARTRES-DE-RIVIERE", - "center": "POINT (461893.9493154984083958 1788107.8538365778513253)", - "surface": 3610000, - "canton": null, - "numero_insee": "31323" - } - }, - { - "pk": 19854, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MARTRES-TOLOSANE", - "center": "POINT (491222.0728644287446514 1800865.9263004141394049)", - "surface": 23560000, - "canton": null, - "numero_insee": "31324" - } - }, - { - "pk": 9178, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MASCARVILLE", - "center": "POINT (552768.5687028398970142 1839722.7670984675642103)", - "surface": 5380000, - "canton": null, - "numero_insee": "31325" - } - }, - { - "pk": 13674, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MASSABRAC", - "center": "POINT (521041.8864494209410623 1802615.9531503587495536)", - "surface": 3990000, - "canton": null, - "numero_insee": "31326" - } - }, - { - "pk": 9220, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAURAN", - "center": "POINT (492940.5701412829803303 1798877.9074377173092216)", - "surface": 5330000, - "canton": null, - "numero_insee": "31327" - } - }, - { - "pk": 34611, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAUREMONT", - "center": "POINT (546856.7491440719459206 1828360.5840319332201034)", - "surface": 5650000, - "canton": null, - "numero_insee": "31328" - } - }, - { - "pk": 26181, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAURENS", - "center": "POINT (556258.3840726406779140 1829440.3071397349704057)", - "surface": 6640000, - "canton": null, - "numero_insee": "31329" - } - }, - { - "pk": 29887, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAURESSAC", - "center": "POINT (526657.0441639423370361 1813575.3057782356627285)", - "surface": 4540000, - "canton": null, - "numero_insee": "31330" - } - }, - { - "pk": 28055, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAUREVILLE", - "center": "POINT (549591.1244061345933005 1836592.7127164849080145)", - "surface": 10100000, - "canton": null, - "numero_insee": "31331" - } - }, - { - "pk": 33700, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAUVAISIN", - "center": "POINT (535131.9250040492042899 1817750.7116031551267952)", - "surface": 11040000, - "canton": null, - "numero_insee": "31332" - } - }, - { - "pk": 34148, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAUVEZIN", - "center": "POINT (485046.6591455856105313 1821137.8780794744379818)", - "surface": 4860000, - "canton": null, - "numero_insee": "31333" - } - }, - { - "pk": 23147, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAUZAC", - "center": "POINT (515993.0844030405860394 1819793.5978479906916618)", - "surface": 9110000, - "canton": null, - "numero_insee": "31334" - } - }, - { - "pk": 11277, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MAZERES-SUR-SALAT", - "center": "POINT (487982.5747501146397553 1793130.0786915086209774)", - "surface": 6730000, - "canton": null, - "numero_insee": "31336" - } - }, - { - "pk": 30680, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MELLES", - "center": "POINT (474810.7045218431740068 1763786.4446163256652653)", - "surface": 45900000, - "canton": null, - "numero_insee": "31337" - } - }, - { - "pk": 9305, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MENVILLE", - "center": "POINT (507201.3935383082134649 1853658.6204379429109395)", - "surface": 5150000, - "canton": null, - "numero_insee": "31338" - } - }, - { - "pk": 12308, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MERENVIELLE", - "center": "POINT (505453.6813472625799477 1847136.7974579560104758)", - "surface": 9700000, - "canton": null, - "numero_insee": "31339" - } - }, - { - "pk": 8542, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MERVILLA", - "center": "POINT (529989.5823880302486941 1834126.4320423058234155)", - "surface": 2750000, - "canton": null, - "numero_insee": "31340" - } - }, - { - "pk": 17343, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MERVILLE", - "center": "POINT (515972.2328992224065587 1858336.8072895193472505)", - "surface": 30910000, - "canton": null, - "numero_insee": "31341" - } - }, - { - "pk": 19535, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MILHAS", - "center": "POINT (476610.5433723912574351 1776115.8693849449045956)", - "surface": 13140000, - "canton": null, - "numero_insee": "31342" - } - }, - { - "pk": 27692, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MIRAMBEAU", - "center": "POINT (480420.1097069868119434 1823702.3959866699296981)", - "surface": 4030000, - "canton": null, - "numero_insee": "31343" - } - }, - { - "pk": 35626, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MIRAMONT-DE-COMMINGES", - "center": "POINT (470998.0968244403484277 1788884.2163484238553792)", - "surface": 8360000, - "canton": null, - "numero_insee": "31344" - } - }, - { - "pk": 18511, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MIREMONT", - "center": "POINT (525303.8810056847287342 1819771.1061442918144166)", - "surface": 22600000, - "canton": null, - "numero_insee": "31345" - } - }, - { - "pk": 9563, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MIREPOIX-SUR-TARN", - "center": "POINT (538805.0136912582674995 1869439.3469391660764813)", - "surface": 5540000, - "canton": null, - "numero_insee": "31346" - } - }, - { - "pk": 13535, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MOLAS", - "center": "POINT (473616.1638651805697009 1823245.4321635731030256)", - "surface": 10620000, - "canton": null, - "numero_insee": "31347" - } - }, - { - "pk": 32582, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONCAUP", - "center": "POINT (466300.8377213951898739 1775830.0438774051144719)", - "surface": 7190000, - "canton": null, - "numero_insee": "31348" - } - }, - { - "pk": 30476, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONDAVEZAN", - "center": "POINT (494690.8967703196685761 1805099.6195854595862329)", - "surface": 21450000, - "canton": null, - "numero_insee": "31349" - } - }, - { - "pk": 34469, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONDILHAN", - "center": "POINT (467510.0509930488187820 1811080.9164789391215891)", - "surface": 9990000, - "canton": null, - "numero_insee": "31350" - } - }, - { - "pk": 36498, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONDONVILLE", - "center": "POINT (514725.0920313824317418 1851819.1664518290199339)", - "surface": 11910000, - "canton": null, - "numero_insee": "31351" - } - }, - { - "pk": 24834, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONDOUZIL", - "center": "POINT (537382.2021958433324471 1848003.6606415309943259)", - "surface": 4180000, - "canton": null, - "numero_insee": "31352" - } - }, - { - "pk": 33199, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONES", - "center": "POINT (494226.5342110435012728 1824818.3021720715332776)", - "surface": 2480000, - "canton": null, - "numero_insee": "31353" - } - }, - { - "pk": 11921, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONESTROL", - "center": "POINT (545169.4115099203772843 1814630.8753007370978594)", - "surface": 5360000, - "canton": null, - "numero_insee": "31354" - } - }, - { - "pk": 10091, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONS", - "center": "POINT (538302.3712715138681233 1845708.7645850509870797)", - "surface": 7300000, - "canton": null, - "numero_insee": "31355" - } - }, - { - "pk": 16851, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTAIGUT-SUR-SAVE", - "center": "POINT (511004.5376244267681614 1853790.4049456063657999)", - "surface": 12940000, - "canton": null, - "numero_insee": "31356" - } - }, - { - "pk": 15919, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTASTRUC-DE-SALIES", - "center": "POINT (482763.3094941483577713 1782674.5916212538722903)", - "surface": 16410000, - "canton": null, - "numero_insee": "31357" - } - }, - { - "pk": 28550, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTASTRUC-LA-CONSEILLERE", - "center": "POINT (539601.0282260435633361 1858033.3528723223134875)", - "surface": 15690000, - "canton": null, - "numero_insee": "31358" - } - }, - { - "pk": 28614, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTASTRUC-SAVES", - "center": "POINT (492976.7650133839924820 1818600.8423072546720505)", - "surface": 5780000, - "canton": null, - "numero_insee": "31359" - } - }, - { - "pk": 9601, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTAUBAN-DE-LUCHON", - "center": "POINT (459459.9941986397025175 1755649.5716253609862179)", - "surface": 5740000, - "canton": null, - "numero_insee": "31360" - } - }, - { - "pk": 18012, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTAUT", - "center": "POINT (516622.0928427017643116 1816394.9569195522926748)", - "surface": 17950000, - "canton": null, - "numero_insee": "31361" - } - }, - { - "pk": 21265, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTBERAUD", - "center": "POINT (503678.0321138907456771 1795863.6665181464049965)", - "surface": 16000000, - "canton": null, - "numero_insee": "31362" - } - }, - { - "pk": 3182, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTBERNARD", - "center": "POINT (472503.8075555196264759 1812523.9721885044127703)", - "surface": 18200000, - "canton": null, - "numero_insee": "31363" - } - }, - { - "pk": 33699, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTBERON", - "center": "POINT (531592.6822960413992405 1857966.5049618182238191)", - "surface": 6420000, - "canton": null, - "numero_insee": "31364" - } - }, - { - "pk": 15584, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTBRUN-BOCAGE", - "center": "POINT (511324.6672502041910775 1791322.0099681254941970)", - "surface": 30600000, - "canton": null, - "numero_insee": "31365" - } - }, - { - "pk": 36497, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTBRUN-LAURAGAIS", - "center": "POINT (533741.1302824871381745 1828451.2832176380325109)", - "surface": 10890000, - "canton": null, - "numero_insee": "31366" - } - }, - { - "pk": 36808, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTCLAR-DE-COMMINGES", - "center": "POINT (493454.4359228824032471 1797280.3308197469450533)", - "surface": 6340000, - "canton": null, - "numero_insee": "31367" - } - }, - { - "pk": 30591, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTCLAR-LAURAGAIS", - "center": "POINT (549346.3148160856217146 1817969.5504159247502685)", - "surface": 3640000, - "canton": null, - "numero_insee": "31368" - } - }, - { - "pk": 35613, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONT-DE-GALIE", - "center": "POINT (461876.8805407220497727 1778096.0354693569242954)", - "surface": 2380000, - "canton": null, - "numero_insee": "31369" - } - }, - { - "pk": 9092, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTEGUT-BOURJAC", - "center": "POINT (490047.6283015828230418 1809666.2931697147432715)", - "surface": 5590000, - "canton": null, - "numero_insee": "31370" - } - }, - { - "pk": 23732, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTEGUT-LAURAGAIS", - "center": "POINT (567160.7600181454326957 1830632.7675587809644639)", - "surface": 7710000, - "canton": null, - "numero_insee": "31371" - } - }, - { - "pk": 18249, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTESPAN", - "center": "POINT (479514.8833207851275802 1788053.8968068612739444)", - "surface": 12740000, - "canton": null, - "numero_insee": "31372" - } - }, - { - "pk": 29029, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTESQUIEU-GUITTAUT", - "center": "POINT (472472.2255682374816388 1816328.0609803034458309)", - "surface": 10040000, - "canton": null, - "numero_insee": "31373" - } - }, - { - "pk": 3082, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTESQUIEU-LAURAGAIS", - "center": "POINT (542396.2735379196237773 1823017.2976690563373268)", - "surface": 24720000, - "canton": null, - "numero_insee": "31374" - } - }, - { - "pk": 21859, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTESQUIEU-VOLVESTRE", - "center": "POINT (508853.6777962269843556 1799510.9270254194270819)", - "surface": 60050000, - "canton": null, - "numero_insee": "31375" - } - }, - { - "pk": 36574, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTGAILLARD-DE-SALIES", - "center": "POINT (485347.0276252322946675 1784998.7486083116382360)", - "surface": 6120000, - "canton": null, - "numero_insee": "31376" - } - }, - { - "pk": 35395, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTGAILLARD-LAURAGAIS", - "center": "POINT (548584.4930159396026284 1825271.5011716827284545)", - "surface": 11160000, - "canton": null, - "numero_insee": "31377" - } - }, - { - "pk": 14000, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTGAILLARD-SUR-SAVE", - "center": "POINT (468244.0383004932664335 1807082.4121403750032187)", - "surface": 4130000, - "canton": null, - "numero_insee": "31378" - } - }, - { - "pk": 6183, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTGAZIN", - "center": "POINT (515958.0479533774778247 1811984.3856133644003421)", - "surface": 6910000, - "canton": null, - "numero_insee": "31379" - } - }, - { - "pk": 18599, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTGEARD", - "center": "POINT (543456.7137720816535875 1815918.0546963107772171)", - "surface": 9370000, - "canton": null, - "numero_insee": "31380" - } - }, - { - "pk": 13183, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTGISCARD", - "center": "POINT (537846.3312237231293693 1828385.4386672379914671)", - "surface": 13170000, - "canton": null, - "numero_insee": "31381" - } - }, - { - "pk": 33546, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTGRAS", - "center": "POINT (497100.4812407763674855 1828346.1856533517129719)", - "surface": 3980000, - "canton": null, - "numero_insee": "31382" - } - }, - { - "pk": 17381, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTJOIRE", - "center": "POINT (534642.4428012631833553 1864399.0651057204231620)", - "surface": 20330000, - "canton": null, - "numero_insee": "31383" - } - }, - { - "pk": 32299, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTLAUR", - "center": "POINT (538719.7058298479532823 1831696.4707859016489238)", - "surface": 9730000, - "canton": null, - "numero_insee": "31384" - } - }, - { - "pk": 4103, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTMAURIN", - "center": "POINT (461560.8722418240504339 1804123.6241167946718633)", - "surface": 8500000, - "canton": null, - "numero_insee": "31385" - } - }, - { - "pk": 28992, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTOULIEU-SAINT-BERNARD", - "center": "POINT (483585.5376500766724348 1804206.3651487191673368)", - "surface": 4930000, - "canton": null, - "numero_insee": "31386" - } - }, - { - "pk": 6077, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTOUSSIN", - "center": "POINT (492151.5593055638601072 1809483.5589762320742011)", - "surface": 4940000, - "canton": null, - "numero_insee": "31387" - } - }, - { - "pk": 9845, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTPITOL", - "center": "POINT (543922.2377210427075624 1856067.2152263536117971)", - "surface": 5940000, - "canton": null, - "numero_insee": "31388" - } - }, - { - "pk": 11795, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTRABE", - "center": "POINT (534668.5037324727745727 1849282.4633372123353183)", - "surface": 5330000, - "canton": null, - "numero_insee": "31389" - } - }, - { - "pk": 13442, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTREJEAU", - "center": "POINT (454878.8133421194506809 1788950.7290123163256794)", - "surface": 7960000, - "canton": null, - "numero_insee": "31390" - } - }, - { - "pk": 27515, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MONTSAUNES", - "center": "POINT (485399.7080282759270631 1790705.8214960731565952)", - "surface": 9120000, - "canton": null, - "numero_insee": "31391" - } - }, - { - "pk": 9483, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MOURVILLES-BASSES", - "center": "POINT (548327.3931878983275965 1832077.0657200706191361)", - "surface": 4780000, - "canton": null, - "numero_insee": "31392" - } - }, - { - "pk": 36261, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MOURVILLES-HAUTES", - "center": "POINT (557999.5437426172429696 1824749.5322074829600751)", - "surface": 6680000, - "canton": null, - "numero_insee": "31393" - } - }, - { - "pk": 8192, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MOUSTAJON", - "center": "POINT (456934.7846841690479778 1758331.8339891564100981)", - "surface": 2260000, - "canton": null, - "numero_insee": "31394" - } - }, - { - "pk": 23840, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "MURET", - "center": "POINT (516526.1511281317798421 1827907.2569140256382525)", - "surface": 58370000, - "canton": null, - "numero_insee": "31395" - } - }, - { - "pk": 23632, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "NAILLOUX", - "center": "POINT (541234.2861171888653189 1818302.2342253979295492)", - "surface": 18710000, - "canton": null, - "numero_insee": "31396" - } - }, - { - "pk": 35887, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "NENIGAN", - "center": "POINT (467752.2210106524871662 1818090.9406657486688346)", - "surface": 2320000, - "canton": null, - "numero_insee": "31397" - } - }, - { - "pk": 34406, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "NIZAN-GESSE", - "center": "POINT (458353.2538748505758122 1804597.5987324481830001)", - "surface": 8700000, - "canton": null, - "numero_insee": "31398" - } - }, - { - "pk": 24321, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "NOE", - "center": "POINT (513403.6438872482976876 1818170.1950405323877931)", - "surface": 9790000, - "canton": null, - "numero_insee": "31399" - } - }, - { - "pk": 31702, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "NOGARET", - "center": "POINT (567346.7276091425446793 1832336.2489972196053714)", - "surface": 3970000, - "canton": null, - "numero_insee": "31400" - } - }, - { - "pk": 6960, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "NOUEILLES", - "center": "POINT (534179.1555372567381710 1823949.8267030413262546)", - "surface": 5560000, - "canton": null, - "numero_insee": "31401" - } - }, - { - "pk": 11361, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ODARS", - "center": "POINT (539786.6008221807423979 1835810.0150201686192304)", - "surface": 6720000, - "canton": null, - "numero_insee": "31402" - } - }, - { - "pk": 26592, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ONDES", - "center": "POINT (516713.8378465140704066 1865450.8700667293742299)", - "surface": 6580000, - "canton": null, - "numero_insee": "31403" - } - }, - { - "pk": 23569, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "OO", - "center": "POINT (448890.4433551857946441 1750455.8846346046775579)", - "surface": 41910000, - "canton": null, - "numero_insee": "31404" - } - }, - { - "pk": 5050, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ORE", - "center": "POINT (461794.2090744341840036 1775992.8884385847486556)", - "surface": 2890000, - "canton": null, - "numero_insee": "31405" - } - }, - { - "pk": 24910, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PALAMINY", - "center": "POINT (496035.6106511801481247 1799904.8082313335034996)", - "surface": 11290000, - "canton": null, - "numero_insee": "31406" - } - }, - { - "pk": 21430, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PAULHAC", - "center": "POINT (536868.1267936748918146 1861614.5374352242797613)", - "surface": 13990000, - "canton": null, - "numero_insee": "31407" - } - }, - { - "pk": 7708, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PAYSSOUS", - "center": "POINT (467746.8270616040099412 1782549.8856976402457803)", - "surface": 4140000, - "canton": null, - "numero_insee": "31408" - } - }, - { - "pk": 28825, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PECHABOU", - "center": "POINT (532997.7769362204708159 1833550.8556365321855992)", - "surface": 3510000, - "canton": null, - "numero_insee": "31409" - } - }, - { - "pk": 33087, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PECHBONNIEU", - "center": "POINT (529098.4251832353184000 1856944.5807764157652855)", - "surface": 7510000, - "canton": null, - "numero_insee": "31410" - } - }, - { - "pk": 35311, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PECHBUSQUE", - "center": "POINT (528770.7716793759027496 1836218.6357171609997749)", - "surface": 3160000, - "canton": null, - "numero_insee": "31411" - } - }, - { - "pk": 9440, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PEGUILHAN", - "center": "POINT (467283.2518058780115098 1814282.7025782691780478)", - "surface": 18500000, - "canton": null, - "numero_insee": "31412" - } - }, - { - "pk": 12171, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PELLEPORT", - "center": "POINT (501736.5871899871854112 1860721.0352926047053188)", - "surface": 10470000, - "canton": null, - "numero_insee": "31413" - } - }, - { - "pk": 37258, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PEYRISSAS", - "center": "POINT (484133.7738949611666612 1810518.1661836367566139)", - "surface": 7950000, - "canton": null, - "numero_insee": "31414" - } - }, - { - "pk": 6424, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PEYROUZET", - "center": "POINT (477498.8859379668720067 1801753.0290063447318971)", - "surface": 4950000, - "canton": null, - "numero_insee": "31415" - } - }, - { - "pk": 37078, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PEYSSIES", - "center": "POINT (506427.8109693249571137 1814307.7476842005271465)", - "surface": 6410000, - "canton": null, - "numero_insee": "31416" - } - }, - { - "pk": 3757, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PIBRAC", - "center": "POINT (513056.6691836498212069 1847800.7896056456957012)", - "surface": 26130000, - "canton": null, - "numero_insee": "31417" - } - }, - { - "pk": 35561, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PIN-BALMA", - "center": "POINT (535188.2469338234513998 1846984.2251350102014840)", - "surface": 6620000, - "canton": null, - "numero_insee": "31418" - } - }, - { - "pk": 35914, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE PIN-MURELET", - "center": "POINT (493244.6156424657092430 1822507.5175208766013384)", - "surface": 12040000, - "canton": null, - "numero_insee": "31419" - } - }, - { - "pk": 10299, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PINSAGUEL", - "center": "POINT (523584.4632726011332124 1833872.7801410777028650)", - "surface": 5150000, - "canton": null, - "numero_insee": "31420" - } - }, - { - "pk": 22312, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PINS-JUSTARET", - "center": "POINT (523303.3441189432051033 1831567.8337277930695564)", - "surface": 4480000, - "canton": null, - "numero_insee": "31421" - } - }, - { - "pk": 12620, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PLAGNE", - "center": "POINT (495866.2079182859743014 1796199.1194546225015074)", - "surface": 4240000, - "canton": null, - "numero_insee": "31422" - } - }, - { - "pk": 22742, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PLAGNOLE", - "center": "POINT (496735.8668625181308016 1824038.2661898254882544)", - "surface": 7360000, - "canton": null, - "numero_insee": "31423" - } - }, - { - "pk": 23754, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PLAISANCE-DU-TOUCH", - "center": "POINT (514923.6220971067668870 1840007.5824983541388065)", - "surface": 26730000, - "canton": null, - "numero_insee": "31424" - } - }, - { - "pk": 20881, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LE PLAN", - "center": "POINT (501067.7024959453847259 1796742.9804335881490260)", - "surface": 8110000, - "canton": null, - "numero_insee": "31425" - } - }, - { - "pk": 15233, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POINTIS-DE-RIVIERE", - "center": "POINT (460384.8339060291182250 1788996.3840663190931082)", - "surface": 6710000, - "canton": null, - "numero_insee": "31426" - } - }, - { - "pk": 5423, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POINTIS-INARD", - "center": "POINT (474310.0211506031919271 1787910.5503215140197426)", - "surface": 14950000, - "canton": null, - "numero_insee": "31427" - } - }, - { - "pk": 30311, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POLASTRON", - "center": "POINT (487409.0385749574052170 1813949.2872761739417911)", - "surface": 4860000, - "canton": null, - "numero_insee": "31428" - } - }, - { - "pk": 28919, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POMPERTUZAT", - "center": "POINT (533905.4159533758647740 1832757.5258900979533792)", - "surface": 5480000, - "canton": null, - "numero_insee": "31429" - } - }, - { - "pk": 10253, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PONLAT-TAILLEBOURG", - "center": "POINT (458061.5633112135110423 1791480.0237058917991817)", - "surface": 8700000, - "canton": null, - "numero_insee": "31430" - } - }, - { - "pk": 29028, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PORTET-D'ASPET", - "center": "POINT (478846.2368171043344773 1772129.7443005137611181)", - "surface": 13990000, - "canton": null, - "numero_insee": "31431" - } - }, - { - "pk": 7474, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PORTET-DE-LUCHON", - "center": "POINT (447023.7284411437576637 1758249.6878933100961149)", - "surface": 4070000, - "canton": null, - "numero_insee": "31432" - } - }, - { - "pk": 28512, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PORTET-SUR-GARONNE", - "center": "POINT (524361.1022730834083632 1836782.5321844962891191)", - "surface": 15490000, - "canton": null, - "numero_insee": "31433" - } - }, - { - "pk": 32594, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POUBEAU", - "center": "POINT (448911.7484371909522451 1759967.3455722634680569)", - "surface": 4190000, - "canton": null, - "numero_insee": "31434" - } - }, - { - "pk": 20907, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POUCHARRAMET", - "center": "POINT (505035.5670069200568832 1825208.5914070454891771)", - "surface": 22660000, - "canton": null, - "numero_insee": "31435" - } - }, - { - "pk": 8080, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POUY-DE-TOUGES", - "center": "POINT (495403.4888771187397651 1815717.7129374064970762)", - "surface": 13840000, - "canton": null, - "numero_insee": "31436" - } - }, - { - "pk": 10216, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "POUZE", - "center": "POINT (534862.3556139060528949 1826057.9168486078269780)", - "surface": 3930000, - "canton": null, - "numero_insee": "31437" - } - }, - { - "pk": 30652, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PRADERE-LES-BOURGUETS", - "center": "POINT (504527.7341504495125264 1850132.4486776937264949)", - "surface": 4940000, - "canton": null, - "numero_insee": "31438" - } - }, - { - "pk": 22980, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PRESERVILLE", - "center": "POINT (542892.3930103380698711 1835535.6146887231152505)", - "surface": 12200000, - "canton": null, - "numero_insee": "31439" - } - }, - { - "pk": 29647, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PROUPIARY", - "center": "POINT (480248.3903245576075278 1796169.3948851006571203)", - "surface": 4960000, - "canton": null, - "numero_insee": "31440" - } - }, - { - "pk": 30810, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PRUNET", - "center": "POINT (550853.1740301329409704 1841308.5570720429532230)", - "surface": 4660000, - "canton": null, - "numero_insee": "31441" - } - }, - { - "pk": 25237, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PUYDANIEL", - "center": "POINT (525746.0567140564089641 1814769.0811275136657059)", - "surface": 7320000, - "canton": null, - "numero_insee": "31442" - } - }, - { - "pk": 17898, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PUYMAURIN", - "center": "POINT (471341.1269485739758238 1819922.7833940465934575)", - "surface": 22500000, - "canton": null, - "numero_insee": "31443" - } - }, - { - "pk": 8458, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "PUYSSEGUR", - "center": "POINT (497522.2174091966589913 1861887.3000245599541813)", - "surface": 5440000, - "canton": null, - "numero_insee": "31444" - } - }, - { - "pk": 38067, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "QUINT-FONSEGRIVES", - "center": "POINT (535726.3757448954274878 1842483.6650974256917834)", - "surface": 7430000, - "canton": null, - "numero_insee": "31445" - } - }, - { - "pk": 31278, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RAMONVILLE-SAINT-AGNE", - "center": "POINT (530455.0318172845290974 1838335.0566901897545904)", - "surface": 6440000, - "canton": null, - "numero_insee": "31446" - } - }, - { - "pk": 6541, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RAZECUEILLE", - "center": "POINT (475522.6320564192137681 1774504.9569451368879527)", - "surface": 6510000, - "canton": null, - "numero_insee": "31447" - } - }, - { - "pk": 12448, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "REBIGUE", - "center": "POINT (530405.0413033074000850 1832327.8626255721319467)", - "surface": 5110000, - "canton": null, - "numero_insee": "31448" - } - }, - { - "pk": 24041, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "REGADES", - "center": "POINT (467828.6585403790231794 1784753.1327227407600731)", - "surface": 3710000, - "canton": null, - "numero_insee": "31449" - } - }, - { - "pk": 21657, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RENNEVILLE", - "center": "POINT (550032.0046574629377574 1819777.3357359967194498)", - "surface": 8420000, - "canton": null, - "numero_insee": "31450" - } - }, - { - "pk": 18135, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "REVEL", - "center": "POINT (572378.0220586770446971 1829274.8610683823935688)", - "surface": 35650000, - "canton": null, - "numero_insee": "31451" - } - }, - { - "pk": 7106, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RIEUCAZE", - "center": "POINT (470711.8960771594429389 1787179.8616246250458062)", - "surface": 2040000, - "canton": null, - "numero_insee": "31452" - } - }, - { - "pk": 37429, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RIEUMAJOU", - "center": "POINT (556608.9330277548870072 1823436.4232966133859009)", - "surface": 3840000, - "canton": null, - "numero_insee": "31453" - } - }, - { - "pk": 15249, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RIEUMES", - "center": "POINT (500840.2476298885303549 1824072.4186219475232065)", - "surface": 30920000, - "canton": null, - "numero_insee": "31454" - } - }, - { - "pk": 17000, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RIEUX-VOLVESTRE", - "center": "POINT (507994.4505780930048786 1806511.8419420272111893)", - "surface": 32730000, - "canton": null, - "numero_insee": "31455" - } - }, - { - "pk": 11497, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "RIOLAS", - "center": "POINT (484876.3965562492376193 1817532.3542084994260222)", - "surface": 2900000, - "canton": null, - "numero_insee": "31456" - } - }, - { - "pk": 34989, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ROQUEFORT-SUR-GARONNE", - "center": "POINT (489959.7845070738112554 1796149.9951465616468340)", - "surface": 13760000, - "canton": null, - "numero_insee": "31457" - } - }, - { - "pk": 29900, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ROQUES", - "center": "POINT (520376.8954925096477382 1834346.6018320212606341)", - "surface": 9430000, - "canton": null, - "numero_insee": "31458" - } - }, - { - "pk": 4365, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ROQUESERIERE", - "center": "POINT (543595.1665379785699770 1859268.0454978263005614)", - "surface": 10620000, - "canton": null, - "numero_insee": "31459" - } - }, - { - "pk": 7671, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ROQUETTES", - "center": "POINT (521990.2775800044182688 1832958.4696498697157949)", - "surface": 3380000, - "canton": null, - "numero_insee": "31460" - } - }, - { - "pk": 12622, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ROUEDE", - "center": "POINT (481244.1936957033467479 1784764.4194147540256381)", - "surface": 6240000, - "canton": null, - "numero_insee": "31461" - } - }, - { - "pk": 6739, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ROUFFIAC-TOLOSAN", - "center": "POINT (534449.0766863222233951 1851583.2044657045044005)", - "surface": 4750000, - "canton": null, - "numero_insee": "31462" - } - }, - { - "pk": 11359, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ROUMENS", - "center": "POINT (567472.8100988264195621 1829233.7928529162891209)", - "surface": 3540000, - "canton": null, - "numero_insee": "31463" - } - }, - { - "pk": 13804, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SABONNERES", - "center": "POINT (496282.1402073294739239 1830441.7588904597796500)", - "surface": 12420000, - "canton": null, - "numero_insee": "31464" - } - }, - { - "pk": 11024, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SACCOURVIELLE", - "center": "POINT (455028.5131231356645003 1758816.6214076497126371)", - "surface": 3400000, - "canton": null, - "numero_insee": "31465" - } - }, - { - "pk": 8535, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAIGUEDE", - "center": "POINT (503240.4226718349382281 1836406.3356833588331938)", - "surface": 11920000, - "canton": null, - "numero_insee": "31466" - } - }, - { - "pk": 10094, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-ALBAN", - "center": "POINT (525411.2590537948999554 1854911.5961467153392732)", - "surface": 4420000, - "canton": null, - "numero_insee": "31467" - } - }, - { - "pk": 17542, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-ANDRE", - "center": "POINT (478839.6992382245953195 1809072.5718588181771338)", - "surface": 18820000, - "canton": null, - "numero_insee": "31468" - } - }, - { - "pk": 36840, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-ARAILLE", - "center": "POINT (491783.8028620324330404 1817589.7789584547281265)", - "surface": 6650000, - "canton": null, - "numero_insee": "31469" - } - }, - { - "pk": 20641, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-AVENTIN", - "center": "POINT (455583.8526688632555306 1752213.3878363454714417)", - "surface": 17620000, - "canton": null, - "numero_insee": "31470" - } - }, - { - "pk": 27102, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-BEAT", - "center": "POINT (464762.2001208172878250 1768208.3420219819527119)", - "surface": 7380000, - "canton": null, - "numero_insee": "31471" - } - }, - { - "pk": 18773, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-BERTRAND-DE-COMMINGES", - "center": "POINT (454237.7965225353837013 1781737.0189017737284303)", - "surface": 11320000, - "canton": null, - "numero_insee": "31472" - } - }, - { - "pk": 24261, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-CEZERT", - "center": "POINT (507707.8280659089214168 1864975.4050167421810329)", - "surface": 9060000, - "canton": null, - "numero_insee": "31473" - } - }, - { - "pk": 18118, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-CHRISTAUD", - "center": "POINT (501544.9160129576921463 1799550.1905628065578640)", - "surface": 10780000, - "canton": null, - "numero_insee": "31474" - } - }, - { - "pk": 32080, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-CLAR-DE-RIVIERE", - "center": "POINT (508591.0559613509103656 1831044.7789302445016801)", - "surface": 10040000, - "canton": null, - "numero_insee": "31475" - } - }, - { - "pk": 26431, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-ELIX-LE-CHATEAU", - "center": "POINT (502462.6730561518343166 1809569.3483549319207668)", - "surface": 10660000, - "canton": null, - "numero_insee": "31476" - } - }, - { - "pk": 13632, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-ELIX-SEGLAN", - "center": "POINT (478811.9386732478742488 1800362.3193309209309518)", - "surface": 3000000, - "canton": null, - "numero_insee": "31477" - } - }, - { - "pk": 21598, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-FELIX-LAURAGAIS", - "center": "POINT (564683.2356152912834659 1827608.6301390156149864)", - "surface": 52270000, - "canton": null, - "numero_insee": "31478" - } - }, - { - "pk": 32094, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-FERREOL-DE-COMMINGES", - "center": "POINT (469968.7080642746877857 1816407.3932108329609036)", - "surface": 5850000, - "canton": null, - "numero_insee": "31479" - } - }, - { - "pk": 37192, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINTE-FOY-D'AIGREFEUILLE", - "center": "POINT (540560.6965704883914441 1839020.0887802504003048)", - "surface": 9870000, - "canton": null, - "numero_insee": "31480" - } - }, - { - "pk": 20565, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINTE-FOY-DE-PEYROLIERES", - "center": "POINT (502779.0559222958399914 1831697.1817243460100144)", - "surface": 38000000, - "canton": null, - "numero_insee": "31481" - } - }, - { - "pk": 19568, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-FRAJOU", - "center": "POINT (479187.7406180775142275 1815382.6860878069419414)", - "surface": 16860000, - "canton": null, - "numero_insee": "31482" - } - }, - { - "pk": 21328, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-GAUDENS", - "center": "POINT (468668.9913450072053820 1792068.6027425983920693)", - "surface": 27840000, - "canton": null, - "numero_insee": "31483" - } - }, - { - "pk": 36496, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-GENIES-BELLEVUE", - "center": "POINT (530825.2577758248662576 1853955.6434421131853014)", - "surface": 3820000, - "canton": null, - "numero_insee": "31484" - } - }, - { - "pk": 7430, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-GERMIER", - "center": "POINT (550448.8675049497978762 1829792.1908568560611457)", - "surface": 3750000, - "canton": null, - "numero_insee": "31485" - } - }, - { - "pk": 8197, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-HILAIRE", - "center": "POINT (513348.5968724453705363 1824777.2577618607319891)", - "surface": 6360000, - "canton": null, - "numero_insee": "31486" - } - }, - { - "pk": 11543, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-IGNAN", - "center": "POINT (465730.9360478683374822 1796249.0915039628744125)", - "surface": 5310000, - "canton": null, - "numero_insee": "31487" - } - }, - { - "pk": 11019, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-JEAN", - "center": "POINT (532446.9807989785913378 1851566.4954211679287255)", - "surface": 6040000, - "canton": null, - "numero_insee": "31488" - } - }, - { - "pk": 29790, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-JEAN-LHERM", - "center": "POINT (541926.0010610116878524 1855349.7611472306307405)", - "surface": 7920000, - "canton": null, - "numero_insee": "31489" - } - }, - { - "pk": 21699, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-JORY", - "center": "POINT (520862.3233708464540541 1860179.5670266996603459)", - "surface": 19300000, - "canton": null, - "numero_insee": "31490" - } - }, - { - "pk": 6279, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-JULIA", - "center": "POINT (564141.6554367906646803 1832509.6510289413854480)", - "surface": 11570000, - "canton": null, - "numero_insee": "31491" - } - }, - { - "pk": 29436, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-JULIEN-SUR-GARONNE", - "center": "POINT (503194.2616043594898656 1805871.1846615113317966)", - "surface": 8190000, - "canton": null, - "numero_insee": "31492" - } - }, - { - "pk": 28118, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-LARY-BOUJEAN", - "center": "POINT (469976.6214606309076771 1803392.5311286007054150)", - "surface": 8380000, - "canton": null, - "numero_insee": "31493" - } - }, - { - "pk": 11146, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-LAURENT", - "center": "POINT (475187.5963384787319228 1814848.8906708299182355)", - "surface": 8600000, - "canton": null, - "numero_insee": "31494" - } - }, - { - "pk": 3801, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-LEON", - "center": "POINT (537199.9104065957944840 1821872.6521157682873309)", - "surface": 24360000, - "canton": null, - "numero_insee": "31495" - } - }, - { - "pk": 12628, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINTE-LIVRADE", - "center": "POINT (501021.5615497189573944 1850403.6005912036634982)", - "surface": 6260000, - "canton": null, - "numero_insee": "31496" - } - }, - { - "pk": 13274, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-LOUP-CAMMAS", - "center": "POINT (530812.7289306590100750 1855457.2120406886097044)", - "surface": 3650000, - "canton": null, - "numero_insee": "31497" - } - }, - { - "pk": 11144, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-LOUP-EN-COMMINGES", - "center": "POINT (456539.6840847617713735 1805984.1741049392148852)", - "surface": 4750000, - "canton": null, - "numero_insee": "31498" - } - }, - { - "pk": 23393, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-LYS", - "center": "POINT (507858.6338427384616807 1834842.9785733455792069)", - "surface": 21540000, - "canton": null, - "numero_insee": "31499" - } - }, - { - "pk": 31632, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-MAMET", - "center": "POINT (459977.9905601274222136 1753551.3727465413976461)", - "surface": 11280000, - "canton": null, - "numero_insee": "31500" - } - }, - { - "pk": 34390, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-MARCEL-PAULEL", - "center": "POINT (541664.1456380049930885 1850742.4377976916730404)", - "surface": 7140000, - "canton": null, - "numero_insee": "31501" - } - }, - { - "pk": 19210, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-MARCET", - "center": "POINT (470400.3225116147077642 1800592.8169460250064731)", - "surface": 14380000, - "canton": null, - "numero_insee": "31502" - } - }, - { - "pk": 3179, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-MARTORY", - "center": "POINT (485869.4661149720195681 1794414.0204835096374154)", - "surface": 8330000, - "canton": null, - "numero_insee": "31503" - } - }, - { - "pk": 7594, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-MEDARD", - "center": "POINT (477072.3442259540315717 1792839.1861659178975970)", - "surface": 5330000, - "canton": null, - "numero_insee": "31504" - } - }, - { - "pk": 10006, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-MICHEL", - "center": "POINT (498071.1018247479805723 1795917.1167996209114790)", - "surface": 15530000, - "canton": null, - "numero_insee": "31505" - } - }, - { - "pk": 20671, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-ORENS-DE-GAMEVILLE", - "center": "POINT (535146.6327872475376353 1839976.0128020253032446)", - "surface": 13060000, - "canton": null, - "numero_insee": "31506" - } - }, - { - "pk": 13834, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-PAUL-SUR-SAVE", - "center": "POINT (509885.8778033772250637 1855883.4299613521434367)", - "surface": 5230000, - "canton": null, - "numero_insee": "31507" - } - }, - { - "pk": 37968, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-PAUL-D'OUEIL", - "center": "POINT (454009.1389535319758579 1761010.7763544607441872)", - "surface": 7400000, - "canton": null, - "numero_insee": "31508" - } - }, - { - "pk": 25090, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-PE-D'ARDET", - "center": "POINT (464586.5017595148528926 1777317.5773993050679564)", - "surface": 3440000, - "canton": null, - "numero_insee": "31509" - } - }, - { - "pk": 34906, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-PE-DELBOSC", - "center": "POINT (466429.6315560148796067 1808569.0799912661314011)", - "surface": 5520000, - "canton": null, - "numero_insee": "31510" - } - }, - { - "pk": 11866, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-PIERRE", - "center": "POINT (543784.7438095887191594 1848557.6881927645299584)", - "surface": 4790000, - "canton": null, - "numero_insee": "31511" - } - }, - { - "pk": 30374, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-PIERRE-DE-LAGES", - "center": "POINT (542546.9239672347903252 1840938.8168398363050073)", - "surface": 7210000, - "canton": null, - "numero_insee": "31512" - } - }, - { - "pk": 20239, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-PLANCARD", - "center": "POINT (456007.0898792635998689 1797770.2939066018443555)", - "surface": 16030000, - "canton": null, - "numero_insee": "31513" - } - }, - { - "pk": 36117, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-ROME", - "center": "POINT (546193.6424318706849590 1823849.9308400666341186)", - "surface": 3720000, - "canton": null, - "numero_insee": "31514" - } - }, - { - "pk": 5847, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-RUSTICE", - "center": "POINT (518700.8956194410566241 1867269.4231765042059124)", - "surface": 2430000, - "canton": null, - "numero_insee": "31515" - } - }, - { - "pk": 17916, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-SAUVEUR", - "center": "POINT (524054.8054723882814869 1861507.6292866782750934)", - "surface": 7140000, - "canton": null, - "numero_insee": "31516" - } - }, - { - "pk": 15583, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-SULPICE-SUR-LEZE", - "center": "POINT (519044.6968217268586159 1814012.4030455071479082)", - "surface": 14140000, - "canton": null, - "numero_insee": "31517" - } - }, - { - "pk": 33463, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-THOMAS", - "center": "POINT (498943.3635611963691190 1835469.5571904322132468)", - "surface": 14160000, - "canton": null, - "numero_insee": "31518" - } - }, - { - "pk": 25109, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAINT-VINCENT", - "center": "POINT (553078.4135893902275711 1826610.5410644235089421)", - "surface": 3140000, - "canton": null, - "numero_insee": "31519" - } - }, - { - "pk": 36388, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAJAS", - "center": "POINT (493464.8121183691546321 1820106.6132867569103837)", - "surface": 5010000, - "canton": null, - "numero_insee": "31520" - } - }, - { - "pk": 4674, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SALEICH", - "center": "POINT (488179.2293179376865737 1781518.2066326665226370)", - "surface": 14100000, - "canton": null, - "numero_insee": "31521" - } - }, - { - "pk": 34460, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SALERM", - "center": "POINT (477107.1001675177831203 1812762.4263416503090411)", - "surface": 5830000, - "canton": null, - "numero_insee": "31522" - } - }, - { - "pk": 34224, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SALIES-DU-SALAT", - "center": "POINT (487911.5948770099785179 1789625.4234111974947155)", - "surface": 6760000, - "canton": null, - "numero_insee": "31523" - } - }, - { - "pk": 4595, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SALLES-ET-PRATVIEL", - "center": "POINT (458218.8020360920345411 1760444.9694169221911579)", - "surface": 2090000, - "canton": null, - "numero_insee": "31524" - } - }, - { - "pk": 12347, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SALLES-SUR-GARONNE", - "center": "POINT (505271.5281885391450487 1808891.9276245278306305)", - "surface": 5780000, - "canton": null, - "numero_insee": "31525" - } - }, - { - "pk": 7193, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LA SALVETAT-SAINT-GILLES", - "center": "POINT (513405.3568191232625395 1841997.1833650225307792)", - "surface": 5750000, - "canton": null, - "numero_insee": "31526" - } - }, - { - "pk": 9953, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LA SALVETAT-LAURAGAIS", - "center": "POINT (556582.6282087675062940 1838553.3054414144717157)", - "surface": 3650000, - "canton": null, - "numero_insee": "31527" - } - }, - { - "pk": 24905, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAMAN", - "center": "POINT (468559.3178107972489670 1805282.9569603800773621)", - "surface": 5600000, - "canton": null, - "numero_insee": "31528" - } - }, - { - "pk": 9463, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAMOUILLAN", - "center": "POINT (487156.9815884011331946 1808140.5375863756053150)", - "surface": 5460000, - "canton": null, - "numero_insee": "31529" - } - }, - { - "pk": 33763, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SANA", - "center": "POINT (492099.7384052022243850 1803676.4551591679919511)", - "surface": 2740000, - "canton": null, - "numero_insee": "31530" - } - }, - { - "pk": 28790, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SARRECAVE", - "center": "POINT (458167.1488189997617155 1802894.0956869560759515)", - "surface": 2500000, - "canton": null, - "numero_insee": "31531" - } - }, - { - "pk": 31716, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SARREMEZAN", - "center": "POINT (463677.2662323405966163 1802439.2196553321555257)", - "surface": 4260000, - "canton": null, - "numero_insee": "31532" - } - }, - { - "pk": 20024, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAUBENS", - "center": "POINT (520803.1912121042259969 1831246.6484671304933727)", - "surface": 6050000, - "canton": null, - "numero_insee": "31533" - } - }, - { - "pk": 29370, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAUSSENS", - "center": "POINT (550436.0179829150438309 1843307.3191301953047514)", - "surface": 3090000, - "canton": null, - "numero_insee": "31534" - } - }, - { - "pk": 19876, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAUVETERRE-DE-COMMINGES", - "center": "POINT (464041.9298699498176575 1782619.2596925150137395)", - "surface": 30810000, - "canton": null, - "numero_insee": "31535" - } - }, - { - "pk": 14823, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAUX-ET-POMAREDE", - "center": "POINT (466939.7198113618069328 1795358.0793298340868205)", - "surface": 12730000, - "canton": null, - "numero_insee": "31536" - } - }, - { - "pk": 12760, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAVARTHES", - "center": "POINT (474975.0401393807842396 1792221.0715955919586122)", - "surface": 3040000, - "canton": null, - "numero_insee": "31537" - } - }, - { - "pk": 37183, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SAVERES", - "center": "POINT (499575.5126661948161200 1819656.8801384125836194)", - "surface": 10820000, - "canton": null, - "numero_insee": "31538" - } - }, - { - "pk": 13736, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SEDEILHAC", - "center": "POINT (453722.8420016373274848 1795548.8105290108360350)", - "surface": 6070000, - "canton": null, - "numero_insee": "31539" - } - }, - { - "pk": 30375, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SEILH", - "center": "POINT (520808.1179193232092075 1854672.9909778470173478)", - "surface": 6150000, - "canton": null, - "numero_insee": "31541" - } - }, - { - "pk": 13186, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SEILHAN", - "center": "POINT (456314.3759592041606084 1784857.8538614290300757)", - "surface": 4720000, - "canton": null, - "numero_insee": "31542" - } - }, - { - "pk": 24724, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SENARENS", - "center": "POINT (489481.3342308292048983 1817570.6335498695261776)", - "surface": 7030000, - "canton": null, - "numero_insee": "31543" - } - }, - { - "pk": 15246, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SENGOUAGNET", - "center": "POINT (473026.5202078899601474 1773683.2899384549818933)", - "surface": 18910000, - "canton": null, - "numero_insee": "31544" - } - }, - { - "pk": 16984, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SEPX", - "center": "POINT (477748.1623825622955337 1795848.2777989953756332)", - "surface": 12260000, - "canton": null, - "numero_insee": "31545" - } - }, - { - "pk": 24249, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SEYRE", - "center": "POINT (545340.3536411669338122 1818136.3045659246854484)", - "surface": 3890000, - "canton": null, - "numero_insee": "31546" - } - }, - { - "pk": 13973, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SEYSSES", - "center": "POINT (514977.8407770994817838 1833500.6988676835317165)", - "surface": 25310000, - "canton": null, - "numero_insee": "31547" - } - }, - { - "pk": 25828, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SIGNAC", - "center": "POINT (459249.4559800808783621 1768963.5544875941704959)", - "surface": 3270000, - "canton": null, - "numero_insee": "31548" - } - }, - { - "pk": 7150, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SODE", - "center": "POINT (461043.5147264444967732 1757865.3162798846606165)", - "surface": 5450000, - "canton": null, - "numero_insee": "31549" - } - }, - { - "pk": 34671, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "SOUEICH", - "center": "POINT (473038.5209508388652466 1784295.7970870761200786)", - "surface": 11420000, - "canton": null, - "numero_insee": "31550" - } - }, - { - "pk": 11640, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TARABEL", - "center": "POINT (546403.6286922317231074 1834663.9310002680867910)", - "surface": 7450000, - "canton": null, - "numero_insee": "31551" - } - }, - { - "pk": 33770, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TERREBASSE", - "center": "POINT (488984.7275449966546148 1805052.1659109578467906)", - "surface": 9670000, - "canton": null, - "numero_insee": "31552" - } - }, - { - "pk": 37515, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "THIL", - "center": "POINT (504469.3999923551455140 1857139.7773449379019439)", - "surface": 23800000, - "canton": null, - "numero_insee": "31553" - } - }, - { - "pk": 12368, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TOUILLE", - "center": "POINT (489429.8827107573160902 1787635.7197811652440578)", - "surface": 6570000, - "canton": null, - "numero_insee": "31554" - } - }, - { - "pk": 15586, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TOULOUSE", - "center": "POINT (526801.9600733631523326 1844211.2200145428068936)", - "surface": 118090000, - "canton": null, - "numero_insee": "31555" - } - }, - { - "pk": 11594, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LES TOURREILLES", - "center": "POINT (454256.5804826817475259 1791548.5937530701048672)", - "surface": 12380000, - "canton": null, - "numero_insee": "31556" - } - }, - { - "pk": 28276, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TOURNEFEUILLE", - "center": "POINT (518909.4913561705034226 1842243.2760475073009729)", - "surface": 18260000, - "canton": null, - "numero_insee": "31557" - } - }, - { - "pk": 7370, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TOUTENS", - "center": "POINT (552144.8175703079905361 1830507.1603453955613077)", - "surface": 4930000, - "canton": null, - "numero_insee": "31558" - } - }, - { - "pk": 15106, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TREBONS-DE-LUCHON", - "center": "POINT (455041.7927669608616270 1757214.8342995962593704)", - "surface": 900000, - "canton": null, - "numero_insee": "31559" - } - }, - { - "pk": 15585, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "TREBONS-SUR-LA-GRASSE", - "center": "POINT (550066.8492563213221729 1827586.5025115374010056)", - "surface": 10940000, - "canton": null, - "numero_insee": "31560" - } - }, - { - "pk": 6223, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "L'UNION", - "center": "POINT (531053.8664143781643361 1850553.7524377414956689)", - "surface": 6870000, - "canton": null, - "numero_insee": "31561" - } - }, - { - "pk": 31136, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "URAU", - "center": "POINT (487103.8191004985710606 1778405.6401259594131261)", - "surface": 18640000, - "canton": null, - "numero_insee": "31562" - } - }, - { - "pk": 3728, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VACQUIERS", - "center": "POINT (531227.2176558180944994 1865772.1150987178552896)", - "surface": 19620000, - "canton": null, - "numero_insee": "31563" - } - }, - { - "pk": 27907, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VALCABRERE", - "center": "POINT (457035.8958148265955970 1782360.9177316979039460)", - "surface": 1650000, - "canton": null, - "numero_insee": "31564" - } - }, - { - "pk": 4785, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VALENTINE", - "center": "POINT (466594.9426195658743382 1788647.4380438090302050)", - "surface": 8160000, - "canton": null, - "numero_insee": "31565" - } - }, - { - "pk": 29571, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VALLEGUE", - "center": "POINT (552691.3774014236405492 1825005.4872599870432168)", - "surface": 4220000, - "canton": null, - "numero_insee": "31566" - } - }, - { - "pk": 36955, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VALLESVILLES", - "center": "POINT (544424.6778137652436271 1843857.7625428223982453)", - "surface": 8230000, - "canton": null, - "numero_insee": "31567" - } - }, - { - "pk": 12189, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VARENNES", - "center": "POINT (547738.4672945648198947 1830670.5591025087051094)", - "surface": 4650000, - "canton": null, - "numero_insee": "31568" - } - }, - { - "pk": 14920, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VAUDREUILLE", - "center": "POINT (572716.0659881436731666 1824772.5822782707400620)", - "surface": 11460000, - "canton": null, - "numero_insee": "31569" - } - }, - { - "pk": 25630, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VAUX", - "center": "POINT (558766.9044666669797152 1828760.4930842397734523)", - "surface": 10480000, - "canton": null, - "numero_insee": "31570" - } - }, - { - "pk": 8671, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VENDINE", - "center": "POINT (553739.4951204434037209 1843334.9340977401006967)", - "surface": 2880000, - "canton": null, - "numero_insee": "31571" - } - }, - { - "pk": 15216, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VENERQUE", - "center": "POINT (529455.7614077129401267 1826112.9120560961309820)", - "surface": 14480000, - "canton": null, - "numero_insee": "31572" - } - }, - { - "pk": 16176, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VERFEIL", - "center": "POINT (546663.5326426350511611 1851484.9830760604236275)", - "surface": 41500000, - "canton": null, - "numero_insee": "31573" - } - }, - { - "pk": 37191, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VERNET", - "center": "POINT (525756.8249353776918724 1825481.3744897290598601)", - "surface": 10670000, - "canton": null, - "numero_insee": "31574" - } - }, - { - "pk": 5225, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VIEILLEVIGNE", - "center": "POINT (544999.8879478811286390 1822938.9329588115215302)", - "surface": 3180000, - "canton": null, - "numero_insee": "31576" - } - }, - { - "pk": 29569, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VIGNAUX", - "center": "POINT (497482.0766431473894045 1854678.9525186582468450)", - "surface": 4060000, - "canton": null, - "numero_insee": "31577" - } - }, - { - "pk": 7797, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VIGOULET-AUZIL", - "center": "POINT (527985.7908678059466183 1834309.9410684814210981)", - "surface": 3460000, - "canton": null, - "numero_insee": "31578" - } - }, - { - "pk": 27933, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLARIES", - "center": "POINT (531764.4901294481242076 1861371.7187592610716820)", - "surface": 7370000, - "canton": null, - "numero_insee": "31579" - } - }, - { - "pk": 9424, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLATE", - "center": "POINT (522615.9554566938895732 1829960.2894974942319095)", - "surface": 1840000, - "canton": null, - "numero_insee": "31580" - } - }, - { - "pk": 37488, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLAUDRIC", - "center": "POINT (527384.8650209200568497 1870345.1461011776700616)", - "surface": 12110000, - "canton": null, - "numero_insee": "31581" - } - }, - { - "pk": 23589, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLEFRANCHE-DE-LAURAGAIS", - "center": "POINT (549905.9602403929457068 1822879.8149979105219245)", - "surface": 10490000, - "canton": null, - "numero_insee": "31582" - } - }, - { - "pk": 14116, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLEMATIER", - "center": "POINT (532293.2745754097122699 1869985.6552073042839766)", - "surface": 14970000, - "canton": null, - "numero_insee": "31583" - } - }, - { - "pk": 21244, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLEMUR-SUR-TARN", - "center": "POINT (531859.4484711780678481 1873986.4464594484306872)", - "surface": 46830000, - "canton": null, - "numero_insee": "31584" - } - }, - { - "pk": 30619, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLENEUVE-DE-RIVIERE", - "center": "POINT (464060.6448711476987228 1792430.8268105625174940)", - "surface": 13940000, - "canton": null, - "numero_insee": "31585" - } - }, - { - "pk": 26487, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLENEUVE-LECUSSAN", - "center": "POINT (449029.3310481603257358 1794108.2911599013023078)", - "surface": 16360000, - "canton": null, - "numero_insee": "31586" - } - }, - { - "pk": 27642, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLENEUVE-LES-BOULOC", - "center": "POINT (526337.1613623234443367 1863929.3264709557406604)", - "surface": 12890000, - "canton": null, - "numero_insee": "31587" - } - }, - { - "pk": 30020, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLENEUVE-TOLOSANE", - "center": "POINT (519757.9004332427866757 1836543.9265351884532720)", - "surface": 5120000, - "canton": null, - "numero_insee": "31588" - } - }, - { - "pk": 34158, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "VILLENOUVELLE", - "center": "POINT (545371.8792533118976280 1826345.9072440594900399)", - "surface": 7950000, - "canton": null, - "numero_insee": "31589" - } - }, - { - "pk": 27104, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "BINOS", - "center": "POINT (458553.6609178592334501 1768357.0773397150915116)", - "surface": 1980000, - "canton": null, - "numero_insee": "31590" - } - }, - { - "pk": 6770, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "ESCOULIS", - "center": "POINT (493509.3915152616100386 1790673.1347717314492911)", - "surface": 4710000, - "canton": null, - "numero_insee": "31591" - } - }, - { - "pk": 19101, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "LARRA", - "center": "POINT (510254.6131054406287149 1859690.7315043506678194)", - "surface": 16490000, - "canton": null, - "numero_insee": "31592" - } - }, - { - "pk": 6277, - "model": "ishtar_common.town", - "fields": { - "departement": 32, - "name": "CAZAC", - "center": "POINT (487583.4557688736822456 1817054.2838612615596503)", - "surface": 6230000, - "canton": null, - "numero_insee": "31593" - } - }, - { - "pk": 18710, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AIGNAN", - "center": "POINT (418372.0370789595181122 1857326.7400300407316536)", - "surface": 32150000, - "canton": null, - "numero_insee": "32001" - } - }, - { - "pk": 6093, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ANSAN", - "center": "POINT (474453.0178633501636796 1855088.2212590198032558)", - "surface": 7750000, - "canton": null, - "numero_insee": "32002" - } - }, - { - "pk": 27450, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ANTRAS", - "center": "POINT (447278.2137587423203513 1860469.0976940947584808)", - "surface": 6730000, - "canton": null, - "numero_insee": "32003" - } - }, - { - "pk": 11012, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ARBLADE-LE-BAS", - "center": "POINT (397433.6517163576791063 1859156.1320726301055402)", - "surface": 7630000, - "canton": null, - "numero_insee": "32004" - } - }, - { - "pk": 36710, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ARDIZAS", - "center": "POINT (492040.6315455403528176 1858938.4831919549033046)", - "surface": 8480000, - "canton": null, - "numero_insee": "32007" - } - }, - { - "pk": 7705, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ARMENTIEUX", - "center": "POINT (418630.9483666969463229 1838107.3448120972607285)", - "surface": 4880000, - "canton": null, - "numero_insee": "32008" - } - }, - { - "pk": 35564, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ARMOUS-ET-CAU", - "center": "POINT (426095.0314664128236473 1843475.0091204138007015)", - "surface": 9310000, - "canton": null, - "numero_insee": "32009" - } - }, - { - "pk": 13951, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ARROUEDE", - "center": "POINT (457632.2476522140204906 1819108.2519799317233264)", - "surface": 6500000, - "canton": null, - "numero_insee": "32010" - } - }, - { - "pk": 31493, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AUBIET", - "center": "POINT (474583.8758441692916676 1851385.1754057416692376)", - "surface": 39210000, - "canton": null, - "numero_insee": "32012" - } - }, - { - "pk": 15675, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AUCH", - "center": "POINT (457661.9912105209077708 1851745.3351269715931267)", - "surface": 73400000, - "canton": null, - "numero_insee": "32013" - } - }, - { - "pk": 30012, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AUGNAX", - "center": "POINT (473918.4188390244962648 1859188.3501469092443585)", - "surface": 3990000, - "canton": null, - "numero_insee": "32014" - } - }, - { - "pk": 32754, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AUJAN-MOURNEDE", - "center": "POINT (451009.4044062649481930 1820955.5239904765039682)", - "surface": 8730000, - "canton": null, - "numero_insee": "32015" - } - }, - { - "pk": 7832, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AURENSAN", - "center": "POINT (394808.4136195743922144 1849723.9835150162689388)", - "surface": 6350000, - "canton": null, - "numero_insee": "32017" - } - }, - { - "pk": 33686, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AURIMONT", - "center": "POINT (477969.6494733709841967 1841502.1865321586374193)", - "surface": 8140000, - "canton": null, - "numero_insee": "32018" - } - }, - { - "pk": 25028, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AUTERIVE", - "center": "POINT (462136.3511780410772189 1843373.0210714177228510)", - "surface": 10900000, - "canton": null, - "numero_insee": "32019" - } - }, - { - "pk": 10478, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AUX-AUSSAT", - "center": "POINT (431823.5049401233554818 1828705.6632318315096200)", - "surface": 12740000, - "canton": null, - "numero_insee": "32020" - } - }, - { - "pk": 34948, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AVENSAC", - "center": "POINT (484432.9818906364380382 1870888.5414048880338669)", - "surface": 4870000, - "canton": null, - "numero_insee": "32021" - } - }, - { - "pk": 15021, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AVERON-BERGELLE", - "center": "POINT (416913.5117617420619354 1864222.3639611257240176)", - "surface": 14550000, - "canton": null, - "numero_insee": "32022" - } - }, - { - "pk": 33051, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AVEZAN", - "center": "POINT (476474.0991166320163757 1876929.1478539763484150)", - "surface": 5640000, - "canton": null, - "numero_insee": "32023" - } - }, - { - "pk": 32779, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AYGUETINTE", - "center": "POINT (445581.2054210311034694 1871967.7813724880106747)", - "surface": 6280000, - "canton": null, - "numero_insee": "32024" - } - }, - { - "pk": 19081, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AYZIEU", - "center": "POINT (409810.3569703972898424 1875776.5280641717836261)", - "surface": 13780000, - "canton": null, - "numero_insee": "32025" - } - }, - { - "pk": 7472, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BAJONNETTE", - "center": "POINT (473438.2188677681842819 1868795.0102103264071047)", - "surface": 7540000, - "canton": null, - "numero_insee": "32026" - } - }, - { - "pk": 6203, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BARCUGNAN", - "center": "POINT (442599.5716999389696866 1820985.9754723915830255)", - "surface": 9200000, - "canton": null, - "numero_insee": "32028" - } - }, - { - "pk": 36063, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BARS", - "center": "POINT (435163.3471790864132345 1836442.0148381220642477)", - "surface": 10770000, - "canton": null, - "numero_insee": "32030" - } - }, - { - "pk": 29827, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BASCOUS", - "center": "POINT (422686.4558834142517298 1868274.4980468486901373)", - "surface": 10200000, - "canton": null, - "numero_insee": "32031" - } - }, - { - "pk": 15017, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BASSOUES", - "center": "POINT (431199.5890451535233296 1843617.3356787364464253)", - "surface": 32700000, - "canton": null, - "numero_insee": "32032" - } - }, - { - "pk": 6286, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BAZIAN", - "center": "POINT (436821.1055719949072227 1853875.2763973181135952)", - "surface": 12640000, - "canton": null, - "numero_insee": "32033" - } - }, - { - "pk": 33704, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BAZUGUES", - "center": "POINT (438322.9799628571490757 1829660.4665914860088378)", - "surface": 5380000, - "canton": null, - "numero_insee": "32034" - } - }, - { - "pk": 20454, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BEAUCAIRE", - "center": "POINT (442072.6106071874964982 1872539.3910606091376394)", - "surface": 15980000, - "canton": null, - "numero_insee": "32035" - } - }, - { - "pk": 21450, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BEAUMARCHES", - "center": "POINT (419673.3820380609831773 1845223.9528662397060543)", - "surface": 32870000, - "canton": null, - "numero_insee": "32036" - } - }, - { - "pk": 36035, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BEAUPUY", - "center": "POINT (493014.8310579512035474 1850136.7660367053467780)", - "surface": 6570000, - "canton": null, - "numero_insee": "32038" - } - }, - { - "pk": 10954, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BECCAS", - "center": "POINT (423219.2957488500978798 1828033.8303900349419564)", - "surface": 3380000, - "canton": null, - "numero_insee": "32039" - } - }, - { - "pk": 34147, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BEDECHAN", - "center": "POINT (475058.2738849614979699 1842479.1337285195477307)", - "surface": 7930000, - "canton": null, - "numero_insee": "32040" - } - }, - { - "pk": 20205, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BELLEGARDE", - "center": "POINT (461676.0339795132167637 1826450.1013354794122279)", - "surface": 14860000, - "canton": null, - "numero_insee": "32041" - } - }, - { - "pk": 16201, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BELLOC-SAINT-CLAMENS", - "center": "POINT (446027.8688479834236205 1830124.7163735886570066)", - "surface": 10650000, - "canton": null, - "numero_insee": "32042" - } - }, - { - "pk": 5020, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BELMONT", - "center": "POINT (431295.4671021938556805 1856232.2380752954632044)", - "surface": 15130000, - "canton": null, - "numero_insee": "32043" - } - }, - { - "pk": 19082, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BERAUT", - "center": "POINT (444896.0307079423218966 1882173.3255780115723610)", - "surface": 12520000, - "canton": null, - "numero_insee": "32044" - } - }, - { - "pk": 15177, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BERDOUES", - "center": "POINT (443009.7521467880578712 1831901.7614347864873707)", - "surface": 18060000, - "canton": null, - "numero_insee": "32045" - } - }, - { - "pk": 22528, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BERNEDE", - "center": "POINT (393460.0041621082928032 1855419.2417364772409201)", - "surface": 8270000, - "canton": null, - "numero_insee": "32046" - } - }, - { - "pk": 24323, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BERRAC", - "center": "POINT (456531.7096704059513286 1891479.7803842306602746)", - "surface": 8030000, - "canton": null, - "numero_insee": "32047" - } - }, - { - "pk": 36733, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BETCAVE-AGUIN", - "center": "POINT (465964.8425701988162473 1828387.8375894573982805)", - "surface": 10080000, - "canton": null, - "numero_insee": "32048" - } - }, - { - "pk": 33441, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BETOUS", - "center": "POINT (413443.7619735081680119 1860089.1491238903254271)", - "surface": 5220000, - "canton": null, - "numero_insee": "32049" - } - }, - { - "pk": 32309, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BETPLAN", - "center": "POINT (427437.8512263916782103 1826366.7768902401439846)", - "surface": 5530000, - "canton": null, - "numero_insee": "32050" - } - }, - { - "pk": 11911, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BEZERIL", - "center": "POINT (482102.2592622035881504 1838132.6866208394058049)", - "surface": 9750000, - "canton": null, - "numero_insee": "32051" - } - }, - { - "pk": 8670, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BEZOLLES", - "center": "POINT (439886.0780107275350019 1870619.1929427019786090)", - "surface": 11020000, - "canton": null, - "numero_insee": "32052" - } - }, - { - "pk": 35063, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BEZUES-BAJON", - "center": "POINT (459709.5956696198554710 1822128.8994411991443485)", - "surface": 13280000, - "canton": null, - "numero_insee": "32053" - } - }, - { - "pk": 36562, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BIRAN", - "center": "POINT (444006.2706275379168801 1856637.7691281598526984)", - "surface": 36600000, - "canton": null, - "numero_insee": "32054" - } - }, - { - "pk": 33787, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BIVES", - "center": "POINT (476724.1821041422081180 1870924.6139511417131871)", - "surface": 10070000, - "canton": null, - "numero_insee": "32055" - } - }, - { - "pk": 7702, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BLANQUEFORT", - "center": "POINT (476467.5803511922713369 1853603.2754066942725331)", - "surface": 3370000, - "canton": null, - "numero_insee": "32056" - } - }, - { - "pk": 35788, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BLAZIERT", - "center": "POINT (451102.4002837649313733 1882224.7340667475946248)", - "surface": 10980000, - "canton": null, - "numero_insee": "32057" - } - }, - { - "pk": 22636, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BLOUSSON-SERIAN", - "center": "POINT (426299.4279164894251153 1830862.4722351040691137)", - "surface": 5320000, - "canton": null, - "numero_insee": "32058" - } - }, - { - "pk": 5940, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BONAS", - "center": "POINT (444328.7671037252875976 1866050.8859363889787346)", - "surface": 10140000, - "canton": null, - "numero_insee": "32059" - } - }, - { - "pk": 25029, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BOUCAGNERES", - "center": "POINT (461050.9644404381979257 1841461.8819038176443428)", - "surface": 6130000, - "canton": null, - "numero_insee": "32060" - } - }, - { - "pk": 6628, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BOULAUR", - "center": "POINT (472776.6225610136170872 1839957.3758244547061622)", - "surface": 9050000, - "canton": null, - "numero_insee": "32061" - } - }, - { - "pk": 8335, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BOURROUILLAN", - "center": "POINT (411139.8010234762914479 1872383.7553209094330668)", - "surface": 8710000, - "canton": null, - "numero_insee": "32062" - } - }, - { - "pk": 15174, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BOUZON-GELLENAVE", - "center": "POINT (413571.9750652498332784 1856686.4206616501323879)", - "surface": 10290000, - "canton": null, - "numero_insee": "32063" - } - }, - { - "pk": 23307, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LE BROUILH-MONBERT", - "center": "POINT (443136.8267117294017226 1852826.3284407560713589)", - "surface": 12860000, - "canton": null, - "numero_insee": "32065" - } - }, - { - "pk": 18803, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "BRUGNENS", - "center": "POINT (470004.7856469362741336 1872370.4857523564714938)", - "surface": 13510000, - "canton": null, - "numero_insee": "32066" - } - }, - { - "pk": 22865, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CABAS-LOUMASSES", - "center": "POINT (459738.6516025231685489 1818625.1474893507547677)", - "surface": 4250000, - "canton": null, - "numero_insee": "32067" - } - }, - { - "pk": 10890, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CADEILHAN", - "center": "POINT (473720.2462017205543816 1870999.7820358418393880)", - "surface": 8410000, - "canton": null, - "numero_insee": "32068" - } - }, - { - "pk": 12808, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CADEILLAN", - "center": "POINT (478704.9876682846806943 1825289.9685866544023156)", - "surface": 4390000, - "canton": null, - "numero_insee": "32069" - } - }, - { - "pk": 6523, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAHUZAC-SUR-ADOUR", - "center": "POINT (409012.6115269468864426 1851142.6290167164988816)", - "surface": 6710000, - "canton": null, - "numero_insee": "32070" - } - }, - { - "pk": 14346, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CALLIAN", - "center": "POINT (432548.8945071704220027 1849935.5663582137785852)", - "surface": 7850000, - "canton": null, - "numero_insee": "32072" - } - }, - { - "pk": 13031, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAMPAGNE-D'ARMAGNAC", - "center": "POINT (412511.4929373383638449 1875999.0501629146747291)", - "surface": 5510000, - "canton": null, - "numero_insee": "32073" - } - }, - { - "pk": 26587, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CANNET", - "center": "POINT (406529.8136226343340240 1848719.4460942768491805)", - "surface": 4950000, - "canton": null, - "numero_insee": "32074" - } - }, - { - "pk": 29464, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASSAIGNE", - "center": "POINT (439808.1903605984989554 1880028.8993484536185861)", - "surface": 8580000, - "canton": null, - "numero_insee": "32075" - } - }, - { - "pk": 19273, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTELNAU-BARBARENS", - "center": "POINT (469544.1592834840994328 1843434.4824786400422454)", - "surface": 42790000, - "canton": null, - "numero_insee": "32076" - } - }, - { - "pk": 37461, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTELNAU-D'ANGLES", - "center": "POINT (434966.3268528986955062 1848153.5502255300525576)", - "surface": 12000000, - "canton": null, - "numero_insee": "32077" - } - }, - { - "pk": 8314, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTELNAU-D'ARBIEU", - "center": "POINT (467561.6038457419490442 1877255.6070085386745632)", - "surface": 16270000, - "canton": null, - "numero_insee": "32078" - } - }, - { - "pk": 15088, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTELNAU-D'AUZAN", - "center": "POINT (420346.0340660734800622 1884973.5352592677809298)", - "surface": 44210000, - "canton": null, - "numero_insee": "32079" - } - }, - { - "pk": 9818, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTELNAU-SUR-L'AUVIGNON", - "center": "POINT (450166.6441670487984084 1886421.5780529605690390)", - "surface": 10220000, - "canton": null, - "numero_insee": "32080" - } - }, - { - "pk": 14638, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTERA-LECTOUROIS", - "center": "POINT (461457.4623816016828641 1889017.8949761185795069)", - "surface": 18950000, - "canton": null, - "numero_insee": "32082" - } - }, - { - "pk": 17481, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTERA-VERDUZAN", - "center": "POINT (446611.2586629212601110 1868472.4454315267503262)", - "surface": 20120000, - "canton": null, - "numero_insee": "32083" - } - }, - { - "pk": 35160, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTERON", - "center": "POINT (481863.0305850438890047 1878976.1058132816106081)", - "surface": 11070000, - "canton": null, - "numero_insee": "32084" - } - }, - { - "pk": 6513, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTEX", - "center": "POINT (435683.0618684766814113 1822029.9754297977779061)", - "surface": 5450000, - "canton": null, - "numero_insee": "32086" - } - }, - { - "pk": 23488, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTEX-D'ARMAGNAC", - "center": "POINT (398585.5750079043209553 1877285.6694321879185736)", - "surface": 12370000, - "canton": null, - "numero_insee": "32087" - } - }, - { - "pk": 17536, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTILLON-DEBATS", - "center": "POINT (429152.7038824757910334 1861119.9717669393867254)", - "surface": 35460000, - "canton": null, - "numero_insee": "32088" - } - }, - { - "pk": 13546, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTILLON-MASSAS", - "center": "POINT (455100.4553600683575496 1858832.0210356661118567)", - "surface": 9790000, - "canton": null, - "numero_insee": "32089" - } - }, - { - "pk": 4939, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTILLON-SAVES", - "center": "POINT (490487.0124001543154009 1841105.6455940597224981)", - "surface": 12050000, - "canton": null, - "numero_insee": "32090" - } - }, - { - "pk": 35329, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CASTIN", - "center": "POINT (454620.6760303553892300 1856325.2595439327415079)", - "surface": 11390000, - "canton": null, - "numero_insee": "32091" - } - }, - { - "pk": 10339, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CATONVIELLE", - "center": "POINT (488999.8131749978638254 1851404.8352946888189763)", - "surface": 3100000, - "canton": null, - "numero_insee": "32092" - } - }, - { - "pk": 24468, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAUMONT", - "center": "POINT (402553.8501308345585130 1857396.3617918891832232)", - "surface": 7100000, - "canton": null, - "numero_insee": "32093" - } - }, - { - "pk": 5350, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAUPENNE-D'ARMAGNAC", - "center": "POINT (405973.2444155138218775 1867635.9108131437096745)", - "surface": 21720000, - "canton": null, - "numero_insee": "32094" - } - }, - { - "pk": 33485, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAUSSENS", - "center": "POINT (447679.0079970664810389 1884599.0024600606411695)", - "surface": 13400000, - "canton": null, - "numero_insee": "32095" - } - }, - { - "pk": 15753, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAZAUBON", - "center": "POINT (409849.3069687779061496 1883184.9793856397736818)", - "surface": 55980000, - "canton": null, - "numero_insee": "32096" - } - }, - { - "pk": 15080, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAZAUX-D'ANGLES", - "center": "POINT (432726.7450296347378753 1852640.0583494571037591)", - "surface": 12510000, - "canton": null, - "numero_insee": "32097" - } - }, - { - "pk": 6956, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAZAUX-SAVES", - "center": "POINT (490003.9629353967611678 1838999.2640322125516832)", - "surface": 5630000, - "canton": null, - "numero_insee": "32098" - } - }, - { - "pk": 34182, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CAZAUX-VILLECOMTAL", - "center": "POINT (424707.6548679405241273 1829647.9506642180494964)", - "surface": 4050000, - "canton": null, - "numero_insee": "32099" - } - }, - { - "pk": 4852, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CERAN", - "center": "POINT (468025.9759390968247317 1869550.9729919014498591)", - "surface": 10520000, - "canton": null, - "numero_insee": "32101" - } - }, - { - "pk": 5113, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CEZAN", - "center": "POINT (451816.6526754733640701 1868515.5686050727963448)", - "surface": 12370000, - "canton": null, - "numero_insee": "32102" - } - }, - { - "pk": 5135, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CHELAN", - "center": "POINT (454536.3896243392955512 1818181.5587568287737668)", - "surface": 14020000, - "canton": null, - "numero_insee": "32103" - } - }, - { - "pk": 18248, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CLERMONT-POUYGUILLES", - "center": "POINT (453118.8379505499033257 1832185.7333360549528152)", - "surface": 12890000, - "canton": null, - "numero_insee": "32104" - } - }, - { - "pk": 4639, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CLERMONT-SAVES", - "center": "POINT (493035.6440753829665482 1847634.1394837850239128)", - "surface": 5200000, - "canton": null, - "numero_insee": "32105" - } - }, - { - "pk": 14248, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "COLOGNE", - "center": "POINT (490144.4752532544662245 1858221.9377984928432852)", - "surface": 6650000, - "canton": null, - "numero_insee": "32106" - } - }, - { - "pk": 16882, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CONDOM", - "center": "POINT (442349.5381495882757008 1887458.0400546337477863)", - "surface": 97780000, - "canton": null, - "numero_insee": "32107" - } - }, - { - "pk": 6198, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CORNEILLAN", - "center": "POINT (396279.4490855348994955 1853440.2542189345695078)", - "surface": 8420000, - "canton": null, - "numero_insee": "32108" - } - }, - { - "pk": 4527, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "COULOUME-MONDEBAT", - "center": "POINT (420329.4491334424237721 1850635.4299054830335081)", - "surface": 23160000, - "canton": null, - "numero_insee": "32109" - } - }, - { - "pk": 17103, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "COURRENSAN", - "center": "POINT (431253.1559431442292407 1873450.9618873805738986)", - "surface": 25430000, - "canton": null, - "numero_insee": "32110" - } - }, - { - "pk": 6401, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "COURTIES", - "center": "POINT (423390.5249423230998218 1843652.8757107716519386)", - "surface": 6050000, - "canton": null, - "numero_insee": "32111" - } - }, - { - "pk": 23274, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CRASTES", - "center": "POINT (470421.4132566485204734 1858358.4305806865449995)", - "surface": 19490000, - "canton": null, - "numero_insee": "32112" - } - }, - { - "pk": 25582, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CRAVENCERES", - "center": "POINT (413993.1304208027431741 1866300.5707401663530618)", - "surface": 9190000, - "canton": null, - "numero_insee": "32113" - } - }, - { - "pk": 6743, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "CUELAS", - "center": "POINT (446824.8045081335003488 1818518.1151024727150798)", - "surface": 6700000, - "canton": null, - "numero_insee": "32114" - } - }, - { - "pk": 11973, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "DEMU", - "center": "POINT (425019.4623650986468419 1864589.6832721163518727)", - "surface": 28900000, - "canton": null, - "numero_insee": "32115" - } - }, - { - "pk": 25217, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "DUFFORT", - "center": "POINT (444232.7907381030963734 1817195.1608057899866253)", - "surface": 9980000, - "canton": null, - "numero_insee": "32116" - } - }, - { - "pk": 11671, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "DURAN", - "center": "POINT (456642.6847586959484033 1853939.3428116824943572)", - "surface": 6600000, - "canton": null, - "numero_insee": "32117" - } - }, - { - "pk": 22231, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "DURBAN", - "center": "POINT (456666.2324400432407856 1839022.8209297936409712)", - "surface": 17320000, - "canton": null, - "numero_insee": "32118" - } - }, - { - "pk": 21411, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "EAUZE", - "center": "POINT (420422.1327349034836516 1875764.0643704445101321)", - "surface": 70370000, - "canton": null, - "numero_insee": "32119" - } - }, - { - "pk": 31161, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ENCAUSSE", - "center": "POINT (494571.5486730292323045 1855555.7448754382785410)", - "surface": 15820000, - "canton": null, - "numero_insee": "32120" - } - }, - { - "pk": 3074, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ENDOUFIELLE", - "center": "POINT (493508.4977521938271821 1838928.2939359787851572)", - "surface": 17270000, - "canton": null, - "numero_insee": "32121" - } - }, - { - "pk": 32971, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESCLASSAN-LABASTIDE", - "center": "POINT (455177.3927244194783270 1825395.0792388312984258)", - "surface": 12000000, - "canton": null, - "numero_insee": "32122" - } - }, - { - "pk": 23739, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESCORNEBOEUF", - "center": "POINT (484804.5589029863476753 1850268.7340006560552865)", - "surface": 25770000, - "canton": null, - "numero_insee": "32123" - } - }, - { - "pk": 17327, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESPAON", - "center": "POINT (480999.1270076432847418 1826310.1633046395145357)", - "surface": 8990000, - "canton": null, - "numero_insee": "32124" - } - }, - { - "pk": 3651, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESPAS", - "center": "POINT (419296.1597777273273095 1866644.7097511680331081)", - "surface": 15360000, - "canton": null, - "numero_insee": "32125" - } - }, - { - "pk": 17574, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESTAMPES", - "center": "POINT (433062.8832607842050493 1824110.6872275755740702)", - "surface": 11000000, - "canton": null, - "numero_insee": "32126" - } - }, - { - "pk": 11676, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESTANG", - "center": "POINT (403589.0842056101537310 1877527.1639427768532187)", - "surface": 22810000, - "canton": null, - "numero_insee": "32127" - } - }, - { - "pk": 12453, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESTIPOUY", - "center": "POINT (442237.7246275574434549 1840505.0833487347699702)", - "surface": 11870000, - "canton": null, - "numero_insee": "32128" - } - }, - { - "pk": 6317, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ESTRAMIAC", - "center": "POINT (480223.6463721870677546 1871454.2308840742334723)", - "surface": 9750000, - "canton": null, - "numero_insee": "32129" - } - }, - { - "pk": 14374, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "FAGET-ABBATIAL", - "center": "POINT (466609.9356612012488768 1835100.7781270004343241)", - "surface": 17660000, - "canton": null, - "numero_insee": "32130" - } - }, - { - "pk": 24513, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "FLAMARENS", - "center": "POINT (476046.6140183893148787 1892242.3362526902928948)", - "surface": 14430000, - "canton": null, - "numero_insee": "32131" - } - }, - { - "pk": 21053, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "FLEURANCE", - "center": "POINT (463597.3371518496423960 1872417.4330937801860273)", - "surface": 43640000, - "canton": null, - "numero_insee": "32132" - } - }, - { - "pk": 16745, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "FOURCES", - "center": "POINT (430712.8248649091692641 1890365.0238582871388644)", - "surface": 23710000, - "canton": null, - "numero_insee": "32133" - } - }, - { - "pk": 27254, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "FUSTEROUAU", - "center": "POINT (411770.9172767469426617 1856571.4359802454710007)", - "surface": 7950000, - "canton": null, - "numero_insee": "32135" - } - }, - { - "pk": 33028, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GALIAX", - "center": "POINT (412239.1208699829876423 1848366.1326244634110481)", - "surface": 6140000, - "canton": null, - "numero_insee": "32136" - } - }, - { - "pk": 34271, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GARRAVET", - "center": "POINT (484013.1433701298083179 1825033.7295063734054565)", - "surface": 9320000, - "canton": null, - "numero_insee": "32138" - } - }, - { - "pk": 31695, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GAUDONVILLE", - "center": "POINT (479976.8742919771466404 1877058.3494164745789021)", - "surface": 7380000, - "canton": null, - "numero_insee": "32139" - } - }, - { - "pk": 24849, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GAUJAC", - "center": "POINT (477553.0948435892350972 1831387.3237726574297994)", - "surface": 5100000, - "canton": null, - "numero_insee": "32140" - } - }, - { - "pk": 13357, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GAUJAN", - "center": "POINT (469410.0096769214724191 1823410.7434442392550409)", - "surface": 10760000, - "canton": null, - "numero_insee": "32141" - } - }, - { - "pk": 3482, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GAVARRET-SUR-AULOUSTE", - "center": "POINT (464757.4345042766071856 1865319.2066751429811120)", - "surface": 8360000, - "canton": null, - "numero_insee": "32142" - } - }, - { - "pk": 21739, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GAZAUPOUY", - "center": "POINT (449620.5221126456744969 1891923.0539077694993466)", - "surface": 21220000, - "canton": null, - "numero_insee": "32143" - } - }, - { - "pk": 12863, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GAZAX-ET-BACCARISSE", - "center": "POINT (426968.6666208204114810 1846785.9396363224368542)", - "surface": 9500000, - "canton": null, - "numero_insee": "32144" - } - }, - { - "pk": 32140, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GEE-RIVIERE", - "center": "POINT (396259.6375550869852304 1855842.7715228726156056)", - "surface": 2720000, - "canton": null, - "numero_insee": "32145" - } - }, - { - "pk": 37422, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GISCARO", - "center": "POINT (486542.9536657305434346 1845878.2518335729837418)", - "surface": 5500000, - "canton": null, - "numero_insee": "32148" - } - }, - { - "pk": 17105, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GONDRIN", - "center": "POINT (432922.6185294957831502 1877369.0660168961621821)", - "surface": 34900000, - "canton": null, - "numero_insee": "32149" - } - }, - { - "pk": 12907, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GOUTZ", - "center": "POINT (470734.5892896783188917 1868872.6780388648621738)", - "surface": 8450000, - "canton": null, - "numero_insee": "32150" - } - }, - { - "pk": 10982, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "GOUX", - "center": "POINT (409331.1085453454870731 1848942.7942875162698328)", - "surface": 5480000, - "canton": null, - "numero_insee": "32151" - } - }, - { - "pk": 3807, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "HAGET", - "center": "POINT (423534.5115930252941325 1826234.3905249917879701)", - "surface": 9230000, - "canton": null, - "numero_insee": "32152" - } - }, - { - "pk": 30367, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "HAULIES", - "center": "POINT (464861.6235136857139878 1840692.5898795430548489)", - "surface": 10280000, - "canton": null, - "numero_insee": "32153" - } - }, - { - "pk": 24313, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "IDRAC-RESPAILLES", - "center": "POINT (448277.2428301073377952 1836550.5912846359424293)", - "surface": 13070000, - "canton": null, - "numero_insee": "32156" - } - }, - { - "pk": 26180, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "L'ISLE-ARNE", - "center": "POINT (474518.6802731296629645 1847179.9312257762067020)", - "surface": 6930000, - "canton": null, - "numero_insee": "32157" - } - }, - { - "pk": 24324, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "L'ISLE-BOUZON", - "center": "POINT (471229.6889800696517341 1881590.7685105085838586)", - "surface": 16030000, - "canton": null, - "numero_insee": "32158" - } - }, - { - "pk": 20980, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "L'ISLE-DE-NOE", - "center": "POINT (444607.9314023901242763 1844429.0977397584356368)", - "surface": 25890000, - "canton": null, - "numero_insee": "32159" - } - }, - { - "pk": 23416, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "L'ISLE-JOURDAIN", - "center": "POINT (498450.4839220554567873 1846577.9494023313745856)", - "surface": 70900000, - "canton": null, - "numero_insee": "32160" - } - }, - { - "pk": 4947, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "IZOTGES", - "center": "POINT (409696.8179577021510340 1853150.5146751729771495)", - "surface": 3090000, - "canton": null, - "numero_insee": "32161" - } - }, - { - "pk": 23489, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "JEGUN", - "center": "POINT (447453.5469780787825584 1863473.8824239326640964)", - "surface": 39180000, - "canton": null, - "numero_insee": "32162" - } - }, - { - "pk": 34005, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "JU-BELLOC", - "center": "POINT (412072.8029685421497561 1844260.1560737993568182)", - "surface": 10210000, - "canton": null, - "numero_insee": "32163" - } - }, - { - "pk": 20639, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "JUILLAC", - "center": "POINT (420714.9740968646947294 1840327.0471340897493064)", - "surface": 7620000, - "canton": null, - "numero_insee": "32164" - } - }, - { - "pk": 3073, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "JUILLES", - "center": "POINT (477831.2980787120759487 1846106.2063435446470976)", - "surface": 13960000, - "canton": null, - "numero_insee": "32165" - } - }, - { - "pk": 7069, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "JUSTIAN", - "center": "POINT (436085.4543084413744509 1870187.2966152932494879)", - "surface": 6380000, - "canton": null, - "numero_insee": "32166" - } - }, - { - "pk": 1499, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAAS", - "center": "POINT (434999.5821892274543643 1832035.6828365342225879)", - "surface": 11000000, - "canton": null, - "numero_insee": "32167" - } - }, - { - "pk": 15087, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LABARRERE", - "center": "POINT (423123.2592736465157941 1888099.8752125417813659)", - "surface": 13160000, - "canton": null, - "numero_insee": "32168" - } - }, - { - "pk": 24636, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LABARTHE", - "center": "POINT (457430.0508613450801931 1831420.5645738996099681)", - "surface": 6570000, - "canton": null, - "numero_insee": "32169" - } - }, - { - "pk": 22264, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LABASTIDE-SAVES", - "center": "POINT (489924.6650778203038499 1836495.7848068689927459)", - "surface": 3630000, - "canton": null, - "numero_insee": "32171" - } - }, - { - "pk": 3970, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LABRIHE", - "center": "POINT (482592.5632776654092595 1863465.0597586210351437)", - "surface": 9560000, - "canton": null, - "numero_insee": "32173" - } - }, - { - "pk": 22978, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LADEVEZE-RIVIERE", - "center": "POINT (417703.5276230628951453 1841303.2898089510854334)", - "surface": 13650000, - "canton": null, - "numero_insee": "32174" - } - }, - { - "pk": 25985, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LADEVEZE-VILLE", - "center": "POINT (415713.8157445010729134 1839785.1619627249892801)", - "surface": 9090000, - "canton": null, - "numero_insee": "32175" - } - }, - { - "pk": 26049, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAGARDE", - "center": "POINT (457671.8353249237406999 1886784.1045408891513944)", - "surface": 8870000, - "canton": null, - "numero_insee": "32176" - } - }, - { - "pk": 26382, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAGARDE-HACHAN", - "center": "POINT (450978.7116945814341307 1824659.4846068480983377)", - "surface": 8530000, - "canton": null, - "numero_insee": "32177" - } - }, - { - "pk": 9116, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAGARDERE", - "center": "POINT (437762.3626488050795160 1873204.4851713401731104)", - "surface": 5060000, - "canton": null, - "numero_insee": "32178" - } - }, - { - "pk": 15023, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAGRAULET-DU-GERS", - "center": "POINT (428105.2521490635699593 1878830.8728312943130732)", - "surface": 27360000, - "canton": null, - "numero_insee": "32180" - } - }, - { - "pk": 6052, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAGUIAN-MAZOUS", - "center": "POINT (430844.7960049009416252 1825994.4995753706898540)", - "surface": 10250000, - "canton": null, - "numero_insee": "32181" - } - }, - { - "pk": 19083, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAHAS", - "center": "POINT (483579.7233648146502674 1841048.2305852123536170)", - "surface": 14680000, - "canton": null, - "numero_insee": "32182" - } - }, - { - "pk": 23680, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LALANNE", - "center": "POINT (466133.9735747452359647 1868333.9478480503894389)", - "surface": 5500000, - "canton": null, - "numero_insee": "32184" - } - }, - { - "pk": 13857, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LALANNE-ARQUE", - "center": "POINT (462169.4592669931589626 1815241.4207688891328871)", - "surface": 11100000, - "canton": null, - "numero_insee": "32185" - } - }, - { - "pk": 9051, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAMAGUERE", - "center": "POINT (466026.7414296912611462 1832993.5643497537821531)", - "surface": 6660000, - "canton": null, - "numero_insee": "32186" - } - }, - { - "pk": 25053, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAMAZERE", - "center": "POINT (447533.3797729577054270 1841750.2915517659857869)", - "surface": 7460000, - "canton": null, - "numero_insee": "32187" - } - }, - { - "pk": 37282, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAMOTHE-GOAS", - "center": "POINT (457763.9520628306781873 1875672.6954494069796056)", - "surface": 7220000, - "canton": null, - "numero_insee": "32188" - } - }, - { - "pk": 18229, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LANNEMAIGNAN", - "center": "POINT (395053.0755843387451023 1880760.3877655933611095)", - "surface": 8480000, - "canton": null, - "numero_insee": "32189" - } - }, - { - "pk": 19237, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LANNEPAX", - "center": "POINT (429883.1673304233700037 1869635.4356553768739104)", - "surface": 31160000, - "canton": null, - "numero_insee": "32190" - } - }, - { - "pk": 26390, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LANNE-SOUBIRAN", - "center": "POINT (403208.3285028031095862 1863007.9933620470110327)", - "surface": 6830000, - "canton": null, - "numero_insee": "32191" - } - }, - { - "pk": 3441, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LANNUX", - "center": "POINT (393182.7968561014859006 1852613.8275507902726531)", - "surface": 12860000, - "canton": null, - "numero_insee": "32192" - } - }, - { - "pk": 18488, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAREE", - "center": "POINT (407563.4676090074935928 1881163.9174930984154344)", - "surface": 13050000, - "canton": null, - "numero_insee": "32193" - } - }, - { - "pk": 17104, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LARRESSINGLE", - "center": "POINT (437575.2749828879022971 1883714.4756014735903591)", - "surface": 8440000, - "canton": null, - "numero_insee": "32194" - } - }, - { - "pk": 38031, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LARROQUE-ENGALIN", - "center": "POINT (456152.0451189477462322 1888973.9080762160010636)", - "surface": 6270000, - "canton": null, - "numero_insee": "32195" - } - }, - { - "pk": 22295, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LARROQUE-SUR-L'OSSE", - "center": "POINT (434936.1648158087627962 1888097.4496109639294446)", - "surface": 15060000, - "canton": null, - "numero_insee": "32197" - } - }, - { - "pk": 13668, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LARTIGUE", - "center": "POINT (468285.9862371573690325 1838218.1859644479118288)", - "surface": 15190000, - "canton": null, - "numero_insee": "32198" - } - }, - { - "pk": 3111, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LASSERADE", - "center": "POINT (416028.2369956309557892 1850199.4447927027940750)", - "surface": 12660000, - "canton": null, - "numero_insee": "32199" - } - }, - { - "pk": 25585, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LASSERAN", - "center": "POINT (453603.3200194429373369 1846205.5305538591928780)", - "surface": 14970000, - "canton": null, - "numero_insee": "32200" - } - }, - { - "pk": 10482, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LASSEUBE-PROPRE", - "center": "POINT (457536.4764362134155817 1842734.2019851864315569)", - "surface": 14480000, - "canton": null, - "numero_insee": "32201" - } - }, - { - "pk": 15881, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAUJUZAN", - "center": "POINT (402451.4377737988252193 1869809.2847565161064267)", - "surface": 11510000, - "canton": null, - "numero_insee": "32202" - } - }, - { - "pk": 21889, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAURAET", - "center": "POINT (432781.1120821930235252 1882373.3852738621644676)", - "surface": 12800000, - "canton": null, - "numero_insee": "32203" - } - }, - { - "pk": 16838, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAVARDENS", - "center": "POINT (453453.1555757051683031 1864324.4785439493134618)", - "surface": 30490000, - "canton": null, - "numero_insee": "32204" - } - }, - { - "pk": 6205, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAVERAET", - "center": "POINT (428139.3629318687599152 1838386.1688314201310277)", - "surface": 12020000, - "canton": null, - "numero_insee": "32205" - } - }, - { - "pk": 29643, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LAYMONT", - "center": "POINT (491119.8935233214288019 1825192.9205434208270162)", - "surface": 11040000, - "canton": null, - "numero_insee": "32206" - } - }, - { - "pk": 35103, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LEBOULIN", - "center": "POINT (464655.2177820607903413 1853505.2316272393800318)", - "surface": 9000000, - "canton": null, - "numero_insee": "32207" - } - }, - { - "pk": 21625, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LECTOURE", - "center": "POINT (464506.1983239669352770 1883537.1703620734624565)", - "surface": 85820000, - "canton": null, - "numero_insee": "32208" - } - }, - { - "pk": 19653, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LELIN-LAPUJOLLE", - "center": "POINT (400536.8927028041798621 1859181.7276576459407806)", - "surface": 13550000, - "canton": null, - "numero_insee": "32209" - } - }, - { - "pk": 9421, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LIAS", - "center": "POINT (502598.9584356390405446 1841306.5189138087444007)", - "surface": 10880000, - "canton": null, - "numero_insee": "32210" - } - }, - { - "pk": 19846, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LIAS-D'ARMAGNAC", - "center": "POINT (406902.4037783558014780 1876353.1852594357915223)", - "surface": 11950000, - "canton": null, - "numero_insee": "32211" - } - }, - { - "pk": 12464, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LIGARDES", - "center": "POINT (451296.5455588017357513 1895040.3114903580863029)", - "surface": 11560000, - "canton": null, - "numero_insee": "32212" - } - }, - { - "pk": 21619, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LOMBEZ", - "center": "POINT (483667.9010776780778542 1830436.9909523406531662)", - "surface": 19730000, - "canton": null, - "numero_insee": "32213" - } - }, - { - "pk": 26191, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LOUBEDAT", - "center": "POINT (414120.5170566797023639 1862997.9619391197338700)", - "surface": 9730000, - "canton": null, - "numero_insee": "32214" - } - }, - { - "pk": 32970, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LOUBERSAN", - "center": "POINT (452195.4816683969111182 1834881.1358087654225528)", - "surface": 10810000, - "canton": null, - "numero_insee": "32215" - } - }, - { - "pk": 35661, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LOURTIES-MONBRUN", - "center": "POINT (454838.9013715173350647 1829997.4971067092847079)", - "surface": 9660000, - "canton": null, - "numero_insee": "32216" - } - }, - { - "pk": 3387, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LOUSLITGES", - "center": "POINT (423666.8443314046598971 1846558.4176776453386992)", - "surface": 12240000, - "canton": null, - "numero_insee": "32217" - } - }, - { - "pk": 22077, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LOUSSOUS-DEBAT", - "center": "POINT (417605.9352019870420918 1853115.7227568330708891)", - "surface": 5120000, - "canton": null, - "numero_insee": "32218" - } - }, - { - "pk": 5743, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LUPIAC", - "center": "POINT (426488.7872712921816856 1856392.7108464830089360)", - "surface": 34570000, - "canton": null, - "numero_insee": "32219" - } - }, - { - "pk": 27312, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LUPPE-VIOLLES", - "center": "POINT (399909.8421749866101891 1862380.1149092917330563)", - "surface": 7660000, - "canton": null, - "numero_insee": "32220" - } - }, - { - "pk": 29425, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAGNAN", - "center": "POINT (402187.4647528834175318 1865402.2343306734692305)", - "surface": 11360000, - "canton": null, - "numero_insee": "32222" - } - }, - { - "pk": 12358, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAGNAS", - "center": "POINT (470157.6366527804057114 1878078.0294005800969899)", - "surface": 3180000, - "canton": null, - "numero_insee": "32223" - } - }, - { - "pk": 20847, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAIGNAUT-TAUZIA", - "center": "POINT (444128.3643619008362293 1878162.5784375742077827)", - "surface": 11220000, - "canton": null, - "numero_insee": "32224" - } - }, - { - "pk": 12582, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MALABAT", - "center": "POINT (426124.0463661898393184 1827857.6177833797410131)", - "surface": 5500000, - "canton": null, - "numero_insee": "32225" - } - }, - { - "pk": 26627, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MANAS-BASTANOUS", - "center": "POINT (440302.9075227186549455 1820266.1613792108837515)", - "surface": 7610000, - "canton": null, - "numero_insee": "32226" - } - }, - { - "pk": 14435, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MANCIET", - "center": "POINT (416456.0383653501048684 1871126.2239609388634562)", - "surface": 42610000, - "canton": null, - "numero_insee": "32227" - } - }, - { - "pk": 13846, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MANENT-MONTANE", - "center": "POINT (459258.8685392871266231 1816118.3112804652191699)", - "surface": 7610000, - "canton": null, - "numero_insee": "32228" - } - }, - { - "pk": 8164, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MANSEMPUY", - "center": "POINT (476904.0913765435107052 1861315.4763886139262468)", - "surface": 6510000, - "canton": null, - "numero_insee": "32229" - } - }, - { - "pk": 13534, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MANSENCOME", - "center": "POINT (438533.3640406115446240 1876814.8312565446831286)", - "surface": 4070000, - "canton": null, - "numero_insee": "32230" - } - }, - { - "pk": 5884, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARAMBAT", - "center": "POINT (437720.2507025211816654 1866196.3994814883917570)", - "surface": 9770000, - "canton": null, - "numero_insee": "32231" - } - }, - { - "pk": 4336, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARAVAT", - "center": "POINT (473283.7192072986508720 1863287.6360378577373922)", - "surface": 6540000, - "canton": null, - "numero_insee": "32232" - } - }, - { - "pk": 17035, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARCIAC", - "center": "POINT (423438.5193656847695820 1837846.7383623451460153)", - "surface": 20900000, - "canton": null, - "numero_insee": "32233" - } - }, - { - "pk": 11358, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARESTAING", - "center": "POINT (493171.5483031617477536 1843330.4437299964483827)", - "surface": 8480000, - "canton": null, - "numero_insee": "32234" - } - }, - { - "pk": 21716, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARGOUET-MEYMES", - "center": "POINT (420947.4575857445597649 1860651.6949725714512169)", - "surface": 17780000, - "canton": null, - "numero_insee": "32235" - } - }, - { - "pk": 34838, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARGUESTAU", - "center": "POINT (408887.9425694681704044 1878371.7744101299904287)", - "surface": 3240000, - "canton": null, - "numero_insee": "32236" - } - }, - { - "pk": 12054, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARSAN", - "center": "POINT (469682.8887191284447908 1850843.9317328804172575)", - "surface": 15190000, - "canton": null, - "numero_insee": "32237" - } - }, - { - "pk": 6524, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARSEILLAN", - "center": "POINT (435984.9062957384157926 1833945.9872693624347448)", - "surface": 4400000, - "canton": null, - "numero_insee": "32238" - } - }, - { - "pk": 35655, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MARSOLAN", - "center": "POINT (455294.2689878374803811 1883761.1150267869234085)", - "surface": 26690000, - "canton": null, - "numero_insee": "32239" - } - }, - { - "pk": 8708, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MASCARAS", - "center": "POINT (428917.0297156459419057 1841195.7561528999358416)", - "surface": 6110000, - "canton": null, - "numero_insee": "32240" - } - }, - { - "pk": 33531, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAS-D'AUVIGNON", - "center": "POINT (452636.2920566113898531 1878333.1640557446517050)", - "surface": 13790000, - "canton": null, - "numero_insee": "32241" - } - }, - { - "pk": 3914, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAULEON-D'ARMAGNAC", - "center": "POINT (399752.9617154523730278 1881399.8031691634096205)", - "surface": 35410000, - "canton": null, - "numero_insee": "32243" - } - }, - { - "pk": 10346, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAULICHERES", - "center": "POINT (404460.7951249620527960 1856811.4276480553671718)", - "surface": 6250000, - "canton": null, - "numero_insee": "32244" - } - }, - { - "pk": 11001, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAUPAS", - "center": "POINT (401413.2389991423115134 1874305.6885441783815622)", - "surface": 9820000, - "canton": null, - "numero_insee": "32246" - } - }, - { - "pk": 10972, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAURENS", - "center": "POINT (485160.6145906826131977 1843564.1800042348913848)", - "surface": 12970000, - "canton": null, - "numero_insee": "32247" - } - }, - { - "pk": 9097, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAUROUX", - "center": "POINT (478354.4408433227217756 1879547.6199257208500057)", - "surface": 10120000, - "canton": null, - "numero_insee": "32248" - } - }, - { - "pk": 31430, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MAUVEZIN", - "center": "POINT (481320.3184837115113623 1859950.6024432922713459)", - "surface": 32850000, - "canton": null, - "numero_insee": "32249" - } - }, - { - "pk": 24825, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MEILHAN", - "center": "POINT (465385.7975809068884701 1825780.0798814981244504)", - "surface": 6770000, - "canton": null, - "numero_insee": "32250" - } - }, - { - "pk": 10338, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MERENS", - "center": "POINT (455869.7584590815240517 1862642.6219131858088076)", - "surface": 4220000, - "canton": null, - "numero_insee": "32251" - } - }, - { - "pk": 23097, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MIELAN", - "center": "POINT (435639.1556324836565182 1827335.6436014377977699)", - "surface": 22210000, - "canton": null, - "numero_insee": "32252" - } - }, - { - "pk": 17617, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MIRADOUX", - "center": "POINT (473267.8585050607216544 1889316.1061675124801695)", - "surface": 34790000, - "canton": null, - "numero_insee": "32253" - } - }, - { - "pk": 15823, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MIRAMONT-D'ASTARAC", - "center": "POINT (448648.6406245441175997 1840057.6160215951967984)", - "surface": 14940000, - "canton": null, - "numero_insee": "32254" - } - }, - { - "pk": 29224, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MIRAMONT-LATOUR", - "center": "POINT (467061.4859010471845977 1865138.1006554786581546)", - "surface": 9710000, - "canton": null, - "numero_insee": "32255" - } - }, - { - "pk": 5771, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MIRANDE", - "center": "POINT (444068.6433352174935862 1837016.2972196373157203)", - "surface": 23710000, - "canton": null, - "numero_insee": "32256" - } - }, - { - "pk": 36275, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MIRANNES", - "center": "POINT (442068.8255655090324581 1848813.0096253864467144)", - "surface": 7800000, - "canton": null, - "numero_insee": "32257" - } - }, - { - "pk": 37526, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MIREPOIX", - "center": "POINT (465588.9941870130132884 1861622.0001362753100693)", - "surface": 7340000, - "canton": null, - "numero_insee": "32258" - } - }, - { - "pk": 28048, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONBARDON", - "center": "POINT (468428.0483693827991374 1821099.9731793776154518)", - "surface": 6610000, - "canton": null, - "numero_insee": "32260" - } - }, - { - "pk": 8950, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONBLANC", - "center": "POINT (491079.9372192910523154 1829998.0377842511516064)", - "surface": 12980000, - "canton": null, - "numero_insee": "32261" - } - }, - { - "pk": 35789, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONBRUN", - "center": "POINT (494498.0878390102297999 1852351.5621425963472575)", - "surface": 10850000, - "canton": null, - "numero_insee": "32262" - } - }, - { - "pk": 14962, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONCASSIN", - "center": "POINT (449038.5288003706955351 1829248.6353543216828257)", - "surface": 13880000, - "canton": null, - "numero_insee": "32263" - } - }, - { - "pk": 14519, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONCLAR", - "center": "POINT (403951.5026425945106894 1882135.2072166414000094)", - "surface": 10080000, - "canton": null, - "numero_insee": "32264" - } - }, - { - "pk": 34395, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONCLAR-SUR-LOSSE", - "center": "POINT (438356.7990412971703336 1837669.7983647976070642)", - "surface": 10500000, - "canton": null, - "numero_insee": "32265" - } - }, - { - "pk": 10983, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONCORNEIL-GRAZAN", - "center": "POINT (463255.3209522293182090 1829166.2666302223224193)", - "surface": 7210000, - "canton": null, - "numero_insee": "32266" - } - }, - { - "pk": 21961, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONFERRAN-PLAVES", - "center": "POINT (462514.7184259610367008 1833965.5603593401610851)", - "surface": 11340000, - "canton": null, - "numero_insee": "32267" - } - }, - { - "pk": 17900, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONFERRAN-SAVES", - "center": "POINT (490341.9605403945315629 1846510.5067850695922971)", - "surface": 25090000, - "canton": null, - "numero_insee": "32268" - } - }, - { - "pk": 13733, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONFORT", - "center": "POINT (478161.3810397367924452 1866631.7959625832736492)", - "surface": 22700000, - "canton": null, - "numero_insee": "32269" - } - }, - { - "pk": 23166, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONGAUSY", - "center": "POINT (476426.9843427318264730 1834381.3661325983703136)", - "surface": 7430000, - "canton": null, - "numero_insee": "32270" - } - }, - { - "pk": 25384, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONGUILHEM", - "center": "POINT (396696.8206567021552473 1875668.3319572454784065)", - "surface": 5770000, - "canton": null, - "numero_insee": "32271" - } - }, - { - "pk": 24842, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONLAUR-BERNET", - "center": "POINT (451835.9794237083406188 1817858.8346270672045648)", - "surface": 12590000, - "canton": null, - "numero_insee": "32272" - } - }, - { - "pk": 16200, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONLEZUN", - "center": "POINT (428268.4437200552783906 1834883.2831283344421536)", - "surface": 17550000, - "canton": null, - "numero_insee": "32273" - } - }, - { - "pk": 34617, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONPARDIAC", - "center": "POINT (430500.5894303757813759 1831297.6691055544652045)", - "surface": 3530000, - "canton": null, - "numero_insee": "32275" - } - }, - { - "pk": 3624, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTADET", - "center": "POINT (483797.1236870217835531 1826934.0937601565383375)", - "surface": 5170000, - "canton": null, - "numero_insee": "32276" - } - }, - { - "pk": 6787, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTAMAT", - "center": "POINT (479944.0049110811087303 1832808.7685673288069665)", - "surface": 6560000, - "canton": null, - "numero_insee": "32277" - } - }, - { - "pk": 29373, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTAUT", - "center": "POINT (444578.5015252336161211 1823805.5540136247873306)", - "surface": 8500000, - "canton": null, - "numero_insee": "32278" - } - }, - { - "pk": 15918, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONT-D'ASTARAC", - "center": "POINT (457057.3333489721990190 1815999.9423013767227530)", - "surface": 8350000, - "canton": null, - "numero_insee": "32280" - } - }, - { - "pk": 32972, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONT-DE-MARRAST", - "center": "POINT (440584.1672323458478786 1822571.1126172300428152)", - "surface": 7070000, - "canton": null, - "numero_insee": "32281" - } - }, - { - "pk": 25392, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTEGUT", - "center": "POINT (465182.3174236704362556 1850306.0271154609508812)", - "surface": 11390000, - "canton": null, - "numero_insee": "32282" - } - }, - { - "pk": 16974, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTEGUT-ARROS", - "center": "POINT (428672.2498879109043628 1822372.4317622559610754)", - "surface": 15530000, - "canton": null, - "numero_insee": "32283" - } - }, - { - "pk": 3162, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTEGUT-SAVES", - "center": "POINT (488301.0913132423884235 1827071.6430690006818622)", - "surface": 3740000, - "canton": null, - "numero_insee": "32284" - } - }, - { - "pk": 20622, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTESQUIOU", - "center": "POINT (437805.7284143960569054 1843772.1081362029071897)", - "surface": 47300000, - "canton": null, - "numero_insee": "32285" - } - }, - { - "pk": 4750, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTIES", - "center": "POINT (465613.4204918409232050 1822478.2128720243927091)", - "surface": 10490000, - "canton": null, - "numero_insee": "32287" - } - }, - { - "pk": 27231, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTIRON", - "center": "POINT (480252.1202354225097224 1843923.8444978883489966)", - "surface": 10610000, - "canton": null, - "numero_insee": "32288" - } - }, - { - "pk": 23724, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTPEZAT", - "center": "POINT (489647.4231665208935738 1821676.6929446330759674)", - "surface": 15680000, - "canton": null, - "numero_insee": "32289" - } - }, - { - "pk": 17414, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MONTREAL", - "center": "POINT (428249.1725735347135924 1885639.5177740275394171)", - "surface": 63240000, - "canton": null, - "numero_insee": "32290" - } - }, - { - "pk": 36075, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MORMES", - "center": "POINT (399553.3825182438595220 1869184.7143959593959153)", - "surface": 9170000, - "canton": null, - "numero_insee": "32291" - } - }, - { - "pk": 20627, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MOUCHAN", - "center": "POINT (436708.3132705520838499 1879602.8051986843347549)", - "surface": 13230000, - "canton": null, - "numero_insee": "32292" - } - }, - { - "pk": 6395, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MOUCHES", - "center": "POINT (445034.0539401443675160 1841329.1401089772116393)", - "surface": 3150000, - "canton": null, - "numero_insee": "32293" - } - }, - { - "pk": 8800, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "MOUREDE", - "center": "POINT (434896.6342862821184099 1868675.8016278147697449)", - "surface": 4890000, - "canton": null, - "numero_insee": "32294" - } - }, - { - "pk": 28912, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "NIZAS", - "center": "POINT (490649.5456913897069171 1833598.5351878043729812)", - "surface": 4190000, - "canton": null, - "numero_insee": "32295" - } - }, - { - "pk": 22051, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "NOGARO", - "center": "POINT (409098.7776723818387836 1864958.7168316750321537)", - "surface": 11180000, - "canton": null, - "numero_insee": "32296" - } - }, - { - "pk": 5790, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "NOILHAN", - "center": "POINT (486612.0152342144865543 1837569.4874766429420561)", - "surface": 18140000, - "canton": null, - "numero_insee": "32297" - } - }, - { - "pk": 22032, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "NOUGAROULET", - "center": "POINT (469243.4219176371116191 1855545.5340621853247285)", - "surface": 15910000, - "canton": null, - "numero_insee": "32298" - } - }, - { - "pk": 11895, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "NOULENS", - "center": "POINT (424680.2570991060347296 1869292.0844881178345531)", - "surface": 5920000, - "canton": null, - "numero_insee": "32299" - } - }, - { - "pk": 30368, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ORBESSAN", - "center": "POINT (460764.7607927962671965 1839757.5938455662690103)", - "surface": 8200000, - "canton": null, - "numero_insee": "32300" - } - }, - { - "pk": 19989, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ORDAN-LARROQUE", - "center": "POINT (449823.9484091005288064 1855284.3950479018967599)", - "surface": 43050000, - "canton": null, - "numero_insee": "32301" - } - }, - { - "pk": 30624, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ORNEZAN", - "center": "POINT (459093.6753346035839058 1836039.5619869651272893)", - "surface": 12190000, - "canton": null, - "numero_insee": "32302" - } - }, - { - "pk": 9560, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PALLANNE", - "center": "POINT (432367.0016184642445296 1835617.9747150712646544)", - "surface": 5230000, - "canton": null, - "numero_insee": "32303" - } - }, - { - "pk": 8419, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PANASSAC", - "center": "POINT (456407.7220679725869559 1821901.2937730739358813)", - "surface": 9250000, - "canton": null, - "numero_insee": "32304" - } - }, - { - "pk": 15281, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PANJAS", - "center": "POINT (405732.5565566702862270 1872539.3415996865369380)", - "surface": 19960000, - "canton": null, - "numero_insee": "32305" - } - }, - { - "pk": 17621, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PAUILHAC", - "center": "POINT (461955.0024456442915834 1877309.2074716533534229)", - "surface": 25470000, - "canton": null, - "numero_insee": "32306" - } - }, - { - "pk": 22031, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PAVIE", - "center": "POINT (458707.8619489825214259 1846347.9582506008446217)", - "surface": 24800000, - "canton": null, - "numero_insee": "32307" - } - }, - { - "pk": 7794, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PEBEES", - "center": "POINT (493686.8674147899728268 1829519.1508392672985792)", - "surface": 4040000, - "canton": null, - "numero_insee": "32308" - } - }, - { - "pk": 5874, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PELLEFIGUE", - "center": "POINT (474745.1292714103474282 1831964.6845303550362587)", - "surface": 12830000, - "canton": null, - "numero_insee": "32309" - } - }, - { - "pk": 18588, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PERCHEDE", - "center": "POINT (400372.3792615266283974 1866989.0342812263406813)", - "surface": 5290000, - "canton": null, - "numero_insee": "32310" - } - }, - { - "pk": 4960, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PERGAIN-TAILLAC", - "center": "POINT (460294.9148790332255885 1896416.3074725717306137)", - "surface": 19220000, - "canton": null, - "numero_insee": "32311" - } - }, - { - "pk": 21612, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PESSAN", - "center": "POINT (464812.6248328880174085 1846598.8145065642893314)", - "surface": 26690000, - "canton": null, - "numero_insee": "32312" - } - }, - { - "pk": 37679, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PESSOULENS", - "center": "POINT (482905.6458394415094517 1873979.2689236393198371)", - "surface": 12650000, - "canton": null, - "numero_insee": "32313" - } - }, - { - "pk": 8320, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PEYRECAVE", - "center": "POINT (477371.2153651533881202 1889450.2853513534646481)", - "surface": 5060000, - "canton": null, - "numero_insee": "32314" - } - }, - { - "pk": 26381, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PEYRUSSE-GRANDE", - "center": "POINT (429046.0428792280144989 1849806.4811902679502964)", - "surface": 25490000, - "canton": null, - "numero_insee": "32315" - } - }, - { - "pk": 30838, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PEYRUSSE-MASSAS", - "center": "POINT (456381.0669311083038338 1861345.4164996116887778)", - "surface": 6560000, - "canton": null, - "numero_insee": "32316" - } - }, - { - "pk": 12897, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PEYRUSSE-VIEILLE", - "center": "POINT (425342.9800175799755380 1849675.7496640286408365)", - "surface": 11140000, - "canton": null, - "numero_insee": "32317" - } - }, - { - "pk": 27517, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PIS", - "center": "POINT (468753.2840685344999656 1866353.4685335748363286)", - "surface": 5470000, - "canton": null, - "numero_insee": "32318" - } - }, - { - "pk": 4288, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PLAISANCE", - "center": "POINT (414553.1181046450510621 1846983.6729504272807389)", - "surface": 13790000, - "canton": null, - "numero_insee": "32319" - } - }, - { - "pk": 14916, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "POLASTRON", - "center": "POINT (478699.4913103278377093 1838004.3054324844852090)", - "surface": 15110000, - "canton": null, - "numero_insee": "32321" - } - }, - { - "pk": 35371, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "POMPIAC", - "center": "POINT (492033.5500633675837889 1835712.4172092773951590)", - "surface": 10270000, - "canton": null, - "numero_insee": "32322" - } - }, - { - "pk": 24843, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PONSAMPERE", - "center": "POINT (440518.6945261038490571 1830479.5498800198547542)", - "surface": 9010000, - "canton": null, - "numero_insee": "32323" - } - }, - { - "pk": 30265, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PONSAN-SOUBIRAN", - "center": "POINT (449129.7619634022703394 1818236.8674801022280008)", - "surface": 7080000, - "canton": null, - "numero_insee": "32324" - } - }, - { - "pk": 34166, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "POUYDRAGUIN", - "center": "POINT (414199.0601362645975314 1853488.0275191857945174)", - "surface": 9770000, - "canton": null, - "numero_insee": "32325" - } - }, - { - "pk": 25080, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "POUYLEBON", - "center": "POINT (435332.9099950686795637 1840147.5921596386469901)", - "surface": 14650000, - "canton": null, - "numero_insee": "32326" - } - }, - { - "pk": 15207, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "POUY-LOUBRIN", - "center": "POINT (460138.7348469507414848 1830742.2316585748922080)", - "surface": 9740000, - "canton": null, - "numero_insee": "32327" - } - }, - { - "pk": 33783, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "POUY-ROQUELAURE", - "center": "POINT (454302.9174808867974207 1894664.7889392287470400)", - "surface": 11030000, - "canton": null, - "numero_insee": "32328" - } - }, - { - "pk": 35161, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PRECHAC", - "center": "POINT (457732.7307607216644101 1867363.2756640119478106)", - "surface": 12690000, - "canton": null, - "numero_insee": "32329" - } - }, - { - "pk": 18107, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PRECHAC-SUR-ADOUR", - "center": "POINT (411147.0550087536103092 1847255.8810884568374604)", - "surface": 4400000, - "canton": null, - "numero_insee": "32330" - } - }, - { - "pk": 8981, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PREIGNAN", - "center": "POINT (462806.8341810937272385 1859096.1416494487784803)", - "surface": 10720000, - "canton": null, - "numero_insee": "32331" - } - }, - { - "pk": 30615, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PRENERON", - "center": "POINT (433161.8452561947051436 1860552.4656531526707113)", - "surface": 8760000, - "canton": null, - "numero_insee": "32332" - } - }, - { - "pk": 19570, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PROJAN", - "center": "POINT (392216.4047258574864827 1848401.1568596388678998)", - "surface": 11860000, - "canton": null, - "numero_insee": "32333" - } - }, - { - "pk": 36711, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PUJAUDRAN", - "center": "POINT (505682.2288028640905395 1843734.8845125697553158)", - "surface": 17580000, - "canton": null, - "numero_insee": "32334" - } - }, - { - "pk": 35062, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PUYLAUSIC", - "center": "POINT (486292.3016531848697923 1827855.8531164107844234)", - "surface": 9750000, - "canton": null, - "numero_insee": "32336" - } - }, - { - "pk": 12502, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "PUYSEGUR", - "center": "POINT (459254.2082763881189749 1864973.2321299042087048)", - "surface": 7280000, - "canton": null, - "numero_insee": "32337" - } - }, - { - "pk": 22145, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "RAMOUZENS", - "center": "POINT (426977.6769438099581748 1869911.7412564242258668)", - "surface": 16720000, - "canton": null, - "numero_insee": "32338" - } - }, - { - "pk": 12920, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "RAZENGUES", - "center": "POINT (490812.5216827816329896 1850118.4524085992015898)", - "surface": 4410000, - "canton": null, - "numero_insee": "32339" - } - }, - { - "pk": 20525, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "REANS", - "center": "POINT (415004.9803407965810038 1877120.8530009407550097)", - "surface": 12220000, - "canton": null, - "numero_insee": "32340" - } - }, - { - "pk": 7087, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "REJAUMONT", - "center": "POINT (456111.9847641852684319 1869652.3834321955218911)", - "surface": 13880000, - "canton": null, - "numero_insee": "32341" - } - }, - { - "pk": 7799, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "RICOURT", - "center": "POINT (425070.8377203123527579 1834156.0515396371483803)", - "surface": 7960000, - "canton": null, - "numero_insee": "32342" - } - }, - { - "pk": 16790, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "RIGUEPEU", - "center": "POINT (438536.9729765512747690 1852187.5776832695119083)", - "surface": 21610000, - "canton": null, - "numero_insee": "32343" - } - }, - { - "pk": 21958, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "RISCLE", - "center": "POINT (404899.2148126809042878 1852209.9079159195534885)", - "surface": 32050000, - "canton": null, - "numero_insee": "32344" - } - }, - { - "pk": 19137, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LA ROMIEU", - "center": "POINT (452748.5694487330038100 1888945.7008773060515523)", - "surface": 27920000, - "canton": null, - "numero_insee": "32345" - } - }, - { - "pk": 37442, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ROQUEBRUNE", - "center": "POINT (435181.3263441994786263 1858466.8371226785238832)", - "surface": 18320000, - "canton": null, - "numero_insee": "32346" - } - }, - { - "pk": 35549, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ROQUEFORT", - "center": "POINT (458968.8365992462495342 1863168.8694936828687787)", - "surface": 7280000, - "canton": null, - "numero_insee": "32347" - } - }, - { - "pk": 4712, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ROQUELAURE", - "center": "POINT (459299.0303838561521843 1859567.6073747000191361)", - "surface": 21440000, - "canton": null, - "numero_insee": "32348" - } - }, - { - "pk": 8915, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ROQUELAURE-SAINT-AUBIN", - "center": "POINT (490795.0422307323897257 1852220.6553216902539134)", - "surface": 4270000, - "canton": null, - "numero_insee": "32349" - } - }, - { - "pk": 22441, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ROQUEPINE", - "center": "POINT (449716.7187225016532466 1880311.1700128419324756)", - "surface": 3750000, - "canton": null, - "numero_insee": "32350" - } - }, - { - "pk": 32618, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "ROQUES", - "center": "POINT (435860.3976669639814645 1873188.7460177359171212)", - "surface": 8570000, - "canton": null, - "numero_insee": "32351" - } - }, - { - "pk": 32785, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SABAILLAN", - "center": "POINT (476381.7471991867641918 1827773.5132143376395106)", - "surface": 10930000, - "canton": null, - "numero_insee": "32353" - } - }, - { - "pk": 33797, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SABAZAN", - "center": "POINT (415554.2237637027283199 1859105.4669831171631813)", - "surface": 8300000, - "canton": null, - "numero_insee": "32354" - } - }, - { - "pk": 10984, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SADEILLAN", - "center": "POINT (438273.4180858231266029 1823553.1231444980949163)", - "surface": 6050000, - "canton": null, - "numero_insee": "32355" - } - }, - { - "pk": 25699, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ANDRE", - "center": "POINT (480278.7316933718393557 1840720.4664388108067214)", - "surface": 5660000, - "canton": null, - "numero_insee": "32356" - } - }, - { - "pk": 25027, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-ANNE", - "center": "POINT (489618.1534895258955657 1861321.0090387731324881)", - "surface": 6780000, - "canton": null, - "numero_insee": "32357" - } - }, - { - "pk": 10889, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ANTOINE", - "center": "POINT (478932.9419770321110263 1894268.4811021513305604)", - "surface": 9820000, - "canton": null, - "numero_insee": "32358" - } - }, - { - "pk": 20260, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ANTONIN", - "center": "POINT (477726.5409006827976555 1858719.4158183988183737)", - "surface": 11440000, - "canton": null, - "numero_insee": "32359" - } - }, - { - "pk": 34666, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ARAILLES", - "center": "POINT (439164.1180019487510435 1848989.1872158418409526)", - "surface": 13300000, - "canton": null, - "numero_insee": "32360" - } - }, - { - "pk": 28122, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ARROMAN", - "center": "POINT (452656.4693463604198769 1827576.6848090623971075)", - "surface": 12230000, - "canton": null, - "numero_insee": "32361" - } - }, - { - "pk": 26380, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-AUNIX-LENGROS", - "center": "POINT (415579.8061022774782032 1843888.6711694323457778)", - "surface": 5450000, - "canton": null, - "numero_insee": "32362" - } - }, - { - "pk": 6846, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-AURENCE-CAZAUX", - "center": "POINT (445105.5678891898132861 1820606.2721881924662739)", - "surface": 9700000, - "canton": null, - "numero_insee": "32363" - } - }, - { - "pk": 25645, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-AVIT-FRANDAT", - "center": "POINT (465368.0915093273506500 1888249.4580114111304283)", - "surface": 7660000, - "canton": null, - "numero_insee": "32364" - } - }, - { - "pk": 10509, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-BRES", - "center": "POINT (473663.3583842476946302 1865793.5594224114902318)", - "surface": 5980000, - "canton": null, - "numero_insee": "32366" - } - }, - { - "pk": 29221, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-CHRISTAUD", - "center": "POINT (431945.8739840459311381 1838117.3140297981444746)", - "surface": 10850000, - "canton": null, - "numero_insee": "32367" - } - }, - { - "pk": 35639, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-CHRISTIE", - "center": "POINT (462473.3100127942161635 1863097.8203753400593996)", - "surface": 9950000, - "canton": null, - "numero_insee": "32368" - } - }, - { - "pk": 14521, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-CHRISTIE-D'ARMAGNAC", - "center": "POINT (411271.3124332580482587 1868580.6415750854648650)", - "surface": 22840000, - "canton": null, - "numero_insee": "32369" - } - }, - { - "pk": 23350, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-CLAR", - "center": "POINT (473261.6600179390516132 1878003.6845843906048685)", - "surface": 17920000, - "canton": null, - "numero_insee": "32370" - } - }, - { - "pk": 31853, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-CRICQ", - "center": "POINT (491163.8312165719107725 1856027.9628218039870262)", - "surface": 3050000, - "canton": null, - "numero_insee": "32372" - } - }, - { - "pk": 27897, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-DODE", - "center": "POINT (440057.1121390095213428 1825770.3919212494511157)", - "surface": 18900000, - "canton": null, - "numero_insee": "32373" - } - }, - { - "pk": 12455, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ELIX", - "center": "POINT (472827.3183563073980622 1833850.9114637987222522)", - "surface": 8170000, - "canton": null, - "numero_insee": "32374" - } - }, - { - "pk": 19381, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ELIX-THEUX", - "center": "POINT (448858.2203946599038318 1826844.4165348066017032)", - "surface": 8480000, - "canton": null, - "numero_insee": "32375" - } - }, - { - "pk": 25841, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-GEMME", - "center": "POINT (475575.3064904792117886 1864608.1042828969657421)", - "surface": 10430000, - "canton": null, - "numero_insee": "32376" - } - }, - { - "pk": 4651, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-GEORGES", - "center": "POINT (486524.0765902585117146 1860194.0664878045208752)", - "surface": 15940000, - "canton": null, - "numero_insee": "32377" - } - }, - { - "pk": 37254, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-GERME", - "center": "POINT (399463.8166094643529505 1855769.0856901668012142)", - "surface": 9510000, - "canton": null, - "numero_insee": "32378" - } - }, - { - "pk": 6760, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-GERMIER", - "center": "POINT (488683.6867378061870113 1853304.3302152578253299)", - "surface": 7110000, - "canton": null, - "numero_insee": "32379" - } - }, - { - "pk": 26589, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-GRIEDE", - "center": "POINT (403724.5437601722660474 1861110.1410562735982239)", - "surface": 7650000, - "canton": null, - "numero_insee": "32380" - } - }, - { - "pk": 4499, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-JEAN-POUTGE", - "center": "POINT (442267.1957424316788092 1861128.3784330268390477)", - "surface": 10770000, - "canton": null, - "numero_insee": "32382" - } - }, - { - "pk": 29585, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-JUSTIN", - "center": "POINT (422672.4240134898573160 1833635.6589699028991163)", - "surface": 13320000, - "canton": null, - "numero_insee": "32383" - } - }, - { - "pk": 27465, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-LARY", - "center": "POINT (451592.6530479952925816 1859303.5065375138074160)", - "surface": 9780000, - "canton": null, - "numero_insee": "32384" - } - }, - { - "pk": 21444, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-LEONARD", - "center": "POINT (473794.5864110688562505 1874103.8179048376623541)", - "surface": 13340000, - "canton": null, - "numero_insee": "32385" - } - }, - { - "pk": 29144, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-LOUBE", - "center": "POINT (492003.3722124203341082 1827302.6534978263080120)", - "surface": 6100000, - "canton": null, - "numero_insee": "32387" - } - }, - { - "pk": 17899, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-MARIE", - "center": "POINT (481275.1030564847169444 1853342.8723363685421646)", - "surface": 22420000, - "canton": null, - "numero_insee": "32388" - } - }, - { - "pk": 32310, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MARTIN", - "center": "POINT (441074.5788827518699691 1835890.2636833137366921)", - "surface": 9260000, - "canton": null, - "numero_insee": "32389" - } - }, - { - "pk": 12343, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MARTIN-D'ARMAGNAC", - "center": "POINT (406240.3724562529823743 1859529.1222853816580027)", - "surface": 10870000, - "canton": null, - "numero_insee": "32390" - } - }, - { - "pk": 31849, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MARTIN-DE-GOYNE", - "center": "POINT (458541.2195916874916293 1890595.4586440839339048)", - "surface": 5730000, - "canton": null, - "numero_insee": "32391" - } - }, - { - "pk": 30459, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MARTIN-GIMOIS", - "center": "POINT (476409.5261225787107833 1836483.5936434278264642)", - "surface": 6750000, - "canton": null, - "numero_insee": "32392" - } - }, - { - "pk": 32177, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MAUR", - "center": "POINT (438792.0249282855074853 1833468.6544186943210661)", - "surface": 14040000, - "canton": null, - "numero_insee": "32393" - } - }, - { - "pk": 16894, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MEDARD", - "center": "POINT (448105.2266937365056947 1833145.3225862411782146)", - "surface": 17300000, - "canton": null, - "numero_insee": "32394" - } - }, - { - "pk": 12489, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-MERE", - "center": "POINT (467253.4230667462106794 1890267.2808730204124004)", - "surface": 9460000, - "canton": null, - "numero_insee": "32395" - } - }, - { - "pk": 21499, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MEZARD", - "center": "POINT (458112.5951493767788634 1893995.6061992372851819)", - "surface": 15170000, - "canton": null, - "numero_insee": "32396" - } - }, - { - "pk": 18146, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-MICHEL", - "center": "POINT (443347.3746191478567198 1827399.4527238849550486)", - "surface": 16770000, - "canton": null, - "numero_insee": "32397" - } - }, - { - "pk": 35183, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ORENS", - "center": "POINT (485342.7921564985881560 1857781.5784518313594162)", - "surface": 4350000, - "canton": null, - "numero_insee": "32399" - } - }, - { - "pk": 16906, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-ORENS-POUY-PETIT", - "center": "POINT (447310.1041732793673873 1880791.7832362528424710)", - "surface": 11350000, - "canton": null, - "numero_insee": "32400" - } - }, - { - "pk": 5477, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-OST", - "center": "POINT (448005.3596994352992624 1821030.7482734082732350)", - "surface": 6920000, - "canton": null, - "numero_insee": "32401" - } - }, - { - "pk": 36837, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-PAUL-DE-BAISE", - "center": "POINT (441624.3036298403749242 1866228.7149985819123685)", - "surface": 10150000, - "canton": null, - "numero_insee": "32402" - } - }, - { - "pk": 9183, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-PIERRE-D'AUBEZIES", - "center": "POINT (424322.0676985417958349 1852069.9958885866217315)", - "surface": 8390000, - "canton": null, - "numero_insee": "32403" - } - }, - { - "pk": 19603, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-PUY", - "center": "POINT (448852.2794592674472369 1875899.1731028673239052)", - "surface": 36650000, - "canton": null, - "numero_insee": "32404" - } - }, - { - "pk": 4732, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINTE-RADEGONDE", - "center": "POINT (458990.9199559936532751 1872579.4524657502770424)", - "surface": 9860000, - "canton": null, - "numero_insee": "32405" - } - }, - { - "pk": 27477, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-SAUVY", - "center": "POINT (476844.7220125476596877 1856409.5309151748660952)", - "surface": 17650000, - "canton": null, - "numero_insee": "32406" - } - }, - { - "pk": 24443, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-SOULAN", - "center": "POINT (480425.4084958362509497 1835115.3685876501258463)", - "surface": 12210000, - "canton": null, - "numero_insee": "32407" - } - }, - { - "pk": 8404, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SALLES-D'ARMAGNAC", - "center": "POINT (408251.6713227601721883 1870557.9243119703605771)", - "surface": 6140000, - "canton": null, - "numero_insee": "32408" - } - }, - { - "pk": 10850, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAMARAN", - "center": "POINT (453397.8714590568561107 1822677.2558467716444284)", - "surface": 8690000, - "canton": null, - "numero_insee": "32409" - } - }, - { - "pk": 21561, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAMATAN", - "center": "POINT (486346.6441488066338934 1833362.5372204808518291)", - "surface": 33700000, - "canton": null, - "numero_insee": "32410" - } - }, - { - "pk": 8276, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SANSAN", - "center": "POINT (460381.7712772362865508 1837652.0498167546465993)", - "surface": 3700000, - "canton": null, - "numero_insee": "32411" - } - }, - { - "pk": 31014, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SARAMON", - "center": "POINT (472300.1939090978121385 1837050.1506679323501885)", - "surface": 13080000, - "canton": null, - "numero_insee": "32412" - } - }, - { - "pk": 22298, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SARCOS", - "center": "POINT (465633.3547433149651624 1820075.6419903649948537)", - "surface": 6470000, - "canton": null, - "numero_insee": "32413" - } - }, - { - "pk": 13545, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SARRAGACHIES", - "center": "POINT (407266.2054798963363282 1856534.2463097092695534)", - "surface": 12910000, - "canton": null, - "numero_insee": "32414" - } - }, - { - "pk": 7556, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SARRAGUZAN", - "center": "POINT (437801.8833116836613044 1820045.2299368758685887)", - "surface": 8810000, - "canton": null, - "numero_insee": "32415" - } - }, - { - "pk": 4285, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SARRANT", - "center": "POINT (486390.6918183503439650 1864197.3987826823722571)", - "surface": 20160000, - "canton": null, - "numero_insee": "32416" - } - }, - { - "pk": 19620, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "LA SAUVETAT", - "center": "POINT (454878.3829702752409503 1873546.4627204015851021)", - "surface": 27520000, - "canton": null, - "numero_insee": "32417" - } - }, - { - "pk": 17572, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAUVETERRE", - "center": "POINT (479273.1972616515704431 1829199.1175842555239797)", - "surface": 16700000, - "canton": null, - "numero_insee": "32418" - } - }, - { - "pk": 23591, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAUVIAC", - "center": "POINT (447473.3112062108702958 1824830.6694107274524868)", - "surface": 6470000, - "canton": null, - "numero_insee": "32419" - } - }, - { - "pk": 9320, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAUVIMONT", - "center": "POINT (488991.0183411261532456 1828378.8546467374544591)", - "surface": 3490000, - "canton": null, - "numero_insee": "32420" - } - }, - { - "pk": 25471, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAVIGNAC-MONA", - "center": "POINT (492461.4468892149161547 1832412.2446059030480683)", - "surface": 6920000, - "canton": null, - "numero_insee": "32421" - } - }, - { - "pk": 7555, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SCIEURAC-ET-FLOURES", - "center": "POINT (427010.0535989286727272 1841780.6621151797007769)", - "surface": 5450000, - "canton": null, - "numero_insee": "32422" - } - }, - { - "pk": 25218, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEAILLES", - "center": "POINT (420823.3631456394214183 1863553.8916492317803204)", - "surface": 8270000, - "canton": null, - "numero_insee": "32423" - } - }, - { - "pk": 10758, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEGOS", - "center": "POINT (390092.7410267754457891 1850986.5660690995864570)", - "surface": 8690000, - "canton": null, - "numero_insee": "32424" - } - }, - { - "pk": 8534, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEGOUFIELLE", - "center": "POINT (502640.7380279007484205 1848314.7259116782806814)", - "surface": 5230000, - "canton": null, - "numero_insee": "32425" - } - }, - { - "pk": 4417, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEISSAN", - "center": "POINT (457004.7269191890954971 1834420.4336520254146308)", - "surface": 18880000, - "canton": null, - "numero_insee": "32426" - } - }, - { - "pk": 30597, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEMBOUES", - "center": "POINT (424593.4789848327054642 1831348.9344973354600370)", - "surface": 2630000, - "canton": null, - "numero_insee": "32427" - } - }, - { - "pk": 29570, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEMEZIES-CACHAN", - "center": "POINT (470216.2483037036145106 1834830.3672987725585699)", - "surface": 6910000, - "canton": null, - "numero_insee": "32428" - } - }, - { - "pk": 14628, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEMPESSERRE", - "center": "POINT (463930.9564580438891426 1892542.2231543385423720)", - "surface": 21110000, - "canton": null, - "numero_insee": "32429" - } - }, - { - "pk": 12317, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SERE", - "center": "POINT (462797.9677349183475599 1823956.5639797176700085)", - "surface": 8870000, - "canton": null, - "numero_insee": "32430" - } - }, - { - "pk": 24093, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEREMPUY", - "center": "POINT (477788.4013445081072859 1863325.0409277430735528)", - "surface": 3350000, - "canton": null, - "numero_insee": "32431" - } - }, - { - "pk": 21914, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SEYSSES-SAVES", - "center": "POINT (495441.3181048067053780 1835240.1953966829460114)", - "surface": 13160000, - "canton": null, - "numero_insee": "32432" - } - }, - { - "pk": 14625, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SIMORRE", - "center": "POINT (470259.4552681601489894 1829624.8387878129724413)", - "surface": 35670000, - "canton": null, - "numero_insee": "32433" - } - }, - { - "pk": 10498, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SION", - "center": "POINT (412023.2878648551413789 1862379.9761935148853809)", - "surface": 7110000, - "canton": null, - "numero_insee": "32434" - } - }, - { - "pk": 4038, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SIRAC", - "center": "POINT (488355.9108707535197027 1856605.2864663745276630)", - "surface": 7980000, - "canton": null, - "numero_insee": "32435" - } - }, - { - "pk": 20645, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SOLOMIAC", - "center": "POINT (483156.5894920376595110 1867874.6201948241796345)", - "surface": 13890000, - "canton": null, - "numero_insee": "32436" - } - }, - { - "pk": 21678, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SORBETS", - "center": "POINT (410143.6212118399562314 1859661.4537181484047323)", - "surface": 9280000, - "canton": null, - "numero_insee": "32437" - } - }, - { - "pk": 14588, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TACHOIRES", - "center": "POINT (464138.0096459083142690 1831376.0829628261271864)", - "surface": 9470000, - "canton": null, - "numero_insee": "32438" - } - }, - { - "pk": 36505, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TARSAC", - "center": "POINT (402174.9049709149403498 1854790.3342602225020528)", - "surface": 4560000, - "canton": null, - "numero_insee": "32439" - } - }, - { - "pk": 15175, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TASQUE", - "center": "POINT (412115.8694864452700131 1851168.2514090156182647)", - "surface": 9940000, - "canton": null, - "numero_insee": "32440" - } - }, - { - "pk": 4031, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TAYBOSC", - "center": "POINT (471457.7494959043688141 1866175.6929268278181553)", - "surface": 5940000, - "canton": null, - "numero_insee": "32441" - } - }, - { - "pk": 33052, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TERRAUBE", - "center": "POINT (456631.2841605024295859 1879467.4830880288500339)", - "surface": 25210000, - "canton": null, - "numero_insee": "32442" - } - }, - { - "pk": 25611, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "THOUX", - "center": "POINT (491379.0232933305669576 1854227.7445663688704371)", - "surface": 6080000, - "canton": null, - "numero_insee": "32444" - } - }, - { - "pk": 32528, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TIESTE-URAGNOUX", - "center": "POINT (413496.6038482194999233 1841568.8764522431883961)", - "surface": 6250000, - "canton": null, - "numero_insee": "32445" - } - }, - { - "pk": 23012, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TILLAC", - "center": "POINT (432089.8709212131798267 1832812.5148296537809074)", - "surface": 12560000, - "canton": null, - "numero_insee": "32446" - } - }, - { - "pk": 3679, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TIRENT-PONTEJAC", - "center": "POINT (475084.0421498406794854 1839375.8577549967449158)", - "surface": 7490000, - "canton": null, - "numero_insee": "32447" - } - }, - { - "pk": 3081, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TOUJOUSE", - "center": "POINT (397427.2622880858834833 1872070.3847814870532602)", - "surface": 14740000, - "canton": null, - "numero_insee": "32449" - } - }, - { - "pk": 27253, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TOURDUN", - "center": "POINT (423814.9452655517961830 1840753.1201052952092141)", - "surface": 6950000, - "canton": null, - "numero_insee": "32450" - } - }, - { - "pk": 28713, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TOURNAN", - "center": "POINT (474695.7280554529861547 1825857.3538791295140982)", - "surface": 12490000, - "canton": null, - "numero_insee": "32451" - } - }, - { - "pk": 19812, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TOURNECOUPE", - "center": "POINT (478496.1139084453461692 1874543.2991819689050317)", - "surface": 19200000, - "canton": null, - "numero_insee": "32452" - } - }, - { - "pk": 11983, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TOURRENQUETS", - "center": "POINT (468087.4454961541341618 1862143.2857537134550512)", - "surface": 7220000, - "canton": null, - "numero_insee": "32453" - } - }, - { - "pk": 29783, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TRAVERSERES", - "center": "POINT (463382.4582970003248192 1837977.2761737310793251)", - "surface": 10610000, - "canton": null, - "numero_insee": "32454" - } - }, - { - "pk": 15257, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TRONCENS", - "center": "POINT (428406.6320792849874124 1830279.2168451459147036)", - "surface": 13010000, - "canton": null, - "numero_insee": "32455" - } - }, - { - "pk": 33027, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "TUDELLE", - "center": "POINT (434505.4423731467686594 1855457.9009202402085066)", - "surface": 5170000, - "canton": null, - "numero_insee": "32456" - } - }, - { - "pk": 13194, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "URDENS", - "center": "POINT (469284.1240240093320608 1874767.1499506819527596)", - "surface": 7660000, - "canton": null, - "numero_insee": "32457" - } - }, - { - "pk": 31868, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "URGOSSE", - "center": "POINT (409720.0629942946834490 1862461.0705503337085247)", - "surface": 6870000, - "canton": null, - "numero_insee": "32458" - } - }, - { - "pk": 21536, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VALENCE-SUR-BAISE", - "center": "POINT (441142.6753488680114970 1876035.5491260883864015)", - "surface": 27450000, - "canton": null, - "numero_insee": "32459" - } - }, - { - "pk": 13712, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VERGOIGNAN", - "center": "POINT (396315.1667912615230307 1861249.2456086829770356)", - "surface": 10560000, - "canton": null, - "numero_insee": "32460" - } - }, - { - "pk": 11143, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VERLUS", - "center": "POINT (394927.5030895029194653 1847422.3862674704287201)", - "surface": 6180000, - "canton": null, - "numero_insee": "32461" - } - }, - { - "pk": 14386, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VIC-FEZENSAC", - "center": "POINT (435632.9777496348833665 1864377.1313656899146736)", - "surface": 54840000, - "canton": null, - "numero_insee": "32462" - } - }, - { - "pk": 32358, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VIELLA", - "center": "POINT (399833.4936540140770376 1847362.7344461930915713)", - "surface": 22260000, - "canton": null, - "numero_insee": "32463" - } - }, - { - "pk": 4588, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VILLECOMTAL-SUR-ARROS", - "center": "POINT (426654.3795504756853916 1824257.9091257266700268)", - "surface": 11220000, - "canton": null, - "numero_insee": "32464" - } - }, - { - "pk": 17326, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VILLEFRANCHE", - "center": "POINT (469992.3715321786585264 1825618.0800247071310878)", - "surface": 12580000, - "canton": null, - "numero_insee": "32465" - } - }, - { - "pk": 30264, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "VIOZAN", - "center": "POINT (448487.6497947355965152 1823237.2511328288819641)", - "surface": 6840000, - "canton": null, - "numero_insee": "32466" - } - }, - { - "pk": 7112, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "SAINT-CAPRAIS", - "center": "POINT (475139.2610612183343619 1844782.3910095044411719)", - "surface": 7870000, - "canton": null, - "numero_insee": "32467" - } - }, - { - "pk": 37805, - "model": "ishtar_common.town", - "fields": { - "departement": 33, - "name": "AUSSOS", - "center": "POINT (462324.8346978585468605 1820648.8793831581715494)", - "surface": 8150000, - "canton": null, - "numero_insee": "32468" - } - }, - { - "pk": 7704, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ABZAC", - "center": "POINT (405448.1065416038036346 2004075.6862971717491746)", - "surface": 13360000, - "canton": null, - "numero_insee": "33001" - } - }, - { - "pk": 18603, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AILLAS", - "center": "POINT (408735.6026682681986131 1945342.4301020749844611)", - "surface": 34960000, - "canton": null, - "numero_insee": "33002" - } - }, - { - "pk": 21667, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AMBARES-ET-LAGRAVE", - "center": "POINT (375970.6307413044851273 1997726.6828389698639512)", - "surface": 24670000, - "canton": null, - "numero_insee": "33003" - } - }, - { - "pk": 6644, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AMBES", - "center": "POINT (372504.8519662460312247 2005305.8448211494833231)", - "surface": 24870000, - "canton": null, - "numero_insee": "33004" - } - }, - { - "pk": 6516, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ANDERNOS-LES-BAINS", - "center": "POINT (329281.3817609305260703 1978424.0658310567960143)", - "surface": 20760000, - "canton": null, - "numero_insee": "33005" - } - }, - { - "pk": 10222, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ANGLADE", - "center": "POINT (366214.0073860539123416 2027776.5845756183844060)", - "surface": 13800000, - "canton": null, - "numero_insee": "33006" - } - }, - { - "pk": 34636, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARBANATS", - "center": "POINT (382629.6609354653628543 1967050.0668138565961272)", - "surface": 7620000, - "canton": null, - "numero_insee": "33007" - } - }, - { - "pk": 35099, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARBIS", - "center": "POINT (394443.5431178745348006 1966847.0746574946679175)", - "surface": 8740000, - "canton": null, - "numero_insee": "33008" - } - }, - { - "pk": 26877, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARCACHON", - "center": "POINT (321362.2097636492690071 1967548.0581157265696675)", - "surface": 7690000, - "canton": null, - "numero_insee": "33009" - } - }, - { - "pk": 6877, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARCINS", - "center": "POINT (360029.0665726994629949 2013011.1254281655419618)", - "surface": 7380000, - "canton": null, - "numero_insee": "33010" - } - }, - { - "pk": 20930, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARES", - "center": "POINT (329644.8590186114888638 1982931.6611248869448900)", - "surface": 48990000, - "canton": null, - "numero_insee": "33011" - } - }, - { - "pk": 11373, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARSAC", - "center": "POINT (360309.8406971534714103 2003203.5844346939120442)", - "surface": 32330000, - "canton": null, - "numero_insee": "33012" - } - }, - { - "pk": 27855, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARTIGUES-PRES-BORDEAUX", - "center": "POINT (376448.4243602346978150 1988321.0663710513617843)", - "surface": 7290000, - "canton": null, - "numero_insee": "33013" - } - }, - { - "pk": 23553, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LES ARTIGUES-DE-LUSSAC", - "center": "POINT (404481.0184845951152965 1999963.5743143458385020)", - "surface": 10220000, - "canton": null, - "numero_insee": "33014" - } - }, - { - "pk": 28076, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ARVEYRES", - "center": "POINT (393441.4967310777865350 1991263.8434549642261118)", - "surface": 17480000, - "canton": null, - "numero_insee": "33015" - } - }, - { - "pk": 12051, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ASQUES", - "center": "POINT (381874.5543090334394947 1997975.4725357387214899)", - "surface": 6210000, - "canton": null, - "numero_insee": "33016" - } - }, - { - "pk": 35837, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AUBIAC", - "center": "POINT (394428.1549209253280424 1944423.5843993092421442)", - "surface": 5530000, - "canton": null, - "numero_insee": "33017" - } - }, - { - "pk": 27677, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AUBIE-ET-ESPESSAS", - "center": "POINT (383809.6906980376224965 2006099.5752584927249700)", - "surface": 7570000, - "canton": null, - "numero_insee": "33018" - } - }, - { - "pk": 14539, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AUDENGE", - "center": "POINT (339932.6068317988538183 1973506.2323461698833853)", - "surface": 81800000, - "canton": null, - "numero_insee": "33019" - } - }, - { - "pk": 24092, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AURIOLLES", - "center": "POINT (418315.3781604385003448 1973250.4338940796442330)", - "surface": 7040000, - "canton": null, - "numero_insee": "33020" - } - }, - { - "pk": 21768, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AUROS", - "center": "POINT (401003.2728617879911326 1948281.7849715927150100)", - "surface": 15230000, - "canton": null, - "numero_insee": "33021" - } - }, - { - "pk": 34678, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AVENSAN", - "center": "POINT (355688.2501034386223182 2005267.7393626398406923)", - "surface": 52740000, - "canton": null, - "numero_insee": "33022" - } - }, - { - "pk": 5147, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "AYGUEMORTE-LES-GRAVES", - "center": "POINT (376292.2697973252506927 1970801.8319181643892080)", - "surface": 6430000, - "canton": null, - "numero_insee": "33023" - } - }, - { - "pk": 33837, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BAGAS", - "center": "POINT (410513.5342137771658599 1960372.7759842146188021)", - "surface": 3640000, - "canton": null, - "numero_insee": "33024" - } - }, - { - "pk": 11806, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BAIGNEAUX", - "center": "POINT (399402.9816669074352831 1972393.6384634873829782)", - "surface": 8000000, - "canton": null, - "numero_insee": "33025" - } - }, - { - "pk": 21213, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BALIZAC", - "center": "POINT (378292.5465986065100878 1946693.2035828558728099)", - "surface": 41840000, - "canton": null, - "numero_insee": "33026" - } - }, - { - "pk": 9820, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BARIE", - "center": "POINT (405350.6017717896611430 1955224.8606705684214830)", - "surface": 5290000, - "canton": null, - "numero_insee": "33027" - } - }, - { - "pk": 26394, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BARON", - "center": "POINT (389999.1963884657598101 1983827.9369548144750297)", - "surface": 10300000, - "canton": null, - "numero_insee": "33028" - } - }, - { - "pk": 23212, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE BARP", - "center": "POINT (355232.7472331497119740 1963221.0451529128476977)", - "surface": 107210000, - "canton": null, - "numero_insee": "33029" - } - }, - { - "pk": 6505, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BARSAC", - "center": "POINT (388600.5064747060532682 1959191.0425744466483593)", - "surface": 14450000, - "canton": null, - "numero_insee": "33030" - } - }, - { - "pk": 30807, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BASSANNE", - "center": "POINT (406861.9755539087927900 1954036.0786246946081519)", - "surface": 2460000, - "canton": null, - "numero_insee": "33031" - } - }, - { - "pk": 22787, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BASSENS", - "center": "POINT (373900.7589920904720202 1993805.7010742260608822)", - "surface": 10300000, - "canton": null, - "numero_insee": "33032" - } - }, - { - "pk": 32096, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BAURECH", - "center": "POINT (380374.8010280327871442 1973438.1119219637475908)", - "surface": 7640000, - "canton": null, - "numero_insee": "33033" - } - }, - { - "pk": 35866, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BAYAS", - "center": "POINT (399388.0078044881811365 2010632.3392695772927254)", - "surface": 11840000, - "canton": null, - "numero_insee": "33034" - } - }, - { - "pk": 26203, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BAYON-SUR-GIRONDE", - "center": "POINT (367769.1690082569839433 2009070.7241202909499407)", - "surface": 11120000, - "canton": null, - "numero_insee": "33035" - } - }, - { - "pk": 21271, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BAZAS", - "center": "POINT (396957.8463766347849742 1941140.9648282551206648)", - "surface": 37420000, - "canton": null, - "numero_insee": "33036" - } - }, - { - "pk": 35096, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BEAUTIRAN", - "center": "POINT (378294.1984806739492342 1970818.3062055918853730)", - "surface": 6340000, - "canton": null, - "numero_insee": "33037" - } - }, - { - "pk": 35095, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BEGADAN", - "center": "POINT (346745.9152767859632149 2045934.7147549910005182)", - "surface": 22100000, - "canton": null, - "numero_insee": "33038" - } - }, - { - "pk": 25049, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BEGLES", - "center": "POINT (371695.7218190329149365 1981975.5325555759482086)", - "surface": 10940000, - "canton": null, - "numero_insee": "33039" - } - }, - { - "pk": 16799, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BELIN-BELIET", - "center": "POINT (351356.2505315558519214 1947673.0286365016363561)", - "surface": 156200000, - "canton": null, - "numero_insee": "33042" - } - }, - { - "pk": 22267, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BELLEBAT", - "center": "POINT (397186.8361596654867753 1974077.1179478322155774)", - "surface": 4880000, - "canton": null, - "numero_insee": "33043" - } - }, - { - "pk": 37482, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BELLEFOND", - "center": "POINT (401165.0915138641139492 1977213.1068774522282183)", - "surface": 3210000, - "canton": null, - "numero_insee": "33044" - } - }, - { - "pk": 34429, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BELVES-DE-CASTILLON", - "center": "POINT (413078.2617870098911226 1989223.5679916655644774)", - "surface": 6680000, - "canton": null, - "numero_insee": "33045" - } - }, - { - "pk": 5064, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BERNOS-BEAULAC", - "center": "POINT (392924.7531132979784161 1932498.6304292592685670)", - "surface": 36440000, - "canton": null, - "numero_insee": "33046" - } - }, - { - "pk": 27261, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BERSON", - "center": "POINT (370906.3172202208661474 2017104.5255872774869204)", - "surface": 17880000, - "canton": null, - "numero_insee": "33047" - } - }, - { - "pk": 29397, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BERTHEZ", - "center": "POINT (403729.0400528440950438 1945501.3299350417219102)", - "surface": 6000000, - "canton": null, - "numero_insee": "33048" - } - }, - { - "pk": 27292, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BEYCHAC-ET-CAILLAU", - "center": "POINT (385950.0422301623038948 1989300.1967417858541012)", - "surface": 15760000, - "canton": null, - "numero_insee": "33049" - } - }, - { - "pk": 27028, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BIEUJAC", - "center": "POINT (401876.0847023348324001 1951692.5435096714645624)", - "surface": 6980000, - "canton": null, - "numero_insee": "33050" - } - }, - { - "pk": 15036, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BIGANOS", - "center": "POINT (339379.6414018060313538 1967695.7046203194186091)", - "surface": 51180000, - "canton": null, - "numero_insee": "33051" - } - }, - { - "pk": 10579, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BIRAC", - "center": "POINT (402291.9675384631846100 1937681.2606029824819416)", - "surface": 10220000, - "canton": null, - "numero_insee": "33053" - } - }, - { - "pk": 26573, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BLAIGNAC", - "center": "POINT (409874.8168406955664977 1952859.6891495720483363)", - "surface": 3250000, - "canton": null, - "numero_insee": "33054" - } - }, - { - "pk": 25449, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BLAIGNAN", - "center": "POINT (348888.8921867510653101 2040947.4041282862890512)", - "surface": 6840000, - "canton": null, - "numero_insee": "33055" - } - }, - { - "pk": 14438, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BLANQUEFORT", - "center": "POINT (367077.8580757923773490 1995751.6220888274256140)", - "surface": 33980000, - "canton": null, - "numero_insee": "33056" - } - }, - { - "pk": 19790, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BLASIMON", - "center": "POINT (407789.5899138780077919 1975065.4926441744901240)", - "surface": 29760000, - "canton": null, - "numero_insee": "33057" - } - }, - { - "pk": 35595, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BLAYE", - "center": "POINT (363386.1792485474143177 2018644.3034513522870839)", - "surface": 15630000, - "canton": null, - "numero_insee": "33058" - } - }, - { - "pk": 5992, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BLESIGNAC", - "center": "POINT (394748.2294818154769018 1978461.5388083022553474)", - "surface": 2600000, - "canton": null, - "numero_insee": "33059" - } - }, - { - "pk": 34967, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BOMMES", - "center": "POINT (386743.1793141121743247 1953770.1136584312189370)", - "surface": 5780000, - "canton": null, - "numero_insee": "33060" - } - }, - { - "pk": 27246, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BONNETAN", - "center": "POINT (382593.7817647121846676 1983566.7450628068763763)", - "surface": 4360000, - "canton": null, - "numero_insee": "33061" - } - }, - { - "pk": 29812, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BONZAC", - "center": "POINT (398242.1716745962621644 2003916.1616891529411077)", - "surface": 7470000, - "canton": null, - "numero_insee": "33062" - } - }, - { - "pk": 21243, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BORDEAUX", - "center": "POINT (369842.1442127701593563 1988266.7254559881985188)", - "surface": 49700000, - "canton": null, - "numero_insee": "33063" - } - }, - { - "pk": 23246, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BOSSUGAN", - "center": "POINT (410855.3883697580313310 1979595.4139210204593837)", - "surface": 2380000, - "canton": null, - "numero_insee": "33064" - } - }, - { - "pk": 23378, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BOULIAC", - "center": "POINT (375186.7157474138075486 1983505.7846497620921582)", - "surface": 7800000, - "canton": null, - "numero_insee": "33065" - } - }, - { - "pk": 34284, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BOURDELLES", - "center": "POINT (414674.5447146686492488 1953499.9399160568136722)", - "surface": 7230000, - "canton": null, - "numero_insee": "33066" - } - }, - { - "pk": 26843, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BOURG", - "center": "POINT (372678.6957965979818255 2008510.4921274767257273)", - "surface": 13830000, - "canton": null, - "numero_insee": "33067" - } - }, - { - "pk": 35552, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BOURIDEYS", - "center": "POINT (375907.0585401075659320 1932458.5871929158456624)", - "surface": 48680000, - "canton": null, - "numero_insee": "33068" - } - }, - { - "pk": 13018, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE BOUSCAT", - "center": "POINT (367630.9981299194041640 1989349.6655173457693309)", - "surface": 5270000, - "canton": null, - "numero_insee": "33069" - } - }, - { - "pk": 6006, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BRACH", - "center": "POINT (341136.0395362500566989 2009853.0397671405225992)", - "surface": 28840000, - "canton": null, - "numero_insee": "33070" - } - }, - { - "pk": 26202, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BRANNE", - "center": "POINT (400809.5003907780628651 1983917.0382636878639460)", - "surface": 2430000, - "canton": null, - "numero_insee": "33071" - } - }, - { - "pk": 37221, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BRANNENS", - "center": "POINT (401991.0433092955499887 1949891.6080811156425625)", - "surface": 6060000, - "canton": null, - "numero_insee": "33072" - } - }, - { - "pk": 27848, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BRAUD-ET-SAINT-LOUIS", - "center": "POINT (365774.1511145787080750 2032577.7130407348740846)", - "surface": 48330000, - "canton": null, - "numero_insee": "33073" - } - }, - { - "pk": 13954, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BROUQUEYRAN", - "center": "POINT (399819.4311082244385034 1946169.8188489235471934)", - "surface": 5700000, - "canton": null, - "numero_insee": "33074" - } - }, - { - "pk": 29598, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "BRUGES", - "center": "POINT (367910.7096256028744392 1991854.5094341456424445)", - "surface": 14200000, - "canton": null, - "numero_insee": "33075" - } - }, - { - "pk": 28819, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CABANAC-ET-VILLAGRAINS", - "center": "POINT (370685.5613211245508865 1958743.2675469375681132)", - "surface": 69390000, - "canton": null, - "numero_insee": "33077" - } - }, - { - "pk": 37458, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CABARA", - "center": "POINT (402409.3754728892818093 1984130.4365669446997344)", - "surface": 3410000, - "canton": null, - "numero_insee": "33078" - } - }, - { - "pk": 14208, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CADARSAC", - "center": "POINT (392768.0509640476666391 1987954.9349638049025089)", - "surface": 2280000, - "canton": null, - "numero_insee": "33079" - } - }, - { - "pk": 9201, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CADAUJAC", - "center": "POINT (372947.9178244771901518 1975779.4692632867954671)", - "surface": 15410000, - "canton": null, - "numero_insee": "33080" - } - }, - { - "pk": 7809, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CADILLAC", - "center": "POINT (390267.5221123016672209 1963409.1396680097095668)", - "surface": 5410000, - "canton": null, - "numero_insee": "33081" - } - }, - { - "pk": 7082, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CADILLAC-EN-FRONSADAIS", - "center": "POINT (386066.9791889984626323 1999411.4062396001536399)", - "surface": 3760000, - "canton": null, - "numero_insee": "33082" - } - }, - { - "pk": 6971, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAMARSAC", - "center": "POINT (385992.0816961398813874 1984195.3401469073724002)", - "surface": 5360000, - "canton": null, - "numero_insee": "33083" - } - }, - { - "pk": 11656, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAMBES", - "center": "POINT (378160.3273753234534524 1974921.4299546736292541)", - "surface": 5350000, - "canton": null, - "numero_insee": "33084" - } - }, - { - "pk": 16271, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAMBLANES-ET-MEYNAC", - "center": "POINT (377234.7514646392082796 1977916.8970363289117813)", - "surface": 8860000, - "canton": null, - "numero_insee": "33085" - } - }, - { - "pk": 34173, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAMIAC-ET-SAINT-DENIS", - "center": "POINT (391926.5769612899166532 1980740.6442314793821424)", - "surface": 6620000, - "canton": null, - "numero_insee": "33086" - } - }, - { - "pk": 36949, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAMIRAN", - "center": "POINT (409097.3050630764337257 1962162.9565950343385339)", - "surface": 5750000, - "canton": null, - "numero_insee": "33087" - } - }, - { - "pk": 9327, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAMPS-SUR-L'ISLE", - "center": "POINT (412951.8411838400643319 2004538.0096397830639035)", - "surface": 2970000, - "canton": null, - "numero_insee": "33088" - } - }, - { - "pk": 36280, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAMPUGNAN", - "center": "POINT (372246.7049566136556678 2024522.9122735203709453)", - "surface": 6250000, - "canton": null, - "numero_insee": "33089" - } - }, - { - "pk": 9966, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CANEJAN", - "center": "POINT (362921.8550036750966683 1977699.0897174077108502)", - "surface": 12080000, - "canton": null, - "numero_insee": "33090" - } - }, - { - "pk": 4174, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CANTENAC", - "center": "POINT (362676.7308385695214383 2007527.3615393680520356)", - "surface": 14280000, - "canton": null, - "numero_insee": "33091" - } - }, - { - "pk": 13155, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CANTOIS", - "center": "POINT (397628.4813737229560502 1969075.6030482435598969)", - "surface": 7940000, - "canton": null, - "numero_insee": "33092" - } - }, - { - "pk": 21769, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAPIAN", - "center": "POINT (388796.0758331433753483 1971905.8083164729177952)", - "surface": 18270000, - "canton": null, - "numero_insee": "33093" - } - }, - { - "pk": 24482, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAPLONG", - "center": "POINT (426797.8991153527749702 1976423.7091245648916811)", - "surface": 9410000, - "canton": null, - "numero_insee": "33094" - } - }, - { - "pk": 30124, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAPTIEUX", - "center": "POINT (390522.0774660410825163 1920365.9485448915511370)", - "surface": 119990000, - "canton": null, - "numero_insee": "33095" - } - }, - { - "pk": 9969, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CARBON-BLANC", - "center": "POINT (375808.3237059637322091 1993120.6833728081546724)", - "surface": 3820000, - "canton": null, - "numero_insee": "33096" - } - }, - { - "pk": 30826, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CARCANS", - "center": "POINT (333385.3494010306894779 2015094.8092616582289338)", - "surface": 201370000, - "canton": null, - "numero_insee": "33097" - } - }, - { - "pk": 12318, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CARDAN", - "center": "POINT (389127.6992275820230134 1968104.6166792772710323)", - "surface": 4240000, - "canton": null, - "numero_insee": "33098" - } - }, - { - "pk": 24676, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CARIGNAN-DE-BORDEAUX", - "center": "POINT (377696.5164791531860828 1982625.5150966802611947)", - "surface": 8720000, - "canton": null, - "numero_insee": "33099" - } - }, - { - "pk": 13816, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CARS", - "center": "POINT (367590.9048636665102094 2018578.7627092530019581)", - "surface": 11090000, - "canton": null, - "numero_insee": "33100" - } - }, - { - "pk": 24490, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CARTELEGUE", - "center": "POINT (370838.0030136837740429 2025412.2207846045494080)", - "surface": 11430000, - "canton": null, - "numero_insee": "33101" - } - }, - { - "pk": 5304, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASSEUIL", - "center": "POINT (404833.5983640570193529 1957222.6800844250246882)", - "surface": 6410000, - "canton": null, - "numero_insee": "33102" - } - }, - { - "pk": 3411, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASTELMORON-D'ALBRET", - "center": "POINT (413662.0970061057014391 1967005.6101100705564022)", - "surface": 20000, - "canton": null, - "numero_insee": "33103" - } - }, - { - "pk": 5035, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASTELNAU-DE-MEDOC", - "center": "POINT (351681.2047509439289570 2005635.2415415879804641)", - "surface": 23880000, - "canton": null, - "numero_insee": "33104" - } - }, - { - "pk": 36979, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASTELVIEL", - "center": "POINT (402559.6281635732157156 1965912.9567513496149331)", - "surface": 8070000, - "canton": null, - "numero_insee": "33105" - } - }, - { - "pk": 29830, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASTETS-EN-DORTHE", - "center": "POINT (402961.4723922886769287 1953603.4816599066834897)", - "surface": 8540000, - "canton": null, - "numero_insee": "33106" - } - }, - { - "pk": 28273, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASTILLON-DE-CASTETS", - "center": "POINT (405470.5196376765379682 1952823.3444567683618516)", - "surface": 4520000, - "canton": null, - "numero_insee": "33107" - } - }, - { - "pk": 26634, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASTILLON-LA-BATAILLE", - "center": "POINT (412993.8665705119492486 1987320.9361344503704458)", - "surface": 5690000, - "canton": null, - "numero_insee": "33108" - } - }, - { - "pk": 6970, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CASTRES-GIRONDE", - "center": "POINT (378610.1402384059620090 1968918.9440713543444872)", - "surface": 6980000, - "canton": null, - "numero_insee": "33109" - } - }, - { - "pk": 27235, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAUDROT", - "center": "POINT (402834.9538924233638681 1956805.7762083092238754)", - "surface": 6150000, - "canton": null, - "numero_insee": "33111" - } - }, - { - "pk": 29832, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAUMONT", - "center": "POINT (413847.4145179565530270 1968809.0005844826810062)", - "surface": 7600000, - "canton": null, - "numero_insee": "33112" - } - }, - { - "pk": 32074, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAUVIGNAC", - "center": "POINT (408095.2188711970811710 1938029.4578920779749751)", - "surface": 5520000, - "canton": null, - "numero_insee": "33113" - } - }, - { - "pk": 9703, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAVIGNAC", - "center": "POINT (385944.1675802567042410 2014325.3724321573972702)", - "surface": 6700000, - "canton": null, - "numero_insee": "33114" - } - }, - { - "pk": 11637, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CAZATS", - "center": "POINT (397730.5741384028224275 1944550.9138891650363803)", - "surface": 7480000, - "canton": null, - "numero_insee": "33116" - } - }, - { - "pk": 35578, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CENAC", - "center": "POINT (378822.2813364923931658 1979631.7062654439359903)", - "surface": 7510000, - "canton": null, - "numero_insee": "33118" - } - }, - { - "pk": 29604, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CENON", - "center": "POINT (374050.2579496307298541 1987800.8264436069875956)", - "surface": 5710000, - "canton": null, - "numero_insee": "33119" - } - }, - { - "pk": 23206, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CERONS", - "center": "POINT (387475.5261058913893066 1962084.7900325339287519)", - "surface": 5840000, - "canton": null, - "numero_insee": "33120" - } - }, - { - "pk": 8560, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CESSAC", - "center": "POINT (400188.0690115130855702 1974302.0687607866711915)", - "surface": 3680000, - "canton": null, - "numero_insee": "33121" - } - }, - { - "pk": 34625, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CESTAS", - "center": "POINT (357147.5315754414768890 1973847.7363933962769806)", - "surface": 99560000, - "canton": null, - "numero_insee": "33122" - } - }, - { - "pk": 36738, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CEZAC", - "center": "POINT (382938.0761905411491171 2014701.0221934532746673)", - "surface": 19360000, - "canton": null, - "numero_insee": "33123" - } - }, - { - "pk": 15676, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CHAMADELLE", - "center": "POINT (408871.2761043133214116 2013813.6600587288849056)", - "surface": 15410000, - "canton": null, - "numero_insee": "33124" - } - }, - { - "pk": 32326, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CISSAC-MEDOC", - "center": "POINT (349784.0877246214076877 2029443.4238722694572061)", - "surface": 23620000, - "canton": null, - "numero_insee": "33125" - } - }, - { - "pk": 15223, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CIVRAC-DE-BLAYE", - "center": "POINT (379722.7387922473717481 2016176.0552589222788811)", - "surface": 13300000, - "canton": null, - "numero_insee": "33126" - } - }, - { - "pk": 5721, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CIVRAC-SUR-DORDOGNE", - "center": "POINT (408917.2255165504757315 1983983.9210178707726300)", - "surface": 1910000, - "canton": null, - "numero_insee": "33127" - } - }, - { - "pk": 3131, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CIVRAC-EN-MEDOC", - "center": "POINT (345064.8951542792492546 2043418.4794318345375359)", - "surface": 18560000, - "canton": null, - "numero_insee": "33128" - } - }, - { - "pk": 8940, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CLEYRAC", - "center": "POINT (411723.0795397663605399 1971494.2494623933453113)", - "surface": 6090000, - "canton": null, - "numero_insee": "33129" - } - }, - { - "pk": 35551, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COIMERES", - "center": "POINT (397104.4012940889224410 1947649.0062430878169835)", - "surface": 12860000, - "canton": null, - "numero_insee": "33130" - } - }, - { - "pk": 10858, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COIRAC", - "center": "POINT (401039.1913044184911996 1968202.7962644204962999)", - "surface": 5730000, - "canton": null, - "numero_insee": "33131" - } - }, - { - "pk": 8816, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COMPS", - "center": "POINT (369149.0824657049961388 2011684.6768603825476021)", - "surface": 1710000, - "canton": null, - "numero_insee": "33132" - } - }, - { - "pk": 24287, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COUBEYRAC", - "center": "POINT (419173.2497233506874181 1978462.8632683930918574)", - "surface": 5640000, - "canton": null, - "numero_insee": "33133" - } - }, - { - "pk": 11238, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COUQUEQUES", - "center": "POINT (350372.1899141856702045 2043161.7323869576212019)", - "surface": 6470000, - "canton": null, - "numero_insee": "33134" - } - }, - { - "pk": 12591, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COURPIAC", - "center": "POINT (400175.6881058455910534 1975803.5094805764965713)", - "surface": 2180000, - "canton": null, - "numero_insee": "33135" - } - }, - { - "pk": 15726, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COURS-DE-MONSEGUR", - "center": "POINT (424601.5772589870030060 1963592.3490979161579162)", - "surface": 9620000, - "canton": null, - "numero_insee": "33136" - } - }, - { - "pk": 30806, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COURS-LES-BAINS", - "center": "POINT (413037.2480800236226059 1933565.4945256484206766)", - "surface": 10380000, - "canton": null, - "numero_insee": "33137" - } - }, - { - "pk": 16966, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COUTRAS", - "center": "POINT (407524.4766673230333254 2007195.9339248309843242)", - "surface": 33840000, - "canton": null, - "numero_insee": "33138" - } - }, - { - "pk": 11523, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "COUTURES", - "center": "POINT (416990.9112223532865755 1963929.8879956100136042)", - "surface": 3350000, - "canton": null, - "numero_insee": "33139" - } - }, - { - "pk": 22299, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CREON", - "center": "POINT (387744.8196669956669211 1978003.4248868897557259)", - "surface": 8010000, - "canton": null, - "numero_insee": "33140" - } - }, - { - "pk": 36524, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CROIGNON", - "center": "POINT (387899.6656812200089917 1983510.3353958488442004)", - "surface": 4690000, - "canton": null, - "numero_insee": "33141" - } - }, - { - "pk": 9838, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CUBNEZAIS", - "center": "POINT (382861.8785322977346368 2011797.4934214225504547)", - "surface": 10330000, - "canton": null, - "numero_insee": "33142" - } - }, - { - "pk": 3926, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CUBZAC-LES-PONTS", - "center": "POINT (380353.3658927454380319 2000365.3777339439839125)", - "surface": 8920000, - "canton": null, - "numero_insee": "33143" - } - }, - { - "pk": 14594, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CUDOS", - "center": "POINT (398618.8515927881235257 1933947.0548906102776527)", - "surface": 34930000, - "canton": null, - "numero_insee": "33144" - } - }, - { - "pk": 10475, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CURSAN", - "center": "POINT (388523.3246168702607974 1980712.6065232404507697)", - "surface": 6040000, - "canton": null, - "numero_insee": "33145" - } - }, - { - "pk": 14299, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "CUSSAC-FORT-MEDOC", - "center": "POINT (358987.8451271570520476 2017907.4691772270016372)", - "surface": 24270000, - "canton": null, - "numero_insee": "33146" - } - }, - { - "pk": 32757, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "DAIGNAC", - "center": "POINT (396333.2604909011861309 1980476.6541019808501005)", - "surface": 5720000, - "canton": null, - "numero_insee": "33147" - } - }, - { - "pk": 6642, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "DARDENAC", - "center": "POINT (396043.6994548442307860 1979172.9346584361046553)", - "surface": 1510000, - "canton": null, - "numero_insee": "33148" - } - }, - { - "pk": 28079, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "DAUBEZE", - "center": "POINT (404121.5415819672052749 1970730.8008611467666924)", - "surface": 5700000, - "canton": null, - "numero_insee": "33149" - } - }, - { - "pk": 3137, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "DIEULIVOL", - "center": "POINT (422775.0215655739884824 1966580.3616237146779895)", - "surface": 10420000, - "canton": null, - "numero_insee": "33150" - } - }, - { - "pk": 16221, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "DONNEZAC", - "center": "POINT (381512.4626623550429940 2029804.2939777809660882)", - "surface": 36480000, - "canton": null, - "numero_insee": "33151" - } - }, - { - "pk": 12461, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "DONZAC", - "center": "POINT (394164.7025313818594441 1964242.0836746662389487)", - "surface": 4370000, - "canton": null, - "numero_insee": "33152" - } - }, - { - "pk": 37479, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "DOULEZON", - "center": "POINT (414860.0416031550848857 1979528.3709960724227130)", - "surface": 7530000, - "canton": null, - "numero_insee": "33153" - } - }, - { - "pk": 4088, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LES EGLISOTTES-ET-CHALAURES", - "center": "POINT (413382.0770994264166802 2013050.0887139027472585)", - "surface": 17250000, - "canton": null, - "numero_insee": "33154" - } - }, - { - "pk": 21729, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ESCAUDES", - "center": "POINT (396776.3891404988826253 1926724.2197556169703603)", - "surface": 25790000, - "canton": null, - "numero_insee": "33155" - } - }, - { - "pk": 28306, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ESCOUSSANS", - "center": "POINT (392735.3007184441084974 1967633.8240046706050634)", - "surface": 5150000, - "canton": null, - "numero_insee": "33156" - } - }, - { - "pk": 11121, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ESPIET", - "center": "POINT (394030.2353803815785795 1980557.7746152309700847)", - "surface": 6810000, - "canton": null, - "numero_insee": "33157" - } - }, - { - "pk": 25032, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LES ESSEINTES", - "center": "POINT (409220.5329759133746848 1959361.0645390131976455)", - "surface": 5080000, - "canton": null, - "numero_insee": "33158" - } - }, - { - "pk": 4935, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ETAULIERS", - "center": "POINT (370710.7505822482053190 2028714.4430110980756581)", - "surface": 13050000, - "canton": null, - "numero_insee": "33159" - } - }, - { - "pk": 10743, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "EYNESSE", - "center": "POINT (426850.0082324112299830 1982230.0843051951378584)", - "surface": 7460000, - "canton": null, - "numero_insee": "33160" - } - }, - { - "pk": 36281, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "EYRANS", - "center": "POINT (368433.3166680699214339 2025692.7470438624732196)", - "surface": 4270000, - "canton": null, - "numero_insee": "33161" - } - }, - { - "pk": 9709, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "EYSINES", - "center": "POINT (364113.6841502257157117 1991022.4831793594639748)", - "surface": 12030000, - "canton": null, - "numero_insee": "33162" - } - }, - { - "pk": 30616, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FALEYRAS", - "center": "POINT (396762.5225878497585654 1976976.6019947780296206)", - "surface": 10360000, - "canton": null, - "numero_insee": "33163" - } - }, - { - "pk": 36491, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FARGUES", - "center": "POINT (390664.3077779974555597 1951700.2213200894184411)", - "surface": 15480000, - "canton": null, - "numero_insee": "33164" - } - }, - { - "pk": 29814, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FARGUES-SAINT-HILAIRE", - "center": "POINT (380289.9380196545971557 1983747.9845111684408039)", - "surface": 6960000, - "canton": null, - "numero_insee": "33165" - } - }, - { - "pk": 22168, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE FIEU", - "center": "POINT (413016.4062333123292774 2008842.8632968240417540)", - "surface": 14540000, - "canton": null, - "numero_insee": "33166" - } - }, - { - "pk": 13288, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FLOIRAC", - "center": "POINT (373969.1012628037715331 1985497.8116987042594701)", - "surface": 8470000, - "canton": null, - "numero_insee": "33167" - } - }, - { - "pk": 34183, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FLAUJAGUES", - "center": "POINT (417026.6014763843268156 1983850.6617651416454464)", - "surface": 7650000, - "canton": null, - "numero_insee": "33168" - } - }, - { - "pk": 10913, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FLOUDES", - "center": "POINT (409256.8821725514717400 1954956.7814535470679402)", - "surface": 3750000, - "canton": null, - "numero_insee": "33169" - } - }, - { - "pk": 20800, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FONTET", - "center": "POINT (411973.5622025367338210 1953277.4310612985864282)", - "surface": 7860000, - "canton": null, - "numero_insee": "33170" - } - }, - { - "pk": 12859, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FOSSES-ET-BALEYSSAC", - "center": "POINT (418343.4300309490645304 1957734.6185901651624590)", - "surface": 9500000, - "canton": null, - "numero_insee": "33171" - } - }, - { - "pk": 29804, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FOURS", - "center": "POINT (366447.9232102580717765 2023674.4417449363972992)", - "surface": 4670000, - "canton": null, - "numero_insee": "33172" - } - }, - { - "pk": 25061, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FRANCS", - "center": "POINT (415422.6876023198710755 1996250.0297600913327187)", - "surface": 6610000, - "canton": null, - "numero_insee": "33173" - } - }, - { - "pk": 33466, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FRONSAC", - "center": "POINT (393313.3576909028925002 1994666.2398467352613807)", - "surface": 15140000, - "canton": null, - "numero_insee": "33174" - } - }, - { - "pk": 19945, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "FRONTENAC", - "center": "POINT (403402.7029602722614072 1972927.1392385351937264)", - "surface": 14410000, - "canton": null, - "numero_insee": "33175" - } - }, - { - "pk": 7488, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GABARNAC", - "center": "POINT (393593.8193753721425310 1960633.6418427603784949)", - "surface": 5340000, - "canton": null, - "numero_insee": "33176" - } - }, - { - "pk": 19118, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GAILLAN-EN-MEDOC", - "center": "POINT (339285.8676795472856611 2040167.9492789332289249)", - "surface": 42210000, - "canton": null, - "numero_insee": "33177" - } - }, - { - "pk": 36262, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GAJAC", - "center": "POINT (403071.2891950106713921 1940290.4323834765236825)", - "surface": 12260000, - "canton": null, - "numero_insee": "33178" - } - }, - { - "pk": 4307, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GALGON", - "center": "POINT (393851.2366048382828012 2002278.3580762639176100)", - "surface": 15030000, - "canton": null, - "numero_insee": "33179" - } - }, - { - "pk": 8717, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GANS", - "center": "POINT (403355.0703378479229286 1942294.8801667264197022)", - "surface": 7030000, - "canton": null, - "numero_insee": "33180" - } - }, - { - "pk": 14549, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GARDEGAN-ET-TOURTIRAC", - "center": "POINT (414065.1629140841541812 1990933.4445823847781867)", - "surface": 9670000, - "canton": null, - "numero_insee": "33181" - } - }, - { - "pk": 22838, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GAURIAC", - "center": "POINT (366348.9345428609522060 2011361.3562981851864606)", - "surface": 10110000, - "canton": null, - "numero_insee": "33182" - } - }, - { - "pk": 28943, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GAURIAGUET", - "center": "POINT (384689.1071957654203288 2008709.4283915075939149)", - "surface": 5440000, - "canton": null, - "numero_insee": "33183" - } - }, - { - "pk": 10853, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GENERAC", - "center": "POINT (373357.6008793635992333 2023330.8573555222246796)", - "surface": 9530000, - "canton": null, - "numero_insee": "33184" - } - }, - { - "pk": 28739, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GENISSAC", - "center": "POINT (395572.3640051078982651 1987777.8421470914036036)", - "surface": 14150000, - "canton": null, - "numero_insee": "33185" - } - }, - { - "pk": 3134, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GENSAC", - "center": "POINT (421666.5463015078566968 1979584.5879052609670907)", - "surface": 9320000, - "canton": null, - "numero_insee": "33186" - } - }, - { - "pk": 11918, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GIRONDE-SUR-DROPT", - "center": "POINT (407335.2059987711254507 1957343.4245544411242008)", - "surface": 8840000, - "canton": null, - "numero_insee": "33187" - } - }, - { - "pk": 19136, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GISCOS", - "center": "POINT (400223.5303309035371058 1921446.9943841909989715)", - "surface": 32060000, - "canton": null, - "numero_insee": "33188" - } - }, - { - "pk": 10597, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GORNAC", - "center": "POINT (399958.7642817554296926 1965691.3002299955114722)", - "surface": 8420000, - "canton": null, - "numero_insee": "33189" - } - }, - { - "pk": 36947, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GOUALADE", - "center": "POINT (403780.8841769793070853 1927082.3071042224764824)", - "surface": 17050000, - "canton": null, - "numero_insee": "33190" - } - }, - { - "pk": 9452, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GOURS", - "center": "POINT (417774.5295209253672510 2002375.6127772559411824)", - "surface": 7910000, - "canton": null, - "numero_insee": "33191" - } - }, - { - "pk": 32738, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GRADIGNAN", - "center": "POINT (366115.8745001833885908 1978826.4727305388078094)", - "surface": 15650000, - "canton": null, - "numero_insee": "33192" - } - }, - { - "pk": 24515, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GRAYAN-ET-L'HOPITAL", - "center": "POINT (330362.2091345018707216 2054208.5838524859864265)", - "surface": 45430000, - "canton": null, - "numero_insee": "33193" - } - }, - { - "pk": 9708, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GREZILLAC", - "center": "POINT (397815.7157247775467113 1982791.2293663288000971)", - "surface": 7780000, - "canton": null, - "numero_insee": "33194" - } - }, - { - "pk": 18499, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GRIGNOLS", - "center": "POINT (411707.0373537478735670 1937058.2141583738848567)", - "surface": 22740000, - "canton": null, - "numero_insee": "33195" - } - }, - { - "pk": 35792, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GUILLOS", - "center": "POINT (372925.5810894659953192 1954156.8956888741813600)", - "surface": 22870000, - "canton": null, - "numero_insee": "33197" - } - }, - { - "pk": 6520, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "GUITRES", - "center": "POINT (401112.7055939547135495 2007843.7509325894061476)", - "surface": 4960000, - "canton": null, - "numero_insee": "33198" - } - }, - { - "pk": 12055, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE HAILLAN", - "center": "POINT (361119.8813858634093776 1989896.7610559575259686)", - "surface": 9370000, - "canton": null, - "numero_insee": "33200" - } - }, - { - "pk": 9221, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "HAUX", - "center": "POINT (385873.4983339255559258 1974284.2088999815750867)", - "surface": 10530000, - "canton": null, - "numero_insee": "33201" - } - }, - { - "pk": 22467, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "HOSTENS", - "center": "POINT (361671.3021797293913551 1947157.1323110114317387)", - "surface": 57250000, - "canton": null, - "numero_insee": "33202" - } - }, - { - "pk": 15273, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "HOURTIN", - "center": "POINT (332496.8405037419288419 2025798.1893728361465037)", - "surface": 222530000, - "canton": null, - "numero_insee": "33203" - } - }, - { - "pk": 5510, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "HURE", - "center": "POINT (413792.6751112885540351 1951190.2546919435262680)", - "surface": 7260000, - "canton": null, - "numero_insee": "33204" - } - }, - { - "pk": 32735, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ILLATS", - "center": "POINT (384189.6327845483319834 1959955.5457930047996342)", - "surface": 29180000, - "canton": null, - "numero_insee": "33205" - } - }, - { - "pk": 5154, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ISLE-SAINT-GEORGES", - "center": "POINT (377270.9940226274775341 1973512.6697836997918785)", - "surface": 4340000, - "canton": null, - "numero_insee": "33206" - } - }, - { - "pk": 35825, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "IZON", - "center": "POINT (387306.0314402251387946 1994816.9531435663811862)", - "surface": 15840000, - "canton": null, - "numero_insee": "33207" - } - }, - { - "pk": 11151, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "JAU-DIGNAC-ET-LOIRAC", - "center": "POINT (341696.2237922829808667 2051398.6582728915382177)", - "surface": 47230000, - "canton": null, - "numero_insee": "33208" - } - }, - { - "pk": 30037, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "JUGAZAN", - "center": "POINT (403157.1018213081406429 1978430.7675545546226203)", - "surface": 5390000, - "canton": null, - "numero_insee": "33209" - } - }, - { - "pk": 31259, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "JUILLAC", - "center": "POINT (419346.1568368977168575 1981767.6721607220824808)", - "surface": 5790000, - "canton": null, - "numero_insee": "33210" - } - }, - { - "pk": 5178, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LABARDE", - "center": "POINT (365292.3316936038900167 2005947.2480836929753423)", - "surface": 4760000, - "canton": null, - "numero_insee": "33211" - } - }, - { - "pk": 5901, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LABESCAU", - "center": "POINT (407265.5179162551648915 1941526.3014524395111948)", - "surface": 5980000, - "canton": null, - "numero_insee": "33212" - } - }, - { - "pk": 30608, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LA BREDE", - "center": "POINT (372007.0590965118608437 1968464.2017296822741628)", - "surface": 23190000, - "canton": null, - "numero_insee": "33213" - } - }, - { - "pk": 37668, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LACANAU", - "center": "POINT (328271.5090944540570490 2003941.7578103803098202)", - "surface": 218580000, - "canton": null, - "numero_insee": "33214" - } - }, - { - "pk": 17980, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LADAUX", - "center": "POINT (395116.1684253052808344 1970256.1323255449533463)", - "surface": 4300000, - "canton": null, - "numero_insee": "33215" - } - }, - { - "pk": 30817, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LADOS", - "center": "POINT (403141.6620400424581021 1943894.8030961910262704)", - "surface": 6500000, - "canton": null, - "numero_insee": "33216" - } - }, - { - "pk": 37463, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LAGORCE", - "center": "POINT (403283.3952740138629451 2011665.4621974581386894)", - "surface": 28350000, - "canton": null, - "numero_insee": "33218" - } - }, - { - "pk": 25635, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LA LANDE-DE-FRONSAC", - "center": "POINT (385646.8204335942282341 2001810.3700122446753085)", - "surface": 8510000, - "canton": null, - "numero_insee": "33219" - } - }, - { - "pk": 28097, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LAMARQUE", - "center": "POINT (360013.4432418806245551 2014912.8980473224073648)", - "surface": 9020000, - "canton": null, - "numero_insee": "33220" - } - }, - { - "pk": 7318, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LAMOTHE-LANDERRON", - "center": "POINT (419074.7042485465062782 1954036.8022091649472713)", - "surface": 9190000, - "canton": null, - "numero_insee": "33221" - } - }, - { - "pk": 13285, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LALANDE-DE-POMEROL", - "center": "POINT (399289.3244055439718068 1998319.1430882629938424)", - "surface": 8210000, - "canton": null, - "numero_insee": "33222" - } - }, - { - "pk": 34427, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LANDERROUAT", - "center": "POINT (427621.8339048667112365 1973627.6411320369224995)", - "surface": 4960000, - "canton": null, - "numero_insee": "33223" - } - }, - { - "pk": 9858, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LANDERROUET-SUR-SEGUR", - "center": "POINT (412884.4623133057611994 1964196.2911797270644456)", - "surface": 3100000, - "canton": null, - "numero_insee": "33224" - } - }, - { - "pk": 22611, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LANDIRAS", - "center": "POINT (379020.0042102399747819 1955608.5062650549225509)", - "surface": 59940000, - "canton": null, - "numero_insee": "33225" - } - }, - { - "pk": 10857, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LANGOIRAN", - "center": "POINT (385099.1062310320558026 1971074.5337183077353984)", - "surface": 10170000, - "canton": null, - "numero_insee": "33226" - } - }, - { - "pk": 33552, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LANGON", - "center": "POINT (394967.6877855715574697 1951835.7908186339773238)", - "surface": 13760000, - "canton": null, - "numero_insee": "33227" - } - }, - { - "pk": 6851, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LANSAC", - "center": "POINT (373758.3196811977541074 2011121.9806709876284003)", - "surface": 6040000, - "canton": null, - "numero_insee": "33228" - } - }, - { - "pk": 16803, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LANTON", - "center": "POINT (337574.5787675905739889 1980293.8895642259158194)", - "surface": 137720000, - "canton": null, - "numero_insee": "33229" - } - }, - { - "pk": 37660, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LAPOUYADE", - "center": "POINT (393540.5257439754204825 2015689.2441939190030098)", - "surface": 25930000, - "canton": null, - "numero_insee": "33230" - } - }, - { - "pk": 8163, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LAROQUE", - "center": "POINT (390249.3788566885632463 1965611.2705717410426587)", - "surface": 2970000, - "canton": null, - "numero_insee": "33231" - } - }, - { - "pk": 14428, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LARTIGUE", - "center": "POINT (405943.2712692341301590 1919792.3627515584230423)", - "surface": 13490000, - "canton": null, - "numero_insee": "33232" - } - }, - { - "pk": 20711, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LARUSCADE", - "center": "POINT (389023.1472250410006382 2017253.6251921153161675)", - "surface": 46460000, - "canton": null, - "numero_insee": "33233" - } - }, - { - "pk": 8433, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LATRESNE", - "center": "POINT (375310.6935645297635347 1980603.8354454073123634)", - "surface": 10250000, - "canton": null, - "numero_insee": "33234" - } - }, - { - "pk": 33431, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LAVAZAN", - "center": "POINT (404413.8619795098784380 1935296.2280813422985375)", - "surface": 8990000, - "canton": null, - "numero_insee": "33235" - } - }, - { - "pk": 15775, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LEGE-CAP-FERRET", - "center": "POINT (320463.0939758877502754 1979553.0751787801273167)", - "surface": 96870000, - "canton": null, - "numero_insee": "33236" - } - }, - { - "pk": 14731, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LEOGEATS", - "center": "POINT (385683.3248919806210324 1948756.1523306858725846)", - "surface": 19660000, - "canton": null, - "numero_insee": "33237" - } - }, - { - "pk": 24674, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LEOGNAN", - "center": "POINT (366063.5047307567438111 1973020.0762226786464453)", - "surface": 41530000, - "canton": null, - "numero_insee": "33238" - } - }, - { - "pk": 21496, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LERM-ET-MUSSET", - "center": "POINT (401457.1274628452956676 1929665.9021383225917816)", - "surface": 36830000, - "canton": null, - "numero_insee": "33239" - } - }, - { - "pk": 13422, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LESPARRE-MEDOC", - "center": "POINT (343218.9862359162652865 2036596.6644095522351563)", - "surface": 36730000, - "canton": null, - "numero_insee": "33240" - } - }, - { - "pk": 28302, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LESTIAC-SUR-GARONNE", - "center": "POINT (384612.6366511528613046 1969368.7726091840304434)", - "surface": 2900000, - "canton": null, - "numero_insee": "33241" - } - }, - { - "pk": 18645, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LES LEVES-ET-THOUMEYRAGUES", - "center": "POINT (429587.3421574140666053 1978048.4108967671636492)", - "surface": 17390000, - "canton": null, - "numero_insee": "33242" - } - }, - { - "pk": 15001, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LIBOURNE", - "center": "POINT (396826.5699371874798089 1993493.9774138741195202)", - "surface": 20680000, - "canton": null, - "numero_insee": "33243" - } - }, - { - "pk": 36614, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LIGNAN-DE-BAZAS", - "center": "POINT (391759.3198477009427734 1940297.2722659301944077)", - "surface": 11000000, - "canton": null, - "numero_insee": "33244" - } - }, - { - "pk": 30611, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LIGNAN-DE-BORDEAUX", - "center": "POINT (381013.6768639343208633 1980951.0759869858156890)", - "surface": 8970000, - "canton": null, - "numero_insee": "33245" - } - }, - { - "pk": 11666, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LIGUEUX", - "center": "POINT (435786.6530216120299883 1978900.4995271961670369)", - "surface": 5130000, - "canton": null, - "numero_insee": "33246" - } - }, - { - "pk": 9451, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LISTRAC-DE-DUREZE", - "center": "POINT (417592.3847953930962831 1975947.2396693159826100)", - "surface": 5340000, - "canton": null, - "numero_insee": "33247" - } - }, - { - "pk": 16268, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LISTRAC-MEDOC", - "center": "POINT (350623.5747928990167566 2012533.4898666215594858)", - "surface": 60740000, - "canton": null, - "numero_insee": "33248" - } - }, - { - "pk": 9728, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LORMONT", - "center": "POINT (374229.8626841448713094 1990304.8506917583290488)", - "surface": 7790000, - "canton": null, - "numero_insee": "33249" - } - }, - { - "pk": 8917, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LOUBENS", - "center": "POINT (412608.9623683884274215 1961190.9043884861748666)", - "surface": 5900000, - "canton": null, - "numero_insee": "33250" - } - }, - { - "pk": 19860, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LOUCHATS", - "center": "POINT (368655.1292479521362111 1950017.4823600994423032)", - "surface": 39370000, - "canton": null, - "numero_insee": "33251" - } - }, - { - "pk": 25807, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LOUPES", - "center": "POINT (384104.2797453674138524 1982478.0562506192363799)", - "surface": 4980000, - "canton": null, - "numero_insee": "33252" - } - }, - { - "pk": 30804, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LOUPIAC", - "center": "POINT (391680.4264619667665102 1962019.3283452941104770)", - "surface": 9560000, - "canton": null, - "numero_insee": "33253" - } - }, - { - "pk": 5017, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LOUPIAC-DE-LA-REOLE", - "center": "POINT (410684.6867038175114430 1951765.2241558237001300)", - "surface": 5360000, - "canton": null, - "numero_insee": "33254" - } - }, - { - "pk": 17057, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LUCMAU", - "center": "POINT (386179.0196323926793411 1925035.1843293169513345)", - "surface": 67200000, - "canton": null, - "numero_insee": "33255" - } - }, - { - "pk": 27265, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LUDON-MEDOC", - "center": "POINT (369028.7240292683127336 2001973.9328931395430118)", - "surface": 18650000, - "canton": null, - "numero_insee": "33256" - } - }, - { - "pk": 11511, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LUGAIGNAC", - "center": "POINT (399721.6564531936892308 1982306.4319276360329241)", - "surface": 3780000, - "canton": null, - "numero_insee": "33257" - } - }, - { - "pk": 32322, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LUGASSON", - "center": "POINT (402577.1661892259726301 1975923.4169795769266784)", - "surface": 6430000, - "canton": null, - "numero_insee": "33258" - } - }, - { - "pk": 13299, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LUGON-ET-L'ILE-DU-CARNAY", - "center": "POINT (387578.2860016491031274 1998222.6391943255439401)", - "surface": 10750000, - "canton": null, - "numero_insee": "33259" - } - }, - { - "pk": 20618, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LUGOS", - "center": "POINT (341057.6259510157397017 1946187.0371985917445272)", - "surface": 62310000, - "canton": null, - "numero_insee": "33260" - } - }, - { - "pk": 17490, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LUSSAC", - "center": "POINT (408191.9362631005351432 1999093.2800430015195161)", - "surface": 23240000, - "canton": null, - "numero_insee": "33261" - } - }, - { - "pk": 16333, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MACAU", - "center": "POINT (367404.1772083657560870 2004763.3995579143520445)", - "surface": 20600000, - "canton": null, - "numero_insee": "33262" - } - }, - { - "pk": 24858, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MADIRAC", - "center": "POINT (383451.4109431590186432 1976666.7326491225976497)", - "surface": 1930000, - "canton": null, - "numero_insee": "33263" - } - }, - { - "pk": 14442, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARCILLAC", - "center": "POINT (377470.8990216323290952 2034375.5734959160909057)", - "surface": 32260000, - "canton": null, - "numero_insee": "33267" - } - }, - { - "pk": 25052, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARGAUX", - "center": "POINT (362959.7392164139309898 2009631.7964734646957368)", - "surface": 7310000, - "canton": null, - "numero_insee": "33268" - } - }, - { - "pk": 3440, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARGUERON", - "center": "POINT (435209.2625008027534932 1976092.8501298164483160)", - "surface": 13620000, - "canton": null, - "numero_insee": "33269" - } - }, - { - "pk": 28051, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARIMBAULT", - "center": "POINT (393182.1504786268342286 1937706.2543492785189301)", - "surface": 6800000, - "canton": null, - "numero_insee": "33270" - } - }, - { - "pk": 19087, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARIONS", - "center": "POINT (406433.1868013355415314 1933210.6663262585643679)", - "surface": 16310000, - "canton": null, - "numero_insee": "33271" - } - }, - { - "pk": 33465, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARSAS", - "center": "POINT (386275.7682035317411646 2010524.2989925788715482)", - "surface": 8030000, - "canton": null, - "numero_insee": "33272" - } - }, - { - "pk": 30858, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARTIGNAS-SUR-JALLE", - "center": "POINT (352329.5925552410772070 1987622.3198228066321462)", - "surface": 26440000, - "canton": null, - "numero_insee": "33273" - } - }, - { - "pk": 25591, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARTILLAC", - "center": "POINT (370572.7775089279748499 1972456.5352507745847106)", - "surface": 17110000, - "canton": null, - "numero_insee": "33274" - } - }, - { - "pk": 25230, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARTRES", - "center": "POINT (401420.5909115147078410 1970508.3169446520041674)", - "surface": 3030000, - "canton": null, - "numero_insee": "33275" - } - }, - { - "pk": 14202, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MASSEILLES", - "center": "POINT (409010.1523718613898382 1936335.2131501715630293)", - "surface": 6780000, - "canton": null, - "numero_insee": "33276" - } - }, - { - "pk": 15613, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MASSUGAS", - "center": "POINT (422890.8518404642236419 1976791.8311678238678724)", - "surface": 14410000, - "canton": null, - "numero_insee": "33277" - } - }, - { - "pk": 24873, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MAURIAC", - "center": "POINT (412900.2708688923739828 1974406.9538668543100357)", - "surface": 9970000, - "canton": null, - "numero_insee": "33278" - } - }, - { - "pk": 24829, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MAZERES", - "center": "POINT (394197.4316532977973111 1948125.5673889855388552)", - "surface": 13150000, - "canton": null, - "numero_insee": "33279" - } - }, - { - "pk": 24487, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MAZION", - "center": "POINT (368655.7193591079558246 2022991.8955289770383388)", - "surface": 3670000, - "canton": null, - "numero_insee": "33280" - } - }, - { - "pk": 20298, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MERIGNAC", - "center": "POINT (361253.6975546706235036 1985793.6790164266712964)", - "surface": 47840000, - "canton": null, - "numero_insee": "33281" - } - }, - { - "pk": 25415, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MERIGNAS", - "center": "POINT (408257.8565322174690664 1978973.3617350393906236)", - "surface": 9540000, - "canton": null, - "numero_insee": "33282" - } - }, - { - "pk": 25220, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MESTERRIEUX", - "center": "POINT (413594.2305933176539838 1963101.0105725638568401)", - "surface": 3540000, - "canton": null, - "numero_insee": "33283" - } - }, - { - "pk": 17997, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MIOS", - "center": "POINT (343325.2986910432809964 1962622.7805150854401290)", - "surface": 137210000, - "canton": null, - "numero_insee": "33284" - } - }, - { - "pk": 36751, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MOMBRIER", - "center": "POINT (372844.3066762798698619 2012716.0655881897546351)", - "surface": 4300000, - "canton": null, - "numero_insee": "33285" - } - }, - { - "pk": 27750, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MONGAUZY", - "center": "POINT (416364.6306212634081021 1954915.3575439420528710)", - "surface": 6860000, - "canton": null, - "numero_insee": "33287" - } - }, - { - "pk": 27870, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MONPRIMBLANC", - "center": "POINT (394181.2022658097557724 1962240.1448660378810018)", - "surface": 4970000, - "canton": null, - "numero_insee": "33288" - } - }, - { - "pk": 4199, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MONSEGUR", - "center": "POINT (421602.8075576323317364 1963067.0511420886032283)", - "surface": 9910000, - "canton": null, - "numero_insee": "33289" - } - }, - { - "pk": 19515, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MONTAGNE", - "center": "POINT (405419.8488076289067976 1995366.6650202735327184)", - "surface": 26640000, - "canton": null, - "numero_insee": "33290" - } - }, - { - "pk": 22691, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MONTIGNAC", - "center": "POINT (397510.2302126865833998 1971276.8990067052654922)", - "surface": 6500000, - "canton": null, - "numero_insee": "33292" - } - }, - { - "pk": 25050, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MONTUSSAN", - "center": "POINT (381433.4058804763481021 1990764.5360560852568597)", - "surface": 8420000, - "canton": null, - "numero_insee": "33293" - } - }, - { - "pk": 24831, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MORIZES", - "center": "POINT (406613.0507268709479831 1959940.1711741739418358)", - "surface": 5900000, - "canton": null, - "numero_insee": "33294" - } - }, - { - "pk": 12728, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MOUILLAC", - "center": "POINT (388229.4810755621874705 2004234.0587474710773677)", - "surface": 1810000, - "canton": null, - "numero_insee": "33295" - } - }, - { - "pk": 27478, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MOULIETS-ET-VILLEMARTIN", - "center": "POINT (413420.6898673057439737 1984121.1944721951149404)", - "surface": 15780000, - "canton": null, - "numero_insee": "33296" - } - }, - { - "pk": 22286, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MOULIS-EN-MEDOC", - "center": "POINT (354042.3663414616603404 2010659.6517506365198642)", - "surface": 20770000, - "canton": null, - "numero_insee": "33297" - } - }, - { - "pk": 14597, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MOULON", - "center": "POINT (397778.5823736980091780 1987295.5185592703055590)", - "surface": 13340000, - "canton": null, - "numero_insee": "33298" - } - }, - { - "pk": 8822, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MOURENS", - "center": "POINT (397673.0439973841421306 1963670.3813588051125407)", - "surface": 10720000, - "canton": null, - "numero_insee": "33299" - } - }, - { - "pk": 30891, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "NAUJAC-SUR-MER", - "center": "POINT (333725.8601747546927072 2034616.9646654948592186)", - "surface": 98180000, - "canton": null, - "numero_insee": "33300" - } - }, - { - "pk": 29601, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "NAUJAN-ET-POSTIAC", - "center": "POINT (400445.4360448142397217 1979509.5322942258790135)", - "surface": 11110000, - "canton": null, - "numero_insee": "33301" - } - }, - { - "pk": 11518, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "NEAC", - "center": "POINT (401404.5117190326564014 1996734.9650400918908417)", - "surface": 7120000, - "canton": null, - "numero_insee": "33302" - } - }, - { - "pk": 8578, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "NERIGEAN", - "center": "POINT (392585.1813804073608480 1985851.2862915499135852)", - "surface": 10290000, - "canton": null, - "numero_insee": "33303" - } - }, - { - "pk": 8570, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "NEUFFONS", - "center": "POINT (415393.4948657962959260 1963416.1779904076829553)", - "surface": 4700000, - "canton": null, - "numero_insee": "33304" - } - }, - { - "pk": 26812, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE NIZAN", - "center": "POINT (391525.3033309103921056 1944399.6605953073594719)", - "surface": 15200000, - "canton": null, - "numero_insee": "33305" - } - }, - { - "pk": 9695, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "NOAILLAC", - "center": "POINT (412209.2906609089113772 1948974.8792393610347062)", - "surface": 8000000, - "canton": null, - "numero_insee": "33306" - } - }, - { - "pk": 27051, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "OMET", - "center": "POINT (391855.8760668130125850 1965023.8857845882885158)", - "surface": 2640000, - "canton": null, - "numero_insee": "33308" - } - }, - { - "pk": 32752, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ORDONNAC", - "center": "POINT (350606.0527244124095887 2039059.6317872942890972)", - "surface": 10100000, - "canton": null, - "numero_insee": "33309" - } - }, - { - "pk": 6908, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ORIGNE", - "center": "POINT (373469.7147745521506295 1948855.8256584336049855)", - "surface": 22240000, - "canton": null, - "numero_insee": "33310" - } - }, - { - "pk": 6751, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PAILLET", - "center": "POINT (385920.4861921533592977 1968578.7162745930254459)", - "surface": 2430000, - "canton": null, - "numero_insee": "33311" - } - }, - { - "pk": 33456, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PAREMPUYRE", - "center": "POINT (369753.2515842034481466 1999076.9604922409635037)", - "surface": 21800000, - "canton": null, - "numero_insee": "33312" - } - }, - { - "pk": 12345, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PAUILLAC", - "center": "POINT (356812.7327642667805776 2026798.4536226612981409)", - "surface": 31300000, - "canton": null, - "numero_insee": "33314" - } - }, - { - "pk": 20049, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LES PEINTURES", - "center": "POINT (409001.9287714840029366 2010111.0346084064804018)", - "surface": 13110000, - "canton": null, - "numero_insee": "33315" - } - }, - { - "pk": 16275, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PELLEGRUE", - "center": "POINT (422319.2228443333879113 1973283.5094791827723384)", - "surface": 38060000, - "canton": null, - "numero_insee": "33316" - } - }, - { - "pk": 10349, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PERISSAC", - "center": "POINT (390816.2553843284840696 2006157.2789809259120375)", - "surface": 12180000, - "canton": null, - "numero_insee": "33317" - } - }, - { - "pk": 22786, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PESSAC", - "center": "POINT (361490.9007536523276940 1981291.0242509378585964)", - "surface": 38640000, - "canton": null, - "numero_insee": "33318" - } - }, - { - "pk": 9321, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PESSAC-SUR-DORDOGNE", - "center": "POINT (422445.8087789123528637 1982193.6881768514867872)", - "surface": 7710000, - "canton": null, - "numero_insee": "33319" - } - }, - { - "pk": 34621, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PETIT-PALAIS-ET-CORNEMPS", - "center": "POINT (411181.5450937220593914 2000719.5675115785561502)", - "surface": 14250000, - "canton": null, - "numero_insee": "33320" - } - }, - { - "pk": 9835, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PEUJARD", - "center": "POINT (381883.1905950945802033 2009086.7299137201625854)", - "surface": 11000000, - "canton": null, - "numero_insee": "33321" - } - }, - { - "pk": 24650, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE PIAN-MEDOC", - "center": "POINT (362642.4379541358212009 1999519.0140133346430957)", - "surface": 30140000, - "canton": null, - "numero_insee": "33322" - } - }, - { - "pk": 7317, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE PIAN-SUR-GARONNE", - "center": "POINT (397029.3048807329032570 1956757.9011214147321880)", - "surface": 6360000, - "canton": null, - "numero_insee": "33323" - } - }, - { - "pk": 21722, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PINEUILH", - "center": "POINT (433554.7458918328629807 1982485.7240779204294086)", - "surface": 17220000, - "canton": null, - "numero_insee": "33324" - } - }, - { - "pk": 36983, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PLASSAC", - "center": "POINT (364815.4495338619453833 2015252.6554927455727011)", - "surface": 15010000, - "canton": null, - "numero_insee": "33325" - } - }, - { - "pk": 13150, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PLEINE-SELVE", - "center": "POINT (371114.0929638492525555 2040529.3805648845154792)", - "surface": 4270000, - "canton": null, - "numero_insee": "33326" - } - }, - { - "pk": 9837, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PODENSAC", - "center": "POINT (386056.8552852192660794 1964175.2842955135274678)", - "surface": 8300000, - "canton": null, - "numero_insee": "33327" - } - }, - { - "pk": 6291, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "POMEROL", - "center": "POINT (399312.4316738155903295 1995516.4990635355934501)", - "surface": 6270000, - "canton": null, - "numero_insee": "33328" - } - }, - { - "pk": 10224, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "POMPIGNAC", - "center": "POINT (381059.3918679141206667 1987558.1982230935245752)", - "surface": 11620000, - "canton": null, - "numero_insee": "33330" - } - }, - { - "pk": 7813, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PONDAURAT", - "center": "POINT (407790.1125528352567926 1950740.2884272416122258)", - "surface": 8710000, - "canton": null, - "numero_insee": "33331" - } - }, - { - "pk": 14483, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PORCHERES", - "center": "POINT (415936.4732340516056865 2006764.8625389377120882)", - "surface": 13360000, - "canton": null, - "numero_insee": "33332" - } - }, - { - "pk": 34626, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE PORGE", - "center": "POINT (325072.5088094719685614 1991202.6827298910357058)", - "surface": 149380000, - "canton": null, - "numero_insee": "33333" - } - }, - { - "pk": 28288, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PORTETS", - "center": "POINT (380817.2085628156783059 1968336.4903482105582952)", - "surface": 15380000, - "canton": null, - "numero_insee": "33334" - } - }, - { - "pk": 34412, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE POUT", - "center": "POINT (386712.5344618422677740 1981798.8184568271972239)", - "surface": 3860000, - "canton": null, - "numero_insee": "33335" - } - }, - { - "pk": 4714, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PRECHAC", - "center": "POINT (384391.5882526424247772 1935431.5065720509737730)", - "surface": 63980000, - "canton": null, - "numero_insee": "33336" - } - }, - { - "pk": 36278, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PREIGNAC", - "center": "POINT (389631.1670920453616418 1955595.7829119979869574)", - "surface": 13120000, - "canton": null, - "numero_insee": "33337" - } - }, - { - "pk": 36135, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PRIGNAC-EN-MEDOC", - "center": "POINT (345689.2541100706439465 2040520.7593579934909940)", - "surface": 7520000, - "canton": null, - "numero_insee": "33338" - } - }, - { - "pk": 32988, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PRIGNAC-ET-MARCAMPS", - "center": "POINT (376797.3591741812415421 2006742.5645970357581973)", - "surface": 10370000, - "canton": null, - "numero_insee": "33339" - } - }, - { - "pk": 19456, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PUGNAC", - "center": "POINT (376744.6525176082504913 2013148.5508538295980543)", - "surface": 13580000, - "canton": null, - "numero_insee": "33341" - } - }, - { - "pk": 15168, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PUISSEGUIN", - "center": "POINT (410425.4005935757304542 1995307.8657522597350180)", - "surface": 17380000, - "canton": null, - "numero_insee": "33342" - } - }, - { - "pk": 6097, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PUJOLS-SUR-CIRON", - "center": "POINT (386226.2024415116757154 1955767.9432389659341425)", - "surface": 7590000, - "canton": null, - "numero_insee": "33343" - } - }, - { - "pk": 26215, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PUJOLS", - "center": "POINT (412443.6985715041519143 1981210.1634147199802101)", - "surface": 7400000, - "canton": null, - "numero_insee": "33344" - } - }, - { - "pk": 20237, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE PUY", - "center": "POINT (419387.4468084232066758 1964650.4077215020079166)", - "surface": 8530000, - "canton": null, - "numero_insee": "33345" - } - }, - { - "pk": 32224, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PUYBARBAN", - "center": "POINT (408676.1232157422928140 1952549.4825226622633636)", - "surface": 5570000, - "canton": null, - "numero_insee": "33346" - } - }, - { - "pk": 23155, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "PUYNORMAND", - "center": "POINT (415487.2442954158177599 2000554.9098092082422227)", - "surface": 7700000, - "canton": null, - "numero_insee": "33347" - } - }, - { - "pk": 24119, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "QUEYRAC", - "center": "POINT (338540.9169735134346411 2045567.1309394014533609)", - "surface": 30800000, - "canton": null, - "numero_insee": "33348" - } - }, - { - "pk": 27854, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "QUINSAC", - "center": "POINT (376047.6017366747837514 1976205.3817000561393797)", - "surface": 8080000, - "canton": null, - "numero_insee": "33349" - } - }, - { - "pk": 16266, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LA REOLE", - "center": "POINT (410944.4934439490316436 1956672.4830858423374593)", - "surface": 12580000, - "canton": null, - "numero_insee": "33352" - } - }, - { - "pk": 8423, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "RIMONS", - "center": "POINT (415769.0849537565954961 1966422.3867683450225741)", - "surface": 14320000, - "canton": null, - "numero_insee": "33353" - } - }, - { - "pk": 17765, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "RIOCAUD", - "center": "POINT (430918.3826383598498069 1974455.7185810734517872)", - "surface": 10270000, - "canton": null, - "numero_insee": "33354" - } - }, - { - "pk": 21595, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "RIONS", - "center": "POINT (387938.9077469672774896 1966593.2721701825503260)", - "surface": 10790000, - "canton": null, - "numero_insee": "33355" - } - }, - { - "pk": 12594, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LA RIVIERE", - "center": "POINT (390495.8653742504538968 1996444.8498100326396525)", - "surface": 3110000, - "canton": null, - "numero_insee": "33356" - } - }, - { - "pk": 34841, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ROAILLAN", - "center": "POINT (391392.2115263152518310 1948402.7634131696540862)", - "surface": 11470000, - "canton": null, - "numero_insee": "33357" - } - }, - { - "pk": 5885, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ROMAGNE", - "center": "POINT (398765.2660729524213821 1976893.0102578117512167)", - "surface": 5190000, - "canton": null, - "numero_insee": "33358" - } - }, - { - "pk": 26185, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "ROQUEBRUNE", - "center": "POINT (416114.0115183776943013 1961019.6372834276407957)", - "surface": 6640000, - "canton": null, - "numero_insee": "33359" - } - }, - { - "pk": 30430, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LA ROQUILLE", - "center": "POINT (433289.2285124427871779 1978279.2272209734655917)", - "surface": 6560000, - "canton": null, - "numero_insee": "33360" - } - }, - { - "pk": 35574, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SABLONS", - "center": "POINT (401330.2257627919898368 2005743.4342016144655645)", - "surface": 11810000, - "canton": null, - "numero_insee": "33362" - } - }, - { - "pk": 17982, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SADIRAC", - "center": "POINT (384129.0052948863012716 1979475.1864138895180076)", - "surface": 18990000, - "canton": null, - "numero_insee": "33363" - } - }, - { - "pk": 11653, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAILLANS", - "center": "POINT (394182.8636912474757992 1998477.2534527678508312)", - "surface": 6200000, - "canton": null, - "numero_insee": "33364" - } - }, - { - "pk": 11470, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-AIGNAN", - "center": "POINT (392088.3052089025732130 1997559.0833821871783584)", - "surface": 2740000, - "canton": null, - "numero_insee": "33365" - } - }, - { - "pk": 30672, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ANDRE-DE-CUBZAC", - "center": "POINT (381330.4148359436076134 2003276.3460983310360461)", - "surface": 23200000, - "canton": null, - "numero_insee": "33366" - } - }, - { - "pk": 7666, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ANDRE-DU-BOIS", - "center": "POINT (399510.2796066597802565 1959381.0638102756347507)", - "surface": 9990000, - "canton": null, - "numero_insee": "33367" - } - }, - { - "pk": 6526, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ANDRE-ET-APPELLES", - "center": "POINT (430762.8339469612110406 1981161.3064059303142130)", - "surface": 10200000, - "canton": null, - "numero_insee": "33369" - } - }, - { - "pk": 33044, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ANDRONY", - "center": "POINT (362417.9036067617707886 2026844.4970171800814569)", - "surface": 36400000, - "canton": null, - "numero_insee": "33370" - } - }, - { - "pk": 11932, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ANTOINE", - "center": "POINT (382312.4035657758358866 2005586.7458090686704963)", - "surface": 200000, - "canton": null, - "numero_insee": "33371" - } - }, - { - "pk": 6410, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ANTOINE-DU-QUEYRET", - "center": "POINT (415587.9865989271784201 1976230.9953240421600640)", - "surface": 6910000, - "canton": null, - "numero_insee": "33372" - } - }, - { - "pk": 30635, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ANTOINE-SUR-L'ISLE", - "center": "POINT (419432.3100258262129501 2007694.6358247390016913)", - "surface": 10430000, - "canton": null, - "numero_insee": "33373" - } - }, - { - "pk": 37449, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-AUBIN-DE-BLAYE", - "center": "POINT (371577.0104822749271989 2032925.7144119560252875)", - "surface": 11580000, - "canton": null, - "numero_insee": "33374" - } - }, - { - "pk": 10476, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-AUBIN-DE-BRANNE", - "center": "POINT (401726.0430304004694335 1982022.6536040231585503)", - "surface": 5510000, - "canton": null, - "numero_insee": "33375" - } - }, - { - "pk": 37462, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-AUBIN-DE-MEDOC", - "center": "POINT (356354.5779886881355196 1997265.1311790458858013)", - "surface": 34740000, - "canton": null, - "numero_insee": "33376" - } - }, - { - "pk": 4176, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-AVIT-DE-SOULEGE", - "center": "POINT (424554.4305755060631782 1981410.2934684907086194)", - "surface": 2820000, - "canton": null, - "numero_insee": "33377" - } - }, - { - "pk": 35137, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-AVIT-SAINT-NAZAIRE", - "center": "POINT (436936.4588026290293783 1985116.3526505401823670)", - "surface": 18720000, - "canton": null, - "numero_insee": "33378" - } - }, - { - "pk": 8054, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-BRICE", - "center": "POINT (403435.7288043536245823 1968923.2855050147045404)", - "surface": 5700000, - "canton": null, - "numero_insee": "33379" - } - }, - { - "pk": 34627, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CAPRAIS-DE-BLAYE", - "center": "POINT (372151.2219056725734845 2036133.5879723273683339)", - "surface": 5090000, - "canton": null, - "numero_insee": "33380" - } - }, - { - "pk": 35576, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CAPRAIS-DE-BORDEAUX", - "center": "POINT (381051.5792249039513990 1976346.6671661236323416)", - "surface": 10150000, - "canton": null, - "numero_insee": "33381" - } - }, - { - "pk": 22139, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CHRISTOLY-DE-BLAYE", - "center": "POINT (377089.8481974707683548 2019858.0790890657808632)", - "surface": 28130000, - "canton": null, - "numero_insee": "33382" - } - }, - { - "pk": 6638, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CHRISTOLY-MEDOC", - "center": "POINT (351561.7821477639372461 2044572.8656830764375627)", - "surface": 7600000, - "canton": null, - "numero_insee": "33383" - } - }, - { - "pk": 14327, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CHRISTOPHE-DES-BARDES", - "center": "POINT (405852.4313748114509508 1991466.2758669885806739)", - "surface": 7730000, - "canton": null, - "numero_insee": "33384" - } - }, - { - "pk": 34016, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CHRISTOPHE-DE-DOUBLE", - "center": "POINT (417796.0958776957704686 2011885.3326744469814003)", - "surface": 36120000, - "canton": null, - "numero_insee": "33385" - } - }, - { - "pk": 27286, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CIBARD", - "center": "POINT (413624.2931586938211694 1995834.7768916487693787)", - "surface": 3530000, - "canton": null, - "numero_insee": "33386" - } - }, - { - "pk": 4643, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CIERS-D'ABZAC", - "center": "POINT (393009.2458072427543812 2007276.4528936543501914)", - "surface": 11730000, - "canton": null, - "numero_insee": "33387" - } - }, - { - "pk": 23945, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CIERS-DE-CANESSE", - "center": "POINT (368530.4176613120944239 2013881.7929506935179234)", - "surface": 6890000, - "canton": null, - "numero_insee": "33388" - } - }, - { - "pk": 16218, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-CIERS-SUR-GIRONDE", - "center": "POINT (365833.9336796529241838 2037483.0291503856424242)", - "surface": 38080000, - "canton": null, - "numero_insee": "33389" - } - }, - { - "pk": 26395, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-COLOMBE", - "center": "POINT (410274.7767829241929576 1989300.5292918626219034)", - "surface": 4040000, - "canton": null, - "numero_insee": "33390" - } - }, - { - "pk": 36036, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-COME", - "center": "POINT (399877.2140161510324106 1939162.9280463177710772)", - "surface": 6020000, - "canton": null, - "numero_insee": "33391" - } - }, - { - "pk": 34584, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-CROIX-DU-MONT", - "center": "POINT (392709.4429603182361461 1958624.2733261971734464)", - "surface": 9020000, - "canton": null, - "numero_insee": "33392" - } - }, - { - "pk": 14387, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-EMILION", - "center": "POINT (401944.6060873183887452 1991934.5507978829555213)", - "surface": 27010000, - "canton": null, - "numero_insee": "33394" - } - }, - { - "pk": 27260, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ESTEPHE", - "center": "POINT (355262.8571861912496388 2032691.5606390419416130)", - "surface": 23580000, - "canton": null, - "numero_insee": "33395" - } - }, - { - "pk": 27067, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ETIENNE-DE-LISSE", - "center": "POINT (407870.0199144800426438 1989580.9899539828766137)", - "surface": 7110000, - "canton": null, - "numero_insee": "33396" - } - }, - { - "pk": 9318, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-EULALIE", - "center": "POINT (377511.5823265522485599 1992934.4948441362939775)", - "surface": 9250000, - "canton": null, - "numero_insee": "33397" - } - }, - { - "pk": 31017, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-EXUPERY", - "center": "POINT (406494.7836863272823393 1962141.4806816475465894)", - "surface": 4240000, - "canton": null, - "numero_insee": "33398" - } - }, - { - "pk": 30639, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-FELIX-DE-FONCAUDE", - "center": "POINT (406177.1493803790071979 1964241.0380540783517063)", - "surface": 10300000, - "canton": null, - "numero_insee": "33399" - } - }, - { - "pk": 14499, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-FERME", - "center": "POINT (419554.5661862052511424 1968655.9258635761216283)", - "surface": 20100000, - "canton": null, - "numero_insee": "33400" - } - }, - { - "pk": 34884, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-FLORENCE", - "center": "POINT (407727.6441814097343013 1982572.6735701307188720)", - "surface": 3220000, - "canton": null, - "numero_insee": "33401" - } - }, - { - "pk": 5870, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-FOY-LA-GRANDE", - "center": "POINT (432337.0460705467266962 1984477.6970656623598188)", - "surface": 580000, - "canton": null, - "numero_insee": "33402" - } - }, - { - "pk": 28733, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-FOY-LA-LONGUE", - "center": "POINT (403107.1735272692749277 1960211.5600813271012157)", - "surface": 9380000, - "canton": null, - "numero_insee": "33403" - } - }, - { - "pk": 3623, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-GEMME", - "center": "POINT (420226.2588440915569663 1960052.5640909329522401)", - "surface": 9550000, - "canton": null, - "numero_insee": "33404" - } - }, - { - "pk": 12866, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GENES-DE-BLAYE", - "center": "POINT (363656.0244814569596201 2022350.2044650476891547)", - "surface": 11750000, - "canton": null, - "numero_insee": "33405" - } - }, - { - "pk": 30057, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GENES-DE-CASTILLON", - "center": "POINT (410255.7766290678409860 1991602.7114314490463585)", - "surface": 6810000, - "canton": null, - "numero_insee": "33406" - } - }, - { - "pk": 13690, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GENES-DE-FRONSAC", - "center": "POINT (388511.6253458596765995 2006438.5964672598056495)", - "surface": 6850000, - "canton": null, - "numero_insee": "33407" - } - }, - { - "pk": 7081, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GENES-DE-LOMBAUD", - "center": "POINT (384856.0516446017427370 1976277.8875111704692245)", - "surface": 6100000, - "canton": null, - "numero_insee": "33408" - } - }, - { - "pk": 8289, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GENIS-DU-BOIS", - "center": "POINT (400125.9412056911969557 1969696.8147547780536115)", - "surface": 2320000, - "canton": null, - "numero_insee": "33409" - } - }, - { - "pk": 36768, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GERMAIN-DE-GRAVE", - "center": "POINT (397092.2675182985840365 1961263.1023012308869511)", - "surface": 6150000, - "canton": null, - "numero_insee": "33411" - } - }, - { - "pk": 21210, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GERMAIN-D'ESTEUIL", - "center": "POINT (346248.0136511970194988 2033418.3591818395070732)", - "surface": 44750000, - "canton": null, - "numero_insee": "33412" - } - }, - { - "pk": 11375, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GERMAIN-DU-PUCH", - "center": "POINT (388771.6667032586992718 1987021.0922789899632335)", - "surface": 12140000, - "canton": null, - "numero_insee": "33413" - } - }, - { - "pk": 32100, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GERMAIN-DE-LA-RIVIERE", - "center": "POINT (389388.2297652026172727 1997236.5353187136352062)", - "surface": 3920000, - "canton": null, - "numero_insee": "33414" - } - }, - { - "pk": 19787, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GERVAIS", - "center": "POINT (379008.4829639523522928 2005659.6527405309025198)", - "surface": 5630000, - "canton": null, - "numero_insee": "33415" - } - }, - { - "pk": 31445, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-GIRONS-D'AIGUEVIVES", - "center": "POINT (373882.7621391041902825 2020332.1938581715803593)", - "surface": 11820000, - "canton": null, - "numero_insee": "33416" - } - }, - { - "pk": 27869, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-HELENE", - "center": "POINT (343501.4169174358248711 2002164.6881827120669186)", - "surface": 128770000, - "canton": null, - "numero_insee": "33417" - } - }, - { - "pk": 37000, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-HILAIRE-DE-LA-NOAILLE", - "center": "POINT (414833.4131016713217832 1958506.4635607434902340)", - "surface": 11400000, - "canton": null, - "numero_insee": "33418" - } - }, - { - "pk": 32553, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-HILAIRE-DU-BOIS", - "center": "POINT (408672.1354477492859587 1965162.5582125354558229)", - "surface": 4490000, - "canton": null, - "numero_insee": "33419" - } - }, - { - "pk": 9984, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-HIPPOLYTE", - "center": "POINT (405672.8855716467369348 1988962.2516714523080736)", - "surface": 4400000, - "canton": null, - "numero_insee": "33420" - } - }, - { - "pk": 10485, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-JEAN-DE-BLAIGNAC", - "center": "POINT (404531.1946539857308380 1981745.4835487024392933)", - "surface": 5780000, - "canton": null, - "numero_insee": "33421" - } - }, - { - "pk": 30599, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-JEAN-D'ILLAC", - "center": "POINT (350174.3306885630590841 1981898.7982882750220597)", - "surface": 120610000, - "canton": null, - "numero_insee": "33422" - } - }, - { - "pk": 6746, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-JULIEN-BEYCHEVELLE", - "center": "POINT (358252.6647181033622473 2022105.6138247381895781)", - "surface": 25300000, - "canton": null, - "numero_insee": "33423" - } - }, - { - "pk": 18190, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LAURENT-MEDOC", - "center": "POINT (348354.9853463713661768 2020622.9614990418776870)", - "surface": 136060000, - "canton": null, - "numero_insee": "33424" - } - }, - { - "pk": 6177, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LAURENT-D'ARCE", - "center": "POINT (379084.6888044424122199 2008563.1948729460127652)", - "surface": 8080000, - "canton": null, - "numero_insee": "33425" - } - }, - { - "pk": 29587, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LAURENT-DES-COMBES", - "center": "POINT (404372.4762311020167544 1988851.4224411996547133)", - "surface": 3870000, - "canton": null, - "numero_insee": "33426" - } - }, - { - "pk": 8177, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LAURENT-DU-BOIS", - "center": "POINT (403584.5399302247096784 1963018.4053188429679722)", - "surface": 7370000, - "canton": null, - "numero_insee": "33427" - } - }, - { - "pk": 12063, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LAURENT-DU-PLAN", - "center": "POINT (405200.1293515747529455 1961329.9684582427144051)", - "surface": 2380000, - "canton": null, - "numero_insee": "33428" - } - }, - { - "pk": 19480, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LEGER-DE-BALSON", - "center": "POINT (378644.7471883287071250 1940389.4732434821780771)", - "surface": 37870000, - "canton": null, - "numero_insee": "33429" - } - }, - { - "pk": 3818, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LEON", - "center": "POINT (393055.6740750356111676 1977346.4607445960864425)", - "surface": 4430000, - "canton": null, - "numero_insee": "33431" - } - }, - { - "pk": 6391, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LOUBERT", - "center": "POINT (400760.9756291308440268 1953385.1235166313126683)", - "surface": 2110000, - "canton": null, - "numero_insee": "33432" - } - }, - { - "pk": 22564, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-LOUIS-DE-MONTFERRAND", - "center": "POINT (373454.2728228697087616 1999407.7017423734068871)", - "surface": 11520000, - "canton": null, - "numero_insee": "33434" - } - }, - { - "pk": 6840, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MACAIRE", - "center": "POINT (395745.3661994982976466 1954645.1265637998003513)", - "surface": 2130000, - "canton": null, - "numero_insee": "33435" - } - }, - { - "pk": 3255, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MAGNE", - "center": "POINT (361908.2528569179121405 1954867.1425428865477443)", - "surface": 82880000, - "canton": null, - "numero_insee": "33436" - } - }, - { - "pk": 36999, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MAGNE-DE-CASTILLON", - "center": "POINT (409394.5730302788433619 1986790.7182830665260553)", - "surface": 13970000, - "canton": null, - "numero_insee": "33437" - } - }, - { - "pk": 7189, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MAIXANT", - "center": "POINT (394731.1896525236079469 1956238.4358657947741449)", - "surface": 7530000, - "canton": null, - "numero_insee": "33438" - } - }, - { - "pk": 9441, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARIENS", - "center": "POINT (384219.5093716998817399 2017113.9681975473649800)", - "surface": 12020000, - "canton": null, - "numero_insee": "33439" - } - }, - { - "pk": 23765, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARTIAL", - "center": "POINT (400388.0417248787707649 1962191.2115006179083139)", - "surface": 7390000, - "canton": null, - "numero_insee": "33440" - } - }, - { - "pk": 6872, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARTIN-LACAUSSADE", - "center": "POINT (365575.8835330998990685 2020163.7936157402582467)", - "surface": 3970000, - "canton": null, - "numero_insee": "33441" - } - }, - { - "pk": 27641, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARTIN-DE-LAYE", - "center": "POINT (397516.7612662721658126 2006913.1998708124738187)", - "surface": 9470000, - "canton": null, - "numero_insee": "33442" - } - }, - { - "pk": 36289, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARTIN-DE-LERM", - "center": "POINT (410986.7539973239763640 1963680.1073634559288621)", - "surface": 7030000, - "canton": null, - "numero_insee": "33443" - } - }, - { - "pk": 30485, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARTIN-DE-SESCAS", - "center": "POINT (401130.8217162145883776 1957092.0334326166193932)", - "surface": 8220000, - "canton": null, - "numero_insee": "33444" - } - }, - { - "pk": 15647, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARTIN-DU-BOIS", - "center": "POINT (395326.2490793882752769 2005493.7370378025807440)", - "surface": 9780000, - "canton": null, - "numero_insee": "33445" - } - }, - { - "pk": 14332, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MARTIN-DU-PUY", - "center": "POINT (411765.2192019227659330 1966389.3297608536668122)", - "surface": 9130000, - "canton": null, - "numero_insee": "33446" - } - }, - { - "pk": 18752, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MEDARD-DE-GUIZIERES", - "center": "POINT (410254.2642571026226506 2003915.1404584201518446)", - "surface": 10210000, - "canton": null, - "numero_insee": "33447" - } - }, - { - "pk": 8079, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MEDARD-D'EYRANS", - "center": "POINT (374381.3789279158227146 1971887.2445702857803553)", - "surface": 12750000, - "canton": null, - "numero_insee": "33448" - } - }, - { - "pk": 29430, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MEDARD-EN-JALLES", - "center": "POINT (353296.0267220828682184 1991834.5333231720142066)", - "surface": 84910000, - "canton": null, - "numero_insee": "33449" - } - }, - { - "pk": 20274, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MICHEL-DE-CASTELNAU", - "center": "POINT (406409.9050509406952187 1923900.5907512675039470)", - "surface": 42810000, - "canton": null, - "numero_insee": "33450" - } - }, - { - "pk": 9834, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MICHEL-DE-FRONSAC", - "center": "POINT (391507.5311506980215199 1995151.8672696249559522)", - "surface": 5490000, - "canton": null, - "numero_insee": "33451" - } - }, - { - "pk": 4332, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MICHEL-DE-RIEUFRET", - "center": "POINT (379367.6641754109878093 1962018.0301020615734160)", - "surface": 18920000, - "canton": null, - "numero_insee": "33452" - } - }, - { - "pk": 26184, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MICHEL-DE-LAPUJADE", - "center": "POINT (420554.6663908429909497 1956651.7393591979052871)", - "surface": 7440000, - "canton": null, - "numero_insee": "33453" - } - }, - { - "pk": 5764, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-MORILLON", - "center": "POINT (373243.6260177119402215 1964169.9206024266313761)", - "surface": 20430000, - "canton": null, - "numero_insee": "33454" - } - }, - { - "pk": 34001, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PALAIS", - "center": "POINT (369828.5418717220891267 2038616.9463785248808563)", - "surface": 9710000, - "canton": null, - "numero_insee": "33456" - } - }, - { - "pk": 32073, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PARDON-DE-CONQUES", - "center": "POINT (399160.2386512060184032 1953271.8187363650649786)", - "surface": 6690000, - "canton": null, - "numero_insee": "33457" - } - }, - { - "pk": 12624, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PAUL", - "center": "POINT (369774.0203509650309570 2020899.0018096556887031)", - "surface": 10880000, - "canton": null, - "numero_insee": "33458" - } - }, - { - "pk": 32564, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PEY-D'ARMENS", - "center": "POINT (405891.2426457780529745 1986761.8114177982788533)", - "surface": 4270000, - "canton": null, - "numero_insee": "33459" - } - }, - { - "pk": 15167, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PEY-DE-CASTETS", - "center": "POINT (410031.4919858095236123 1982391.4809777666814625)", - "surface": 11120000, - "canton": null, - "numero_insee": "33460" - } - }, - { - "pk": 6979, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PHILIPPE-D'AIGUILLE", - "center": "POINT (412343.7209725810680538 1993321.6711823104415089)", - "surface": 5920000, - "canton": null, - "numero_insee": "33461" - } - }, - { - "pk": 36532, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PHILIPPE-DU-SEIGNAL", - "center": "POINT (435256.3675914254272357 1982499.7985018056351691)", - "surface": 3380000, - "canton": null, - "numero_insee": "33462" - } - }, - { - "pk": 8406, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PIERRE-D'AURILLAC", - "center": "POINT (398934.4569944141549058 1956373.1919326249044389)", - "surface": 6560000, - "canton": null, - "numero_insee": "33463" - } - }, - { - "pk": 4578, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PIERRE-DE-BAT", - "center": "POINT (397149.4538694116054103 1966468.9655182242859155)", - "surface": 8960000, - "canton": null, - "numero_insee": "33464" - } - }, - { - "pk": 12302, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-PIERRE-DE-MONS", - "center": "POINT (397263.3345628727693111 1952655.5515851986128837)", - "surface": 9100000, - "canton": null, - "numero_insee": "33465" - } - }, - { - "pk": 24109, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-QUENTIN-DE-BARON", - "center": "POINT (392807.6419675903161988 1983150.3608678025193512)", - "surface": 8770000, - "canton": null, - "numero_insee": "33466" - } - }, - { - "pk": 19491, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-QUENTIN-DE-CAPLONG", - "center": "POINT (425871.3903823657892644 1979519.2316026235930622)", - "surface": 11190000, - "canton": null, - "numero_insee": "33467" - } - }, - { - "pk": 31684, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-RADEGONDE", - "center": "POINT (416952.9577534132404253 1980646.7803012386430055)", - "surface": 12450000, - "canton": null, - "numero_insee": "33468" - } - }, - { - "pk": 7204, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-ROMAIN-LA-VIRVEE", - "center": "POINT (383165.8928737310925499 1999187.3169653799850494)", - "surface": 7840000, - "canton": null, - "numero_insee": "33470" - } - }, - { - "pk": 28068, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SAUVEUR", - "center": "POINT (352009.9428094329778105 2026558.8217263675760478)", - "surface": 21790000, - "canton": null, - "numero_insee": "33471" - } - }, - { - "pk": 12602, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SAUVEUR-DE-PUYNORMAND", - "center": "POINT (413171.0330262648058124 2002237.5023231508675963)", - "surface": 5490000, - "canton": null, - "numero_insee": "33472" - } - }, - { - "pk": 17987, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SAVIN", - "center": "POINT (381577.5462421119445935 2021896.9996109183412045)", - "surface": 33750000, - "canton": null, - "numero_insee": "33473" - } - }, - { - "pk": 32543, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SELVE", - "center": "POINT (377036.6010932836215943 1965502.4759873594157398)", - "surface": 17800000, - "canton": null, - "numero_insee": "33474" - } - }, - { - "pk": 32987, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SEURIN-DE-BOURG", - "center": "POINT (370064.7380202556960285 2009890.4009541952982545)", - "surface": 2890000, - "canton": null, - "numero_insee": "33475" - } - }, - { - "pk": 24096, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SEURIN-DE-CADOURNE", - "center": "POINT (353825.4136700275121257 2037084.0927517695818096)", - "surface": 15590000, - "canton": null, - "numero_insee": "33476" - } - }, - { - "pk": 11516, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SEURIN-DE-CURSAC", - "center": "POINT (366863.1030347883934155 2021876.0656450116075575)", - "surface": 2360000, - "canton": null, - "numero_insee": "33477" - } - }, - { - "pk": 26004, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SEURIN-SUR-L'ISLE", - "center": "POINT (415660.9857775662094355 2003759.5704005262814462)", - "surface": 8900000, - "canton": null, - "numero_insee": "33478" - } - }, - { - "pk": 33202, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SEVE", - "center": "POINT (412426.9478720802580938 1958987.1151176134590060)", - "surface": 4810000, - "canton": null, - "numero_insee": "33479" - } - }, - { - "pk": 37228, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SULPICE-DE-FALEYRENS", - "center": "POINT (400378.5799343162216246 1987617.2610584169160575)", - "surface": 20010000, - "canton": null, - "numero_insee": "33480" - } - }, - { - "pk": 22774, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SULPICE-DE-GUILLERAGUES", - "center": "POINT (418213.5688663199543953 1961337.2888739686459303)", - "surface": 6880000, - "canton": null, - "numero_insee": "33481" - } - }, - { - "pk": 13974, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SULPICE-DE-POMMIERS", - "center": "POINT (405555.0970578466076404 1966838.5980765398126096)", - "surface": 9880000, - "canton": null, - "numero_insee": "33482" - } - }, - { - "pk": 17904, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (370740.2440633369260468 1939924.0119019236881286)", - "surface": 106240000, - "canton": null, - "numero_insee": "33484" - } - }, - { - "pk": 22567, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINTE-TERRE", - "center": "POINT (405609.9496980288531631 1984457.1433788852300495)", - "surface": 14080000, - "canton": null, - "numero_insee": "33485" - } - }, - { - "pk": 6171, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-TROJAN", - "center": "POINT (370329.6272862904006615 2014196.8863770728930831)", - "surface": 3170000, - "canton": null, - "numero_insee": "33486" - } - }, - { - "pk": 38001, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-VINCENT-DE-PAUL", - "center": "POINT (377645.8796238115755841 2000943.7020851708948612)", - "surface": 13850000, - "canton": null, - "numero_insee": "33487" - } - }, - { - "pk": 11816, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-VINCENT-DE-PERTIGNAS", - "center": "POINT (406142.6329785895650275 1980557.5486924578435719)", - "surface": 7630000, - "canton": null, - "numero_insee": "33488" - } - }, - { - "pk": 37849, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-VIVIEN-DE-BLAYE", - "center": "POINT (376024.2361305418307893 2015545.0233850437216461)", - "surface": 5740000, - "canton": null, - "numero_insee": "33489" - } - }, - { - "pk": 32159, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-VIVIEN-DE-MEDOC", - "center": "POINT (336962.4318404500954784 2054963.3467398225329816)", - "surface": 29240000, - "canton": null, - "numero_insee": "33490" - } - }, - { - "pk": 28916, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-VIVIEN-DE-MONSEGUR", - "center": "POINT (423632.8685433558421209 1959680.2952785929664969)", - "surface": 15910000, - "canton": null, - "numero_insee": "33491" - } - }, - { - "pk": 7437, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-YZAN-DE-SOUDIAC", - "center": "POINT (384291.5838824349339120 2020517.9491391757037491)", - "surface": 11180000, - "canton": null, - "numero_insee": "33492" - } - }, - { - "pk": 36969, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAINT-YZANS-DE-MEDOC", - "center": "POINT (352991.8143476032419130 2041081.1770502277649939)", - "surface": 11310000, - "canton": null, - "numero_insee": "33493" - } - }, - { - "pk": 13435, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SALAUNES", - "center": "POINT (348649.7610022072913125 1996901.5700736772269011)", - "surface": 43450000, - "canton": null, - "numero_insee": "33494" - } - }, - { - "pk": 16258, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SALIGNAC", - "center": "POINT (386414.6020520247984678 2005820.7224177708849311)", - "surface": 12960000, - "canton": null, - "numero_insee": "33495" - } - }, - { - "pk": 35098, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SALLEBOEUF", - "center": "POINT (384072.9612255651736632 1986281.6817981775384396)", - "surface": 14630000, - "canton": null, - "numero_insee": "33496" - } - }, - { - "pk": 4616, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SALLES", - "center": "POINT (343895.5941076318849809 1954118.6013799270149320)", - "surface": 138120000, - "canton": null, - "numero_insee": "33498" - } - }, - { - "pk": 3948, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LES SALLES-DE-CASTILLON", - "center": "POINT (415848.6866373298107646 1993150.4048111343290657)", - "surface": 11200000, - "canton": null, - "numero_insee": "33499" - } - }, - { - "pk": 25595, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAMONAC", - "center": "POINT (370948.2948340213042684 2011999.7717395799700171)", - "surface": 4030000, - "canton": null, - "numero_insee": "33500" - } - }, - { - "pk": 35325, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAUCATS", - "center": "POINT (364422.7520617975387722 1965598.9405212472192943)", - "surface": 89070000, - "canton": null, - "numero_insee": "33501" - } - }, - { - "pk": 28329, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAUGON", - "center": "POINT (376951.8737475882517174 2024461.5163015355356038)", - "surface": 15360000, - "canton": null, - "numero_insee": "33502" - } - }, - { - "pk": 36506, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAUMOS", - "center": "POINT (336046.8636364809935912 1995697.0784474224783480)", - "surface": 57870000, - "canton": null, - "numero_insee": "33503" - } - }, - { - "pk": 27066, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAUTERNES", - "center": "POINT (386963.1623552655801177 1951369.4165795180015266)", - "surface": 11270000, - "canton": null, - "numero_insee": "33504" - } - }, - { - "pk": 19843, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LA SAUVE", - "center": "POINT (390155.3667949925875291 1977022.2551778380293399)", - "surface": 18590000, - "canton": null, - "numero_insee": "33505" - } - }, - { - "pk": 15727, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAUVETERRE-DE-GUYENNE", - "center": "POINT (408635.7895064768381417 1969566.8082012806553394)", - "surface": 31940000, - "canton": null, - "numero_insee": "33506" - } - }, - { - "pk": 23108, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAUVIAC", - "center": "POINT (398999.4375601648935117 1936352.7324740807525814)", - "surface": 11320000, - "canton": null, - "numero_insee": "33507" - } - }, - { - "pk": 14219, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAVIGNAC", - "center": "POINT (405402.6302309351740405 1948918.7036873223260045)", - "surface": 17140000, - "canton": null, - "numero_insee": "33508" - } - }, - { - "pk": 31223, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SAVIGNAC-DE-L'ISLE", - "center": "POINT (396658.8200266509666108 2001700.8920859689824283)", - "surface": 4440000, - "canton": null, - "numero_insee": "33509" - } - }, - { - "pk": 22216, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SEMENS", - "center": "POINT (395899.3538119543809444 1960252.2291400521062315)", - "surface": 3650000, - "canton": null, - "numero_insee": "33510" - } - }, - { - "pk": 6631, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SENDETS", - "center": "POINT (406284.3557207373669371 1939115.6753817386925220)", - "surface": 8360000, - "canton": null, - "numero_insee": "33511" - } - }, - { - "pk": 18917, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SIGALENS", - "center": "POINT (411264.4996991589432582 1942159.9389322535134852)", - "surface": 18210000, - "canton": null, - "numero_insee": "33512" - } - }, - { - "pk": 25972, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SILLAS", - "center": "POINT (408940.6215297458693385 1932630.7234484311193228)", - "surface": 7690000, - "canton": null, - "numero_insee": "33513" - } - }, - { - "pk": 11657, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SOULIGNAC", - "center": "POINT (391817.9352213877136819 1969628.3315026513300836)", - "surface": 11560000, - "canton": null, - "numero_insee": "33515" - } - }, - { - "pk": 24288, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SOUSSAC", - "center": "POINT (415712.8788136127404869 1973228.9411181388422847)", - "surface": 6620000, - "canton": null, - "numero_insee": "33516" - } - }, - { - "pk": 31656, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "SOUSSANS", - "center": "POINT (360948.8210323631064966 2010716.3769821899477392)", - "surface": 15630000, - "canton": null, - "numero_insee": "33517" - } - }, - { - "pk": 31658, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TABANAC", - "center": "POINT (382179.8293611742556095 1973052.5589645442087203)", - "surface": 7770000, - "canton": null, - "numero_insee": "33518" - } - }, - { - "pk": 30398, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE TAILLAN-MEDOC", - "center": "POINT (361581.7003602081676945 1994605.3338552676141262)", - "surface": 15090000, - "canton": null, - "numero_insee": "33519" - } - }, - { - "pk": 29836, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TAILLECAVAT", - "center": "POINT (427004.7282604272477329 1963512.1080295420251787)", - "surface": 9490000, - "canton": null, - "numero_insee": "33520" - } - }, - { - "pk": 14235, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TALENCE", - "center": "POINT (368286.7092061751172878 1982648.2152643438894302)", - "surface": 8300000, - "canton": null, - "numero_insee": "33522" - } - }, - { - "pk": 16456, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TARGON", - "center": "POINT (393585.8500629166373983 1973747.1279723269399256)", - "surface": 26000000, - "canton": null, - "numero_insee": "33523" - } - }, - { - "pk": 36059, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TARNES", - "center": "POINT (387556.8521350135561079 2000825.0903127819765359)", - "surface": 1430000, - "canton": null, - "numero_insee": "33524" - } - }, - { - "pk": 7203, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TAURIAC", - "center": "POINT (375971.0808444027788937 2009838.8798999732825905)", - "surface": 10810000, - "canton": null, - "numero_insee": "33525" - } - }, - { - "pk": 33479, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TAYAC", - "center": "POINT (413704.5557029662886634 1998237.8682534100953490)", - "surface": 7170000, - "canton": null, - "numero_insee": "33526" - } - }, - { - "pk": 31458, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE TEICH", - "center": "POINT (332946.3695529265678488 1958733.7127783233299851)", - "surface": 86440000, - "canton": null, - "numero_insee": "33527" - } - }, - { - "pk": 23705, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE TEMPLE", - "center": "POINT (339496.0512242198456079 1990119.6656092344783247)", - "surface": 72310000, - "canton": null, - "numero_insee": "33528" - } - }, - { - "pk": 14968, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LA TESTE-DE-BUCH", - "center": "POINT (320849.3228401112137362 1956832.7312809431459755)", - "surface": 178250000, - "canton": null, - "numero_insee": "33529" - } - }, - { - "pk": 31061, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TEUILLAC", - "center": "POINT (372927.9351568415295333 2014718.7541875785682350)", - "surface": 7460000, - "canton": null, - "numero_insee": "33530" - } - }, - { - "pk": 13969, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TIZAC-DE-CURTON", - "center": "POINT (395905.6510265194810927 1983776.5065377957653254)", - "surface": 4090000, - "canton": null, - "numero_insee": "33531" - } - }, - { - "pk": 25991, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TIZAC-DE-LAPOUYADE", - "center": "POINT (391175.3994892249465920 2011165.2565525255631655)", - "surface": 9230000, - "canton": null, - "numero_insee": "33532" - } - }, - { - "pk": 22373, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TOULENNE", - "center": "POINT (392339.5740477534709498 1954917.3691153454128653)", - "surface": 6550000, - "canton": null, - "numero_insee": "33533" - } - }, - { - "pk": 30394, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE TOURNE", - "center": "POINT (383287.4813157460885122 1972260.8539265189319849)", - "surface": 2580000, - "canton": null, - "numero_insee": "33534" - } - }, - { - "pk": 34638, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "TRESSES", - "center": "POINT (377967.1492744475835934 1986231.4215789262671024)", - "surface": 11890000, - "canton": null, - "numero_insee": "33535" - } - }, - { - "pk": 24549, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE TUZAN", - "center": "POINT (366010.0905675555695780 1942988.3811194940935820)", - "surface": 18020000, - "canton": null, - "numero_insee": "33536" - } - }, - { - "pk": 3468, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "UZESTE", - "center": "POINT (387953.9221429387107491 1940466.1293511241674423)", - "surface": 26200000, - "canton": null, - "numero_insee": "33537" - } - }, - { - "pk": 5254, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VALEYRAC", - "center": "POINT (346424.2927191818598658 2048534.6137238503433764)", - "surface": 12770000, - "canton": null, - "numero_insee": "33538" - } - }, - { - "pk": 32989, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VAYRES", - "center": "POINT (389536.9721302611287683 1991331.7751115020364523)", - "surface": 14330000, - "canton": null, - "numero_insee": "33539" - } - }, - { - "pk": 4803, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VENDAYS-MONTALIVET", - "center": "POINT (330550.0334701464744285 2043499.6876515727490187)", - "surface": 100790000, - "canton": null, - "numero_insee": "33540" - } - }, - { - "pk": 27098, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VENSAC", - "center": "POINT (332898.9135767630650662 2050025.2808583043515682)", - "surface": 33680000, - "canton": null, - "numero_insee": "33541" - } - }, - { - "pk": 36886, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VERAC", - "center": "POINT (389041.7750708652893081 2002839.3387058442458510)", - "surface": 8590000, - "canton": null, - "numero_insee": "33542" - } - }, - { - "pk": 37430, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VERDELAIS", - "center": "POINT (394617.0665252213366330 1957939.2665051415096968)", - "surface": 4750000, - "canton": null, - "numero_insee": "33543" - } - }, - { - "pk": 14427, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "LE VERDON-SUR-MER", - "center": "POINT (333172.1590828918851912 2065542.5307473270222545)", - "surface": 20600000, - "canton": null, - "numero_insee": "33544" - } - }, - { - "pk": 34204, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VERTHEUIL", - "center": "POINT (350154.0616088019451126 2033150.1152532920241356)", - "surface": 21810000, - "canton": null, - "numero_insee": "33545" - } - }, - { - "pk": 7811, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VIGNONET", - "center": "POINT (403292.8962955460883677 1986239.8676767088472843)", - "surface": 4230000, - "canton": null, - "numero_insee": "33546" - } - }, - { - "pk": 13729, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VILLANDRAUT", - "center": "POINT (383533.0962549747200683 1942431.8256720085628331)", - "surface": 12570000, - "canton": null, - "numero_insee": "33547" - } - }, - { - "pk": 24111, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VILLEGOUGE", - "center": "POINT (390864.0827907595084980 2000351.8278084080666304)", - "surface": 13720000, - "canton": null, - "numero_insee": "33548" - } - }, - { - "pk": 12592, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VILLENAVE-DE-RIONS", - "center": "POINT (387618.8298923696856946 1968993.1176640884950757)", - "surface": 2550000, - "canton": null, - "numero_insee": "33549" - } - }, - { - "pk": 16426, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VILLENAVE-D'ORNON", - "center": "POINT (370720.2845341527136043 1978864.3321068810764700)", - "surface": 21230000, - "canton": null, - "numero_insee": "33550" - } - }, - { - "pk": 30043, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VILLENEUVE", - "center": "POINT (365631.8261916760820895 2013357.4650513851083815)", - "surface": 6360000, - "canton": null, - "numero_insee": "33551" - } - }, - { - "pk": 7681, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "VIRSAC", - "center": "POINT (381503.4137765357736498 2006581.0923632543999702)", - "surface": 3640000, - "canton": null, - "numero_insee": "33553" - } - }, - { - "pk": 7937, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "YVRAC", - "center": "POINT (378432.2048981001134962 1990539.6308639540802687)", - "surface": 8540000, - "canton": null, - "numero_insee": "33554" - } - }, - { - "pk": 31070, - "model": "ishtar_common.town", - "fields": { - "departement": 34, - "name": "MARCHEPRIME", - "center": "POINT (346852.3986091127735563 1971961.3525346152018756)", - "surface": 24800000, - "canton": null, - "numero_insee": "33555" - } - }, - { - "pk": 7979, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ABEILHAN", - "center": "POINT (678002.0079366879072040 1828761.8182916934601963)", - "surface": 7870000, - "canton": null, - "numero_insee": "34001" - } - }, - { - "pk": 36539, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ADISSAN", - "center": "POINT (688138.3468479132279754 1837657.4740619582589716)", - "surface": 4430000, - "canton": null, - "numero_insee": "34002" - } - }, - { - "pk": 16791, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AGDE", - "center": "POINT (693256.9829998295754194 1812472.1011833134107292)", - "surface": 50840000, - "canton": null, - "numero_insee": "34003" - } - }, - { - "pk": 5153, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AGEL", - "center": "POINT (641965.6551466338569298 1816343.9765506391413510)", - "surface": 12100000, - "canton": null, - "numero_insee": "34004" - } - }, - { - "pk": 14961, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AGONES", - "center": "POINT (711717.4541235845535994 1878702.5635791167151183)", - "surface": 4150000, - "canton": null, - "numero_insee": "34005" - } - }, - { - "pk": 14919, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AIGNE", - "center": "POINT (637082.3174966434016824 1813699.8700337158516049)", - "surface": 11140000, - "canton": null, - "numero_insee": "34006" - } - }, - { - "pk": 4734, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AIGUES-VIVES", - "center": "POINT (639563.9242297061719000 1816223.6310424869880080)", - "surface": 12790000, - "canton": null, - "numero_insee": "34007" - } - }, - { - "pk": 5560, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LES AIRES", - "center": "POINT (659376.7557636344572529 1841118.6799611342139542)", - "surface": 20490000, - "canton": null, - "numero_insee": "34008" - } - }, - { - "pk": 3150, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ALIGNAN-DU-VENT", - "center": "POINT (681194.4107913366751745 1830090.2744988554622978)", - "surface": 17490000, - "canton": null, - "numero_insee": "34009" - } - }, - { - "pk": 20802, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ANIANE", - "center": "POINT (701312.5431805923581123 1854287.4911288181319833)", - "surface": 30380000, - "canton": null, - "numero_insee": "34010" - } - }, - { - "pk": 4602, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ARBORAS", - "center": "POINT (691767.8894992041168734 1858311.2758916909806430)", - "surface": 6580000, - "canton": null, - "numero_insee": "34011" - } - }, - { - "pk": 14633, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ARGELLIERS", - "center": "POINT (707692.9399727077689022 1857444.9920533415861428)", - "surface": 50650000, - "canton": null, - "numero_insee": "34012" - } - }, - { - "pk": 17366, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ASPIRAN", - "center": "POINT (689910.6109270188026130 1841176.4111312304157764)", - "surface": 16170000, - "canton": null, - "numero_insee": "34013" - } - }, - { - "pk": 21733, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ASSAS", - "center": "POINT (725911.0695752172032371 1857699.5743299252353609)", - "surface": 19260000, - "canton": null, - "numero_insee": "34014" - } - }, - { - "pk": 11521, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ASSIGNAN", - "center": "POINT (644620.4691534760640934 1822072.8512181164696813)", - "surface": 8320000, - "canton": null, - "numero_insee": "34015" - } - }, - { - "pk": 27467, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AUMELAS", - "center": "POINT (703513.9311401908053085 1842593.0160331362858415)", - "surface": 58450000, - "canton": null, - "numero_insee": "34016" - } - }, - { - "pk": 12066, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AUMES", - "center": "POINT (691809.9085889669368044 1829679.4794587418437004)", - "surface": 7370000, - "canton": null, - "numero_insee": "34017" - } - }, - { - "pk": 4867, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AUTIGNAC", - "center": "POINT (667250.9046244781930000 1833376.3337084644008428)", - "surface": 11660000, - "canton": null, - "numero_insee": "34018" - } - }, - { - "pk": 29211, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AVENE", - "center": "POINT (661911.4890682424884290 1861062.3288355607073754)", - "surface": 62140000, - "canton": null, - "numero_insee": "34019" - } - }, - { - "pk": 8212, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "AZILLANET", - "center": "POINT (633179.8124907528981566 1813466.7838112099561840)", - "surface": 14310000, - "canton": null, - "numero_insee": "34020" - } - }, - { - "pk": 21711, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BABEAU-BOULDOUX", - "center": "POINT (645084.7297394084744155 1826381.6564165824092925)", - "surface": 21300000, - "canton": null, - "numero_insee": "34021" - } - }, - { - "pk": 36975, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BAILLARGUES", - "center": "POINT (735169.1191795897902921 1852071.7982557169161737)", - "surface": 7690000, - "canton": null, - "numero_insee": "34022" - } - }, - { - "pk": 6519, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BALARUC-LES-BAINS", - "center": "POINT (709743.3543076670030132 1828129.3923401546198875)", - "surface": 8680000, - "canton": null, - "numero_insee": "34023" - } - }, - { - "pk": 11251, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BALARUC-LE-VIEUX", - "center": "POINT (710226.0723132553976029 1830235.8667322096880525)", - "surface": 6890000, - "canton": null, - "numero_insee": "34024" - } - }, - { - "pk": 30623, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BASSAN", - "center": "POINT (674443.8466798961162567 1823325.6148317218758166)", - "surface": 6840000, - "canton": null, - "numero_insee": "34025" - } - }, - { - "pk": 19406, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BEAUFORT", - "center": "POINT (634999.4465452060103416 1811379.6954803534317762)", - "surface": 6060000, - "canton": null, - "numero_insee": "34026" - } - }, - { - "pk": 27473, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BEAULIEU", - "center": "POINT (735801.8389401063323021 1860086.1012999853119254)", - "surface": 7860000, - "canton": null, - "numero_insee": "34027" - } - }, - { - "pk": 22090, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BEDARIEUX", - "center": "POINT (667045.1530729550868273 1845888.6843049621675164)", - "surface": 28120000, - "canton": null, - "numero_insee": "34028" - } - }, - { - "pk": 36314, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BELARGA", - "center": "POINT (694126.8997780124191195 1839810.5068460409529507)", - "surface": 4150000, - "canton": null, - "numero_insee": "34029" - } - }, - { - "pk": 16299, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BERLOU", - "center": "POINT (649633.0884744850918651 1833127.5892050603870302)", - "surface": 11210000, - "canton": null, - "numero_insee": "34030" - } - }, - { - "pk": 17812, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BESSAN", - "center": "POINT (687606.0887405744288117 1817730.3669571769423783)", - "surface": 27900000, - "canton": null, - "numero_insee": "34031" - } - }, - { - "pk": 36310, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BEZIERS", - "center": "POINT (672599.3165397653356194 1816502.2722566507291049)", - "surface": 95670000, - "canton": null, - "numero_insee": "34032" - } - }, - { - "pk": 8060, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BOISSERON", - "center": "POINT (740184.3070800725836307 1862726.2199913966469467)", - "surface": 7520000, - "canton": null, - "numero_insee": "34033" - } - }, - { - "pk": 35114, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BOISSET", - "center": "POINT (628601.6891936889151111 1822138.1915682498365641)", - "surface": 17430000, - "canton": null, - "numero_insee": "34034" - } - }, - { - "pk": 15210, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LA BOISSIERE", - "center": "POINT (705544.0671402555890381 1851119.7509198293555528)", - "surface": 24440000, - "canton": null, - "numero_insee": "34035" - } - }, - { - "pk": 15685, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE BOSC", - "center": "POINT (684784.2952421997906640 1855449.0856583118438721)", - "surface": 28010000, - "canton": null, - "numero_insee": "34036" - } - }, - { - "pk": 13301, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BOUJAN-SUR-LIBRON", - "center": "POINT (675170.8120446621906012 1820228.2222160573583096)", - "surface": 7030000, - "canton": null, - "numero_insee": "34037" - } - }, - { - "pk": 16529, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE BOUSQUET-D'ORB", - "center": "POINT (665759.3847052054479718 1855889.0178247489966452)", - "surface": 11850000, - "canton": null, - "numero_insee": "34038" - } - }, - { - "pk": 8286, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BOUZIGUES", - "center": "POINT (707042.1773675925796852 1827906.2793553203810006)", - "surface": 6530000, - "canton": null, - "numero_insee": "34039" - } - }, - { - "pk": 7696, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BRENAS", - "center": "POINT (674024.6035538552096114 1849251.3279745392501354)", - "surface": 10590000, - "canton": null, - "numero_insee": "34040" - } - }, - { - "pk": 23522, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BRIGNAC", - "center": "POINT (691660.8452160778688267 1847298.0744408268947154)", - "surface": 4730000, - "canton": null, - "numero_insee": "34041" - } - }, - { - "pk": 16651, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BRISSAC", - "center": "POINT (710047.0946695504244417 1874984.3351985390763730)", - "surface": 43960000, - "canton": null, - "numero_insee": "34042" - } - }, - { - "pk": 26837, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "BUZIGNARGUES", - "center": "POINT (733660.5521520947804675 1864673.0307854362763464)", - "surface": 4650000, - "canton": null, - "numero_insee": "34043" - } - }, - { - "pk": 21039, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CABREROLLES", - "center": "POINT (663514.0306268304120749 1837249.1965343884658068)", - "surface": 28620000, - "canton": null, - "numero_insee": "34044" - } - }, - { - "pk": 20926, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CABRIERES", - "center": "POINT (681792.7603747500106692 1842209.0022165272384882)", - "surface": 28900000, - "canton": null, - "numero_insee": "34045" - } - }, - { - "pk": 20482, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAMBON-ET-SALVERGUES", - "center": "POINT (644709.0588661858346313 1847201.9703107532113791)", - "surface": 49970000, - "canton": null, - "numero_insee": "34046" - } - }, - { - "pk": 12874, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAMPAGNE", - "center": "POINT (736750.1652780144941062 1866301.0441248076967895)", - "surface": 4910000, - "canton": null, - "numero_insee": "34048" - } - }, - { - "pk": 3443, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAMPLONG", - "center": "POINT (662567.8721077599329874 1854460.5172561137005687)", - "surface": 13110000, - "canton": null, - "numero_insee": "34049" - } - }, - { - "pk": 6059, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CANDILLARGUES", - "center": "POINT (739610.2940830290317535 1847804.7016797468531877)", - "surface": 8500000, - "canton": null, - "numero_insee": "34050" - } - }, - { - "pk": 7345, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CANET", - "center": "POINT (692583.8126886195968837 1844702.9644524119794369)", - "surface": 7330000, - "canton": null, - "numero_insee": "34051" - } - }, - { - "pk": 33765, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAPESTANG", - "center": "POINT (657807.9348122226074338 1813474.0951574468053877)", - "surface": 40510000, - "canton": null, - "numero_insee": "34052" - } - }, - { - "pk": 34205, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CARLENCAS-ET-LEVAS", - "center": "POINT (671332.7632857905700803 1847927.1336730464827269)", - "surface": 10810000, - "canton": null, - "numero_insee": "34053" - } - }, - { - "pk": 15717, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CASSAGNOLES", - "center": "POINT (621497.4708813317120075 1821677.9734662105329335)", - "surface": 24100000, - "canton": null, - "numero_insee": "34054" - } - }, - { - "pk": 23907, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CASTANET-LE-HAUT", - "center": "POINT (649869.7921402791980654 1852551.3997085099108517)", - "surface": 27420000, - "canton": null, - "numero_insee": "34055" - } - }, - { - "pk": 5215, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CASTELNAU-DE-GUERS", - "center": "POINT (691937.1176410011248663 1826476.9213651036843657)", - "surface": 22660000, - "canton": null, - "numero_insee": "34056" - } - }, - { - "pk": 8555, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CASTELNAU-LE-LEZ", - "center": "POINT (727280.3880971795879304 1849702.2523344727233052)", - "surface": 11100000, - "canton": null, - "numero_insee": "34057" - } - }, - { - "pk": 35324, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CASTRIES", - "center": "POINT (732537.4998823809437454 1855453.2531225339043885)", - "surface": 24070000, - "canton": null, - "numero_insee": "34058" - } - }, - { - "pk": 10504, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LA CAUNETTE", - "center": "POINT (636542.1613057262729853 1818400.6972193294204772)", - "surface": 21660000, - "canton": null, - "numero_insee": "34059" - } - }, - { - "pk": 21675, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAUSSE-DE-LA-SELLE", - "center": "POINT (704112.1346803479827940 1866524.7720525185577571)", - "surface": 45090000, - "canton": null, - "numero_insee": "34060" - } - }, - { - "pk": 16975, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAUSSES-ET-VEYRAN", - "center": "POINT (661174.0031370215583593 1829821.0762576598208398)", - "surface": 17850000, - "canton": null, - "numero_insee": "34061" - } - }, - { - "pk": 26867, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAUSSINIOJOULS", - "center": "POINT (666204.2089935445692390 1838773.5968397273682058)", - "surface": 10500000, - "canton": null, - "numero_insee": "34062" - } - }, - { - "pk": 4132, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAUX", - "center": "POINT (683463.0006561566842720 1834113.9832071564160287)", - "surface": 25010000, - "canton": null, - "numero_insee": "34063" - } - }, - { - "pk": 25772, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE CAYLAR", - "center": "POINT (678412.8522074618376791 1874916.8435310199856758)", - "surface": 22440000, - "canton": null, - "numero_insee": "34064" - } - }, - { - "pk": 34881, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAZEDARNES", - "center": "POINT (656010.6947350418195128 1824771.8367433117236942)", - "surface": 11620000, - "canton": null, - "numero_insee": "34065" - } - }, - { - "pk": 6168, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAZILHAC", - "center": "POINT (708799.2070429821033031 1880479.8104912450071424)", - "surface": 11800000, - "canton": null, - "numero_insee": "34067" - } - }, - { - "pk": 22320, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAZOULS-D'HERAULT", - "center": "POINT (690673.1707284884760156 1833874.6212857821956277)", - "surface": 4350000, - "canton": null, - "numero_insee": "34068" - } - }, - { - "pk": 17996, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CAZOULS-LES-BEZIERS", - "center": "POINT (661841.3784783411538228 1821917.7263028707820922)", - "surface": 38350000, - "canton": null, - "numero_insee": "34069" - } - }, - { - "pk": 9982, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CEBAZAN", - "center": "POINT (652724.0580122477840632 1822741.8424009238369763)", - "surface": 13010000, - "canton": null, - "numero_insee": "34070" - } - }, - { - "pk": 20699, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CEILHES-ET-ROCOZELS", - "center": "POINT (660753.7497411734657362 1867759.9889085453469306)", - "surface": 27950000, - "canton": null, - "numero_insee": "34071" - } - }, - { - "pk": 11939, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CELLES", - "center": "POINT (682609.9256657473742962 1852127.0156526258215308)", - "surface": 7610000, - "canton": null, - "numero_insee": "34072" - } - }, - { - "pk": 11950, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CERS", - "center": "POINT (679622.8984303282340989 1814659.4404309587553144)", - "surface": 8030000, - "canton": null, - "numero_insee": "34073" - } - }, - { - "pk": 23514, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CESSENON-SUR-ORB", - "center": "POINT (657083.1568218010943383 1828184.7468122944701463)", - "surface": 36920000, - "canton": null, - "numero_insee": "34074" - } - }, - { - "pk": 23469, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CESSERAS", - "center": "POINT (629768.5764810553519055 1814339.1026725163683295)", - "surface": 14970000, - "canton": null, - "numero_insee": "34075" - } - }, - { - "pk": 22321, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CEYRAS", - "center": "POINT (690633.5419667358510196 1850392.8572750727180392)", - "surface": 6930000, - "canton": null, - "numero_insee": "34076" - } - }, - { - "pk": 37967, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CLAPIERS", - "center": "POINT (725156.1021448154933751 1852287.1375168468803167)", - "surface": 7660000, - "canton": null, - "numero_insee": "34077" - } - }, - { - "pk": 21720, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CLARET", - "center": "POINT (723870.6516446701716632 1874000.3363529990892857)", - "surface": 28460000, - "canton": null, - "numero_insee": "34078" - } - }, - { - "pk": 20578, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CLERMONT-L'HERAULT", - "center": "POINT (686944.9037465999135748 1848559.6404890278354287)", - "surface": 32830000, - "canton": null, - "numero_insee": "34079" - } - }, - { - "pk": 35346, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "COLOMBIERES-SUR-ORB", - "center": "POINT (654457.2361274044960737 1842779.0948816600721329)", - "surface": 8130000, - "canton": null, - "numero_insee": "34080" - } - }, - { - "pk": 34433, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "COLOMBIERS", - "center": "POINT (665522.1241908679949120 1812838.3901396072469652)", - "surface": 10230000, - "canton": null, - "numero_insee": "34081" - } - }, - { - "pk": 4619, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "COMBES", - "center": "POINT (657444.3513515733648092 1844706.4256373969838023)", - "surface": 10920000, - "canton": null, - "numero_insee": "34083" - } - }, - { - "pk": 13030, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "COULOBRES", - "center": "POINT (676005.8015352539950982 1828044.1560027438681573)", - "surface": 3040000, - "canton": null, - "numero_insee": "34085" - } - }, - { - "pk": 16893, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "COURNIOU", - "center": "POINT (628819.4549312279559672 1831951.1542983327526599)", - "surface": 30340000, - "canton": null, - "numero_insee": "34086" - } - }, - { - "pk": 11646, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "COURNONSEC", - "center": "POINT (710556.0870973127894104 1838548.0544768851250410)", - "surface": 12180000, - "canton": null, - "numero_insee": "34087" - } - }, - { - "pk": 15242, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "COURNONTERRAL", - "center": "POINT (710729.1518394293962047 1841753.1284328852780163)", - "surface": 28770000, - "canton": null, - "numero_insee": "34088" - } - }, - { - "pk": 24479, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CREISSAN", - "center": "POINT (653751.2960078329779208 1819646.9700397865381092)", - "surface": 8600000, - "canton": null, - "numero_insee": "34089" - } - }, - { - "pk": 32982, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE CRES", - "center": "POINT (729167.0862087915884331 1851520.2811134150251746)", - "surface": 5770000, - "canton": null, - "numero_insee": "34090" - } - }, - { - "pk": 5514, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE CROS", - "center": "POINT (682509.4584941975772381 1875852.4619887534063309)", - "surface": 22290000, - "canton": null, - "numero_insee": "34091" - } - }, - { - "pk": 23098, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "CRUZY", - "center": "POINT (648469.2511274307034910 1816799.2383383433334529)", - "surface": 25940000, - "canton": null, - "numero_insee": "34092" - } - }, - { - "pk": 24488, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "DIO-ET-VALQUIERES", - "center": "POINT (671396.5126818813150749 1852232.4858912369236350)", - "surface": 18650000, - "canton": null, - "numero_insee": "34093" - } - }, - { - "pk": 6866, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ESPONDEILHAN", - "center": "POINT (674616.9974861911032349 1826530.7184628329705447)", - "surface": 5100000, - "canton": null, - "numero_insee": "34094" - } - }, - { - "pk": 18715, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FABREGUES", - "center": "POINT (716167.0960857988102362 1837994.9374715941958129)", - "surface": 31910000, - "canton": null, - "numero_insee": "34095" - } - }, - { - "pk": 18670, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FAUGERES", - "center": "POINT (668487.1972642699256539 1841095.4635496307164431)", - "surface": 26040000, - "canton": null, - "numero_insee": "34096" - } - }, - { - "pk": 16053, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FELINES-MINERVOIS", - "center": "POINT (619836.0577477313345298 1816858.5242737340740860)", - "surface": 30210000, - "canton": null, - "numero_insee": "34097" - } - }, - { - "pk": 36304, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FERRALS-LES-MONTAGNES", - "center": "POINT (624680.6805179679067805 1824107.4797425714787096)", - "surface": 25560000, - "canton": null, - "numero_insee": "34098" - } - }, - { - "pk": 35080, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FERRIERES-LES-VERRERIES", - "center": "POINT (717755.0260105666238815 1875049.6758038294501603)", - "surface": 17340000, - "canton": null, - "numero_insee": "34099" - } - }, - { - "pk": 36784, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FERRIERES-POUSSAROU", - "center": "POINT (645843.4006301821209490 1831393.7225385198835284)", - "surface": 25750000, - "canton": null, - "numero_insee": "34100" - } - }, - { - "pk": 21479, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FLORENSAC", - "center": "POINT (691483.1659862521337345 1820966.8168728959280998)", - "surface": 35860000, - "canton": null, - "numero_insee": "34101" - } - }, - { - "pk": 33472, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FONTANES", - "center": "POINT (727432.8793202909873798 1867122.9361055509652942)", - "surface": 8320000, - "canton": null, - "numero_insee": "34102" - } - }, - { - "pk": 18562, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FONTES", - "center": "POINT (685229.3558810970280319 1838333.6629267432726920)", - "surface": 17720000, - "canton": null, - "numero_insee": "34103" - } - }, - { - "pk": 5682, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FOS", - "center": "POINT (673192.9993218199815601 1841035.0935693387873471)", - "surface": 6530000, - "canton": null, - "numero_insee": "34104" - } - }, - { - "pk": 26411, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FOUZILHON", - "center": "POINT (672850.9224399945233017 1834124.4168286477215588)", - "surface": 5400000, - "canton": null, - "numero_insee": "34105" - } - }, - { - "pk": 9581, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FOZIERES", - "center": "POINT (682129.9584885094081983 1861533.4365240752231330)", - "surface": 5400000, - "canton": null, - "numero_insee": "34106" - } - }, - { - "pk": 20527, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FRAISSE-SUR-AGOUT", - "center": "POINT (637232.3732062441995367 1843434.8344499028753489)", - "surface": 58570000, - "canton": null, - "numero_insee": "34107" - } - }, - { - "pk": 5059, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "FRONTIGNAN", - "center": "POINT (714446.6583464419236407 1828369.4809700876940042)", - "surface": 39840000, - "canton": null, - "numero_insee": "34108" - } - }, - { - "pk": 4544, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GABIAN", - "center": "POINT (675041.4132608273066580 1835544.5041627688333392)", - "surface": 16030000, - "canton": null, - "numero_insee": "34109" - } - }, - { - "pk": 17810, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GALARGUES", - "center": "POINT (734651.3888506364310160 1865882.7760383426211774)", - "surface": 11310000, - "canton": null, - "numero_insee": "34110" - } - }, - { - "pk": 12130, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GANGES", - "center": "POINT (709974.1410503201186657 1883593.1667891156394035)", - "surface": 7260000, - "canton": null, - "numero_insee": "34111" - } - }, - { - "pk": 16045, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GARRIGUES", - "center": "POINT (734836.2944204026134685 1867686.3414081174414605)", - "surface": 4860000, - "canton": null, - "numero_insee": "34112" - } - }, - { - "pk": 8842, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GIGEAN", - "center": "POINT (712302.0020761532941833 1833356.9729175581596792)", - "surface": 16350000, - "canton": null, - "numero_insee": "34113" - } - }, - { - "pk": 16198, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GIGNAC", - "center": "POINT (699952.6100661614909768 1849370.4949786486104131)", - "surface": 29870000, - "canton": null, - "numero_insee": "34114" - } - }, - { - "pk": 18137, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GORNIES", - "center": "POINT (703525.9863459725165740 1876630.9613177711144090)", - "surface": 29100000, - "canton": null, - "numero_insee": "34115" - } - }, - { - "pk": 16948, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GRABELS", - "center": "POINT (717659.2870836157817394 1850922.0928673471789807)", - "surface": 16590000, - "canton": null, - "numero_insee": "34116" - } - }, - { - "pk": 8070, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GRAISSESSAC", - "center": "POINT (660368.9520828770473599 1854041.5146176021080464)", - "surface": 9860000, - "canton": null, - "numero_insee": "34117" - } - }, - { - "pk": 7680, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "GUZARGUES", - "center": "POINT (727995.4178057140670717 1859819.6024254653602839)", - "surface": 11610000, - "canton": null, - "numero_insee": "34118" - } - }, - { - "pk": 32345, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "HEREPIAN", - "center": "POINT (663160.4859402150614187 1843553.3090124051086605)", - "surface": 8870000, - "canton": null, - "numero_insee": "34119" - } - }, - { - "pk": 9832, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "JACOU", - "center": "POINT (727156.4964148979634047 1852504.3359767715446651)", - "surface": 3390000, - "canton": null, - "numero_insee": "34120" - } - }, - { - "pk": 3723, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "JONCELS", - "center": "POINT (668201.9816900183213875 1863017.5396930542774498)", - "surface": 46430000, - "canton": null, - "numero_insee": "34121" - } - }, - { - "pk": 7218, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "JONQUIERES", - "center": "POINT (692112.2452102672541514 1853108.3878528103232384)", - "surface": 2050000, - "canton": null, - "numero_insee": "34122" - } - }, - { - "pk": 4788, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "JUVIGNAC", - "center": "POINT (717884.9621968060964718 1847920.6443955516442657)", - "surface": 10960000, - "canton": null, - "numero_insee": "34123" - } - }, - { - "pk": 19520, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LACOSTE", - "center": "POINT (687723.7298327820608392 1851169.1390554984100163)", - "surface": 7530000, - "canton": null, - "numero_insee": "34124" - } - }, - { - "pk": 12748, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAGAMAS", - "center": "POINT (696515.9998284188332036 1853245.7667342966888100)", - "surface": 4520000, - "canton": null, - "numero_insee": "34125" - } - }, - { - "pk": 13273, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAMALOU-LES-BAINS", - "center": "POINT (660453.4199669362278655 1844031.0262648519128561)", - "surface": 6230000, - "canton": null, - "numero_insee": "34126" - } - }, - { - "pk": 23683, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LANSARGUES", - "center": "POINT (740994.7534796050749719 1849818.7070867640431970)", - "surface": 18530000, - "canton": null, - "numero_insee": "34127" - } - }, - { - "pk": 8357, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAROQUE", - "center": "POINT (712295.1619497814681381 1881410.4254687125794590)", - "surface": 6710000, - "canton": null, - "numero_insee": "34128" - } - }, - { - "pk": 15858, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LATTES", - "center": "POINT (726650.1613888997817412 1841387.5775032341480255)", - "surface": 32300000, - "canton": null, - "numero_insee": "34129" - } - }, - { - "pk": 4699, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAURENS", - "center": "POINT (669832.5269794156774879 1835900.9589039091952145)", - "surface": 16580000, - "canton": null, - "numero_insee": "34130" - } - }, - { - "pk": 24380, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAURET", - "center": "POINT (724395.7979911145521328 1871101.5903710073325783)", - "surface": 6670000, - "canton": null, - "numero_insee": "34131" - } - }, - { - "pk": 16655, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAUROUX", - "center": "POINT (675885.4507161770015955 1865985.6541546792723238)", - "surface": 26630000, - "canton": null, - "numero_insee": "34132" - } - }, - { - "pk": 13833, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAVALETTE", - "center": "POINT (675377.8628837907453999 1854969.1336812130175531)", - "surface": 8550000, - "canton": null, - "numero_insee": "34133" - } - }, - { - "pk": 24883, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LAVERUNE", - "center": "POINT (718421.9893347695469856 1843620.3678407352417707)", - "surface": 7150000, - "canton": null, - "numero_insee": "34134" - } - }, - { - "pk": 23918, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LESPIGNAN", - "center": "POINT (667663.2610709287691861 1808251.1849230425432324)", - "surface": 22950000, - "canton": null, - "numero_insee": "34135" - } - }, - { - "pk": 7215, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LEZIGNAN-LA-CEBE", - "center": "POINT (689280.1546441109385341 1832861.7055382356047630)", - "surface": 6230000, - "canton": null, - "numero_insee": "34136" - } - }, - { - "pk": 7569, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LIAUSSON", - "center": "POINT (682634.4681535772979259 1849223.9774272101931274)", - "surface": 7930000, - "canton": null, - "numero_insee": "34137" - } - }, - { - "pk": 30847, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LIEURAN-CABRIERES", - "center": "POINT (686684.3784963808720931 1843852.1613751228433102)", - "surface": 6160000, - "canton": null, - "numero_insee": "34138" - } - }, - { - "pk": 7930, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LIEURAN-LES-BEZIERS", - "center": "POINT (672438.3295561699196696 1823709.1293152736034244)", - "surface": 8590000, - "canton": null, - "numero_insee": "34139" - } - }, - { - "pk": 10113, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LIGNAN-SUR-ORB", - "center": "POINT (667861.3126770304515958 1820366.7158836640883237)", - "surface": 3390000, - "canton": null, - "numero_insee": "34140" - } - }, - { - "pk": 21468, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LA LIVINIERE", - "center": "POINT (623956.4526941174408421 1814991.0034796786494553)", - "surface": 31180000, - "canton": null, - "numero_insee": "34141" - } - }, - { - "pk": 16405, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LODEVE", - "center": "POINT (678145.2567547669168562 1859197.1985575538128614)", - "surface": 23260000, - "canton": null, - "numero_insee": "34142" - } - }, - { - "pk": 11372, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LOUPIAN", - "center": "POINT (704536.1252657074946910 1828285.5058752810582519)", - "surface": 23940000, - "canton": null, - "numero_insee": "34143" - } - }, - { - "pk": 16933, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LUNAS", - "center": "POINT (670157.2144009440671653 1856727.0426709090825170)", - "surface": 44900000, - "canton": null, - "numero_insee": "34144" - } - }, - { - "pk": 19453, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LUNEL", - "center": "POINT (745155.7647576923482120 1854959.7743750787340105)", - "surface": 24260000, - "canton": null, - "numero_insee": "34145" - } - }, - { - "pk": 24269, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LUNEL-VIEL", - "center": "POINT (741051.4807547387899831 1854924.8960591170471162)", - "surface": 12120000, - "canton": null, - "numero_insee": "34146" - } - }, - { - "pk": 13845, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MARAUSSAN", - "center": "POINT (666271.4327712298836559 1818951.6951247206889093)", - "surface": 12410000, - "canton": null, - "numero_insee": "34148" - } - }, - { - "pk": 13987, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MARGON", - "center": "POINT (678374.5159494297113270 1832068.7079274794086814)", - "surface": 4530000, - "canton": null, - "numero_insee": "34149" - } - }, - { - "pk": 14822, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MARSEILLAN", - "center": "POINT (698213.2096973010338843 1818320.6877513360232115)", - "surface": 53100000, - "canton": null, - "numero_insee": "34150" - } - }, - { - "pk": 30034, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MARSILLARGUES", - "center": "POINT (746308.8201898287516087 1848862.7465525264851749)", - "surface": 42390000, - "canton": null, - "numero_insee": "34151" - } - }, - { - "pk": 17811, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MAS-DE-LONDRES", - "center": "POINT (715728.3978611405473202 1866122.6548422023188323)", - "surface": 19270000, - "canton": null, - "numero_insee": "34152" - } - }, - { - "pk": 34916, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LES MATELLES", - "center": "POINT (718587.3283173507079482 1859539.5643254697788507)", - "surface": 16770000, - "canton": null, - "numero_insee": "34153" - } - }, - { - "pk": 14403, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MAUGUIO", - "center": "POINT (734829.9063096639001742 1844860.8411987279541790)", - "surface": 76910000, - "canton": null, - "numero_insee": "34154" - } - }, - { - "pk": 31294, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MAUREILHAN", - "center": "POINT (662084.6769493637839332 1816813.9571579247713089)", - "surface": 10380000, - "canton": null, - "numero_insee": "34155" - } - }, - { - "pk": 37231, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MERIFONS", - "center": "POINT (676232.8313904320821166 1848569.2001754748634994)", - "surface": 6700000, - "canton": null, - "numero_insee": "34156" - } - }, - { - "pk": 3748, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MEZE", - "center": "POINT (700651.4704537753714249 1825949.9952006489038467)", - "surface": 47020000, - "canton": null, - "numero_insee": "34157" - } - }, - { - "pk": 30641, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MINERVE", - "center": "POINT (631240.6974324560724199 1817855.4951392547227442)", - "surface": 27650000, - "canton": null, - "numero_insee": "34158" - } - }, - { - "pk": 34867, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MIREVAL", - "center": "POINT (718686.7166120782494545 1836014.0423387982882559)", - "surface": 11260000, - "canton": null, - "numero_insee": "34159" - } - }, - { - "pk": 16300, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONS", - "center": "POINT (650667.5808259521145374 1841045.2268917658366263)", - "surface": 21880000, - "canton": null, - "numero_insee": "34160" - } - }, - { - "pk": 8943, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTADY", - "center": "POINT (663106.8709635485429317 1814319.7228260538540781)", - "surface": 9920000, - "canton": null, - "numero_insee": "34161" - } - }, - { - "pk": 26044, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTAGNAC", - "center": "POINT (695103.2498132580658421 1830908.7078431732952595)", - "surface": 39980000, - "canton": null, - "numero_insee": "34162" - } - }, - { - "pk": 21910, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTARNAUD", - "center": "POINT (710055.5666971589671448 1850357.0782433985732496)", - "surface": 27590000, - "canton": null, - "numero_insee": "34163" - } - }, - { - "pk": 29648, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTAUD", - "center": "POINT (730880.5913568185642362 1861946.4287583469413221)", - "surface": 13100000, - "canton": null, - "numero_insee": "34164" - } - }, - { - "pk": 21988, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTBAZIN", - "center": "POINT (708061.0789361861534417 1837625.8976407761219889)", - "surface": 21390000, - "canton": null, - "numero_insee": "34165" - } - }, - { - "pk": 10609, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTBLANC", - "center": "POINT (682600.7310561874182895 1817688.0437051448971033)", - "surface": 27160000, - "canton": null, - "numero_insee": "34166" - } - }, - { - "pk": 32611, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTELS", - "center": "POINT (655936.2899298504926264 1809854.1778180804103613)", - "surface": 7420000, - "canton": null, - "numero_insee": "34167" - } - }, - { - "pk": 28107, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTFERRIER-SUR-LEZ", - "center": "POINT (723347.4241255139932036 1853072.6868982892483473)", - "surface": 7520000, - "canton": null, - "numero_insee": "34169" - } - }, - { - "pk": 29066, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTOULIERS", - "center": "POINT (646182.8144603726686910 1814877.7939220506232232)", - "surface": 7740000, - "canton": null, - "numero_insee": "34170" - } - }, - { - "pk": 34313, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTOULIEU", - "center": "POINT (717806.7435514379758388 1880756.3841865821741521)", - "surface": 16210000, - "canton": null, - "numero_insee": "34171" - } - }, - { - "pk": 15261, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTPELLIER", - "center": "POINT (723800.4980504396371543 1846869.5841406683903188)", - "surface": 57120000, - "canton": null, - "numero_insee": "34172" - } - }, - { - "pk": 18066, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MONTPEYROUX", - "center": "POINT (694079.6047512716613710 1857229.6111047505401075)", - "surface": 22540000, - "canton": null, - "numero_insee": "34173" - } - }, - { - "pk": 14343, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MOULES-ET-BAUCELS", - "center": "POINT (713973.9931464344263077 1884127.6163381705991924)", - "surface": 22830000, - "canton": null, - "numero_insee": "34174" - } - }, - { - "pk": 29405, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MOUREZE", - "center": "POINT (681957.4288686071522534 1846415.1142825451679528)", - "surface": 13560000, - "canton": null, - "numero_insee": "34175" - } - }, - { - "pk": 32105, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MUDAISON", - "center": "POINT (737287.4726851800223812 1850187.6617313213646412)", - "surface": 8100000, - "canton": null, - "numero_insee": "34176" - } - }, - { - "pk": 4706, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MURLES", - "center": "POINT (714608.6215325202792883 1856502.4863103046081960)", - "surface": 23940000, - "canton": null, - "numero_insee": "34177" - } - }, - { - "pk": 18113, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MURVIEL-LES-BEZIERS", - "center": "POINT (664787.9689475693739951 1828650.2155881437938660)", - "surface": 32510000, - "canton": null, - "numero_insee": "34178" - } - }, - { - "pk": 4667, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "MURVIEL-LES-MONTPELLIER", - "center": "POINT (713393.8145655046682805 1846280.7727407477796078)", - "surface": 10150000, - "canton": null, - "numero_insee": "34179" - } - }, - { - "pk": 29174, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "NEFFIES", - "center": "POINT (680627.8800395097350702 1837894.3098527132533491)", - "surface": 10970000, - "canton": null, - "numero_insee": "34181" - } - }, - { - "pk": 26228, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "NEZIGNAN-L'EVEQUE", - "center": "POINT (686544.0640026587061584 1824929.5972964302636683)", - "surface": 4340000, - "canton": null, - "numero_insee": "34182" - } - }, - { - "pk": 36538, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "NISSAN-LEZ-ENSERUNE", - "center": "POINT (663051.5416518613928929 1809013.1756685627624393)", - "surface": 30260000, - "canton": null, - "numero_insee": "34183" - } - }, - { - "pk": 29406, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "NIZAS", - "center": "POINT (687658.9846470744814724 1835150.5956140793859959)", - "surface": 8690000, - "canton": null, - "numero_insee": "34184" - } - }, - { - "pk": 20519, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "NOTRE-DAME-DE-LONDRES", - "center": "POINT (714384.6197413901099935 1871116.7959550768136978)", - "surface": 28380000, - "canton": null, - "numero_insee": "34185" - } - }, - { - "pk": 19646, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "OCTON", - "center": "POINT (677412.9425071867881343 1851081.9713066352996975)", - "surface": 21790000, - "canton": null, - "numero_insee": "34186" - } - }, - { - "pk": 19177, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "OLARGUES", - "center": "POINT (646991.5209293708903715 1837710.5205066609196365)", - "surface": 18490000, - "canton": null, - "numero_insee": "34187" - } - }, - { - "pk": 10369, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "OLMET-ET-VILLECUN", - "center": "POINT (677565.7800339908571914 1856689.5169452785048634)", - "surface": 9670000, - "canton": null, - "numero_insee": "34188" - } - }, - { - "pk": 34168, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "OLONZAC", - "center": "POINT (632518.6654921394074336 1808755.8260886247735471)", - "surface": 19330000, - "canton": null, - "numero_insee": "34189" - } - }, - { - "pk": 24445, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "OUPIA", - "center": "POINT (635714.5290808656718582 1809683.7650712805334479)", - "surface": 9040000, - "canton": null, - "numero_insee": "34190" - } - }, - { - "pk": 10610, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PAILHES", - "center": "POINT (668711.5583683029981330 1826380.7277757313568145)", - "surface": 5910000, - "canton": null, - "numero_insee": "34191" - } - }, - { - "pk": 30882, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PALAVAS-LES-FLOTS", - "center": "POINT (728580.2026567585999146 1838100.2348450748249888)", - "surface": 9200000, - "canton": null, - "numero_insee": "34192" - } - }, - { - "pk": 23352, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PARDAILHAN", - "center": "POINT (640574.0332778531592339 1827044.4486357874702662)", - "surface": 41220000, - "canton": null, - "numero_insee": "34193" - } - }, - { - "pk": 8572, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PAULHAN", - "center": "POINT (690738.5546676027588546 1837979.8075544282328337)", - "surface": 11400000, - "canton": null, - "numero_insee": "34194" - } - }, - { - "pk": 29936, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PEGAIROLLES-DE-BUEGES", - "center": "POINT (699796.6609592011664063 1867789.6672161945607513)", - "surface": 13230000, - "canton": null, - "numero_insee": "34195" - } - }, - { - "pk": 37268, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PEGAIROLLES-DE-L'ESCALETTE", - "center": "POINT (680369.8076842818409204 1868426.2082581636495888)", - "surface": 32000000, - "canton": null, - "numero_insee": "34196" - } - }, - { - "pk": 36284, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PERET", - "center": "POINT (685799.5150502189062536 1841942.5410828208550811)", - "surface": 11040000, - "canton": null, - "numero_insee": "34197" - } - }, - { - "pk": 11652, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PEROLS", - "center": "POINT (730656.9290764825418591 1841121.2462883430998772)", - "surface": 8660000, - "canton": null, - "numero_insee": "34198" - } - }, - { - "pk": 20691, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PEZENAS", - "center": "POINT (687506.1847550622187555 1829542.9608613387681544)", - "surface": 29850000, - "canton": null, - "numero_insee": "34199" - } - }, - { - "pk": 22223, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PEZENES-LES-MINES", - "center": "POINT (673363.6135406534885988 1844540.4716139934025705)", - "surface": 26940000, - "canton": null, - "numero_insee": "34200" - } - }, - { - "pk": 22875, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PIERRERUE", - "center": "POINT (650789.1136212698183954 1826629.9647313342429698)", - "surface": 11660000, - "canton": null, - "numero_insee": "34201" - } - }, - { - "pk": 22033, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PIGNAN", - "center": "POINT (714217.5670998428249732 1843584.7208975292742252)", - "surface": 20550000, - "canton": null, - "numero_insee": "34202" - } - }, - { - "pk": 35124, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PINET", - "center": "POINT (695365.3083990765735507 1823602.6300437613390386)", - "surface": 8990000, - "canton": null, - "numero_insee": "34203" - } - }, - { - "pk": 11366, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PLAISSAN", - "center": "POINT (696525.1966181966708973 1840331.3676309369038790)", - "surface": 5950000, - "canton": null, - "numero_insee": "34204" - } - }, - { - "pk": 21216, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LES PLANS", - "center": "POINT (674818.1396170667139813 1861972.1988290660083294)", - "surface": 18030000, - "canton": null, - "numero_insee": "34205" - } - }, - { - "pk": 32339, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "POILHES", - "center": "POINT (661127.5307729620253667 1811599.9243380408734083)", - "surface": 5970000, - "canton": null, - "numero_insee": "34206" - } - }, - { - "pk": 19871, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "POMEROLS", - "center": "POINT (695083.6263321271399036 1821397.7385705648921430)", - "surface": 10930000, - "canton": null, - "numero_insee": "34207" - } - }, - { - "pk": 10869, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "POPIAN", - "center": "POINT (696663.5538318604230881 1847640.7459493395872414)", - "surface": 5870000, - "canton": null, - "numero_insee": "34208" - } - }, - { - "pk": 30846, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PORTIRAGNES", - "center": "POINT (682152.6627368059707806 1811477.1547187706455588)", - "surface": 19990000, - "canton": null, - "numero_insee": "34209" - } - }, - { - "pk": 4515, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE POUGET", - "center": "POINT (695392.6888167239958420 1844025.9471139740198851)", - "surface": 13960000, - "canton": null, - "numero_insee": "34210" - } - }, - { - "pk": 20690, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE POUJOL-SUR-ORB", - "center": "POINT (657962.6118440499994904 1842608.4372893250547349)", - "surface": 4700000, - "canton": null, - "numero_insee": "34211" - } - }, - { - "pk": 28312, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "POUJOLS", - "center": "POINT (679107.3803201096598059 1863810.4415933410637081)", - "surface": 2860000, - "canton": null, - "numero_insee": "34212" - } - }, - { - "pk": 23733, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "POUSSAN", - "center": "POINT (707196.5944366215262562 1833313.7119352484587580)", - "surface": 30010000, - "canton": null, - "numero_insee": "34213" - } - }, - { - "pk": 6169, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "POUZOLLES", - "center": "POINT (675879.4753044111421332 1831146.6053251591511071)", - "surface": 10100000, - "canton": null, - "numero_insee": "34214" - } - }, - { - "pk": 31044, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "POUZOLS", - "center": "POINT (694765.7949132041539997 1847124.1232905522920191)", - "surface": 2970000, - "canton": null, - "numero_insee": "34215" - } - }, - { - "pk": 24460, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE PRADAL", - "center": "POINT (661319.7325719472719356 1848142.9376938880886883)", - "surface": 3670000, - "canton": null, - "numero_insee": "34216" - } - }, - { - "pk": 30276, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PRADES-LE-LEZ", - "center": "POINT (723311.7554830898297951 1857277.0741176269948483)", - "surface": 8830000, - "canton": null, - "numero_insee": "34217" - } - }, - { - "pk": 5691, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PRADES-SUR-VERNAZOBRE", - "center": "POINT (651773.2975874417461455 1828640.5336488888133317)", - "surface": 20000000, - "canton": null, - "numero_insee": "34218" - } - }, - { - "pk": 15077, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PREMIAN", - "center": "POINT (639284.2245617064181715 1837545.4709347151219845)", - "surface": 16590000, - "canton": null, - "numero_insee": "34219" - } - }, - { - "pk": 5319, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE PUECH", - "center": "POINT (679791.7656277791829780 1853905.2050656110513955)", - "surface": 15990000, - "canton": null, - "numero_insee": "34220" - } - }, - { - "pk": 23211, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PUECHABON", - "center": "POINT (702374.6970939589664340 1858901.6154871396720409)", - "surface": 31310000, - "canton": null, - "numero_insee": "34221" - } - }, - { - "pk": 28757, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PUILACHER", - "center": "POINT (694415.3563952809199691 1841214.5253577297553420)", - "surface": 2690000, - "canton": null, - "numero_insee": "34222" - } - }, - { - "pk": 6539, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PUIMISSON", - "center": "POINT (670612.7368972157128155 1826496.8959368723444641)", - "surface": 6500000, - "canton": null, - "numero_insee": "34223" - } - }, - { - "pk": 15037, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PUISSALICON", - "center": "POINT (673000.0726097213337198 1828319.1041922322474420)", - "surface": 12990000, - "canton": null, - "numero_insee": "34224" - } - }, - { - "pk": 18063, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "PUISSERGUIER", - "center": "POINT (657555.3624024514574558 1819679.0548090208321810)", - "surface": 28150000, - "canton": null, - "numero_insee": "34225" - } - }, - { - "pk": 5957, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "QUARANTE", - "center": "POINT (652275.0135552138090134 1816631.0941605248954147)", - "surface": 30090000, - "canton": null, - "numero_insee": "34226" - } - }, - { - "pk": 4148, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "RESTINCLIERES", - "center": "POINT (737508.7104975546244532 1859499.9303497509099543)", - "surface": 6270000, - "canton": null, - "numero_insee": "34227" - } - }, - { - "pk": 18028, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "RIEUSSEC", - "center": "POINT (632086.0479495167965069 1824470.1346043178346008)", - "surface": 22360000, - "canton": null, - "numero_insee": "34228" - } - }, - { - "pk": 15719, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "RIOLS", - "center": "POINT (637316.6733366271946579 1833424.2687041840981692)", - "surface": 56720000, - "canton": null, - "numero_insee": "34229" - } - }, - { - "pk": 22826, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LES RIVES", - "center": "POINT (674624.1610852200537920 1873082.8459214055910707)", - "surface": 24020000, - "canton": null, - "numero_insee": "34230" - } - }, - { - "pk": 29432, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ROMIGUIERES", - "center": "POINT (672658.4579288647510111 1868761.4915443577338010)", - "surface": 3500000, - "canton": null, - "numero_insee": "34231" - } - }, - { - "pk": 20384, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ROQUEBRUN", - "center": "POINT (654532.3743965142639354 1833869.6910076690837741)", - "surface": 39600000, - "canton": null, - "numero_insee": "34232" - } - }, - { - "pk": 14453, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ROQUEREDONDE", - "center": "POINT (670175.3156955717131495 1866437.9732803679071367)", - "surface": 22960000, - "canton": null, - "numero_insee": "34233" - } - }, - { - "pk": 30062, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ROQUESSELS", - "center": "POINT (671907.6930454736575484 1839122.0961426671128720)", - "surface": 9090000, - "canton": null, - "numero_insee": "34234" - } - }, - { - "pk": 22728, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ROSIS", - "center": "POINT (652915.1375403833808377 1847571.4799169129692018)", - "surface": 52670000, - "canton": null, - "numero_insee": "34235" - } - }, - { - "pk": 22665, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ROUET", - "center": "POINT (719095.4170120832277462 1870455.9655726554337889)", - "surface": 24910000, - "canton": null, - "numero_insee": "34236" - } - }, - { - "pk": 15750, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "ROUJAN", - "center": "POINT (678752.0981478453613818 1834774.9543822919949889)", - "surface": 16930000, - "canton": null, - "numero_insee": "34237" - } - }, - { - "pk": 7613, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-ANDRE-DE-BUEGES", - "center": "POINT (705656.1300897339824587 1873345.3680914863944054)", - "surface": 15340000, - "canton": null, - "numero_insee": "34238" - } - }, - { - "pk": 20532, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-ANDRE-DE-SANGONIS", - "center": "POINT (694137.2094796787714586 1850422.5023429142311215)", - "surface": 19660000, - "canton": null, - "numero_insee": "34239" - } - }, - { - "pk": 32750, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-AUNES", - "center": "POINT (731587.4464516566367820 1849438.4745209405664355)", - "surface": 12600000, - "canton": null, - "numero_insee": "34240" - } - }, - { - "pk": 34661, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-BAUZILLE-DE-LA-SYLVE", - "center": "POINT (698779.3180207549594343 1846056.8603202307131141)", - "surface": 8570000, - "canton": null, - "numero_insee": "34241" - } - }, - { - "pk": 21451, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-BAUZILLE-DE-MONTMEL", - "center": "POINT (730052.5676276343874633 1865142.9538538448978215)", - "surface": 21360000, - "canton": null, - "numero_insee": "34242" - } - }, - { - "pk": 6590, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-BAUZILLE-DE-PUTOIS", - "center": "POINT (714320.9738251343369484 1878624.5222822716459632)", - "surface": 18320000, - "canton": null, - "numero_insee": "34243" - } - }, - { - "pk": 5018, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-BRES", - "center": "POINT (737362.9196392958983779 1853091.5490304685663432)", - "surface": 4800000, - "canton": null, - "numero_insee": "34244" - } - }, - { - "pk": 23959, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-CHINIAN", - "center": "POINT (648204.0641241896664724 1824505.7852794157806784)", - "surface": 22930000, - "canton": null, - "numero_insee": "34245" - } - }, - { - "pk": 9315, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-CHRISTOL", - "center": "POINT (740011.3142932216869667 1859521.1898201971780509)", - "surface": 11290000, - "canton": null, - "numero_insee": "34246" - } - }, - { - "pk": 23788, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-CLEMENT-DE-RIVIERE", - "center": "POINT (721629.5123272705823183 1854960.2369285719469190)", - "surface": 12810000, - "canton": null, - "numero_insee": "34247" - } - }, - { - "pk": 36285, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINTE-CROIX-DE-QUINTILLARGUES", - "center": "POINT (726857.7432844955474138 1864114.7278642160817981)", - "surface": 6570000, - "canton": null, - "numero_insee": "34248" - } - }, - { - "pk": 6748, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-DREZERY", - "center": "POINT (732299.8950097641209140 1859856.1417848279234022)", - "surface": 10470000, - "canton": null, - "numero_insee": "34249" - } - }, - { - "pk": 3859, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-ETIENNE-D'ALBAGNAN", - "center": "POINT (642798.0454805884510279 1836373.7163981217890978)", - "surface": 22500000, - "canton": null, - "numero_insee": "34250" - } - }, - { - "pk": 23994, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-ETIENNE-DE-GOURGAS", - "center": "POINT (684401.8785464469110593 1865156.6408164990134537)", - "surface": 19600000, - "canton": null, - "numero_insee": "34251" - } - }, - { - "pk": 28694, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-ETIENNE-ESTRECHOUX", - "center": "POINT (661994.2785542045021430 1851252.1009791744872928)", - "surface": 3490000, - "canton": null, - "numero_insee": "34252" - } - }, - { - "pk": 28923, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-FELIX-DE-L'HERAS", - "center": "POINT (678643.5144308077869937 1871314.8227715773973614)", - "surface": 12660000, - "canton": null, - "numero_insee": "34253" - } - }, - { - "pk": 35125, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-FELIX-DE-LODEZ", - "center": "POINT (691424.2170660449191928 1851600.8894465905614197)", - "surface": 4430000, - "canton": null, - "numero_insee": "34254" - } - }, - { - "pk": 29597, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GELY-DU-FESC", - "center": "POINT (718824.0404001843417063 1855236.7775366269052029)", - "surface": 16510000, - "canton": null, - "numero_insee": "34255" - } - }, - { - "pk": 4198, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GENIES-DES-MOURGUES", - "center": "POINT (737233.9060134115861729 1856494.2516269246116281)", - "surface": 10950000, - "canton": null, - "numero_insee": "34256" - } - }, - { - "pk": 30839, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GENIES-DE-VARENSAL", - "center": "POINT (653760.3653962448006496 1854185.9909171182662249)", - "surface": 11960000, - "canton": null, - "numero_insee": "34257" - } - }, - { - "pk": 21305, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GENIES-DE-FONTEDIT", - "center": "POINT (667880.2781951876822859 1829977.7960367354098707)", - "surface": 9360000, - "canton": null, - "numero_insee": "34258" - } - }, - { - "pk": 20915, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GEORGES-D'ORQUES", - "center": "POINT (716089.8623564324807376 1847104.5261372330132872)", - "surface": 9300000, - "canton": null, - "numero_insee": "34259" - } - }, - { - "pk": 15094, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GERVAIS-SUR-MARE", - "center": "POINT (657583.7594923438737169 1851915.6699950115289539)", - "surface": 24170000, - "canton": null, - "numero_insee": "34260" - } - }, - { - "pk": 18115, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GUILHEM-LE-DESERT", - "center": "POINT (697439.9345258662942797 1862363.7270795726217330)", - "surface": 38620000, - "canton": null, - "numero_insee": "34261" - } - }, - { - "pk": 6070, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-GUIRAUD", - "center": "POINT (690005.8146687849657610 1853591.1256878999993205)", - "surface": 6080000, - "canton": null, - "numero_insee": "34262" - } - }, - { - "pk": 5629, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-HILAIRE-DE-BEAUVOIR", - "center": "POINT (735679.6307462800759822 1862687.9555326194968075)", - "surface": 4590000, - "canton": null, - "numero_insee": "34263" - } - }, - { - "pk": 4652, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JEAN-DE-BUEGES", - "center": "POINT (702071.9151275909971446 1871012.4718421276193112)", - "surface": 16890000, - "canton": null, - "numero_insee": "34264" - } - }, - { - "pk": 12050, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JEAN-DE-CORNIES", - "center": "POINT (734386.7804399385349825 1861675.8645369380246848)", - "surface": 3020000, - "canton": null, - "numero_insee": "34265" - } - }, - { - "pk": 26041, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JEAN-DE-CUCULLES", - "center": "POINT (720667.4394724883604795 1862160.0981713915243745)", - "surface": 9090000, - "canton": null, - "numero_insee": "34266" - } - }, - { - "pk": 17960, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JEAN-DE-LA-BLAQUIERE", - "center": "POINT (688174.2982454122975469 1857079.5389628848060966)", - "surface": 17350000, - "canton": null, - "numero_insee": "34268" - } - }, - { - "pk": 17927, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JEAN-DE-MINERVOIS", - "center": "POINT (639114.5929420529864728 1822026.4675966175273061)", - "surface": 32770000, - "canton": null, - "numero_insee": "34269" - } - }, - { - "pk": 25590, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JEAN-DE-VEDAS", - "center": "POINT (720937.3576823507901281 1842140.0121203779708594)", - "surface": 13240000, - "canton": null, - "numero_insee": "34270" - } - }, - { - "pk": 21094, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JULIEN", - "center": "POINT (645748.0716159831499681 1842705.6728883683681488)", - "surface": 19360000, - "canton": null, - "numero_insee": "34271" - } - }, - { - "pk": 28938, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-JUST", - "center": "POINT (743378.5545159651665017 1852041.4271578683983535)", - "surface": 6160000, - "canton": null, - "numero_insee": "34272" - } - }, - { - "pk": 12328, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-MARTIN-DE-L'ARCON", - "center": "POINT (652360.0886248245369643 1842160.7351268208585680)", - "surface": 4200000, - "canton": null, - "numero_insee": "34273" - } - }, - { - "pk": 14463, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-MARTIN-DE-LONDRES", - "center": "POINT (710418.6626045466400683 1866578.2017901567742229)", - "surface": 38560000, - "canton": null, - "numero_insee": "34274" - } - }, - { - "pk": 22395, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-MATHIEU-DE-TREVIERS", - "center": "POINT (723553.4683728923555464 1864186.8016008299309760)", - "surface": 21800000, - "canton": null, - "numero_insee": "34276" - } - }, - { - "pk": 16656, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-MAURICE-NAVACELLES", - "center": "POINT (694153.5894694256130606 1872146.7641540314070880)", - "surface": 68940000, - "canton": null, - "numero_insee": "34277" - } - }, - { - "pk": 22306, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-MICHEL", - "center": "POINT (686049.4625428513390943 1871577.6537808799184859)", - "surface": 25490000, - "canton": null, - "numero_insee": "34278" - } - }, - { - "pk": 21544, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-NAZAIRE-DE-LADAREZ", - "center": "POINT (660126.4840524853207171 1835318.4635917781852186)", - "surface": 28290000, - "canton": null, - "numero_insee": "34279" - } - }, - { - "pk": 6547, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-NAZAIRE-DE-PEZAN", - "center": "POINT (743798.5402586921118200 1849742.4199907232541591)", - "surface": 5440000, - "canton": null, - "numero_insee": "34280" - } - }, - { - "pk": 17487, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-PARGOIRE", - "center": "POINT (697652.6260831258259714 1837237.4137129555456340)", - "surface": 23810000, - "canton": null, - "numero_insee": "34281" - } - }, - { - "pk": 28524, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-PAUL-ET-VALMALLE", - "center": "POINT (708484.4240440428256989 1846739.7290955442003906)", - "surface": 12830000, - "canton": null, - "numero_insee": "34282" - } - }, - { - "pk": 13045, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-PIERRE-DE-LA-FAGE", - "center": "POINT (687494.9337542905705050 1866384.1275279850233346)", - "surface": 18520000, - "canton": null, - "numero_insee": "34283" - } - }, - { - "pk": 16891, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-PONS-DE-THOMIERES", - "center": "POINT (633334.3431870611384511 1830787.7951931785792112)", - "surface": 41070000, - "canton": null, - "numero_insee": "34284" - } - }, - { - "pk": 4296, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-PONS-DE-MAUCHIENS", - "center": "POINT (695170.3152427407912910 1834813.6914769557770342)", - "surface": 13650000, - "canton": null, - "numero_insee": "34285" - } - }, - { - "pk": 18529, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-PRIVAT", - "center": "POINT (688236.3008467485196888 1861585.0718881308566779)", - "surface": 27000000, - "canton": null, - "numero_insee": "34286" - } - }, - { - "pk": 10495, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-SATURNIN-DE-LUCIAN", - "center": "POINT (691084.9451083544408903 1856203.1572554686572403)", - "surface": 9810000, - "canton": null, - "numero_insee": "34287" - } - }, - { - "pk": 32534, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-SERIES", - "center": "POINT (742602.9636846284847707 1860844.6579005718231201)", - "surface": 4650000, - "canton": null, - "numero_insee": "34288" - } - }, - { - "pk": 20479, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-THIBERY", - "center": "POINT (686270.8337036613374949 1821723.6416079523041844)", - "surface": 18560000, - "canton": null, - "numero_insee": "34289" - } - }, - { - "pk": 31330, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAINT-VINCENT-DE-BARBEYRARGUES", - "center": "POINT (724209.2969281803816557 1857685.1348545721266419)", - "surface": 2220000, - "canton": null, - "numero_insee": "34290" - } - }, - { - "pk": 24876, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SALASC", - "center": "POINT (678848.2494500901084393 1847089.6195891476236284)", - "surface": 9140000, - "canton": null, - "numero_insee": "34292" - } - }, - { - "pk": 20526, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LA SALVETAT-SUR-AGOUT", - "center": "POINT (628313.7360035317251459 1844460.9944118647836149)", - "surface": 90070000, - "canton": null, - "numero_insee": "34293" - } - }, - { - "pk": 8685, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAUSSAN", - "center": "POINT (716835.5825908004771918 1841804.8900781911797822)", - "surface": 3660000, - "canton": null, - "numero_insee": "34295" - } - }, - { - "pk": 9064, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAUSSINES", - "center": "POINT (738176.2763257583137602 1863409.9390118499286473)", - "surface": 6300000, - "canton": null, - "numero_insee": "34296" - } - }, - { - "pk": 8697, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SAUVIAN", - "center": "POINT (674554.6331773368874565 1810211.5687289163470268)", - "surface": 13120000, - "canton": null, - "numero_insee": "34298" - } - }, - { - "pk": 37303, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SERIGNAN", - "center": "POINT (678074.4755662881070748 1808339.1252188659273088)", - "surface": 27450000, - "canton": null, - "numero_insee": "34299" - } - }, - { - "pk": 3360, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SERVIAN", - "center": "POINT (678643.2539586034836248 1823961.7807631390169263)", - "surface": 40970000, - "canton": null, - "numero_insee": "34300" - } - }, - { - "pk": 12946, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SETE", - "center": "POINT (706292.2058698013424873 1821893.0965094477869570)", - "surface": 41790000, - "canton": null, - "numero_insee": "34301" - } - }, - { - "pk": 4300, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SIRAN", - "center": "POINT (626465.8744029309600592 1814211.1978087360039353)", - "surface": 21010000, - "canton": null, - "numero_insee": "34302" - } - }, - { - "pk": 3295, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SORBS", - "center": "POINT (686002.0559645661851391 1877183.4241056812461466)", - "surface": 20360000, - "canton": null, - "numero_insee": "34303" - } - }, - { - "pk": 11833, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SOUBES", - "center": "POINT (681802.5669919401407242 1864734.2213052050210536)", - "surface": 12230000, - "canton": null, - "numero_insee": "34304" - } - }, - { - "pk": 14377, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE SOULIE", - "center": "POINT (628568.7002863000379875 1837955.8242921694181859)", - "surface": 40450000, - "canton": null, - "numero_insee": "34305" - } - }, - { - "pk": 36989, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "SUSSARGUES", - "center": "POINT (733719.2029412633273751 1857765.8530168239958584)", - "surface": 6460000, - "canton": null, - "numero_insee": "34307" - } - }, - { - "pk": 17491, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "TAUSSAC-LA-BILLIERE", - "center": "POINT (659718.0534275318495929 1848129.4227070796769112)", - "surface": 14620000, - "canton": null, - "numero_insee": "34308" - } - }, - { - "pk": 11117, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "TEYRAN", - "center": "POINT (728437.4659065514570102 1854917.8900904371403158)", - "surface": 10160000, - "canton": null, - "numero_insee": "34309" - } - }, - { - "pk": 29798, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "THEZAN-LES-BEZIERS", - "center": "POINT (666631.2947101396275684 1823760.2063116477802396)", - "surface": 13670000, - "canton": null, - "numero_insee": "34310" - } - }, - { - "pk": 4266, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "TOURBES", - "center": "POINT (684021.9312375152949244 1827210.8859780025668442)", - "surface": 16100000, - "canton": null, - "numero_insee": "34311" - } - }, - { - "pk": 16934, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LA TOUR-SUR-ORB", - "center": "POINT (665803.3282955302856863 1850683.5799425048753619)", - "surface": 30880000, - "canton": null, - "numero_insee": "34312" - } - }, - { - "pk": 8292, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "TRESSAN", - "center": "POINT (693008.7977665864164010 1841803.2986336923204362)", - "surface": 3890000, - "canton": null, - "numero_insee": "34313" - } - }, - { - "pk": 27648, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LE TRIADOU", - "center": "POINT (722583.0016790665686131 1860574.5676116538234055)", - "surface": 6250000, - "canton": null, - "numero_insee": "34314" - } - }, - { - "pk": 28096, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "USCLAS-D'HERAULT", - "center": "POINT (691454.5392135219881311 1836183.8322886291425675)", - "surface": 2790000, - "canton": null, - "numero_insee": "34315" - } - }, - { - "pk": 33011, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "USCLAS-DU-BOSC", - "center": "POINT (685654.7604299541562796 1859060.4583975698333234)", - "surface": 4500000, - "canton": null, - "numero_insee": "34316" - } - }, - { - "pk": 37194, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VACQUIERES", - "center": "POINT (729903.1788059815298766 1870948.1085998979397118)", - "surface": 14670000, - "canton": null, - "numero_insee": "34318" - } - }, - { - "pk": 26018, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VAILHAN", - "center": "POINT (677910.6452253146562725 1839573.2623405258636922)", - "surface": 11320000, - "canton": null, - "numero_insee": "34319" - } - }, - { - "pk": 18778, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VAILHAUQUES", - "center": "POINT (712341.8564264730084687 1852278.5806167558766901)", - "surface": 16170000, - "canton": null, - "numero_insee": "34320" - } - }, - { - "pk": 27863, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VALERGUES", - "center": "POINT (739058.7453683649655432 1853806.7368646115064621)", - "surface": 5230000, - "canton": null, - "numero_insee": "34321" - } - }, - { - "pk": 29030, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VALFLAUNES", - "center": "POINT (722821.3204519168939441 1867884.6925350604578853)", - "surface": 21430000, - "canton": null, - "numero_insee": "34322" - } - }, - { - "pk": 11797, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VALMASCLE", - "center": "POINT (677867.5019073698204011 1844678.6370424847118556)", - "surface": 6910000, - "canton": null, - "numero_insee": "34323" - } - }, - { - "pk": 31060, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VALRAS-PLAGE", - "center": "POINT (677498.3600637196796015 1805430.9194544791243970)", - "surface": 3170000, - "canton": null, - "numero_insee": "34324" - } - }, - { - "pk": 25618, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VALROS", - "center": "POINT (683042.8708190401084721 1824599.6518092209007591)", - "surface": 6720000, - "canton": null, - "numero_insee": "34325" - } - }, - { - "pk": 20923, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VELIEUX", - "center": "POINT (633117.4519803569419309 1820874.7164691721554846)", - "surface": 10190000, - "canton": null, - "numero_insee": "34326" - } - }, - { - "pk": 28300, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VENDARGUES", - "center": "POINT (731262.4868141814367846 1852338.9634805542882532)", - "surface": 9210000, - "canton": null, - "numero_insee": "34327" - } - }, - { - "pk": 24026, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VENDRES", - "center": "POINT (672382.7034792543854564 1806589.0832653185352683)", - "surface": 37900000, - "canton": null, - "numero_insee": "34329" - } - }, - { - "pk": 10347, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VERARGUES", - "center": "POINT (741727.5449730944819748 1857833.8771731310989708)", - "surface": 5580000, - "canton": null, - "numero_insee": "34330" - } - }, - { - "pk": 36308, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VERRERIES-DE-MOUSSANS", - "center": "POINT (627756.1916167623130605 1827437.1051918785087764)", - "surface": 18900000, - "canton": null, - "numero_insee": "34331" - } - }, - { - "pk": 12186, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VIAS", - "center": "POINT (686246.0693314375821501 1812813.2553081447258592)", - "surface": 32780000, - "canton": null, - "numero_insee": "34332" - } - }, - { - "pk": 5998, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VIC-LA-GARDIOLE", - "center": "POINT (718815.6854321046266705 1832611.2883043484762311)", - "surface": 30660000, - "canton": null, - "numero_insee": "34333" - } - }, - { - "pk": 18029, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VIEUSSAN", - "center": "POINT (653698.6029731479939073 1837767.0651122028939426)", - "surface": 28040000, - "canton": null, - "numero_insee": "34334" - } - }, - { - "pk": 23037, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VILLEMAGNE-L'ARGENTIERE", - "center": "POINT (663435.4547929982654750 1846558.9988545160740614)", - "surface": 7970000, - "canton": null, - "numero_insee": "34335" - } - }, - { - "pk": 24025, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VILLENEUVE-LES-BEZIERS", - "center": "POINT (677432.3789490292547271 1813239.3246992225758731)", - "surface": 17330000, - "canton": null, - "numero_insee": "34336" - } - }, - { - "pk": 21570, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VILLENEUVE-LES-MAGUELONE", - "center": "POINT (723182.9872510338900611 1837053.3084499505348504)", - "surface": 31400000, - "canton": null, - "numero_insee": "34337" - } - }, - { - "pk": 19155, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VILLENEUVETTE", - "center": "POINT (685966.7109753616387025 1845848.3392602778039873)", - "surface": 3120000, - "canton": null, - "numero_insee": "34338" - } - }, - { - "pk": 7337, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VILLESPASSANS", - "center": "POINT (646639.4795613322639838 1820087.5851990147493780)", - "surface": 13940000, - "canton": null, - "numero_insee": "34339" - } - }, - { - "pk": 26838, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VILLETELLE", - "center": "POINT (745215.8793933549895883 1859665.5282513014972210)", - "surface": 5530000, - "canton": null, - "numero_insee": "34340" - } - }, - { - "pk": 16530, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VILLEVEYRAC", - "center": "POINT (701785.7825983063085005 1833868.5628368358593434)", - "surface": 37260000, - "canton": null, - "numero_insee": "34341" - } - }, - { - "pk": 25047, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VIOLS-EN-LAVAL", - "center": "POINT (713166.4317200293298811 1861295.6070239346008748)", - "surface": 16170000, - "canton": null, - "numero_insee": "34342" - } - }, - { - "pk": 16241, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "VIOLS-LE-FORT", - "center": "POINT (709270.0096778358565643 1860361.5840147126000375)", - "surface": 16870000, - "canton": null, - "numero_insee": "34343" - } - }, - { - "pk": 32086, - "model": "ishtar_common.town", - "fields": { - "departement": 35, - "name": "LA GRANDE-MOTTE", - "center": "POINT (740658.9722603806294501 1842207.3146181635092944)", - "surface": 13910000, - "canton": null, - "numero_insee": "34344" - } - }, - { - "pk": 8825, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ACIGNE", - "center": "POINT (313175.1216903901076876 2356726.9083302323706448)", - "surface": 30150000, - "canton": null, - "numero_insee": "35001" - } - }, - { - "pk": 29203, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "AMANLIS", - "center": "POINT (314109.7099470110842958 2340322.3128923485055566)", - "surface": 25570000, - "canton": null, - "numero_insee": "35002" - } - }, - { - "pk": 31473, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ANDOUILLE-NEUVILLE", - "center": "POINT (308232.2120281478273682 2373799.0769023206084967)", - "surface": 12680000, - "canton": null, - "numero_insee": "35003" - } - }, - { - "pk": 20893, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ANTRAIN", - "center": "POINT (317793.9026027297950350 2391589.8797470396384597)", - "surface": 9420000, - "canton": null, - "numero_insee": "35004" - } - }, - { - "pk": 10971, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ARBRISSEL", - "center": "POINT (328592.4265030437381938 2331533.9793266798369586)", - "surface": 4600000, - "canton": null, - "numero_insee": "35005" - } - }, - { - "pk": 23785, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ARGENTRE-DU-PLESSIS", - "center": "POINT (340896.0967204009648412 2344444.3260301789268851)", - "surface": 41140000, - "canton": null, - "numero_insee": "35006" - } - }, - { - "pk": 9042, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "AUBIGNE", - "center": "POINT (305728.1139598243753426 2374078.8570700772106647)", - "surface": 2210000, - "canton": null, - "numero_insee": "35007" - } - }, - { - "pk": 19442, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "AVAILLES-SUR-SEICHE", - "center": "POINT (336973.6562894926173612 2334604.8393499399535358)", - "surface": 11060000, - "canton": null, - "numero_insee": "35008" - } - }, - { - "pk": 3158, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAGUER-MORVAN", - "center": "POINT (296431.2117075818241574 2397419.7982492027804255)", - "surface": 24370000, - "canton": null, - "numero_insee": "35009" - } - }, - { - "pk": 14675, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAGUER-PICAN", - "center": "POINT (302596.8226190725108609 2402173.3932574903592467)", - "surface": 16110000, - "canton": null, - "numero_insee": "35010" - } - }, - { - "pk": 9106, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAILLE", - "center": "POINT (324888.4007596171577461 2380639.9865389345213771)", - "surface": 5270000, - "canton": null, - "numero_insee": "35011" - } - }, - { - "pk": 14495, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAIN-DE-BRETAGNE", - "center": "POINT (299646.6372497113770805 2322190.5753989354707301)", - "surface": 65950000, - "canton": null, - "numero_insee": "35012" - } - }, - { - "pk": 21783, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAINS-SUR-OUST", - "center": "POINT (269017.0969337656279095 2310632.3347788620740175)", - "surface": 45080000, - "canton": null, - "numero_insee": "35013" - } - }, - { - "pk": 17575, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAIS", - "center": "POINT (328316.1620727459085174 2340838.7400061739608645)", - "surface": 35170000, - "canton": null, - "numero_insee": "35014" - } - }, - { - "pk": 17632, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BALAZE", - "center": "POINT (338274.7799505129223689 2359033.6999225486069918)", - "surface": 36410000, - "canton": null, - "numero_insee": "35015" - } - }, - { - "pk": 4725, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAULON", - "center": "POINT (281776.1374549387837760 2341459.6559076504781842)", - "surface": 25180000, - "canton": null, - "numero_insee": "35016" - } - }, - { - "pk": 5541, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA BAUSSAINE", - "center": "POINT (285993.1122071468853392 2376619.9190846728160977)", - "surface": 9760000, - "canton": null, - "numero_insee": "35017" - } - }, - { - "pk": 26112, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA BAZOUGE-DU-DESERT", - "center": "POINT (345040.1069452919764444 2388310.2697677621617913)", - "surface": 25100000, - "canton": null, - "numero_insee": "35018" - } - }, - { - "pk": 23191, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BAZOUGES-LA-PEROUSE", - "center": "POINT (311406.1148332314915024 2389536.2857936611399055)", - "surface": 57850000, - "canton": null, - "numero_insee": "35019" - } - }, - { - "pk": 24717, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BEAUCE", - "center": "POINT (341123.5547673312248662 2377770.6602465249598026)", - "surface": 8410000, - "canton": null, - "numero_insee": "35021" - } - }, - { - "pk": 10355, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BECHEREL", - "center": "POINT (282503.8446843730052933 2374990.3434333982877433)", - "surface": 550000, - "canton": null, - "numero_insee": "35022" - } - }, - { - "pk": 21228, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BEDEE", - "center": "POINT (281301.5656616435735486 2362871.7124843457713723)", - "surface": 39410000, - "canton": null, - "numero_insee": "35023" - } - }, - { - "pk": 21153, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BETTON", - "center": "POINT (303832.9381870192592032 2361053.8894505146890879)", - "surface": 26730000, - "canton": null, - "numero_insee": "35024" - } - }, - { - "pk": 14906, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BILLE", - "center": "POINT (333764.5628860469441861 2372106.3671031957492232)", - "surface": 17000000, - "canton": null, - "numero_insee": "35025" - } - }, - { - "pk": 14912, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BLERUAIS", - "center": "POINT (268550.7712936647003517 2355662.7146706553176045)", - "surface": 3350000, - "canton": null, - "numero_insee": "35026" - } - }, - { - "pk": 18398, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BOISGERVILLY", - "center": "POINT (271308.7080847334000282 2361089.1387852132320404)", - "surface": 20060000, - "canton": null, - "numero_insee": "35027" - } - }, - { - "pk": 19644, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BOISTRUDAN", - "center": "POINT (321340.0007909346604720 2337279.0605806023813784)", - "surface": 12960000, - "canton": null, - "numero_insee": "35028" - } - }, - { - "pk": 15545, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BONNEMAIN", - "center": "POINT (296962.5328408358618617 2393621.4351708814501762)", - "surface": 24050000, - "canton": null, - "numero_insee": "35029" - } - }, - { - "pk": 9740, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA BOSSE-DE-BRETAGNE", - "center": "POINT (306420.3553788745775819 2326048.7608768101781607)", - "surface": 10580000, - "canton": null, - "numero_insee": "35030" - } - }, - { - "pk": 16919, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA BOUEXIERE", - "center": "POINT (319357.2105678017251194 2359479.4063890329562128)", - "surface": 49710000, - "canton": null, - "numero_insee": "35031" - } - }, - { - "pk": 35610, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BOURGBARRE", - "center": "POINT (304508.8451233426458202 2339543.3961332533508539)", - "surface": 14770000, - "canton": null, - "numero_insee": "35032" - } - }, - { - "pk": 18104, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BOURG-DES-COMPTES", - "center": "POINT (296660.5460554850287735 2332474.0763573800213635)", - "surface": 23400000, - "canton": null, - "numero_insee": "35033" - } - }, - { - "pk": 4526, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA BOUSSAC", - "center": "POINT (305530.5117938744369894 2398294.5770111009478569)", - "surface": 21910000, - "canton": null, - "numero_insee": "35034" - } - }, - { - "pk": 18177, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BOVEL", - "center": "POINT (279208.5705331561039202 2337235.5828688619658351)", - "surface": 14630000, - "canton": null, - "numero_insee": "35035" - } - }, - { - "pk": 18964, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BREAL-SOUS-MONTFORT", - "center": "POINT (286737.1733559336862527 2346703.9648957811295986)", - "surface": 33890000, - "canton": null, - "numero_insee": "35037" - } - }, - { - "pk": 37778, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BREAL-SOUS-VITRE", - "center": "POINT (346862.4625187579076737 2349096.6332769542932510)", - "surface": 5780000, - "canton": null, - "numero_insee": "35038" - } - }, - { - "pk": 36032, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BRECE", - "center": "POINT (315109.9140651443158276 2352639.6745575238019228)", - "surface": 7250000, - "canton": null, - "numero_insee": "35039" - } - }, - { - "pk": 10127, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BRETEIL", - "center": "POINT (283948.9427534578717314 2357289.1391472485847771)", - "surface": 14900000, - "canton": null, - "numero_insee": "35040" - } - }, - { - "pk": 36707, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BRIE", - "center": "POINT (309649.1138265219051391 2335081.9611511132679880)", - "surface": 13690000, - "canton": null, - "numero_insee": "35041" - } - }, - { - "pk": 14522, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BROUALAN", - "center": "POINT (304366.4812760861823335 2393781.8915901398286223)", - "surface": 12880000, - "canton": null, - "numero_insee": "35044" - } - }, - { - "pk": 30582, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "BRUC-SUR-AFF", - "center": "POINT (274931.7682770876563154 2321688.9589240159839392)", - "surface": 21130000, - "canton": null, - "numero_insee": "35045" - } - }, - { - "pk": 11787, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LES BRULAIS", - "center": "POINT (271558.6199530724552460 2330368.1647495692595840)", - "surface": 12050000, - "canton": null, - "numero_insee": "35046" - } - }, - { - "pk": 26643, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CAMPEL", - "center": "POINT (275518.2354071789886802 2335704.4089588597416878)", - "surface": 11100000, - "canton": null, - "numero_insee": "35048" - } - }, - { - "pk": 5689, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CANCALE", - "center": "POINT (290562.0617347572115250 2417686.1712782625108957)", - "surface": 12650000, - "canton": null, - "numero_insee": "35049" - } - }, - { - "pk": 34365, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CARDROC", - "center": "POINT (286118.4445574151468463 2373518.6901677106507123)", - "surface": 7350000, - "canton": null, - "numero_insee": "35050" - } - }, - { - "pk": 22228, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CESSON-SEVIGNE", - "center": "POINT (307192.3229545871727169 2354076.1341285649687052)", - "surface": 32100000, - "canton": null, - "numero_insee": "35051" - } - }, - { - "pk": 5860, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHAMPEAUX", - "center": "POINT (329200.6080728888628073 2355056.5626908275298774)", - "surface": 10360000, - "canton": null, - "numero_insee": "35052" - } - }, - { - "pk": 28709, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHANCE", - "center": "POINT (323590.0369582117418759 2343602.1910552633926272)", - "surface": 5150000, - "canton": null, - "numero_insee": "35053" - } - }, - { - "pk": 20245, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHANTELOUP", - "center": "POINT (304140.4200051419320516 2335637.4464701591059566)", - "surface": 17980000, - "canton": null, - "numero_insee": "35054" - } - }, - { - "pk": 12170, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHANTEPIE", - "center": "POINT (306426.9039053775486536 2349766.6905266824178398)", - "surface": 12000000, - "canton": null, - "numero_insee": "35055" - } - }, - { - "pk": 4104, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-AUX-FILTZMEENS", - "center": "POINT (292237.7248779149376787 2383976.0624718037433922)", - "surface": 6410000, - "canton": null, - "numero_insee": "35056" - } - }, - { - "pk": 21130, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-BOUEXIC", - "center": "POINT (281829.1058114116895013 2334955.1802095314487815)", - "surface": 20760000, - "canton": null, - "numero_insee": "35057" - } - }, - { - "pk": 21521, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-CHAUSSEE", - "center": "POINT (288137.7004265123978257 2371333.5380225726403296)", - "surface": 14810000, - "canton": null, - "numero_insee": "35058" - } - }, - { - "pk": 31217, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-DES-FOUGERETZ", - "center": "POINT (296829.0663257202249952 2360896.6855522068217397)", - "surface": 8650000, - "canton": null, - "numero_insee": "35059" - } - }, - { - "pk": 18204, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-DU-LOU", - "center": "POINT (278366.2305958362412639 2366950.8263388648629189)", - "surface": 7270000, - "canton": null, - "numero_insee": "35060" - } - }, - { - "pk": 22049, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-ERBREE", - "center": "POINT (345016.9744577554520220 2354485.5200512544251978)", - "surface": 11830000, - "canton": null, - "numero_insee": "35061" - } - }, - { - "pk": 22430, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-JANSON", - "center": "POINT (346240.0092455268022604 2376211.4111254424788058)", - "surface": 27030000, - "canton": null, - "numero_insee": "35062" - } - }, - { - "pk": 18963, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-SAINT-AUBERT", - "center": "POINT (329144.3414873454021290 2374170.0929289418272674)", - "surface": 10000000, - "canton": null, - "numero_insee": "35063" - } - }, - { - "pk": 8569, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-DE-BRAIN", - "center": "POINT (279543.2988544460968114 2308416.2163859843276441)", - "surface": 17800000, - "canton": null, - "numero_insee": "35064" - } - }, - { - "pk": 31681, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA CHAPELLE-THOUARAULT", - "center": "POINT (287765.3610827998491004 2355618.9680296345613897)", - "surface": 7740000, - "canton": null, - "numero_insee": "35065" - } - }, - { - "pk": 35703, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHARTRES-DE-BRETAGNE", - "center": "POINT (298550.9258621533517726 2346099.7413558005355299)", - "surface": 10030000, - "canton": null, - "numero_insee": "35066" - } - }, - { - "pk": 4696, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHASNE-SUR-ILLET", - "center": "POINT (309691.1371290617971681 2366705.8128451257944107)", - "surface": 9650000, - "canton": null, - "numero_insee": "35067" - } - }, - { - "pk": 18164, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHATEAUBOURG", - "center": "POINT (321509.3290852178470232 2353292.4121817345730960)", - "surface": 28880000, - "canton": null, - "numero_insee": "35068" - } - }, - { - "pk": 9299, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHATEAUGIRON", - "center": "POINT (313969.5886930769775063 2345224.8442409713752568)", - "surface": 8220000, - "canton": null, - "numero_insee": "35069" - } - }, - { - "pk": 12698, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHATEAUNEUF-D'ILLE-ET-VILAINE", - "center": "POINT (285070.1840289980173111 2403931.8870805567130446)", - "surface": 1430000, - "canton": null, - "numero_insee": "35070" - } - }, - { - "pk": 22217, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE CHATELLIER", - "center": "POINT (334844.9780500448541716 2386825.8007530346512794)", - "surface": 13480000, - "canton": null, - "numero_insee": "35071" - } - }, - { - "pk": 15983, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHAUVIGNE", - "center": "POINT (319273.2958786531817168 2381995.0999681791290641)", - "surface": 17990000, - "canton": null, - "numero_insee": "35075" - } - }, - { - "pk": 35871, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHAVAGNE", - "center": "POINT (292733.9207055004662834 2347653.5064631416462362)", - "surface": 12500000, - "canton": null, - "numero_insee": "35076" - } - }, - { - "pk": 37879, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHERRUEIX", - "center": "POINT (301154.3098675601650029 2407265.2060659588314593)", - "surface": 12940000, - "canton": null, - "numero_insee": "35078" - } - }, - { - "pk": 13985, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CHEVAIGNE", - "center": "POINT (304794.4116837292676792 2365865.2593687539920211)", - "surface": 10400000, - "canton": null, - "numero_insee": "35079" - } - }, - { - "pk": 26913, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CINTRE", - "center": "POINT (285577.7337742521776818 2353899.8856517341919243)", - "surface": 8450000, - "canton": null, - "numero_insee": "35080" - } - }, - { - "pk": 13137, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CLAYES", - "center": "POINT (288417.7295644922996871 2361528.6413065488450229)", - "surface": 4320000, - "canton": null, - "numero_insee": "35081" - } - }, - { - "pk": 21378, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "COESMES", - "center": "POINT (319331.7943302854546346 2325853.9956234516575933)", - "surface": 23750000, - "canton": null, - "numero_insee": "35082" - } - }, - { - "pk": 21750, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "COGLES", - "center": "POINT (326209.9521937620011158 2390357.7374139735475183)", - "surface": 17270000, - "canton": null, - "numero_insee": "35083" - } - }, - { - "pk": 18378, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "COMBLESSAC", - "center": "POINT (269071.5327261268976144 2328546.5608532163314521)", - "surface": 17320000, - "canton": null, - "numero_insee": "35084" - } - }, - { - "pk": 37064, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "COMBOURG", - "center": "POINT (297820.1609880006872118 2386623.4339875127188861)", - "surface": 64070000, - "canton": null, - "numero_insee": "35085" - } - }, - { - "pk": 34933, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "COMBOURTILLE", - "center": "POINT (332588.3337745610624552 2369094.5597455292008817)", - "surface": 9200000, - "canton": null, - "numero_insee": "35086" - } - }, - { - "pk": 20281, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CORNILLE", - "center": "POINT (328050.5451688575558364 2348842.5522000044584274)", - "surface": 12580000, - "canton": null, - "numero_insee": "35087" - } - }, - { - "pk": 20022, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CORPS-NUDS", - "center": "POINT (308418.8744412885280326 2338674.6344732008874416)", - "surface": 22910000, - "canton": null, - "numero_insee": "35088" - } - }, - { - "pk": 8174, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA COUYERE", - "center": "POINT (313004.5186453862697817 2328604.4314125459641218)", - "surface": 11890000, - "canton": null, - "numero_insee": "35089" - } - }, - { - "pk": 26176, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CREVIN", - "center": "POINT (301658.2915293397381902 2333215.3749904697760940)", - "surface": 8460000, - "canton": null, - "numero_insee": "35090" - } - }, - { - "pk": 29993, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE CROUAIS", - "center": "POINT (266564.0611830677371472 2366154.3054998223669827)", - "surface": 6320000, - "canton": null, - "numero_insee": "35091" - } - }, - { - "pk": 15899, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "CUGUEN", - "center": "POINT (304598.4506805149139836 2389881.0082516106776893)", - "surface": 23820000, - "canton": null, - "numero_insee": "35092" - } - }, - { - "pk": 14670, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DINARD", - "center": "POINT (275699.1370773207163438 2411861.2143935272470117)", - "surface": 7550000, - "canton": null, - "numero_insee": "35093" - } - }, - { - "pk": 19574, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DINGE", - "center": "POINT (299978.6522687348769978 2379636.0040892134420574)", - "surface": 53550000, - "canton": null, - "numero_insee": "35094" - } - }, - { - "pk": 22986, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DOMAGNE", - "center": "POINT (321155.6811075456789695 2347585.2811736501753330)", - "surface": 29250000, - "canton": null, - "numero_insee": "35096" - } - }, - { - "pk": 17892, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DOMALAIN", - "center": "POINT (333131.7297430641483516 2339377.0118762999773026)", - "surface": 33600000, - "canton": null, - "numero_insee": "35097" - } - }, - { - "pk": 18051, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA DOMINELAIS", - "center": "POINT (299507.7256905169924721 2314683.6687814379110932)", - "surface": 32510000, - "canton": null, - "numero_insee": "35098" - } - }, - { - "pk": 16390, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DOMLOUP", - "center": "POINT (310944.6639354950166307 2348002.2316407565958798)", - "surface": 18750000, - "canton": null, - "numero_insee": "35099" - } - }, - { - "pk": 33187, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DOMPIERRE-DU-CHEMIN", - "center": "POINT (341397.4336875960580073 2368766.3755105440504849)", - "surface": 9790000, - "canton": null, - "numero_insee": "35100" - } - }, - { - "pk": 5597, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DOURDAIN", - "center": "POINT (323744.6144000457134098 2361416.6661220905371010)", - "surface": 13930000, - "canton": null, - "numero_insee": "35101" - } - }, - { - "pk": 22263, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "DROUGES", - "center": "POINT (331017.8311655551078729 2328651.6194510599598289)", - "surface": 11740000, - "canton": null, - "numero_insee": "35102" - } - }, - { - "pk": 4044, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "EANCE", - "center": "POINT (331289.2090061324997805 2319947.1920033027417958)", - "surface": 16670000, - "canton": null, - "numero_insee": "35103" - } - }, - { - "pk": 20945, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "EPINIAC", - "center": "POINT (301441.7619847037713043 2396560.0187985887750983)", - "surface": 24460000, - "canton": null, - "numero_insee": "35104" - } - }, - { - "pk": 20537, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ERBREE", - "center": "POINT (342842.5418137841625139 2351165.2615641299635172)", - "surface": 35870000, - "canton": null, - "numero_insee": "35105" - } - }, - { - "pk": 15743, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ERCE-EN-LAMEE", - "center": "POINT (306566.1720180877600797 2320445.6629011756740510)", - "surface": 39310000, - "canton": null, - "numero_insee": "35106" - } - }, - { - "pk": 17309, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ERCE-PRES-LIFFRE", - "center": "POINT (313878.4003734666039236 2368641.3930314928293228)", - "surface": 15870000, - "canton": null, - "numero_insee": "35107" - } - }, - { - "pk": 17320, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ESSE", - "center": "POINT (318661.8608973266091198 2334354.9801373896189034)", - "surface": 23440000, - "canton": null, - "numero_insee": "35108" - } - }, - { - "pk": 18746, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ETRELLES", - "center": "POINT (335270.1682948242523707 2347100.2821457977406681)", - "surface": 27920000, - "canton": null, - "numero_insee": "35109" - } - }, - { - "pk": 11835, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "FEINS", - "center": "POINT (306202.3112072756048292 2377285.0453520226292312)", - "surface": 20290000, - "canton": null, - "numero_insee": "35110" - } - }, - { - "pk": 25261, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "FLEURIGNE", - "center": "POINT (344514.3050282086478546 2379199.4393422049470246)", - "surface": 18080000, - "canton": null, - "numero_insee": "35112" - } - }, - { - "pk": 23995, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA FONTENELLE", - "center": "POINT (315387.4514404466026463 2392170.6493859547190368)", - "surface": 12250000, - "canton": null, - "numero_insee": "35113" - } - }, - { - "pk": 12439, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "FORGES-LA-FORET", - "center": "POINT (328452.0461777644813992 2324227.2726257820613682)", - "surface": 6080000, - "canton": null, - "numero_insee": "35114" - } - }, - { - "pk": 37582, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "FOUGERES", - "center": "POINT (338315.9875651245238259 2378448.1787266386672854)", - "surface": 10420000, - "canton": null, - "numero_insee": "35115" - } - }, - { - "pk": 12562, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA FRESNAIS", - "center": "POINT (292251.1194105453905649 2406892.4162103203125298)", - "surface": 14390000, - "canton": null, - "numero_insee": "35116" - } - }, - { - "pk": 31682, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GAEL", - "center": "POINT (260238.6575403434690088 2356395.7396981986239552)", - "surface": 52860000, - "canton": null, - "numero_insee": "35117" - } - }, - { - "pk": 18473, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GAHARD", - "center": "POINT (313246.9483472611755133 2372439.0035845856182277)", - "surface": 25050000, - "canton": null, - "numero_insee": "35118" - } - }, - { - "pk": 19416, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GENNES-SUR-SEICHE", - "center": "POINT (341041.2390152340522036 2338941.3886880641803145)", - "surface": 18560000, - "canton": null, - "numero_insee": "35119" - } - }, - { - "pk": 23607, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GEVEZE", - "center": "POINT (292691.2468859967193566 2365166.1121832574717700)", - "surface": 27710000, - "canton": null, - "numero_insee": "35120" - } - }, - { - "pk": 21656, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GOSNE", - "center": "POINT (318186.9742482216097414 2367976.0789060075767338)", - "surface": 18360000, - "canton": null, - "numero_insee": "35121" - } - }, - { - "pk": 35049, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA GOUESNIERE", - "center": "POINT (288432.4091480681672692 2408862.7041797251440585)", - "surface": 8830000, - "canton": null, - "numero_insee": "35122" - } - }, - { - "pk": 22874, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GOVEN", - "center": "POINT (288571.0159984396304935 2342715.9080584216862917)", - "surface": 40110000, - "canton": null, - "numero_insee": "35123" - } - }, - { - "pk": 4380, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GRAND-FOUGERAY", - "center": "POINT (295228.3550654238788411 2311746.5190811101347208)", - "surface": 55240000, - "canton": null, - "numero_insee": "35124" - } - }, - { - "pk": 7703, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA GUERCHE-DE-BRETAGNE", - "center": "POINT (332481.2018778873607516 2333267.0849116961471736)", - "surface": 11670000, - "canton": null, - "numero_insee": "35125" - } - }, - { - "pk": 18856, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GUICHEN", - "center": "POINT (291914.8747667775605805 2337639.3195631094276905)", - "surface": 43060000, - "canton": null, - "numero_insee": "35126" - } - }, - { - "pk": 17323, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GUIGNEN", - "center": "POINT (286346.0748283030698076 2333290.6837958628311753)", - "surface": 53160000, - "canton": null, - "numero_insee": "35127" - } - }, - { - "pk": 18469, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GUIPEL", - "center": "POINT (298726.7628981948364526 2373621.4502461380325258)", - "surface": 25450000, - "canton": null, - "numero_insee": "35128" - } - }, - { - "pk": 29377, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "GUIPRY", - "center": "POINT (286326.7202009672182612 2323382.9773194971494377)", - "surface": 50640000, - "canton": null, - "numero_insee": "35129" - } - }, - { - "pk": 11542, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "HEDE-BAZOUGES", - "center": "POINT (294813.5844832290895283 2374890.4875871795229614)", - "surface": 14760000, - "canton": null, - "numero_insee": "35130" - } - }, - { - "pk": 25202, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "L'HERMITAGE", - "center": "POINT (290871.5295860346523114 2355143.9081490729004145)", - "surface": 6880000, - "canton": null, - "numero_insee": "35131" - } - }, - { - "pk": 3333, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "HIREL", - "center": "POINT (294247.4937275606789626 2407509.1054032091051340)", - "surface": 9880000, - "canton": null, - "numero_insee": "35132" - } - }, - { - "pk": 22342, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "IFFENDIC", - "center": "POINT (275562.0130471107549965 2354919.1572679481469095)", - "surface": 74780000, - "canton": null, - "numero_insee": "35133" - } - }, - { - "pk": 30350, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LES IFFS", - "center": "POINT (288113.2438140533631667 2374335.5210299002937973)", - "surface": 4540000, - "canton": null, - "numero_insee": "35134" - } - }, - { - "pk": 17881, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "IRODOUER", - "center": "POINT (281648.8748597043449990 2369379.3045100937597454)", - "surface": 23550000, - "canton": null, - "numero_insee": "35135" - } - }, - { - "pk": 22683, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "JANZE", - "center": "POINT (313360.6564329561660998 2334011.4402552107349038)", - "surface": 41550000, - "canton": null, - "numero_insee": "35136" - } - }, - { - "pk": 4605, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "JAVENE", - "center": "POINT (337247.2121243975707330 2374536.6108121704310179)", - "surface": 18490000, - "canton": null, - "numero_insee": "35137" - } - }, - { - "pk": 19602, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LAILLE", - "center": "POINT (297520.3616938565974124 2337484.8730894876644015)", - "surface": 32070000, - "canton": null, - "numero_insee": "35139" - } - }, - { - "pk": 16149, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LALLEU", - "center": "POINT (311236.7760342283872887 2324486.8648638701997697)", - "surface": 15450000, - "canton": null, - "numero_insee": "35140" - } - }, - { - "pk": 24823, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANDAVRAN", - "center": "POINT (330581.9027568397577852 2357469.6359927500598133)", - "surface": 5190000, - "canton": null, - "numero_insee": "35141" - } - }, - { - "pk": 20644, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANDEAN", - "center": "POINT (342064.3898569535813294 2385083.6117790224961936)", - "surface": 28300000, - "canton": null, - "numero_insee": "35142" - } - }, - { - "pk": 4317, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANDUJAN", - "center": "POINT (277341.9470407615881413 2369844.6105855973437428)", - "surface": 14440000, - "canton": null, - "numero_insee": "35143" - } - }, - { - "pk": 19969, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANGAN", - "center": "POINT (289366.2163140492048115 2367941.0655781133100390)", - "surface": 7770000, - "canton": null, - "numero_insee": "35144" - } - }, - { - "pk": 23981, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANGON", - "center": "POINT (284416.6228212662390433 2312158.7824946315959096)", - "surface": 36510000, - "canton": null, - "numero_insee": "35145" - } - }, - { - "pk": 25103, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANGOUET", - "center": "POINT (292252.6481760782771744 2369865.9752325802110136)", - "surface": 7130000, - "canton": null, - "numero_insee": "35146" - } - }, - { - "pk": 35284, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANHELIN", - "center": "POINT (291771.4138615248375572 2392078.0559518109075725)", - "surface": 6510000, - "canton": null, - "numero_insee": "35147" - } - }, - { - "pk": 12632, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LANRIGAN", - "center": "POINT (301739.8348875020747073 2384553.8953137779608369)", - "surface": 4060000, - "canton": null, - "numero_insee": "35148" - } - }, - { - "pk": 23336, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LASSY", - "center": "POINT (286503.0034447875223123 2338595.9719351511448622)", - "surface": 9860000, - "canton": null, - "numero_insee": "35149" - } - }, - { - "pk": 15436, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LECOUSSE", - "center": "POINT (336407.3734609874081798 2379333.2046800348907709)", - "surface": 11090000, - "canton": null, - "numero_insee": "35150" - } - }, - { - "pk": 29142, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LIEURON", - "center": "POINT (280804.9421216832706705 2325539.6848696107044816)", - "surface": 16950000, - "canton": null, - "numero_insee": "35151" - } - }, - { - "pk": 17310, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LIFFRE", - "center": "POINT (313824.1017575301812030 2363036.8502238942310214)", - "surface": 66770000, - "canton": null, - "numero_insee": "35152" - } - }, - { - "pk": 11654, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LILLEMER", - "center": "POINT (290664.7798014620202594 2405078.2288620257750154)", - "surface": 3810000, - "canton": null, - "numero_insee": "35153" - } - }, - { - "pk": 9613, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LIVRE-SUR-CHANGEON", - "center": "POINT (326216.8271369762951508 2365039.5210211053490639)", - "surface": 26780000, - "canton": null, - "numero_insee": "35154" - } - }, - { - "pk": 8798, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LOHEAC", - "center": "POINT (283989.2442917825537734 2327767.2996745137497783)", - "surface": 5220000, - "canton": null, - "numero_insee": "35155" - } - }, - { - "pk": 29881, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LONGAULNAY", - "center": "POINT (282692.5697112069465220 2376392.8956117890775204)", - "surface": 7630000, - "canton": null, - "numero_insee": "35156" - } - }, - { - "pk": 6655, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE LOROUX", - "center": "POINT (346686.2290171260247007 2382819.8200024259276688)", - "surface": 11450000, - "canton": null, - "numero_insee": "35157" - } - }, - { - "pk": 10705, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE LOU-DU-LAC", - "center": "POINT (278085.5778921049786732 2364546.7818814367055893)", - "surface": 3220000, - "canton": null, - "numero_insee": "35158" - } - }, - { - "pk": 12986, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LOURMAIS", - "center": "POINT (298891.4996991507359780 2390234.7428571358323097)", - "surface": 7240000, - "canton": null, - "numero_insee": "35159" - } - }, - { - "pk": 24315, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LOUTEHEL", - "center": "POINT (270114.5040729896281846 2335660.4418217092752457)", - "surface": 7240000, - "canton": null, - "numero_insee": "35160" - } - }, - { - "pk": 4202, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LOUVIGNE-DE-BAIS", - "center": "POINT (326075.3756824458250776 2345624.0101754739880562)", - "surface": 15680000, - "canton": null, - "numero_insee": "35161" - } - }, - { - "pk": 22130, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LOUVIGNE-DU-DESERT", - "center": "POINT (344200.2505362209631130 2393106.8052259627729654)", - "surface": 42230000, - "canton": null, - "numero_insee": "35162" - } - }, - { - "pk": 16319, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LUITRE", - "center": "POINT (342774.5931316595524549 2371679.7639894327148795)", - "surface": 29310000, - "canton": null, - "numero_insee": "35163" - } - }, - { - "pk": 18843, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MARCILLE-RAOUL", - "center": "POINT (307361.4470030675875023 2382398.1834776559844613)", - "surface": 22230000, - "canton": null, - "numero_insee": "35164" - } - }, - { - "pk": 3266, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MARCILLE-ROBERT", - "center": "POINT (324459.3147403860930353 2335202.9775789584964514)", - "surface": 20460000, - "canton": null, - "numero_insee": "35165" - } - }, - { - "pk": 32728, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MARPIRE", - "center": "POINT (325489.1167125521460548 2356127.0220909821800888)", - "surface": 11280000, - "canton": null, - "numero_insee": "35166" - } - }, - { - "pk": 18065, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MARTIGNE-FERCHAUD", - "center": "POINT (325678.7379297234001569 2320701.9084003493189812)", - "surface": 74800000, - "canton": null, - "numero_insee": "35167" - } - }, - { - "pk": 30642, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MAURE-DE-BRETAGNE", - "center": "POINT (275957.6059559773420915 2330904.3416778547689319)", - "surface": 65380000, - "canton": null, - "numero_insee": "35168" - } - }, - { - "pk": 4780, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MAXENT", - "center": "POINT (275183.0097414757474326 2340004.9292318243533373)", - "surface": 40160000, - "canton": null, - "numero_insee": "35169" - } - }, - { - "pk": 11832, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MECE", - "center": "POINT (331009.3777474015951157 2366379.6706965868361294)", - "surface": 16220000, - "canton": null, - "numero_insee": "35170" - } - }, - { - "pk": 5783, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MEDREAC", - "center": "POINT (273525.5844732326222584 2371514.7975324825383723)", - "surface": 35250000, - "canton": null, - "numero_insee": "35171" - } - }, - { - "pk": 15903, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MEILLAC", - "center": "POINT (292202.6593560373294167 2388278.8587316097691655)", - "surface": 32590000, - "canton": null, - "numero_insee": "35172" - } - }, - { - "pk": 5300, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MELESSE", - "center": "POINT (300895.0802510540233925 2365433.1527174883522093)", - "surface": 32540000, - "canton": null, - "numero_insee": "35173" - } - }, - { - "pk": 37331, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MELLE", - "center": "POINT (339196.2191242808476090 2393165.9013098608702421)", - "surface": 15800000, - "canton": null, - "numero_insee": "35174" - } - }, - { - "pk": 16813, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MESSAC", - "center": "POINT (290258.8126372551196255 2319812.2568925726227462)", - "surface": 41540000, - "canton": null, - "numero_insee": "35176" - } - }, - { - "pk": 21262, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA MEZIERE", - "center": "POINT (296295.2788137100869790 2364995.3462408790364861)", - "surface": 16500000, - "canton": null, - "numero_insee": "35177" - } - }, - { - "pk": 20924, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MEZIERES-SUR-COUESNON", - "center": "POINT (319946.4632285829866305 2373094.1697924383915961)", - "surface": 25280000, - "canton": null, - "numero_insee": "35178" - } - }, - { - "pk": 37119, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MINIAC-MORVAN", - "center": "POINT (287402.6184234961983748 2400148.2059473954141140)", - "surface": 31630000, - "canton": null, - "numero_insee": "35179" - } - }, - { - "pk": 21070, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MINIAC-SOUS-BECHEREL", - "center": "POINT (283619.2376098258537240 2373198.1179168457165360)", - "surface": 13580000, - "canton": null, - "numero_insee": "35180" - } - }, - { - "pk": 11343, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE MINIHIC-SUR-RANCE", - "center": "POINT (279046.8197180373826995 2406284.5383817041292787)", - "surface": 3870000, - "canton": null, - "numero_insee": "35181" - } - }, - { - "pk": 11967, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONDEVERT", - "center": "POINT (344667.5313634160556830 2348278.0541426166892052)", - "surface": 5100000, - "canton": null, - "numero_insee": "35183" - } - }, - { - "pk": 24009, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTAUBAN-DE-BRETAGNE", - "center": "POINT (272877.2190019462141208 2365104.8409054325893521)", - "surface": 43730000, - "canton": null, - "numero_insee": "35184" - } - }, - { - "pk": 18482, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTAUTOUR", - "center": "POINT (342955.7968070797505789 2361774.0171816763468087)", - "surface": 6900000, - "canton": null, - "numero_insee": "35185" - } - }, - { - "pk": 21810, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONT-DOL", - "center": "POINT (297772.5525318466243334 2404735.8782121906988323)", - "surface": 26410000, - "canton": null, - "numero_insee": "35186" - } - }, - { - "pk": 19428, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTFORT-SUR-MEU", - "center": "POINT (279955.2097579932888038 2356155.8051023515872657)", - "surface": 14010000, - "canton": null, - "numero_insee": "35188" - } - }, - { - "pk": 11027, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTGERMONT", - "center": "POINT (298452.1728804997401312 2358207.9304334414191544)", - "surface": 4610000, - "canton": null, - "numero_insee": "35189" - } - }, - { - "pk": 6439, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTHAULT", - "center": "POINT (340472.4765238808467984 2396178.4749065516516566)", - "surface": 8320000, - "canton": null, - "numero_insee": "35190" - } - }, - { - "pk": 3615, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTOURS", - "center": "POINT (330720.2220794277964160 2389493.9812003574334085)", - "surface": 15530000, - "canton": null, - "numero_insee": "35191" - } - }, - { - "pk": 24230, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTREUIL-DES-LANDES", - "center": "POINT (335205.6145553605165333 2367214.5911703091114759)", - "surface": 9380000, - "canton": null, - "numero_insee": "35192" - } - }, - { - "pk": 22795, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTREUIL-LE-GAST", - "center": "POINT (298669.9481021349783987 2368317.1258487445302308)", - "surface": 9170000, - "canton": null, - "numero_insee": "35193" - } - }, - { - "pk": 3851, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTREUIL-SOUS-PEROUSE", - "center": "POINT (333694.6284280607360415 2356194.1447581574320793)", - "surface": 16140000, - "canton": null, - "numero_insee": "35194" - } - }, - { - "pk": 15548, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MONTREUIL-SUR-ILLE", - "center": "POINT (302919.7371294294134714 2374856.5224415012635291)", - "surface": 15280000, - "canton": null, - "numero_insee": "35195" - } - }, - { - "pk": 21405, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MORDELLES", - "center": "POINT (288701.8440883126459084 2351223.3302769958972931)", - "surface": 30320000, - "canton": null, - "numero_insee": "35196" - } - }, - { - "pk": 37290, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MOUAZE", - "center": "POINT (306903.1600877727032639 2364981.8097474365495145)", - "surface": 8340000, - "canton": null, - "numero_insee": "35197" - } - }, - { - "pk": 4392, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MOULINS", - "center": "POINT (324013.2192447072011419 2340803.5501807895489037)", - "surface": 15400000, - "canton": null, - "numero_insee": "35198" - } - }, - { - "pk": 29141, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MOUSSE", - "center": "POINT (329802.2620016979053617 2330443.0419431133195758)", - "surface": 3450000, - "canton": null, - "numero_insee": "35199" - } - }, - { - "pk": 4057, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MOUTIERS", - "center": "POINT (335555.4902404969907366 2336694.8156095333397388)", - "surface": 17840000, - "canton": null, - "numero_insee": "35200" - } - }, - { - "pk": 19953, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "MUEL", - "center": "POINT (265143.5932001848705113 2356235.4564500036649406)", - "surface": 29270000, - "canton": null, - "numero_insee": "35201" - } - }, - { - "pk": 15741, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA NOE-BLANCHE", - "center": "POINT (294272.2299230162170716 2318543.9755484717898071)", - "surface": 23100000, - "canton": null, - "numero_insee": "35202" - } - }, - { - "pk": 7916, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA NOUAYE", - "center": "POINT (279418.2150804512202740 2360654.7595786717720330)", - "surface": 2750000, - "canton": null, - "numero_insee": "35203" - } - }, - { - "pk": 15315, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "NOYAL-SOUS-BAZOUGES", - "center": "POINT (306821.9220112022594549 2387197.2231331402435899)", - "surface": 14980000, - "canton": null, - "numero_insee": "35205" - } - }, - { - "pk": 23818, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "NOYAL-CHATILLON-SUR-SEICHE", - "center": "POINT (301847.4595602907938883 2346827.1561341234482825)", - "surface": 26440000, - "canton": null, - "numero_insee": "35206" - } - }, - { - "pk": 20967, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "NOYAL-SUR-VILAINE", - "center": "POINT (313826.2000610864488408 2350527.6277717081829906)", - "surface": 31260000, - "canton": null, - "numero_insee": "35207" - } - }, - { - "pk": 20021, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ORGERES", - "center": "POINT (301208.2125947916065343 2339316.3128544515930116)", - "surface": 16760000, - "canton": null, - "numero_insee": "35208" - } - }, - { - "pk": 12996, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "OSSE", - "center": "POINT (317059.4365718942717649 2346751.2082160026766360)", - "surface": 9170000, - "canton": null, - "numero_insee": "35209" - } - }, - { - "pk": 33275, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PACE", - "center": "POINT (293947.5168166345683858 2358371.3480202821083367)", - "surface": 35050000, - "canton": null, - "numero_insee": "35210" - } - }, - { - "pk": 16151, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PAIMPONT", - "center": "POINT (263722.2941236819024198 2346416.5986011335626245)", - "surface": 110160000, - "canton": null, - "numero_insee": "35211" - } - }, - { - "pk": 21888, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PANCE", - "center": "POINT (302497.2227942628669553 2328518.6485478519462049)", - "surface": 19710000, - "canton": null, - "numero_insee": "35212" - } - }, - { - "pk": 19070, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PARIGNE", - "center": "POINT (338349.7021014491911046 2386554.2709766677580774)", - "surface": 20170000, - "canton": null, - "numero_insee": "35215" - } - }, - { - "pk": 3332, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PARTHENAY-DE-BRETAGNE", - "center": "POINT (290310.8477639243938029 2362544.8028398007154465)", - "surface": 4880000, - "canton": null, - "numero_insee": "35216" - } - }, - { - "pk": 4573, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE PERTRE", - "center": "POINT (347015.8290965701453388 2342593.0361831719055772)", - "surface": 43550000, - "canton": null, - "numero_insee": "35217" - } - }, - { - "pk": 9418, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE PETIT-FOUGERAY", - "center": "POINT (304663.6326006554882042 2332839.5963189867325127)", - "surface": 9090000, - "canton": null, - "numero_insee": "35218" - } - }, - { - "pk": 20556, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PIPRIAC", - "center": "POINT (279940.1657634123112075 2321129.2698216559365392)", - "surface": 49330000, - "canton": null, - "numero_insee": "35219" - } - }, - { - "pk": 18483, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PIRE-SUR-SEICHE", - "center": "POINT (319104.9577535220305435 2341363.8785730581730604)", - "surface": 36550000, - "canton": null, - "numero_insee": "35220" - } - }, - { - "pk": 5977, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLECHATEL", - "center": "POINT (295601.4014680940890685 2327361.5584457400254905)", - "surface": 36150000, - "canton": null, - "numero_insee": "35221" - } - }, - { - "pk": 3669, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLEINE-FOUGERES", - "center": "POINT (311123.4749633161118254 2399641.1428047781810164)", - "surface": 32560000, - "canton": null, - "numero_insee": "35222" - } - }, - { - "pk": 15736, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLELAN-LE-GRAND", - "center": "POINT (270461.0561108532128856 2342268.2423299914225936)", - "surface": 50200000, - "canton": null, - "numero_insee": "35223" - } - }, - { - "pk": 19068, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLERGUER", - "center": "POINT (291103.3532118683215231 2400378.4951361645944417)", - "surface": 20260000, - "canton": null, - "numero_insee": "35224" - } - }, - { - "pk": 21498, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLESDER", - "center": "POINT (284195.8393132284982130 2388413.7766239405609667)", - "surface": 11160000, - "canton": null, - "numero_insee": "35225" - } - }, - { - "pk": 4574, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLEUGUENEUC", - "center": "POINT (287411.7719089518650435 2386738.7513254256919026)", - "surface": 24790000, - "canton": null, - "numero_insee": "35226" - } - }, - { - "pk": 18468, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLEUMELEUC", - "center": "POINT (285510.0811838436056860 2362205.4697580765932798)", - "surface": 19660000, - "canton": null, - "numero_insee": "35227" - } - }, - { - "pk": 19855, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PLEURTUIT", - "center": "POINT (275636.5198961527785286 2407257.4905213713645935)", - "surface": 28890000, - "canton": null, - "numero_insee": "35228" - } - }, - { - "pk": 21260, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "POCE-LES-BOIS", - "center": "POINT (332225.5530031666276045 2352279.2352788280695677)", - "surface": 14940000, - "canton": null, - "numero_insee": "35229" - } - }, - { - "pk": 3616, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "POILLEY", - "center": "POINT (334207.7439247512375005 2391323.7947160089388490)", - "surface": 10770000, - "canton": null, - "numero_insee": "35230" - } - }, - { - "pk": 10241, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "POLIGNE", - "center": "POINT (299384.4554666330222972 2329794.2419473016634583)", - "surface": 9520000, - "canton": null, - "numero_insee": "35231" - } - }, - { - "pk": 19146, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PRINCE", - "center": "POINT (344328.0412936622160487 2365287.8223607460968196)", - "surface": 12290000, - "canton": null, - "numero_insee": "35232" - } - }, - { - "pk": 22627, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "QUEBRIAC", - "center": "POINT (292561.5705848626676016 2381076.6149177541956306)", - "surface": 20780000, - "canton": null, - "numero_insee": "35233" - } - }, - { - "pk": 34484, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "QUEDILLAC", - "center": "POINT (267239.3067066797520965 2369262.0655592628754675)", - "surface": 26710000, - "canton": null, - "numero_insee": "35234" - } - }, - { - "pk": 20079, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "RANNEE", - "center": "POINT (331636.2621992271742783 2326455.0043612304143608)", - "surface": 52550000, - "canton": null, - "numero_insee": "35235" - } - }, - { - "pk": 28541, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "REDON", - "center": "POINT (268362.1833919455530122 2305022.6437251446768641)", - "surface": 15320000, - "canton": null, - "numero_insee": "35236" - } - }, - { - "pk": 5337, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "RENAC", - "center": "POINT (277313.2182289685588330 2311900.7787335799075663)", - "surface": 26190000, - "canton": null, - "numero_insee": "35237" - } - }, - { - "pk": 16743, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "RENNES", - "center": "POINT (300792.9007967629586346 2353423.4688156852498651)", - "surface": 50350000, - "canton": null, - "numero_insee": "35238" - } - }, - { - "pk": 35153, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "RETIERS", - "center": "POINT (324907.0519948169239797 2329402.2420499385334551)", - "surface": 42100000, - "canton": null, - "numero_insee": "35239" - } - }, - { - "pk": 20350, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE RHEU", - "center": "POINT (293296.8048558207228780 2352261.5231708851642907)", - "surface": 19170000, - "canton": null, - "numero_insee": "35240" - } - }, - { - "pk": 13128, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA RICHARDAIS", - "center": "POINT (277013.7974066177848727 2410170.7242513434030116)", - "surface": 3180000, - "canton": null, - "numero_insee": "35241" - } - }, - { - "pk": 31940, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "RIMOU", - "center": "POINT (313756.6326047963229939 2383551.1849469547159970)", - "surface": 13560000, - "canton": null, - "numero_insee": "35242" - } - }, - { - "pk": 19614, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ROMAGNE", - "center": "POINT (333217.5631025799084455 2377806.0190648501738906)", - "surface": 27030000, - "canton": null, - "numero_insee": "35243" - } - }, - { - "pk": 30352, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ROMAZY", - "center": "POINT (316367.3171348927426152 2382471.7179181268438697)", - "surface": 7170000, - "canton": null, - "numero_insee": "35244" - } - }, - { - "pk": 23668, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ROMILLE", - "center": "POINT (286775.8996826397487894 2366518.9376218398101628)", - "surface": 28980000, - "canton": null, - "numero_insee": "35245" - } - }, - { - "pk": 32711, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ROZ-LANDRIEUX", - "center": "POINT (293290.0802020577248186 2402197.5828407402150333)", - "surface": 18080000, - "canton": null, - "numero_insee": "35246" - } - }, - { - "pk": 36824, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "ROZ-SUR-COUESNON", - "center": "POINT (310063.2091956272488460 2406937.6156113077886403)", - "surface": 26110000, - "canton": null, - "numero_insee": "35247" - } - }, - { - "pk": 35286, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINS", - "center": "POINT (309098.5120461065671407 2402526.6553178904578090)", - "surface": 10490000, - "canton": null, - "numero_insee": "35248" - } - }, - { - "pk": 23520, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINTE-ANNE-SUR-VILAINE", - "center": "POINT (289421.7974004442221485 2311999.4122171513736248)", - "surface": 28690000, - "canton": null, - "numero_insee": "35249" - } - }, - { - "pk": 4966, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-ARMEL", - "center": "POINT (307789.8698347513563931 2342172.1321653355844319)", - "surface": 7870000, - "canton": null, - "numero_insee": "35250" - } - }, - { - "pk": 19973, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-AUBIN-DES-LANDES", - "center": "POINT (329736.1441031040740199 2350757.7541393195278943)", - "surface": 10310000, - "canton": null, - "numero_insee": "35252" - } - }, - { - "pk": 21622, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-AUBIN-DU-CORMIER", - "center": "POINT (320982.2887778354343027 2368799.5055968491360545)", - "surface": 27560000, - "canton": null, - "numero_insee": "35253" - } - }, - { - "pk": 37004, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-AUBIN-DU-PAVAIL", - "center": "POINT (316974.9033853226574138 2344849.0968727720901370)", - "surface": 5920000, - "canton": null, - "numero_insee": "35254" - } - }, - { - "pk": 9654, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-BENOIT-DES-ONDES", - "center": "POINT (290525.5848872728529386 2409880.4541908171959221)", - "surface": 2890000, - "canton": null, - "numero_insee": "35255" - } - }, - { - "pk": 23156, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-BRIAC-SUR-MER", - "center": "POINT (271101.1171688705799170 2411223.3984036208130419)", - "surface": 8070000, - "canton": null, - "numero_insee": "35256" - } - }, - { - "pk": 22277, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-BRICE-EN-COGLES", - "center": "POINT (325747.2630680039874278 2385750.6697940980084240)", - "surface": 16600000, - "canton": null, - "numero_insee": "35257" - } - }, - { - "pk": 31003, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-BRIEUC-DES-IFFS", - "center": "POINT (289906.2778438565437682 2375350.8554488690569997)", - "surface": 8210000, - "canton": null, - "numero_insee": "35258" - } - }, - { - "pk": 27431, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-BROLADRE", - "center": "POINT (305072.2899517738842405 2405395.8353533749468625)", - "surface": 24180000, - "canton": null, - "numero_insee": "35259" - } - }, - { - "pk": 26792, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-CHRISTOPHE-DES-BOIS", - "center": "POINT (334626.5085948066553101 2364607.9504211107268929)", - "surface": 9270000, - "canton": null, - "numero_insee": "35260" - } - }, - { - "pk": 24814, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-CHRISTOPHE-DE-VALAINS", - "center": "POINT (319105.0530636066105217 2378090.9148417799733579)", - "surface": 3280000, - "canton": null, - "numero_insee": "35261" - } - }, - { - "pk": 33949, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINTE-COLOMBE", - "center": "POINT (316306.8104179084766656 2328631.4095888677984476)", - "surface": 7760000, - "canton": null, - "numero_insee": "35262" - } - }, - { - "pk": 20534, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-COULOMB", - "center": "POINT (286463.5717456030542962 2417152.4424094604328275)", - "surface": 18030000, - "canton": null, - "numero_insee": "35263" - } - }, - { - "pk": 17321, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-DIDIER", - "center": "POINT (324836.9201945710810833 2350217.3135289261117578)", - "surface": 14210000, - "canton": null, - "numero_insee": "35264" - } - }, - { - "pk": 18209, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-ERBLON", - "center": "POINT (303279.4414955771644600 2343035.9944516033865511)", - "surface": 10910000, - "canton": null, - "numero_insee": "35266" - } - }, - { - "pk": 22219, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-ETIENNE-EN-COGLES", - "center": "POINT (328369.4088245005696081 2383270.3192989099770784)", - "surface": 22840000, - "canton": null, - "numero_insee": "35267" - } - }, - { - "pk": 33481, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GANTON", - "center": "POINT (283182.3519627472851425 2316251.9001603368669748)", - "surface": 14210000, - "canton": null, - "numero_insee": "35268" - } - }, - { - "pk": 23484, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GEORGES-DE-CHESNE", - "center": "POINT (329280.4200658171903342 2369768.0085822348482907)", - "surface": 11770000, - "canton": null, - "numero_insee": "35269" - } - }, - { - "pk": 28902, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GEORGES-DE-GREHAIGNE", - "center": "POINT (313282.3922457601292990 2404862.4264293969608843)", - "surface": 12280000, - "canton": null, - "numero_insee": "35270" - } - }, - { - "pk": 31105, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GEORGES-DE-REINTEMBAULT", - "center": "POINT (336067.2031059616128914 2396442.6275172499008477)", - "surface": 31570000, - "canton": null, - "numero_insee": "35271" - } - }, - { - "pk": 8914, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GERMAIN-DU-PINEL", - "center": "POINT (338131.8778854751726612 2339818.2417070893570781)", - "surface": 11280000, - "canton": null, - "numero_insee": "35272" - } - }, - { - "pk": 37033, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GERMAIN-EN-COGLES", - "center": "POINT (333269.3222425153362565 2383710.6881768512539566)", - "surface": 32590000, - "canton": null, - "numero_insee": "35273" - } - }, - { - "pk": 19498, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GERMAIN-SUR-ILLE", - "center": "POINT (303770.0679925814038143 2368759.0213791416026652)", - "surface": 3880000, - "canton": null, - "numero_insee": "35274" - } - }, - { - "pk": 29712, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GILLES", - "center": "POINT (288241.2390763088478707 2358625.0646589328534901)", - "surface": 20970000, - "canton": null, - "numero_insee": "35275" - } - }, - { - "pk": 25339, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GONDRAN", - "center": "POINT (291039.6204653231543489 2371357.1829875120893121)", - "surface": 4430000, - "canton": null, - "numero_insee": "35276" - } - }, - { - "pk": 36104, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-GREGOIRE", - "center": "POINT (300749.6369003829313442 2358727.0388320297934115)", - "surface": 17570000, - "canton": null, - "numero_insee": "35278" - } - }, - { - "pk": 4872, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-HILAIRE-DES-LANDES", - "center": "POINT (325414.9076098079094663 2377441.9832754195667803)", - "surface": 18520000, - "canton": null, - "numero_insee": "35280" - } - }, - { - "pk": 24634, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-JACQUES-DE-LA-LANDE", - "center": "POINT (297421.6134430911042728 2349593.1447111656889319)", - "surface": 12300000, - "canton": null, - "numero_insee": "35281" - } - }, - { - "pk": 3334, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-JEAN-SUR-COUESNON", - "center": "POINT (324970.2121052065049298 2370633.4162772051058710)", - "surface": 18530000, - "canton": null, - "numero_insee": "35282" - } - }, - { - "pk": 14744, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-JEAN-SUR-VILAINE", - "center": "POINT (326313.3857674893806688 2353231.6151825892738998)", - "surface": 10800000, - "canton": null, - "numero_insee": "35283" - } - }, - { - "pk": 5580, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-JOUAN-DES-GUERETS", - "center": "POINT (282725.5448586578713730 2409216.5115691088140011)", - "surface": 9190000, - "canton": null, - "numero_insee": "35284" - } - }, - { - "pk": 25614, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-JUST", - "center": "POINT (277379.8874501349637285 2316004.4953179620206356)", - "surface": 27990000, - "canton": null, - "numero_insee": "35285" - } - }, - { - "pk": 27430, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-LEGER-DES-PRES", - "center": "POINT (304145.4793867896078154 2384073.1617456222884357)", - "surface": 5590000, - "canton": null, - "numero_insee": "35286" - } - }, - { - "pk": 29348, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-LUNAIRE", - "center": "POINT (273200.0016057508764789 2411540.6766807064414024)", - "surface": 10400000, - "canton": null, - "numero_insee": "35287" - } - }, - { - "pk": 19623, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MALO", - "center": "POINT (281791.5801482793176547 2413311.7671095142140985)", - "surface": 36510000, - "canton": null, - "numero_insee": "35288" - } - }, - { - "pk": 30363, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MALO-DE-PHILY", - "center": "POINT (290200.9027426960528828 2326917.2253180462867022)", - "surface": 18730000, - "canton": null, - "numero_insee": "35289" - } - }, - { - "pk": 4688, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MALON-SUR-MEL", - "center": "POINT (268770.4373418464674614 2353262.7186826979741454)", - "surface": 16240000, - "canton": null, - "numero_insee": "35290" - } - }, - { - "pk": 26871, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MARCAN", - "center": "POINT (307470.5459136646240950 2405815.6849049492739141)", - "surface": 7680000, - "canton": null, - "numero_insee": "35291" - } - }, - { - "pk": 21016, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MARC-LE-BLANC", - "center": "POINT (322778.0321326300618239 2381723.5264639109373093)", - "surface": 17760000, - "canton": null, - "numero_insee": "35292" - } - }, - { - "pk": 19192, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MARC-SUR-COUESNON", - "center": "POINT (325343.4771224716096185 2373938.8657531440258026)", - "surface": 12260000, - "canton": null, - "numero_insee": "35293" - } - }, - { - "pk": 27291, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINTE-MARIE", - "center": "POINT (273639.0972193404450081 2308368.1525289649143815)", - "surface": 25070000, - "canton": null, - "numero_insee": "35294" - } - }, - { - "pk": 6627, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MAUGAN", - "center": "POINT (269733.6770761193474755 2357873.9645708710886538)", - "surface": 8560000, - "canton": null, - "numero_insee": "35295" - } - }, - { - "pk": 17657, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MEDARD-SUR-ILLE", - "center": "POINT (302548.8625056812306866 2371250.8805614379234612)", - "surface": 18370000, - "canton": null, - "numero_insee": "35296" - } - }, - { - "pk": 3704, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MEEN-LE-GRAND", - "center": "POINT (263174.8044612110243179 2364525.5800359412096441)", - "surface": 18520000, - "canton": null, - "numero_insee": "35297" - } - }, - { - "pk": 4579, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-MELOIR-DES-ONDES", - "center": "POINT (287399.1778224336449057 2412857.0776798222213984)", - "surface": 28960000, - "canton": null, - "numero_insee": "35299" - } - }, - { - "pk": 4165, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-M'HERVE", - "center": "POINT (343585.7046248466940597 2358176.5280788191594183)", - "surface": 31170000, - "canton": null, - "numero_insee": "35300" - } - }, - { - "pk": 6750, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-M'HERVON", - "center": "POINT (273054.5587484388961457 2367908.3359807529486716)", - "surface": 2450000, - "canton": null, - "numero_insee": "35301" - } - }, - { - "pk": 20256, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-ONEN-LA-CHAPELLE", - "center": "POINT (265899.3885663930559531 2361745.6664965152740479)", - "surface": 24900000, - "canton": null, - "numero_insee": "35302" - } - }, - { - "pk": 14797, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-OUEN-LA-ROUERIE", - "center": "POINT (320904.0781901553273201 2390614.5803362973965704)", - "surface": 21400000, - "canton": null, - "numero_insee": "35303" - } - }, - { - "pk": 21559, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-OUEN-DES-ALLEUX", - "center": "POINT (320820.0693259573308751 2376403.7008083779364824)", - "surface": 15400000, - "canton": null, - "numero_insee": "35304" - } - }, - { - "pk": 7314, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-PERAN", - "center": "POINT (272008.4233918819809332 2348885.7767849108204246)", - "surface": 9360000, - "canton": null, - "numero_insee": "35305" - } - }, - { - "pk": 16135, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-PERE", - "center": "POINT (285246.6813182641053572 2406835.3593602669425309)", - "surface": 18780000, - "canton": null, - "numero_insee": "35306" - } - }, - { - "pk": 22895, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-PERN", - "center": "POINT (279414.0176376081653871 2373464.0989452437497675)", - "surface": 12110000, - "canton": null, - "numero_insee": "35307" - } - }, - { - "pk": 17983, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-PIERRE-DE-PLESGUEN", - "center": "POINT (287466.1921137309400365 2392343.1942698452621698)", - "surface": 29800000, - "canton": null, - "numero_insee": "35308" - } - }, - { - "pk": 23645, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-REMY-DU-PLAIN", - "center": "POINT (310864.5473205090383999 2382326.7073557209223509)", - "surface": 14700000, - "canton": null, - "numero_insee": "35309" - } - }, - { - "pk": 15547, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-SAUVEUR-DES-LANDES", - "center": "POINT (329410.9817587015568279 2378275.2393988710828125)", - "surface": 18860000, - "canton": null, - "numero_insee": "35310" - } - }, - { - "pk": 35548, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-SEGLIN", - "center": "POINT (273596.6539834056748077 2325881.3130355076864362)", - "surface": 9480000, - "canton": null, - "numero_insee": "35311" - } - }, - { - "pk": 15561, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-SENOUX", - "center": "POINT (291565.1715198737801984 2331431.7728748586960137)", - "surface": 18170000, - "canton": null, - "numero_insee": "35312" - } - }, - { - "pk": 23762, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-SULIAC", - "center": "POINT (282456.3097122112521902 2405411.6585772372782230)", - "surface": 4820000, - "canton": null, - "numero_insee": "35314" - } - }, - { - "pk": 37411, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-SULPICE-LA-FORET", - "center": "POINT (309211.2277206719736569 2364200.0636897636577487)", - "surface": 6790000, - "canton": null, - "numero_insee": "35315" - } - }, - { - "pk": 6009, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-SULPICE-DES-LANDES", - "center": "POINT (303099.6504655726603232 2316013.9813024052418768)", - "surface": 11360000, - "canton": null, - "numero_insee": "35316" - } - }, - { - "pk": 27164, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (292730.1431364270392805 2372671.9067522864788771)", - "surface": 8000000, - "canton": null, - "numero_insee": "35317" - } - }, - { - "pk": 25560, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-THUAL", - "center": "POINT (283569.5320407294202596 2379302.1349836597219110)", - "surface": 11530000, - "canton": null, - "numero_insee": "35318" - } - }, - { - "pk": 13667, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAINT-UNIAC", - "center": "POINT (275012.0050146817811765 2361019.1934289042837918)", - "surface": 6870000, - "canton": null, - "numero_insee": "35320" - } - }, - { - "pk": 14306, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SAULNIERES", - "center": "POINT (307475.3722473643720150 2331661.6371089797466993)", - "surface": 10560000, - "canton": null, - "numero_insee": "35321" - } - }, - { - "pk": 6838, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE SEL-DE-BRETAGNE", - "center": "POINT (305291.8178675025119446 2329442.1407085140235722)", - "surface": 8560000, - "canton": null, - "numero_insee": "35322" - } - }, - { - "pk": 17311, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA SELLE-EN-COGLES", - "center": "POINT (328126.7259331758250482 2388472.0563046885654330)", - "surface": 8360000, - "canton": null, - "numero_insee": "35323" - } - }, - { - "pk": 15984, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA SELLE-EN-LUITRE", - "center": "POINT (341348.2679063106188551 2374770.3316370546817780)", - "surface": 8570000, - "canton": null, - "numero_insee": "35324" - } - }, - { - "pk": 37837, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA SELLE-GUERCHAISE", - "center": "POINT (338089.1619455549516715 2332812.6104859807528555)", - "surface": 2240000, - "canton": null, - "numero_insee": "35325" - } - }, - { - "pk": 16733, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SENS-DE-BRETAGNE", - "center": "POINT (311600.9536266662180424 2377929.5483349566347897)", - "surface": 31120000, - "canton": null, - "numero_insee": "35326" - } - }, - { - "pk": 18649, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "SIXT-SUR-AFF", - "center": "POINT (271363.4366127465618774 2317456.6884241094812751)", - "surface": 43190000, - "canton": null, - "numero_insee": "35328" - } - }, - { - "pk": 4478, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TAILLIS", - "center": "POINT (334063.7784794300096110 2359999.9681241093203425)", - "surface": 13090000, - "canton": null, - "numero_insee": "35330" - } - }, - { - "pk": 37302, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TALENSAC", - "center": "POINT (282590.3733475382323377 2352074.2172590484842658)", - "surface": 21600000, - "canton": null, - "numero_insee": "35331" - } - }, - { - "pk": 15854, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TEILLAY", - "center": "POINT (310980.6988381264964119 2319080.6329567721113563)", - "surface": 26570000, - "canton": null, - "numero_insee": "35332" - } - }, - { - "pk": 16917, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "THORIGNE-FOUILLARD", - "center": "POINT (308360.4567693071439862 2358088.6293347179889679)", - "surface": 13530000, - "canton": null, - "numero_insee": "35334" - } - }, - { - "pk": 17893, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "THOURIE", - "center": "POINT (316049.1193631787318736 2323425.3350550541654229)", - "surface": 24530000, - "canton": null, - "numero_insee": "35335" - } - }, - { - "pk": 24623, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE TIERCENT", - "center": "POINT (321299.9521576105616987 2378909.4288198812864721)", - "surface": 3660000, - "canton": null, - "numero_insee": "35336" - } - }, - { - "pk": 16730, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TINTENIAC", - "center": "POINT (290989.8785896734916605 2377461.2066346411593258)", - "surface": 23390000, - "canton": null, - "numero_insee": "35337" - } - }, - { - "pk": 18056, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TORCE", - "center": "POINT (331073.0469704035785981 2346365.4130492168478668)", - "surface": 14210000, - "canton": null, - "numero_insee": "35338" - } - }, - { - "pk": 38046, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TRANS-LA-FORET", - "center": "POINT (308760.3284267077106051 2394918.5281785340048373)", - "surface": 15150000, - "canton": null, - "numero_insee": "35339" - } - }, - { - "pk": 13444, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TREFFENDEL", - "center": "POINT (276036.3919064768124372 2345816.2328526466153562)", - "surface": 18990000, - "canton": null, - "numero_insee": "35340" - } - }, - { - "pk": 22444, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TREMBLAY", - "center": "POINT (319135.6202681651921012 2386597.2743797381408513)", - "surface": 36350000, - "canton": null, - "numero_insee": "35341" - } - }, - { - "pk": 18228, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TREMEHEUC", - "center": "POINT (301496.4456724466872402 2389855.7024566009640694)", - "surface": 6280000, - "canton": null, - "numero_insee": "35342" - } - }, - { - "pk": 15093, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TRESBOEUF", - "center": "POINT (309404.4692027218407020 2328274.8019419768825173)", - "surface": 25620000, - "canton": null, - "numero_insee": "35343" - } - }, - { - "pk": 29505, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TRESSE", - "center": "POINT (288544.0780636119889095 2395153.9649527566507459)", - "surface": 5210000, - "canton": null, - "numero_insee": "35344" - } - }, - { - "pk": 18471, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TREVERIEN", - "center": "POINT (284639.2873742989613675 2383113.5859046052210033)", - "surface": 12260000, - "canton": null, - "numero_insee": "35345" - } - }, - { - "pk": 27620, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "TRIMER", - "center": "POINT (286164.7174704023054801 2380123.8477140809409320)", - "surface": 3610000, - "canton": null, - "numero_insee": "35346" - } - }, - { - "pk": 22194, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VAL-D'IZE", - "center": "POINT (329254.0188072016462684 2360761.2049015020020306)", - "surface": 45670000, - "canton": null, - "numero_insee": "35347" - } - }, - { - "pk": 17308, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VENDEL", - "center": "POINT (329661.0404227890539914 2372172.8677748544141650)", - "surface": 6450000, - "canton": null, - "numero_insee": "35348" - } - }, - { - "pk": 13766, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VERGEAL", - "center": "POINT (332097.4723793941084296 2343471.6260818610899150)", - "surface": 11150000, - "canton": null, - "numero_insee": "35350" - } - }, - { - "pk": 5169, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE VERGER", - "center": "POINT (281712.5786145974416286 2349264.9829589058645070)", - "surface": 7100000, - "canton": null, - "numero_insee": "35351" - } - }, - { - "pk": 23671, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VERN-SUR-SEICHE", - "center": "POINT (306152.8367528246017173 2346562.0656597828492522)", - "surface": 19860000, - "canton": null, - "numero_insee": "35352" - } - }, - { - "pk": 11589, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VEZIN-LE-COQUET", - "center": "POINT (295782.1785816590418108 2354283.2709531402215362)", - "surface": 7930000, - "canton": null, - "numero_insee": "35353" - } - }, - { - "pk": 8089, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VIEUX-VIEL", - "center": "POINT (312552.1479955046088435 2396250.4045207458548248)", - "surface": 8990000, - "canton": null, - "numero_insee": "35354" - } - }, - { - "pk": 19069, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VIEUX-VY-SUR-COUESNON", - "center": "POINT (315607.6632769676507451 2377461.9087427416816354)", - "surface": 21630000, - "canton": null, - "numero_insee": "35355" - } - }, - { - "pk": 28482, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VILLAMEE", - "center": "POINT (337020.1944475587806664 2390045.8856505644507706)", - "surface": 10910000, - "canton": null, - "numero_insee": "35357" - } - }, - { - "pk": 36017, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LA VILLE-ES-NONAIS", - "center": "POINT (283376.4340433625620790 2403017.4629681818187237)", - "surface": 4500000, - "canton": null, - "numero_insee": "35358" - } - }, - { - "pk": 4654, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VISSEICHE", - "center": "POINT (328562.9572417255840264 2335136.4639372285455465)", - "surface": 16270000, - "canton": null, - "numero_insee": "35359" - } - }, - { - "pk": 16396, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "VITRE", - "center": "POINT (337132.1371065776911564 2351919.0956078614108264)", - "surface": 38600000, - "canton": null, - "numero_insee": "35360" - } - }, - { - "pk": 34710, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "LE VIVIER-SUR-MER", - "center": "POINT (296346.3762812342611142 2407826.4232108816504478)", - "surface": 2190000, - "canton": null, - "numero_insee": "35361" - } - }, - { - "pk": 23770, - "model": "ishtar_common.town", - "fields": { - "departement": 36, - "name": "PONT-PEAN", - "center": "POINT (299182.3515512348385528 2342302.0431343284435570)", - "surface": 8750000, - "canton": null, - "numero_insee": "35363" - } - }, - { - "pk": 17955, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "AIGURANDE", - "center": "POINT (561786.9084819564595819 2161822.2587538189254701)", - "surface": 27940000, - "canton": null, - "numero_insee": "36001" - } - }, - { - "pk": 25615, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "AIZE", - "center": "POINT (552172.3532277878839523 2234404.2099491436965764)", - "surface": 17070000, - "canton": null, - "numero_insee": "36002" - } - }, - { - "pk": 35885, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "AMBRAULT", - "center": "POINT (570390.0586348703363910 2198225.9196048742160201)", - "surface": 25540000, - "canton": null, - "numero_insee": "36003" - } - }, - { - "pk": 9554, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ANJOUIN", - "center": "POINT (559892.9233015576610342 2244677.1826833770610392)", - "surface": 28780000, - "canton": null, - "numero_insee": "36004" - } - }, - { - "pk": 31319, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ARDENTES", - "center": "POINT (560826.0140031236223876 2192941.4199134279042482)", - "surface": 62660000, - "canton": null, - "numero_insee": "36005" - } - }, - { - "pk": 17094, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ARGENTON-SUR-CREUSE", - "center": "POINT (535247.5992004767758772 2175712.9649008056148887)", - "surface": 29280000, - "canton": null, - "numero_insee": "36006" - } - }, - { - "pk": 16536, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ARGY", - "center": "POINT (533309.8380168690346181 2216031.4714474040083587)", - "surface": 39090000, - "canton": null, - "numero_insee": "36007" - } - }, - { - "pk": 36373, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ARPHEUILLES", - "center": "POINT (519034.6023290423909202 2211608.8217334444634616)", - "surface": 22370000, - "canton": null, - "numero_insee": "36008" - } - }, - { - "pk": 21861, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ARTHON", - "center": "POINT (552157.5902855298481882 2188264.9732352346181870)", - "surface": 47540000, - "canton": null, - "numero_insee": "36009" - } - }, - { - "pk": 18955, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "AZAY-LE-FERRON", - "center": "POINT (504269.7004465464851819 2205881.1310013812035322)", - "surface": 60890000, - "canton": null, - "numero_insee": "36010" - } - }, - { - "pk": 28265, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BAGNEUX", - "center": "POINT (555920.0291702384129167 2241040.9985397486016154)", - "surface": 25220000, - "canton": null, - "numero_insee": "36011" - } - }, - { - "pk": 11308, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BARAIZE", - "center": "POINT (541144.1840652443934232 2164752.4997825529426336)", - "surface": 16480000, - "canton": null, - "numero_insee": "36012" - } - }, - { - "pk": 18124, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BAUDRES", - "center": "POINT (541914.6470395621145144 2228313.5324048413895071)", - "surface": 27640000, - "canton": null, - "numero_insee": "36013" - } - }, - { - "pk": 33556, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BAZAIGES", - "center": "POINT (537837.3197523176204413 2165225.3378764856606722)", - "surface": 18730000, - "canton": null, - "numero_insee": "36014" - } - }, - { - "pk": 29035, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BEAULIEU", - "center": "POINT (520011.9748796818312258 2154367.1820554398000240)", - "surface": 7580000, - "canton": null, - "numero_insee": "36015" - } - }, - { - "pk": 17683, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BELABRE", - "center": "POINT (509843.7780137029476464 2173499.4854216473177075)", - "surface": 40610000, - "canton": null, - "numero_insee": "36016" - } - }, - { - "pk": 17096, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LE BLANC", - "center": "POINT (505266.8550958837149665 2182269.0863084495067596)", - "surface": 57470000, - "canton": null, - "numero_insee": "36018" - } - }, - { - "pk": 13719, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BOMMIERS", - "center": "POINT (574497.4812574071111158 2197759.8795556779950857)", - "surface": 28410000, - "canton": null, - "numero_insee": "36019" - } - }, - { - "pk": 37952, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BONNEUIL", - "center": "POINT (515709.2705287068965845 2154231.2467043329961598)", - "surface": 11630000, - "canton": null, - "numero_insee": "36020" - } - }, - { - "pk": 7546, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LES BORDES", - "center": "POINT (571604.3245313756633550 2220555.0386048117652535)", - "surface": 16070000, - "canton": null, - "numero_insee": "36021" - } - }, - { - "pk": 5570, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BOUESSE", - "center": "POINT (550317.9578851285623387 2180843.1697670556604862)", - "surface": 24290000, - "canton": null, - "numero_insee": "36022" - } - }, - { - "pk": 33425, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BOUGES-LE-CHATEAU", - "center": "POINT (548940.9071524213068187 2225870.1213195361196995)", - "surface": 34900000, - "canton": null, - "numero_insee": "36023" - } - }, - { - "pk": 9757, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BRETAGNE", - "center": "POINT (551372.8538230794947594 2222287.4215529668144882)", - "surface": 18320000, - "canton": null, - "numero_insee": "36024" - } - }, - { - "pk": 29599, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BRIANTES", - "center": "POINT (576012.2446215698728338 2172250.4131617755629122)", - "surface": 23260000, - "canton": null, - "numero_insee": "36025" - } - }, - { - "pk": 32070, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BRION", - "center": "POINT (553720.6290854462422431 2216802.4103025370277464)", - "surface": 44320000, - "canton": null, - "numero_insee": "36026" - } - }, - { - "pk": 13856, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BRIVES", - "center": "POINT (568620.0341563781257719 2206418.1184072773903608)", - "surface": 19720000, - "canton": null, - "numero_insee": "36027" - } - }, - { - "pk": 6856, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA BUXERETTE", - "center": "POINT (558646.7173345407936722 2166299.9777027466334403)", - "surface": 11000000, - "canton": null, - "numero_insee": "36028" - } - }, - { - "pk": 19314, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BUXIERES-D'AILLAC", - "center": "POINT (555311.0916614909656346 2182186.0327886678278446)", - "surface": 26110000, - "canton": null, - "numero_insee": "36030" - } - }, - { - "pk": 18580, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BUZANCAIS", - "center": "POINT (529556.1325194860110059 2210095.1641211048699915)", - "surface": 58460000, - "canton": null, - "numero_insee": "36031" - } - }, - { - "pk": 24090, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CEAULMONT", - "center": "POINT (540097.4187256268924102 2170248.6127958218567073)", - "surface": 17520000, - "canton": null, - "numero_insee": "36032" - } - }, - { - "pk": 36599, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CELON", - "center": "POINT (536692.9932877618120983 2170420.3734834198839962)", - "surface": 17200000, - "canton": null, - "numero_insee": "36033" - } - }, - { - "pk": 15565, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHABRIS", - "center": "POINT (548936.2280598041834310 2250390.3624153449200094)", - "surface": 41160000, - "canton": null, - "numero_insee": "36034" - } - }, - { - "pk": 26420, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHAILLAC", - "center": "POINT (519673.3673841529525816 2158968.4568520435132086)", - "surface": 60960000, - "canton": null, - "numero_insee": "36035" - } - }, - { - "pk": 21681, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHALAIS", - "center": "POINT (514459.9983962929109111 2172036.6049664248712361)", - "surface": 40050000, - "canton": null, - "numero_insee": "36036" - } - }, - { - "pk": 5310, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA CHAMPENOISE", - "center": "POINT (558534.3873120481148362 2215641.6388250738382339)", - "surface": 44370000, - "canton": null, - "numero_insee": "36037" - } - }, - { - "pk": 4030, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA CHAPELLE-ORTHEMALE", - "center": "POINT (532509.3180979761527851 2204014.5993761131539941)", - "surface": 16830000, - "canton": null, - "numero_insee": "36040" - } - }, - { - "pk": 34146, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA CHAPELLE-SAINT-LAURIAN", - "center": "POINT (557926.8938649568008259 2228447.3137810979969800)", - "surface": 9880000, - "canton": null, - "numero_insee": "36041" - } - }, - { - "pk": 27128, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHASSENEUIL", - "center": "POINT (535475.1875256526982412 2184422.4548949166201055)", - "surface": 29940000, - "canton": null, - "numero_insee": "36042" - } - }, - { - "pk": 22755, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHASSIGNOLLES", - "center": "POINT (569226.0149266575463116 2169891.5711983824148774)", - "surface": 30150000, - "canton": null, - "numero_insee": "36043" - } - }, - { - "pk": 21624, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHATEAUROUX", - "center": "POINT (550954.6899889644701034 2200465.4317309516482055)", - "surface": 25400000, - "canton": null, - "numero_insee": "36044" - } - }, - { - "pk": 18237, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHATILLON-SUR-INDRE", - "center": "POINT (511642.2629226567805745 2221956.0371106378734112)", - "surface": 45220000, - "canton": null, - "numero_insee": "36045" - } - }, - { - "pk": 36058, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA CHATRE", - "center": "POINT (573488.4354733271757141 2174831.5593624510802329)", - "surface": 6090000, - "canton": null, - "numero_insee": "36046" - } - }, - { - "pk": 33986, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA CHATRE-LANGLIN", - "center": "POINT (526996.0367493899539113 2157027.7138516623526812)", - "surface": 27710000, - "canton": null, - "numero_insee": "36047" - } - }, - { - "pk": 11708, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHAVIN", - "center": "POINT (544371.6500189782818779 2173787.3758440711535513)", - "surface": 14030000, - "canton": null, - "numero_insee": "36048" - } - }, - { - "pk": 11566, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHAZELET", - "center": "POINT (530708.1656916309148073 2167968.3280027466826141)", - "surface": 11920000, - "canton": null, - "numero_insee": "36049" - } - }, - { - "pk": 25112, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHEZELLES", - "center": "POINT (540960.8439550478942692 2210690.7473038267344236)", - "surface": 17710000, - "canton": null, - "numero_insee": "36050" - } - }, - { - "pk": 26888, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHITRAY", - "center": "POINT (525162.7801745882024989 2184836.8812817125581205)", - "surface": 19970000, - "canton": null, - "numero_insee": "36051" - } - }, - { - "pk": 32731, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CHOUDAY", - "center": "POINT (578369.0133306906791404 2213505.6955245351418853)", - "surface": 30380000, - "canton": null, - "numero_insee": "36052" - } - }, - { - "pk": 15340, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CIRON", - "center": "POINT (517580.8823299208888784 2181871.1749966507777572)", - "surface": 60600000, - "canton": null, - "numero_insee": "36053" - } - }, - { - "pk": 20555, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CLERE-DU-BOIS", - "center": "POINT (505982.8364590114215389 2216504.3821675851941109)", - "surface": 36220000, - "canton": null, - "numero_insee": "36054" - } - }, - { - "pk": 15314, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CLUIS", - "center": "POINT (554406.4936855031410232 2170668.4054706110619009)", - "surface": 35920000, - "canton": null, - "numero_insee": "36056" - } - }, - { - "pk": 12465, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "COINGS", - "center": "POINT (553081.1440085972426459 2209490.8821212272159755)", - "surface": 29460000, - "canton": null, - "numero_insee": "36057" - } - }, - { - "pk": 14530, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CONCREMIERS", - "center": "POINT (498797.4318432631553151 2177911.5169394202530384)", - "surface": 28090000, - "canton": null, - "numero_insee": "36058" - } - }, - { - "pk": 32832, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CONDE", - "center": "POINT (573297.7330419629579410 2209559.9149952093139291)", - "surface": 24070000, - "canton": null, - "numero_insee": "36059" - } - }, - { - "pk": 17573, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "CREVANT", - "center": "POINT (569281.3031052740989253 2163286.2074185712262988)", - "surface": 36910000, - "canton": null, - "numero_insee": "36060" - } - }, - { - "pk": 14678, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "DEOLS", - "center": "POINT (551620.1161318410886452 2204674.5840304261073470)", - "surface": 31870000, - "canton": null, - "numero_insee": "36063" - } - }, - { - "pk": 9108, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "DIORS", - "center": "POINT (559838.2586687448201701 2203342.0886609060689807)", - "surface": 25530000, - "canton": null, - "numero_insee": "36064" - } - }, - { - "pk": 23146, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "DIOU", - "center": "POINT (574850.7188762605655938 2227287.8401785655878484)", - "surface": 16660000, - "canton": null, - "numero_insee": "36065" - } - }, - { - "pk": 15728, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "DOUADIC", - "center": "POINT (506804.0053113609901629 2189988.5616953051649034)", - "surface": 44290000, - "canton": null, - "numero_insee": "36066" - } - }, - { - "pk": 22083, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "DUNET", - "center": "POINT (519233.0131768560386263 2163769.0448656501248479)", - "surface": 9360000, - "canton": null, - "numero_insee": "36067" - } - }, - { - "pk": 3696, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "DUN-LE-POELIER", - "center": "POINT (555371.9688731688074768 2246741.1099570542573929)", - "surface": 22530000, - "canton": null, - "numero_insee": "36068" - } - }, - { - "pk": 21533, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ECUEILLE", - "center": "POINT (525276.0739769599167630 2231277.3142711389809847)", - "surface": 35430000, - "canton": null, - "numero_insee": "36069" - } - }, - { - "pk": 28787, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ETRECHET", - "center": "POINT (557269.6880982611328363 2199317.1861925306729972)", - "surface": 18140000, - "canton": null, - "numero_insee": "36071" - } - }, - { - "pk": 11701, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FAVEROLLES", - "center": "POINT (527891.3557679373770952 2241707.7400823505595326)", - "surface": 41470000, - "canton": null, - "numero_insee": "36072" - } - }, - { - "pk": 11030, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FEUSINES", - "center": "POINT (581852.9945754688233137 2167995.5599605413153768)", - "surface": 12550000, - "canton": null, - "numero_insee": "36073" - } - }, - { - "pk": 4677, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FLERE-LA-RIVIERE", - "center": "POINT (505432.4857983411638997 2222504.8568297792226076)", - "surface": 25160000, - "canton": null, - "numero_insee": "36074" - } - }, - { - "pk": 33969, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FONTENAY", - "center": "POINT (554824.5214536153944209 2228421.3781814980320632)", - "surface": 12460000, - "canton": null, - "numero_insee": "36075" - } - }, - { - "pk": 21924, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FONTGOMBAULT", - "center": "POINT (495519.9724071872769855 2186892.1038285847753286)", - "surface": 10540000, - "canton": null, - "numero_insee": "36076" - } - }, - { - "pk": 30392, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FONTGUENAND", - "center": "POINT (539173.9973323801532388 2244904.4152121786028147)", - "surface": 18340000, - "canton": null, - "numero_insee": "36077" - } - }, - { - "pk": 25462, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FOUGEROLLES", - "center": "POINT (564184.2851690142415464 2174353.3344968133606017)", - "surface": 17440000, - "canton": null, - "numero_insee": "36078" - } - }, - { - "pk": 24530, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FRANCILLON", - "center": "POINT (540712.2321973002981395 2216493.5829557962715626)", - "surface": 10300000, - "canton": null, - "numero_insee": "36079" - } - }, - { - "pk": 36126, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "FREDILLE", - "center": "POINT (534654.9802400462795049 2222748.3369176159612834)", - "surface": 6400000, - "canton": null, - "numero_insee": "36080" - } - }, - { - "pk": 29196, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "GARGILESSE-DAMPIERRE", - "center": "POINT (545024.7923617184860632 2167487.2882367675192654)", - "surface": 15490000, - "canton": null, - "numero_insee": "36081" - } - }, - { - "pk": 20946, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "GEHEE", - "center": "POINT (535922.5788639032980427 2226762.2659148774109781)", - "surface": 22700000, - "canton": null, - "numero_insee": "36082" - } - }, - { - "pk": 27633, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "GIROUX", - "center": "POINT (567325.7117061162134632 2229526.7673524878919125)", - "surface": 23660000, - "canton": null, - "numero_insee": "36083" - } - }, - { - "pk": 3551, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "GOURNAY", - "center": "POINT (553849.2058844045968726 2177469.7114991708658636)", - "surface": 20540000, - "canton": null, - "numero_insee": "36084" - } - }, - { - "pk": 20522, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "GUILLY", - "center": "POINT (554295.6987994168885052 2231819.7934601623564959)", - "surface": 20880000, - "canton": null, - "numero_insee": "36085" - } - }, - { - "pk": 37691, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "HEUGNES", - "center": "POINT (527624.5570478842128068 2225692.2155031994916499)", - "surface": 42550000, - "canton": null, - "numero_insee": "36086" - } - }, - { - "pk": 27728, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "INGRANDES", - "center": "POINT (494794.2110542982118204 2177878.2315006433054805)", - "surface": 11240000, - "canton": null, - "numero_insee": "36087" - } - }, - { - "pk": 17002, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ISSOUDUN", - "center": "POINT (574339.9278711224906147 2216574.5716794873587787)", - "surface": 37110000, - "canton": null, - "numero_insee": "36088" - } - }, - { - "pk": 22514, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "JEU-LES-BOIS", - "center": "POINT (558473.4854920684592798 2187016.6436202488839626)", - "surface": 38720000, - "canton": null, - "numero_insee": "36089" - } - }, - { - "pk": 9617, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "JEU-MALOCHES", - "center": "POINT (532010.4055557040264830 2227830.5478890510275960)", - "surface": 12920000, - "canton": null, - "numero_insee": "36090" - } - }, - { - "pk": 25104, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LACS", - "center": "POINT (576975.3301338290330023 2176762.4251043456606567)", - "surface": 13520000, - "canton": null, - "numero_insee": "36091" - } - }, - { - "pk": 28139, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LANGE", - "center": "POINT (536990.0170198152773082 2230774.5133413015864789)", - "surface": 20580000, - "canton": null, - "numero_insee": "36092" - } - }, - { - "pk": 27027, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LEVROUX", - "center": "POINT (546192.2529311917023733 2219441.7870668275281787)", - "surface": 56390000, - "canton": null, - "numero_insee": "36093" - } - }, - { - "pk": 19703, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LIGNAC", - "center": "POINT (512720.2110291032004170 2164615.5926888012327254)", - "surface": 67630000, - "canton": null, - "numero_insee": "36094" - } - }, - { - "pk": 23881, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LIGNEROLLES", - "center": "POINT (586667.7967875273898244 2166734.7690749280154705)", - "surface": 13030000, - "canton": null, - "numero_insee": "36095" - } - }, - { - "pk": 6276, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LINIEZ", - "center": "POINT (555862.9335064147599041 2223926.2918957299552858)", - "surface": 27040000, - "canton": null, - "numero_insee": "36097" - } - }, - { - "pk": 21089, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LIZERAY", - "center": "POINT (566999.9394111150177196 2220616.5842741541564465)", - "surface": 35680000, - "canton": null, - "numero_insee": "36098" - } - }, - { - "pk": 15674, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LOURDOUEIX-SAINT-MICHEL", - "center": "POINT (553014.8549338222946972 2157545.1840420379303396)", - "surface": 19840000, - "canton": null, - "numero_insee": "36099" - } - }, - { - "pk": 17651, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LOUROUER-SAINT-LAURENT", - "center": "POINT (575547.3819822742370889 2179953.2615233133547008)", - "surface": 11130000, - "canton": null, - "numero_insee": "36100" - } - }, - { - "pk": 4972, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LUANT", - "center": "POINT (540815.1713431914104149 2192173.6933466480113566)", - "surface": 31410000, - "canton": null, - "numero_insee": "36101" - } - }, - { - "pk": 30366, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LUCAY-LE-LIBRE", - "center": "POINT (568099.5220007298048586 2232735.9092706032097340)", - "surface": 12110000, - "canton": null, - "numero_insee": "36102" - } - }, - { - "pk": 21379, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LUCAY-LE-MALE", - "center": "POINT (530947.0395628532860428 2235327.9253097390756011)", - "surface": 67660000, - "canton": null, - "numero_insee": "36103" - } - }, - { - "pk": 37540, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LURAIS", - "center": "POINT (492904.5875823175301775 2188471.7504147705622017)", - "surface": 13620000, - "canton": null, - "numero_insee": "36104" - } - }, - { - "pk": 10666, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LUREUIL", - "center": "POINT (500758.4423507440369576 2194842.4934994494542480)", - "surface": 22160000, - "canton": null, - "numero_insee": "36105" - } - }, - { - "pk": 3449, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LUZERET", - "center": "POINT (526968.4442324524279684 2172341.0140613135881722)", - "surface": 27010000, - "canton": null, - "numero_insee": "36106" - } - }, - { - "pk": 33815, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LYE", - "center": "POINT (534552.1660035802051425 2247067.6552224047482014)", - "surface": 25190000, - "canton": null, - "numero_insee": "36107" - } - }, - { - "pk": 23100, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LYS-SAINT-GEORGES", - "center": "POINT (560209.1569392245728523 2182927.5964073576033115)", - "surface": 13020000, - "canton": null, - "numero_insee": "36108" - } - }, - { - "pk": 12763, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LE MAGNY", - "center": "POINT (571001.5004678750410676 2173009.1586674093268812)", - "surface": 17940000, - "canton": null, - "numero_insee": "36109" - } - }, - { - "pk": 35664, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MALICORNAY", - "center": "POINT (546967.8975359100149944 2174509.6739127230830491)", - "surface": 16570000, - "canton": null, - "numero_insee": "36111" - } - }, - { - "pk": 15228, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MARON", - "center": "POINT (563467.8738862229511142 2200169.7087188842706382)", - "surface": 27990000, - "canton": null, - "numero_insee": "36112" - } - }, - { - "pk": 21618, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MARTIZAY", - "center": "POINT (500909.4884563151863404 2200748.8185330429114401)", - "surface": 39940000, - "canton": null, - "numero_insee": "36113" - } - }, - { - "pk": 14527, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MAUVIERES", - "center": "POINT (505718.8102801407221705 2176067.4322909270413220)", - "surface": 24210000, - "canton": null, - "numero_insee": "36114" - } - }, - { - "pk": 35179, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MENETOU-SUR-NAHON", - "center": "POINT (546960.6432980943936855 2247271.3194793350994587)", - "surface": 6960000, - "canton": null, - "numero_insee": "36115" - } - }, - { - "pk": 7426, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MENETREOLS-SOUS-VATAN", - "center": "POINT (561773.3283667643554509 2223275.1263950522989035)", - "surface": 28100000, - "canton": null, - "numero_insee": "36116" - } - }, - { - "pk": 35437, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LE MENOUX", - "center": "POINT (541472.6504581435583532 2173362.8181694019585848)", - "surface": 5490000, - "canton": null, - "numero_insee": "36117" - } - }, - { - "pk": 20632, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MEOBECQ", - "center": "POINT (529391.1016395769547671 2193879.9253455759026110)", - "surface": 37810000, - "canton": null, - "numero_insee": "36118" - } - }, - { - "pk": 15836, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MERIGNY", - "center": "POINT (492457.4232800747267902 2182062.4735853630118072)", - "surface": 31810000, - "canton": null, - "numero_insee": "36119" - } - }, - { - "pk": 31732, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MERS-SUR-INDRE", - "center": "POINT (564490.8277474918868393 2185565.6719035450369120)", - "surface": 25760000, - "canton": null, - "numero_insee": "36120" - } - }, - { - "pk": 15650, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MEUNET-PLANCHES", - "center": "POINT (572239.6073366206837818 2204446.7114647803828120)", - "surface": 26890000, - "canton": null, - "numero_insee": "36121" - } - }, - { - "pk": 24243, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MEUNET-SUR-VATAN", - "center": "POINT (563697.8441973779117689 2232498.9129099193960428)", - "surface": 12570000, - "canton": null, - "numero_insee": "36122" - } - }, - { - "pk": 16360, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MEZIERES-EN-BRENNE", - "center": "POINT (517514.2217887566075660 2201887.8904257519170642)", - "surface": 67060000, - "canton": null, - "numero_insee": "36123" - } - }, - { - "pk": 21059, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MIGNE", - "center": "POINT (520810.1392026104149409 2190705.7170725958421826)", - "surface": 66430000, - "canton": null, - "numero_insee": "36124" - } - }, - { - "pk": 22250, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MIGNY", - "center": "POINT (578381.0646400356199592 2224014.6453230883926153)", - "surface": 13470000, - "canton": null, - "numero_insee": "36125" - } - }, - { - "pk": 23343, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MONTCHEVRIER", - "center": "POINT (555259.0122920739231631 2164470.0630592652596533)", - "surface": 35040000, - "canton": null, - "numero_insee": "36126" - } - }, - { - "pk": 25249, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MONTGIVRAY", - "center": "POINT (571565.1189134109299630 2177417.7324473857879639)", - "surface": 25770000, - "canton": null, - "numero_insee": "36127" - } - }, - { - "pk": 34870, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MONTIERCHAUME", - "center": "POINT (557401.2323624287964776 2207525.2932986696250737)", - "surface": 37750000, - "canton": null, - "numero_insee": "36128" - } - }, - { - "pk": 11560, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MONTIPOURET", - "center": "POINT (567605.8653313627000898 2184090.4341696221381426)", - "surface": 27840000, - "canton": null, - "numero_insee": "36129" - } - }, - { - "pk": 37685, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MONTLEVICQ", - "center": "POINT (580589.1285334022250026 2175491.5612931908108294)", - "surface": 18920000, - "canton": null, - "numero_insee": "36130" - } - }, - { - "pk": 20200, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MOSNAY", - "center": "POINT (545513.2721741490531713 2180903.1196923730894923)", - "surface": 25310000, - "canton": null, - "numero_insee": "36131" - } - }, - { - "pk": 27649, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA MOTTE-FEUILLY", - "center": "POINT (579817.8314086392056197 2171982.0281891184858978)", - "surface": 5680000, - "canton": null, - "numero_insee": "36132" - } - }, - { - "pk": 12216, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MOUHERS", - "center": "POINT (557282.9017304552253336 2173795.1752950414083898)", - "surface": 18070000, - "canton": null, - "numero_insee": "36133" - } - }, - { - "pk": 21256, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MOUHET", - "center": "POINT (531219.5183824815321714 2154660.7975279986858368)", - "surface": 32510000, - "canton": null, - "numero_insee": "36134" - } - }, - { - "pk": 17665, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MOULINS-SUR-CEPHONS", - "center": "POINT (540953.9826993970200419 2223501.4936681506223977)", - "surface": 32240000, - "canton": null, - "numero_insee": "36135" - } - }, - { - "pk": 33544, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "MURS", - "center": "POINT (510502.9874890692299232 2214540.3122753328643739)", - "surface": 22970000, - "canton": null, - "numero_insee": "36136" - } - }, - { - "pk": 27930, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NEONS-SUR-CREUSE", - "center": "POINT (491460.2230921118170954 2193664.2409856305457652)", - "surface": 19740000, - "canton": null, - "numero_insee": "36137" - } - }, - { - "pk": 28809, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NERET", - "center": "POINT (584999.3847696079174057 2174727.8204496400430799)", - "surface": 19180000, - "canton": null, - "numero_insee": "36138" - } - }, - { - "pk": 18727, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NEUILLAY-LES-BOIS", - "center": "POINT (534376.6932364276144654 2196123.4062881614081562)", - "surface": 47670000, - "canton": null, - "numero_insee": "36139" - } - }, - { - "pk": 31085, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NEUVY-PAILLOUX", - "center": "POINT (563572.5881881638197228 2211580.3050152957439423)", - "surface": 41950000, - "canton": null, - "numero_insee": "36140" - } - }, - { - "pk": 23605, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NEUVY-SAINT-SEPULCHRE", - "center": "POINT (559858.2175928836222738 2177019.5133954868651927)", - "surface": 35420000, - "canton": null, - "numero_insee": "36141" - } - }, - { - "pk": 18864, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NIHERNE", - "center": "POINT (540545.6693541359854862 2200478.5817560921423137)", - "surface": 44410000, - "canton": null, - "numero_insee": "36142" - } - }, - { - "pk": 35423, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NOHANT-VIC", - "center": "POINT (570924.4212309840368107 2182216.5576352886855602)", - "surface": 21400000, - "canton": null, - "numero_insee": "36143" - } - }, - { - "pk": 31276, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "NURET-LE-FERRON", - "center": "POINT (530440.3059290775563568 2188083.6634020055644214)", - "surface": 48930000, - "canton": null, - "numero_insee": "36144" - } - }, - { - "pk": 36833, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "OBTERRE", - "center": "POINT (502912.0688675635028630 2212675.6179523388855159)", - "surface": 28450000, - "canton": null, - "numero_insee": "36145" - } - }, - { - "pk": 24885, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ORSENNES", - "center": "POINT (550754.5106999333947897 2164532.5038017565384507)", - "surface": 49320000, - "canton": null, - "numero_insee": "36146" - } - }, - { - "pk": 14107, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ORVILLE", - "center": "POINT (557444.5900410244939849 2238251.4295590138062835)", - "surface": 9300000, - "canton": null, - "numero_insee": "36147" - } - }, - { - "pk": 19721, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "OULCHES", - "center": "POINT (521312.2049024240113795 2178499.2977834306657314)", - "surface": 43580000, - "canton": null, - "numero_insee": "36148" - } - }, - { - "pk": 17199, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PALLUAU-SUR-INDRE", - "center": "POINT (521590.7588520073331892 2217134.7744446769356728)", - "surface": 41450000, - "canton": null, - "numero_insee": "36149" - } - }, - { - "pk": 33519, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PARNAC", - "center": "POINT (532973.4068289374699816 2160380.5000586193054914)", - "surface": 47430000, - "canton": null, - "numero_insee": "36150" - } - }, - { - "pk": 23390, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PARPECAY", - "center": "POINT (548274.1590761435218155 2245781.0593984937295318)", - "surface": 14520000, - "canton": null, - "numero_insee": "36151" - } - }, - { - "pk": 26179, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PAUDY", - "center": "POINT (568354.9529587468132377 2226132.5393742625601590)", - "surface": 30780000, - "canton": null, - "numero_insee": "36152" - } - }, - { - "pk": 30069, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PAULNAY", - "center": "POINT (509460.4457893670769408 2207525.6918596299365163)", - "surface": 40010000, - "canton": null, - "numero_insee": "36153" - } - }, - { - "pk": 33772, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LE PECHEREAU", - "center": "POINT (541248.2580361933214590 2176263.4867083188146353)", - "surface": 21140000, - "canton": null, - "numero_insee": "36154" - } - }, - { - "pk": 25859, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PELLEVOISIN", - "center": "POINT (530365.8577596154063940 2221011.1302987709641457)", - "surface": 26000000, - "canton": null, - "numero_insee": "36155" - } - }, - { - "pk": 21206, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PERASSAY", - "center": "POINT (585190.0679290497209877 2163919.9066813713870943)", - "surface": 24540000, - "canton": null, - "numero_insee": "36156" - } - }, - { - "pk": 26249, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA PEROUILLE", - "center": "POINT (537128.1043020539218560 2190241.2764909071847796)", - "surface": 21950000, - "canton": null, - "numero_insee": "36157" - } - }, - { - "pk": 8231, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "BADECON-LE-PIN", - "center": "POINT (543598.5830587479285896 2170478.0207716985605657)", - "surface": 10090000, - "canton": null, - "numero_insee": "36158" - } - }, - { - "pk": 23672, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LE POINCONNET", - "center": "POINT (553600.2317566942656413 2195283.0746418833732605)", - "surface": 45510000, - "canton": null, - "numero_insee": "36159" - } - }, - { - "pk": 28184, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "POMMIERS", - "center": "POINT (547511.7744256772566587 2169309.6476217769086361)", - "surface": 12300000, - "canton": null, - "numero_insee": "36160" - } - }, - { - "pk": 31970, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LE PONT-CHRETIEN-CHABENET", - "center": "POINT (535902.2312355062458664 2181223.2329996074549854)", - "surface": 8980000, - "canton": null, - "numero_insee": "36161" - } - }, - { - "pk": 24703, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "POULAINES", - "center": "POINT (547529.5645277815638110 2239069.3158436343073845)", - "surface": 46380000, - "canton": null, - "numero_insee": "36162" - } - }, - { - "pk": 17526, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "POULIGNY-NOTRE-DAME", - "center": "POINT (574583.1090646170778200 2163630.8610645360313356)", - "surface": 33650000, - "canton": null, - "numero_insee": "36163" - } - }, - { - "pk": 3463, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "POULIGNY-SAINT-PIERRE", - "center": "POINT (501317.1100829739589244 2187841.0919183916412294)", - "surface": 47330000, - "canton": null, - "numero_insee": "36165" - } - }, - { - "pk": 29667, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PREAUX", - "center": "POINT (521616.6136965737678111 2226042.4716148260049522)", - "surface": 33070000, - "canton": null, - "numero_insee": "36166" - } - }, - { - "pk": 7722, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PREUILLY-LA-VILLE", - "center": "POINT (496198.8974272505147383 2189500.0012183142825961)", - "surface": 4290000, - "canton": null, - "numero_insee": "36167" - } - }, - { - "pk": 14092, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PRISSAC", - "center": "POINT (520283.0389346427982673 2169883.1787150101736188)", - "surface": 63520000, - "canton": null, - "numero_insee": "36168" - } - }, - { - "pk": 33714, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "PRUNIERS", - "center": "POINT (578699.9553078878670931 2197895.1639930149540305)", - "surface": 49130000, - "canton": null, - "numero_insee": "36169" - } - }, - { - "pk": 32956, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "REBOURSIN", - "center": "POINT (560179.2753956159576774 2234371.0625785179436207)", - "surface": 12910000, - "canton": null, - "numero_insee": "36170" - } - }, - { - "pk": 23131, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "REUILLY", - "center": "POINT (575219.1778902522055432 2231094.0975800501182675)", - "surface": 26140000, - "canton": null, - "numero_insee": "36171" - } - }, - { - "pk": 32569, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "RIVARENNES", - "center": "POINT (526607.2885506447637454 2179644.3953307727351785)", - "surface": 37700000, - "canton": null, - "numero_insee": "36172" - } - }, - { - "pk": 19393, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ROSNAY", - "center": "POINT (513506.8358914192067459 2190344.6204432006925344)", - "surface": 67010000, - "canton": null, - "numero_insee": "36173" - } - }, - { - "pk": 30287, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ROUSSINES", - "center": "POINT (526247.0657265592599288 2162826.6193915642797947)", - "surface": 23270000, - "canton": null, - "numero_insee": "36174" - } - }, - { - "pk": 3621, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "ROUVRES-LES-BOIS", - "center": "POINT (548001.7610979642486200 2230466.1190288630314171)", - "surface": 31010000, - "canton": null, - "numero_insee": "36175" - } - }, - { - "pk": 3509, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "RUFFEC", - "center": "POINT (511682.8177626802935265 2181021.3570477068424225)", - "surface": 43090000, - "canton": null, - "numero_insee": "36176" - } - }, - { - "pk": 19875, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SACIERGES-SAINT-MARTIN", - "center": "POINT (525308.7857159157283604 2167322.7751395967788994)", - "surface": 31530000, - "canton": null, - "numero_insee": "36177" - } - }, - { - "pk": 8599, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-AIGNY", - "center": "POINT (498060.2501375011052005 2182309.2264934279955924)", - "surface": 14790000, - "canton": null, - "numero_insee": "36178" - } - }, - { - "pk": 16256, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-AOUSTRILLE", - "center": "POINT (568950.8239116094773635 2214727.9340490885078907)", - "surface": 19820000, - "canton": null, - "numero_insee": "36179" - } - }, - { - "pk": 30647, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-AOUT", - "center": "POINT (571444.4683230817317963 2191829.2359508364461362)", - "surface": 54130000, - "canton": null, - "numero_insee": "36180" - } - }, - { - "pk": 25659, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-AUBIN", - "center": "POINT (576723.8540479536168277 2206786.2241990668699145)", - "surface": 28630000, - "canton": null, - "numero_insee": "36181" - } - }, - { - "pk": 20062, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-BENOIT-DU-SAULT", - "center": "POINT (527961.8059632687363774 2161239.4987798635847867)", - "surface": 1770000, - "canton": null, - "numero_insee": "36182" - } - }, - { - "pk": 33222, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-CHARTIER", - "center": "POINT (572892.5041874826420099 2186236.5119123631156981)", - "surface": 27940000, - "canton": null, - "numero_insee": "36184" - } - }, - { - "pk": 13154, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-CHRISTOPHE-EN-BAZELLE", - "center": "POINT (552599.1366638045292348 2243215.0561458789743483)", - "surface": 13890000, - "canton": null, - "numero_insee": "36185" - } - }, - { - "pk": 32444, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-CIVRAN", - "center": "POINT (528419.6508753406815231 2166347.8302218946628273)", - "surface": 11640000, - "canton": null, - "numero_insee": "36187" - } - }, - { - "pk": 27690, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-CYRAN-DU-JAMBOT", - "center": "POINT (510312.9357099763583392 2225347.8235272294841707)", - "surface": 14190000, - "canton": null, - "numero_insee": "36188" - } - }, - { - "pk": 14601, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-DENIS-DE-JOUHET", - "center": "POINT (562221.1806142444256693 2169732.8703604820184410)", - "surface": 44070000, - "canton": null, - "numero_insee": "36189" - } - }, - { - "pk": 23776, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINTE-FAUSTE", - "center": "POINT (564419.2609371449798346 2206082.7111165397800505)", - "surface": 23310000, - "canton": null, - "numero_insee": "36190" - } - }, - { - "pk": 36127, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-FLORENTIN", - "center": "POINT (557685.7409574912162498 2233349.3809243398718536)", - "surface": 16260000, - "canton": null, - "numero_insee": "36191" - } - }, - { - "pk": 12504, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-GAULTIER", - "center": "POINT (530578.7822169815190136 2183480.8248180090449750)", - "surface": 9350000, - "canton": null, - "numero_insee": "36192" - } - }, - { - "pk": 15840, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINTE-GEMME", - "center": "POINT (523476.3987500201328658 2207041.9248853451572359)", - "surface": 34300000, - "canton": null, - "numero_insee": "36193" - } - }, - { - "pk": 32955, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-GEORGES-SUR-ARNON", - "center": "POINT (579309.4237461236771196 2220719.6505815163254738)", - "surface": 24130000, - "canton": null, - "numero_insee": "36195" - } - }, - { - "pk": 24931, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-GILLES", - "center": "POINT (531836.6087019830010831 2164674.8264311375096440)", - "surface": 7760000, - "canton": null, - "numero_insee": "36196" - } - }, - { - "pk": 14529, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-HILAIRE-SUR-BENAIZE", - "center": "POINT (502635.4598010525805876 2173739.7614387134090066)", - "surface": 33140000, - "canton": null, - "numero_insee": "36197" - } - }, - { - "pk": 20051, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-LACTENCIN", - "center": "POINT (536054.5203139241784811 2210950.0523586096242070)", - "surface": 32710000, - "canton": null, - "numero_insee": "36198" - } - }, - { - "pk": 4474, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINTE-LIZAIGNE", - "center": "POINT (573981.8733121770201251 2223477.3815971626900136)", - "surface": 26770000, - "canton": null, - "numero_insee": "36199" - } - }, - { - "pk": 14605, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-MARCEL", - "center": "POINT (537622.8054357052315027 2178935.5848272521980107)", - "surface": 17820000, - "canton": null, - "numero_insee": "36200" - } - }, - { - "pk": 36147, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-MARTIN-DE-LAMPS", - "center": "POINT (538675.6008556466549635 2220680.1230536736547947)", - "surface": 15560000, - "canton": null, - "numero_insee": "36201" - } - }, - { - "pk": 21563, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-MAUR", - "center": "POINT (545462.0632078439230099 2199018.3468154976144433)", - "surface": 70810000, - "canton": null, - "numero_insee": "36202" - } - }, - { - "pk": 34260, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-MEDARD", - "center": "POINT (518436.6670644347905181 2223313.7132895234972239)", - "surface": 12570000, - "canton": null, - "numero_insee": "36203" - } - }, - { - "pk": 14199, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-PIERRE-DE-JARDS", - "center": "POINT (572095.8664014263777062 2233570.0259462101384997)", - "surface": 18260000, - "canton": null, - "numero_insee": "36205" - } - }, - { - "pk": 8092, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-PIERRE-DE-LAMPS", - "center": "POINT (537388.7958684820914641 2218967.9522868371568620)", - "surface": 10320000, - "canton": null, - "numero_insee": "36206" - } - }, - { - "pk": 21201, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-PLANTAIRE", - "center": "POINT (547094.9695150179322809 2159297.3202307317405939)", - "surface": 34350000, - "canton": null, - "numero_insee": "36207" - } - }, - { - "pk": 20399, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINTE-SEVERE-SUR-INDRE", - "center": "POINT (579358.5121156545355916 2167073.8651257161982358)", - "surface": 26380000, - "canton": null, - "numero_insee": "36208" - } - }, - { - "pk": 25204, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAINT-VALENTIN", - "center": "POINT (563017.7833832886535674 2218081.1613059309311211)", - "surface": 25050000, - "canton": null, - "numero_insee": "36209" - } - }, - { - "pk": 4010, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SARZAY", - "center": "POINT (567059.8240890084998682 2177580.1971977245993912)", - "surface": 18600000, - "canton": null, - "numero_insee": "36210" - } - }, - { - "pk": 27924, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SASSIERGES-SAINT-GERMAIN", - "center": "POINT (565912.4702586734201759 2195085.7805757890455425)", - "surface": 31880000, - "canton": null, - "numero_insee": "36211" - } - }, - { - "pk": 32148, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAULNAY", - "center": "POINT (517662.6904990095063113 2208094.4186438373290002)", - "surface": 22540000, - "canton": null, - "numero_insee": "36212" - } - }, - { - "pk": 34492, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAUZELLES", - "center": "POINT (496539.9090002595912665 2184598.5862324815243483)", - "surface": 12760000, - "canton": null, - "numero_insee": "36213" - } - }, - { - "pk": 10247, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SAZERAY", - "center": "POINT (577609.8655371975619346 2160753.6415584967471659)", - "surface": 22940000, - "canton": null, - "numero_insee": "36214" - } - }, - { - "pk": 11402, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SEGRY", - "center": "POINT (581605.8807069718604907 2209429.3363848226144910)", - "surface": 33660000, - "canton": null, - "numero_insee": "36215" - } - }, - { - "pk": 12634, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SELLES-SUR-NAHON", - "center": "POINT (532938.6442552793305367 2224535.5285285478457808)", - "surface": 6840000, - "canton": null, - "numero_insee": "36216" - } - }, - { - "pk": 28047, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SEMBLECAY", - "center": "POINT (551268.8890237141167745 2246706.8187553235329688)", - "surface": 8160000, - "canton": null, - "numero_insee": "36217" - } - }, - { - "pk": 33458, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "SOUGE", - "center": "POINT (534788.4562626770930365 2218746.0855983220972121)", - "surface": 13120000, - "canton": null, - "numero_insee": "36218" - } - }, - { - "pk": 15341, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "TENDU", - "center": "POINT (540985.4329122038325295 2183767.8366012745536864)", - "surface": 42040000, - "canton": null, - "numero_insee": "36219" - } - }, - { - "pk": 18865, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "THENAY", - "center": "POINT (530427.8697976199910045 2177574.4202279415912926)", - "surface": 34360000, - "canton": null, - "numero_insee": "36220" - } - }, - { - "pk": 14609, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "THEVET-SAINT-JULIEN", - "center": "POINT (579537.1757714863633737 2181588.0770556139759719)", - "surface": 31120000, - "canton": null, - "numero_insee": "36221" - } - }, - { - "pk": 34891, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "THIZAY", - "center": "POINT (568881.7381208202568814 2211024.2209260561503470)", - "surface": 16820000, - "canton": null, - "numero_insee": "36222" - } - }, - { - "pk": 8189, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "TILLY", - "center": "POINT (513486.6236292748944834 2156714.9638257673941553)", - "surface": 14760000, - "canton": null, - "numero_insee": "36223" - } - }, - { - "pk": 31056, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "TOURNON-SAINT-MARTIN", - "center": "POINT (496469.1813005703734234 2193105.3592517706565559)", - "surface": 25740000, - "canton": null, - "numero_insee": "36224" - } - }, - { - "pk": 31326, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LE TRANGER", - "center": "POINT (517064.7654847686644644 2219799.3426874880678952)", - "surface": 22290000, - "canton": null, - "numero_insee": "36225" - } - }, - { - "pk": 22620, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "TRANZAULT", - "center": "POINT (563034.0021436050301418 2180248.8716118312440813)", - "surface": 18090000, - "canton": null, - "numero_insee": "36226" - } - }, - { - "pk": 26435, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "URCIERS", - "center": "POINT (585340.7338747105095536 2169826.3771380851976573)", - "surface": 19030000, - "canton": null, - "numero_insee": "36227" - } - }, - { - "pk": 14686, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VALENCAY", - "center": "POINT (540917.8832118592690676 2239814.7667578719556332)", - "surface": 41800000, - "canton": null, - "numero_insee": "36228" - } - }, - { - "pk": 30638, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VARENNES-SUR-FOUZON", - "center": "POINT (543474.7273486353224143 2245240.5650874343700707)", - "surface": 22820000, - "canton": null, - "numero_insee": "36229" - } - }, - { - "pk": 27462, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VATAN", - "center": "POINT (561131.0166060586925596 2228273.9407460857182741)", - "surface": 30020000, - "canton": null, - "numero_insee": "36230" - } - }, - { - "pk": 15759, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VELLES", - "center": "POINT (546446.3637440735474229 2189017.9499491453170776)", - "surface": 64320000, - "canton": null, - "numero_insee": "36231" - } - }, - { - "pk": 23854, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VENDOEUVRES", - "center": "POINT (525444.6278142163064331 2199051.4918370791710913)", - "surface": 98790000, - "canton": null, - "numero_insee": "36232" - } - }, - { - "pk": 31508, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "LA VERNELLE", - "center": "POINT (541438.1334423179505393 2249427.0082707940600812)", - "surface": 17240000, - "canton": null, - "numero_insee": "36233" - } - }, - { - "pk": 24525, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VERNEUIL-SUR-IGNERAIE", - "center": "POINT (575314.5337450023507699 2183854.7087116511538625)", - "surface": 9950000, - "canton": null, - "numero_insee": "36234" - } - }, - { - "pk": 20941, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VEUIL", - "center": "POINT (537235.9616209556115791 2237281.9670354900881648)", - "surface": 18840000, - "canton": null, - "numero_insee": "36235" - } - }, - { - "pk": 14608, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VICQ-EXEMPLET", - "center": "POINT (585155.0839496608823538 2180033.7608526381663978)", - "surface": 38810000, - "canton": null, - "numero_insee": "36236" - } - }, - { - "pk": 19219, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VICQ-SUR-NAHON", - "center": "POINT (540869.6035388206364587 2233609.2246675277128816)", - "surface": 49260000, - "canton": null, - "numero_insee": "36237" - } - }, - { - "pk": 28613, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VIGOULANT", - "center": "POINT (580519.7819871777901426 2159877.2211546180769801)", - "surface": 9790000, - "canton": null, - "numero_insee": "36238" - } - }, - { - "pk": 14106, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VIGOUX", - "center": "POINT (533803.1684020276879892 2168894.9395192526280880)", - "surface": 38100000, - "canton": null, - "numero_insee": "36239" - } - }, - { - "pk": 13205, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VIJON", - "center": "POINT (583424.6695568588329479 2159601.2975145359523594)", - "surface": 21210000, - "canton": null, - "numero_insee": "36240" - } - }, - { - "pk": 35886, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VILLEDIEU-SUR-INDRE", - "center": "POINT (537403.1393200504826382 2205256.4559370479546487)", - "surface": 58470000, - "canton": null, - "numero_insee": "36241" - } - }, - { - "pk": 34407, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VILLEGONGIS", - "center": "POINT (543034.9045500901993364 2214010.8609463539905846)", - "surface": 18300000, - "canton": null, - "numero_insee": "36242" - } - }, - { - "pk": 32173, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VILLEGOUIN", - "center": "POINT (525372.8456295416690409 2219668.4045082316733897)", - "surface": 24380000, - "canton": null, - "numero_insee": "36243" - } - }, - { - "pk": 32644, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VILLENTROIS", - "center": "POINT (533481.3937108569080010 2243455.7621034095063806)", - "surface": 32560000, - "canton": null, - "numero_insee": "36244" - } - }, - { - "pk": 29250, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VILLERS-LES-ORMES", - "center": "POINT (545593.6820097112795338 2207226.4553485852666199)", - "surface": 17810000, - "canton": null, - "numero_insee": "36245" - } - }, - { - "pk": 37304, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VILLIERS", - "center": "POINT (513243.4178138396819122 2209959.2281255940906703)", - "surface": 24890000, - "canton": null, - "numero_insee": "36246" - } - }, - { - "pk": 30365, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VINEUIL", - "center": "POINT (547954.5937689833808690 2212150.3389464542269707)", - "surface": 44580000, - "canton": null, - "numero_insee": "36247" - } - }, - { - "pk": 8081, - "model": "ishtar_common.town", - "fields": { - "departement": 37, - "name": "VOUILLON", - "center": "POINT (567653.5908030945574865 2202306.5294220275245607)", - "surface": 15090000, - "canton": null, - "numero_insee": "36248" - } - }, - { - "pk": 15322, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ABILLY", - "center": "POINT (478056.2100030686124228 2216872.8070058459416032)", - "surface": 30620000, - "canton": null, - "numero_insee": "37001" - } - }, - { - "pk": 22343, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AMBILLOU", - "center": "POINT (457464.7866040379740298 2274149.2966223098337650)", - "surface": 49700000, - "canton": null, - "numero_insee": "37002" - } - }, - { - "pk": 19801, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AMBOISE", - "center": "POINT (499060.8674201093381271 2266588.1527130613103509)", - "surface": 41030000, - "canton": null, - "numero_insee": "37003" - } - }, - { - "pk": 9993, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ANCHE", - "center": "POINT (446047.6854087109677494 2238826.1157066696323454)", - "surface": 7990000, - "canton": null, - "numero_insee": "37004" - } - }, - { - "pk": 24136, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ANTOGNY-LE-TILLAC", - "center": "POINT (464416.6236898169154301 2220262.6270697298459709)", - "surface": 17280000, - "canton": null, - "numero_insee": "37005" - } - }, - { - "pk": 17599, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ARTANNES-SUR-INDRE", - "center": "POINT (468137.5832830799045041 2254321.6600284627638757)", - "surface": 21160000, - "canton": null, - "numero_insee": "37006" - } - }, - { - "pk": 9338, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ASSAY", - "center": "POINT (443503.6629819505615160 2231799.2516910266131163)", - "surface": 14640000, - "canton": null, - "numero_insee": "37007" - } - }, - { - "pk": 30225, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AUTRECHE", - "center": "POINT (499440.5750111145316623 2281102.9140731589868665)", - "surface": 20590000, - "canton": null, - "numero_insee": "37009" - } - }, - { - "pk": 16427, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AUZOUER-EN-TOURAINE", - "center": "POINT (494606.3182102499995381 2284765.6603904846124351)", - "surface": 34020000, - "canton": null, - "numero_insee": "37010" - } - }, - { - "pk": 8588, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AVOINE", - "center": "POINT (437254.2001555173192173 2249262.0377582362852991)", - "surface": 12450000, - "canton": null, - "numero_insee": "37011" - } - }, - { - "pk": 3991, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AVON-LES-ROCHES", - "center": "POINT (457712.6338426592992619 2244227.0669696782715619)", - "surface": 33160000, - "canton": null, - "numero_insee": "37012" - } - }, - { - "pk": 15520, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AVRILLE-LES-PONCEAUX", - "center": "POINT (446412.1385173486778513 2267352.4164958694018424)", - "surface": 32730000, - "canton": null, - "numero_insee": "37013" - } - }, - { - "pk": 21540, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AZAY-LE-RIDEAU", - "center": "POINT (458730.5605126003501937 2254243.6976513788104057)", - "surface": 27270000, - "canton": null, - "numero_insee": "37014" - } - }, - { - "pk": 11670, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AZAY-SUR-CHER", - "center": "POINT (487202.8022006506216712 2260384.6743648527190089)", - "surface": 22940000, - "canton": null, - "numero_insee": "37015" - } - }, - { - "pk": 10782, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "AZAY-SUR-INDRE", - "center": "POINT (494429.5093602309934795 2245832.8000615998171270)", - "surface": 13680000, - "canton": null, - "numero_insee": "37016" - } - }, - { - "pk": 16309, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BALLAN-MIRE", - "center": "POINT (468882.5840289784828201 2261033.2854318977333605)", - "surface": 26270000, - "canton": null, - "numero_insee": "37018" - } - }, - { - "pk": 3793, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BARROU", - "center": "POINT (480914.0477163749746978 2210190.8532417328096926)", - "surface": 30980000, - "canton": null, - "numero_insee": "37019" - } - }, - { - "pk": 36370, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BEAULIEU-LES-LOCHES", - "center": "POINT (500305.4510866268537939 2237274.5554798576049507)", - "surface": 3900000, - "canton": null, - "numero_insee": "37020" - } - }, - { - "pk": 4826, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BEAUMONT-LA-RONCE", - "center": "POINT (474774.5698638110770844 2286702.6461995826102793)", - "surface": 39060000, - "canton": null, - "numero_insee": "37021" - } - }, - { - "pk": 28121, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BEAUMONT-EN-VERON", - "center": "POINT (437081.3527518780902028 2245957.8980675661005080)", - "surface": 18960000, - "canton": null, - "numero_insee": "37022" - } - }, - { - "pk": 33807, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BEAUMONT-VILLAGE", - "center": "POINT (514171.0034765404998325 2242794.4052082370035350)", - "surface": 19310000, - "canton": null, - "numero_insee": "37023" - } - }, - { - "pk": 23006, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BENAIS", - "center": "POINT (439772.5714140441268682 2259391.1040654974058270)", - "surface": 20130000, - "canton": null, - "numero_insee": "37024" - } - }, - { - "pk": 30478, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BERTHENAY", - "center": "POINT (463155.1340069806901738 2263788.0742278723046184)", - "surface": 7550000, - "canton": null, - "numero_insee": "37025" - } - }, - { - "pk": 21863, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BETZ-LE-CHATEAU", - "center": "POINT (494718.4143196850200184 2223116.3407457624562085)", - "surface": 46710000, - "canton": null, - "numero_insee": "37026" - } - }, - { - "pk": 23826, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BLERE", - "center": "POINT (497937.3634222209802829 2257271.2822103565558791)", - "surface": 31120000, - "canton": null, - "numero_insee": "37027" - } - }, - { - "pk": 18862, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BOSSAY-SUR-CLAISE", - "center": "POINT (496081.5788854990969412 2203611.1531637185253203)", - "surface": 65520000, - "canton": null, - "numero_insee": "37028" - } - }, - { - "pk": 3738, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BOSSEE", - "center": "POINT (478297.8734334633918479 2235990.8041048110462725)", - "surface": 19030000, - "canton": null, - "numero_insee": "37029" - } - }, - { - "pk": 16473, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LE BOULAY", - "center": "POINT (487762.3370233916211873 2289412.5090978429652750)", - "surface": 19900000, - "canton": null, - "numero_insee": "37030" - } - }, - { - "pk": 20308, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BOURGUEIL", - "center": "POINT (436473.4258583892369643 2258963.5019233687780797)", - "surface": 32800000, - "canton": null, - "numero_insee": "37031" - } - }, - { - "pk": 27129, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BOURNAN", - "center": "POINT (478038.3429539701901376 2231084.5745374350808561)", - "surface": 14730000, - "canton": null, - "numero_insee": "37032" - } - }, - { - "pk": 14693, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BOUSSAY", - "center": "POINT (489853.4251251893583685 2206361.7791341939009726)", - "surface": 27950000, - "canton": null, - "numero_insee": "37033" - } - }, - { - "pk": 17472, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BRASLOU", - "center": "POINT (453277.3756957360310480 2223873.4522321079857647)", - "surface": 15950000, - "canton": null, - "numero_insee": "37034" - } - }, - { - "pk": 25825, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BRAYE-SOUS-FAYE", - "center": "POINT (447186.7522611675085500 2222121.6050227046944201)", - "surface": 15580000, - "canton": null, - "numero_insee": "37035" - } - }, - { - "pk": 32281, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BRAYE-SUR-MAULNE", - "center": "POINT (443752.1845682531129569 2286445.6628850088454783)", - "surface": 12110000, - "canton": null, - "numero_insee": "37036" - } - }, - { - "pk": 5506, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BRECHES", - "center": "POINT (454762.6172695152345113 2286236.5479901102371514)", - "surface": 11470000, - "canton": null, - "numero_insee": "37037" - } - }, - { - "pk": 21730, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BREHEMONT", - "center": "POINT (450607.1104628907050937 2256278.1404308527708054)", - "surface": 12940000, - "canton": null, - "numero_insee": "37038" - } - }, - { - "pk": 13202, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BRIDORE", - "center": "POINT (504394.2469209982082248 2226999.9907960179261863)", - "surface": 14880000, - "canton": null, - "numero_insee": "37039" - } - }, - { - "pk": 33268, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BRIZAY", - "center": "POINT (451986.1364458049647510 2234771.8661242383532226)", - "surface": 14330000, - "canton": null, - "numero_insee": "37040" - } - }, - { - "pk": 36236, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "BUEIL-EN-TOURAINE", - "center": "POINT (465908.4952846514061093 2293834.7973836683668196)", - "surface": 17900000, - "canton": null, - "numero_insee": "37041" - } - }, - { - "pk": 22783, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CANDES-SAINT-MARTIN", - "center": "POINT (428564.1929273304995149 2247188.5801154039800167)", - "surface": 5720000, - "canton": null, - "numero_insee": "37042" - } - }, - { - "pk": 19744, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CANGEY", - "center": "POINT (503775.3276317284908146 2277335.9407640160061419)", - "surface": 22620000, - "canton": null, - "numero_insee": "37043" - } - }, - { - "pk": 19220, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA CELLE-GUENAND", - "center": "POINT (490561.7456640567979775 2217477.0810180385597050)", - "surface": 37110000, - "canton": null, - "numero_insee": "37044" - } - }, - { - "pk": 6569, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA CELLE-SAINT-AVANT", - "center": "POINT (469173.8605476407683454 2225906.7724854187108576)", - "surface": 17810000, - "canton": null, - "numero_insee": "37045" - } - }, - { - "pk": 19430, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CERE-LA-RONDE", - "center": "POINT (512500.6392422904027626 2251087.3119449573569000)", - "surface": 49490000, - "canton": null, - "numero_insee": "37046" - } - }, - { - "pk": 9158, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CERELLES", - "center": "POINT (475535.6834764858940616 2279403.1692001358605921)", - "surface": 12270000, - "canton": null, - "numero_insee": "37047" - } - }, - { - "pk": 34493, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHAMBON", - "center": "POINT (484757.7404495374066755 2205318.5964577551931143)", - "surface": 18430000, - "canton": null, - "numero_insee": "37048" - } - }, - { - "pk": 34040, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHAMBOURG-SUR-INDRE", - "center": "POINT (496260.8149044500896707 2242245.0584589671343565)", - "surface": 28390000, - "canton": null, - "numero_insee": "37049" - } - }, - { - "pk": 32773, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHAMBRAY-LES-TOURS", - "center": "POINT (477495.6054179552011192 2260304.0828927946276963)", - "surface": 19420000, - "canton": null, - "numero_insee": "37050" - } - }, - { - "pk": 34904, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHAMPIGNY-SUR-VEUDE", - "center": "POINT (447418.2413003457477316 2230430.4742023707367480)", - "surface": 16110000, - "canton": null, - "numero_insee": "37051" - } - }, - { - "pk": 31490, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHANCAY", - "center": "POINT (490198.6774251580936834 2273219.8762111072428524)", - "surface": 15140000, - "canton": null, - "numero_insee": "37052" - } - }, - { - "pk": 6444, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHANCEAUX-PRES-LOCHES", - "center": "POINT (493987.3575200072955340 2238823.3514469154179096)", - "surface": 14670000, - "canton": null, - "numero_insee": "37053" - } - }, - { - "pk": 23758, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHANCEAUX-SUR-CHOISILLE", - "center": "POINT (476859.8792754821479321 2276611.9239226859062910)", - "surface": 18490000, - "canton": null, - "numero_insee": "37054" - } - }, - { - "pk": 15551, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHANNAY-SUR-LATHAN", - "center": "POINT (442926.8562589841312729 2277331.6045999419875443)", - "surface": 29190000, - "canton": null, - "numero_insee": "37055" - } - }, - { - "pk": 28357, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA CHAPELLE-AUX-NAUX", - "center": "POINT (454889.5995964603498578 2258815.6302469624206424)", - "surface": 5340000, - "canton": null, - "numero_insee": "37056" - } - }, - { - "pk": 16316, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA CHAPELLE-BLANCHE-SAINT-MARTIN", - "center": "POINT (482128.1837437838548794 2232719.8569651278667152)", - "surface": 28600000, - "canton": null, - "numero_insee": "37057" - } - }, - { - "pk": 16398, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA CHAPELLE-SUR-LOIRE", - "center": "POINT (439431.0277349822572432 2252282.4932871134951711)", - "surface": 19330000, - "canton": null, - "numero_insee": "37058" - } - }, - { - "pk": 3320, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHARENTILLY", - "center": "POINT (468660.5349052085075527 2275743.2753867018036544)", - "surface": 14100000, - "canton": null, - "numero_insee": "37059" - } - }, - { - "pk": 28063, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHARGE", - "center": "POINT (502226.6006079579237849 2271018.0183970732614398)", - "surface": 8540000, - "canton": null, - "numero_insee": "37060" - } - }, - { - "pk": 15321, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHARNIZAY", - "center": "POINT (497498.7120773739879951 2213731.5282594235613942)", - "surface": 53240000, - "canton": null, - "numero_insee": "37061" - } - }, - { - "pk": 23814, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHATEAU-LA-VALLIERE", - "center": "POINT (448587.1224881461821496 2282682.6537349452264607)", - "surface": 19560000, - "canton": null, - "numero_insee": "37062" - } - }, - { - "pk": 26043, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHATEAU-RENAULT", - "center": "POINT (492669.1869930953835137 2289052.9593054121360183)", - "surface": 3530000, - "canton": null, - "numero_insee": "37063" - } - }, - { - "pk": 17082, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHAUMUSSAY", - "center": "POINT (486824.4727167726960033 2209539.3399169463664293)", - "surface": 18960000, - "canton": null, - "numero_insee": "37064" - } - }, - { - "pk": 22460, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHAVEIGNES", - "center": "POINT (449050.1154509142506868 2226740.8872399125248194)", - "surface": 21170000, - "canton": null, - "numero_insee": "37065" - } - }, - { - "pk": 18787, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHEILLE", - "center": "POINT (455056.8013766224612482 2250710.4084863411262631)", - "surface": 47120000, - "canton": null, - "numero_insee": "37067" - } - }, - { - "pk": 16712, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHEMILLE-SUR-DEME", - "center": "POINT (474590.6511331562651321 2296809.0646668490953743)", - "surface": 33600000, - "canton": null, - "numero_insee": "37068" - } - }, - { - "pk": 22675, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHEMILLE-SUR-INDROIS", - "center": "POINT (510591.6117072865599766 2239962.2928336411714554)", - "surface": 24890000, - "canton": null, - "numero_insee": "37069" - } - }, - { - "pk": 36832, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHENONCEAUX", - "center": "POINT (504313.8176277573802508 2260727.0742575875483453)", - "surface": 4260000, - "canton": null, - "numero_insee": "37070" - } - }, - { - "pk": 34045, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHEZELLES", - "center": "POINT (455918.1200598676223308 2231301.5123934578150511)", - "surface": 15380000, - "canton": null, - "numero_insee": "37071" - } - }, - { - "pk": 18258, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHINON", - "center": "POINT (441405.2884361422620714 2243491.5942605943419039)", - "surface": 38940000, - "canton": null, - "numero_insee": "37072" - } - }, - { - "pk": 12235, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHISSEAUX", - "center": "POINT (506206.8988726346869953 2261743.6347510805353522)", - "surface": 11710000, - "canton": null, - "numero_insee": "37073" - } - }, - { - "pk": 4887, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CHOUZE-SUR-LOIRE", - "center": "POINT (431327.4378854271490127 2251915.2637507715262473)", - "surface": 28320000, - "canton": null, - "numero_insee": "37074" - } - }, - { - "pk": 26069, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CIGOGNE", - "center": "POINT (494473.0217456325190142 2252638.7339294874109328)", - "surface": 21870000, - "canton": null, - "numero_insee": "37075" - } - }, - { - "pk": 22289, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CINAIS", - "center": "POINT (436213.7660925928503275 2241947.4285603184252977)", - "surface": 8800000, - "canton": null, - "numero_insee": "37076" - } - }, - { - "pk": 33649, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CINQ-MARS-LA-PILE", - "center": "POINT (457656.0384730701334774 2263142.0281343446113169)", - "surface": 20400000, - "canton": null, - "numero_insee": "37077" - } - }, - { - "pk": 31118, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CIRAN", - "center": "POINT (488764.8144487884710543 2228971.8067123056389391)", - "surface": 14110000, - "canton": null, - "numero_insee": "37078" - } - }, - { - "pk": 23934, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CIVRAY-DE-TOURAINE", - "center": "POINT (502012.1128903029602952 2260707.9277846724726260)", - "surface": 23160000, - "canton": null, - "numero_insee": "37079" - } - }, - { - "pk": 30479, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CIVRAY-SUR-ESVES", - "center": "POINT (476567.0925771470647305 2227469.3586187451146543)", - "surface": 13230000, - "canton": null, - "numero_insee": "37080" - } - }, - { - "pk": 22498, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CLERE-LES-PINS", - "center": "POINT (452365.1962305466295220 2273606.6682019494473934)", - "surface": 35730000, - "canton": null, - "numero_insee": "37081" - } - }, - { - "pk": 31256, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CONTINVOIR", - "center": "POINT (441325.7576436693780124 2265208.6463510105386376)", - "surface": 41360000, - "canton": null, - "numero_insee": "37082" - } - }, - { - "pk": 6090, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CORMERY", - "center": "POINT (487171.7193550023948774 2252077.6593157211318612)", - "surface": 6040000, - "canton": null, - "numero_insee": "37083" - } - }, - { - "pk": 14504, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "COUESMES", - "center": "POINT (451267.5435775571386330 2285306.9000958497636020)", - "surface": 21940000, - "canton": null, - "numero_insee": "37084" - } - }, - { - "pk": 18159, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "COURCAY", - "center": "POINT (490083.0351829014252871 2251000.9448715159669518)", - "surface": 25040000, - "canton": null, - "numero_insee": "37085" - } - }, - { - "pk": 29327, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "COURCELLES-DE-TOURAINE", - "center": "POINT (449022.1968486956902780 2278482.9127349029295146)", - "surface": 26040000, - "canton": null, - "numero_insee": "37086" - } - }, - { - "pk": 15082, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "COURCOUE", - "center": "POINT (452747.9879631990334019 2227372.0024489392526448)", - "surface": 15580000, - "canton": null, - "numero_insee": "37087" - } - }, - { - "pk": 36726, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "COUZIERS", - "center": "POINT (428696.5103425250854343 2243286.4619223373010755)", - "surface": 11980000, - "canton": null, - "numero_insee": "37088" - } - }, - { - "pk": 3754, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CRAVANT-LES-COTEAUX", - "center": "POINT (448716.6046825646189973 2242851.5084218746051192)", - "surface": 38130000, - "canton": null, - "numero_insee": "37089" - } - }, - { - "pk": 31741, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CRISSAY-SUR-MANSE", - "center": "POINT (460330.3511544005596079 2242347.1869447976350784)", - "surface": 7590000, - "canton": null, - "numero_insee": "37090" - } - }, - { - "pk": 3223, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA CROIX-EN-TOURAINE", - "center": "POINT (498399.4593021953478456 2261878.8566948343068361)", - "surface": 15220000, - "canton": null, - "numero_insee": "37091" - } - }, - { - "pk": 27211, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CROTELLES", - "center": "POINT (486012.5683408463373780 2283193.0744528006762266)", - "surface": 15670000, - "canton": null, - "numero_insee": "37092" - } - }, - { - "pk": 4592, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CROUZILLES", - "center": "POINT (458261.0944012289401144 2238426.8196097398176789)", - "surface": 14470000, - "canton": null, - "numero_insee": "37093" - } - }, - { - "pk": 37236, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "CUSSAY", - "center": "POINT (480786.9318620630074292 2225502.7087654820643365)", - "surface": 26130000, - "canton": null, - "numero_insee": "37094" - } - }, - { - "pk": 7348, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "DIERRE", - "center": "POINT (495692.4689215146936476 2262456.8374386248178780)", - "surface": 10320000, - "canton": null, - "numero_insee": "37096" - } - }, - { - "pk": 15925, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "DOLUS-LE-SEC", - "center": "POINT (490362.1765526680974290 2241495.4570855023339391)", - "surface": 27420000, - "canton": null, - "numero_insee": "37097" - } - }, - { - "pk": 30706, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "DRACHE", - "center": "POINT (470632.6833469310658984 2231023.1331759635359049)", - "surface": 18570000, - "canton": null, - "numero_insee": "37098" - } - }, - { - "pk": 11293, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "DRUYE", - "center": "POINT (463713.5612290926510468 2256787.0238291034474969)", - "surface": 23010000, - "canton": null, - "numero_insee": "37099" - } - }, - { - "pk": 10019, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "EPEIGNE-LES-BOIS", - "center": "POINT (508175.7661366901593283 2253653.4353214884176850)", - "surface": 14610000, - "canton": null, - "numero_insee": "37100" - } - }, - { - "pk": 19049, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "EPEIGNE-SUR-DEME", - "center": "POINT (470872.2428800605703145 2298679.7094436474144459)", - "surface": 21080000, - "canton": null, - "numero_insee": "37101" - } - }, - { - "pk": 28566, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LES ESSARDS", - "center": "POINT (445953.9978191344416700 2262244.5053222421556711)", - "surface": 4140000, - "canton": null, - "numero_insee": "37102" - } - }, - { - "pk": 32406, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ESVES-LE-MOUTIER", - "center": "POINT (491085.7029175955103710 2226689.1672029448673129)", - "surface": 10610000, - "canton": null, - "numero_insee": "37103" - } - }, - { - "pk": 15227, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ESVRES", - "center": "POINT (483036.2458714031963609 2255946.4980687489733100)", - "surface": 35870000, - "canton": null, - "numero_insee": "37104" - } - }, - { - "pk": 27507, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "FAYE-LA-VINEUSE", - "center": "POINT (448214.8585115143796429 2218827.3344615963287652)", - "surface": 17540000, - "canton": null, - "numero_insee": "37105" - } - }, - { - "pk": 25543, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA FERRIERE", - "center": "POINT (481229.4185155106242746 2292760.9394023297354579)", - "surface": 15620000, - "canton": null, - "numero_insee": "37106" - } - }, - { - "pk": 30704, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "FERRIERE-LARCON", - "center": "POINT (488716.2852097936556675 2222766.2105749817565084)", - "surface": 21000000, - "canton": null, - "numero_insee": "37107" - } - }, - { - "pk": 19184, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "FONDETTES", - "center": "POINT (469113.9329152589780279 2269341.9045059788040817)", - "surface": 31860000, - "canton": null, - "numero_insee": "37109" - } - }, - { - "pk": 26267, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "FRANCUEIL", - "center": "POINT (504841.6636043112957850 2257428.7869949718005955)", - "surface": 12920000, - "canton": null, - "numero_insee": "37110" - } - }, - { - "pk": 21912, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "GENILLE", - "center": "POINT (506959.7382341311895289 2243434.9528564508073032)", - "surface": 63330000, - "canton": null, - "numero_insee": "37111" - } - }, - { - "pk": 16881, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "GIZEUX", - "center": "POINT (437702.4122847387916408 2267680.7023015995509923)", - "surface": 21030000, - "canton": null, - "numero_insee": "37112" - } - }, - { - "pk": 18259, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LE GRAND-PRESSIGNY", - "center": "POINT (484183.3802760582184419 2214221.3918560394085944)", - "surface": 40280000, - "canton": null, - "numero_insee": "37113" - } - }, - { - "pk": 35918, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA GUERCHE", - "center": "POINT (477198.7003813721239567 2211661.2876897128298879)", - "surface": 5400000, - "canton": null, - "numero_insee": "37114" - } - }, - { - "pk": 19805, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "DESCARTES", - "center": "POINT (475304.2920661164680496 2222855.0240901201032102)", - "surface": 38090000, - "canton": null, - "numero_insee": "37115" - } - }, - { - "pk": 23322, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LES HERMITES", - "center": "POINT (481589.0008792500011623 2297667.7647841577418149)", - "surface": 32680000, - "canton": null, - "numero_insee": "37116" - } - }, - { - "pk": 19188, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "HOMMES", - "center": "POINT (445078.8908729929244146 2271244.5230182530358434)", - "surface": 30310000, - "canton": null, - "numero_insee": "37117" - } - }, - { - "pk": 14619, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "HUISMES", - "center": "POINT (442356.3778913322603330 2249504.3940828931517899)", - "surface": 23760000, - "canton": null, - "numero_insee": "37118" - } - }, - { - "pk": 31972, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "L'ILE-BOUCHARD", - "center": "POINT (454765.0659540523774922 2237597.2004134398885071)", - "surface": 3610000, - "canton": null, - "numero_insee": "37119" - } - }, - { - "pk": 37505, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "INGRANDES-DE-TOURAINE", - "center": "POINT (443792.1033006819197908 2257422.7228896026499569)", - "surface": 9520000, - "canton": null, - "numero_insee": "37120" - } - }, - { - "pk": 24137, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "JAULNAY", - "center": "POINT (454219.5074246927397326 2218877.0466119712218642)", - "surface": 14730000, - "canton": null, - "numero_insee": "37121" - } - }, - { - "pk": 17032, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "JOUE-LES-TOURS", - "center": "POINT (472888.8710986713995226 2260666.1866410202346742)", - "surface": 32380000, - "canton": null, - "numero_insee": "37122" - } - }, - { - "pk": 21814, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LANGEAIS", - "center": "POINT (451152.0537234930088744 2262988.0909789241850376)", - "surface": 60340000, - "canton": null, - "numero_insee": "37123" - } - }, - { - "pk": 37071, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LARCAY", - "center": "POINT (482080.7406976247439161 2262543.9228602116927505)", - "surface": 11320000, - "canton": null, - "numero_insee": "37124" - } - }, - { - "pk": 17473, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LEMERE", - "center": "POINT (447984.7426224505179562 2234538.5776751991361380)", - "surface": 19660000, - "canton": null, - "numero_insee": "37125" - } - }, - { - "pk": 21373, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LERNE", - "center": "POINT (431124.7874373863451183 2240103.8807465182617307)", - "surface": 16370000, - "canton": null, - "numero_insee": "37126" - } - }, - { - "pk": 24761, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LE LIEGE", - "center": "POINT (507019.0071730626514181 2248339.4735636822879314)", - "surface": 11250000, - "canton": null, - "numero_insee": "37127" - } - }, - { - "pk": 26436, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LIGRE", - "center": "POINT (443265.4274287460139021 2236401.1070407666265965)", - "surface": 27730000, - "canton": null, - "numero_insee": "37129" - } - }, - { - "pk": 18654, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LIGUEIL", - "center": "POINT (484569.0763984579825774 2228036.2044677021913230)", - "surface": 29770000, - "canton": null, - "numero_insee": "37130" - } - }, - { - "pk": 6940, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LIMERAY", - "center": "POINT (501504.4474765836494043 2273614.0958612263202667)", - "surface": 13870000, - "canton": null, - "numero_insee": "37131" - } - }, - { - "pk": 4894, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LOCHES", - "center": "POINT (496609.2970230934442952 2236443.1584496116265655)", - "surface": 27310000, - "canton": null, - "numero_insee": "37132" - } - }, - { - "pk": 19242, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LOCHE-SUR-INDROIS", - "center": "POINT (513959.1104841212509200 2232183.8597597689367831)", - "surface": 74780000, - "canton": null, - "numero_insee": "37133" - } - }, - { - "pk": 24134, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LOUANS", - "center": "POINT (478936.9397275283117779 2243402.2278588940389454)", - "surface": 18120000, - "canton": null, - "numero_insee": "37134" - } - }, - { - "pk": 26145, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LOUESTAULT", - "center": "POINT (473538.8402459682547487 2290895.7086186925880611)", - "surface": 16490000, - "canton": null, - "numero_insee": "37135" - } - }, - { - "pk": 3510, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LE LOUROUX", - "center": "POINT (480560.5779905947856605 2240713.4770310181193054)", - "surface": 28870000, - "canton": null, - "numero_insee": "37136" - } - }, - { - "pk": 27627, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LUBLE", - "center": "POINT (443281.6217672797502019 2282838.9174802806228399)", - "surface": 12570000, - "canton": null, - "numero_insee": "37137" - } - }, - { - "pk": 7048, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LUSSAULT-SUR-LOIRE", - "center": "POINT (493056.4466337655903772 2266538.2392492531798780)", - "surface": 9180000, - "canton": null, - "numero_insee": "37138" - } - }, - { - "pk": 31828, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LUYNES", - "center": "POINT (464608.9650242981733754 2269504.7189110098406672)", - "surface": 34030000, - "canton": null, - "numero_insee": "37139" - } - }, - { - "pk": 19165, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LUZE", - "center": "POINT (457966.9048205745639279 2225613.7179480697959661)", - "surface": 20300000, - "canton": null, - "numero_insee": "37140" - } - }, - { - "pk": 37737, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LUZILLE", - "center": "POINT (503582.3216639262391254 2252414.2354148938320577)", - "surface": 40980000, - "canton": null, - "numero_insee": "37141" - } - }, - { - "pk": 6215, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MAILLE", - "center": "POINT (467043.2050428142538294 2229392.0330025893636048)", - "surface": 15610000, - "canton": null, - "numero_insee": "37142" - } - }, - { - "pk": 19818, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MANTHELAN", - "center": "POINT (485083.1003373775747605 2238449.1251475834287703)", - "surface": 39490000, - "canton": null, - "numero_insee": "37143" - } - }, - { - "pk": 3475, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MARCAY", - "center": "POINT (438484.9420685304794461 2233559.2422791360877454)", - "surface": 21420000, - "canton": null, - "numero_insee": "37144" - } - }, - { - "pk": 27342, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MARCE-SUR-ESVES", - "center": "POINT (472468.0962306880974211 2226934.9319241326302290)", - "surface": 10990000, - "canton": null, - "numero_insee": "37145" - } - }, - { - "pk": 32802, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MARCILLY-SUR-MAULNE", - "center": "POINT (440959.2641537527088076 2285321.6929037701338530)", - "surface": 14560000, - "canton": null, - "numero_insee": "37146" - } - }, - { - "pk": 7012, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MARCILLY-SUR-VIENNE", - "center": "POINT (462543.0740165204042569 2228954.3963621505536139)", - "surface": 11020000, - "canton": null, - "numero_insee": "37147" - } - }, - { - "pk": 5356, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MARIGNY-MARMANDE", - "center": "POINT (458804.0010677444515750 2221216.9575812262482941)", - "surface": 30670000, - "canton": null, - "numero_insee": "37148" - } - }, - { - "pk": 22047, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MARRAY", - "center": "POINT (477225.7210152844199911 2292827.7902651545591652)", - "surface": 23740000, - "canton": null, - "numero_insee": "37149" - } - }, - { - "pk": 32693, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MAZIERES-DE-TOURAINE", - "center": "POINT (456019.2161201566923410 2267431.9432449005544186)", - "surface": 34280000, - "canton": null, - "numero_insee": "37150" - } - }, - { - "pk": 8137, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA MEMBROLLE-SUR-CHOISILLE", - "center": "POINT (470884.5491554836044088 2273059.5570078091695905)", - "surface": 6860000, - "canton": null, - "numero_insee": "37151" - } - }, - { - "pk": 26339, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "METTRAY", - "center": "POINT (473478.9820330967195332 2273981.7962406086735427)", - "surface": 10470000, - "canton": null, - "numero_insee": "37152" - } - }, - { - "pk": 17555, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MONNAIE", - "center": "POINT (483147.0259028414147906 2278765.7826863536611199)", - "surface": 39320000, - "canton": null, - "numero_insee": "37153" - } - }, - { - "pk": 28610, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MONTBAZON", - "center": "POINT (476638.9487970738555305 2254992.6648382246494293)", - "surface": 6510000, - "canton": null, - "numero_insee": "37154" - } - }, - { - "pk": 16111, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MONTHODON", - "center": "POINT (486216.3804747371468693 2294803.9146309779025614)", - "surface": 33950000, - "canton": null, - "numero_insee": "37155" - } - }, - { - "pk": 31298, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MONTLOUIS-SUR-LOIRE", - "center": "POINT (487057.8431700181099586 2265787.8376388247124851)", - "surface": 24510000, - "canton": null, - "numero_insee": "37156" - } - }, - { - "pk": 22873, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MONTRESOR", - "center": "POINT (513895.7767621534294449 2239789.6370227341540158)", - "surface": 1000000, - "canton": null, - "numero_insee": "37157" - } - }, - { - "pk": 21288, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MONTREUIL-EN-TOURAINE", - "center": "POINT (495668.5960443037911318 2277368.6091971541754901)", - "surface": 25150000, - "canton": null, - "numero_insee": "37158" - } - }, - { - "pk": 3283, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MONTS", - "center": "POINT (472039.6661075575393625 2254454.1009256816469133)", - "surface": 27790000, - "canton": null, - "numero_insee": "37159" - } - }, - { - "pk": 32910, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MORAND", - "center": "POINT (500002.7307256505009718 2285711.2356065283529460)", - "surface": 14690000, - "canton": null, - "numero_insee": "37160" - } - }, - { - "pk": 3810, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MOSNES", - "center": "POINT (506617.3359137980150990 2272555.7486125887371600)", - "surface": 14340000, - "canton": null, - "numero_insee": "37161" - } - }, - { - "pk": 24343, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "MOUZAY", - "center": "POINT (490918.2687186151742935 2234794.5296178902499378)", - "surface": 23510000, - "canton": null, - "numero_insee": "37162" - } - }, - { - "pk": 35265, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NAZELLES-NEGRON", - "center": "POINT (495119.7305566075956449 2271159.0870312582701445)", - "surface": 22130000, - "canton": null, - "numero_insee": "37163" - } - }, - { - "pk": 30885, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NEUIL", - "center": "POINT (463016.6351143517531455 2244271.0132503574714065)", - "surface": 18880000, - "canton": null, - "numero_insee": "37165" - } - }, - { - "pk": 20247, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NEUILLE-LE-LIERRE", - "center": "POINT (492944.1754411892616190 2280048.1165282814763486)", - "surface": 16640000, - "canton": null, - "numero_insee": "37166" - } - }, - { - "pk": 14985, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NEUILLE-PONT-PIERRE", - "center": "POINT (465481.9584741920698434 2284924.2440977157093585)", - "surface": 39140000, - "canton": null, - "numero_insee": "37167" - } - }, - { - "pk": 33819, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NEUILLY-LE-BRIGNON", - "center": "POINT (481632.4139712535543367 2220105.1918581542558968)", - "surface": 21920000, - "canton": null, - "numero_insee": "37168" - } - }, - { - "pk": 13788, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NEUVILLE-SUR-BRENNE", - "center": "POINT (493249.6596886029583402 2291459.6731308116577566)", - "surface": 6880000, - "canton": null, - "numero_insee": "37169" - } - }, - { - "pk": 14581, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NEUVY-LE-ROI", - "center": "POINT (468635.3198814594652504 2290855.0440263068303466)", - "surface": 47730000, - "canton": null, - "numero_insee": "37170" - } - }, - { - "pk": 35954, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NOTRE-DAME-D'OE", - "center": "POINT (477282.5921038481756113 2273913.2731904066167772)", - "surface": 7630000, - "canton": null, - "numero_insee": "37172" - } - }, - { - "pk": 18238, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NOUANS-LES-FONTAINES", - "center": "POINT (522222.0760666804271750 2237457.0109182586893439)", - "surface": 63360000, - "canton": null, - "numero_insee": "37173" - } - }, - { - "pk": 11038, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NOUATRE", - "center": "POINT (464958.1872022382449359 2227373.0761162587441504)", - "surface": 9700000, - "canton": null, - "numero_insee": "37174" - } - }, - { - "pk": 20196, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NOUZILLY", - "center": "POINT (479808.0784995448193513 2283141.5629699570126832)", - "surface": 40350000, - "canton": null, - "numero_insee": "37175" - } - }, - { - "pk": 26465, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "NOYANT-DE-TOURAINE", - "center": "POINT (465694.9205264255288057 2235085.6027407692745328)", - "surface": 13850000, - "canton": null, - "numero_insee": "37176" - } - }, - { - "pk": 15920, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ORBIGNY", - "center": "POINT (518142.3440781850367785 2246630.6078001377172768)", - "surface": 65880000, - "canton": null, - "numero_insee": "37177" - } - }, - { - "pk": 3788, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PANZOULT", - "center": "POINT (453725.3580045332782902 2242292.4781001773662865)", - "surface": 34810000, - "canton": null, - "numero_insee": "37178" - } - }, - { - "pk": 36193, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PARCAY-MESLAY", - "center": "POINT (479786.9126064972952008 2273633.8165019024163485)", - "surface": 14130000, - "canton": null, - "numero_insee": "37179" - } - }, - { - "pk": 18263, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PARCAY-SUR-VIENNE", - "center": "POINT (458998.1059609626536258 2234029.2736316458322108)", - "surface": 18740000, - "canton": null, - "numero_insee": "37180" - } - }, - { - "pk": 18874, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PAULMY", - "center": "POINT (485126.8081450102617964 2221135.0499299066141248)", - "surface": 26540000, - "canton": null, - "numero_insee": "37181" - } - }, - { - "pk": 27892, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PERNAY", - "center": "POINT (462868.7379881952656433 2274194.0670226216316223)", - "surface": 17800000, - "canton": null, - "numero_insee": "37182" - } - }, - { - "pk": 20387, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PERRUSSON", - "center": "POINT (499136.9953566856565885 2233361.6008151816204190)", - "surface": 29180000, - "canton": null, - "numero_insee": "37183" - } - }, - { - "pk": 20240, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LE PETIT-PRESSIGNY", - "center": "POINT (491798.4373827385716140 2213183.7212225613184273)", - "surface": 32570000, - "canton": null, - "numero_insee": "37184" - } - }, - { - "pk": 24207, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "POCE-SUR-CISSE", - "center": "POINT (498212.0189059780677781 2272385.7560773566365242)", - "surface": 10820000, - "canton": null, - "numero_insee": "37185" - } - }, - { - "pk": 21162, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PONT-DE-RUAN", - "center": "POINT (465845.8201072171796113 2253101.6807763143442571)", - "surface": 5750000, - "canton": null, - "numero_insee": "37186" - } - }, - { - "pk": 36842, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PORTS", - "center": "POINT (463273.4706567450193688 2225357.4370127571746707)", - "surface": 11130000, - "canton": null, - "numero_insee": "37187" - } - }, - { - "pk": 14109, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "POUZAY", - "center": "POINT (464111.9502247391501442 2232870.6517231911420822)", - "surface": 14090000, - "canton": null, - "numero_insee": "37188" - } - }, - { - "pk": 13700, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PREUILLY-SUR-CLAISE", - "center": "POINT (492754.8653692549560219 2206485.9754295591264963)", - "surface": 12150000, - "canton": null, - "numero_insee": "37189" - } - }, - { - "pk": 33557, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "PUSSIGNY", - "center": "POINT (463997.2354847801616415 2222561.0857593868859112)", - "surface": 8510000, - "canton": null, - "numero_insee": "37190" - } - }, - { - "pk": 7104, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "RAZINES", - "center": "POINT (452198.0713085141032934 2221262.3301274282857776)", - "surface": 14680000, - "canton": null, - "numero_insee": "37191" - } - }, - { - "pk": 17097, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "REIGNAC-SUR-INDRE", - "center": "POINT (492410.5387892480939627 2247917.7450105235911906)", - "surface": 22140000, - "canton": null, - "numero_insee": "37192" - } - }, - { - "pk": 33850, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "RESTIGNE", - "center": "POINT (440999.9482871391810477 2256198.6510527222417295)", - "surface": 20330000, - "canton": null, - "numero_insee": "37193" - } - }, - { - "pk": 19161, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "REUGNY", - "center": "POINT (489564.9836462080129422 2277217.8087477702647448)", - "surface": 29730000, - "canton": null, - "numero_insee": "37194" - } - }, - { - "pk": 5769, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA RICHE", - "center": "POINT (471643.9906209520995617 2265960.1474788771010935)", - "surface": 8240000, - "canton": null, - "numero_insee": "37195" - } - }, - { - "pk": 28572, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "RIGNY-USSE", - "center": "POINT (446238.6063973298296332 2252038.5585944550111890)", - "surface": 13850000, - "canton": null, - "numero_insee": "37197" - } - }, - { - "pk": 31620, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "RILLE", - "center": "POINT (440253.0217130183009431 2273906.7726453817449510)", - "surface": 23870000, - "canton": null, - "numero_insee": "37198" - } - }, - { - "pk": 32844, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "RILLY-SUR-VIENNE", - "center": "POINT (460432.3424121907446533 2230037.8240520646795630)", - "surface": 13170000, - "canton": null, - "numero_insee": "37199" - } - }, - { - "pk": 20696, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "RIVARENNES", - "center": "POINT (450542.6564806589158252 2251974.0974146462976933)", - "surface": 18900000, - "canton": null, - "numero_insee": "37200" - } - }, - { - "pk": 12212, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "RIVIERE", - "center": "POINT (442932.9130840015131980 2240301.5875163883902133)", - "surface": 3700000, - "canton": null, - "numero_insee": "37201" - } - }, - { - "pk": 26442, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA ROCHE-CLERMAULT", - "center": "POINT (438943.9468788583180867 2238567.1894155866466463)", - "surface": 18020000, - "canton": null, - "numero_insee": "37202" - } - }, - { - "pk": 37125, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ROCHECORBON", - "center": "POINT (481108.6316067208535969 2271142.7835293421521783)", - "surface": 16870000, - "canton": null, - "numero_insee": "37203" - } - }, - { - "pk": 20324, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "ROUZIERS-DE-TOURAINE", - "center": "POINT (472807.1581423669122159 2282583.0785239278338850)", - "surface": 18090000, - "canton": null, - "numero_insee": "37204" - } - }, - { - "pk": 23461, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SACHE", - "center": "POINT (463769.1318915594602004 2250082.0137406354770064)", - "surface": 27940000, - "canton": null, - "numero_insee": "37205" - } - }, - { - "pk": 25544, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-ANTOINE-DU-ROCHER", - "center": "POINT (471437.6810597698204219 2278768.6983005418442190)", - "surface": 24140000, - "canton": null, - "numero_insee": "37206" - } - }, - { - "pk": 32262, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-AUBIN-LE-DEPEINT", - "center": "POINT (454208.3984321139287204 2292737.0848642862401903)", - "surface": 15140000, - "canton": null, - "numero_insee": "37207" - } - }, - { - "pk": 29462, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-AVERTIN", - "center": "POINT (479173.6103679371299222 2263120.2765893861651421)", - "surface": 13070000, - "canton": null, - "numero_insee": "37208" - } - }, - { - "pk": 8213, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-BAULD", - "center": "POINT (486449.2521047561313026 2242663.9415674917399883)", - "surface": 4180000, - "canton": null, - "numero_insee": "37209" - } - }, - { - "pk": 21487, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-BENOIT-LA-FORET", - "center": "POINT (447374.2130025707883760 2247844.5138736176304519)", - "surface": 35630000, - "canton": null, - "numero_insee": "37210" - } - }, - { - "pk": 21310, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-BRANCHS", - "center": "POINT (480397.3669533751090057 2248318.3787848837673664)", - "surface": 51880000, - "canton": null, - "numero_insee": "37211" - } - }, - { - "pk": 24133, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINTE-CATHERINE-DE-FIERBOIS", - "center": "POINT (474053.1648601299384609 2240959.7220171862281859)", - "surface": 15610000, - "canton": null, - "numero_insee": "37212" - } - }, - { - "pk": 25734, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-CHRISTOPHE-SUR-LE-NAIS", - "center": "POINT (459909.1711860796203837 2293184.6127386116422713)", - "surface": 18220000, - "canton": null, - "numero_insee": "37213" - } - }, - { - "pk": 12688, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-CYR-SUR-LOIRE", - "center": "POINT (473311.2099430083762854 2270077.2769571510143578)", - "surface": 13430000, - "canton": null, - "numero_insee": "37214" - } - }, - { - "pk": 21377, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-EPAIN", - "center": "POINT (466649.2203763521974906 2240698.1537436121143401)", - "surface": 63220000, - "canton": null, - "numero_insee": "37216" - } - }, - { - "pk": 31192, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-ETIENNE-DE-CHIGNY", - "center": "POINT (461223.0485356139834039 2267475.0501527972519398)", - "surface": 21330000, - "canton": null, - "numero_insee": "37217" - } - }, - { - "pk": 36150, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-FLOVIER", - "center": "POINT (499849.8085860892315395 2219856.2303105611354113)", - "surface": 29490000, - "canton": null, - "numero_insee": "37218" - } - }, - { - "pk": 29328, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-GENOUPH", - "center": "POINT (468048.8016752369003370 2265029.6082169665023685)", - "surface": 4800000, - "canton": null, - "numero_insee": "37219" - } - }, - { - "pk": 27506, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-GERMAIN-SUR-VIENNE", - "center": "POINT (431287.7273248228011653 2244608.9422516413033009)", - "surface": 13380000, - "canton": null, - "numero_insee": "37220" - } - }, - { - "pk": 20595, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-JEAN-SAINT-GERMAIN", - "center": "POINT (502647.9885545090073720 2232389.9697734448127449)", - "surface": 21380000, - "canton": null, - "numero_insee": "37222" - } - }, - { - "pk": 37955, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-LAURENT-DE-LIN", - "center": "POINT (444395.6650465340353549 2281246.8614304936490953)", - "surface": 13820000, - "canton": null, - "numero_insee": "37223" - } - }, - { - "pk": 19441, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-LAURENT-EN-GATINES", - "center": "POINT (482166.6167085167253390 2288365.2546906424686313)", - "surface": 31740000, - "canton": null, - "numero_insee": "37224" - } - }, - { - "pk": 11548, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-MARTIN-LE-BEAU", - "center": "POINT (492182.3943792640930042 2263328.3924888609908521)", - "surface": 19120000, - "canton": null, - "numero_insee": "37225" - } - }, - { - "pk": 27070, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-MICHEL-SUR-LOIRE", - "center": "POINT (447978.6692766791675240 2259458.9882416427135468)", - "surface": 17570000, - "canton": null, - "numero_insee": "37227" - } - }, - { - "pk": 17976, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-NICOLAS-DE-BOURGUEIL", - "center": "POINT (433083.3006492761196569 2257434.2613883200101554)", - "surface": 36420000, - "canton": null, - "numero_insee": "37228" - } - }, - { - "pk": 28800, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-NICOLAS-DES-MOTETS", - "center": "POINT (501985.8634528230177239 2287929.4663220336660743)", - "surface": 12710000, - "canton": null, - "numero_insee": "37229" - } - }, - { - "pk": 7604, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-OUEN-LES-VIGNES", - "center": "POINT (499380.4443265697336756 2276298.5908940834924579)", - "surface": 18950000, - "canton": null, - "numero_insee": "37230" - } - }, - { - "pk": 14598, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-PATERNE-RACAN", - "center": "POINT (459346.8737311697332188 2288576.3324977774173021)", - "surface": 48020000, - "canton": null, - "numero_insee": "37231" - } - }, - { - "pk": 29638, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-PATRICE", - "center": "POINT (446001.1948955469997600 2256540.2666342048905790)", - "surface": 17230000, - "canton": null, - "numero_insee": "37232" - } - }, - { - "pk": 31191, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-PIERRE-DES-CORPS", - "center": "POINT (479244.6137326593743637 2266623.6919761723838747)", - "surface": 11220000, - "canton": null, - "numero_insee": "37233" - } - }, - { - "pk": 18691, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-QUENTIN-SUR-INDROIS", - "center": "POINT (501532.3573090854915790 2246192.1038479059934616)", - "surface": 27310000, - "canton": null, - "numero_insee": "37234" - } - }, - { - "pk": 30670, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-REGLE", - "center": "POINT (502146.5038482846575789 2268615.4240524237975478)", - "surface": 6280000, - "canton": null, - "numero_insee": "37236" - } - }, - { - "pk": 37029, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-ROCH", - "center": "POINT (467080.1068340485217050 2273228.1722131222486496)", - "surface": 4770000, - "canton": null, - "numero_insee": "37237" - } - }, - { - "pk": 38041, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAINT-SENOCH", - "center": "POINT (494866.1595257646404207 2229422.8432985600084066)", - "surface": 24090000, - "canton": null, - "numero_insee": "37238" - } - }, - { - "pk": 36341, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAUNAY", - "center": "POINT (496366.8572198877809569 2289684.1644601202569902)", - "surface": 25910000, - "canton": null, - "numero_insee": "37240" - } - }, - { - "pk": 36774, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAVIGNE-SUR-LATHAN", - "center": "POINT (448358.1255955861997791 2274073.9015625682659447)", - "surface": 17740000, - "canton": null, - "numero_insee": "37241" - } - }, - { - "pk": 23602, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAVIGNY-EN-VERON", - "center": "POINT (432860.8166717521380633 2248024.7380836335942149)", - "surface": 21250000, - "canton": null, - "numero_insee": "37242" - } - }, - { - "pk": 27646, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAVONNIERES", - "center": "POINT (465670.2558386760065332 2262207.6257045073434711)", - "surface": 16980000, - "canton": null, - "numero_insee": "37243" - } - }, - { - "pk": 3336, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SAZILLY", - "center": "POINT (449256.7424032251583412 2238052.0104800937697291)", - "surface": 10580000, - "canton": null, - "numero_insee": "37244" - } - }, - { - "pk": 16113, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SEMBLANCAY", - "center": "POINT (466526.6480387751944363 2279628.6951730526052415)", - "surface": 35720000, - "canton": null, - "numero_insee": "37245" - } - }, - { - "pk": 7367, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SENNEVIERES", - "center": "POINT (506626.0575683353818022 2235425.5606107888743281)", - "surface": 23330000, - "canton": null, - "numero_insee": "37246" - } - }, - { - "pk": 18261, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SEPMES", - "center": "POINT (474524.0420949581312016 2232456.5791595755144954)", - "surface": 28730000, - "canton": null, - "numero_insee": "37247" - } - }, - { - "pk": 28120, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SEUILLY", - "center": "POINT (434940.9068364008562639 2238534.0942728663794696)", - "surface": 15750000, - "canton": null, - "numero_insee": "37248" - } - }, - { - "pk": 17209, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SORIGNY", - "center": "POINT (474985.8367745094583370 2249174.2074218839406967)", - "surface": 43320000, - "canton": null, - "numero_insee": "37250" - } - }, - { - "pk": 18721, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SOUVIGNE", - "center": "POINT (454303.6859059879789129 2281228.7825815863907337)", - "surface": 24740000, - "canton": null, - "numero_insee": "37251" - } - }, - { - "pk": 16819, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SOUVIGNY-DE-TOURAINE", - "center": "POINT (505460.5861034566769376 2267241.8663997477851808)", - "surface": 25750000, - "canton": null, - "numero_insee": "37252" - } - }, - { - "pk": 36594, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "SUBLAINES", - "center": "POINT (498072.3847729897242971 2253068.9826489551924169)", - "surface": 14460000, - "canton": null, - "numero_insee": "37253" - } - }, - { - "pk": 22002, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "TAUXIGNY", - "center": "POINT (485818.0463533237925731 2246361.7448910935781896)", - "surface": 37000000, - "canton": null, - "numero_insee": "37254" - } - }, - { - "pk": 13580, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "TAVANT", - "center": "POINT (451966.2512936703278683 2237173.6939745629206300)", - "surface": 5150000, - "canton": null, - "numero_insee": "37255" - } - }, - { - "pk": 24933, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "THENEUIL", - "center": "POINT (455487.1473823892883956 2235001.0226535019464791)", - "surface": 9940000, - "canton": null, - "numero_insee": "37256" - } - }, - { - "pk": 19157, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "THIZAY", - "center": "POINT (433605.1798446129541844 2242726.5268240324221551)", - "surface": 6810000, - "canton": null, - "numero_insee": "37258" - } - }, - { - "pk": 27528, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "TOURNON-SAINT-PIERRE", - "center": "POINT (493737.9233101595309563 2196585.6689404686912894)", - "surface": 15030000, - "canton": null, - "numero_insee": "37259" - } - }, - { - "pk": 33038, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA TOUR-SAINT-GELIN", - "center": "POINT (452518.8329873958136886 2230873.0292912246659398)", - "surface": 13480000, - "canton": null, - "numero_insee": "37260" - } - }, - { - "pk": 14824, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "TOURS", - "center": "POINT (476132.3643899852177128 2267798.8317453446798027)", - "surface": 33350000, - "canton": null, - "numero_insee": "37261" - } - }, - { - "pk": 11977, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "TROGUES", - "center": "POINT (461382.5219811500282958 2236150.7744270339608192)", - "surface": 9460000, - "canton": null, - "numero_insee": "37262" - } - }, - { - "pk": 29249, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "TRUYES", - "center": "POINT (487647.9867125082528219 2254983.9822316840291023)", - "surface": 16430000, - "canton": null, - "numero_insee": "37263" - } - }, - { - "pk": 9094, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VALLERES", - "center": "POINT (459100.1846660526352935 2257949.7733688042499125)", - "surface": 14660000, - "canton": null, - "numero_insee": "37264" - } - }, - { - "pk": 30913, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VARENNES", - "center": "POINT (491849.7246392025845125 2231099.1910138321109116)", - "surface": 11080000, - "canton": null, - "numero_insee": "37265" - } - }, - { - "pk": 16537, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VEIGNE", - "center": "POINT (478436.1392100472585298 2255507.9864634792320430)", - "surface": 26910000, - "canton": null, - "numero_insee": "37266" - } - }, - { - "pk": 23651, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VERETZ", - "center": "POINT (484683.4962216389831156 2262465.4526275810785592)", - "surface": 13320000, - "canton": null, - "numero_insee": "37267" - } - }, - { - "pk": 31332, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VERNEUIL-LE-CHATEAU", - "center": "POINT (457141.4201219019014388 2228609.3908296464942396)", - "surface": 8410000, - "canton": null, - "numero_insee": "37268" - } - }, - { - "pk": 24033, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VERNEUIL-SUR-INDRE", - "center": "POINT (500991.6380252703092992 2226971.6862026457674801)", - "surface": 40630000, - "canton": null, - "numero_insee": "37269" - } - }, - { - "pk": 3718, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VERNOU-SUR-BRENNE", - "center": "POINT (487108.0454036763985641 2271793.0805427832528949)", - "surface": 25900000, - "canton": null, - "numero_insee": "37270" - } - }, - { - "pk": 33285, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VILLAINES-LES-ROCHERS", - "center": "POINT (460581.6558163150912151 2248254.1240376103669405)", - "surface": 12650000, - "canton": null, - "numero_insee": "37271" - } - }, - { - "pk": 19932, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VILLANDRY", - "center": "POINT (461179.3593784421100281 2260669.1917921802960336)", - "surface": 17800000, - "canton": null, - "numero_insee": "37272" - } - }, - { - "pk": 29108, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "LA VILLE-AUX-DAMES", - "center": "POINT (482044.1851772618247196 2266947.1724615856073797)", - "surface": 8010000, - "canton": null, - "numero_insee": "37273" - } - }, - { - "pk": 15518, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VILLEBOURG", - "center": "POINT (463700.2849913176614791 2294617.1235938435420394)", - "surface": 12290000, - "canton": null, - "numero_insee": "37274" - } - }, - { - "pk": 29642, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VILLEDOMAIN", - "center": "POINT (517700.2811640222207643 2227611.1808962449431419)", - "surface": 16580000, - "canton": null, - "numero_insee": "37275" - } - }, - { - "pk": 16821, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VILLEDOMER", - "center": "POINT (489604.3672628947533667 2284523.9386335150338709)", - "surface": 35150000, - "canton": null, - "numero_insee": "37276" - } - }, - { - "pk": 30703, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VILLEPERDUE", - "center": "POINT (471312.9391953657031991 2245540.7835015072487295)", - "surface": 11990000, - "canton": null, - "numero_insee": "37278" - } - }, - { - "pk": 20325, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VILLIERS-AU-BOUIN", - "center": "POINT (445531.9597082030377351 2289062.4400873701088130)", - "surface": 30350000, - "canton": null, - "numero_insee": "37279" - } - }, - { - "pk": 10645, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VOU", - "center": "POINT (486823.4586304535041563 2233759.6800267174839973)", - "surface": 22100000, - "canton": null, - "numero_insee": "37280" - } - }, - { - "pk": 30388, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "VOUVRAY", - "center": "POINT (484314.3027582123759203 2270769.0770358149893582)", - "surface": 23100000, - "canton": null, - "numero_insee": "37281" - } - }, - { - "pk": 15211, - "model": "ishtar_common.town", - "fields": { - "departement": 38, - "name": "YZEURES-SUR-CREUSE", - "center": "POINT (488505.5405767507618293 2199945.1077893734909594)", - "surface": 55410000, - "canton": null, - "numero_insee": "37282" - } - }, - { - "pk": 28146, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LES ABRETS", - "center": "POINT (854273.5464144819416106 2065409.7831590308342129)", - "surface": 6890000, - "canton": null, - "numero_insee": "38001" - } - }, - { - "pk": 5334, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LES ADRETS", - "center": "POINT (886764.1885292108636349 2035259.3930344937834889)", - "surface": 16270000, - "canton": null, - "numero_insee": "38002" - } - }, - { - "pk": 28506, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AGNIN", - "center": "POINT (797731.6543659182498232 2040501.8499914181884378)", - "surface": 8010000, - "canton": null, - "numero_insee": "38003" - } - }, - { - "pk": 32179, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "L'ALBENC", - "center": "POINT (845175.9512506704777479 2029096.3004295267164707)", - "surface": 10070000, - "canton": null, - "numero_insee": "38004" - } - }, - { - "pk": 23340, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ALLEMOND", - "center": "POINT (889349.2059921800391749 2025672.1204221756197512)", - "surface": 56520000, - "canton": null, - "numero_insee": "38005" - } - }, - { - "pk": 17289, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ALLEVARD", - "center": "POINT (895752.6522828857414424 2049250.4731927292887121)", - "surface": 35130000, - "canton": null, - "numero_insee": "38006" - } - }, - { - "pk": 7498, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AMBEL", - "center": "POINT (884601.9643218475393951 1984089.2868509935215116)", - "surface": 4880000, - "canton": null, - "numero_insee": "38008" - } - }, - { - "pk": 11126, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ANJOU", - "center": "POINT (799522.1738368718652055 2041818.4211523532867432)", - "surface": 5020000, - "canton": null, - "numero_insee": "38009" - } - }, - { - "pk": 27636, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ANNOISIN-CHATELANS", - "center": "POINT (829850.4860113263130188 2088722.7914564185775816)", - "surface": 13250000, - "canton": null, - "numero_insee": "38010" - } - }, - { - "pk": 21018, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ANTHON", - "center": "POINT (819020.4982216873904690 2091032.3226767503656447)", - "surface": 9070000, - "canton": null, - "numero_insee": "38011" - } - }, - { - "pk": 35231, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AOSTE", - "center": "POINT (855521.4252359038218856 2071626.4649764038622379)", - "surface": 10030000, - "canton": null, - "numero_insee": "38012" - } - }, - { - "pk": 14986, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "APPRIEU", - "center": "POINT (847307.1876625579316169 2049034.1715410470496863)", - "surface": 15300000, - "canton": null, - "numero_insee": "38013" - } - }, - { - "pk": 5550, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ARTAS", - "center": "POINT (820956.7308594004716724 2063622.7341882688924670)", - "surface": 14050000, - "canton": null, - "numero_insee": "38015" - } - }, - { - "pk": 13609, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ARZAY", - "center": "POINT (821457.3287891080835834 2051915.6756430368404835)", - "surface": 9790000, - "canton": null, - "numero_insee": "38016" - } - }, - { - "pk": 4753, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ASSIEU", - "center": "POINT (798763.3954219352453947 2048618.5910948901437223)", - "surface": 12310000, - "canton": null, - "numero_insee": "38017" - } - }, - { - "pk": 5232, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AUBERIVES-EN-ROYANS", - "center": "POINT (834214.9900790844112635 2011584.9687189864926040)", - "surface": 5100000, - "canton": null, - "numero_insee": "38018" - } - }, - { - "pk": 34850, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AUBERIVES-SUR-VAREZE", - "center": "POINT (794243.9488739345688373 2050381.7450413880869746)", - "surface": 7060000, - "canton": null, - "numero_insee": "38019" - } - }, - { - "pk": 26827, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AURIS", - "center": "POINT (895066.4511429857229814 2012708.3429823499172926)", - "surface": 13510000, - "canton": null, - "numero_insee": "38020" - } - }, - { - "pk": 16820, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AUTRANS", - "center": "POINT (853102.9637286628130823 2026862.0297799515537918)", - "surface": 43910000, - "canton": null, - "numero_insee": "38021" - } - }, - { - "pk": 34993, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LES AVENIERES", - "center": "POINT (851976.2268452330026776 2076500.7268404816277325)", - "surface": 29840000, - "canton": null, - "numero_insee": "38022" - } - }, - { - "pk": 10411, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "AVIGNONET", - "center": "POINT (863237.3362680041464046 2000722.7491866080090404)", - "surface": 9000000, - "canton": null, - "numero_insee": "38023" - } - }, - { - "pk": 11858, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BADINIERES", - "center": "POINT (831488.3910017642192543 2061110.4117477284744382)", - "surface": 6050000, - "canton": null, - "numero_insee": "38024" - } - }, - { - "pk": 35663, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BALBINS", - "center": "POINT (825502.0696805195184425 2047145.6200741841457784)", - "surface": 7270000, - "canton": null, - "numero_insee": "38025" - } - }, - { - "pk": 28119, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA BALME-LES-GROTTES", - "center": "POINT (831673.2446974851191044 2097947.0852335034869611)", - "surface": 14470000, - "canton": null, - "numero_insee": "38026" - } - }, - { - "pk": 26594, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BARRAUX", - "center": "POINT (884993.0087933854665607 2054963.4798232300672680)", - "surface": 11250000, - "canton": null, - "numero_insee": "38027" - } - }, - { - "pk": 9160, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA BATIE-DIVISIN", - "center": "POINT (855404.6031211446970701 2061916.1115361044649035)", - "surface": 10540000, - "canton": null, - "numero_insee": "38028" - } - }, - { - "pk": 10643, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA BATIE-MONTGASCON", - "center": "POINT (850038.8820937434211373 2068976.9045406882651150)", - "surface": 8400000, - "canton": null, - "numero_insee": "38029" - } - }, - { - "pk": 36283, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEAUCROISSANT", - "center": "POINT (845357.7515515532577410 2042911.4754301728680730)", - "surface": 11140000, - "canton": null, - "numero_insee": "38030" - } - }, - { - "pk": 17164, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEAUFIN", - "center": "POINT (886715.1637823603814468 1982806.1368210799992085)", - "surface": 6500000, - "canton": null, - "numero_insee": "38031" - } - }, - { - "pk": 25473, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEAUFORT", - "center": "POINT (817852.4907883757259697 2040373.5749415741302073)", - "surface": 8620000, - "canton": null, - "numero_insee": "38032" - } - }, - { - "pk": 35919, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEAULIEU", - "center": "POINT (840499.9543731960002333 2025752.9262536738533527)", - "surface": 8770000, - "canton": null, - "numero_insee": "38033" - } - }, - { - "pk": 36375, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEAUREPAIRE", - "center": "POINT (812142.1726140339160338 2040925.3140790972393006)", - "surface": 18380000, - "canton": null, - "numero_insee": "38034" - } - }, - { - "pk": 25420, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEAUVOIR-DE-MARC", - "center": "POINT (814268.7371688999701291 2061463.4752281559631228)", - "surface": 11360000, - "canton": null, - "numero_insee": "38035" - } - }, - { - "pk": 25470, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEAUVOIR-EN-ROYANS", - "center": "POINT (837067.0769406610634178 2017515.3231538678519428)", - "surface": 2040000, - "canton": null, - "numero_insee": "38036" - } - }, - { - "pk": 32552, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BELLEGARDE-POUSSIEU", - "center": "POINT (804797.0427879526978359 2045366.9243852575309575)", - "surface": 16910000, - "canton": null, - "numero_insee": "38037" - } - }, - { - "pk": 3512, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BELMONT", - "center": "POINT (836627.2662218323675916 2057150.5734342953655869)", - "surface": 6520000, - "canton": null, - "numero_insee": "38038" - } - }, - { - "pk": 9403, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BERNIN", - "center": "POINT (876751.6004228657111526 2035573.6357470017392188)", - "surface": 7700000, - "canton": null, - "numero_insee": "38039" - } - }, - { - "pk": 22156, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BESSE", - "center": "POINT (904721.9896511361002922 2018997.7708074129186571)", - "surface": 50800000, - "canton": null, - "numero_insee": "38040" - } - }, - { - "pk": 32550, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BESSINS", - "center": "POINT (829980.0014320847112685 2026863.9682212835177779)", - "surface": 4650000, - "canton": null, - "numero_insee": "38041" - } - }, - { - "pk": 35182, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BEVENAIS", - "center": "POINT (839205.8781743154395372 2048264.0101685882546008)", - "surface": 14250000, - "canton": null, - "numero_insee": "38042" - } - }, - { - "pk": 14695, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BILIEU", - "center": "POINT (851463.7362524240743369 2054575.2001592477317899)", - "surface": 7540000, - "canton": null, - "numero_insee": "38043" - } - }, - { - "pk": 35920, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BIOL", - "center": "POINT (837006.1766232656082138 2059656.2452246604952961)", - "surface": 15750000, - "canton": null, - "numero_insee": "38044" - } - }, - { - "pk": 9679, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BIVIERS", - "center": "POINT (871769.4028076500399038 2032928.2233605938963592)", - "surface": 6300000, - "canton": null, - "numero_insee": "38045" - } - }, - { - "pk": 34497, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BIZONNES", - "center": "POINT (837954.1722430994268507 2054159.0324326958507299)", - "surface": 11080000, - "canton": null, - "numero_insee": "38046" - } - }, - { - "pk": 11036, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BLANDIN", - "center": "POINT (843126.2296327832154930 2058007.0704364913981408)", - "surface": 4320000, - "canton": null, - "numero_insee": "38047" - } - }, - { - "pk": 27122, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BONNEFAMILLE", - "center": "POINT (816693.8919301761779934 2070492.8928789887577295)", - "surface": 9480000, - "canton": null, - "numero_insee": "38048" - } - }, - { - "pk": 29679, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BOSSIEU", - "center": "POINT (819970.5408426177455112 2050201.2931016914080828)", - "surface": 13630000, - "canton": null, - "numero_insee": "38049" - } - }, - { - "pk": 33234, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE BOUCHAGE", - "center": "POINT (848147.9668004475533962 2079370.6432002743240446)", - "surface": 11270000, - "canton": null, - "numero_insee": "38050" - } - }, - { - "pk": 9620, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BOUGE-CHAMBALUD", - "center": "POINT (800349.4097268821205944 2038722.4444407867267728)", - "surface": 15890000, - "canton": null, - "numero_insee": "38051" - } - }, - { - "pk": 16793, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE BOURG-D'OISANS", - "center": "POINT (892076.5854184625204653 2011181.0833148828241974)", - "surface": 55830000, - "canton": null, - "numero_insee": "38052" - } - }, - { - "pk": 34464, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BOURGOIN-JALLIEU", - "center": "POINT (829100.5991003394592553 2071099.5917011057026684)", - "surface": 24660000, - "canton": null, - "numero_insee": "38053" - } - }, - { - "pk": 21082, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BOUVESSE-QUIRIEU", - "center": "POINT (839233.8064697695663199 2091705.9552463628351688)", - "surface": 17700000, - "canton": null, - "numero_insee": "38054" - } - }, - { - "pk": 25046, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BRANGUES", - "center": "POINT (849123.9393247686093673 2082281.7821901759598404)", - "surface": 11640000, - "canton": null, - "numero_insee": "38055" - } - }, - { - "pk": 7094, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BRESSIEUX", - "center": "POINT (830568.3251299868570641 2039981.9513322315178812)", - "surface": 880000, - "canton": null, - "numero_insee": "38056" - } - }, - { - "pk": 31401, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BRESSON", - "center": "POINT (868572.1873673186637461 2020588.5098531118128449)", - "surface": 2770000, - "canton": null, - "numero_insee": "38057" - } - }, - { - "pk": 8737, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BREZINS", - "center": "POINT (832847.2625996881397441 2042704.1274132386315614)", - "surface": 8310000, - "canton": null, - "numero_insee": "38058" - } - }, - { - "pk": 27605, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BRIE-ET-ANGONNES", - "center": "POINT (870783.6865944125456735 2019506.4181589640211314)", - "surface": 9860000, - "canton": null, - "numero_insee": "38059" - } - }, - { - "pk": 27127, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BRION", - "center": "POINT (835499.3739323267946020 2036921.1496337563730776)", - "surface": 3950000, - "canton": null, - "numero_insee": "38060" - } - }, - { - "pk": 9935, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA BUISSE", - "center": "POINT (857576.5631358702667058 2042115.4538664910942316)", - "surface": 11690000, - "canton": null, - "numero_insee": "38061" - } - }, - { - "pk": 22860, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA BUISSIERE", - "center": "POINT (885619.3956786439521238 2051965.9463015957735479)", - "surface": 7530000, - "canton": null, - "numero_insee": "38062" - } - }, - { - "pk": 35915, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "BURCIN", - "center": "POINT (843370.1875231525627896 2052904.2054107924923301)", - "surface": 6750000, - "canton": null, - "numero_insee": "38063" - } - }, - { - "pk": 26070, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CESSIEU", - "center": "POINT (837237.8078870184253901 2067665.9559098854660988)", - "surface": 14490000, - "canton": null, - "numero_insee": "38064" - } - }, - { - "pk": 16539, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHABONS", - "center": "POINT (841554.8347707901848480 2054490.1949249086901546)", - "surface": 18430000, - "canton": null, - "numero_insee": "38065" - } - }, - { - "pk": 30909, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHALON", - "center": "POINT (803426.5785828036023304 2053463.1109600639902055)", - "surface": 5240000, - "canton": null, - "numero_insee": "38066" - } - }, - { - "pk": 29577, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHAMAGNIEU", - "center": "POINT (820413.3017416789662093 2080334.0952953491359949)", - "surface": 13760000, - "canton": null, - "numero_insee": "38067" - } - }, - { - "pk": 16715, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHAMPAGNIER", - "center": "POINT (866292.4206920645665377 2017966.3194612637162209)", - "surface": 6860000, - "canton": null, - "numero_insee": "38068" - } - }, - { - "pk": 20701, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHAMPIER", - "center": "POINT (831139.4829524687957019 2055101.6048163312952965)", - "surface": 14280000, - "canton": null, - "numero_insee": "38069" - } - }, - { - "pk": 14321, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE CHAMP-PRES-FROGES", - "center": "POINT (882539.6765000498853624 2037625.4049283007625490)", - "surface": 4870000, - "canton": null, - "numero_insee": "38070" - } - }, - { - "pk": 9124, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHAMP-SUR-DRAC", - "center": "POINT (867032.6332133570685983 2013368.0678694723173976)", - "surface": 8850000, - "canton": null, - "numero_insee": "38071" - } - }, - { - "pk": 7194, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHANAS", - "center": "POINT (795548.4606550241587684 2038281.0418092934414744)", - "surface": 11530000, - "canton": null, - "numero_insee": "38072" - } - }, - { - "pk": 5631, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHANTELOUVE", - "center": "POINT (887025.2450149608775973 2004931.3380230965558439)", - "surface": 33480000, - "canton": null, - "numero_insee": "38073" - } - }, - { - "pk": 8214, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHANTESSE", - "center": "POINT (844149.2808219353901222 2032090.4670721134170890)", - "surface": 5820000, - "canton": null, - "numero_insee": "38074" - } - }, - { - "pk": 4860, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHAPAREILLAN", - "center": "POINT (883167.2702236215118319 2057750.4899733639322221)", - "surface": 30280000, - "canton": null, - "numero_insee": "38075" - } - }, - { - "pk": 37544, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA CHAPELLE-DE-LA-TOUR", - "center": "POINT (844522.8354652919806540 2070230.8285647677257657)", - "surface": 9080000, - "canton": null, - "numero_insee": "38076" - } - }, - { - "pk": 30521, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA CHAPELLE-DE-SURIEU", - "center": "POINT (801979.9684962080791593 2047044.5111905562225729)", - "surface": 11250000, - "canton": null, - "numero_insee": "38077" - } - }, - { - "pk": 23957, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA CHAPELLE-DU-BARD", - "center": "POINT (897531.8563739696983248 2051868.3450351625215262)", - "surface": 27050000, - "canton": null, - "numero_insee": "38078" - } - }, - { - "pk": 24728, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHARANCIEU", - "center": "POINT (853293.2753364153904840 2062999.0501203425228596)", - "surface": 5530000, - "canton": null, - "numero_insee": "38080" - } - }, - { - "pk": 12745, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHARANTONNAY", - "center": "POINT (817054.1094702449627221 2063489.2378686072770506)", - "surface": 11010000, - "canton": null, - "numero_insee": "38081" - } - }, - { - "pk": 31744, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHARAVINES", - "center": "POINT (848979.5234961274545640 2052451.8372689983807504)", - "surface": 8290000, - "canton": null, - "numero_insee": "38082" - } - }, - { - "pk": 26631, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHARETTE", - "center": "POINT (835111.3623774235602468 2093872.6907600720878690)", - "surface": 11320000, - "canton": null, - "numero_insee": "38083" - } - }, - { - "pk": 32615, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHARNECLES", - "center": "POINT (849961.0688220849260688 2043051.0663584508001804)", - "surface": 5110000, - "canton": null, - "numero_insee": "38084" - } - }, - { - "pk": 25383, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHARVIEU-CHAVAGNEUX", - "center": "POINT (818963.2429643475916237 2086027.1009737348649651)", - "surface": 8500000, - "canton": null, - "numero_insee": "38085" - } - }, - { - "pk": 26276, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHASSELAY", - "center": "POINT (835830.5282053805422038 2033320.4345334151294082)", - "surface": 9460000, - "canton": null, - "numero_insee": "38086" - } - }, - { - "pk": 5386, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHASSIGNIEU", - "center": "POINT (848209.3323200840968639 2060553.0972907438408583)", - "surface": 5200000, - "canton": null, - "numero_insee": "38089" - } - }, - { - "pk": 8924, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHATEAU-BERNARD", - "center": "POINT (854508.5427152886986732 2003050.2309050313197076)", - "surface": 18300000, - "canton": null, - "numero_insee": "38090" - } - }, - { - "pk": 29672, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHATEAUVILAIN", - "center": "POINT (833887.9632292010355741 2061431.2626804101746529)", - "surface": 8950000, - "canton": null, - "numero_insee": "38091" - } - }, - { - "pk": 7821, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHATELUS", - "center": "POINT (840430.2013454344123602 2010537.1312759083230048)", - "surface": 12550000, - "canton": null, - "numero_insee": "38092" - } - }, - { - "pk": 9113, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHATENAY", - "center": "POINT (826758.8684847935801372 2040650.0116182984784245)", - "surface": 4640000, - "canton": null, - "numero_insee": "38093" - } - }, - { - "pk": 21333, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHATONNAY", - "center": "POINT (825517.3108837329782546 2057055.3924509622156620)", - "surface": 31480000, - "canton": null, - "numero_insee": "38094" - } - }, - { - "pk": 32979, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHATTE", - "center": "POINT (831542.2596122766844928 2019770.2816893740091473)", - "surface": 22850000, - "canton": null, - "numero_insee": "38095" - } - }, - { - "pk": 9181, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHAVANOZ", - "center": "POINT (820536.3698122587520629 2089343.6912050328683108)", - "surface": 8290000, - "canton": null, - "numero_insee": "38097" - } - }, - { - "pk": 23453, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHELIEU", - "center": "POINT (845600.9961601831018925 2061231.3976161030586809)", - "surface": 10180000, - "canton": null, - "numero_insee": "38098" - } - }, - { - "pk": 3503, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHEVRIERES", - "center": "POINT (832292.4064571589697152 2025682.5850856625474989)", - "surface": 16500000, - "canton": null, - "numero_insee": "38099" - } - }, - { - "pk": 33394, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE CHEYLAS", - "center": "POINT (886747.0988774924771860 2048872.6238930113613605)", - "surface": 8510000, - "canton": null, - "numero_insee": "38100" - } - }, - { - "pk": 18513, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHEYSSIEU", - "center": "POINT (796145.6612450249958783 2050397.9859159840270877)", - "surface": 8630000, - "canton": null, - "numero_insee": "38101" - } - }, - { - "pk": 10400, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHEZENEUVE", - "center": "POINT (824837.0689422246068716 2066358.5580272548831999)", - "surface": 6780000, - "canton": null, - "numero_insee": "38102" - } - }, - { - "pk": 17390, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHICHILIANNE", - "center": "POINT (853373.9707515403861180 1983620.7303590234369040)", - "surface": 61720000, - "canton": null, - "numero_insee": "38103" - } - }, - { - "pk": 7838, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHIMILIN", - "center": "POINT (853843.9764876323752105 2068809.3718627707567066)", - "surface": 9740000, - "canton": null, - "numero_insee": "38104" - } - }, - { - "pk": 15110, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHIRENS", - "center": "POINT (851991.6753163831308484 2051376.6138585424050689)", - "surface": 17520000, - "canton": null, - "numero_insee": "38105" - } - }, - { - "pk": 6455, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHOLONGE", - "center": "POINT (872994.0559077516663820 2006912.7611529172863811)", - "surface": 9810000, - "canton": null, - "numero_insee": "38106" - } - }, - { - "pk": 12601, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHONAS-L'AMBALLAN", - "center": "POINT (792806.7935873209498823 2054573.5584314865991473)", - "surface": 7430000, - "canton": null, - "numero_insee": "38107" - } - }, - { - "pk": 23372, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHORANCHE", - "center": "POINT (840714.1767918700352311 2012441.4748515977989882)", - "surface": 10590000, - "canton": null, - "numero_insee": "38108" - } - }, - { - "pk": 9196, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHOZEAU", - "center": "POINT (823704.2054171110503376 2081763.6017798453103751)", - "surface": 8260000, - "canton": null, - "numero_insee": "38109" - } - }, - { - "pk": 7454, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHUZELLES", - "center": "POINT (798305.7982702531153336 2067032.5076666618697345)", - "surface": 13380000, - "canton": null, - "numero_insee": "38110" - } - }, - { - "pk": 4703, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CLAVANS-EN-HAUT-OISANS", - "center": "POINT (900907.2524038690607995 2020266.1907419883646071)", - "surface": 35770000, - "canton": null, - "numero_insee": "38112" - } - }, - { - "pk": 22781, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CLELLES", - "center": "POINT (860361.7270745208952576 1985882.9710909994319081)", - "surface": 20630000, - "canton": null, - "numero_insee": "38113" - } - }, - { - "pk": 30377, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CLONAS-SUR-VAREZE", - "center": "POINT (792154.0200418268796057 2048962.5352812511846423)", - "surface": 6740000, - "canton": null, - "numero_insee": "38114" - } - }, - { - "pk": 9308, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARTIN-DE-LA-CLUZE", - "center": "POINT (862106.2136918515898287 2004216.5766672417521477)", - "surface": 16550000, - "canton": null, - "numero_insee": "38115" - } - }, - { - "pk": 37888, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "COGNET", - "center": "POINT (871715.7815207112580538 1992587.2634249113034457)", - "surface": 1990000, - "canton": null, - "numero_insee": "38116" - } - }, - { - "pk": 13827, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "COGNIN-LES-GORGES", - "center": "POINT (842120.3086130230221897 2023564.6301224962808192)", - "surface": 12650000, - "canton": null, - "numero_insee": "38117" - } - }, - { - "pk": 12785, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "COLOMBE", - "center": "POINT (843708.2280429347883910 2048502.8119865232147276)", - "surface": 13330000, - "canton": null, - "numero_insee": "38118" - } - }, - { - "pk": 21677, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA COMBE-DE-LANCEY", - "center": "POINT (881418.6724750213325024 2028306.5496059409342706)", - "surface": 18810000, - "canton": null, - "numero_insee": "38120" - } - }, - { - "pk": 25291, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "COMMELLE", - "center": "POINT (826457.5461732032708824 2052458.9729997357353568)", - "surface": 14100000, - "canton": null, - "numero_insee": "38121" - } - }, - { - "pk": 11453, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CORBELIN", - "center": "POINT (850813.8228105092421174 2071986.4381208883132786)", - "surface": 12160000, - "canton": null, - "numero_insee": "38124" - } - }, - { - "pk": 11437, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CORDEAC", - "center": "POINT (877484.0113045850303024 1985329.3904635314829648)", - "surface": 26880000, - "canton": null, - "numero_insee": "38125" - } - }, - { - "pk": 24366, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CORNILLON-EN-TRIEVES", - "center": "POINT (866256.1568396078655496 1987234.9306572698988020)", - "surface": 13890000, - "canton": null, - "numero_insee": "38127" - } - }, - { - "pk": 30643, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CORPS", - "center": "POINT (885082.6296862351009622 1986395.7825361762661487)", - "surface": 11100000, - "canton": null, - "numero_insee": "38128" - } - }, - { - "pk": 24023, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CORRENCON-EN-VERCORS", - "center": "POINT (850777.5900303320959210 2006221.4455342518631369)", - "surface": 39230000, - "canton": null, - "numero_insee": "38129" - } - }, - { - "pk": 26916, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA COTE-SAINT-ANDRE", - "center": "POINT (828908.5733515429310501 2046774.4022775033954531)", - "surface": 28130000, - "canton": null, - "numero_insee": "38130" - } - }, - { - "pk": 16219, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LES COTES-D'AREY", - "center": "POINT (798819.0226803307887167 2053824.1298196273855865)", - "surface": 24280000, - "canton": null, - "numero_insee": "38131" - } - }, - { - "pk": 33332, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LES COTES-DE-CORPS", - "center": "POINT (884161.9643887599231675 1988690.2158110677264631)", - "surface": 9870000, - "canton": null, - "numero_insee": "38132" - } - }, - { - "pk": 31064, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "COUBLEVIE", - "center": "POINT (857052.0454744871240109 2044913.6982190173584968)", - "surface": 6990000, - "canton": null, - "numero_insee": "38133" - } - }, - { - "pk": 13070, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "COUR-ET-BUIS", - "center": "POINT (809841.7476732780924067 2052416.8827346477191895)", - "surface": 13860000, - "canton": null, - "numero_insee": "38134" - } - }, - { - "pk": 23456, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "COURTENAY", - "center": "POINT (837777.9769935864023864 2086388.4565048087388277)", - "surface": 32030000, - "canton": null, - "numero_insee": "38135" - } - }, - { - "pk": 7823, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CRACHIER", - "center": "POINT (825151.0488202115520835 2064759.7044885791838169)", - "surface": 3680000, - "canton": null, - "numero_insee": "38136" - } - }, - { - "pk": 29252, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CRAS", - "center": "POINT (843424.6055726101621985 2034887.0199495237320662)", - "surface": 5480000, - "canton": null, - "numero_insee": "38137" - } - }, - { - "pk": 34387, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CREMIEU", - "center": "POINT (827276.5057265653740615 2085397.6148736772593111)", - "surface": 6200000, - "canton": null, - "numero_insee": "38138" - } - }, - { - "pk": 18147, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CREYS-MEPIEU", - "center": "POINT (843374.2924343266058713 2087437.3940275479108095)", - "surface": 29280000, - "canton": null, - "numero_insee": "38139" - } - }, - { - "pk": 24798, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CROLLES", - "center": "POINT (878636.9781736375298351 2037491.7288645210210234)", - "surface": 14510000, - "canton": null, - "numero_insee": "38140" - } - }, - { - "pk": 7820, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CULIN", - "center": "POINT (827174.2610167517559603 2062274.6171488182153553)", - "surface": 7380000, - "canton": null, - "numero_insee": "38141" - } - }, - { - "pk": 11649, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "DIEMOZ", - "center": "POINT (814704.1068332412978634 2069074.5238497916143388)", - "surface": 13850000, - "canton": null, - "numero_insee": "38144" - } - }, - { - "pk": 25606, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "DIONAY", - "center": "POINT (825577.6698437031591311 2026626.0684831596445292)", - "surface": 13930000, - "canton": null, - "numero_insee": "38145" - } - }, - { - "pk": 25824, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "DIZIMIEU", - "center": "POINT (829694.8983530490659177 2083516.5263141274917871)", - "surface": 9630000, - "canton": null, - "numero_insee": "38146" - } - }, - { - "pk": 30127, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "DOISSIN", - "center": "POINT (841604.2861948276404291 2060396.3447198276408017)", - "surface": 8440000, - "canton": null, - "numero_insee": "38147" - } - }, - { - "pk": 8929, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "DOLOMIEU", - "center": "POINT (845598.0532028089510277 2073242.9314466738142073)", - "surface": 13350000, - "canton": null, - "numero_insee": "38148" - } - }, - { - "pk": 11526, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "DOMARIN", - "center": "POINT (826918.3648280513007194 2068778.6909358361735940)", - "surface": 2990000, - "canton": null, - "numero_insee": "38149" - } - }, - { - "pk": 24609, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "DOMENE", - "center": "POINT (875009.3444896631408483 2028651.8167549560312182)", - "surface": 5400000, - "canton": null, - "numero_insee": "38150" - } - }, - { - "pk": 13257, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ECHIROLLES", - "center": "POINT (865657.4649155577644706 2021964.8612555761355907)", - "surface": 7810000, - "canton": null, - "numero_insee": "38151" - } - }, - { - "pk": 33489, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ECLOSE", - "center": "POINT (831807.5251997200539336 2058911.0159521920140833)", - "surface": 10240000, - "canton": null, - "numero_insee": "38152" - } - }, - { - "pk": 20046, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ENGINS", - "center": "POINT (857108.3625709364423528 2026696.2144786887802184)", - "surface": 20900000, - "canton": null, - "numero_insee": "38153" - } - }, - { - "pk": 10368, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ENTRAIGUES", - "center": "POINT (886516.8616572802420706 1994216.0983575624413788)", - "surface": 21430000, - "canton": null, - "numero_insee": "38154" - } - }, - { - "pk": 25418, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LES EPARRES", - "center": "POINT (830762.8985017350642011 2064006.9983683919999748)", - "surface": 7760000, - "canton": null, - "numero_insee": "38156" - } - }, - { - "pk": 21298, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ESTRABLIN", - "center": "POINT (804868.8962013457203284 2060382.1289322311058640)", - "surface": 20770000, - "canton": null, - "numero_insee": "38157" - } - }, - { - "pk": 11092, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "EYBENS", - "center": "POINT (868254.7061069424962625 2022587.7778941295109689)", - "surface": 4560000, - "canton": null, - "numero_insee": "38158" - } - }, - { - "pk": 29840, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "EYDOCHE", - "center": "POINT (834356.0814650587271899 2053527.6097747141029686)", - "surface": 5660000, - "canton": null, - "numero_insee": "38159" - } - }, - { - "pk": 33814, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FARAMANS", - "center": "POINT (820598.4958000071346760 2047003.5432816485408694)", - "surface": 10760000, - "canton": null, - "numero_insee": "38161" - } - }, - { - "pk": 10717, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FAVERGES-DE-LA-TOUR", - "center": "POINT (847819.7522479532053694 2070959.7849698048084974)", - "surface": 7650000, - "canton": null, - "numero_insee": "38162" - } - }, - { - "pk": 4881, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA FERRIERE", - "center": "POINT (894048.4494804518762976 2037924.6858681684825569)", - "surface": 75060000, - "canton": null, - "numero_insee": "38163" - } - }, - { - "pk": 26606, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FITILIEU", - "center": "POINT (851962.9060571858426556 2066390.9132378795184195)", - "surface": 10120000, - "canton": null, - "numero_insee": "38165" - } - }, - { - "pk": 34411, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA FLACHERE", - "center": "POINT (883727.1574658772442490 2050848.5852641758974642)", - "surface": 2910000, - "canton": null, - "numero_insee": "38166" - } - }, - { - "pk": 6092, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FLACHERES", - "center": "POINT (832829.0035936518106610 2056517.4402449671179056)", - "surface": 4910000, - "canton": null, - "numero_insee": "38167" - } - }, - { - "pk": 12552, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FONTAINE", - "center": "POINT (862511.6124187808018178 2026942.8152634955476969)", - "surface": 6690000, - "canton": null, - "numero_insee": "38169" - } - }, - { - "pk": 35877, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FONTANIL-CORNILLON", - "center": "POINT (861152.8176550152711570 2033637.7871253257617354)", - "surface": 5360000, - "canton": null, - "numero_insee": "38170" - } - }, - { - "pk": 30126, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA FORTERESSE", - "center": "POINT (840900.8667000749846920 2037367.8452575705014169)", - "surface": 9220000, - "canton": null, - "numero_insee": "38171" - } - }, - { - "pk": 6086, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FOUR", - "center": "POINT (823020.8999774144031107 2068044.6441479742061347)", - "surface": 11900000, - "canton": null, - "numero_insee": "38172" - } - }, - { - "pk": 17421, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE FRENEY-D'OISANS", - "center": "POINT (898043.3744655686896294 2015737.0029193598311394)", - "surface": 20870000, - "canton": null, - "numero_insee": "38173" - } - }, - { - "pk": 10646, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA FRETTE", - "center": "POINT (837009.8955076782731339 2047544.5015305986162275)", - "surface": 12180000, - "canton": null, - "numero_insee": "38174" - } - }, - { - "pk": 10443, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FROGES", - "center": "POINT (881654.3571495721116662 2035816.0095228059217334)", - "surface": 6440000, - "canton": null, - "numero_insee": "38175" - } - }, - { - "pk": 28717, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "FRONTONAS", - "center": "POINT (822049.8393180310958996 2076244.1927512784022838)", - "surface": 12700000, - "canton": null, - "numero_insee": "38176" - } - }, - { - "pk": 22529, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "GIERES", - "center": "POINT (871527.6385481925681233 2026119.3963314015418291)", - "surface": 7170000, - "canton": null, - "numero_insee": "38179" - } - }, - { - "pk": 9358, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "GILLONNAY", - "center": "POINT (831808.6241183878155425 2047099.5385729819536209)", - "surface": 14320000, - "canton": null, - "numero_insee": "38180" - } - }, - { - "pk": 4964, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "GONCELIN", - "center": "POINT (886088.6833519077626988 2043962.1520662510301918)", - "surface": 14520000, - "canton": null, - "numero_insee": "38181" - } - }, - { - "pk": 11976, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE GRAND-LEMPS", - "center": "POINT (841304.3429865076905116 2048682.3928810472134501)", - "surface": 12850000, - "canton": null, - "numero_insee": "38182" - } - }, - { - "pk": 7559, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "GRANIEU", - "center": "POINT (853717.2518815166549757 2071911.2637205184437335)", - "surface": 3780000, - "canton": null, - "numero_insee": "38183" - } - }, - { - "pk": 25074, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "GRENAY", - "center": "POINT (813533.7780948138097301 2077172.2698239274322987)", - "surface": 6770000, - "canton": null, - "numero_insee": "38184" - } - }, - { - "pk": 37009, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "GRENOBLE", - "center": "POINT (866024.2934263069182634 2025871.8991179747972637)", - "surface": 18560000, - "canton": null, - "numero_insee": "38185" - } - }, - { - "pk": 16896, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "GRESSE-EN-VERCORS", - "center": "POINT (851998.0086178439669311 1992317.8198700726497918)", - "surface": 80370000, - "canton": null, - "numero_insee": "38186" - } - }, - { - "pk": 3984, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE GUA", - "center": "POINT (858480.4953909075120464 2006788.0665702926926315)", - "surface": 28650000, - "canton": null, - "numero_insee": "38187" - } - }, - { - "pk": 22309, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "HERBEYS", - "center": "POINT (872165.1919181958073750 2021820.5917938514612615)", - "surface": 7920000, - "canton": null, - "numero_insee": "38188" - } - }, - { - "pk": 34844, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "HEYRIEUX", - "center": "POINT (812265.1643110841978341 2073357.7848033329937607)", - "surface": 13880000, - "canton": null, - "numero_insee": "38189" - } - }, - { - "pk": 29636, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "HIERES-SUR-AMBY", - "center": "POINT (829812.7576207228703424 2093126.6257230073679239)", - "surface": 8660000, - "canton": null, - "numero_insee": "38190" - } - }, - { - "pk": 22790, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "HUEZ", - "center": "POINT (894923.2500422212760895 2017712.1296991924755275)", - "surface": 20290000, - "canton": null, - "numero_insee": "38191" - } - }, - { - "pk": 12483, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "HURTIERES", - "center": "POINT (884835.7454632499720901 2038345.8554299375973642)", - "surface": 3420000, - "canton": null, - "numero_insee": "38192" - } - }, - { - "pk": 34845, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "L'ISLE-D'ABEAU", - "center": "POINT (825082.4837826307630166 2072766.8086400865577161)", - "surface": 12970000, - "canton": null, - "numero_insee": "38193" - } - }, - { - "pk": 23076, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "IZEAUX", - "center": "POINT (842355.8864649245515466 2042785.6322285556234419)", - "surface": 15490000, - "canton": null, - "numero_insee": "38194" - } - }, - { - "pk": 4286, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "IZERON", - "center": "POINT (840546.2929383986629546 2020347.9443317479453981)", - "surface": 16990000, - "canton": null, - "numero_insee": "38195" - } - }, - { - "pk": 34190, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "JANNEYRIAS", - "center": "POINT (816050.4288858862128109 2087203.3110625909175724)", - "surface": 10680000, - "canton": null, - "numero_insee": "38197" - } - }, - { - "pk": 37227, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "JARCIEU", - "center": "POINT (804738.0155037038493901 2040561.7153197894804180)", - "surface": 6330000, - "canton": null, - "numero_insee": "38198" - } - }, - { - "pk": 26273, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "JARDIN", - "center": "POINT (801186.1147085763514042 2057948.3321137826424092)", - "surface": 9310000, - "canton": null, - "numero_insee": "38199" - } - }, - { - "pk": 31602, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "JARRIE", - "center": "POINT (868293.4144348422996700 2018083.6142761558294296)", - "surface": 13310000, - "canton": null, - "numero_insee": "38200" - } - }, - { - "pk": 36863, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LAFFREY", - "center": "POINT (871472.8638715838314965 2009202.0037522648926824)", - "surface": 7130000, - "canton": null, - "numero_insee": "38203" - } - }, - { - "pk": 29407, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LALLEY", - "center": "POINT (865140.1427984826732427 1977315.1724568945355713)", - "surface": 23760000, - "canton": null, - "numero_insee": "38204" - } - }, - { - "pk": 22504, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LANS-EN-VERCORS", - "center": "POINT (855976.8592781651532277 2018578.4243860261049122)", - "surface": 39140000, - "canton": null, - "numero_insee": "38205" - } - }, - { - "pk": 24210, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LAVAL", - "center": "POINT (886085.0870628447737545 2032751.0732080843299627)", - "surface": 25700000, - "canton": null, - "numero_insee": "38206" - } - }, - { - "pk": 16817, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LAVALDENS", - "center": "POINT (881215.5041490716394037 2005381.8496192267630249)", - "surface": 56780000, - "canton": null, - "numero_insee": "38207" - } - }, - { - "pk": 32178, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LENTIOL", - "center": "POINT (817083.4502852568402886 2036663.3544505906756967)", - "surface": 7620000, - "canton": null, - "numero_insee": "38209" - } - }, - { - "pk": 31436, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LEYRIEU", - "center": "POINT (826952.2403903795639053 2088197.4916715638246387)", - "surface": 6480000, - "canton": null, - "numero_insee": "38210" - } - }, - { - "pk": 34722, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LIEUDIEU", - "center": "POINT (822233.2015644842758775 2054825.1385235784109682)", - "surface": 5980000, - "canton": null, - "numero_insee": "38211" - } - }, - { - "pk": 23329, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LIVET-ET-GAVET", - "center": "POINT (881921.5236033154651523 2016398.9977068761363626)", - "surface": 62030000, - "canton": null, - "numero_insee": "38212" - } - }, - { - "pk": 36149, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LONGECHENAL", - "center": "POINT (836576.0763482797192410 2051444.5905582667328417)", - "surface": 8190000, - "canton": null, - "numero_insee": "38213" - } - }, - { - "pk": 13988, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LUMBIN", - "center": "POINT (880416.2313972539268434 2040109.5987216422799975)", - "surface": 6570000, - "canton": null, - "numero_insee": "38214" - } - }, - { - "pk": 5729, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LUZINAY", - "center": "POINT (804395.8210981263546273 2068886.2781364428810775)", - "surface": 18990000, - "canton": null, - "numero_insee": "38215" - } - }, - { - "pk": 7947, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MALLEVAL-EN-VERCORS", - "center": "POINT (844337.7887924951501191 2021781.8519636976998299)", - "surface": 14160000, - "canton": null, - "numero_insee": "38216" - } - }, - { - "pk": 31549, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MARCIEU", - "center": "POINT (865176.9573114247759804 1996334.9438633816316724)", - "surface": 13280000, - "canton": null, - "numero_insee": "38217" - } - }, - { - "pk": 32396, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MARCILLOLES", - "center": "POINT (822439.5368458464508876 2042414.7971083652228117)", - "surface": 9450000, - "canton": null, - "numero_insee": "38218" - } - }, - { - "pk": 9360, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MARCOLLIN", - "center": "POINT (815769.4202853215392679 2038153.5889454395510256)", - "surface": 10670000, - "canton": null, - "numero_insee": "38219" - } - }, - { - "pk": 7247, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MARNANS", - "center": "POINT (828498.1331819120096043 2036260.5763332606293261)", - "surface": 6570000, - "canton": null, - "numero_insee": "38221" - } - }, - { - "pk": 28013, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MASSIEU", - "center": "POINT (855274.0277737739961594 2053807.1282869817223400)", - "surface": 10540000, - "canton": null, - "numero_insee": "38222" - } - }, - { - "pk": 36779, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MAUBEC", - "center": "POINT (828033.9154215541202575 2067086.6097840603906661)", - "surface": 8670000, - "canton": null, - "numero_insee": "38223" - } - }, - { - "pk": 37485, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MAYRES-SAVEL", - "center": "POINT (866607.5174246175447479 1992943.7724340953864157)", - "surface": 13880000, - "canton": null, - "numero_insee": "38224" - } - }, - { - "pk": 1502, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MENS", - "center": "POINT (870177.9262202950194478 1985166.4780890895053744)", - "surface": 28260000, - "canton": null, - "numero_insee": "38226" - } - }, - { - "pk": 10129, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MERLAS", - "center": "POINT (859874.7288723773090169 2054247.0236991010606289)", - "surface": 15510000, - "canton": null, - "numero_insee": "38228" - } - }, - { - "pk": 23707, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MEYLAN", - "center": "POINT (870698.5090330098755658 2029415.5482683940790594)", - "surface": 12520000, - "canton": null, - "numero_insee": "38229" - } - }, - { - "pk": 14020, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MEYRIE", - "center": "POINT (830140.9276364163961262 2066504.0805396176874638)", - "surface": 3460000, - "canton": null, - "numero_insee": "38230" - } - }, - { - "pk": 9114, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MEYRIEU-LES-ETANGS", - "center": "POINT (823579.6159448203397915 2061242.8694016663357615)", - "surface": 8520000, - "canton": null, - "numero_insee": "38231" - } - }, - { - "pk": 10523, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MEYSSIES", - "center": "POINT (813023.2245053971419111 2054946.5226414171047509)", - "surface": 13870000, - "canton": null, - "numero_insee": "38232" - } - }, - { - "pk": 17290, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MIRIBEL-LES-ECHELLES", - "center": "POINT (863679.0076585978968069 2054179.6054681097157300)", - "surface": 29240000, - "canton": null, - "numero_insee": "38236" - } - }, - { - "pk": 16617, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MIZOEN", - "center": "POINT (902878.8948859404772520 2012175.0549601647071540)", - "surface": 20810000, - "canton": null, - "numero_insee": "38237" - } - }, - { - "pk": 12638, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MOIDIEU-DETOURBE", - "center": "POINT (809773.2765148031758144 2060424.0587152985390276)", - "surface": 17940000, - "canton": null, - "numero_insee": "38238" - } - }, - { - "pk": 18262, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MOIRANS", - "center": "POINT (852886.0378175163641572 2040473.6137284471187741)", - "surface": 20010000, - "canton": null, - "numero_insee": "38239" - } - }, - { - "pk": 30819, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MOISSIEU-SUR-DOLON", - "center": "POINT (807487.5070349728921428 2046791.2920402330346406)", - "surface": 14540000, - "canton": null, - "numero_insee": "38240" - } - }, - { - "pk": 37216, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONESTIER-D'AMBEL", - "center": "POINT (884030.6755281941732392 1980680.8760280539281666)", - "surface": 11160000, - "canton": null, - "numero_insee": "38241" - } - }, - { - "pk": 24954, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONESTIER-DE-CLERMONT", - "center": "POINT (860469.9467229540459812 1996594.8198475472163409)", - "surface": 5320000, - "canton": null, - "numero_insee": "38242" - } - }, - { - "pk": 5265, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE MONESTIER-DU-PERCY", - "center": "POINT (862102.0267966510728002 1981393.2982059109490365)", - "surface": 15160000, - "canton": null, - "numero_insee": "38243" - } - }, - { - "pk": 36369, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONSTEROUX-MILIEU", - "center": "POINT (804143.4616259279428050 2051567.3893147632479668)", - "surface": 8150000, - "canton": null, - "numero_insee": "38244" - } - }, - { - "pk": 7213, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTAGNE", - "center": "POINT (825235.5765851163305342 2019816.3699697880074382)", - "surface": 8770000, - "canton": null, - "numero_insee": "38245" - } - }, - { - "pk": 9112, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTAGNIEU", - "center": "POINT (843281.7714986806968227 2063213.4387849576305598)", - "surface": 8780000, - "canton": null, - "numero_insee": "38246" - } - }, - { - "pk": 22027, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTALIEU-VERCIEU", - "center": "POINT (838206.3343205974670127 2094800.0704146723728627)", - "surface": 8900000, - "canton": null, - "numero_insee": "38247" - } - }, - { - "pk": 36744, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTAUD", - "center": "POINT (853142.0608789618127048 2033969.4021263502072543)", - "surface": 14400000, - "canton": null, - "numero_insee": "38248" - } - }, - { - "pk": 6972, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTBONNOT-SAINT-MARTIN", - "center": "POINT (873191.3390308070229366 2030538.0703072864562273)", - "surface": 6600000, - "canton": null, - "numero_insee": "38249" - } - }, - { - "pk": 26025, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTCARRA", - "center": "POINT (838899.8465851494111121 2072284.6245161062106490)", - "surface": 4860000, - "canton": null, - "numero_insee": "38250" - } - }, - { - "pk": 7738, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTCHABOUD", - "center": "POINT (869511.7321064141578972 2016092.0815896480344236)", - "surface": 1970000, - "canton": null, - "numero_insee": "38252" - } - }, - { - "pk": 19475, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONT-DE-LANS", - "center": "POINT (899603.4183431835845113 2008943.6017664209939539)", - "surface": 41920000, - "canton": null, - "numero_insee": "38253" - } - }, - { - "pk": 29484, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTEYNARD", - "center": "POINT (865417.0455272373510525 2003344.1066202402580529)", - "surface": 11290000, - "canton": null, - "numero_insee": "38254" - } - }, - { - "pk": 11709, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTFALCON", - "center": "POINT (822421.6985004229936749 2032805.1915548399556428)", - "surface": 5750000, - "canton": null, - "numero_insee": "38255" - } - }, - { - "pk": 24533, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTFERRAT", - "center": "POINT (853337.0926552361343056 2057894.4862289959564805)", - "surface": 13470000, - "canton": null, - "numero_insee": "38256" - } - }, - { - "pk": 6445, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTREVEL", - "center": "POINT (840026.8833300322294235 2057580.1052387095987797)", - "surface": 9330000, - "canton": null, - "numero_insee": "38257" - } - }, - { - "pk": 28236, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONT-SAINT-MARTIN", - "center": "POINT (862530.0246279872953892 2036452.3830056732986122)", - "surface": 5090000, - "canton": null, - "numero_insee": "38258" - } - }, - { - "pk": 23630, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MONTSEVEROUX", - "center": "POINT (806349.7208915724186227 2051085.7607850283384323)", - "surface": 16670000, - "canton": null, - "numero_insee": "38259" - } - }, - { - "pk": 35799, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MORAS", - "center": "POINT (827718.8629508588928729 2080496.7447393937036395)", - "surface": 8200000, - "canton": null, - "numero_insee": "38260" - } - }, - { - "pk": 32296, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MORESTEL", - "center": "POINT (844035.7717321868985891 2080336.3180689758155495)", - "surface": 8030000, - "canton": null, - "numero_insee": "38261" - } - }, - { - "pk": 37920, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MORETEL-DE-MAILLES", - "center": "POINT (887559.0244767158292234 2047578.3408646867610514)", - "surface": 6790000, - "canton": null, - "numero_insee": "38262" - } - }, - { - "pk": 28150, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MORETTE", - "center": "POINT (844312.5514908541226760 2036396.1154095253441483)", - "surface": 6290000, - "canton": null, - "numero_insee": "38263" - } - }, - { - "pk": 28638, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA MORTE", - "center": "POINT (877780.4676580021623522 2009056.0366759919561446)", - "surface": 19190000, - "canton": null, - "numero_insee": "38264" - } - }, - { - "pk": 9192, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA MOTTE-D'AVEILLANS", - "center": "POINT (868544.0372576919617131 2000568.1390370451845229)", - "surface": 9910000, - "canton": null, - "numero_insee": "38265" - } - }, - { - "pk": 34865, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA MOTTE-SAINT-MARTIN", - "center": "POINT (866950.2736907744547352 1999653.5312477434054017)", - "surface": 15050000, - "canton": null, - "numero_insee": "38266" - } - }, - { - "pk": 34042, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MOTTIER", - "center": "POINT (832573.3291090193670243 2051310.1909501212649047)", - "surface": 10770000, - "canton": null, - "numero_insee": "38267" - } - }, - { - "pk": 8290, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE MOUTARET", - "center": "POINT (893004.5183036252856255 2054531.9757703363429755)", - "surface": 5230000, - "canton": null, - "numero_insee": "38268" - } - }, - { - "pk": 34289, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA MURE", - "center": "POINT (872589.0987552353180945 1995798.0304422106128186)", - "surface": 8320000, - "canton": null, - "numero_insee": "38269" - } - }, - { - "pk": 29461, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA MURETTE", - "center": "POINT (850924.1828510948689654 2047463.6427657026797533)", - "surface": 4240000, - "canton": null, - "numero_insee": "38270" - } - }, - { - "pk": 30560, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MURIANETTE", - "center": "POINT (874123.1480989877600223 2026942.5069653382524848)", - "surface": 6170000, - "canton": null, - "numero_insee": "38271" - } - }, - { - "pk": 11974, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "MURINAIS", - "center": "POINT (834277.0940458906115964 2027701.5762772199232131)", - "surface": 8170000, - "canton": null, - "numero_insee": "38272" - } - }, - { - "pk": 13892, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NANTES-EN-RATIER", - "center": "POINT (875572.9948819279670715 1998025.9213993095327169)", - "surface": 12010000, - "canton": null, - "numero_insee": "38273" - } - }, - { - "pk": 12882, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NANTOIN", - "center": "POINT (829156.5476059843786061 2052882.4783352673985064)", - "surface": 9600000, - "canton": null, - "numero_insee": "38274" - } - }, - { - "pk": 3513, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SERRE-NERPOL", - "center": "POINT (838135.2061482670251280 2033039.8912633345462382)", - "surface": 13080000, - "canton": null, - "numero_insee": "38275" - } - }, - { - "pk": 11160, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NIVOLAS-VERMELLE", - "center": "POINT (831840.7251853767083958 2066718.8359902533702552)", - "surface": 6180000, - "canton": null, - "numero_insee": "38276" - } - }, - { - "pk": 7863, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NOTRE-DAME-DE-COMMIERS", - "center": "POINT (865388.6677248828345910 2006647.1974026116076857)", - "surface": 5540000, - "canton": null, - "numero_insee": "38277" - } - }, - { - "pk": 24729, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NOTRE-DAME-DE-L'OSIER", - "center": "POINT (841655.5734001416712999 2031068.0928689774591476)", - "surface": 8550000, - "canton": null, - "numero_insee": "38278" - } - }, - { - "pk": 32199, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NOTRE-DAME-DE-MESAGE", - "center": "POINT (868932.6805485123768449 2013584.5967162011656910)", - "surface": 4600000, - "canton": null, - "numero_insee": "38279" - } - }, - { - "pk": 27548, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NOTRE-DAME-DE-VAULX", - "center": "POINT (868508.7707050461322069 2004671.9866575759369880)", - "surface": 7960000, - "canton": null, - "numero_insee": "38280" - } - }, - { - "pk": 23165, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "NOYAREY", - "center": "POINT (857662.5061787890736014 2032106.3292298598680645)", - "surface": 17000000, - "canton": null, - "numero_insee": "38281" - } - }, - { - "pk": 28987, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "OPTEVOZ", - "center": "POINT (833660.6657321741804481 2087954.6816375667694956)", - "surface": 12020000, - "canton": null, - "numero_insee": "38282" - } - }, - { - "pk": 30297, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ORIS-EN-RATTIER", - "center": "POINT (880071.2070875945501029 1998765.3184607205912471)", - "surface": 18590000, - "canton": null, - "numero_insee": "38283" - } - }, - { - "pk": 31333, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ORNACIEUX", - "center": "POINT (825085.4246122819604352 2049043.9086532611399889)", - "surface": 4930000, - "canton": null, - "numero_insee": "38284" - } - }, - { - "pk": 4670, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ORNON", - "center": "POINT (885872.5262007561977953 2010927.4712120175827295)", - "surface": 23610000, - "canton": null, - "numero_insee": "38285" - } - }, - { - "pk": 14970, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "OULLES", - "center": "POINT (885540.3726320405257866 2014628.3327460223808885)", - "surface": 14470000, - "canton": null, - "numero_insee": "38286" - } - }, - { - "pk": 4656, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "OYEU", - "center": "POINT (845977.6798976639984176 2052325.9859932626131922)", - "surface": 13730000, - "canton": null, - "numero_insee": "38287" - } - }, - { - "pk": 7249, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "OYTIER-SAINT-OBLAS", - "center": "POINT (810324.1682222883682698 2066234.3667604003567249)", - "surface": 14200000, - "canton": null, - "numero_insee": "38288" - } - }, - { - "pk": 14509, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "OZ", - "center": "POINT (893893.0109930600738153 2021106.6589416242204607)", - "surface": 26920000, - "canton": null, - "numero_insee": "38289" - } - }, - { - "pk": 26662, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PACT", - "center": "POINT (807722.7720132769318298 2042689.2900142548605800)", - "surface": 9620000, - "canton": null, - "numero_insee": "38290" - } - }, - { - "pk": 37912, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PAJAY", - "center": "POINT (818825.9906791218090802 2043585.0454984277021140)", - "surface": 14330000, - "canton": null, - "numero_insee": "38291" - } - }, - { - "pk": 27533, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PALADRU", - "center": "POINT (851328.4270661597838625 2058678.0217289517167956)", - "surface": 12560000, - "canton": null, - "numero_insee": "38292" - } - }, - { - "pk": 34499, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PANISSAGE", - "center": "POINT (844012.4425989247392863 2059716.3192283944226801)", - "surface": 4820000, - "canton": null, - "numero_insee": "38293" - } - }, - { - "pk": 29787, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PANOSSAS", - "center": "POINT (822426.1996256720740348 2079050.0877846830990165)", - "surface": 8050000, - "canton": null, - "numero_insee": "38294" - } - }, - { - "pk": 24074, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PARMILIEU", - "center": "POINT (834373.0098637917544693 2098270.5034763859584928)", - "surface": 12750000, - "canton": null, - "numero_insee": "38295" - } - }, - { - "pk": 5692, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE PASSAGE", - "center": "POINT (848185.2864124485058710 2063355.5994560795370489)", - "surface": 6570000, - "canton": null, - "numero_insee": "38296" - } - }, - { - "pk": 26433, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PASSINS", - "center": "POINT (840822.6575490924296901 2081509.9046290353871882)", - "surface": 14160000, - "canton": null, - "numero_insee": "38297" - } - }, - { - "pk": 8063, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE PEAGE-DE-ROUSSILLON", - "center": "POINT (791697.1490610397886485 2043853.6511936194729060)", - "surface": 7370000, - "canton": null, - "numero_insee": "38298" - } - }, - { - "pk": 23663, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PELLAFOL", - "center": "POINT (880416.0444523757323623 1981951.1166300487238914)", - "surface": 35090000, - "canton": null, - "numero_insee": "38299" - } - }, - { - "pk": 33304, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PENOL", - "center": "POINT (822814.1946757202968001 2045420.9442506292834878)", - "surface": 12100000, - "canton": null, - "numero_insee": "38300" - } - }, - { - "pk": 21307, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PERCY", - "center": "POINT (860296.0120975292520598 1981878.3029580886941403)", - "surface": 15820000, - "canton": null, - "numero_insee": "38301" - } - }, - { - "pk": 14385, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE PERIER", - "center": "POINT (887770.7036179204005748 1999732.4853887869976461)", - "surface": 47930000, - "canton": null, - "numero_insee": "38302" - } - }, - { - "pk": 10070, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA PIERRE", - "center": "POINT (882726.9393690621946007 2039128.4957614683080465)", - "surface": 3360000, - "canton": null, - "numero_insee": "38303" - } - }, - { - "pk": 26097, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PIERRE-CHATEL", - "center": "POINT (871243.1337540190434083 2000991.7419061884284019)", - "surface": 12370000, - "canton": null, - "numero_insee": "38304" - } - }, - { - "pk": 34774, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE PIN", - "center": "POINT (847947.7078475027810782 2056046.4873273973353207)", - "surface": 10200000, - "canton": null, - "numero_insee": "38305" - } - }, - { - "pk": 3967, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PINSOT", - "center": "POINT (896889.8676055707037449 2045056.1540124742314219)", - "surface": 43310000, - "canton": null, - "numero_insee": "38306" - } - }, - { - "pk": 13740, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PISIEU", - "center": "POINT (814295.3679714699974284 2046649.3159869746305048)", - "surface": 18850000, - "canton": null, - "numero_insee": "38307" - } - }, - { - "pk": 13874, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PLAN", - "center": "POINT (839579.0872354714665562 2039758.8758762609213591)", - "surface": 6050000, - "canton": null, - "numero_insee": "38308" - } - }, - { - "pk": 25123, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "POISAT", - "center": "POINT (869953.6952135425526649 2022902.6792336986400187)", - "surface": 2530000, - "canton": null, - "numero_insee": "38309" - } - }, - { - "pk": 24932, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "POLIENAS", - "center": "POINT (846747.3691425898578018 2032613.2461915316525847)", - "surface": 13700000, - "canton": null, - "numero_insee": "38310" - } - }, - { - "pk": 36679, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "POMMIERS-LA-PLACETTE", - "center": "POINT (861990.0190215345937759 2041052.2763020945712924)", - "surface": 16870000, - "canton": null, - "numero_insee": "38312" - } - }, - { - "pk": 7952, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PONSONNAS", - "center": "POINT (873408.7846794603392482 1993602.8364514948334545)", - "surface": 2990000, - "canton": null, - "numero_insee": "38313" - } - }, - { - "pk": 29111, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PONTCHARRA", - "center": "POINT (888210.5381657626712695 2053289.5216147201135755)", - "surface": 16040000, - "canton": null, - "numero_insee": "38314" - } - }, - { - "pk": 33395, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE PONT-DE-BEAUVOISIN", - "center": "POINT (859686.9554243364837021 2064455.3017924046143889)", - "surface": 7380000, - "canton": null, - "numero_insee": "38315" - } - }, - { - "pk": 4047, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PONT-DE-CHERUY", - "center": "POINT (820652.7355923946015537 2087442.8889873123262078)", - "surface": 2510000, - "canton": null, - "numero_insee": "38316" - } - }, - { - "pk": 22713, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE PONT-DE-CLAIX", - "center": "POINT (864677.1789894446264952 2019554.0420588161796331)", - "surface": 5690000, - "canton": null, - "numero_insee": "38317" - } - }, - { - "pk": 28384, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PONT-EVEQUE", - "center": "POINT (802047.5763230598531663 2062560.1419319775886834)", - "surface": 8710000, - "canton": null, - "numero_insee": "38318" - } - }, - { - "pk": 22639, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PONT-EN-ROYANS", - "center": "POINT (837021.0281929082702845 2011208.6127226720564067)", - "surface": 2880000, - "canton": null, - "numero_insee": "38319" - } - }, - { - "pk": 3188, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PORCIEU-AMBLAGNIEU", - "center": "POINT (837281.5274748378433287 2097594.7770861601457000)", - "surface": 15840000, - "canton": null, - "numero_insee": "38320" - } - }, - { - "pk": 17493, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PREBOIS", - "center": "POINT (867111.0971264848485589 1980935.8118828986771405)", - "surface": 16040000, - "canton": null, - "numero_insee": "38321" - } - }, - { - "pk": 4627, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PRESLES", - "center": "POINT (841493.4668092012871057 2014950.6639206460677087)", - "surface": 25500000, - "canton": null, - "numero_insee": "38322" - } - }, - { - "pk": 33039, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PRESSINS", - "center": "POINT (857390.0607335643144324 2063834.9964855026919395)", - "surface": 10120000, - "canton": null, - "numero_insee": "38323" - } - }, - { - "pk": 17660, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PRIMARETTE", - "center": "POINT (811073.6426769057288766 2048823.9089692584238946)", - "surface": 21960000, - "canton": null, - "numero_insee": "38324" - } - }, - { - "pk": 16716, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PROVEYSIEUX", - "center": "POINT (865023.7074762713164091 2037474.7929851599037647)", - "surface": 20180000, - "canton": null, - "numero_insee": "38325" - } - }, - { - "pk": 32630, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "PRUNIERES", - "center": "POINT (870097.9231814674567431 1994475.2943881249520928)", - "surface": 8150000, - "canton": null, - "numero_insee": "38326" - } - }, - { - "pk": 18450, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "QUAIX-EN-CHARTREUSE", - "center": "POINT (866353.2761587633285671 2034182.9584391540847719)", - "surface": 18290000, - "canton": null, - "numero_insee": "38328" - } - }, - { - "pk": 36862, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "QUET-EN-BEAUMONT", - "center": "POINT (879963.1439023981802166 1988053.4787993219215423)", - "surface": 8210000, - "canton": null, - "numero_insee": "38329" - } - }, - { - "pk": 15343, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "QUINCIEU", - "center": "POINT (839215.6195346056483686 2035451.5233724566642195)", - "surface": 4770000, - "canton": null, - "numero_insee": "38330" - } - }, - { - "pk": 6216, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "REAUMONT", - "center": "POINT (849540.9522997731110081 2045349.7169717182405293)", - "surface": 5050000, - "canton": null, - "numero_insee": "38331" - } - }, - { - "pk": 25863, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "RENAGE", - "center": "POINT (847469.9622033721534535 2041728.4161456131841987)", - "surface": 5100000, - "canton": null, - "numero_insee": "38332" - } - }, - { - "pk": 23302, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "RENCUREL", - "center": "POINT (846772.6314685370307416 2017998.9405470485799015)", - "surface": 34560000, - "canton": null, - "numero_insee": "38333" - } - }, - { - "pk": 30296, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "REVEL-TOURDAN", - "center": "POINT (811008.6467965184710920 2044719.3455582149326801)", - "surface": 11630000, - "canton": null, - "numero_insee": "38335" - } - }, - { - "pk": 18062, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "REVENTIN-VAUGRIS", - "center": "POINT (795995.1349841130431741 2056302.4355409296695143)", - "surface": 18390000, - "canton": null, - "numero_insee": "38336" - } - }, - { - "pk": 9062, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "RIVES", - "center": "POINT (846741.8498543276218697 2044925.3097632816061378)", - "surface": 11230000, - "canton": null, - "numero_insee": "38337" - } - }, - { - "pk": 25151, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA RIVIERE", - "center": "POINT (849473.8877918003126979 2029833.8646492997650057)", - "surface": 18350000, - "canton": null, - "numero_insee": "38338" - } - }, - { - "pk": 23678, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ROCHE", - "center": "POINT (820021.6612617955543101 2067618.5849683291744441)", - "surface": 19520000, - "canton": null, - "numero_insee": "38339" - } - }, - { - "pk": 30036, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LES ROCHES-DE-CONDRIEU", - "center": "POINT (789815.2064172053942457 2053246.7553764004260302)", - "surface": 1040000, - "canton": null, - "numero_insee": "38340" - } - }, - { - "pk": 11860, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ROCHETOIRIN", - "center": "POINT (840221.5947956196032465 2069893.6527385450899601)", - "surface": 10660000, - "canton": null, - "numero_insee": "38341" - } - }, - { - "pk": 19344, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ROMAGNIEU", - "center": "POINT (857756.0372726462082937 2067841.9982004931662232)", - "surface": 17330000, - "canton": null, - "numero_insee": "38343" - } - }, - { - "pk": 36078, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ROUSSILLON", - "center": "POINT (794290.1031626325566322 2044976.8672922272235155)", - "surface": 11790000, - "canton": null, - "numero_insee": "38344" - } - }, - { - "pk": 8337, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ROVON", - "center": "POINT (845809.9845727812498808 2025197.8648823881521821)", - "surface": 12030000, - "canton": null, - "numero_insee": "38345" - } - }, - { - "pk": 10022, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ROYAS", - "center": "POINT (815984.8138764677569270 2059776.5125625759828836)", - "surface": 5410000, - "canton": null, - "numero_insee": "38346" - } - }, - { - "pk": 23670, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "ROYBON", - "center": "POINT (828637.6581680848030373 2031657.2283512935973704)", - "surface": 67330000, - "canton": null, - "numero_insee": "38347" - } - }, - { - "pk": 11371, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "RUY", - "center": "POINT (834615.7674522646702826 2069945.6940314632374793)", - "surface": 21020000, - "canton": null, - "numero_insee": "38348" - } - }, - { - "pk": 12714, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SABLONS", - "center": "POINT (791942.6199917977210134 2038550.5472955943550915)", - "surface": 10160000, - "canton": null, - "numero_insee": "38349" - } - }, - { - "pk": 22954, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINTE-AGNES", - "center": "POINT (884608.6939568110974506 2029835.4901014876086265)", - "surface": 26670000, - "canton": null, - "numero_insee": "38350" - } - }, - { - "pk": 16892, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-AGNIN-SUR-BION", - "center": "POINT (826659.2427043016068637 2063971.8481149240396917)", - "surface": 9720000, - "canton": null, - "numero_insee": "38351" - } - }, - { - "pk": 17685, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ALBAN-DE-ROCHE", - "center": "POINT (825312.6586186042986810 2069265.4206433028448373)", - "surface": 4410000, - "canton": null, - "numero_insee": "38352" - } - }, - { - "pk": 8185, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ALBAN-DU-RHONE", - "center": "POINT (789348.9306971897603944 2049238.8813957613892853)", - "surface": 3400000, - "canton": null, - "numero_insee": "38353" - } - }, - { - "pk": 9680, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ALBIN-DE-VAULSERRE", - "center": "POINT (862617.0580225111916661 2061277.3763391862157732)", - "surface": 4970000, - "canton": null, - "numero_insee": "38354" - } - }, - { - "pk": 34740, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ANDEOL", - "center": "POINT (850936.0853795041330159 1999415.9268175263423473)", - "surface": 29730000, - "canton": null, - "numero_insee": "38355" - } - }, - { - "pk": 22915, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ANDRE-EN-ROYANS", - "center": "POINT (836199.6964941003825516 2013603.9832988427951932)", - "surface": 10480000, - "canton": null, - "numero_insee": "38356" - } - }, - { - "pk": 28149, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ANDRE-LE-GAZ", - "center": "POINT (849465.8335226300405338 2065768.9043639237061143)", - "surface": 8980000, - "canton": null, - "numero_insee": "38357" - } - }, - { - "pk": 11565, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINTE-ANNE-SUR-GERVONDE", - "center": "POINT (826296.6000429725972936 2059564.4889791572932154)", - "surface": 7940000, - "canton": null, - "numero_insee": "38358" - } - }, - { - "pk": 20006, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ANTOINE-L'ABBAYE", - "center": "POINT (826308.3107704326976091 2023128.8445487932767719)", - "surface": 22020000, - "canton": null, - "numero_insee": "38359" - } - }, - { - "pk": 34164, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-AREY", - "center": "POINT (869113.3221036562463269 1992564.8962765843607485)", - "surface": 6940000, - "canton": null, - "numero_insee": "38361" - } - }, - { - "pk": 24211, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-AUPRE", - "center": "POINT (860206.8061791327781975 2050546.2686510041821748)", - "surface": 12080000, - "canton": null, - "numero_insee": "38362" - } - }, - { - "pk": 11710, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-BARTHELEMY", - "center": "POINT (815039.6701722247526050 2041550.6873557057697326)", - "surface": 7670000, - "canton": null, - "numero_insee": "38363" - } - }, - { - "pk": 35686, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-BARTHELEMY-DE-SECHILIENNE", - "center": "POINT (874566.2912197906989604 2010329.7061835632193834)", - "surface": 12290000, - "canton": null, - "numero_insee": "38364" - } - }, - { - "pk": 37659, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-BAUDILLE-DE-LA-TOUR", - "center": "POINT (833327.8100216453894973 2091755.4231974266003817)", - "surface": 21950000, - "canton": null, - "numero_insee": "38365" - } - }, - { - "pk": 15096, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-BAUDILLE-ET-PIPET", - "center": "POINT (872410.1333591188304126 1981682.0704055449459702)", - "surface": 35850000, - "canton": null, - "numero_insee": "38366" - } - }, - { - "pk": 34043, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-BLAISE-DU-BUIS", - "center": "POINT (848724.7692733035655692 2047144.4762132363393903)", - "surface": 5590000, - "canton": null, - "numero_insee": "38368" - } - }, - { - "pk": 5549, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINTE-BLANDINE", - "center": "POINT (841863.3556919177062809 2065203.2052981515880674)", - "surface": 9150000, - "canton": null, - "numero_insee": "38369" - } - }, - { - "pk": 19748, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-BONNET-DE-CHAVAGNE", - "center": "POINT (827456.4678727326681837 2017633.1890542148612440)", - "surface": 15180000, - "canton": null, - "numero_insee": "38370" - } - }, - { - "pk": 37921, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-BUEIL", - "center": "POINT (861443.4973319065757096 2058064.1924062790349126)", - "surface": 3930000, - "canton": null, - "numero_insee": "38372" - } - }, - { - "pk": 25394, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-CASSIEN", - "center": "POINT (851844.7543833490926772 2045169.2911452888511121)", - "surface": 5650000, - "canton": null, - "numero_insee": "38373" - } - }, - { - "pk": 29433, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-CHEF", - "center": "POINT (835767.9333990950835869 2075661.0335583847481757)", - "surface": 27540000, - "canton": null, - "numero_insee": "38374" - } - }, - { - "pk": 16619, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-CHRISTOPHE-EN-OISANS", - "center": "POINT (908491.9145545255159959 1999710.8039525833446532)", - "surface": 237390000, - "canton": null, - "numero_insee": "38375" - } - }, - { - "pk": 19419, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-CHRISTOPHE-SUR-GUIERS", - "center": "POINT (870510.0793518815189600 2051335.4847055373247713)", - "surface": 23220000, - "canton": null, - "numero_insee": "38376" - } - }, - { - "pk": 36157, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-CLAIR-DE-LA-TOUR", - "center": "POINT (845941.2502880903193727 2068241.0724435332231224)", - "surface": 9210000, - "canton": null, - "numero_insee": "38377" - } - }, - { - "pk": 30259, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-CLAIR-DU-RHONE", - "center": "POINT (790633.0145005376543850 2051251.7910886439494789)", - "surface": 7180000, - "canton": null, - "numero_insee": "38378" - } - }, - { - "pk": 29676, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-CLAIR-SUR-GALAURE", - "center": "POINT (820508.8237850798759609 2034090.1026355694048107)", - "surface": 15300000, - "canton": null, - "numero_insee": "38379" - } - }, - { - "pk": 5912, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-DIDIER-DE-BIZONNES", - "center": "POINT (835238.8774520562728867 2055637.2172413244843483)", - "surface": 7230000, - "canton": null, - "numero_insee": "38380" - } - }, - { - "pk": 26518, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-DIDIER-DE-LA-TOUR", - "center": "POINT (845962.7159185166237876 2065738.8479508792515844)", - "surface": 14610000, - "canton": null, - "numero_insee": "38381" - } - }, - { - "pk": 32694, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-EGREVE", - "center": "POINT (862774.0573624805547297 2031349.4361816248856485)", - "surface": 10860000, - "canton": null, - "numero_insee": "38382" - } - }, - { - "pk": 27315, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ETIENNE-DE-CROSSEY", - "center": "POINT (858430.9673613978084177 2047528.0853658225387335)", - "surface": 13130000, - "canton": null, - "numero_insee": "38383" - } - }, - { - "pk": 31974, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ETIENNE-DE-SAINT-GEOIRS", - "center": "POINT (835949.2187329096486792 2042830.8070608093403280)", - "surface": 18770000, - "canton": null, - "numero_insee": "38384" - } - }, - { - "pk": 21886, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-GEOIRE-EN-VALDAINE", - "center": "POINT (857953.2510434002615511 2056532.7591090172063559)", - "surface": 16710000, - "canton": null, - "numero_insee": "38386" - } - }, - { - "pk": 16998, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-GEOIRS", - "center": "POINT (835974.9533285564975813 2039828.0805965934414417)", - "surface": 7000000, - "canton": null, - "numero_insee": "38387" - } - }, - { - "pk": 9827, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-GEORGES-DE-COMMIERS", - "center": "POINT (866463.8959889560937881 2009659.4599748798646033)", - "surface": 14250000, - "canton": null, - "numero_insee": "38388" - } - }, - { - "pk": 19952, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-GEORGES-D'ESPERANCHE", - "center": "POINT (814130.9737720016855747 2065866.5422075206879526)", - "surface": 24610000, - "canton": null, - "numero_insee": "38389" - } - }, - { - "pk": 29678, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-GERVAIS", - "center": "POINT (848405.5096814589342102 2026020.9256124966777861)", - "surface": 13280000, - "canton": null, - "numero_insee": "38390" - } - }, - { - "pk": 9204, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-GUILLAUME", - "center": "POINT (856844.2117961901240051 1999166.3294106617104262)", - "surface": 13480000, - "canton": null, - "numero_insee": "38391" - } - }, - { - "pk": 32129, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-HILAIRE-DE-BRENS", - "center": "POINT (830131.2626727835740894 2079316.2660154774785042)", - "surface": 7550000, - "canton": null, - "numero_insee": "38392" - } - }, - { - "pk": 32407, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-HILAIRE-DE-LA-COTE", - "center": "POINT (834306.5965990396216512 2047621.4310682080686092)", - "surface": 13650000, - "canton": null, - "numero_insee": "38393" - } - }, - { - "pk": 37474, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-HILAIRE-DU-ROSIER", - "center": "POINT (829287.2823829534463584 2014245.4647258289624006)", - "surface": 16340000, - "canton": null, - "numero_insee": "38394" - } - }, - { - "pk": 27263, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-HILAIRE", - "center": "POINT (877706.8848506906069815 2040887.0789585534948856)", - "surface": 8660000, - "canton": null, - "numero_insee": "38395" - } - }, - { - "pk": 30887, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-HONORE", - "center": "POINT (874843.9349185603205115 2001323.0015024307649583)", - "surface": 14600000, - "canton": null, - "numero_insee": "38396" - } - }, - { - "pk": 19052, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ISMIER", - "center": "POINT (874062.9029600233770907 2033948.9319294753950089)", - "surface": 14850000, - "canton": null, - "numero_insee": "38397" - } - }, - { - "pk": 13046, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JEAN-D'AVELANNE", - "center": "POINT (860209.7532719763694331 2061857.2783159122336656)", - "surface": 7830000, - "canton": null, - "numero_insee": "38398" - } - }, - { - "pk": 3502, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JEAN-DE-BOURNAY", - "center": "POINT (819593.1741914893500507 2059206.8094465562608093)", - "surface": 26780000, - "canton": null, - "numero_insee": "38399" - } - }, - { - "pk": 11684, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JEAN-DE-MOIRANS", - "center": "POINT (854769.7227012810762972 2042591.8467544866725802)", - "surface": 6460000, - "canton": null, - "numero_insee": "38400" - } - }, - { - "pk": 32843, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JEAN-DE-SOUDAIN", - "center": "POINT (841824.7314019351033494 2069707.2073976523242891)", - "surface": 7570000, - "canton": null, - "numero_insee": "38401" - } - }, - { - "pk": 31348, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JEAN-DE-VAULX", - "center": "POINT (869184.4802028441336006 2007580.7219520492944866)", - "surface": 10390000, - "canton": null, - "numero_insee": "38402" - } - }, - { - "pk": 18527, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JEAN-D'HERANS", - "center": "POINT (870039.9807044720510021 1989569.7970052899327129)", - "surface": 17640000, - "canton": null, - "numero_insee": "38403" - } - }, - { - "pk": 9991, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JEAN-LE-VIEUX", - "center": "POINT (878107.8893782503437251 2029178.9618528452701867)", - "surface": 4670000, - "canton": null, - "numero_insee": "38404" - } - }, - { - "pk": 36565, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JOSEPH-DE-RIVIERE", - "center": "POINT (862747.7551460026297718 2046063.6934891473501921)", - "surface": 17520000, - "canton": null, - "numero_insee": "38405" - } - }, - { - "pk": 30294, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JULIEN-DE-L'HERMS", - "center": "POINT (815054.1342009592335671 2051560.5885254342574626)", - "surface": 9270000, - "canton": null, - "numero_insee": "38406" - } - }, - { - "pk": 30228, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JULIEN-DE-RAZ", - "center": "POINT (860964.1782914409413934 2043946.3137109179515392)", - "surface": 10850000, - "canton": null, - "numero_insee": "38407" - } - }, - { - "pk": 29890, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JUST-CHALEYSSIN", - "center": "POINT (808101.6723309416556731 2068617.6706685314420611)", - "surface": 14030000, - "canton": null, - "numero_insee": "38408" - } - }, - { - "pk": 24951, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-JUST-DE-CLAIX", - "center": "POINT (831702.3734019468538463 2012764.6469872449524701)", - "surface": 11620000, - "canton": null, - "numero_insee": "38409" - } - }, - { - "pk": 20492, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-LATTIER", - "center": "POINT (824181.6883523827418685 2014301.8467804971151054)", - "surface": 18100000, - "canton": null, - "numero_insee": "38410" - } - }, - { - "pk": 18324, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-LAURENT-EN-BEAUMONT", - "center": "POINT (877215.8198672335129231 1993235.1626137522980571)", - "surface": 13120000, - "canton": null, - "numero_insee": "38413" - } - }, - { - "pk": 37568, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINTE-LUCE", - "center": "POINT (882151.4547210418386385 1989673.9403760328423232)", - "surface": 8000000, - "canton": null, - "numero_insee": "38414" - } - }, - { - "pk": 5509, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARCEL-BEL-ACCUEIL", - "center": "POINT (826255.2594591025263071 2076080.0104798004031181)", - "surface": 18400000, - "canton": null, - "numero_insee": "38415" - } - }, - { - "pk": 27727, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARCELLIN", - "center": "POINT (834331.1266678161919117 2021395.7719107349403203)", - "surface": 7780000, - "canton": null, - "numero_insee": "38416" - } - }, - { - "pk": 3372, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINTE-MARIE-DU-MONT", - "center": "POINT (881219.7330735884606838 2051427.5936733218841255)", - "surface": 23850000, - "canton": null, - "numero_insee": "38418" - } - }, - { - "pk": 20553, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARTIN-DE-CLELLES", - "center": "POINT (858139.8705953361932188 1988166.2481008914764971)", - "surface": 14970000, - "canton": null, - "numero_insee": "38419" - } - }, - { - "pk": 15291, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARTIN-DE-VAULSERRE", - "center": "POINT (861325.3526516729034483 2060165.2143958185333759)", - "surface": 3950000, - "canton": null, - "numero_insee": "38420" - } - }, - { - "pk": 35269, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARTIN-D'HERES", - "center": "POINT (869432.5867792384233326 2025300.5916740053799003)", - "surface": 9470000, - "canton": null, - "numero_insee": "38421" - } - }, - { - "pk": 16281, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARTIN-D'URIAGE", - "center": "POINT (876758.2528127033729106 2023161.3827112037688494)", - "surface": 35460000, - "canton": null, - "numero_insee": "38422" - } - }, - { - "pk": 25181, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MARTIN-LE-VINOUX", - "center": "POINT (865288.3894226283300668 2029969.6491107167676091)", - "surface": 9920000, - "canton": null, - "numero_insee": "38423" - } - }, - { - "pk": 33730, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MAURICE-EN-TRIEVES", - "center": "POINT (862625.7147946226177737 1978695.0178131787106395)", - "surface": 13010000, - "canton": null, - "numero_insee": "38424" - } - }, - { - "pk": 10720, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MAURICE-L'EXIL", - "center": "POINT (791074.3892767506185919 2046450.8776094750501215)", - "surface": 13430000, - "canton": null, - "numero_insee": "38425" - } - }, - { - "pk": 30227, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MAXIMIN", - "center": "POINT (890505.7153133072424680 2054110.0648293278645724)", - "surface": 10310000, - "canton": null, - "numero_insee": "38426" - } - }, - { - "pk": 10023, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MICHEL-DE-SAINT-GEOIRS", - "center": "POINT (836993.0210800704080611 2037834.8377279338892549)", - "surface": 7100000, - "canton": null, - "numero_insee": "38427" - } - }, - { - "pk": 12384, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MICHEL-EN-BEAUMONT", - "center": "POINT (882633.8441821809392422 1991780.2361961272545159)", - "surface": 7870000, - "canton": null, - "numero_insee": "38428" - } - }, - { - "pk": 16491, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MICHEL-LES-PORTES", - "center": "POINT (857121.7360769028309733 1990159.5512724975124002)", - "surface": 21320000, - "canton": null, - "numero_insee": "38429" - } - }, - { - "pk": 24906, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-MURY-MONTEYMOND", - "center": "POINT (882410.9794849802274257 2029316.0811267448589206)", - "surface": 10830000, - "canton": null, - "numero_insee": "38430" - } - }, - { - "pk": 36003, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-NAZAIRE-LES-EYMES", - "center": "POINT (875857.6640780941816047 2034765.1568434725049883)", - "surface": 8740000, - "canton": null, - "numero_insee": "38431" - } - }, - { - "pk": 29112, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-NICOLAS-DE-MACHERIN", - "center": "POINT (856603.5574810425750911 2050515.3258903350215405)", - "surface": 10640000, - "canton": null, - "numero_insee": "38432" - } - }, - { - "pk": 15603, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-NIZIER-DU-MOUCHEROTTE", - "center": "POINT (859035.8962093987502158 2023709.7796490336768329)", - "surface": 11360000, - "canton": null, - "numero_insee": "38433" - } - }, - { - "pk": 30128, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ONDRAS", - "center": "POINT (850795.3379292330937460 2062477.1267321610357612)", - "surface": 8150000, - "canton": null, - "numero_insee": "38434" - } - }, - { - "pk": 29047, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PAUL-DE-VARCES", - "center": "POINT (859432.4388521036598831 2012501.9792387511115521)", - "surface": 19890000, - "canton": null, - "numero_insee": "38436" - } - }, - { - "pk": 28101, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PAUL-D'IZEAUX", - "center": "POINT (842683.6251086498377845 2039585.2981326407752931)", - "surface": 7710000, - "canton": null, - "numero_insee": "38437" - } - }, - { - "pk": 18001, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PAUL-LES-MONESTIER", - "center": "POINT (858763.1876283140154555 1997180.7741183477919549)", - "surface": 13840000, - "canton": null, - "numero_insee": "38438" - } - }, - { - "pk": 4807, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PIERRE-D'ALLEVARD", - "center": "POINT (890471.1312124477699399 2046502.3367709759622812)", - "surface": 26620000, - "canton": null, - "numero_insee": "38439" - } - }, - { - "pk": 15740, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PIERRE-DE-BRESSIEUX", - "center": "POINT (832388.8286311936099082 2037795.3827374908141792)", - "surface": 23220000, - "canton": null, - "numero_insee": "38440" - } - }, - { - "pk": 4297, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PIERRE-DE-CHARTREUSE", - "center": "POINT (871285.5721176883671433 2042633.6308350907638669)", - "surface": 79580000, - "canton": null, - "numero_insee": "38442" - } - }, - { - "pk": 36831, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PIERRE-DE-CHERENNES", - "center": "POINT (839865.3812011152040213 2018039.8091751167085022)", - "surface": 11910000, - "canton": null, - "numero_insee": "38443" - } - }, - { - "pk": 28839, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PIERRE-DE-MEAROZ", - "center": "POINT (875224.2562620181124657 1992016.8132211060728878)", - "surface": 4640000, - "canton": null, - "numero_insee": "38444" - } - }, - { - "pk": 14159, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PIERRE-DE-MESAGE", - "center": "POINT (870055.2112854071892798 2011091.7314357708673924)", - "surface": 7030000, - "canton": null, - "numero_insee": "38445" - } - }, - { - "pk": 28352, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PIERRE-D'ENTREMONT", - "center": "POINT (875135.7485974135342985 2048872.8145259204320610)", - "surface": 32390000, - "canton": null, - "numero_insee": "38446" - } - }, - { - "pk": 37818, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-PRIM", - "center": "POINT (792725.5050258722621948 2052370.7262034749146551)", - "surface": 7280000, - "canton": null, - "numero_insee": "38448" - } - }, - { - "pk": 27311, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-QUENTIN-FALLAVIER", - "center": "POINT (816056.5352212694706395 2074791.5596035355702043)", - "surface": 23570000, - "canton": null, - "numero_insee": "38449" - } - }, - { - "pk": 18396, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-QUENTIN-SUR-ISERE", - "center": "POINT (851924.6422661601100117 2035860.8301618513651192)", - "surface": 19600000, - "canton": null, - "numero_insee": "38450" - } - }, - { - "pk": 4618, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ROMAIN-DE-JALIONAS", - "center": "POINT (824555.2866234241519123 2087576.3959063047077507)", - "surface": 13670000, - "canton": null, - "numero_insee": "38451" - } - }, - { - "pk": 33434, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ROMAIN-DE-SURIEU", - "center": "POINT (799883.2011641371063888 2046426.0093849957920611)", - "surface": 4780000, - "canton": null, - "numero_insee": "38452" - } - }, - { - "pk": 32531, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-ROMANS", - "center": "POINT (834677.7181948445504531 2015993.3461231580004096)", - "surface": 17080000, - "canton": null, - "numero_insee": "38453" - } - }, - { - "pk": 25281, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-SAUVEUR", - "center": "POINT (836540.0213116758968681 2020613.9029393808450550)", - "surface": 9320000, - "canton": null, - "numero_insee": "38454" - } - }, - { - "pk": 19093, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-SAVIN", - "center": "POINT (832680.6336623583920300 2073832.8523193558212370)", - "surface": 24730000, - "canton": null, - "numero_insee": "38455" - } - }, - { - "pk": 34418, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-SEBASTIEN", - "center": "POINT (874148.1709999772720039 1989104.5988562572747469)", - "surface": 20910000, - "canton": null, - "numero_insee": "38456" - } - }, - { - "pk": 34500, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-SIMEON-DE-BRESSIEUX", - "center": "POINT (829363.8042107523651794 2040372.0267326242756099)", - "surface": 18770000, - "canton": null, - "numero_insee": "38457" - } - }, - { - "pk": 7669, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-SORLIN-DE-MORESTEL", - "center": "POINT (844480.7675424077315256 2075135.1674375850707293)", - "surface": 5470000, - "canton": null, - "numero_insee": "38458" - } - }, - { - "pk": 37073, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-SORLIN-DE-VIENNE", - "center": "POINT (803406.0488193510100245 2055865.2666459372267127)", - "surface": 9930000, - "canton": null, - "numero_insee": "38459" - } - }, - { - "pk": 38033, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-SULPICE-DES-RIVOIRES", - "center": "POINT (855445.8504462122218683 2057111.8125095344148576)", - "surface": 7120000, - "canton": null, - "numero_insee": "38460" - } - }, - { - "pk": 34888, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-THEOFFREY", - "center": "POINT (871210.4400262152776122 2004795.3074770392850041)", - "surface": 7520000, - "canton": null, - "numero_insee": "38462" - } - }, - { - "pk": 35908, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-VERAND", - "center": "POINT (836304.6663543201284483 2024715.9707011368591338)", - "surface": 17660000, - "canton": null, - "numero_insee": "38463" - } - }, - { - "pk": 32841, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-VICTOR-DE-CESSIEU", - "center": "POINT (837864.9397877268493176 2064568.3440330135636032)", - "surface": 12190000, - "canton": null, - "numero_insee": "38464" - } - }, - { - "pk": 27045, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-VICTOR-DE-MORESTEL", - "center": "POINT (846115.2936585161369294 2082956.6332586270291358)", - "surface": 13200000, - "canton": null, - "numero_insee": "38465" - } - }, - { - "pk": 9454, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAINT-VINCENT-DE-MERCUZE", - "center": "POINT (883651.1866319321561605 2048045.1929438419174403)", - "surface": 7780000, - "canton": null, - "numero_insee": "38466" - } - }, - { - "pk": 27840, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SALAGNON", - "center": "POINT (835241.7565945384558290 2078659.3900030443910509)", - "surface": 8280000, - "canton": null, - "numero_insee": "38467" - } - }, - { - "pk": 24668, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SALAISE-SUR-SANNE", - "center": "POINT (793722.0370542909950018 2041168.2936110761947930)", - "surface": 16180000, - "canton": null, - "numero_insee": "38468" - } - }, - { - "pk": 33098, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA SALETTE-FALLAVAUX", - "center": "POINT (888462.5995726861292496 1989127.6375761586241424)", - "surface": 22430000, - "canton": null, - "numero_insee": "38469" - } - }, - { - "pk": 35685, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA SALLE-EN-BEAUMONT", - "center": "POINT (878540.2928201782051474 1990543.7974086049944162)", - "surface": 9250000, - "canton": null, - "numero_insee": "38470" - } - }, - { - "pk": 32189, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE SAPPEY-EN-CHARTREUSE", - "center": "POINT (870447.5629478818736970 2035319.2338245881255716)", - "surface": 15020000, - "canton": null, - "numero_insee": "38471" - } - }, - { - "pk": 25938, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SARCENAS", - "center": "POINT (868527.7610591086558998 2037404.8057881512213498)", - "surface": 7910000, - "canton": null, - "numero_insee": "38472" - } - }, - { - "pk": 20452, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SARDIEU", - "center": "POINT (825929.0007443821523339 2044046.2415293923113495)", - "surface": 11180000, - "canton": null, - "numero_insee": "38473" - } - }, - { - "pk": 11768, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SASSENAGE", - "center": "POINT (860391.6281873182160780 2029026.6923616251442581)", - "surface": 13280000, - "canton": null, - "numero_insee": "38474" - } - }, - { - "pk": 9261, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SATOLAS-ET-BONCE", - "center": "POINT (817216.4838116522878408 2079606.0681294847745448)", - "surface": 16760000, - "canton": null, - "numero_insee": "38475" - } - }, - { - "pk": 25808, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SAVAS-MEPIN", - "center": "POINT (812990.6915516320150346 2058749.9302360345609486)", - "surface": 10420000, - "canton": null, - "numero_insee": "38476" - } - }, - { - "pk": 8922, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SECHILIENNE", - "center": "POINT (875034.9128758457954973 2014037.4559386884793639)", - "surface": 20340000, - "canton": null, - "numero_insee": "38478" - } - }, - { - "pk": 27732, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SEMONS", - "center": "POINT (823859.4902048881631345 2051936.2399182140361518)", - "surface": 10590000, - "canton": null, - "numero_insee": "38479" - } - }, - { - "pk": 3878, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SEPTEME", - "center": "POINT (806737.2234941481146961 2064301.8659919546917081)", - "surface": 21710000, - "canton": null, - "numero_insee": "38480" - } - }, - { - "pk": 3975, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SEREZIN-DE-LA-TOUR", - "center": "POINT (834449.0426964205689728 2066040.5122019618283957)", - "surface": 9430000, - "canton": null, - "numero_insee": "38481" - } - }, - { - "pk": 26186, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SERMERIEU", - "center": "POINT (839345.3678444845136255 2078694.5679894785862416)", - "surface": 17270000, - "canton": null, - "numero_insee": "38483" - } - }, - { - "pk": 26893, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SERPAIZE", - "center": "POINT (801624.9819182925857604 2065159.0380208715796471)", - "surface": 11380000, - "canton": null, - "numero_insee": "38484" - } - }, - { - "pk": 32567, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SEYSSINET-PARISET", - "center": "POINT (861930.8339934722753242 2024635.5384094095788896)", - "surface": 10760000, - "canton": null, - "numero_insee": "38485" - } - }, - { - "pk": 29215, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SEYSSINS", - "center": "POINT (862548.5824257764033973 2022638.8515912340953946)", - "surface": 7980000, - "canton": null, - "numero_insee": "38486" - } - }, - { - "pk": 9697, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SEYSSUEL", - "center": "POINT (795718.0198225043714046 2065308.7670204632449895)", - "surface": 9650000, - "canton": null, - "numero_insee": "38487" - } - }, - { - "pk": 26023, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SICCIEU-SAINT-JULIEN-ET-CARISIEU", - "center": "POINT (831780.4457023118156940 2085436.1991767513100058)", - "surface": 14260000, - "canton": null, - "numero_insee": "38488" - } - }, - { - "pk": 7138, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SIEVOZ", - "center": "POINT (877496.3050114089855924 1995539.9179995413869619)", - "surface": 7390000, - "canton": null, - "numero_insee": "38489" - } - }, - { - "pk": 37696, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SILLANS", - "center": "POINT (839348.8726065647788346 2043260.3403772306628525)", - "surface": 12920000, - "canton": null, - "numero_insee": "38490" - } - }, - { - "pk": 29427, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SOLEYMIEU", - "center": "POINT (835308.3882964095100760 2082563.6771795197855681)", - "surface": 13410000, - "canton": null, - "numero_insee": "38494" - } - }, - { - "pk": 12739, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA SONE", - "center": "POINT (831664.6458031594520435 2017168.7320363302715123)", - "surface": 3060000, - "canton": null, - "numero_insee": "38495" - } - }, - { - "pk": 4232, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SONNAY", - "center": "POINT (802115.9811157942749560 2042841.5635185190476477)", - "surface": 14110000, - "canton": null, - "numero_insee": "38496" - } - }, - { - "pk": 7699, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SOUSVILLE", - "center": "POINT (873989.5592539957724512 1995910.1717534586787224)", - "surface": 2950000, - "canton": null, - "numero_insee": "38497" - } - }, - { - "pk": 5485, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SUCCIEU", - "center": "POINT (834773.3275876346742734 2063240.5898272017948329)", - "surface": 8390000, - "canton": null, - "numero_insee": "38498" - } - }, - { - "pk": 4697, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "SUSVILLE", - "center": "POINT (870371.5378087717108428 1997580.7996910177171230)", - "surface": 10050000, - "canton": null, - "numero_insee": "38499" - } - }, - { - "pk": 35921, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TECHE", - "center": "POINT (838811.2594420679379255 2024236.9575560307130218)", - "surface": 5040000, - "canton": null, - "numero_insee": "38500" - } - }, - { - "pk": 5751, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TENCIN", - "center": "POINT (883911.6665798241738230 2041040.5627706493251026)", - "surface": 6870000, - "canton": null, - "numero_insee": "38501" - } - }, - { - "pk": 31601, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA TERRASSE", - "center": "POINT (881796.8365030307322741 2042523.8392712580971420)", - "surface": 9010000, - "canton": null, - "numero_insee": "38503" - } - }, - { - "pk": 31712, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "THEYS", - "center": "POINT (888327.7358184589538723 2039677.1967659885995090)", - "surface": 36030000, - "canton": null, - "numero_insee": "38504" - } - }, - { - "pk": 10783, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "THODURE", - "center": "POINT (820968.1596257549244910 2038898.7642166265286505)", - "surface": 14490000, - "canton": null, - "numero_insee": "38505" - } - }, - { - "pk": 26595, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TIGNIEU-JAMEYZIEU", - "center": "POINT (821469.7143100076355040 2085548.0816135725472122)", - "surface": 13350000, - "canton": null, - "numero_insee": "38507" - } - }, - { - "pk": 13467, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TORCHEFELON", - "center": "POINT (839486.1030813110992312 2062280.0208376909140497)", - "surface": 8790000, - "canton": null, - "numero_insee": "38508" - } - }, - { - "pk": 35091, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA TOUR-DU-PIN", - "center": "POINT (842537.3699714574031532 2068311.9723482914268970)", - "surface": 4800000, - "canton": null, - "numero_insee": "38509" - } - }, - { - "pk": 32674, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE TOUVET", - "center": "POINT (882772.7669420802267268 2045435.0852544358931482)", - "surface": 11810000, - "canton": null, - "numero_insee": "38511" - } - }, - { - "pk": 6443, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TRAMOLE", - "center": "POINT (828984.4416764574125409 2061289.1547071561217308)", - "surface": 7030000, - "canton": null, - "numero_insee": "38512" - } - }, - { - "pk": 29409, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TREFFORT", - "center": "POINT (862589.1204574594739825 1994610.9849478695541620)", - "surface": 12780000, - "canton": null, - "numero_insee": "38513" - } - }, - { - "pk": 19838, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TREMINIS", - "center": "POINT (872158.0277725234627724 1976074.1348049885127693)", - "surface": 49400000, - "canton": null, - "numero_insee": "38514" - } - }, - { - "pk": 26818, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TREPT", - "center": "POINT (832620.5983444519806653 2080839.0243917184416205)", - "surface": 15790000, - "canton": null, - "numero_insee": "38515" - } - }, - { - "pk": 29330, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA TRONCHE", - "center": "POINT (867598.2422037601936609 2029088.6042377753183246)", - "surface": 6450000, - "canton": null, - "numero_insee": "38516" - } - }, - { - "pk": 20973, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "TULLINS", - "center": "POINT (847305.8443225279916078 2037522.8753498252481222)", - "surface": 29250000, - "canton": null, - "numero_insee": "38517" - } - }, - { - "pk": 31913, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VALBONNAIS", - "center": "POINT (882205.9085432512219995 1994979.8176458438392729)", - "surface": 24270000, - "canton": null, - "numero_insee": "38518" - } - }, - { - "pk": 12860, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VALENCIN", - "center": "POINT (809882.7282720932271332 2071035.2045998766552657)", - "surface": 9580000, - "canton": null, - "numero_insee": "38519" - } - }, - { - "pk": 12241, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VALENCOGNE", - "center": "POINT (849619.1737062803003937 2059564.2258650199510157)", - "surface": 7660000, - "canton": null, - "numero_insee": "38520" - } - }, - { - "pk": 11578, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA VALETTE", - "center": "POINT (877458.4292561495676637 1999944.0640992661938071)", - "surface": 7900000, - "canton": null, - "numero_insee": "38521" - } - }, - { - "pk": 21363, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VALJOUFFREY", - "center": "POINT (895729.8685181098990142 1993794.9126808936707675)", - "surface": 126440000, - "canton": null, - "numero_insee": "38522" - } - }, - { - "pk": 3101, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VARACIEUX", - "center": "POINT (835961.5004088107962161 2029717.9941656759474427)", - "surface": 18540000, - "canton": null, - "numero_insee": "38523" - } - }, - { - "pk": 12304, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VASSELIN", - "center": "POINT (842784.4158428059890866 2074520.0431654204148799)", - "surface": 3860000, - "canton": null, - "numero_insee": "38525" - } - }, - { - "pk": 37546, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VATILIEU", - "center": "POINT (841333.8433473523473367 2033567.8074250456411391)", - "surface": 9270000, - "canton": null, - "numero_insee": "38526" - } - }, - { - "pk": 22573, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VAUJANY", - "center": "POINT (895838.8152295805048198 2027629.9016680277418345)", - "surface": 74320000, - "canton": null, - "numero_insee": "38527" - } - }, - { - "pk": 36239, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VAULNAVEYS-LE-BAS", - "center": "POINT (873508.5614103188272566 2016927.2407939592376351)", - "surface": 11870000, - "canton": null, - "numero_insee": "38528" - } - }, - { - "pk": 32082, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VAULNAVEYS-LE-HAUT", - "center": "POINT (875594.1562630869448185 2018847.0761140892282128)", - "surface": 16580000, - "canton": null, - "numero_insee": "38529" - } - }, - { - "pk": 30016, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VAULX-MILIEU", - "center": "POINT (822183.3447803002782166 2072341.6027789418585598)", - "surface": 9020000, - "canton": null, - "numero_insee": "38530" - } - }, - { - "pk": 6550, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VELANNE", - "center": "POINT (858627.2333108156453818 2059641.5558096021413803)", - "surface": 8120000, - "canton": null, - "numero_insee": "38531" - } - }, - { - "pk": 31899, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VENERIEU", - "center": "POINT (829045.7273038539569825 2077505.2488740060944110)", - "surface": 5900000, - "canton": null, - "numero_insee": "38532" - } - }, - { - "pk": 12377, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VENON", - "center": "POINT (873036.7650423175655305 2025231.4745606642682105)", - "surface": 4310000, - "canton": null, - "numero_insee": "38533" - } - }, - { - "pk": 33999, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VENOSC", - "center": "POINT (897443.6159976299386472 2004020.0407441738061607)", - "surface": 39880000, - "canton": null, - "numero_insee": "38534" - } - }, - { - "pk": 13002, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VERNAS", - "center": "POINT (827833.3083227016031742 2090507.2140440947841853)", - "surface": 5840000, - "canton": null, - "numero_insee": "38535" - } - }, - { - "pk": 32839, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VERNIOZ", - "center": "POINT (800445.2608593937475234 2050935.2021529499907047)", - "surface": 11220000, - "canton": null, - "numero_insee": "38536" - } - }, - { - "pk": 6772, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LA VERPILLIERE", - "center": "POINT (819260.2184341270476580 2074718.8797012344002724)", - "surface": 6690000, - "canton": null, - "numero_insee": "38537" - } - }, - { - "pk": 28235, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "LE VERSOUD", - "center": "POINT (876592.7377878581173718 2030767.5178162450902164)", - "surface": 6100000, - "canton": null, - "numero_insee": "38538" - } - }, - { - "pk": 24248, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VERTRIEU", - "center": "POINT (835048.7376033551990986 2101179.0165898301638663)", - "surface": 4550000, - "canton": null, - "numero_insee": "38539" - } - }, - { - "pk": 3425, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VEUREY-VOROIZE", - "center": "POINT (856234.5846284885192290 2035197.1346284227911383)", - "surface": 12450000, - "canton": null, - "numero_insee": "38540" - } - }, - { - "pk": 12401, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VEYRINS-THUELLIN", - "center": "POINT (848886.3733442658558488 2074972.7734161238186061)", - "surface": 11760000, - "canton": null, - "numero_insee": "38541" - } - }, - { - "pk": 28558, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VEYSSILIEU", - "center": "POINT (825223.5216919869417325 2079674.6114274831488729)", - "surface": 6580000, - "canton": null, - "numero_insee": "38542" - } - }, - { - "pk": 35966, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VEZERONCE-CURTIN", - "center": "POINT (844159.8981627466855571 2077534.7104255496524274)", - "surface": 14590000, - "canton": null, - "numero_insee": "38543" - } - }, - { - "pk": 15225, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VIENNE", - "center": "POINT (798757.4580569366225973 2061030.5813773905392736)", - "surface": 22590000, - "canton": null, - "numero_insee": "38544" - } - }, - { - "pk": 27074, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VIF", - "center": "POINT (862955.4715478874277323 2010229.9234349825419486)", - "surface": 27310000, - "canton": null, - "numero_insee": "38545" - } - }, - { - "pk": 35229, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VIGNIEU", - "center": "POINT (840479.8078949148766696 2074800.5670446697622538)", - "surface": 9440000, - "canton": null, - "numero_insee": "38546" - } - }, - { - "pk": 11208, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLARD-BONNOT", - "center": "POINT (878872.4622666293289512 2033389.7024833990726620)", - "surface": 5990000, - "canton": null, - "numero_insee": "38547" - } - }, - { - "pk": 18648, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLARD-DE-LANS", - "center": "POINT (852632.1224778859177604 2011742.8982898010872304)", - "surface": 66990000, - "canton": null, - "numero_insee": "38548" - } - }, - { - "pk": 24644, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLARD-NOTRE-DAME", - "center": "POINT (891406.0982883179094642 2007671.7810200473759323)", - "surface": 14140000, - "canton": null, - "numero_insee": "38549" - } - }, - { - "pk": 8183, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLARD-RECULAS", - "center": "POINT (891224.1264413401950151 2017179.7707278633024544)", - "surface": 4990000, - "canton": null, - "numero_insee": "38550" - } - }, - { - "pk": 23200, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLARD-REYMOND", - "center": "POINT (889285.1764321582159027 2009855.7390337267424911)", - "surface": 10930000, - "canton": null, - "numero_insee": "38551" - } - }, - { - "pk": 27075, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLARD-SAINT-CHRISTOPHE", - "center": "POINT (874617.0679686192888767 2004424.1893356600776315)", - "surface": 14320000, - "canton": null, - "numero_insee": "38552" - } - }, - { - "pk": 27568, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLEFONTAINE", - "center": "POINT (819783.7902294562663883 2072020.7749582978431135)", - "surface": 10330000, - "canton": null, - "numero_insee": "38553" - } - }, - { - "pk": 7320, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLEMOIRIEU", - "center": "POINT (825391.9845578431850299 2083379.5757755441591144)", - "surface": 13370000, - "canton": null, - "numero_insee": "38554" - } - }, - { - "pk": 36347, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLENEUVE-DE-MARC", - "center": "POINT (817225.2839168745558709 2055182.6662664744071662)", - "surface": 26280000, - "canton": null, - "numero_insee": "38555" - } - }, - { - "pk": 34864, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLE-SOUS-ANJOU", - "center": "POINT (797493.8550878568785265 2044904.1311950702220201)", - "surface": 18230000, - "canton": null, - "numero_insee": "38556" - } - }, - { - "pk": 36646, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLETTE-D'ANTHON", - "center": "POINT (815418.2187097856076434 2090901.4011419096495956)", - "surface": 22870000, - "canton": null, - "numero_insee": "38557" - } - }, - { - "pk": 7244, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VILLETTE-DE-VIENNE", - "center": "POINT (800894.4253465611254796 2068656.1625559097155929)", - "surface": 11060000, - "canton": null, - "numero_insee": "38558" - } - }, - { - "pk": 36996, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VINAY", - "center": "POINT (841177.4278921789955348 2028461.4161343688610941)", - "surface": 16010000, - "canton": null, - "numero_insee": "38559" - } - }, - { - "pk": 19390, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VIRIEU", - "center": "POINT (845536.1083276247372851 2057126.8668560392688960)", - "surface": 11380000, - "canton": null, - "numero_insee": "38560" - } - }, - { - "pk": 5177, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VIZILLE", - "center": "POINT (871029.4719169591553509 2014203.2209868780337274)", - "surface": 10790000, - "canton": null, - "numero_insee": "38562" - } - }, - { - "pk": 20666, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VOIRON", - "center": "POINT (854128.7958447672426701 2047290.9521783806849271)", - "surface": 21990000, - "canton": null, - "numero_insee": "38563" - } - }, - { - "pk": 29162, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VOISSANT", - "center": "POINT (863239.0923535987967625 2058780.2970753458794206)", - "surface": 3920000, - "canton": null, - "numero_insee": "38564" - } - }, - { - "pk": 21437, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VOREPPE", - "center": "POINT (859317.6478192055365071 2037525.8772392135579139)", - "surface": 29070000, - "canton": null, - "numero_insee": "38565" - } - }, - { - "pk": 30086, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "VOUREY", - "center": "POINT (849685.7030258084414527 2040145.8539016670547426)", - "surface": 6850000, - "canton": null, - "numero_insee": "38566" - } - }, - { - "pk": 8138, - "model": "ishtar_common.town", - "fields": { - "departement": 39, - "name": "CHAMROUSSE", - "center": "POINT (879892.9741967199370265 2019484.6501069043297321)", - "surface": 12240000, - "canton": null, - "numero_insee": "38567" - } - }, - { - "pk": 35622, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ABERGEMENT-LA-RONCE", - "center": "POINT (830908.7676680670119822 2233861.1162454332225025)", - "surface": 7090000, - "canton": null, - "numero_insee": "39001" - } - }, - { - "pk": 7712, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ABERGEMENT-LE-GRAND", - "center": "POINT (854464.1535696255741641 2218049.7631771177984774)", - "surface": 4170000, - "canton": null, - "numero_insee": "39002" - } - }, - { - "pk": 10193, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ABERGEMENT-LE-PETIT", - "center": "POINT (855872.1165797018911690 2217261.1784654352813959)", - "surface": 1600000, - "canton": null, - "numero_insee": "39003" - } - }, - { - "pk": 21939, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ABERGEMENT-LES-THESY", - "center": "POINT (874773.8626999924890697 2218924.9701328855007887)", - "surface": 4590000, - "canton": null, - "numero_insee": "39004" - } - }, - { - "pk": 22962, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ALIEZE", - "center": "POINT (848875.7466014132369310 2181170.0184302311390638)", - "surface": 5820000, - "canton": null, - "numero_insee": "39007" - } - }, - { - "pk": 29975, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AMANGE", - "center": "POINT (844617.9351067730458453 2245788.5177282844670117)", - "surface": 6720000, - "canton": null, - "numero_insee": "39008" - } - }, - { - "pk": 10823, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ANDELOT-EN-MONTAGNE", - "center": "POINT (873725.5379198121372610 2212810.7561108814552426)", - "surface": 12630000, - "canton": null, - "numero_insee": "39009" - } - }, - { - "pk": 33346, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ANDELOT-MORVAL", - "center": "POINT (837423.4825102186296135 2162755.5885857334360480)", - "surface": 10340000, - "canton": null, - "numero_insee": "39010" - } - }, - { - "pk": 4013, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ANNOIRE", - "center": "POINT (823706.0768699300242588 2221789.3114604307338595)", - "surface": 15630000, - "canton": null, - "numero_insee": "39011" - } - }, - { - "pk": 16103, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ARBOIS", - "center": "POINT (861686.9381461758166552 2216110.1247595539316535)", - "surface": 45450000, - "canton": null, - "numero_insee": "39013" - } - }, - { - "pk": 12726, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ARCHELANGE", - "center": "POINT (841334.3400432638591155 2243558.5176554899662733)", - "surface": 4930000, - "canton": null, - "numero_insee": "39014" - } - }, - { - "pk": 36229, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ARDON", - "center": "POINT (870306.3092599266674370 2203073.0245121917687356)", - "surface": 5110000, - "canton": null, - "numero_insee": "39015" - } - }, - { - "pk": 14558, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ARINTHOD", - "center": "POINT (849952.5981783602619544 2160661.1227631159126759)", - "surface": 20040000, - "canton": null, - "numero_insee": "39016" - } - }, - { - "pk": 20707, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ARLAY", - "center": "POINT (843696.5462222329806536 2201543.2974044140428305)", - "surface": 14160000, - "canton": null, - "numero_insee": "39017" - } - }, - { - "pk": 7990, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AROMAS", - "center": "POINT (842750.5083947611274198 2148488.4616408105939627)", - "surface": 18960000, - "canton": null, - "numero_insee": "39018" - } - }, - { - "pk": 30217, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES ARSURES", - "center": "POINT (862330.7057204844895750 2222721.2560817804187536)", - "surface": 4450000, - "canton": null, - "numero_insee": "39019" - } - }, - { - "pk": 24464, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ARTHENAS", - "center": "POINT (844585.1745752315036952 2179631.8780187633819878)", - "surface": 6830000, - "canton": null, - "numero_insee": "39021" - } - }, - { - "pk": 26895, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ASNANS-BEAUVOISIN", - "center": "POINT (832931.1924820045242086 2219766.5909367534331977)", - "surface": 16310000, - "canton": null, - "numero_insee": "39022" - } - }, - { - "pk": 5882, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "L'AUBEPIN", - "center": "POINT (833607.5092490620445460 2164224.2073632967658341)", - "surface": 5690000, - "canton": null, - "numero_insee": "39023" - } - }, - { - "pk": 35263, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUDELANGE", - "center": "POINT (846244.0533547226805240 2242900.0735393194481730)", - "surface": 4660000, - "canton": null, - "numero_insee": "39024" - } - }, - { - "pk": 25411, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUGEA", - "center": "POINT (833989.5192944072186947 2178039.6831947662867606)", - "surface": 7610000, - "canton": null, - "numero_insee": "39025" - } - }, - { - "pk": 12284, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUGERANS", - "center": "POINT (846753.4586977711878717 2230193.8501402474939823)", - "surface": 8000000, - "canton": null, - "numero_insee": "39026" - } - }, - { - "pk": 35108, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUGISEY", - "center": "POINT (842100.3356008055852726 2177608.8007748671807349)", - "surface": 9290000, - "canton": null, - "numero_insee": "39027" - } - }, - { - "pk": 25932, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUMONT", - "center": "POINT (850960.5816402337513864 2218119.7582533448003232)", - "surface": 8150000, - "canton": null, - "numero_insee": "39028" - } - }, - { - "pk": 15218, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUMUR", - "center": "POINT (827810.6926875718636438 2233334.1452914872206748)", - "surface": 9170000, - "canton": null, - "numero_insee": "39029" - } - }, - { - "pk": 17857, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUTHUME", - "center": "POINT (840556.0600639272015542 2240949.6827208721078932)", - "surface": 7650000, - "canton": null, - "numero_insee": "39030" - } - }, - { - "pk": 25172, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AUXANGE", - "center": "POINT (851411.0260050452779979 2247247.9977849423885345)", - "surface": 4960000, - "canton": null, - "numero_insee": "39031" - } - }, - { - "pk": 25431, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "AVIGNON-LES-SAINT-CLAUDE", - "center": "POINT (869361.6040009588468820 2161628.5960600054822862)", - "surface": 7760000, - "canton": null, - "numero_insee": "39032" - } - }, - { - "pk": 8134, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BALAISEAUX", - "center": "POINT (837704.8618295213673264 2223310.4846256575547159)", - "surface": 6070000, - "canton": null, - "numero_insee": "39034" - } - }, - { - "pk": 12518, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BALANOD", - "center": "POINT (831489.4988047134829685 2166107.7417141217738390)", - "surface": 4880000, - "canton": null, - "numero_insee": "39035" - } - }, - { - "pk": 27149, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA BALME-D'EPY", - "center": "POINT (836866.7576764852274209 2157646.2626027544029057)", - "surface": 3000000, - "canton": null, - "numero_insee": "39036" - } - }, - { - "pk": 9933, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BANS", - "center": "POINT (846794.6937666675075889 2225390.1667595310136676)", - "surface": 4150000, - "canton": null, - "numero_insee": "39037" - } - }, - { - "pk": 27204, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BARESIA-SUR-L'AIN", - "center": "POINT (858120.9689638598356396 2176845.5467781671322882)", - "surface": 11120000, - "canton": null, - "numero_insee": "39038" - } - }, - { - "pk": 13384, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA BARRE", - "center": "POINT (854332.1213619917398319 2245071.2682951590977609)", - "surface": 3300000, - "canton": null, - "numero_insee": "39039" - } - }, - { - "pk": 37919, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BARRETAINE", - "center": "POINT (857964.8156571889994666 2206670.1085264738649130)", - "surface": 9140000, - "canton": null, - "numero_insee": "39040" - } - }, - { - "pk": 18956, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BAUME-LES-MESSIEURS", - "center": "POINT (852863.0156821180135012 2194716.0235766945406795)", - "surface": 13210000, - "canton": null, - "numero_insee": "39041" - } - }, - { - "pk": 10695, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BAVERANS", - "center": "POINT (842775.7600395681802183 2238866.9825123897753656)", - "surface": 3420000, - "canton": null, - "numero_insee": "39042" - } - }, - { - "pk": 14983, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BEAUFORT", - "center": "POINT (836968.7638806647155434 2180767.5973040866665542)", - "surface": 13190000, - "canton": null, - "numero_insee": "39043" - } - }, - { - "pk": 9706, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BEFFIA", - "center": "POINT (846225.1119881107006222 2175141.9921106654219329)", - "surface": 5200000, - "canton": null, - "numero_insee": "39045" - } - }, - { - "pk": 26932, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BELLECOMBE", - "center": "POINT (875052.2936923593515530 2151668.5768749495036900)", - "surface": 12210000, - "canton": null, - "numero_insee": "39046" - } - }, - { - "pk": 37893, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BELLEFONTAINE", - "center": "POINT (887021.8803373433183879 2179696.4482573163695633)", - "surface": 24280000, - "canton": null, - "numero_insee": "39047" - } - }, - { - "pk": 27597, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BELMONT", - "center": "POINT (848252.0294087879592553 2230506.9666578075848520)", - "surface": 15970000, - "canton": null, - "numero_insee": "39048" - } - }, - { - "pk": 15282, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BERSAILLIN", - "center": "POINT (848315.1932870368473232 2211491.4272482777014375)", - "surface": 14010000, - "canton": null, - "numero_insee": "39049" - } - }, - { - "pk": 20323, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BESAIN", - "center": "POINT (863991.0277040620567277 2204219.7522939513437450)", - "surface": 13010000, - "canton": null, - "numero_insee": "39050" - } - }, - { - "pk": 13786, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BIARNE", - "center": "POINT (836134.7054656981490552 2243013.4991259551607072)", - "surface": 6230000, - "canton": null, - "numero_insee": "39051" - } - }, - { - "pk": 22566, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BIEF-DES-MAISONS", - "center": "POINT (883778.9088675411185250 2195982.7540100431069732)", - "surface": 5750000, - "canton": null, - "numero_insee": "39052" - } - }, - { - "pk": 37389, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BIEF-DU-FOURG", - "center": "POINT (888269.6084031683858484 2209132.7275625304318964)", - "surface": 10140000, - "canton": null, - "numero_insee": "39053" - } - }, - { - "pk": 34225, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BIEFMORIN", - "center": "POINT (843169.1368024226976559 2216351.4331376282498240)", - "surface": 11390000, - "canton": null, - "numero_insee": "39054" - } - }, - { - "pk": 31095, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BILLECUL", - "center": "POINT (884038.6395030370913446 2200689.0573412110097706)", - "surface": 4310000, - "canton": null, - "numero_insee": "39055" - } - }, - { - "pk": 8020, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BLOIS-SUR-SEILLE", - "center": "POINT (854624.0420911774272099 2199435.2135855234228075)", - "surface": 5390000, - "canton": null, - "numero_insee": "39057" - } - }, - { - "pk": 25539, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BLYE", - "center": "POINT (857138.5666284490143880 2186345.4386175996623933)", - "surface": 10860000, - "canton": null, - "numero_insee": "39058" - } - }, - { - "pk": 37451, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BOIS-DE-GAND", - "center": "POINT (841241.4240340859396383 2207727.5567963859066367)", - "surface": 3300000, - "canton": null, - "numero_insee": "39060" - } - }, - { - "pk": 26540, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BOISSIA", - "center": "POINT (859284.9611468818038702 2181159.3272828874178231)", - "surface": 5860000, - "canton": null, - "numero_insee": "39061" - } - }, - { - "pk": 27150, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA BOISSIERE", - "center": "POINT (844730.3061602439265698 2162718.1754386322572827)", - "surface": 5340000, - "canton": null, - "numero_insee": "39062" - } - }, - { - "pk": 19040, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BONLIEU", - "center": "POINT (869574.3028040053322911 2183449.7049916717223823)", - "surface": 13050000, - "canton": null, - "numero_insee": "39063" - } - }, - { - "pk": 36230, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BONNEFONTAINE", - "center": "POINT (860540.7404219381278381 2198084.8372160485014319)", - "surface": 8850000, - "canton": null, - "numero_insee": "39065" - } - }, - { - "pk": 28791, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BORNAY", - "center": "POINT (846248.7496691674459726 2184050.0101781813427806)", - "surface": 6700000, - "canton": null, - "numero_insee": "39066" - } - }, - { - "pk": 19726, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES BOUCHOUX", - "center": "POINT (867062.0309322080574930 2149698.1470029628835618)", - "surface": 21550000, - "canton": null, - "numero_insee": "39068" - } - }, - { - "pk": 25900, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BOURCIA", - "center": "POINT (835895.1108534198720008 2154234.8859596573747694)", - "surface": 10940000, - "canton": null, - "numero_insee": "39069" - } - }, - { - "pk": 19477, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BOURG-DE-SIROD", - "center": "POINT (876450.7289866505889222 2198521.9194360566325486)", - "surface": 4400000, - "canton": null, - "numero_insee": "39070" - } - }, - { - "pk": 37618, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BRACON", - "center": "POINT (868759.7454792903736234 2219974.1638714973814785)", - "surface": 6390000, - "canton": null, - "numero_insee": "39072" - } - }, - { - "pk": 32689, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BRAINANS", - "center": "POINT (850799.9564623073674738 2213514.4667205661535263)", - "surface": 7030000, - "canton": null, - "numero_insee": "39073" - } - }, - { - "pk": 32690, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BRANS", - "center": "POINT (845064.1957510026404634 2252097.5436863196082413)", - "surface": 8720000, - "canton": null, - "numero_insee": "39074" - } - }, - { - "pk": 5637, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BRERY", - "center": "POINT (847585.0134375761263072 2203278.1328250477090478)", - "surface": 4890000, - "canton": null, - "numero_insee": "39075" - } - }, - { - "pk": 7769, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA BRETENIERE", - "center": "POINT (852357.2585508672054857 2241951.7343889325857162)", - "surface": 1610000, - "canton": null, - "numero_insee": "39076" - } - }, - { - "pk": 5797, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BRETENIERES", - "center": "POINT (843753.2851312501588836 2218258.0590548068284988)", - "surface": 4110000, - "canton": null, - "numero_insee": "39077" - } - }, - { - "pk": 10767, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BREVANS", - "center": "POINT (841780.1535703579429537 2238257.9397227251902223)", - "surface": 3660000, - "canton": null, - "numero_insee": "39078" - } - }, - { - "pk": 13252, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BRIOD", - "center": "POINT (851602.3742010968271643 2190001.1160139478743076)", - "surface": 4160000, - "canton": null, - "numero_insee": "39079" - } - }, - { - "pk": 12117, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BROISSIA", - "center": "POINT (838187.5643906095065176 2155355.5288081425242126)", - "surface": 3000000, - "canton": null, - "numero_insee": "39080" - } - }, - { - "pk": 6469, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "BUVILLY", - "center": "POINT (858207.4373304981272668 2213377.9231871562078595)", - "surface": 5990000, - "canton": null, - "numero_insee": "39081" - } - }, - { - "pk": 36458, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CENSEAU", - "center": "POINT (885271.5698988464428112 2208606.4732359438203275)", - "surface": 9830000, - "canton": null, - "numero_insee": "39083" - } - }, - { - "pk": 24760, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CERNANS", - "center": "POINT (874154.4523321896558627 2221121.5060350121930242)", - "surface": 5500000, - "canton": null, - "numero_insee": "39084" - } - }, - { - "pk": 28006, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CERNIEBAUD", - "center": "POINT (889450.6619693690445274 2199834.8982956642284989)", - "surface": 10380000, - "canton": null, - "numero_insee": "39085" - } - }, - { - "pk": 17706, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CERNON", - "center": "POINT (854143.1458516910206527 2162198.4413298047147691)", - "surface": 16930000, - "canton": null, - "numero_insee": "39086" - } - }, - { - "pk": 23808, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CESANCEY", - "center": "POINT (841535.5411501843482256 2185110.5300084450282156)", - "surface": 5200000, - "canton": null, - "numero_insee": "39088" - } - }, - { - "pk": 32633, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CEZIA", - "center": "POINT (849089.6603835558053106 2156249.7800076259300113)", - "surface": 3630000, - "canton": null, - "numero_insee": "39089" - } - }, - { - "pk": 24604, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAINEE-DES-COUPIS", - "center": "POINT (835847.1660828435560688 2218190.2372872084379196)", - "surface": 5200000, - "canton": null, - "numero_insee": "39090" - } - }, - { - "pk": 8511, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES CHALESMES", - "center": "POINT (881989.5454827763605863 2194566.1317173102870584)", - "surface": 9360000, - "canton": null, - "numero_insee": "39091" - } - }, - { - "pk": 6911, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMBERIA", - "center": "POINT (848185.0612326373811811 2168352.8014960964210331)", - "surface": 14670000, - "canton": null, - "numero_insee": "39092" - } - }, - { - "pk": 24784, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMBLAY", - "center": "POINT (855991.4539479871746153 2226670.1556298425421119)", - "surface": 13900000, - "canton": null, - "numero_insee": "39093" - } - }, - { - "pk": 25351, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMOLE", - "center": "POINT (859333.2337059066630900 2210485.1209381180815399)", - "surface": 5730000, - "canton": null, - "numero_insee": "39094" - } - }, - { - "pk": 24785, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMPAGNE-SUR-LOUE", - "center": "POINT (863555.1368376840837300 2231639.2775373114272952)", - "surface": 3770000, - "canton": null, - "numero_insee": "39095" - } - }, - { - "pk": 25177, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMPAGNEY", - "center": "POINT (839627.5281786143314093 2255854.0079970885999501)", - "surface": 15520000, - "canton": null, - "numero_insee": "39096" - } - }, - { - "pk": 18794, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMPAGNOLE", - "center": "POINT (872034.3363082823343575 2199985.2159147220663726)", - "surface": 20110000, - "canton": null, - "numero_insee": "39097" - } - }, - { - "pk": 32489, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMPDIVERS", - "center": "POINT (832063.6559905137401074 2227565.7350458609871566)", - "surface": 7770000, - "canton": null, - "numero_insee": "39099" - } - }, - { - "pk": 13161, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMPROUGIER", - "center": "POINT (841992.2480999784311280 2213538.9525311184115708)", - "surface": 8800000, - "canton": null, - "numero_insee": "39100" - } - }, - { - "pk": 37154, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAMPVANS", - "center": "POINT (833974.2327269943198189 2238190.9844227069988847)", - "surface": 14290000, - "canton": null, - "numero_insee": "39101" - } - }, - { - "pk": 8343, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHANCIA", - "center": "POINT (854306.8284766589058563 2154793.2275018184445798)", - "surface": 3140000, - "canton": null, - "numero_insee": "39102" - } - }, - { - "pk": 30766, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA CHAPELLE-SUR-FURIEUSE", - "center": "POINT (867698.7247115514473990 2226970.9555488871410489)", - "surface": 8980000, - "canton": null, - "numero_insee": "39103" - } - }, - { - "pk": 21660, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAPELLE-VOLAND", - "center": "POINT (832260.9753416865132749 2204547.8852722588926554)", - "surface": 30420000, - "canton": null, - "numero_insee": "39104" - } - }, - { - "pk": 26336, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAPOIS", - "center": "POINT (876751.9940304630436003 2210034.4065231229178607)", - "surface": 10060000, - "canton": null, - "numero_insee": "39105" - } - }, - { - "pk": 32486, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHARCHILLA", - "center": "POINT (859391.5885545358760282 2168749.3047126838937402)", - "surface": 6890000, - "canton": null, - "numero_insee": "39106" - } - }, - { - "pk": 25623, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHARCIER", - "center": "POINT (862240.0637498467694968 2186689.5361249269917607)", - "surface": 12950000, - "canton": null, - "numero_insee": "39107" - } - }, - { - "pk": 30554, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHARENCY", - "center": "POINT (879116.6814849765505642 2202748.4908462059684098)", - "surface": 2830000, - "canton": null, - "numero_insee": "39108" - } - }, - { - "pk": 15079, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAREZIER", - "center": "POINT (859552.5246062491787598 2184964.9549225890077651)", - "surface": 9290000, - "canton": null, - "numero_insee": "39109" - } - }, - { - "pk": 25783, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA CHARME", - "center": "POINT (844721.8330987177323550 2210359.6447249711491168)", - "surface": 3740000, - "canton": null, - "numero_insee": "39110" - } - }, - { - "pk": 34745, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHARNOD", - "center": "POINT (842908.6031940926332027 2153394.2272022669203579)", - "surface": 5090000, - "canton": null, - "numero_insee": "39111" - } - }, - { - "pk": 36074, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA CHASSAGNE", - "center": "POINT (837599.9822597804013640 2212200.1666217786259949)", - "surface": 5710000, - "canton": null, - "numero_insee": "39112" - } - }, - { - "pk": 37319, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHASSAL", - "center": "POINT (865198.5999787069158629 2156888.6003686054609716)", - "surface": 5220000, - "canton": null, - "numero_insee": "39113" - } - }, - { - "pk": 27514, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATEAU-CHALON", - "center": "POINT (852811.4482525871135294 2200720.7675773953087628)", - "surface": 10210000, - "canton": null, - "numero_insee": "39114" - } - }, - { - "pk": 31396, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATEAU-DES-PRES", - "center": "POINT (874262.3748348924564198 2173681.4077963125891984)", - "surface": 8650000, - "canton": null, - "numero_insee": "39115" - } - }, - { - "pk": 22658, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA CHATELAINE", - "center": "POINT (865822.8217649399302900 2212342.4412620672956109)", - "surface": 12980000, - "canton": null, - "numero_insee": "39116" - } - }, - { - "pk": 26639, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATELAY", - "center": "POINT (855227.2963790027424693 2234069.8028048612177372)", - "surface": 13210000, - "canton": null, - "numero_insee": "39117" - } - }, - { - "pk": 30983, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATEL-DE-JOUX", - "center": "POINT (866236.9691791529767215 2175814.3283979687839746)", - "surface": 14220000, - "canton": null, - "numero_insee": "39118" - } - }, - { - "pk": 12316, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE CHATELEY", - "center": "POINT (844392.3981891329167411 2213759.7182629858143628)", - "surface": 4750000, - "canton": null, - "numero_insee": "39119" - } - }, - { - "pk": 8692, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATELNEUF", - "center": "POINT (873510.3515870977425948 2191290.3724668943323195)", - "surface": 13160000, - "canton": null, - "numero_insee": "39120" - } - }, - { - "pk": 10923, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATENOIS", - "center": "POINT (843333.2736430248478428 2243875.9193200333975255)", - "surface": 8000000, - "canton": null, - "numero_insee": "39121" - } - }, - { - "pk": 21990, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATILLON", - "center": "POINT (859306.7882048246683553 2190267.4675271376036108)", - "surface": 16780000, - "canton": null, - "numero_insee": "39122" - } - }, - { - "pk": 8871, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHATONNAY", - "center": "POINT (846627.5644667788874358 2163234.9016677704639733)", - "surface": 2860000, - "canton": null, - "numero_insee": "39123" - } - }, - { - "pk": 7805, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAUMERGY", - "center": "POINT (839224.4068374959751964 2209511.7940857689827681)", - "surface": 6220000, - "canton": null, - "numero_insee": "39124" - } - }, - { - "pk": 8379, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA CHAUMUSSE", - "center": "POINT (876274.5094618997536600 2184107.8705098410136998)", - "surface": 10760000, - "canton": null, - "numero_insee": "39126" - } - }, - { - "pk": 25838, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAUSSENANS", - "center": "POINT (859952.6230253966059536 2208288.5608768989332020)", - "surface": 4310000, - "canton": null, - "numero_insee": "39127" - } - }, - { - "pk": 32907, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAUSSIN", - "center": "POINT (833196.2462805764516816 2223872.3287155688740313)", - "surface": 15940000, - "canton": null, - "numero_insee": "39128" - } - }, - { - "pk": 4996, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAUX-DES-CROTENAY", - "center": "POINT (876914.7810716314706951 2191119.4925439720973372)", - "surface": 11610000, - "canton": null, - "numero_insee": "39129" - } - }, - { - "pk": 27405, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAUX-DES-PRES", - "center": "POINT (870167.6627944812644273 2172645.3018138646148145)", - "surface": 7610000, - "canton": null, - "numero_insee": "39130" - } - }, - { - "pk": 25422, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA CHAUX-DU-DOMBIEF", - "center": "POINT (873366.1576578031526878 2184783.4593667169101536)", - "surface": 21600000, - "canton": null, - "numero_insee": "39131" - } - }, - { - "pk": 5467, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA CHAUX-EN-BRESSE", - "center": "POINT (839440.8736945316195488 2207612.0251540448516607)", - "surface": 2050000, - "canton": null, - "numero_insee": "39132" - } - }, - { - "pk": 24412, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAUX-CHAMPAGNY", - "center": "POINT (869901.0553279696032405 2215279.9862283435650170)", - "surface": 7490000, - "canton": null, - "numero_insee": "39133" - } - }, - { - "pk": 4102, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAVERIA", - "center": "POINT (847056.6805715328082442 2171545.9504012716934085)", - "surface": 10260000, - "canton": null, - "numero_insee": "39134" - } - }, - { - "pk": 3939, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHAZELLES", - "center": "POINT (830033.7316940509481356 2160790.5495045911520720)", - "surface": 4120000, - "canton": null, - "numero_insee": "39135" - } - }, - { - "pk": 31448, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHEMENOT", - "center": "POINT (843310.4350018327822909 2211548.5577076892368495)", - "surface": 4780000, - "canton": null, - "numero_insee": "39136" - } - }, - { - "pk": 31483, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHEMILLA", - "center": "POINT (847898.1224068367155269 2155138.5667458833195269)", - "surface": 1880000, - "canton": null, - "numero_insee": "39137" - } - }, - { - "pk": 36130, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHEMIN", - "center": "POINT (826290.0757736554369330 2223913.2215931890532374)", - "surface": 9230000, - "canton": null, - "numero_insee": "39138" - } - }, - { - "pk": 33646, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHENE-BERNARD", - "center": "POINT (839446.5204741298221052 2218621.4472088390029967)", - "surface": 3650000, - "canton": null, - "numero_insee": "39139" - } - }, - { - "pk": 33218, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHENE-SEC", - "center": "POINT (836818.2405937615549192 2209991.5842931107617915)", - "surface": 870000, - "canton": null, - "numero_insee": "39140" - } - }, - { - "pk": 35998, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHEVIGNY", - "center": "POINT (837705.8698698424268514 2246529.8716608895920217)", - "surface": 7830000, - "canton": null, - "numero_insee": "39141" - } - }, - { - "pk": 28995, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHEVREAUX", - "center": "POINT (836548.1706453962251544 2171455.8027469790540636)", - "surface": 6080000, - "canton": null, - "numero_insee": "39142" - } - }, - { - "pk": 27666, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHEVROTAINE", - "center": "POINT (869520.9387795736547559 2189654.6628831354901195)", - "surface": 5300000, - "canton": null, - "numero_insee": "39143" - } - }, - { - "pk": 13012, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHILLE", - "center": "POINT (847371.5401395135559142 2193167.5751827294006944)", - "surface": 1960000, - "canton": null, - "numero_insee": "39145" - } - }, - { - "pk": 10097, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHILLY-LE-VIGNOBLE", - "center": "POINT (841700.4994226046837866 2189215.5209840955212712)", - "surface": 3090000, - "canton": null, - "numero_insee": "39146" - } - }, - { - "pk": 29323, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHILLY-SUR-SALINS", - "center": "POINT (868312.7215595217421651 2213765.0469586686231196)", - "surface": 12000000, - "canton": null, - "numero_insee": "39147" - } - }, - { - "pk": 12803, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHISSERIA", - "center": "POINT (848374.4814843793865293 2157945.1635007532313466)", - "surface": 7330000, - "canton": null, - "numero_insee": "39148" - } - }, - { - "pk": 22019, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHISSEY-SUR-LOUE", - "center": "POINT (858426.2972376968245953 2234497.6232410245575011)", - "surface": 38690000, - "canton": null, - "numero_insee": "39149" - } - }, - { - "pk": 36459, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHOISEY", - "center": "POINT (836417.2519274215446785 2233407.9285503989085555)", - "surface": 8400000, - "canton": null, - "numero_insee": "39150" - } - }, - { - "pk": 11718, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CHOUX", - "center": "POINT (864353.7746234470978379 2150375.4975608140230179)", - "surface": 8200000, - "canton": null, - "numero_insee": "39151" - } - }, - { - "pk": 12833, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CIZE", - "center": "POINT (873758.9270738784689456 2197297.7186100161634386)", - "surface": 4170000, - "canton": null, - "numero_insee": "39153" - } - }, - { - "pk": 17279, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CLAIRVAUX-LES-LACS", - "center": "POINT (861901.6721477229148149 2179480.3203500993549824)", - "surface": 12300000, - "canton": null, - "numero_insee": "39154" - } - }, - { - "pk": 36456, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CLUCY", - "center": "POINT (872441.9445503030437976 2222407.8719609323889017)", - "surface": 5140000, - "canton": null, - "numero_insee": "39155" - } - }, - { - "pk": 11089, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COGNA", - "center": "POINT (863181.2132721141679212 2181993.5122302570380270)", - "surface": 6630000, - "canton": null, - "numero_insee": "39156" - } - }, - { - "pk": 12248, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COISERETTE", - "center": "POINT (868521.1059682311024517 2154615.1011437736451626)", - "surface": 5890000, - "canton": null, - "numero_insee": "39157" - } - }, - { - "pk": 33756, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COISIA", - "center": "POINT (849845.2195249486248940 2149850.5152273681014776)", - "surface": 7170000, - "canton": null, - "numero_insee": "39158" - } - }, - { - "pk": 29218, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COLONNE", - "center": "POINT (846393.9544414971023798 2213776.8967361557297409)", - "surface": 11140000, - "canton": null, - "numero_insee": "39159" - } - }, - { - "pk": 21469, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COMMENAILLES", - "center": "POINT (836558.3430671903770417 2205285.3310665786266327)", - "surface": 21760000, - "canton": null, - "numero_insee": "39160" - } - }, - { - "pk": 9791, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COMMUNAILLES-EN-MONTAGNE", - "center": "POINT (886588.1053851908072829 2206816.2685929825529456)", - "surface": 4110000, - "canton": null, - "numero_insee": "39161" - } - }, - { - "pk": 28070, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CONDAMINE", - "center": "POINT (837007.0528054126771167 2187974.2193282698281109)", - "surface": 3630000, - "canton": null, - "numero_insee": "39162" - } - }, - { - "pk": 13752, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CONDES", - "center": "POINT (852519.9546996350400150 2153076.3573183030821383)", - "surface": 3540000, - "canton": null, - "numero_insee": "39163" - } - }, - { - "pk": 10131, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CONLIEGE", - "center": "POINT (850512.6683737678686157 2188690.6275537312030792)", - "surface": 6120000, - "canton": null, - "numero_insee": "39164" - } - }, - { - "pk": 37150, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CONTE", - "center": "POINT (880333.9964681192068383 2200857.3315777424722910)", - "surface": 3310000, - "canton": null, - "numero_insee": "39165" - } - }, - { - "pk": 34900, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CORNOD", - "center": "POINT (847239.6332621100591496 2150228.5116914571262896)", - "surface": 14090000, - "canton": null, - "numero_insee": "39166" - } - }, - { - "pk": 26834, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COSGES", - "center": "POINT (833313.2381424850318581 2198551.7410042337141931)", - "surface": 13600000, - "canton": null, - "numero_insee": "39167" - } - }, - { - "pk": 30820, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COURBETTE", - "center": "POINT (847562.6762016504071653 2182559.9743877849541605)", - "surface": 2640000, - "canton": null, - "numero_insee": "39168" - } - }, - { - "pk": 3553, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COURBOUZON", - "center": "POINT (844208.5031489479588345 2188536.4298733249306679)", - "surface": 3240000, - "canton": null, - "numero_insee": "39169" - } - }, - { - "pk": 33779, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COURLANS", - "center": "POINT (840884.4085013166768476 2191010.0857686307281256)", - "surface": 6120000, - "canton": null, - "numero_insee": "39170" - } - }, - { - "pk": 12049, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COURLAOUX", - "center": "POINT (838089.0476085951086134 2190185.4134802147746086)", - "surface": 12530000, - "canton": null, - "numero_insee": "39171" - } - }, - { - "pk": 5806, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COURTEFONTAINE", - "center": "POINT (862058.5759864371502772 2242735.6747546200640500)", - "surface": 13730000, - "canton": null, - "numero_insee": "39172" - } - }, - { - "pk": 11148, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COUSANCE", - "center": "POINT (833116.2471767303068191 2174829.3809344950132072)", - "surface": 6510000, - "canton": null, - "numero_insee": "39173" - } - }, - { - "pk": 8610, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COYRIERE", - "center": "POINT (869919.6776473601348698 2154927.3967336090281606)", - "surface": 4080000, - "canton": null, - "numero_insee": "39174" - } - }, - { - "pk": 30634, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "COYRON", - "center": "POINT (857849.0998065788298845 2173540.3008072976954281)", - "surface": 7450000, - "canton": null, - "numero_insee": "39175" - } - }, - { - "pk": 4928, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CRAMANS", - "center": "POINT (862279.0903089116327465 2228725.8722270792350173)", - "surface": 8140000, - "canton": null, - "numero_insee": "39176" - } - }, - { - "pk": 30406, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CRANCOT", - "center": "POINT (854779.9950507385656238 2192930.9258868456818163)", - "surface": 14620000, - "canton": null, - "numero_insee": "39177" - } - }, - { - "pk": 32254, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CRANS", - "center": "POINT (878585.1237075645476580 2194736.9975822414271533)", - "surface": 9100000, - "canton": null, - "numero_insee": "39178" - } - }, - { - "pk": 35995, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CRENANS", - "center": "POINT (861394.9346630934160203 2168566.3413497800938785)", - "surface": 8760000, - "canton": null, - "numero_insee": "39179" - } - }, - { - "pk": 36055, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CRESSIA", - "center": "POINT (841327.1636736938962713 2174399.3498137989081442)", - "surface": 14970000, - "canton": null, - "numero_insee": "39180" - } - }, - { - "pk": 12013, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CRISSEY", - "center": "POINT (838626.6560847427463159 2232526.1256661256775260)", - "surface": 4680000, - "canton": null, - "numero_insee": "39182" - } - }, - { - "pk": 29105, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CROTENAY", - "center": "POINT (865521.4616729549597949 2200829.9813141203485429)", - "surface": 11970000, - "canton": null, - "numero_insee": "39183" - } - }, - { - "pk": 10950, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES CROZETS", - "center": "POINT (866200.5589912538416684 2168407.4693694892339408)", - "surface": 7700000, - "canton": null, - "numero_insee": "39184" - } - }, - { - "pk": 10232, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CUISIA", - "center": "POINT (835205.0726224151439965 2176348.6091722170822322)", - "surface": 10270000, - "canton": null, - "numero_insee": "39185" - } - }, - { - "pk": 26083, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CUTTURA", - "center": "POINT (867644.7232282659970224 2163415.4388443809002638)", - "surface": 6010000, - "canton": null, - "numero_insee": "39186" - } - }, - { - "pk": 8844, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "CUVIER", - "center": "POINT (884349.3172801821492612 2211100.6712179854512215)", - "surface": 10510000, - "canton": null, - "numero_insee": "39187" - } - }, - { - "pk": 13189, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DAMMARTIN-MARPAIN", - "center": "POINT (843435.5143361609661952 2255286.1920859236270189)", - "surface": 11360000, - "canton": null, - "numero_insee": "39188" - } - }, - { - "pk": 34579, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DAMPARIS", - "center": "POINT (833104.4385923460358754 2234580.5243365489877760)", - "surface": 8880000, - "canton": null, - "numero_insee": "39189" - } - }, - { - "pk": 27201, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DAMPIERRE", - "center": "POINT (858026.3121925715822726 2246103.8360372497700155)", - "surface": 7110000, - "canton": null, - "numero_insee": "39190" - } - }, - { - "pk": 12225, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DARBONNAY", - "center": "POINT (849446.1241122809005901 2207998.1436083973385394)", - "surface": 4440000, - "canton": null, - "numero_insee": "39191" - } - }, - { - "pk": 28227, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DENEZIERES", - "center": "POINT (865145.8234139098785818 2186314.1638818541541696)", - "surface": 6450000, - "canton": null, - "numero_insee": "39192" - } - }, - { - "pk": 8896, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE DESCHAUX", - "center": "POINT (840622.5509907179512084 2221533.9916835324838758)", - "surface": 8670000, - "canton": null, - "numero_insee": "39193" - } - }, - { - "pk": 24264, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DESNES", - "center": "POINT (839095.4991854494437575 2201203.5661243675276637)", - "surface": 9280000, - "canton": null, - "numero_insee": "39194" - } - }, - { - "pk": 14160, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DESSIA", - "center": "POINT (843763.8358354313531891 2158706.3131832233630121)", - "surface": 4570000, - "canton": null, - "numero_insee": "39195" - } - }, - { - "pk": 25639, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES DEUX-FAYS", - "center": "POINT (839984.6821336796274409 2214222.3254045890644193)", - "surface": 6820000, - "canton": null, - "numero_insee": "39196" - } - }, - { - "pk": 28520, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DIGNA", - "center": "POINT (833831.3976505525643006 2173134.0120702846907079)", - "surface": 3380000, - "canton": null, - "numero_insee": "39197" - } - }, - { - "pk": 19779, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DOLE", - "center": "POINT (840202.9791140140732750 2235442.0728355636820197)", - "surface": 38100000, - "canton": null, - "numero_insee": "39198" - } - }, - { - "pk": 1503, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DOMBLANS", - "center": "POINT (848406.2614821684546769 2200883.1163149154745042)", - "surface": 9850000, - "canton": null, - "numero_insee": "39199" - } - }, - { - "pk": 4396, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DOMPIERRE-SUR-MONT", - "center": "POINT (851098.1364774003159255 2178786.9906509453430772)", - "surface": 7300000, - "canton": null, - "numero_insee": "39200" - } - }, - { - "pk": 17230, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DOUCIER", - "center": "POINT (863321.1575839152792469 2189000.8347979481332004)", - "surface": 12550000, - "canton": null, - "numero_insee": "39201" - } - }, - { - "pk": 36672, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DOURNON", - "center": "POINT (876557.1694245658582076 2221042.0987116200849414)", - "surface": 6550000, - "canton": null, - "numero_insee": "39202" - } - }, - { - "pk": 33167, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DOYE", - "center": "POINT (880716.2182516178581864 2202962.4331346959806979)", - "surface": 3660000, - "canton": null, - "numero_insee": "39203" - } - }, - { - "pk": 25631, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "DRAMELAY", - "center": "POINT (845446.3367181068751961 2160922.7145530451089144)", - "surface": 6680000, - "canton": null, - "numero_insee": "39204" - } - }, - { - "pk": 22942, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ECLANS-NENON", - "center": "POINT (848480.0849135732278228 2238915.9456300442107022)", - "surface": 25960000, - "canton": null, - "numero_insee": "39205" - } - }, - { - "pk": 28882, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ECLEUX", - "center": "POINT (858489.0752883219392970 2227192.0365065811201930)", - "surface": 6200000, - "canton": null, - "numero_insee": "39206" - } - }, - { - "pk": 10560, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ECRILLE", - "center": "POINT (852956.3067414037650451 2172197.1280930563807487)", - "surface": 5260000, - "canton": null, - "numero_insee": "39207" - } - }, - { - "pk": 33102, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VAL-D'EPY", - "center": "POINT (834867.6897983194794506 2157328.8550015082582831)", - "surface": 8630000, - "canton": null, - "numero_insee": "39209" - } - }, - { - "pk": 25640, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "EQUEVILLON", - "center": "POINT (875220.4999905517324805 2201914.2684717699885368)", - "surface": 4790000, - "canton": null, - "numero_insee": "39210" - } - }, - { - "pk": 11963, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES ESSARDS-TAIGNEVAUX", - "center": "POINT (834464.1016747078392655 2216076.5951173612847924)", - "surface": 5490000, - "canton": null, - "numero_insee": "39211" - } - }, - { - "pk": 31821, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ESSERVAL-COMBE", - "center": "POINT (882887.7880158920306712 2206484.1417358140461147)", - "surface": 1750000, - "canton": null, - "numero_insee": "39213" - } - }, - { - "pk": 8318, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ESSERVAL-TARTRE", - "center": "POINT (881756.7650634390302002 2209977.4042970333248377)", - "surface": 12050000, - "canton": null, - "numero_insee": "39214" - } - }, - { - "pk": 35642, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ESSIA", - "center": "POINT (846075.2154017870780081 2180945.8056137110106647)", - "surface": 4880000, - "canton": null, - "numero_insee": "39215" - } - }, - { - "pk": 26988, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ETIVAL", - "center": "POINT (865273.1563607273856178 2171502.2439998323097825)", - "surface": 14020000, - "canton": null, - "numero_insee": "39216" - } - }, - { - "pk": 24084, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "L'ETOILE", - "center": "POINT (844348.5470415551681072 2195543.7111733099445701)", - "surface": 5990000, - "canton": null, - "numero_insee": "39217" - } - }, - { - "pk": 36637, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ETREPIGNEY", - "center": "POINT (853776.3701045933412388 2239862.1780100897885859)", - "surface": 15630000, - "canton": null, - "numero_insee": "39218" - } - }, - { - "pk": 12832, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "EVANS", - "center": "POINT (859712.9712226734263822 2247819.7366873151622713)", - "surface": 9930000, - "canton": null, - "numero_insee": "39219" - } - }, - { - "pk": 29325, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FALLETANS", - "center": "POINT (845199.9140631059417501 2236285.6200995384715497)", - "surface": 24710000, - "canton": null, - "numero_insee": "39220" - } - }, - { - "pk": 9578, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA FAVIERE", - "center": "POINT (882535.7322398575488478 2200876.2881207689642906)", - "surface": 2750000, - "canton": null, - "numero_insee": "39221" - } - }, - { - "pk": 32488, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FAY-EN-MONTAGNE", - "center": "POINT (858119.0661901766434312 2200366.0144407632760704)", - "surface": 6310000, - "canton": null, - "numero_insee": "39222" - } - }, - { - "pk": 36227, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA FERTE", - "center": "POINT (852238.3834611552301794 2220833.0201888759620488)", - "surface": 11830000, - "canton": null, - "numero_insee": "39223" - } - }, - { - "pk": 11572, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FETIGNY", - "center": "POINT (850814.6703771899919957 2165172.5330439424142241)", - "surface": 3420000, - "canton": null, - "numero_insee": "39224" - } - }, - { - "pk": 15512, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE FIED", - "center": "POINT (857999.2104475093074143 2202666.9666991489939392)", - "surface": 8400000, - "canton": null, - "numero_insee": "39225" - } - }, - { - "pk": 25433, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FLORENTIA", - "center": "POINT (837049.7587081047240645 2159649.6192946010269225)", - "surface": 3130000, - "canton": null, - "numero_insee": "39226" - } - }, - { - "pk": 33390, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FONCINE-LE-BAS", - "center": "POINT (882646.8956258650869131 2187966.0456946943886578)", - "surface": 9140000, - "canton": null, - "numero_insee": "39227" - } - }, - { - "pk": 35630, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FONTAINEBRUX", - "center": "POINT (837062.5045415569329634 2193179.2155789653770626)", - "surface": 6730000, - "canton": null, - "numero_insee": "39229" - } - }, - { - "pk": 32042, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FORT-DU-PLASNE", - "center": "POINT (879054.3569481621962041 2186734.0696541909128428)", - "surface": 13070000, - "canton": null, - "numero_insee": "39232" - } - }, - { - "pk": 10442, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FOUCHERANS", - "center": "POINT (835791.0472610117867589 2236405.0638900320045650)", - "surface": 7730000, - "canton": null, - "numero_insee": "39233" - } - }, - { - "pk": 33711, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FOULENAY", - "center": "POINT (840007.8618019145214930 2211520.2228859551250935)", - "surface": 4200000, - "canton": null, - "numero_insee": "39234" - } - }, - { - "pk": 32041, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FRAISANS", - "center": "POINT (859365.1350653542904183 2241711.6934083448722959)", - "surface": 16760000, - "canton": null, - "numero_insee": "39235" - } - }, - { - "pk": 8937, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FRANCHEVILLE", - "center": "POINT (841331.1991162589984015 2208929.3540747971273959)", - "surface": 1470000, - "canton": null, - "numero_insee": "39236" - } - }, - { - "pk": 34192, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FRAROZ", - "center": "POINT (887356.7619980094023049 2198916.0809504967182875)", - "surface": 6160000, - "canton": null, - "numero_insee": "39237" - } - }, - { - "pk": 11205, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FRASNE-LES-MEULIERES", - "center": "POINT (839887.7784103984013200 2248850.4876772901043296)", - "surface": 4850000, - "canton": null, - "numero_insee": "39238" - } - }, - { - "pk": 7771, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA FRASNEE", - "center": "POINT (865507.1508924211375415 2179211.0476098386570811)", - "surface": 3400000, - "canton": null, - "numero_insee": "39239" - } - }, - { - "pk": 28767, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE FRASNOIS", - "center": "POINT (871938.3484395840205252 2187873.8858425887301564)", - "surface": 14700000, - "canton": null, - "numero_insee": "39240" - } - }, - { - "pk": 22102, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FREBUANS", - "center": "POINT (840810.0843636762583628 2188006.8372110384516418)", - "surface": 2750000, - "canton": null, - "numero_insee": "39241" - } - }, - { - "pk": 10729, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FROIDEVILLE", - "center": "POINT (839955.0008747479878366 2206015.0641161720268428)", - "surface": 3090000, - "canton": null, - "numero_insee": "39243" - } - }, - { - "pk": 36062, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "FRONTENAY", - "center": "POINT (851482.9237301294924691 2203912.1139570460654795)", - "surface": 8140000, - "canton": null, - "numero_insee": "39244" - } - }, - { - "pk": 13513, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GATEY", - "center": "POINT (837326.0116144297644496 2220805.1223410367965698)", - "surface": 14980000, - "canton": null, - "numero_insee": "39245" - } - }, - { - "pk": 30651, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GENDREY", - "center": "POINT (853594.6288948510773480 2249368.4865135457366705)", - "surface": 14060000, - "canton": null, - "numero_insee": "39246" - } - }, - { - "pk": 11304, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GENOD", - "center": "POINT (845591.0765079052653164 2155719.3060237495228648)", - "surface": 3190000, - "canton": null, - "numero_insee": "39247" - } - }, - { - "pk": 5716, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GERAISE", - "center": "POINT (875232.0492362811928615 2223833.0641932184807956)", - "surface": 6100000, - "canton": null, - "numero_insee": "39248" - } - }, - { - "pk": 37388, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GERMIGNEY", - "center": "POINT (854445.5989145815838128 2231861.2453446644358337)", - "surface": 5450000, - "canton": null, - "numero_insee": "39249" - } - }, - { - "pk": 6966, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GERUGE", - "center": "POINT (844535.3649916648864746 2185436.5302626057527959)", - "surface": 4350000, - "canton": null, - "numero_insee": "39250" - } - }, - { - "pk": 6747, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GEVINGEY", - "center": "POINT (842821.9839811397250742 2186823.0509797446429729)", - "surface": 5760000, - "canton": null, - "numero_insee": "39251" - } - }, - { - "pk": 31228, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GEVRY", - "center": "POINT (836139.3376546767540276 2230803.3678946956060827)", - "surface": 5620000, - "canton": null, - "numero_insee": "39252" - } - }, - { - "pk": 22794, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GIGNY", - "center": "POINT (840695.2746638457756490 2166386.8498669355176389)", - "surface": 16020000, - "canton": null, - "numero_insee": "39253" - } - }, - { - "pk": 31715, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GILLOIS", - "center": "POINT (882253.5916664176620543 2198772.0442704679444432)", - "surface": 9770000, - "canton": null, - "numero_insee": "39254" - } - }, - { - "pk": 34689, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GIZIA", - "center": "POINT (836824.3849277796689421 2174260.6433698171749711)", - "surface": 7410000, - "canton": null, - "numero_insee": "39255" - } - }, - { - "pk": 23983, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GRANDE-RIVIERE", - "center": "POINT (873836.2207288937643170 2176680.3891558437608182)", - "surface": 30750000, - "canton": null, - "numero_insee": "39258" - } - }, - { - "pk": 35744, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GRANGE-DE-VAIVRE", - "center": "POINT (866490.0572445953730494 2227861.3193428348749876)", - "surface": 1740000, - "canton": null, - "numero_insee": "39259" - } - }, - { - "pk": 6315, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GRANGES-SUR-BAUME", - "center": "POINT (854551.4699698899639770 2196231.8240036899223924)", - "surface": 7910000, - "canton": null, - "numero_insee": "39260" - } - }, - { - "pk": 36867, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GRAYE-ET-CHARNAY", - "center": "POINT (838876.6425204649567604 2168373.0261130495928228)", - "surface": 6260000, - "canton": null, - "numero_insee": "39261" - } - }, - { - "pk": 9792, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GREDISANS", - "center": "POINT (841120.4503617316950113 2245158.0074047176167369)", - "surface": 2340000, - "canton": null, - "numero_insee": "39262" - } - }, - { - "pk": 26034, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GROZON", - "center": "POINT (855388.0630159963620827 2215355.4046343043446541)", - "surface": 14040000, - "canton": null, - "numero_insee": "39263" - } - }, - { - "pk": 25781, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "GRUSSE", - "center": "POINT (842161.7792930600699037 2182113.2778245653025806)", - "surface": 3260000, - "canton": null, - "numero_insee": "39264" - } - }, - { - "pk": 35584, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "HAUTECOUR", - "center": "POINT (864105.1634223151486367 2179299.0835355310700834)", - "surface": 5190000, - "canton": null, - "numero_insee": "39265" - } - }, - { - "pk": 34637, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES HAYS", - "center": "POINT (832558.3374149675946683 2216560.6807951056398451)", - "surface": 6810000, - "canton": null, - "numero_insee": "39266" - } - }, - { - "pk": 26139, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "IVORY", - "center": "POINT (867485.4190828967839479 2216860.5720133525319397)", - "surface": 9270000, - "canton": null, - "numero_insee": "39267" - } - }, - { - "pk": 13113, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "IVREY", - "center": "POINT (870699.3085412150248885 2227196.9330088119022548)", - "surface": 6830000, - "canton": null, - "numero_insee": "39268" - } - }, - { - "pk": 27739, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "JEURRE", - "center": "POINT (858986.6241091260453686 2157635.9339006277732551)", - "surface": 7180000, - "canton": null, - "numero_insee": "39269" - } - }, - { - "pk": 36460, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "JOUHE", - "center": "POINT (838740.9617935739224777 2242535.4391624052077532)", - "surface": 6000000, - "canton": null, - "numero_insee": "39270" - } - }, - { - "pk": 25352, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAC-DES-ROUGES-TRUITES", - "center": "POINT (881276.7949911418836564 2184351.1013672268018126)", - "surface": 19580000, - "canton": null, - "numero_insee": "39271" - } - }, - { - "pk": 12549, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LADOYE-SUR-SEILLE", - "center": "POINT (855504.9801252952311188 2201744.7638913467526436)", - "surface": 3730000, - "canton": null, - "numero_insee": "39272" - } - }, - { - "pk": 27893, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAINS", - "center": "POINT (842258.3126500956714153 2159193.8440475286915898)", - "surface": 9760000, - "canton": null, - "numero_insee": "39273" - } - }, - { - "pk": 34458, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAJOUX", - "center": "POINT (882277.3364866308402270 2161139.1892917575314641)", - "surface": 23680000, - "canton": null, - "numero_insee": "39274" - } - }, - { - "pk": 4523, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAMOURA", - "center": "POINT (880260.1913681563455611 2162923.4322204580530524)", - "surface": 22330000, - "canton": null, - "numero_insee": "39275" - } - }, - { - "pk": 11762, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE LARDERET", - "center": "POINT (875265.4619060811819509 2208320.1573132481426001)", - "surface": 6150000, - "canton": null, - "numero_insee": "39277" - } - }, - { - "pk": 10441, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LARGILLAY-MARSONNAY", - "center": "POINT (855106.5145816305885091 2178220.8846119316294789)", - "surface": 7530000, - "canton": null, - "numero_insee": "39278" - } - }, - { - "pk": 23662, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LARNAUD", - "center": "POINT (838350.6613879257347435 2194691.5631241709925234)", - "surface": 10630000, - "canton": null, - "numero_insee": "39279" - } - }, - { - "pk": 12513, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LARRIVOIRE", - "center": "POINT (865619.5767299584113061 2154490.0660892408341169)", - "surface": 6420000, - "canton": null, - "numero_insee": "39280" - } - }, - { - "pk": 24413, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE LATET", - "center": "POINT (874979.8670950005762279 2206616.2413388090208173)", - "surface": 4320000, - "canton": null, - "numero_insee": "39281" - } - }, - { - "pk": 33830, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAVANCIA-EPERCY", - "center": "POINT (857617.2836268685059622 2153920.8524185665883124)", - "surface": 10780000, - "canton": null, - "numero_insee": "39283" - } - }, - { - "pk": 34107, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAVANGEOT", - "center": "POINT (847935.0277024079114199 2244115.5849689482711256)", - "surface": 2360000, - "canton": null, - "numero_insee": "39284" - } - }, - { - "pk": 19600, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAVANS-LES-DOLE", - "center": "POINT (849931.3811758457450196 2244733.2231357251293957)", - "surface": 10410000, - "canton": null, - "numero_insee": "39285" - } - }, - { - "pk": 18788, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAVANS-LES-SAINT-CLAUDE", - "center": "POINT (864469.6362124998122454 2160185.2875751820392907)", - "surface": 11790000, - "canton": null, - "numero_insee": "39286" - } - }, - { - "pk": 35616, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAVANS-SUR-VALOUSE", - "center": "POINT (849011.0546583076938987 2153746.8627990605309606)", - "surface": 9460000, - "canton": null, - "numero_insee": "39287" - } - }, - { - "pk": 10440, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LAVIGNY", - "center": "POINT (849750.2470438994932920 2195890.3352158586494625)", - "surface": 5430000, - "canton": null, - "numero_insee": "39288" - } - }, - { - "pk": 29474, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LECT", - "center": "POINT (856461.3602268290705979 2160316.6557053802534938)", - "surface": 13800000, - "canton": null, - "numero_insee": "39289" - } - }, - { - "pk": 38049, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LEGNA", - "center": "POINT (851229.6038690580753610 2163474.5824660765938461)", - "surface": 10320000, - "canton": null, - "numero_insee": "39290" - } - }, - { - "pk": 16632, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LEMUY", - "center": "POINT (877698.5069670053198934 2216347.9305646219290793)", - "surface": 21350000, - "canton": null, - "numero_insee": "39291" - } - }, - { - "pk": 21193, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LENT", - "center": "POINT (877831.1627426473423839 2200935.8734569130465388)", - "surface": 4160000, - "canton": null, - "numero_insee": "39292" - } - }, - { - "pk": 13386, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LESCHERES", - "center": "POINT (868204.7675703542772681 2168124.4349361006170511)", - "surface": 8200000, - "canton": null, - "numero_insee": "39293" - } - }, - { - "pk": 8133, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LEZAT", - "center": "POINT (876867.9248463110998273 2173303.4733828757889569)", - "surface": 5850000, - "canton": null, - "numero_insee": "39294" - } - }, - { - "pk": 7328, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LOISIA", - "center": "POINT (839856.8537948223529384 2170783.5582669693976641)", - "surface": 11460000, - "canton": null, - "numero_insee": "39295" - } - }, - { - "pk": 31653, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LOMBARD", - "center": "POINT (841882.2493636527797207 2203029.0212474884465337)", - "surface": 5190000, - "canton": null, - "numero_insee": "39296" - } - }, - { - "pk": 20935, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LONGCHAUMOIS", - "center": "POINT (878406.1776533250231296 2169012.9025595346465707)", - "surface": 57680000, - "canton": null, - "numero_insee": "39297" - } - }, - { - "pk": 34909, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LONGCOCHON", - "center": "POINT (885315.5304958670167252 2203502.4690562118776143)", - "surface": 3620000, - "canton": null, - "numero_insee": "39298" - } - }, - { - "pk": 35513, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LONGWY-SUR-LE-DOUBS", - "center": "POINT (829502.8321013842942193 2222739.7402442833408713)", - "surface": 17220000, - "canton": null, - "numero_insee": "39299" - } - }, - { - "pk": 36972, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LONS-LE-SAUNIER", - "center": "POINT (846288.7044905264629051 2191056.4572465466335416)", - "surface": 7620000, - "canton": null, - "numero_insee": "39300" - } - }, - { - "pk": 17278, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LOULLE", - "center": "POINT (871071.4245619638822973 2195573.1261168685741723)", - "surface": 10860000, - "canton": null, - "numero_insee": "39301" - } - }, - { - "pk": 10693, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LOUVATANGE", - "center": "POINT (856301.8153502997010946 2248791.2490506540052593)", - "surface": 3290000, - "canton": null, - "numero_insee": "39302" - } - }, - { - "pk": 30671, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LOUVENNE", - "center": "POINT (841316.3672013429459184 2163990.0440018060617149)", - "surface": 7910000, - "canton": null, - "numero_insee": "39303" - } - }, - { - "pk": 6518, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE LOUVEROT", - "center": "POINT (847934.2171783377416432 2197576.2158074015751481)", - "surface": 1750000, - "canton": null, - "numero_insee": "39304" - } - }, - { - "pk": 37773, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA LOYE", - "center": "POINT (844348.1860253447666764 2230573.5408620242960751)", - "surface": 19080000, - "canton": null, - "numero_insee": "39305" - } - }, - { - "pk": 30452, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MACORNAY", - "center": "POINT (845519.8463523199316114 2187346.6369862318970263)", - "surface": 4710000, - "canton": null, - "numero_insee": "39306" - } - }, - { - "pk": 10321, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MAISOD", - "center": "POINT (857580.6679399539716542 2169834.7218105592764914)", - "surface": 10360000, - "canton": null, - "numero_insee": "39307" - } - }, - { - "pk": 35992, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MALANGE", - "center": "POINT (848303.5381868481636047 2247821.8092326899059117)", - "surface": 8460000, - "canton": null, - "numero_insee": "39308" - } - }, - { - "pk": 9869, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MALLEREY", - "center": "POINT (838127.6712891096249223 2185681.8232687404379249)", - "surface": 2940000, - "canton": null, - "numero_insee": "39309" - } - }, - { - "pk": 22210, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MANTRY", - "center": "POINT (845573.1340039949864149 2204461.8959479276090860)", - "surface": 10760000, - "canton": null, - "numero_insee": "39310" - } - }, - { - "pk": 8105, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MARIGNA-SUR-VALOUSE", - "center": "POINT (845105.7282783167902380 2165623.9773892858065665)", - "surface": 8540000, - "canton": null, - "numero_insee": "39312" - } - }, - { - "pk": 28765, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MARIGNY", - "center": "POINT (863192.6900732384528965 2192302.6025224481709301)", - "surface": 11940000, - "canton": null, - "numero_insee": "39313" - } - }, - { - "pk": 8253, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MARNEZIA", - "center": "POINT (852785.7546515697613358 2180402.8867588443681598)", - "surface": 4970000, - "canton": null, - "numero_insee": "39314" - } - }, - { - "pk": 14222, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MARNOZ", - "center": "POINT (866231.9942113860743120 2222954.9660673951730132)", - "surface": 4930000, - "canton": null, - "numero_insee": "39315" - } - }, - { - "pk": 26003, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA MARRE", - "center": "POINT (857138.0526320624630898 2198055.5999808898195624)", - "surface": 10720000, - "canton": null, - "numero_insee": "39317" - } - }, - { - "pk": 17040, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MARTIGNA", - "center": "POINT (858667.4619127847254276 2159835.1598686445504427)", - "surface": 8710000, - "canton": null, - "numero_insee": "39318" - } - }, - { - "pk": 25445, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MATHENAY", - "center": "POINT (854349.4624106707051396 2219750.2200527871027589)", - "surface": 3410000, - "canton": null, - "numero_insee": "39319" - } - }, - { - "pk": 7327, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MAYNAL", - "center": "POINT (835685.7397282796446234 2178654.7527922862209380)", - "surface": 8220000, - "canton": null, - "numero_insee": "39320" - } - }, - { - "pk": 24203, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MENETRU-LE-VIGNOBLE", - "center": "POINT (851796.0503390138037503 2202413.5124088316224515)", - "surface": 5810000, - "canton": null, - "numero_insee": "39321" - } - }, - { - "pk": 3904, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MENETRUX-EN-JOUX", - "center": "POINT (868048.1426419282797724 2186339.1178958378732204)", - "surface": 8860000, - "canton": null, - "numero_insee": "39322" - } - }, - { - "pk": 5013, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MENOTEY", - "center": "POINT (839915.2529405748937279 2245648.0807428881525993)", - "surface": 4990000, - "canton": null, - "numero_insee": "39323" - } - }, - { - "pk": 24788, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MERONA", - "center": "POINT (852807.2398614842677489 2177900.8745130924507976)", - "surface": 2900000, - "canton": null, - "numero_insee": "39324" - } - }, - { - "pk": 24995, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MESNAY", - "center": "POINT (865182.7731804633513093 2216940.8571293093264103)", - "surface": 8310000, - "canton": null, - "numero_insee": "39325" - } - }, - { - "pk": 3590, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MESNOIS", - "center": "POINT (855870.1942358973901719 2182531.2188690863549709)", - "surface": 11450000, - "canton": null, - "numero_insee": "39326" - } - }, - { - "pk": 27043, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MESSIA-SUR-SORNE", - "center": "POINT (843198.2600051772315055 2189628.7192990593612194)", - "surface": 2680000, - "canton": null, - "numero_insee": "39327" - } - }, - { - "pk": 31674, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MEUSSIA", - "center": "POINT (861068.0301060006022453 2171666.2785168183036149)", - "surface": 13710000, - "canton": null, - "numero_insee": "39328" - } - }, - { - "pk": 31822, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MIEGES", - "center": "POINT (882798.9126809807494283 2205182.2591495281085372)", - "surface": 3290000, - "canton": null, - "numero_insee": "39329" - } - }, - { - "pk": 11088, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MIERY", - "center": "POINT (853966.8376090318197384 2206035.2493047174066305)", - "surface": 7760000, - "canton": null, - "numero_insee": "39330" - } - }, - { - "pk": 17856, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MIGNOVILLARD", - "center": "POINT (890612.8033022995805368 2204348.7936132252216339)", - "surface": 49910000, - "canton": null, - "numero_insee": "39331" - } - }, - { - "pk": 29324, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MIREBEL", - "center": "POINT (859771.0674267174908891 2194475.1060566245578229)", - "surface": 17120000, - "canton": null, - "numero_insee": "39332" - } - }, - { - "pk": 22045, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOIRANS-EN-MONTAGNE", - "center": "POINT (861221.4326836441177875 2165462.0966805713251233)", - "surface": 27830000, - "canton": null, - "numero_insee": "39333" - } - }, - { - "pk": 8285, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOIRON", - "center": "POINT (846626.7373128398321569 2186655.5259135426022112)", - "surface": 1820000, - "canton": null, - "numero_insee": "39334" - } - }, - { - "pk": 6260, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOISSEY", - "center": "POINT (842096.3004595363745466 2248068.7773289680480957)", - "surface": 10820000, - "canton": null, - "numero_insee": "39335" - } - }, - { - "pk": 28455, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOLAIN", - "center": "POINT (865454.3468234816100448 2208636.1090039378032088)", - "surface": 11590000, - "canton": null, - "numero_insee": "39336" - } - }, - { - "pk": 28223, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOLAMBOZ", - "center": "POINT (854428.0488271292997524 2222253.0116755310446024)", - "surface": 7120000, - "canton": null, - "numero_insee": "39337" - } - }, - { - "pk": 31193, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOLAY", - "center": "POINT (834557.8508997028693557 2228487.8758674431592226)", - "surface": 6410000, - "canton": null, - "numero_insee": "39338" - } - }, - { - "pk": 11867, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOLINGES", - "center": "POINT (863605.8862558100372553 2155874.0139837167225778)", - "surface": 2590000, - "canton": null, - "numero_insee": "39339" - } - }, - { - "pk": 32255, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOLPRE", - "center": "POINT (884698.6817227471619844 2205398.7914614384062588)", - "surface": 2710000, - "canton": null, - "numero_insee": "39340" - } - }, - { - "pk": 16477, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES MOLUNES", - "center": "POINT (876621.7529949173331261 2155385.4072269671596587)", - "surface": 20780000, - "canton": null, - "numero_insee": "39341" - } - }, - { - "pk": 22661, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONAY", - "center": "POINT (848433.3134130851831287 2209390.6467564930208027)", - "surface": 2440000, - "canton": null, - "numero_insee": "39342" - } - }, - { - "pk": 11055, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONNETAY", - "center": "POINT (843694.2830608480144292 2166812.9325982723385096)", - "surface": 2500000, - "canton": null, - "numero_insee": "39343" - } - }, - { - "pk": 24204, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONNET-LA-VILLE", - "center": "POINT (865850.9538466818630695 2197429.8769585452973843)", - "surface": 6180000, - "canton": null, - "numero_insee": "39344" - } - }, - { - "pk": 34576, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONNIERES", - "center": "POINT (836964.4931948570301756 2239617.7928540450520813)", - "surface": 2080000, - "canton": null, - "numero_insee": "39345" - } - }, - { - "pk": 27752, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTAGNA-LE-RECONDUIT", - "center": "POINT (834491.9419519439106807 2166133.4776231348514557)", - "surface": 5480000, - "canton": null, - "numero_insee": "39346" - } - }, - { - "pk": 29050, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTAGNA-LE-TEMPLIER", - "center": "POINT (840486.8814363846322522 2155675.5170616307295859)", - "surface": 7060000, - "canton": null, - "numero_insee": "39347" - } - }, - { - "pk": 14301, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTAIGU", - "center": "POINT (847609.4966200656490400 2188765.7920850380323827)", - "surface": 7100000, - "canton": null, - "numero_insee": "39348" - } - }, - { - "pk": 13283, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTAIN", - "center": "POINT (847645.1477188821882010 2196272.6101049804128706)", - "surface": 2290000, - "canton": null, - "numero_insee": "39349" - } - }, - { - "pk": 30167, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTBARREY", - "center": "POINT (850860.8943037651479244 2229728.6955316080711782)", - "surface": 9870000, - "canton": null, - "numero_insee": "39350" - } - }, - { - "pk": 34735, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTCUSEL", - "center": "POINT (855997.9133468626532704 2156008.8272288949228823)", - "surface": 9640000, - "canton": null, - "numero_insee": "39351" - } - }, - { - "pk": 33901, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTEPLAIN", - "center": "POINT (855631.3822351102717221 2245282.5957577950321138)", - "surface": 1500000, - "canton": null, - "numero_insee": "39352" - } - }, - { - "pk": 32203, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTFLEUR", - "center": "POINT (839310.7856643424602225 2152762.8281352887861431)", - "surface": 7970000, - "canton": null, - "numero_insee": "39353" - } - }, - { - "pk": 13116, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTHOLIER", - "center": "POINT (851481.5946857220260426 2215722.1930882227607071)", - "surface": 8070000, - "canton": null, - "numero_insee": "39354" - } - }, - { - "pk": 33003, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTIGNY-LES-ARSURES", - "center": "POINT (861744.8661841468419880 2221014.7817758447490633)", - "surface": 10710000, - "canton": null, - "numero_insee": "39355" - } - }, - { - "pk": 32043, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTIGNY-SUR-L'AIN", - "center": "POINT (864068.4566487892298028 2195212.6475422773510218)", - "surface": 7990000, - "canton": null, - "numero_insee": "39356" - } - }, - { - "pk": 9532, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTMARLON", - "center": "POINT (876513.9397467775270343 2214436.1164687536656857)", - "surface": 3390000, - "canton": null, - "numero_insee": "39359" - } - }, - { - "pk": 28456, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTMIREY-LA-VILLE", - "center": "POINT (840768.7052031875355169 2251159.9403431480750442)", - "surface": 3980000, - "canton": null, - "numero_insee": "39360" - } - }, - { - "pk": 33645, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTMIREY-LE-CHATEAU", - "center": "POINT (842056.7977347116684541 2252672.2264168690890074)", - "surface": 8070000, - "canton": null, - "numero_insee": "39361" - } - }, - { - "pk": 19921, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTMOROT", - "center": "POINT (843375.2340035632951185 2192332.5848557837307453)", - "surface": 11360000, - "canton": null, - "numero_insee": "39362" - } - }, - { - "pk": 14276, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTREVEL", - "center": "POINT (842623.4384254222968593 2163300.6335247368551791)", - "surface": 6380000, - "canton": null, - "numero_insee": "39363" - } - }, - { - "pk": 3318, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONTROND", - "center": "POINT (867692.2145715162623674 2204451.7469690972939134)", - "surface": 25770000, - "canton": null, - "numero_insee": "39364" - } - }, - { - "pk": 31398, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONT-SOUS-VAUDREY", - "center": "POINT (847814.3639492013026029 2223197.0635398933663964)", - "surface": 15120000, - "canton": null, - "numero_insee": "39365" - } - }, - { - "pk": 16705, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MONT-SUR-MONNET", - "center": "POINT (868071.6282235709950328 2195247.0661934688687325)", - "surface": 20240000, - "canton": null, - "numero_insee": "39366" - } - }, - { - "pk": 17025, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MORBIER", - "center": "POINT (882018.7153918994590640 2179553.2758637876249850)", - "surface": 42530000, - "canton": null, - "numero_insee": "39367" - } - }, - { - "pk": 24085, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOREZ", - "center": "POINT (883449.1423630448989570 2176162.5968936998397112)", - "surface": 9690000, - "canton": null, - "numero_insee": "39368" - } - }, - { - "pk": 29974, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOUCHARD", - "center": "POINT (862607.7097438415512443 2225425.9175897371023893)", - "surface": 6120000, - "canton": null, - "numero_insee": "39370" - } - }, - { - "pk": 6824, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA MOUILLE", - "center": "POINT (879864.3246172734070569 2174029.8807074595242739)", - "surface": 7960000, - "canton": null, - "numero_insee": "39371" - } - }, - { - "pk": 9156, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOURNANS-CHARBONNY", - "center": "POINT (878907.0477727430406958 2203847.6336620724759996)", - "surface": 5300000, - "canton": null, - "numero_insee": "39372" - } - }, - { - "pk": 21791, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES MOUSSIERES", - "center": "POINT (872134.4024011518340558 2153445.0962971239350736)", - "surface": 16970000, - "canton": null, - "numero_insee": "39373" - } - }, - { - "pk": 9313, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOUTONNE", - "center": "POINT (847627.1019102169666439 2175053.9366150437854230)", - "surface": 4030000, - "canton": null, - "numero_insee": "39375" - } - }, - { - "pk": 6259, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MOUTOUX", - "center": "POINT (875192.0807078273501247 2205216.8647823641076684)", - "surface": 4250000, - "canton": null, - "numero_insee": "39376" - } - }, - { - "pk": 9970, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "MUTIGNEY", - "center": "POINT (841506.6176876863464713 2258472.2581231985241175)", - "surface": 7970000, - "canton": null, - "numero_insee": "39377" - } - }, - { - "pk": 35938, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NANC-LES-SAINT-AMOUR", - "center": "POINT (831423.7269049942260608 2162103.6203356469050050)", - "surface": 5290000, - "canton": null, - "numero_insee": "39378" - } - }, - { - "pk": 32533, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NANCE", - "center": "POINT (835712.5586706238100305 2198872.5711001274175942)", - "surface": 7440000, - "canton": null, - "numero_insee": "39379" - } - }, - { - "pk": 8195, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NANCUISE", - "center": "POINT (845079.9645620242226869 2168626.4191193506121635)", - "surface": 5180000, - "canton": null, - "numero_insee": "39380" - } - }, - { - "pk": 28689, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES NANS", - "center": "POINT (877489.5804900078801438 2205737.0669457362964749)", - "surface": 8390000, - "canton": null, - "numero_insee": "39381" - } - }, - { - "pk": 25688, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NANTEY", - "center": "POINT (835237.1294935186160728 2160935.2382474890910089)", - "surface": 6610000, - "canton": null, - "numero_insee": "39382" - } - }, - { - "pk": 34319, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NEUBLANS-ABERGEMENT", - "center": "POINT (828660.4582253774860874 2215926.7614105539396405)", - "surface": 11090000, - "canton": null, - "numero_insee": "39385" - } - }, - { - "pk": 35819, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NEUVILLEY", - "center": "POINT (848581.0604768051998690 2215497.1184483445249498)", - "surface": 4120000, - "canton": null, - "numero_insee": "39386" - } - }, - { - "pk": 25353, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NEVY-LES-DOLE", - "center": "POINT (841673.5977000247221440 2227347.9014926436357200)", - "surface": 7090000, - "canton": null, - "numero_insee": "39387" - } - }, - { - "pk": 24789, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NEVY-SUR-SEILLE", - "center": "POINT (852734.5746350261615589 2198017.7767473957501352)", - "surface": 6490000, - "canton": null, - "numero_insee": "39388" - } - }, - { - "pk": 27404, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NEY", - "center": "POINT (871044.7380794191267341 2198675.5800571697764099)", - "surface": 7420000, - "canton": null, - "numero_insee": "39389" - } - }, - { - "pk": 6718, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NOGNA", - "center": "POINT (853160.2929009947692975 2183408.7328558703884482)", - "surface": 6310000, - "canton": null, - "numero_insee": "39390" - } - }, - { - "pk": 10194, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "NOZEROY", - "center": "POINT (882414.9715615104651079 2203277.3178362720645964)", - "surface": 3700000, - "canton": null, - "numero_insee": "39391" - } - }, - { - "pk": 7237, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "OFFLANGES", - "center": "POINT (844082.3432871331460774 2249887.3055543554946780)", - "surface": 8760000, - "canton": null, - "numero_insee": "39392" - } - }, - { - "pk": 34575, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ONGLIERES", - "center": "POINT (879482.5355344725539908 2206755.0807318831793964)", - "surface": 8960000, - "canton": null, - "numero_insee": "39393" - } - }, - { - "pk": 5442, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ONOZ", - "center": "POINT (855509.9076686104526743 2166213.7401958727277815)", - "surface": 17160000, - "canton": null, - "numero_insee": "39394" - } - }, - { - "pk": 13967, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ORBAGNA", - "center": "POINT (838571.7657766982447356 2180581.1688125571236014)", - "surface": 4130000, - "canton": null, - "numero_insee": "39395" - } - }, - { - "pk": 27656, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ORCHAMPS", - "center": "POINT (852434.1266167956637219 2244654.6338421911932528)", - "surface": 9840000, - "canton": null, - "numero_insee": "39396" - } - }, - { - "pk": 23789, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ORGELET", - "center": "POINT (850237.7944892989471555 2174075.4649392776191235)", - "surface": 25500000, - "canton": null, - "numero_insee": "39397" - } - }, - { - "pk": 13385, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "OUGNEY", - "center": "POINT (851450.9373467914992943 2254254.1054077944718301)", - "surface": 7060000, - "canton": null, - "numero_insee": "39398" - } - }, - { - "pk": 32902, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "OUNANS", - "center": "POINT (852890.7909256686689332 2226443.3527066125534475)", - "surface": 12280000, - "canton": null, - "numero_insee": "39399" - } - }, - { - "pk": 28688, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "OUR", - "center": "POINT (851277.9124248153530061 2239440.3862359523773193)", - "surface": 13860000, - "canton": null, - "numero_insee": "39400" - } - }, - { - "pk": 8118, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "OUSSIERES", - "center": "POINT (848261.0669123348779976 2217796.3257648237049580)", - "surface": 7620000, - "canton": null, - "numero_insee": "39401" - } - }, - { - "pk": 12415, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PAGNEY", - "center": "POINT (854442.8617376128677279 2255480.7895503514446318)", - "surface": 6010000, - "canton": null, - "numero_insee": "39402" - } - }, - { - "pk": 22736, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PAGNOZ", - "center": "POINT (865311.5086422904860228 2225248.9939987831749022)", - "surface": 3260000, - "canton": null, - "numero_insee": "39403" - } - }, - { - "pk": 11509, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PANNESSIERES", - "center": "POINT (849067.7350283650448546 2193782.6560380994342268)", - "surface": 5290000, - "canton": null, - "numero_insee": "39404" - } - }, - { - "pk": 10704, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PARCEY", - "center": "POINT (838554.0496794932987541 2229322.8199964752420783)", - "surface": 9290000, - "canton": null, - "numero_insee": "39405" - } - }, - { - "pk": 33644, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE PASQUIER", - "center": "POINT (871683.3052105240058154 2205887.2773204413242638)", - "surface": 7840000, - "canton": null, - "numero_insee": "39406" - } - }, - { - "pk": 22817, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PASSENANS", - "center": "POINT (850766.9059456763789058 2205707.5118756419979036)", - "surface": 4930000, - "canton": null, - "numero_insee": "39407" - } - }, - { - "pk": 37151, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PATORNAY", - "center": "POINT (858278.1388153715524822 2181851.2908324962481856)", - "surface": 1850000, - "canton": null, - "numero_insee": "39408" - } - }, - { - "pk": 28228, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PEINTRE", - "center": "POINT (837485.1178863944951445 2248929.9590360526926816)", - "surface": 6510000, - "canton": null, - "numero_insee": "39409" - } - }, - { - "pk": 32487, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PERRIGNY", - "center": "POINT (849488.6729440013878047 2191384.1858735354617238)", - "surface": 8890000, - "canton": null, - "numero_insee": "39411" - } - }, - { - "pk": 26141, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PESEUX", - "center": "POINT (830376.0765312979929149 2225949.9229125129058957)", - "surface": 5430000, - "canton": null, - "numero_insee": "39412" - } - }, - { - "pk": 33165, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE PETIT-MERCEY", - "center": "POINT (857996.2128008329309523 2249606.4685424370691180)", - "surface": 2500000, - "canton": null, - "numero_insee": "39414" - } - }, - { - "pk": 3404, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PETIT-NOIR", - "center": "POINT (828433.7165690473048016 2219027.4483509194105864)", - "surface": 21050000, - "canton": null, - "numero_insee": "39415" - } - }, - { - "pk": 36908, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES PIARDS", - "center": "POINT (867569.8586918239016086 2172122.5204440127126873)", - "surface": 5270000, - "canton": null, - "numero_insee": "39417" - } - }, - { - "pk": 26771, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PICARREAU", - "center": "POINT (861219.7911753817461431 2200592.8318299157544971)", - "surface": 9030000, - "canton": null, - "numero_insee": "39418" - } - }, - { - "pk": 25175, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PILLEMOINE", - "center": "POINT (872973.7918466880219057 2195489.4043850181624293)", - "surface": 4740000, - "canton": null, - "numero_insee": "39419" - } - }, - { - "pk": 26389, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PIMORIN", - "center": "POINT (842757.4884415665874258 2171008.6172405192628503)", - "surface": 10280000, - "canton": null, - "numero_insee": "39420" - } - }, - { - "pk": 34420, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE PIN", - "center": "POINT (847156.7781221964396536 2194867.2058749399147928)", - "surface": 2890000, - "canton": null, - "numero_insee": "39421" - } - }, - { - "pk": 9604, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PLAINOISEAU", - "center": "POINT (845940.3662745824549347 2196658.3238689415156841)", - "surface": 5580000, - "canton": null, - "numero_insee": "39422" - } - }, - { - "pk": 25176, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PLAISIA", - "center": "POINT (853135.8426765110343695 2174600.7892526709474623)", - "surface": 5360000, - "canton": null, - "numero_insee": "39423" - } - }, - { - "pk": 10948, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES PLANCHES-PRES-ARBOIS", - "center": "POINT (864501.1586454065982252 2214733.1246511940844357)", - "surface": 1360000, - "canton": null, - "numero_insee": "39425" - } - }, - { - "pk": 9446, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PLASNE", - "center": "POINT (855878.6442987816408277 2204850.6406547999940813)", - "surface": 7700000, - "canton": null, - "numero_insee": "39426" - } - }, - { - "pk": 14064, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PLENISE", - "center": "POINT (880971.6491437375079840 2208169.1020052507519722)", - "surface": 5300000, - "canton": null, - "numero_insee": "39427" - } - }, - { - "pk": 13115, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PLENISETTE", - "center": "POINT (880680.8919784133322537 2207065.6549202860333025)", - "surface": 2720000, - "canton": null, - "numero_insee": "39428" - } - }, - { - "pk": 12059, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PLEURE", - "center": "POINT (837754.6460725808283314 2217506.0020814002491534)", - "surface": 5150000, - "canton": null, - "numero_insee": "39429" - } - }, - { - "pk": 6367, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PLUMONT", - "center": "POINT (856377.4816523048793897 2239984.6069444869644940)", - "surface": 12180000, - "canton": null, - "numero_insee": "39430" - } - }, - { - "pk": 35746, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "POIDS-DE-FIOLE", - "center": "POINT (851667.6837886361172423 2182395.0400159410201013)", - "surface": 6530000, - "canton": null, - "numero_insee": "39431" - } - }, - { - "pk": 29607, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "POINTRE", - "center": "POINT (838762.9144558457192034 2251643.1432542307302356)", - "surface": 6510000, - "canton": null, - "numero_insee": "39432" - } - }, - { - "pk": 19183, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "POLIGNY", - "center": "POINT (861077.5671605075476691 2205495.8269724394194782)", - "surface": 50980000, - "canton": null, - "numero_insee": "39434" - } - }, - { - "pk": 35026, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PONT-DE-POITTE", - "center": "POINT (856792.4093414229573682 2180036.9476421214640141)", - "surface": 7630000, - "canton": null, - "numero_insee": "39435" - } - }, - { - "pk": 30085, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PONT-D'HERY", - "center": "POINT (871408.2482352439546958 2214592.3547733426094055)", - "surface": 13550000, - "canton": null, - "numero_insee": "39436" - } - }, - { - "pk": 33478, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PONT-DU-NAVOY", - "center": "POINT (863743.2703079457860440 2198112.3627295382320881)", - "surface": 9690000, - "canton": null, - "numero_insee": "39437" - } - }, - { - "pk": 8473, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PONTHOUX", - "center": "POINT (867265.9080755880568177 2160909.9512691218405962)", - "surface": 2160000, - "canton": null, - "numero_insee": "39438" - } - }, - { - "pk": 23388, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PORT-LESNEY", - "center": "POINT (864688.6752392557682469 2227845.8300608885474503)", - "surface": 10860000, - "canton": null, - "numero_insee": "39439" - } - }, - { - "pk": 24708, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PRATZ", - "center": "POINT (862476.5979138436960056 2159167.2640243358910084)", - "surface": 9670000, - "canton": null, - "numero_insee": "39440" - } - }, - { - "pk": 15298, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PREMANON", - "center": "POINT (883918.4069475732976571 2168159.5554181709885597)", - "surface": 28180000, - "canton": null, - "numero_insee": "39441" - } - }, - { - "pk": 10949, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PRENOVEL", - "center": "POINT (868944.3140399092808366 2175237.0779021224007010)", - "surface": 8200000, - "canton": null, - "numero_insee": "39442" - } - }, - { - "pk": 29379, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PRESILLY", - "center": "POINT (848701.3588105364469811 2178165.8870064364746213)", - "surface": 11280000, - "canton": null, - "numero_insee": "39443" - } - }, - { - "pk": 25931, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PRETIN", - "center": "POINT (866252.6474100159248337 2220553.1120144715532660)", - "surface": 5420000, - "canton": null, - "numero_insee": "39444" - } - }, - { - "pk": 27169, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PUBLY", - "center": "POINT (853735.8485160970594734 2186316.2112590884789824)", - "surface": 15260000, - "canton": null, - "numero_insee": "39445" - } - }, - { - "pk": 34106, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "PUPILLIN", - "center": "POINT (860202.9744064549449831 2214095.6678828219883144)", - "surface": 6610000, - "canton": null, - "numero_insee": "39446" - } - }, - { - "pk": 10594, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "QUINTIGNY", - "center": "POINT (843529.8798059804830700 2197638.5027716113254428)", - "surface": 3650000, - "canton": null, - "numero_insee": "39447" - } - }, - { - "pk": 22792, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RAHON", - "center": "POINT (838480.5841904929839075 2226219.5832750424742699)", - "surface": 19560000, - "canton": null, - "numero_insee": "39448" - } - }, - { - "pk": 6368, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RAINANS", - "center": "POINT (837723.8963888334110379 2244428.2893380499444902)", - "surface": 3740000, - "canton": null, - "numero_insee": "39449" - } - }, - { - "pk": 32603, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RANCHOT", - "center": "POINT (856331.0502317586215213 2245388.6898941579274833)", - "surface": 7030000, - "canton": null, - "numero_insee": "39451" - } - }, - { - "pk": 32484, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RANS", - "center": "POINT (856151.5353173811454326 2242985.1583698540925980)", - "surface": 6120000, - "canton": null, - "numero_insee": "39452" - } - }, - { - "pk": 27352, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RAVILLOLES", - "center": "POINT (866028.7890967148123309 2165103.0600281255319715)", - "surface": 7710000, - "canton": null, - "numero_insee": "39453" - } - }, - { - "pk": 36282, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RECANOZ", - "center": "POINT (841859.9249682170338929 2205631.0630912929773331)", - "surface": 3020000, - "canton": null, - "numero_insee": "39454" - } - }, - { - "pk": 7935, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RELANS", - "center": "POINT (836796.2623503556242213 2200883.5884084776043892)", - "surface": 4660000, - "canton": null, - "numero_insee": "39456" - } - }, - { - "pk": 36404, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES REPOTS", - "center": "POINT (835273.0891533378744498 2191762.6565819615498185)", - "surface": 4040000, - "canton": null, - "numero_insee": "39457" - } - }, - { - "pk": 29384, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "REVIGNY", - "center": "POINT (850434.9290377915604040 2186087.6921184821985662)", - "surface": 6360000, - "canton": null, - "numero_insee": "39458" - } - }, - { - "pk": 4487, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA RIXOUSE", - "center": "POINT (871298.6821722825989127 2169151.9293190962634981)", - "surface": 12520000, - "canton": null, - "numero_insee": "39460" - } - }, - { - "pk": 16304, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RIX", - "center": "POINT (883923.0471943721640855 2202489.6148288934491575)", - "surface": 5400000, - "canton": null, - "numero_insee": "39461" - } - }, - { - "pk": 32259, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROCHEFORT-SUR-NENON", - "center": "POINT (844160.5032954921480268 2240780.4464303455315530)", - "surface": 9920000, - "canton": null, - "numero_insee": "39462" - } - }, - { - "pk": 28163, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROGNA", - "center": "POINT (862227.9559646594570950 2153159.7475990797393024)", - "surface": 10640000, - "canton": null, - "numero_insee": "39463" - } - }, - { - "pk": 7046, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROMAIN", - "center": "POINT (856084.4682980288052931 2250791.0305556426756084)", - "surface": 5910000, - "canton": null, - "numero_insee": "39464" - } - }, - { - "pk": 22429, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROMANGE", - "center": "POINT (846924.8226604799274355 2245207.8232003734447062)", - "surface": 5430000, - "canton": null, - "numero_insee": "39465" - } - }, - { - "pk": 30604, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROSAY", - "center": "POINT (838918.3572502827737480 2175179.3938865051604807)", - "surface": 10140000, - "canton": null, - "numero_insee": "39466" - } - }, - { - "pk": 7335, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROTALIER", - "center": "POINT (840572.5142278526909649 2180698.4171453295275569)", - "surface": 4140000, - "canton": null, - "numero_insee": "39467" - } - }, - { - "pk": 10727, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROTHONAY", - "center": "POINT (844740.2171363389352337 2173227.5733655807562172)", - "surface": 12990000, - "canton": null, - "numero_insee": "39468" - } - }, - { - "pk": 37768, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ROUFFANGE", - "center": "POINT (855266.6728463211329654 2252785.6501400675624609)", - "surface": 2850000, - "canton": null, - "numero_insee": "39469" - } - }, - { - "pk": 16501, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LES ROUSSES", - "center": "POINT (886376.4825454552192241 2173285.2441381881944835)", - "surface": 37990000, - "canton": null, - "numero_insee": "39470" - } - }, - { - "pk": 14781, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RUFFEY-SUR-SEILLE", - "center": "POINT (841334.1507922981400043 2196919.0587874646298587)", - "surface": 18190000, - "canton": null, - "numero_insee": "39471" - } - }, - { - "pk": 23649, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "RYE", - "center": "POINT (835387.1121934627881274 2213482.2976711802184582)", - "surface": 11870000, - "canton": null, - "numero_insee": "39472" - } - }, - { - "pk": 24414, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAFFLOZ", - "center": "POINT (869705.6050295990426093 2191457.8182019861415029)", - "surface": 8730000, - "canton": null, - "numero_insee": "39473" - } - }, - { - "pk": 7078, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINTE-AGNES", - "center": "POINT (840242.2272421028465033 2184198.6490240306593478)", - "surface": 4150000, - "canton": null, - "numero_insee": "39474" - } - }, - { - "pk": 3272, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-AMOUR", - "center": "POINT (830305.6747003623750061 2164095.8190229255706072)", - "surface": 11540000, - "canton": null, - "numero_insee": "39475" - } - }, - { - "pk": 20821, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-AUBIN", - "center": "POINT (827637.9831881627906114 2230129.9856332186609507)", - "surface": 33680000, - "canton": null, - "numero_insee": "39476" - } - }, - { - "pk": 26990, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-BARAING", - "center": "POINT (835486.0028520538471639 2225293.1423277943395078)", - "surface": 6340000, - "canton": null, - "numero_insee": "39477" - } - }, - { - "pk": 15513, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-CLAUDE", - "center": "POINT (871955.9851999869570136 2162551.7115859626792371)", - "surface": 70130000, - "canton": null, - "numero_insee": "39478" - } - }, - { - "pk": 37387, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-CYR-MONTMALIN", - "center": "POINT (857622.7797225329559296 2223181.2185108875855803)", - "surface": 10320000, - "canton": null, - "numero_insee": "39479" - } - }, - { - "pk": 36056, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-DIDIER", - "center": "POINT (842755.0077755437232554 2194629.2581493179313838)", - "surface": 2970000, - "canton": null, - "numero_insee": "39480" - } - }, - { - "pk": 30220, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-GERMAIN-EN-MONTAGNE", - "center": "POINT (874903.0402698282850906 2203913.2594549767673016)", - "surface": 5420000, - "canton": null, - "numero_insee": "39481" - } - }, - { - "pk": 35319, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-GERMAIN-LES-ARLAY", - "center": "POINT (845811.0838533306960016 2200060.1509659341536462)", - "surface": 6160000, - "canton": null, - "numero_insee": "39482" - } - }, - { - "pk": 32862, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-HYMETIERE", - "center": "POINT (847088.0158509834436700 2156232.6001392174512148)", - "surface": 3370000, - "canton": null, - "numero_insee": "39483" - } - }, - { - "pk": 12934, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-JEAN-D'ETREUX", - "center": "POINT (832437.4114883369766176 2160610.9710320415906608)", - "surface": 4210000, - "canton": null, - "numero_insee": "39484" - } - }, - { - "pk": 3668, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-JULIEN", - "center": "POINT (839950.4183089805301279 2159874.6730050118640065)", - "surface": 12280000, - "canton": null, - "numero_insee": "39485" - } - }, - { - "pk": 25990, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-LAMAIN", - "center": "POINT (848766.1962301292223856 2205590.2486150818876922)", - "surface": 4200000, - "canton": null, - "numero_insee": "39486" - } - }, - { - "pk": 37908, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-LAURENT-EN-GRANDVAUX", - "center": "POINT (877804.9972494757967070 2180718.0592823866754770)", - "surface": 17510000, - "canton": null, - "numero_insee": "39487" - } - }, - { - "pk": 15042, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-LAURENT-LA-ROCHE", - "center": "POINT (843266.9553211602615193 2181622.3216066472232342)", - "surface": 11360000, - "canton": null, - "numero_insee": "39488" - } - }, - { - "pk": 36761, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-LOTHAIN", - "center": "POINT (851845.4243365277070552 2208319.0019280505366623)", - "surface": 12290000, - "canton": null, - "numero_insee": "39489" - } - }, - { - "pk": 32975, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-LOUP", - "center": "POINT (825670.7503906181082129 2226109.7687671184539795)", - "surface": 9580000, - "canton": null, - "numero_insee": "39490" - } - }, - { - "pk": 37050, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-LUPICIN", - "center": "POINT (865051.2014003597432747 2162392.2507107635028660)", - "surface": 9490000, - "canton": null, - "numero_insee": "39491" - } - }, - { - "pk": 26198, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-MAUR", - "center": "POINT (849554.8296468390617520 2183678.0381897720508277)", - "surface": 6420000, - "canton": null, - "numero_insee": "39492" - } - }, - { - "pk": 21845, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-MAURICE-CRILLAT", - "center": "POINT (868001.4186743337195367 2180133.2839236054569483)", - "surface": 20640000, - "canton": null, - "numero_insee": "39493" - } - }, - { - "pk": 12354, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-PIERRE", - "center": "POINT (873303.9609155710786581 2180379.0660432600416243)", - "surface": 16530000, - "canton": null, - "numero_insee": "39494" - } - }, - { - "pk": 33540, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAINT-THIEBAUD", - "center": "POINT (869516.4635283520910889 2225084.9872814589180052)", - "surface": 7990000, - "canton": null, - "numero_insee": "39495" - } - }, - { - "pk": 12260, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAIZENAY", - "center": "POINT (873619.6207902478054166 2225120.2870251587592065)", - "surface": 4860000, - "canton": null, - "numero_insee": "39497" - } - }, - { - "pk": 30216, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SALANS", - "center": "POINT (862032.7674240870401263 2245737.9399057044647634)", - "surface": 6590000, - "canton": null, - "numero_insee": "39498" - } - }, - { - "pk": 7526, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SALIGNEY", - "center": "POINT (849766.8546121373074129 2252237.9996568202041090)", - "surface": 7880000, - "canton": null, - "numero_insee": "39499" - } - }, - { - "pk": 20464, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SALINS-LES-BAINS", - "center": "POINT (870939.9254121293779463 2222495.0346003533340991)", - "surface": 24740000, - "canton": null, - "numero_insee": "39500" - } - }, - { - "pk": 34577, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAMPANS", - "center": "POINT (835751.5682335260789841 2241008.5538243670016527)", - "surface": 7500000, - "canton": null, - "numero_insee": "39501" - } - }, - { - "pk": 5492, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SANTANS", - "center": "POINT (852841.7972718981327489 2232147.7209605355747044)", - "surface": 16570000, - "canton": null, - "numero_insee": "39502" - } - }, - { - "pk": 12685, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAPOIS", - "center": "POINT (875633.7334372885525227 2200416.5303581706248224)", - "surface": 3560000, - "canton": null, - "numero_insee": "39503" - } - }, - { - "pk": 34928, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SARROGNA", - "center": "POINT (851882.9136615409515798 2168985.0785521431826055)", - "surface": 19750000, - "canton": null, - "numero_insee": "39504" - } - }, - { - "pk": 37771, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAUGEOT", - "center": "POINT (867067.1347492393106222 2184028.6708500571548939)", - "surface": 4420000, - "canton": null, - "numero_insee": "39505" - } - }, - { - "pk": 24557, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SAVIGNA", - "center": "POINT (848215.9861892963526770 2164749.8695780099369586)", - "surface": 10030000, - "canton": null, - "numero_insee": "39506" - } - }, - { - "pk": 12012, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SELIGNEY", - "center": "POINT (843830.1745024512056261 2220961.0066149416379631)", - "surface": 4150000, - "canton": null, - "numero_insee": "39507" - } - }, - { - "pk": 24326, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SELLIERES", - "center": "POINT (845544.7896995921619236 2207764.4832818661816418)", - "surface": 9930000, - "canton": null, - "numero_insee": "39508" - } - }, - { - "pk": 6912, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SENAUD", - "center": "POINT (833848.8524980519432575 2159421.9982181056402624)", - "surface": 4020000, - "canton": null, - "numero_insee": "39509" - } - }, - { - "pk": 4255, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SEPTMONCEL", - "center": "POINT (875791.8163790698163211 2158781.3141403989866376)", - "surface": 19460000, - "canton": null, - "numero_insee": "39510" - } - }, - { - "pk": 24265, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SERGENAUX", - "center": "POINT (838081.4879053179174662 2214406.1706501352600753)", - "surface": 3220000, - "canton": null, - "numero_insee": "39511" - } - }, - { - "pk": 9576, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SERMANGE", - "center": "POINT (850792.5266158435260877 2249344.4195101312361658)", - "surface": 7130000, - "canton": null, - "numero_insee": "39513" - } - }, - { - "pk": 11478, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SERRE-LES-MOULIERES", - "center": "POINT (848182.8415875222999603 2250222.7523918538354337)", - "surface": 5610000, - "canton": null, - "numero_insee": "39514" - } - }, - { - "pk": 29299, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SONGESON", - "center": "POINT (867326.0692276784684509 2188835.0909492936916649)", - "surface": 8510000, - "canton": null, - "numero_insee": "39518" - } - }, - { - "pk": 11087, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SOUCIA", - "center": "POINT (862224.2768959782551974 2176880.8054225225932896)", - "surface": 12440000, - "canton": null, - "numero_insee": "39519" - } - }, - { - "pk": 37929, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SOUVANS", - "center": "POINT (844597.2960073619615287 2224870.8846279704011977)", - "surface": 19990000, - "canton": null, - "numero_insee": "39520" - } - }, - { - "pk": 32019, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SUPT", - "center": "POINT (877832.1800894916523248 2212445.7558191521093249)", - "surface": 14060000, - "canton": null, - "numero_insee": "39522" - } - }, - { - "pk": 8878, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "SYAM", - "center": "POINT (876282.4372088655363768 2194817.2661910154856741)", - "surface": 6970000, - "canton": null, - "numero_insee": "39523" - } - }, - { - "pk": 7900, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "TASSENIERES", - "center": "POINT (841749.1599440883146599 2218541.1167866755276918)", - "surface": 6700000, - "canton": null, - "numero_insee": "39525" - } - }, - { - "pk": 35997, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "TAVAUX", - "center": "POINT (832935.1744482778012753 2230976.0607868796214461)", - "surface": 13910000, - "canton": null, - "numero_insee": "39526" - } - }, - { - "pk": 15510, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "THERVAY", - "center": "POINT (847649.8172663794830441 2254021.3009614753536880)", - "surface": 15840000, - "canton": null, - "numero_insee": "39528" - } - }, - { - "pk": 35991, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "THESY", - "center": "POINT (873481.4663139978656545 2217912.9999003224074841)", - "surface": 4990000, - "canton": null, - "numero_insee": "39529" - } - }, - { - "pk": 24158, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "THOIRETTE", - "center": "POINT (845565.7087126227561384 2147011.2615147228352726)", - "surface": 8920000, - "canton": null, - "numero_insee": "39530" - } - }, - { - "pk": 32904, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "THOIRIA", - "center": "POINT (861444.2728740656748414 2174471.9860131987370551)", - "surface": 12300000, - "canton": null, - "numero_insee": "39531" - } - }, - { - "pk": 22535, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "THOISSIA", - "center": "POINT (835019.8056119543034583 2162935.1575054498389363)", - "surface": 3890000, - "canton": null, - "numero_insee": "39532" - } - }, - { - "pk": 6057, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "TOULOUSE-LE-CHATEAU", - "center": "POINT (847548.0733833818230778 2207581.5066653131507337)", - "surface": 4120000, - "canton": null, - "numero_insee": "39533" - } - }, - { - "pk": 32905, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA TOUR-DU-MEIX", - "center": "POINT (855137.4594476342899725 2174617.9792449492961168)", - "surface": 14260000, - "canton": null, - "numero_insee": "39534" - } - }, - { - "pk": 29175, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "TOURMONT", - "center": "POINT (853709.0905479689827189 2212738.7677322621457279)", - "surface": 9720000, - "canton": null, - "numero_insee": "39535" - } - }, - { - "pk": 25784, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "TRENAL", - "center": "POINT (839718.6494689616374671 2186896.5159947094507515)", - "surface": 6570000, - "canton": null, - "numero_insee": "39537" - } - }, - { - "pk": 37278, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "UXELLES", - "center": "POINT (864466.7715268202591687 2183806.1397876027040184)", - "surface": 5330000, - "canton": null, - "numero_insee": "39538" - } - }, - { - "pk": 28997, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VADANS", - "center": "POINT (856442.4893895825371146 2220769.0473561771214008)", - "surface": 11340000, - "canton": null, - "numero_insee": "39539" - } - }, - { - "pk": 22971, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VALEMPOULIERES", - "center": "POINT (869753.4081692853942513 2209173.5069043538533151)", - "surface": 16210000, - "canton": null, - "numero_insee": "39540" - } - }, - { - "pk": 27092, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VALFIN-SUR-VALOUSE", - "center": "POINT (844974.2665515230037272 2157615.7149443458765745)", - "surface": 8740000, - "canton": null, - "numero_insee": "39542" - } - }, - { - "pk": 13251, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VANNOZ", - "center": "POINT (872907.4944769032299519 2203195.4869368155486882)", - "surface": 5780000, - "canton": null, - "numero_insee": "39543" - } - }, - { - "pk": 13321, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VARESSIA", - "center": "POINT (845399.5594865039456636 2178037.4605738762766123)", - "surface": 1820000, - "canton": null, - "numero_insee": "39544" - } - }, - { - "pk": 35996, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE VAUDIOUX", - "center": "POINT (874588.8383694209624082 2193901.9116384177468717)", - "surface": 6040000, - "canton": null, - "numero_insee": "39545" - } - }, - { - "pk": 11474, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VAUDREY", - "center": "POINT (850211.9176145337987691 2223718.0703474967740476)", - "surface": 18010000, - "canton": null, - "numero_insee": "39546" - } - }, - { - "pk": 8645, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VAUX-SUR-POLIGNY", - "center": "POINT (858653.3253876250237226 2208077.2245777002535760)", - "surface": 1400000, - "canton": null, - "numero_insee": "39548" - } - }, - { - "pk": 7804, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VERCIA", - "center": "POINT (838759.0513759769964963 2182084.0898185344412923)", - "surface": 4170000, - "canton": null, - "numero_insee": "39549" - } - }, - { - "pk": 17855, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VERGES", - "center": "POINT (856108.5378654520027339 2189739.5552078536711633)", - "surface": 6440000, - "canton": null, - "numero_insee": "39550" - } - }, - { - "pk": 8993, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VERIA", - "center": "POINT (836890.4639208214357495 2166554.3970300946384668)", - "surface": 10090000, - "canton": null, - "numero_insee": "39551" - } - }, - { - "pk": 34403, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VERNANTOIS", - "center": "POINT (848134.8083513854071498 2185867.7716157007962465)", - "surface": 6890000, - "canton": null, - "numero_insee": "39552" - } - }, - { - "pk": 12195, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE VERNOIS", - "center": "POINT (848834.9287576195783913 2197583.9478407073765993)", - "surface": 1070000, - "canton": null, - "numero_insee": "39553" - } - }, - { - "pk": 7899, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VERS-EN-MONTAGNE", - "center": "POINT (872660.8429247213061899 2208598.0033912118524313)", - "surface": 8480000, - "canton": null, - "numero_insee": "39554" - } - }, - { - "pk": 36356, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VERS-SOUS-SELLIERES", - "center": "POINT (843243.8481648750603199 2207644.6518581565469503)", - "surface": 8550000, - "canton": null, - "numero_insee": "39555" - } - }, - { - "pk": 32485, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VERTAMBOZ", - "center": "POINT (861165.8464441511314362 2183577.5932890600524843)", - "surface": 6750000, - "canton": null, - "numero_insee": "39556" - } - }, - { - "pk": 3184, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VESCLES", - "center": "POINT (851894.5406956528313458 2155973.5902125346474349)", - "surface": 20280000, - "canton": null, - "numero_insee": "39557" - } - }, - { - "pk": 35261, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VEVY", - "center": "POINT (854500.3864009638782591 2190526.4384065326303244)", - "surface": 9770000, - "canton": null, - "numero_insee": "39558" - } - }, - { - "pk": 26768, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LA VIEILLE-LOYE", - "center": "POINT (850125.9847954282304272 2233725.7377053867094219)", - "surface": 9270000, - "canton": null, - "numero_insee": "39559" - } - }, - { - "pk": 35607, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLARD-SAINT-SAUVEUR", - "center": "POINT (871200.0904769408516586 2157340.5609557260759175)", - "surface": 9000000, - "canton": null, - "numero_insee": "39560" - } - }, - { - "pk": 34320, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLARDS-D'HERIA", - "center": "POINT (861253.2532308404333889 2161759.0738253155723214)", - "surface": 9880000, - "canton": null, - "numero_insee": "39561" - } - }, - { - "pk": 26989, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLARD-SUR-BIENNE", - "center": "POINT (873282.2282028283225372 2171270.8525343658402562)", - "surface": 10370000, - "canton": null, - "numero_insee": "39562" - } - }, - { - "pk": 13219, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLECHANTRIA", - "center": "POINT (838569.0115625123726204 2157560.7699974863789976)", - "surface": 6230000, - "canton": null, - "numero_insee": "39564" - } - }, - { - "pk": 31394, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLENEUVE-D'AVAL", - "center": "POINT (859413.8475191157776862 2224397.6226866939105093)", - "surface": 3940000, - "canton": null, - "numero_insee": "39565" - } - }, - { - "pk": 28641, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLENEUVE-LES-CHARNOD", - "center": "POINT (841606.6731046318309382 2153483.1485806023702025)", - "surface": 6990000, - "canton": null, - "numero_insee": "39566" - } - }, - { - "pk": 8168, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLENEUVE-SOUS-PYMONT", - "center": "POINT (845868.6313270356040448 2193354.8494345769286156)", - "surface": 2730000, - "canton": null, - "numero_insee": "39567" - } - }, - { - "pk": 37941, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLERSERINE", - "center": "POINT (851719.5640262338565663 2211320.4865444414317608)", - "surface": 2980000, - "canton": null, - "numero_insee": "39568" - } - }, - { - "pk": 8510, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLERS-FARLAY", - "center": "POINT (860190.3810951954219490 2227206.6570473578758538)", - "surface": 10010000, - "canton": null, - "numero_insee": "39569" - } - }, - { - "pk": 37989, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLERS-LES-BOIS", - "center": "POINT (846049.0539208503905684 2218978.3557735481299460)", - "surface": 10450000, - "canton": null, - "numero_insee": "39570" - } - }, - { - "pk": 32324, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLERS-ROBERT", - "center": "POINT (842107.3939085409510881 2223448.3367218659259379)", - "surface": 10000000, - "canton": null, - "numero_insee": "39571" - } - }, - { - "pk": 21651, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLETTE-LES-ARBOIS", - "center": "POINT (859248.0939106496516615 2220392.8152619949541986)", - "surface": 5410000, - "canton": null, - "numero_insee": "39572" - } - }, - { - "pk": 9533, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLETTE-LES-DOLE", - "center": "POINT (839832.7235305572394282 2231935.9693096708506346)", - "surface": 4550000, - "canton": null, - "numero_insee": "39573" - } - }, - { - "pk": 33449, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VILLEVIEUX", - "center": "POINT (837733.0199457367416471 2196687.9969726316630840)", - "surface": 10100000, - "canton": null, - "numero_insee": "39574" - } - }, - { - "pk": 5720, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "LE VILLEY", - "center": "POINT (841720.3496072917478159 2210233.8042006413452327)", - "surface": 3580000, - "canton": null, - "numero_insee": "39575" - } - }, - { - "pk": 15432, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VINCELLES", - "center": "POINT (839450.1706439233385026 2183190.9804920968599617)", - "surface": 6440000, - "canton": null, - "numero_insee": "39576" - } - }, - { - "pk": 30883, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VINCENT", - "center": "POINT (840077.4000825736438856 2203413.8816414163447917)", - "surface": 8980000, - "canton": null, - "numero_insee": "39577" - } - }, - { - "pk": 4094, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VIRY", - "center": "POINT (861356.4532313816016540 2149749.1980404728092253)", - "surface": 25630000, - "canton": null, - "numero_insee": "39579" - } - }, - { - "pk": 31395, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VITREUX", - "center": "POINT (852638.9399827970191836 2255765.5395458247512579)", - "surface": 7950000, - "canton": null, - "numero_insee": "39581" - } - }, - { - "pk": 3051, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VOITEUR", - "center": "POINT (849525.1717650506179780 2198790.9103431566618383)", - "surface": 9450000, - "canton": null, - "numero_insee": "39582" - } - }, - { - "pk": 30077, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VOSBLES", - "center": "POINT (845115.5692850436316803 2152812.6233081957325339)", - "surface": 12930000, - "canton": null, - "numero_insee": "39583" - } - }, - { - "pk": 9675, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VRIANGE", - "center": "POINT (846002.6679037332069129 2247701.9737815363332629)", - "surface": 5870000, - "canton": null, - "numero_insee": "39584" - } - }, - { - "pk": 15955, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "VULVOZ", - "center": "POINT (865435.7577856308780611 2152586.7783758230507374)", - "surface": 4410000, - "canton": null, - "numero_insee": "39585" - } - }, - { - "pk": 5849, - "model": "ishtar_common.town", - "fields": { - "departement": 40, - "name": "ARESCHES", - "center": "POINT (872893.0556173038203269 2216506.7467704643495381)", - "surface": 4790000, - "canton": null, - "numero_insee": "39586" - } - }, - { - "pk": 16977, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AIRE-SUR-L'ADOUR", - "center": "POINT (390030.0388075284427032 1858594.5381739274598658)", - "surface": 58130000, - "canton": null, - "numero_insee": "40001" - } - }, - { - "pk": 4849, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AMOU", - "center": "POINT (350970.5007995130727068 1848362.1045197842177004)", - "surface": 27710000, - "canton": null, - "numero_insee": "40002" - } - }, - { - "pk": 9513, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ANGOUME", - "center": "POINT (319227.2784115127869882 1861516.7362837090622634)", - "surface": 8020000, - "canton": null, - "numero_insee": "40003" - } - }, - { - "pk": 35710, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ANGRESSE", - "center": "POINT (301237.9009502704138868 1857765.5033190774265677)", - "surface": 7640000, - "canton": null, - "numero_insee": "40004" - } - }, - { - "pk": 11539, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARBOUCAVE", - "center": "POINT (375394.5805760642979294 1848763.1517088764812797)", - "surface": 9920000, - "canton": null, - "numero_insee": "40005" - } - }, - { - "pk": 19688, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARENGOSSE", - "center": "POINT (349366.4429685280192643 1897403.0599076042417437)", - "surface": 62840000, - "canton": null, - "numero_insee": "40006" - } - }, - { - "pk": 6663, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARGELOS", - "center": "POINT (360795.6497033624909818 1846640.8170775859616697)", - "surface": 6590000, - "canton": null, - "numero_insee": "40007" - } - }, - { - "pk": 9630, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARGELOUSE", - "center": "POINT (363176.3468037319835275 1934556.2145035141147673)", - "surface": 22860000, - "canton": null, - "numero_insee": "40008" - } - }, - { - "pk": 36330, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARJUZANX", - "center": "POINT (344474.5930233300896361 1895761.1624056538566947)", - "surface": 29310000, - "canton": null, - "numero_insee": "40009" - } - }, - { - "pk": 10591, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARSAGUE", - "center": "POINT (347175.5331741718109697 1847229.7045411984436214)", - "surface": 7190000, - "canton": null, - "numero_insee": "40011" - } - }, - { - "pk": 24011, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARTASSENX", - "center": "POINT (379981.2036832346930169 1875330.3771124363411218)", - "surface": 5490000, - "canton": null, - "numero_insee": "40012" - } - }, - { - "pk": 33504, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARTHEZ-D'ARMAGNAC", - "center": "POINT (392156.6895713682752103 1879935.6325557683594525)", - "surface": 11370000, - "canton": null, - "numero_insee": "40013" - } - }, - { - "pk": 19445, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ARUE", - "center": "POINT (384092.7182250099722296 1898789.8258280344307423)", - "surface": 49180000, - "canton": null, - "numero_insee": "40014" - } - }, - { - "pk": 16402, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AUBAGNAN", - "center": "POINT (371234.2499507791944779 1855536.5246517367195338)", - "surface": 3460000, - "canton": null, - "numero_insee": "40016" - } - }, - { - "pk": 18717, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AUDIGNON", - "center": "POINT (363770.5148294253740460 1862282.7123294102493674)", - "surface": 9370000, - "canton": null, - "numero_insee": "40017" - } - }, - { - "pk": 35138, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AUDON", - "center": "POINT (345274.0483413183828816 1871541.1782263140194118)", - "surface": 7540000, - "canton": null, - "numero_insee": "40018" - } - }, - { - "pk": 27248, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AUREILHAN", - "center": "POINT (317959.2276370481704362 1918568.6517192320898175)", - "surface": 11600000, - "canton": null, - "numero_insee": "40019" - } - }, - { - "pk": 23694, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AURICE", - "center": "POINT (363497.0534244385780767 1871190.3324514236301184)", - "surface": 17610000, - "canton": null, - "numero_insee": "40020" - } - }, - { - "pk": 34860, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "AZUR", - "center": "POINT (307319.9243248616694473 1873032.1410505836829543)", - "surface": 16920000, - "canton": null, - "numero_insee": "40021" - } - }, - { - "pk": 32581, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BAHUS-SOUBIRAN", - "center": "POINT (383344.4664481397485361 1855936.5552402669563890)", - "surface": 14580000, - "canton": null, - "numero_insee": "40022" - } - }, - { - "pk": 22094, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BAIGTS", - "center": "POINT (347379.6828719974146225 1858944.4745977616403252)", - "surface": 11580000, - "canton": null, - "numero_insee": "40023" - } - }, - { - "pk": 27250, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BANOS", - "center": "POINT (361360.6019810236757621 1863163.8998851373326033)", - "surface": 5720000, - "canton": null, - "numero_insee": "40024" - } - }, - { - "pk": 25625, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BASCONS", - "center": "POINT (377591.0820697690360248 1873809.0451991413719952)", - "surface": 18710000, - "canton": null, - "numero_insee": "40025" - } - }, - { - "pk": 28316, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BAS-MAUCO", - "center": "POINT (366910.4615537650533952 1870017.0743052659090608)", - "surface": 11460000, - "canton": null, - "numero_insee": "40026" - } - }, - { - "pk": 6660, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BASSERCLES", - "center": "POINT (361517.7864803303964436 1844043.8302212627604604)", - "surface": 6600000, - "canton": null, - "numero_insee": "40027" - } - }, - { - "pk": 33312, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BASTENNES", - "center": "POINT (348415.2541112416656688 1854748.2888454874046147)", - "surface": 7200000, - "canton": null, - "numero_insee": "40028" - } - }, - { - "pk": 25432, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BATS", - "center": "POINT (373748.4061629481147975 1854155.6492050092201680)", - "surface": 7380000, - "canton": null, - "numero_insee": "40029" - } - }, - { - "pk": 36260, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BAUDIGNAN", - "center": "POINT (415807.5784099433221854 1901153.6771538264583796)", - "surface": 23480000, - "canton": null, - "numero_insee": "40030" - } - }, - { - "pk": 15937, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BEGAAR", - "center": "POINT (342943.7277355643454939 1874925.8070507312659174)", - "surface": 27660000, - "canton": null, - "numero_insee": "40031" - } - }, - { - "pk": 32551, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BELHADE", - "center": "POINT (358970.5369075521593913 1934721.8617599648423493)", - "surface": 28650000, - "canton": null, - "numero_insee": "40032" - } - }, - { - "pk": 13541, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BELIS", - "center": "POINT (375076.1488781987573020 1899616.5700168688781559)", - "surface": 20380000, - "canton": null, - "numero_insee": "40033" - } - }, - { - "pk": 34776, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BELUS", - "center": "POINT (320727.1424663112265989 1849515.6044211853295565)", - "surface": 11870000, - "canton": null, - "numero_insee": "40034" - } - }, - { - "pk": 36197, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BENESSE-LES-DAX", - "center": "POINT (327290.6202040945063345 1854875.3224434503354132)", - "surface": 5970000, - "canton": null, - "numero_insee": "40035" - } - }, - { - "pk": 26316, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BENESSE-MAREMNE", - "center": "POINT (300959.6869564115186222 1855060.2098242554347962)", - "surface": 18750000, - "canton": null, - "numero_insee": "40036" - } - }, - { - "pk": 23084, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BENQUET", - "center": "POINT (370990.0119230420677923 1873053.9477831423282623)", - "surface": 29450000, - "canton": null, - "numero_insee": "40037" - } - }, - { - "pk": 29297, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BERGOUEY", - "center": "POINT (352905.1784447445534170 1856587.1756982293445617)", - "surface": 4360000, - "canton": null, - "numero_insee": "40038" - } - }, - { - "pk": 12182, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BETBEZER-D'ARMAGNAC", - "center": "POINT (398987.8454670159844682 1889202.0303066323976964)", - "surface": 7910000, - "canton": null, - "numero_insee": "40039" - } - }, - { - "pk": 11025, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BEYLONGUE", - "center": "POINT (345564.3535323988180608 1884958.3129117642529309)", - "surface": 37630000, - "canton": null, - "numero_insee": "40040" - } - }, - { - "pk": 7774, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BIARROTTE", - "center": "POINT (307940.6621826570481062 1846107.2132935456465930)", - "surface": 4980000, - "canton": null, - "numero_insee": "40042" - } - }, - { - "pk": 34672, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BIAS", - "center": "POINT (314424.4302570619620383 1910130.6834647487848997)", - "surface": 20920000, - "canton": null, - "numero_insee": "40043" - } - }, - { - "pk": 34618, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BIAUDOS", - "center": "POINT (304646.1774364284356125 1844979.0221021031029522)", - "surface": 15620000, - "canton": null, - "numero_insee": "40044" - } - }, - { - "pk": 7552, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BISCARROSSE", - "center": "POINT (319982.7544116249191575 1940408.4164267049636692)", - "surface": 192820000, - "canton": null, - "numero_insee": "40046" - } - }, - { - "pk": 27976, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BONNEGARDE", - "center": "POINT (353300.8882062566699460 1844977.4267164436168969)", - "surface": 9700000, - "canton": null, - "numero_insee": "40047" - } - }, - { - "pk": 27896, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BOOS", - "center": "POINT (332170.2648704381426796 1882445.8001229155343026)", - "surface": 15800000, - "canton": null, - "numero_insee": "40048" - } - }, - { - "pk": 17453, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BORDERES-ET-LAMENSANS", - "center": "POINT (382547.2702670423313975 1867642.9998147008009255)", - "surface": 14950000, - "canton": null, - "numero_insee": "40049" - } - }, - { - "pk": 27031, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BOSTENS", - "center": "POINT (382671.1557561655063182 1889067.5590597370173782)", - "surface": 7830000, - "canton": null, - "numero_insee": "40050" - } - }, - { - "pk": 20023, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BOUGUE", - "center": "POINT (380027.7324983585858718 1881837.9091831590048969)", - "surface": 22150000, - "canton": null, - "numero_insee": "40051" - } - }, - { - "pk": 15316, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BOURDALAT", - "center": "POINT (394514.3537486373679712 1873247.6910254955291748)", - "surface": 14230000, - "canton": null, - "numero_insee": "40052" - } - }, - { - "pk": 28500, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BOURRIOT-BERGONCE", - "center": "POINT (395823.0124427720438689 1908797.1912514925934374)", - "surface": 82740000, - "canton": null, - "numero_insee": "40053" - } - }, - { - "pk": 30862, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BRASSEMPOUY", - "center": "POINT (354441.2943344477098435 1852395.0998599848244339)", - "surface": 10840000, - "canton": null, - "numero_insee": "40054" - } - }, - { - "pk": 37434, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BRETAGNE-DE-MARSAN", - "center": "POINT (374382.0014526825398207 1874483.4037500028498471)", - "surface": 13090000, - "canton": null, - "numero_insee": "40055" - } - }, - { - "pk": 13764, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BROCAS", - "center": "POINT (368983.1194587148493156 1897964.7041329257190228)", - "surface": 53280000, - "canton": null, - "numero_insee": "40056" - } - }, - { - "pk": 29424, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "BUANES", - "center": "POINT (377296.9712438792921603 1860892.3298260082956403)", - "surface": 6630000, - "canton": null, - "numero_insee": "40057" - } - }, - { - "pk": 7925, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CACHEN", - "center": "POINT (379166.3077749700751156 1901352.0788424885831773)", - "surface": 35750000, - "canton": null, - "numero_insee": "40058" - } - }, - { - "pk": 21131, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CALLEN", - "center": "POINT (376474.2822498460300267 1924354.6412809372413903)", - "surface": 87030000, - "canton": null, - "numero_insee": "40060" - } - }, - { - "pk": 23804, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAMPAGNE", - "center": "POINT (360538.9144804881070741 1877873.4057244090363383)", - "surface": 33840000, - "canton": null, - "numero_insee": "40061" - } - }, - { - "pk": 20518, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAMPET-ET-LAMOLERE", - "center": "POINT (364696.3365651991916820 1883613.8461518720723689)", - "surface": 18990000, - "canton": null, - "numero_insee": "40062" - } - }, - { - "pk": 12565, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CANDRESSE", - "center": "POINT (332436.9850812379736453 1862125.5443015536293387)", - "surface": 8390000, - "canton": null, - "numero_insee": "40063" - } - }, - { - "pk": 22409, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CANENX-ET-REAUT", - "center": "POINT (375033.7130790245719254 1892608.6107630436308682)", - "surface": 28620000, - "canton": null, - "numero_insee": "40064" - } - }, - { - "pk": 25254, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAPBRETON", - "center": "POINT (295754.2159344757092185 1855017.6543685973156244)", - "surface": 21360000, - "canton": null, - "numero_insee": "40065" - } - }, - { - "pk": 36354, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CARCARES-SAINTE-CROIX", - "center": "POINT (351131.6675927796168253 1877495.7840999476611614)", - "surface": 15860000, - "canton": null, - "numero_insee": "40066" - } - }, - { - "pk": 28358, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CARCEN-PONSON", - "center": "POINT (346009.1383167306194082 1879556.0351210217922926)", - "surface": 36610000, - "canton": null, - "numero_insee": "40067" - } - }, - { - "pk": 13803, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASSEN", - "center": "POINT (341805.7373392047593370 1867207.9504657934885472)", - "surface": 5880000, - "canton": null, - "numero_insee": "40068" - } - }, - { - "pk": 9967, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASTAIGNOS-SOUSLENS", - "center": "POINT (358587.5674049527151510 1847323.4532766356132925)", - "surface": 7660000, - "canton": null, - "numero_insee": "40069" - } - }, - { - "pk": 16173, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASTANDET", - "center": "POINT (383420.9975618059979752 1870953.8475505127571523)", - "surface": 16940000, - "canton": null, - "numero_insee": "40070" - } - }, - { - "pk": 7224, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASTELNAU-CHALOSSE", - "center": "POINT (342498.3756832003709860 1856001.1683297385461628)", - "surface": 10600000, - "canton": null, - "numero_insee": "40071" - } - }, - { - "pk": 8582, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASTELNAU-TURSAN", - "center": "POINT (378653.5503248848253861 1854196.0264375410042703)", - "surface": 9410000, - "canton": null, - "numero_insee": "40072" - } - }, - { - "pk": 31078, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASTELNER", - "center": "POINT (363025.9577824502484873 1843255.3296126069035381)", - "surface": 5650000, - "canton": null, - "numero_insee": "40073" - } - }, - { - "pk": 21073, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASTEL-SARRAZIN", - "center": "POINT (347443.7936034250305966 1851136.2828434733673930)", - "surface": 12350000, - "canton": null, - "numero_insee": "40074" - } - }, - { - "pk": 17940, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CASTETS", - "center": "POINT (319869.8795783634996042 1880843.3585136523470283)", - "surface": 91220000, - "canton": null, - "numero_insee": "40075" - } - }, - { - "pk": 19330, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAUNA", - "center": "POINT (360010.6992148587014526 1869059.3488275338895619)", - "surface": 12830000, - "canton": null, - "numero_insee": "40076" - } - }, - { - "pk": 3363, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAUNEILLE", - "center": "POINT (324861.8204469692427665 1845845.3225956938695163)", - "surface": 15250000, - "canton": null, - "numero_insee": "40077" - } - }, - { - "pk": 4345, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAUPENNE", - "center": "POINT (350487.0402164966217242 1858469.4337687459774315)", - "surface": 15180000, - "canton": null, - "numero_insee": "40078" - } - }, - { - "pk": 33758, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAZALIS", - "center": "POINT (357151.5380717506632209 1851516.3618196996394545)", - "surface": 5160000, - "canton": null, - "numero_insee": "40079" - } - }, - { - "pk": 22886, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CAZERES-SUR-L'ADOUR", - "center": "POINT (388670.1103473725961521 1865691.2236243633087724)", - "surface": 30390000, - "canton": null, - "numero_insee": "40080" - } - }, - { - "pk": 29580, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CERE", - "center": "POINT (368527.8933194108540192 1892454.9761790265329182)", - "surface": 39950000, - "canton": null, - "numero_insee": "40081" - } - }, - { - "pk": 6783, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CLASSUN", - "center": "POINT (379900.5121623984305188 1860813.6539435789454728)", - "surface": 8920000, - "canton": null, - "numero_insee": "40082" - } - }, - { - "pk": 13964, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CLEDES", - "center": "POINT (380801.0948127021547407 1848707.5520914657972753)", - "surface": 6790000, - "canton": null, - "numero_insee": "40083" - } - }, - { - "pk": 20293, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CLERMONT", - "center": "POINT (337801.6540342987864278 1854961.5121647908817977)", - "surface": 15060000, - "canton": null, - "numero_insee": "40084" - } - }, - { - "pk": 5033, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "COMMENSACQ", - "center": "POINT (346698.7340256936149672 1917502.8565827577840537)", - "surface": 71580000, - "canton": null, - "numero_insee": "40085" - } - }, - { - "pk": 14102, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "COUDURES", - "center": "POINT (370612.2066506773699075 1858134.3079117024317384)", - "surface": 11550000, - "canton": null, - "numero_insee": "40086" - } - }, - { - "pk": 26688, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "CREON-D'ARMAGNAC", - "center": "POINT (405679.0076861185953021 1891159.3031669971533120)", - "surface": 21280000, - "canton": null, - "numero_insee": "40087" - } - }, - { - "pk": 14943, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "DAX", - "center": "POINT (325836.6457996818353422 1861270.5490899188444018)", - "surface": 19730000, - "canton": null, - "numero_insee": "40088" - } - }, - { - "pk": 24062, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "DOAZIT", - "center": "POINT (359292.1435660163406283 1859042.3340717069804668)", - "surface": 22480000, - "canton": null, - "numero_insee": "40089" - } - }, - { - "pk": 19507, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "DONZACQ", - "center": "POINT (346103.7979298864374869 1855830.5397237117867917)", - "surface": 11730000, - "canton": null, - "numero_insee": "40090" - } - }, - { - "pk": 20748, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "DUHORT-BACHEN", - "center": "POINT (385506.3629235788248479 1860859.8245798086281866)", - "surface": 34270000, - "canton": null, - "numero_insee": "40091" - } - }, - { - "pk": 8839, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "DUMES", - "center": "POINT (364389.2505812025046907 1860085.3516741706989706)", - "surface": 2480000, - "canton": null, - "numero_insee": "40092" - } - }, - { - "pk": 21291, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ESCALANS", - "center": "POINT (415382.3050346263917163 1892040.2819809541106224)", - "surface": 30270000, - "canton": null, - "numero_insee": "40093" - } - }, - { - "pk": 21713, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ESCOURCE", - "center": "POINT (329617.6456509421695955 1912958.0302930651232600)", - "surface": 103520000, - "canton": null, - "numero_insee": "40094" - } - }, - { - "pk": 33358, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ESTIBEAUX", - "center": "POINT (337537.4726686904323287 1850554.4186049138661474)", - "surface": 16830000, - "canton": null, - "numero_insee": "40095" - } - }, - { - "pk": 10712, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ESTIGARDE", - "center": "POINT (403237.7389166262000799 1895844.2756692909169942)", - "surface": 29330000, - "canton": null, - "numero_insee": "40096" - } - }, - { - "pk": 36507, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "EUGENIE-LES-BAINS", - "center": "POINT (380520.0984452444827184 1858516.1945391981862485)", - "surface": 10920000, - "canton": null, - "numero_insee": "40097" - } - }, - { - "pk": 20374, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "EYRES-MONCUBE", - "center": "POINT (366882.8086998154176399 1861207.0826405531261116)", - "surface": 12220000, - "canton": null, - "numero_insee": "40098" - } - }, - { - "pk": 21712, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "FARGUES", - "center": "POINT (375084.7852961532771587 1862075.4552766662091017)", - "surface": 11890000, - "canton": null, - "numero_insee": "40099" - } - }, - { - "pk": 15142, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LE FRECHE", - "center": "POINT (392424.8191722449264489 1883842.1216508925426751)", - "surface": 23660000, - "canton": null, - "numero_insee": "40100" - } - }, - { - "pk": 28513, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GAAS", - "center": "POINT (326920.5565080983215012 1851168.1465080145280808)", - "surface": 9170000, - "canton": null, - "numero_insee": "40101" - } - }, - { - "pk": 25474, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GABARRET", - "center": "POINT (411995.3636073555680923 1890010.1324868472293019)", - "surface": 16900000, - "canton": null, - "numero_insee": "40102" - } - }, - { - "pk": 32297, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GAILLERES", - "center": "POINT (382099.3932715871487744 1885559.0234937663190067)", - "surface": 14010000, - "canton": null, - "numero_insee": "40103" - } - }, - { - "pk": 15604, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GAMARDE-LES-BAINS", - "center": "POINT (341133.7585345517145470 1863698.5501427422277629)", - "surface": 19310000, - "canton": null, - "numero_insee": "40104" - } - }, - { - "pk": 35372, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GAREIN", - "center": "POINT (360468.7043790854513645 1898595.4584257141686976)", - "surface": 56920000, - "canton": null, - "numero_insee": "40105" - } - }, - { - "pk": 27905, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GARREY", - "center": "POINT (338682.0671833995729685 1857471.5278046540915966)", - "surface": 4710000, - "canton": null, - "numero_insee": "40106" - } - }, - { - "pk": 36991, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GARROSSE", - "center": "POINT (336573.0963898569461890 1894895.4641671013087034)", - "surface": 26500000, - "canton": null, - "numero_insee": "40107" - } - }, - { - "pk": 5811, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GASTES", - "center": "POINT (318160.3654014180647209 1930683.2173695361707360)", - "surface": 43200000, - "canton": null, - "numero_insee": "40108" - } - }, - { - "pk": 21171, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GAUJACQ", - "center": "POINT (351329.8110997907933779 1853370.6589873279444873)", - "surface": 16000000, - "canton": null, - "numero_insee": "40109" - } - }, - { - "pk": 27531, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GEAUNE", - "center": "POINT (381578.8536962459911592 1851517.0946873149368912)", - "surface": 10590000, - "canton": null, - "numero_insee": "40110" - } - }, - { - "pk": 14931, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GELOUX", - "center": "POINT (360931.6422806422924623 1890990.9913207183126360)", - "surface": 52170000, - "canton": null, - "numero_insee": "40111" - } - }, - { - "pk": 30183, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GOOS", - "center": "POINT (337526.7146115397335961 1864069.4005053846631199)", - "surface": 10610000, - "canton": null, - "numero_insee": "40113" - } - }, - { - "pk": 12891, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GOURBERA", - "center": "POINT (327340.6886588185443543 1873196.0766839189454913)", - "surface": 27740000, - "canton": null, - "numero_insee": "40114" - } - }, - { - "pk": 28116, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GOUSSE", - "center": "POINT (338387.4136330508626997 1868981.8982758941128850)", - "surface": 4150000, - "canton": null, - "numero_insee": "40115" - } - }, - { - "pk": 25831, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GOUTS", - "center": "POINT (348899.1574959203135222 1868968.0630821089725941)", - "surface": 11040000, - "canton": null, - "numero_insee": "40116" - } - }, - { - "pk": 3883, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "GRENADE-SUR-L'ADOUR", - "center": "POINT (377626.5170606673927978 1869504.5856645754538476)", - "surface": 19840000, - "canton": null, - "numero_insee": "40117" - } - }, - { - "pk": 16800, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HABAS", - "center": "POINT (335477.9563247880432755 1845331.6840457476209849)", - "surface": 18900000, - "canton": null, - "numero_insee": "40118" - } - }, - { - "pk": 20538, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HAGETMAU", - "center": "POINT (363536.8717585143749602 1854171.7596048142295331)", - "surface": 28390000, - "canton": null, - "numero_insee": "40119" - } - }, - { - "pk": 16717, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HASTINGUES", - "center": "POINT (318303.2107149092480540 1839884.9414231975097209)", - "surface": 14550000, - "canton": null, - "numero_insee": "40120" - } - }, - { - "pk": 7592, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HAURIET", - "center": "POINT (355549.6122671247576363 1863716.8092528993729502)", - "surface": 7540000, - "canton": null, - "numero_insee": "40121" - } - }, - { - "pk": 35130, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HAUT-MAUCO", - "center": "POINT (366577.2192996620433405 1874018.7532874497119337)", - "surface": 18810000, - "canton": null, - "numero_insee": "40122" - } - }, - { - "pk": 26632, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HERM", - "center": "POINT (321132.6137673487537540 1873345.4330978153739125)", - "surface": 52300000, - "canton": null, - "numero_insee": "40123" - } - }, - { - "pk": 24087, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HERRE", - "center": "POINT (409460.5800685026333667 1893893.4548953906632960)", - "surface": 23270000, - "canton": null, - "numero_insee": "40124" - } - }, - { - "pk": 5395, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HEUGAS", - "center": "POINT (323884.5856201332062483 1855147.7458873048890382)", - "surface": 19000000, - "canton": null, - "numero_insee": "40125" - } - }, - { - "pk": 4522, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HINX", - "center": "POINT (335742.8985417408403009 1861852.3216093613300472)", - "surface": 14680000, - "canton": null, - "numero_insee": "40126" - } - }, - { - "pk": 17922, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HONTANX", - "center": "POINT (390823.7230627587996423 1871615.5022856199648231)", - "surface": 30730000, - "canton": null, - "numero_insee": "40127" - } - }, - { - "pk": 29166, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "HORSARRIEU", - "center": "POINT (362801.5686174896545708 1858370.4029493005946279)", - "surface": 11010000, - "canton": null, - "numero_insee": "40128" - } - }, - { - "pk": 34854, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "JOSSE", - "center": "POINT (311365.7092597646405920 1855746.0103867244906723)", - "surface": 9380000, - "canton": null, - "numero_insee": "40129" - } - }, - { - "pk": 36106, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LABASTIDE-CHALOSSE", - "center": "POINT (362066.5704977376153693 1850355.4172761163208634)", - "surface": 4510000, - "canton": null, - "numero_insee": "40130" - } - }, - { - "pk": 4448, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LABASTIDE-D'ARMAGNAC", - "center": "POINT (398112.5150850433856249 1886091.4235882258508354)", - "surface": 31990000, - "canton": null, - "numero_insee": "40131" - } - }, - { - "pk": 14515, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LABATUT", - "center": "POINT (330178.0950490045361221 1844587.4350187939126045)", - "surface": 21200000, - "canton": null, - "numero_insee": "40132" - } - }, - { - "pk": 7102, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LABENNE", - "center": "POINT (295486.6271833768696524 1851010.9849021183326840)", - "surface": 24570000, - "canton": null, - "numero_insee": "40133" - } - }, - { - "pk": 29782, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LABOUHEYRE", - "center": "POINT (340583.5714991996064782 1918553.8544985107146204)", - "surface": 36410000, - "canton": null, - "numero_insee": "40134" - } - }, - { - "pk": 16172, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LABRIT", - "center": "POINT (367607.7043183543719351 1906963.1358397414442152)", - "surface": 72300000, - "canton": null, - "numero_insee": "40135" - } - }, - { - "pk": 26032, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LACAJUNTE", - "center": "POINT (377111.2059520495822653 1846975.2625830648466945)", - "surface": 5640000, - "canton": null, - "numero_insee": "40136" - } - }, - { - "pk": 9557, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LACQUY", - "center": "POINT (389292.7623672472545877 1887320.1397890653461218)", - "surface": 19280000, - "canton": null, - "numero_insee": "40137" - } - }, - { - "pk": 29423, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LACRABE", - "center": "POINT (363173.4905146228848025 1849663.7335329514462501)", - "surface": 6290000, - "canton": null, - "numero_insee": "40138" - } - }, - { - "pk": 20583, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LAGLORIEUSE", - "center": "POINT (380063.9982134755700827 1877433.3718624513130635)", - "surface": 11610000, - "canton": null, - "numero_insee": "40139" - } - }, - { - "pk": 23030, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LAGRANGE", - "center": "POINT (405805.5440571493236348 1887956.8551057220902294)", - "surface": 21270000, - "canton": null, - "numero_insee": "40140" - } - }, - { - "pk": 6035, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LAHOSSE", - "center": "POINT (347857.1920522985747084 1861751.5140597471036017)", - "surface": 8100000, - "canton": null, - "numero_insee": "40141" - } - }, - { - "pk": 10382, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LALUQUE", - "center": "POINT (332509.1495618800399825 1877743.4092665417119861)", - "surface": 52530000, - "canton": null, - "numero_insee": "40142" - } - }, - { - "pk": 38055, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LAMOTHE", - "center": "POINT (358495.9768562564277090 1870648.6701864453498274)", - "surface": 12660000, - "canton": null, - "numero_insee": "40143" - } - }, - { - "pk": 6053, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LARBEY", - "center": "POINT (352171.5535633708350360 1860585.6095185051672161)", - "surface": 5980000, - "canton": null, - "numero_insee": "40144" - } - }, - { - "pk": 4913, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LARRIVIERE-SAINT-SAVIN", - "center": "POINT (377359.9920950896339491 1865397.8487618092913181)", - "surface": 16620000, - "canton": null, - "numero_insee": "40145" - } - }, - { - "pk": 30609, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LATRILLE", - "center": "POINT (387686.9173745792941190 1851367.1877800186630338)", - "surface": 6900000, - "canton": null, - "numero_insee": "40146" - } - }, - { - "pk": 32357, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LAUREDE", - "center": "POINT (347917.8435820900485851 1866557.3452206449583173)", - "surface": 5730000, - "canton": null, - "numero_insee": "40147" - } - }, - { - "pk": 17540, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LAURET", - "center": "POINT (384445.2954047941602767 1843832.0633327169343829)", - "surface": 7270000, - "canton": null, - "numero_insee": "40148" - } - }, - { - "pk": 5322, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LEON", - "center": "POINT (308875.7191634058835916 1878651.0501051601022482)", - "surface": 66690000, - "canton": null, - "numero_insee": "40150" - } - }, - { - "pk": 28712, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LESGOR", - "center": "POINT (338811.5583626433508471 1878295.6488126805052161)", - "surface": 28420000, - "canton": null, - "numero_insee": "40151" - } - }, - { - "pk": 21981, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LESPERON", - "center": "POINT (325797.3299164606723934 1890502.4374692649580538)", - "surface": 103770000, - "canton": null, - "numero_insee": "40152" - } - }, - { - "pk": 29415, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LE LEUY", - "center": "POINT (359276.2392330096336082 1873157.8457369958050549)", - "surface": 9480000, - "canton": null, - "numero_insee": "40153" - } - }, - { - "pk": 5419, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LEVIGNACQ", - "center": "POINT (319846.1923285560333170 1895959.6860766706522554)", - "surface": 42740000, - "canton": null, - "numero_insee": "40154" - } - }, - { - "pk": 15911, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LINXE", - "center": "POINT (314210.8353593731299043 1887304.1569517974276096)", - "surface": 81190000, - "canton": null, - "numero_insee": "40155" - } - }, - { - "pk": 31257, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LIPOSTHEY", - "center": "POINT (342706.1105638598091900 1928281.6275225924327970)", - "surface": 24060000, - "canton": null, - "numero_insee": "40156" - } - }, - { - "pk": 22190, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LOSSE", - "center": "POINT (405487.2164313091197982 1902269.7762671292293817)", - "surface": 103010000, - "canton": null, - "numero_insee": "40158" - } - }, - { - "pk": 4932, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LOUER", - "center": "POINT (339806.1181259048171341 1866891.2097677204292268)", - "surface": 2760000, - "canton": null, - "numero_insee": "40159" - } - }, - { - "pk": 28579, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LOURQUEN", - "center": "POINT (347539.6182599253952503 1863851.2419000095687807)", - "surface": 5940000, - "canton": null, - "numero_insee": "40160" - } - }, - { - "pk": 27876, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LUBBON", - "center": "POINT (411376.6688329294556752 1904320.5493376872036606)", - "surface": 48200000, - "canton": null, - "numero_insee": "40161" - } - }, - { - "pk": 3665, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LUCBARDEZ-ET-BARGUES", - "center": "POINT (379362.0066507800947875 1889741.0753243882209063)", - "surface": 21650000, - "canton": null, - "numero_insee": "40162" - } - }, - { - "pk": 34240, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LUE", - "center": "POINT (334759.6898815759923309 1920708.4452011403627694)", - "surface": 96600000, - "canton": null, - "numero_insee": "40163" - } - }, - { - "pk": 3517, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "RETJONS", - "center": "POINT (388627.2905522393994033 1907336.3758124983869493)", - "surface": 78130000, - "canton": null, - "numero_insee": "40164" - } - }, - { - "pk": 12786, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LUGLON", - "center": "POINT (354528.1613207911723293 1902751.2005617618560791)", - "surface": 41220000, - "canton": null, - "numero_insee": "40165" - } - }, - { - "pk": 31924, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LUSSAGNET", - "center": "POINT (392864.5800955542363226 1866927.1241741310805082)", - "surface": 8410000, - "canton": null, - "numero_insee": "40166" - } - }, - { - "pk": 16162, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LUXEY", - "center": "POINT (371926.5088964252499864 1917409.8445162810385227)", - "surface": 160490000, - "canton": null, - "numero_insee": "40167" - } - }, - { - "pk": 23341, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAGESCQ", - "center": "POINT (314954.0412812366848812 1869891.0758451581932604)", - "surface": 77190000, - "canton": null, - "numero_insee": "40168" - } - }, - { - "pk": 36714, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAILLAS", - "center": "POINT (398870.0076839771936648 1915629.6246357602067292)", - "surface": 63490000, - "canton": null, - "numero_insee": "40169" - } - }, - { - "pk": 27841, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAILLERES", - "center": "POINT (377011.8621470302459784 1895528.0487099324818701)", - "surface": 15080000, - "canton": null, - "numero_insee": "40170" - } - }, - { - "pk": 10929, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MANO", - "center": "POINT (360724.6103415395482443 1940542.4063033412676305)", - "surface": 32590000, - "canton": null, - "numero_insee": "40171" - } - }, - { - "pk": 32801, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MANT", - "center": "POINT (370400.0182841288624331 1847420.5907339118421078)", - "surface": 19620000, - "canton": null, - "numero_insee": "40172" - } - }, - { - "pk": 37503, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAURIES", - "center": "POINT (383897.7641302685369737 1849533.9538706673774868)", - "surface": 5460000, - "canton": null, - "numero_insee": "40174" - } - }, - { - "pk": 5290, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAURRIN", - "center": "POINT (381802.0258158561773598 1873042.8336721365340054)", - "surface": 13380000, - "canton": null, - "numero_insee": "40175" - } - }, - { - "pk": 31517, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAUVEZIN-D'ARMAGNAC", - "center": "POINT (401707.1245258084964007 1887222.2749018766917288)", - "surface": 4720000, - "canton": null, - "numero_insee": "40176" - } - }, - { - "pk": 20002, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAYLIS", - "center": "POINT (354885.0695565744535998 1859306.4528372872155160)", - "surface": 12270000, - "canton": null, - "numero_insee": "40177" - } - }, - { - "pk": 33433, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MAZEROLLES", - "center": "POINT (376940.1964220376685262 1879910.4043074520304799)", - "surface": 15960000, - "canton": null, - "numero_insee": "40178" - } - }, - { - "pk": 21574, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MEES", - "center": "POINT (320920.0376992939854972 1862631.8257189248688519)", - "surface": 15080000, - "canton": null, - "numero_insee": "40179" - } - }, - { - "pk": 22026, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MEILHAN", - "center": "POINT (355934.9841173831373453 1877735.4610389212612063)", - "surface": 38770000, - "canton": null, - "numero_insee": "40180" - } - }, - { - "pk": 36577, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MESSANGES", - "center": "POINT (301999.6845735623501241 1874790.6158466585911810)", - "surface": 34090000, - "canton": null, - "numero_insee": "40181" - } - }, - { - "pk": 14562, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MEZOS", - "center": "POINT (321878.6454693045816384 1904485.5583115548361093)", - "surface": 88790000, - "canton": null, - "numero_insee": "40182" - } - }, - { - "pk": 16197, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MIMBASTE", - "center": "POINT (333797.4512419320526533 1854928.6685475739650428)", - "surface": 20630000, - "canton": null, - "numero_insee": "40183" - } - }, - { - "pk": 17680, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MIMIZAN", - "center": "POINT (313373.4459363727946766 1916228.6465695784427226)", - "surface": 115440000, - "canton": null, - "numero_insee": "40184" - } - }, - { - "pk": 29435, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MIRAMONT-SENSACQ", - "center": "POINT (385018.7147403328563087 1847140.4957729862071574)", - "surface": 25560000, - "canton": null, - "numero_insee": "40185" - } - }, - { - "pk": 21441, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MISSON", - "center": "POINT (333553.7807504778611474 1848018.9377792193554342)", - "surface": 14450000, - "canton": null, - "numero_insee": "40186" - } - }, - { - "pk": 20027, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MOLIETS-ET-MAA", - "center": "POINT (302458.4557958592195064 1879899.9911288809962571)", - "surface": 27890000, - "canton": null, - "numero_insee": "40187" - } - }, - { - "pk": 3169, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MOMUY", - "center": "POINT (359461.3638864333624952 1850634.3373347399756312)", - "surface": 13240000, - "canton": null, - "numero_insee": "40188" - } - }, - { - "pk": 31932, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONGET", - "center": "POINT (367625.8844106610631570 1843893.8348740017972887)", - "surface": 5680000, - "canton": null, - "numero_insee": "40189" - } - }, - { - "pk": 5294, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONSEGUR", - "center": "POINT (367074.3055138435447589 1850096.2610699774231762)", - "surface": 19940000, - "canton": null, - "numero_insee": "40190" - } - }, - { - "pk": 15179, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONTAUT", - "center": "POINT (358558.5018829979235306 1863040.7566676293499768)", - "surface": 14240000, - "canton": null, - "numero_insee": "40191" - } - }, - { - "pk": 36743, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONT-DE-MARSAN", - "center": "POINT (372621.7598859807476401 1881576.7314432235434651)", - "surface": 36620000, - "canton": null, - "numero_insee": "40192" - } - }, - { - "pk": 11943, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONTEGUT", - "center": "POINT (395576.7004019886953756 1877961.6278583263047040)", - "surface": 4870000, - "canton": null, - "numero_insee": "40193" - } - }, - { - "pk": 36316, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONTFORT-EN-CHALOSSE", - "center": "POINT (343959.6882876018062234 1860918.6272684305440634)", - "surface": 11480000, - "canton": null, - "numero_insee": "40194" - } - }, - { - "pk": 18566, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONTGAILLARD", - "center": "POINT (372852.0093539846129715 1865761.1895526496227831)", - "surface": 20770000, - "canton": null, - "numero_insee": "40195" - } - }, - { - "pk": 18535, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MONTSOUE", - "center": "POINT (370673.6019818227505311 1862840.0451572728343308)", - "surface": 17980000, - "canton": null, - "numero_insee": "40196" - } - }, - { - "pk": 19469, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MORCENX", - "center": "POINT (341248.3294657936785370 1898537.7313735629431903)", - "surface": 61940000, - "canton": null, - "numero_insee": "40197" - } - }, - { - "pk": 35864, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MORGANX", - "center": "POINT (364780.9386178191052750 1848976.1663544329348952)", - "surface": 5210000, - "canton": null, - "numero_insee": "40198" - } - }, - { - "pk": 8361, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MOUSCARDES", - "center": "POINT (339557.6506338068284094 1848368.5246946858242154)", - "surface": 9170000, - "canton": null, - "numero_insee": "40199" - } - }, - { - "pk": 21952, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MOUSTEY", - "center": "POINT (353849.0370657072635368 1936681.9065442625433207)", - "surface": 67360000, - "canton": null, - "numero_insee": "40200" - } - }, - { - "pk": 17364, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "MUGRON", - "center": "POINT (350835.6632275157608092 1864779.3079071280080825)", - "surface": 16500000, - "canton": null, - "numero_insee": "40201" - } - }, - { - "pk": 13231, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "NARROSSE", - "center": "POINT (330049.2471556880627759 1860303.9632180379703641)", - "surface": 10530000, - "canton": null, - "numero_insee": "40202" - } - }, - { - "pk": 12353, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "NASSIET", - "center": "POINT (355372.6744223604910076 1848698.6053928188048303)", - "surface": 12010000, - "canton": null, - "numero_insee": "40203" - } - }, - { - "pk": 29446, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "NERBIS", - "center": "POINT (353229.9431290240027010 1865800.0840724946465343)", - "surface": 4230000, - "canton": null, - "numero_insee": "40204" - } - }, - { - "pk": 30743, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "NOUSSE", - "center": "POINT (345145.3303995957248844 1862830.4738681192975491)", - "surface": 3890000, - "canton": null, - "numero_insee": "40205" - } - }, - { - "pk": 10542, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "OEYREGAVE", - "center": "POINT (321888.1715214409050532 1842216.9028473549988121)", - "surface": 7940000, - "canton": null, - "numero_insee": "40206" - } - }, - { - "pk": 35967, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "OEYRELUY", - "center": "POINT (324259.5783614363172092 1858254.2815057740081102)", - "surface": 5620000, - "canton": null, - "numero_insee": "40207" - } - }, - { - "pk": 24325, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ONARD", - "center": "POINT (344593.0416341957752593 1869132.9322651922702789)", - "surface": 6110000, - "canton": null, - "numero_insee": "40208" - } - }, - { - "pk": 17942, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ONESSE-ET-LAHARIE", - "center": "POINT (330404.5033749220892787 1902453.1422575933393091)", - "surface": 132480000, - "canton": null, - "numero_insee": "40210" - } - }, - { - "pk": 33609, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ORIST", - "center": "POINT (316379.1608331546303816 1854785.9339658061508089)", - "surface": 15050000, - "canton": null, - "numero_insee": "40211" - } - }, - { - "pk": 35753, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ORTHEVIELLE", - "center": "POINT (318249.0995946382172406 1846491.9369021570309997)", - "surface": 14010000, - "canton": null, - "numero_insee": "40212" - } - }, - { - "pk": 24506, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ORX", - "center": "POINT (300285.1431676940992475 1851851.1097730095498264)", - "surface": 12070000, - "canton": null, - "numero_insee": "40213" - } - }, - { - "pk": 6118, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "OSSAGES", - "center": "POINT (339886.7168120031710714 1844867.2907589662354439)", - "surface": 14390000, - "canton": null, - "numero_insee": "40214" - } - }, - { - "pk": 34727, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "OUSSE-SUZAN", - "center": "POINT (351750.1760490412125364 1887511.8400292270816863)", - "surface": 24570000, - "canton": null, - "numero_insee": "40215" - } - }, - { - "pk": 37595, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "OZOURT", - "center": "POINT (340396.1712562127504498 1855983.9169065123423934)", - "surface": 4140000, - "canton": null, - "numero_insee": "40216" - } - }, - { - "pk": 35562, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PARENTIS-EN-BORN", - "center": "POINT (328552.6766162016429007 1932970.6745030041784048)", - "surface": 124410000, - "canton": null, - "numero_insee": "40217" - } - }, - { - "pk": 22146, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PARLEBOSCQ", - "center": "POINT (414945.4533340382622555 1884328.2642431459389627)", - "surface": 40160000, - "canton": null, - "numero_insee": "40218" - } - }, - { - "pk": 19209, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PAYROS-CAZAUTETS", - "center": "POINT (378981.0648693139664829 1850895.0309580657631159)", - "surface": 6360000, - "canton": null, - "numero_insee": "40219" - } - }, - { - "pk": 26386, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PECORADE", - "center": "POINT (382060.4169983902247623 1853823.6336326836608350)", - "surface": 4190000, - "canton": null, - "numero_insee": "40220" - } - }, - { - "pk": 17654, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PERQUIE", - "center": "POINT (391078.6566882390761748 1877123.6682069192174822)", - "surface": 26410000, - "canton": null, - "numero_insee": "40221" - } - }, - { - "pk": 13770, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PEY", - "center": "POINT (313494.9590647828299552 1852459.7453456290531904)", - "surface": 14170000, - "canton": null, - "numero_insee": "40222" - } - }, - { - "pk": 16432, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PEYRE", - "center": "POINT (365811.6311560212634504 1845380.5998608614318073)", - "surface": 10420000, - "canton": null, - "numero_insee": "40223" - } - }, - { - "pk": 31600, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PEYREHORADE", - "center": "POINT (321359.7583330668276176 1845616.4038126838859171)", - "surface": 16250000, - "canton": null, - "numero_insee": "40224" - } - }, - { - "pk": 21467, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PHILONDENX", - "center": "POINT (376230.0337137257447466 1844565.3115533243399113)", - "surface": 9750000, - "canton": null, - "numero_insee": "40225" - } - }, - { - "pk": 22670, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PIMBO", - "center": "POINT (380527.9826369492802769 1845401.5978878238238394)", - "surface": 10880000, - "canton": null, - "numero_insee": "40226" - } - }, - { - "pk": 31978, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PISSOS", - "center": "POINT (351029.1782384596299380 1926548.0272152929101139)", - "surface": 141370000, - "canton": null, - "numero_insee": "40227" - } - }, - { - "pk": 37649, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "POMAREZ", - "center": "POINT (343333.7242718770867214 1851803.3261101553216577)", - "surface": 30820000, - "canton": null, - "numero_insee": "40228" - } - }, - { - "pk": 18512, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PONTENX-LES-FORGES", - "center": "POINT (326332.4017191065941006 1922941.8322485217358917)", - "surface": 80920000, - "canton": null, - "numero_insee": "40229" - } - }, - { - "pk": 15330, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PONTONX-SUR-L'ADOUR", - "center": "POINT (335961.9272856169845909 1871765.1016013869084418)", - "surface": 49220000, - "canton": null, - "numero_insee": "40230" - } - }, - { - "pk": 26147, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PORT-DE-LANNE", - "center": "POINT (315542.1458998965681531 1846970.3323114656377584)", - "surface": 12760000, - "canton": null, - "numero_insee": "40231" - } - }, - { - "pk": 22701, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "POUDENX", - "center": "POINT (363197.3604384667123668 1846760.6751347067765892)", - "surface": 7610000, - "canton": null, - "numero_insee": "40232" - } - }, - { - "pk": 16060, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "POUILLON", - "center": "POINT (330128.0318328696885146 1850693.8780490495264530)", - "surface": 49680000, - "canton": null, - "numero_insee": "40233" - } - }, - { - "pk": 15695, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "POUYDESSEAUX", - "center": "POINT (384257.1290579679189250 1890982.6947282275650650)", - "surface": 33900000, - "canton": null, - "numero_insee": "40234" - } - }, - { - "pk": 17365, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "POYANNE", - "center": "POINT (345817.2992257048026659 1866339.8779449341818690)", - "surface": 10860000, - "canton": null, - "numero_insee": "40235" - } - }, - { - "pk": 14376, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "POYARTIN", - "center": "POINT (341570.3214550229604356 1859297.2346788728609681)", - "surface": 12880000, - "canton": null, - "numero_insee": "40236" - } - }, - { - "pk": 36763, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PRECHACQ-LES-BAINS", - "center": "POINT (337502.9005371668608859 1866972.4251452721655369)", - "surface": 8600000, - "canton": null, - "numero_insee": "40237" - } - }, - { - "pk": 5982, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PUJO-LE-PLAN", - "center": "POINT (384372.5615642061457038 1876968.3040581005625427)", - "surface": 18640000, - "canton": null, - "numero_insee": "40238" - } - }, - { - "pk": 11512, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "PUYOL-CAZALET", - "center": "POINT (378699.7062955216970295 1848590.1363995193969458)", - "surface": 4750000, - "canton": null, - "numero_insee": "40239" - } - }, - { - "pk": 19755, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "RENUNG", - "center": "POINT (381774.4676593645126559 1864232.8646726417355239)", - "surface": 22390000, - "canton": null, - "numero_insee": "40240" - } - }, - { - "pk": 36854, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "RION-DES-LANDES", - "center": "POINT (337139.2911405657068826 1886891.3731149369850755)", - "surface": 118270000, - "canton": null, - "numero_insee": "40243" - } - }, - { - "pk": 27171, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "RIVIERE-SAAS-ET-GOURBY", - "center": "POINT (316824.7665164327481762 1861497.0616843809839338)", - "surface": 27520000, - "canton": null, - "numero_insee": "40244" - } - }, - { - "pk": 22328, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "ROQUEFORT", - "center": "POINT (386314.7465458054793999 1896405.5226505291648209)", - "surface": 12040000, - "canton": null, - "numero_insee": "40245" - } - }, - { - "pk": 23371, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SABRES", - "center": "POINT (354070.1988388173049316 1909755.0001700900029391)", - "surface": 162250000, - "canton": null, - "numero_insee": "40246" - } - }, - { - "pk": 25823, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-AGNET", - "center": "POINT (389113.9636608886066824 1848275.4735999279655516)", - "surface": 7890000, - "canton": null, - "numero_insee": "40247" - } - }, - { - "pk": 31791, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-ANDRE-DE-SEIGNANX", - "center": "POINT (301122.8234391227597371 1847352.9063608949072659)", - "surface": 19750000, - "canton": null, - "numero_insee": "40248" - } - }, - { - "pk": 19211, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-AUBIN", - "center": "POINT (353360.4736034189118072 1862097.0452889534644783)", - "surface": 9690000, - "canton": null, - "numero_insee": "40249" - } - }, - { - "pk": 27245, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-AVIT", - "center": "POINT (375383.4503957580309361 1886604.9376891353167593)", - "surface": 40760000, - "canton": null, - "numero_insee": "40250" - } - }, - { - "pk": 23877, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-BARTHELEMY", - "center": "POINT (303066.5893082261900418 1842263.0584693746641278)", - "surface": 5730000, - "canton": null, - "numero_insee": "40251" - } - }, - { - "pk": 14407, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINTE-COLOMBE", - "center": "POINT (366412.7481179556343704 1857499.0943311885930598)", - "surface": 12890000, - "canton": null, - "numero_insee": "40252" - } - }, - { - "pk": 27500, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-CRICQ-DU-GAVE", - "center": "POINT (328999.8028660503332503 1841774.6202370226383209)", - "surface": 8590000, - "canton": null, - "numero_insee": "40254" - } - }, - { - "pk": 20242, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-CRICQ-VILLENEUVE", - "center": "POINT (383936.6945502138696611 1881269.4412133772857487)", - "surface": 15510000, - "canton": null, - "numero_insee": "40255" - } - }, - { - "pk": 14966, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-ETIENNE-D'ORTHE", - "center": "POINT (315121.2325475474935956 1849469.6947659850120544)", - "surface": 11180000, - "canton": null, - "numero_insee": "40256" - } - }, - { - "pk": 33237, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINTE-EULALIE-EN-BORN", - "center": "POINT (316397.0834494534065016 1925963.7770826970227063)", - "surface": 71130000, - "canton": null, - "numero_insee": "40257" - } - }, - { - "pk": 35559, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINTE-FOY", - "center": "POINT (385907.4179714727215469 1885089.8406863461714238)", - "surface": 9270000, - "canton": null, - "numero_insee": "40258" - } - }, - { - "pk": 6448, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-GEOURS-D'AURIBAT", - "center": "POINT (343812.7501516458578408 1866623.7565022255294025)", - "surface": 5640000, - "canton": null, - "numero_insee": "40260" - } - }, - { - "pk": 8622, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-GEOURS-DE-MAREMNE", - "center": "POINT (311628.3356038377969526 1860353.2956640152260661)", - "surface": 43360000, - "canton": null, - "numero_insee": "40261" - } - }, - { - "pk": 20969, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-GOR", - "center": "POINT (393694.2287942024995573 1899870.0234710131771863)", - "surface": 53810000, - "canton": null, - "numero_insee": "40262" - } - }, - { - "pk": 26690, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-JEAN-DE-LIER", - "center": "POINT (340781.6965002822689712 1870002.6497498117387295)", - "surface": 8160000, - "canton": null, - "numero_insee": "40263" - } - }, - { - "pk": 30260, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-JEAN-DE-MARSACQ", - "center": "POINT (309186.3333076923736371 1852925.0410168585367501)", - "surface": 26220000, - "canton": null, - "numero_insee": "40264" - } - }, - { - "pk": 24086, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-JULIEN-D'ARMAGNAC", - "center": "POINT (401175.2341734362998977 1891022.0358702994417399)", - "surface": 14710000, - "canton": null, - "numero_insee": "40265" - } - }, - { - "pk": 17608, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-JULIEN-EN-BORN", - "center": "POINT (312661.1119968407438137 1905411.1751146449241787)", - "surface": 72940000, - "canton": null, - "numero_insee": "40266" - } - }, - { - "pk": 16877, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-JUSTIN", - "center": "POINT (393860.3443538028514013 1891862.6972629819065332)", - "surface": 66240000, - "canton": null, - "numero_insee": "40267" - } - }, - { - "pk": 7396, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-LAURENT-DE-GOSSE", - "center": "POINT (306871.4404929412994534 1842194.0707929495256394)", - "surface": 17530000, - "canton": null, - "numero_insee": "40268" - } - }, - { - "pk": 17235, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-LON-LES-MINES", - "center": "POINT (319499.6386144915595651 1852709.1379556655883789)", - "surface": 21730000, - "canton": null, - "numero_insee": "40269" - } - }, - { - "pk": 5030, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-LOUBOUER", - "center": "POINT (377529.3203026403207332 1856989.8972401251085103)", - "surface": 17020000, - "canton": null, - "numero_insee": "40270" - } - }, - { - "pk": 14378, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINTE-MARIE-DE-GOSSE", - "center": "POINT (311249.8893994370009750 1845433.5068977831397206)", - "surface": 26500000, - "canton": null, - "numero_insee": "40271" - } - }, - { - "pk": 12753, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-MARTIN-DE-HINX", - "center": "POINT (307718.3352606040425599 1848808.4296805185731500)", - "surface": 25610000, - "canton": null, - "numero_insee": "40272" - } - }, - { - "pk": 27295, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-MARTIN-DE-SEIGNANX", - "center": "POINT (298548.7185063273063861 1843827.9185642094817013)", - "surface": 45740000, - "canton": null, - "numero_insee": "40273" - } - }, - { - "pk": 20295, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-MARTIN-D'ONEY", - "center": "POINT (359776.4858586326008663 1885375.3746355141047388)", - "surface": 34610000, - "canton": null, - "numero_insee": "40274" - } - }, - { - "pk": 31020, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-MAURICE-SUR-ADOUR", - "center": "POINT (374122.0577529170550406 1869575.8512657575774938)", - "surface": 9610000, - "canton": null, - "numero_insee": "40275" - } - }, - { - "pk": 22756, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-MICHEL-ESCALUS", - "center": "POINT (311350.4520468839909881 1882075.0412659482099116)", - "surface": 17770000, - "canton": null, - "numero_insee": "40276" - } - }, - { - "pk": 22754, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-PANDELON", - "center": "POINT (327367.7520353480358608 1857679.0831389578524977)", - "surface": 9080000, - "canton": null, - "numero_insee": "40277" - } - }, - { - "pk": 3203, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-PAUL-EN-BORN", - "center": "POINT (321073.8197316497098655 1917192.6534648155793548)", - "surface": 43470000, - "canton": null, - "numero_insee": "40278" - } - }, - { - "pk": 11182, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-PAUL-LES-DAX", - "center": "POINT (324392.5287451781332493 1866464.4973695678636432)", - "surface": 58260000, - "canton": null, - "numero_insee": "40279" - } - }, - { - "pk": 16875, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-PERDON", - "center": "POINT (364331.3169642969733104 1879306.1230867225676775)", - "surface": 30080000, - "canton": null, - "numero_insee": "40280" - } - }, - { - "pk": 26833, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-PIERRE-DU-MONT", - "center": "POINT (369643.3734699719352648 1878548.9307589191012084)", - "surface": 26260000, - "canton": null, - "numero_insee": "40281" - } - }, - { - "pk": 20760, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-SEVER", - "center": "POINT (365939.0592192510957830 1866405.0976846369449049)", - "surface": 47050000, - "canton": null, - "numero_insee": "40282" - } - }, - { - "pk": 31565, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-VINCENT-DE-TYROSSE", - "center": "POINT (306245.6072704179096036 1857506.1260030337143689)", - "surface": 20930000, - "canton": null, - "numero_insee": "40284" - } - }, - { - "pk": 5317, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAINT-YAGUEN", - "center": "POINT (352391.0789341831696220 1882611.7347416030243039)", - "surface": 37900000, - "canton": null, - "numero_insee": "40285" - } - }, - { - "pk": 20698, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAMADET", - "center": "POINT (371466.5833537416765466 1851634.0752681447193027)", - "surface": 26230000, - "canton": null, - "numero_insee": "40286" - } - }, - { - "pk": 7670, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SANGUINET", - "center": "POINT (329232.8897336458321661 1947691.7692445756401867)", - "surface": 100430000, - "canton": null, - "numero_insee": "40287" - } - }, - { - "pk": 19204, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SARBAZAN", - "center": "POINT (387437.3095761722652242 1893811.9428027090616524)", - "surface": 22660000, - "canton": null, - "numero_insee": "40288" - } - }, - { - "pk": 20297, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SARRAZIET", - "center": "POINT (370996.9765100608346984 1860039.5906691404525191)", - "surface": 7140000, - "canton": null, - "numero_insee": "40289" - } - }, - { - "pk": 15182, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SARRON", - "center": "POINT (389528.4103592056781054 1846576.9812365404795855)", - "surface": 3980000, - "canton": null, - "numero_insee": "40290" - } - }, - { - "pk": 9958, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAUBION", - "center": "POINT (303728.2446147963055409 1859287.5439568720757961)", - "surface": 7710000, - "canton": null, - "numero_insee": "40291" - } - }, - { - "pk": 7172, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAUBRIGUES", - "center": "POINT (304289.3601878224872053 1851883.8566652501467615)", - "surface": 21450000, - "canton": null, - "numero_insee": "40292" - } - }, - { - "pk": 11315, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAUBUSSE", - "center": "POINT (315550.4526187619194388 1858182.9480822246987373)", - "surface": 10330000, - "canton": null, - "numero_insee": "40293" - } - }, - { - "pk": 19942, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAUGNAC-ET-CAMBRAN", - "center": "POINT (331469.5904125633533113 1858013.0430675786919892)", - "surface": 13350000, - "canton": null, - "numero_insee": "40294" - } - }, - { - "pk": 20619, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SAUGNACQ-ET-MURET", - "center": "POINT (345535.8868770773406141 1937214.2913858136162162)", - "surface": 109420000, - "canton": null, - "numero_insee": "40295" - } - }, - { - "pk": 34445, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SEIGNOSSE", - "center": "POINT (298694.3568477748194709 1862750.2830528724007308)", - "surface": 36300000, - "canton": null, - "numero_insee": "40296" - } - }, - { - "pk": 9423, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LE SEN", - "center": "POINT (372798.1395627128658816 1908807.7726518160197884)", - "surface": 50960000, - "canton": null, - "numero_insee": "40297" - } - }, - { - "pk": 5229, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SERRES-GASTON", - "center": "POINT (369030.2950410854537040 1855718.6156975566409528)", - "surface": 9140000, - "canton": null, - "numero_insee": "40298" - } - }, - { - "pk": 28567, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SERRESLOUS-ET-ARRIBANS", - "center": "POINT (359317.6499643031274900 1855939.0852022988256067)", - "surface": 5550000, - "canton": null, - "numero_insee": "40299" - } - }, - { - "pk": 33131, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SEYRESSE", - "center": "POINT (325752.1276071328902617 1859367.7390550442505628)", - "surface": 2220000, - "canton": null, - "numero_insee": "40300" - } - }, - { - "pk": 7277, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SIEST", - "center": "POINT (319773.7167049809941091 1855914.9634972312487662)", - "surface": 2940000, - "canton": null, - "numero_insee": "40301" - } - }, - { - "pk": 6862, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SINDERES", - "center": "POINT (333550.3329179875436239 1897273.2876776680350304)", - "surface": 20430000, - "canton": null, - "numero_insee": "40302" - } - }, - { - "pk": 25244, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SOLFERINO", - "center": "POINT (340668.9785810724133626 1908143.3716324893757701)", - "surface": 98830000, - "canton": null, - "numero_insee": "40303" - } - }, - { - "pk": 11681, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SOORTS-HOSSEGOR", - "center": "POINT (297323.9860776903224178 1858934.8443007525056601)", - "surface": 14320000, - "canton": null, - "numero_insee": "40304" - } - }, - { - "pk": 33510, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SORBETS", - "center": "POINT (384875.7264140191255137 1852345.1455910825170577)", - "surface": 11920000, - "canton": null, - "numero_insee": "40305" - } - }, - { - "pk": 3202, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SORDE-L'ABBAYE", - "center": "POINT (325999.0824531181133352 1841449.6858377617318183)", - "surface": 16270000, - "canton": null, - "numero_insee": "40306" - } - }, - { - "pk": 20088, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SORE", - "center": "POINT (364638.6308219679049216 1927160.3769841413013637)", - "surface": 148160000, - "canton": null, - "numero_insee": "40307" - } - }, - { - "pk": 23369, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SORT-EN-CHALOSSE", - "center": "POINT (336669.2947401069104671 1858756.4663705220445991)", - "surface": 15720000, - "canton": null, - "numero_insee": "40308" - } - }, - { - "pk": 20227, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SOUPROSSE", - "center": "POINT (353992.9480708653572947 1870411.4491059607826173)", - "surface": 42450000, - "canton": null, - "numero_insee": "40309" - } - }, - { - "pk": 17017, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "SOUSTONS", - "center": "POINT (304560.4100567595451139 1867703.6972324608359486)", - "surface": 107660000, - "canton": null, - "numero_insee": "40310" - } - }, - { - "pk": 14006, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TALLER", - "center": "POINT (326569.4133585665840656 1881799.2323210695758462)", - "surface": 41240000, - "canton": null, - "numero_insee": "40311" - } - }, - { - "pk": 3166, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TARNOS", - "center": "POINT (292335.6002641621162184 1844578.0377323410939425)", - "surface": 27400000, - "canton": null, - "numero_insee": "40312" - } - }, - { - "pk": 11120, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TARTAS", - "center": "POINT (348762.0647015374270268 1873471.9139808756299317)", - "surface": 30380000, - "canton": null, - "numero_insee": "40313" - } - }, - { - "pk": 12530, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TERCIS-LES-BAINS", - "center": "POINT (321257.2519645194988698 1858129.5726708716247231)", - "surface": 10280000, - "canton": null, - "numero_insee": "40314" - } - }, - { - "pk": 29298, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TETHIEU", - "center": "POINT (334206.8504079891717993 1866044.3923755809664726)", - "surface": 10960000, - "canton": null, - "numero_insee": "40315" - } - }, - { - "pk": 36648, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TILH", - "center": "POINT (343272.2366091527510434 1847097.5486344192177057)", - "surface": 22910000, - "canton": null, - "numero_insee": "40316" - } - }, - { - "pk": 4827, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TOSSE", - "center": "POINT (305108.4230325352982618 1861901.7314703401643783)", - "surface": 18000000, - "canton": null, - "numero_insee": "40317" - } - }, - { - "pk": 17340, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TOULOUZETTE", - "center": "POINT (357231.6436741825891659 1866133.2951294616796076)", - "surface": 11590000, - "canton": null, - "numero_insee": "40318" - } - }, - { - "pk": 15351, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "TRENSACQ", - "center": "POINT (355902.2189321281621233 1918279.1823932516854256)", - "surface": 78930000, - "canton": null, - "numero_insee": "40319" - } - }, - { - "pk": 33695, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "UCHACQ-ET-PARENTIS", - "center": "POINT (368172.7669961479841731 1886946.0494099459610879)", - "surface": 38580000, - "canton": null, - "numero_insee": "40320" - } - }, - { - "pk": 33221, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "URGONS", - "center": "POINT (376265.0393947586417198 1852474.4618559621740133)", - "surface": 11560000, - "canton": null, - "numero_insee": "40321" - } - }, - { - "pk": 34467, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "UZA", - "center": "POINT (316519.8746150382794440 1898735.4953733356669545)", - "surface": 12860000, - "canton": null, - "numero_insee": "40322" - } - }, - { - "pk": 10718, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VERT", - "center": "POINT (363630.8142469645245001 1903626.8698422710876912)", - "surface": 39840000, - "canton": null, - "numero_insee": "40323" - } - }, - { - "pk": 20141, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VICQ-D'AURIBAT", - "center": "POINT (342584.3891884901095182 1869917.3321006151381880)", - "surface": 4210000, - "canton": null, - "numero_insee": "40324" - } - }, - { - "pk": 14563, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VIELLE-TURSAN", - "center": "POINT (373919.7812346690334380 1857660.9672633109148592)", - "surface": 12780000, - "canton": null, - "numero_insee": "40325" - } - }, - { - "pk": 15616, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VIELLE-SAINT-GIRONS", - "center": "POINT (305688.9952950607985258 1888836.1793775283731520)", - "surface": 74090000, - "canton": null, - "numero_insee": "40326" - } - }, - { - "pk": 36722, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VIELLE-SOUBIRAN", - "center": "POINT (398814.2692903639981523 1898110.2861204415094107)", - "surface": 32960000, - "canton": null, - "numero_insee": "40327" - } - }, - { - "pk": 13280, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VIEUX-BOUCAU-LES-BAINS", - "center": "POINT (299117.9523960027145222 1872164.1800768885295838)", - "surface": 4290000, - "canton": null, - "numero_insee": "40328" - } - }, - { - "pk": 17454, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "LE VIGNAU", - "center": "POINT (388551.8588317017420195 1867892.6873653773218393)", - "surface": 11140000, - "canton": null, - "numero_insee": "40329" - } - }, - { - "pk": 36072, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VILLENAVE", - "center": "POINT (346223.9870254191337153 1889969.1982913217507303)", - "surface": 27350000, - "canton": null, - "numero_insee": "40330" - } - }, - { - "pk": 5569, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "VILLENEUVE-DE-MARSAN", - "center": "POINT (387636.3809525746037252 1881800.4674647452775389)", - "surface": 23280000, - "canton": null, - "numero_insee": "40331" - } - }, - { - "pk": 35801, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "YCHOUX", - "center": "POINT (337153.8354762761155143 1933942.1381257853936404)", - "surface": 111590000, - "canton": null, - "numero_insee": "40332" - } - }, - { - "pk": 33724, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "YGOS-SAINT-SATURNIN", - "center": "POINT (354508.6443811407079920 1892940.3940547897946090)", - "surface": 58270000, - "canton": null, - "numero_insee": "40333" - } - }, - { - "pk": 6835, - "model": "ishtar_common.town", - "fields": { - "departement": 41, - "name": "YZOSSE", - "center": "POINT (329526.5671634778263979 1863002.6844988323282450)", - "surface": 5370000, - "canton": null, - "numero_insee": "40334" - } - }, - { - "pk": 9028, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "AMBLOY", - "center": "POINT (497366.1519250122946687 2301902.0263391123153269)", - "surface": 13160000, - "canton": null, - "numero_insee": "41001" - } - }, - { - "pk": 27123, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ANGE", - "center": "POINT (517047.4007465083850548 2257930.7183677786961198)", - "surface": 17380000, - "canton": null, - "numero_insee": "41002" - } - }, - { - "pk": 29258, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "AREINES", - "center": "POINT (507493.4450968297896907 2311593.6924904552288353)", - "surface": 4850000, - "canton": null, - "numero_insee": "41003" - } - }, - { - "pk": 31082, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ARTINS", - "center": "POINT (480812.9150141175487079 2306768.4053595867007971)", - "surface": 11950000, - "canton": null, - "numero_insee": "41004" - } - }, - { - "pk": 27085, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ARVILLE", - "center": "POINT (497336.9383965030428953 2341531.9927687277086079)", - "surface": 9620000, - "canton": null, - "numero_insee": "41005" - } - }, - { - "pk": 10561, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "AUTAINVILLE", - "center": "POINT (531434.3268136489205062 2320900.1087880721315742)", - "surface": 25150000, - "canton": null, - "numero_insee": "41006" - } - }, - { - "pk": 23991, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "AUTHON", - "center": "POINT (490726.2490441947011277 2294040.7481316588819027)", - "surface": 32390000, - "canton": null, - "numero_insee": "41007" - } - }, - { - "pk": 29898, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "AVARAY", - "center": "POINT (541290.5785344438627362 2303068.5581433707848191)", - "surface": 13890000, - "canton": null, - "numero_insee": "41008" - } - }, - { - "pk": 15830, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "AVERDON", - "center": "POINT (522210.4157607273664325 2298906.3108842633664608)", - "surface": 29240000, - "canton": null, - "numero_insee": "41009" - } - }, - { - "pk": 16997, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "AZE", - "center": "POINT (499731.4621777206775732 2318334.3517466261982918)", - "surface": 31840000, - "canton": null, - "numero_insee": "41010" - } - }, - { - "pk": 7015, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BAIGNEAUX", - "center": "POINT (519124.9206451256759465 2308888.3709217784926295)", - "surface": 6590000, - "canton": null, - "numero_insee": "41011" - } - }, - { - "pk": 18991, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BAILLOU", - "center": "POINT (489204.5220651904819533 2332657.8090770305134356)", - "surface": 19480000, - "canton": null, - "numero_insee": "41012" - } - }, - { - "pk": 8746, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BAUZY", - "center": "POINT (545375.5156804322032258 2281285.5351954475045204)", - "surface": 25730000, - "canton": null, - "numero_insee": "41013" - } - }, - { - "pk": 10882, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BEAUCHENE", - "center": "POINT (497950.4141179635189474 2327926.8566841385327280)", - "surface": 9990000, - "canton": null, - "numero_insee": "41014" - } - }, - { - "pk": 31596, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BEAUVILLIERS", - "center": "POINT (518864.7621703428449109 2316091.7474433118477464)", - "surface": 8130000, - "canton": null, - "numero_insee": "41015" - } - }, - { - "pk": 21439, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BILLY", - "center": "POINT (540070.3325069540878758 2257422.1177957551553845)", - "surface": 26650000, - "canton": null, - "numero_insee": "41016" - } - }, - { - "pk": 29417, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BINAS", - "center": "POINT (534816.6496590276947245 2323330.1504103024490178)", - "surface": 26300000, - "canton": null, - "numero_insee": "41017" - } - }, - { - "pk": 25483, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BLOIS", - "center": "POINT (522406.3839151817373931 2287398.9156046295538545)", - "surface": 37520000, - "canton": null, - "numero_insee": "41018" - } - }, - { - "pk": 37913, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BOISSEAU", - "center": "POINT (522729.1201795460074209 2308718.2451348188333213)", - "surface": 8130000, - "canton": null, - "numero_insee": "41019" - } - }, - { - "pk": 5768, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BONNEVEAU", - "center": "POINT (481856.3739867106196471 2313682.3937415196560323)", - "surface": 10970000, - "canton": null, - "numero_insee": "41020" - } - }, - { - "pk": 15292, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BOUFFRY", - "center": "POINT (506796.5964737831964158 2335205.8649024707265198)", - "surface": 18450000, - "canton": null, - "numero_insee": "41022" - } - }, - { - "pk": 4424, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BOURRE", - "center": "POINT (515914.0788526056567207 2261824.4422127804718912)", - "surface": 4800000, - "canton": null, - "numero_insee": "41023" - } - }, - { - "pk": 33905, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BOURSAY", - "center": "POINT (499481.6264580803690478 2336345.9262325530871749)", - "surface": 22660000, - "canton": null, - "numero_insee": "41024" - } - }, - { - "pk": 5431, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BRACIEUX", - "center": "POINT (540250.9382188214221969 2283744.7334615741856396)", - "surface": 2930000, - "canton": null, - "numero_insee": "41025" - } - }, - { - "pk": 18446, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BREVAINVILLE", - "center": "POINT (520164.8652744714054279 2328211.8024150109849870)", - "surface": 16200000, - "canton": null, - "numero_insee": "41026" - } - }, - { - "pk": 13748, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BRIOU", - "center": "POINT (535201.1765734878135845 2313225.6284141815267503)", - "surface": 10240000, - "canton": null, - "numero_insee": "41027" - } - }, - { - "pk": 30870, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "BUSLOUP", - "center": "POINT (510197.1275839535519481 2323425.2323787310160697)", - "surface": 18960000, - "canton": null, - "numero_insee": "41028" - } - }, - { - "pk": 32188, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CANDE-SUR-BEUVRON", - "center": "POINT (519273.2735945141175762 2279066.2306318758055568)", - "surface": 14510000, - "canton": null, - "numero_insee": "41029" - } - }, - { - "pk": 37068, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CELLE", - "center": "POINT (484641.7169848809717223 2315707.0547477290965617)", - "surface": 12610000, - "canton": null, - "numero_insee": "41030" - } - }, - { - "pk": 24740, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CELLETTES", - "center": "POINT (528061.3109114341204986 2281341.2202220777980983)", - "surface": 20900000, - "canton": null, - "numero_insee": "41031" - } - }, - { - "pk": 28622, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAILLES", - "center": "POINT (523146.9181246444350109 2282601.2878642305731773)", - "surface": 18510000, - "canton": null, - "numero_insee": "41032" - } - }, - { - "pk": 32387, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAMBON-SUR-CISSE", - "center": "POINT (515923.3714088554843329 2284742.8532441905699670)", - "surface": 12800000, - "canton": null, - "numero_insee": "41033" - } - }, - { - "pk": 25677, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAMBORD", - "center": "POINT (540190.7972180640790612 2290949.9160749595612288)", - "surface": 54710000, - "canton": null, - "numero_insee": "41034" - } - }, - { - "pk": 30462, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAMPIGNY-EN-BEAUCE", - "center": "POINT (518977.2966421393211931 2302582.2571550449356437)", - "surface": 22430000, - "canton": null, - "numero_insee": "41035" - } - }, - { - "pk": 5491, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAON", - "center": "POINT (586933.4860824596835300 2290240.0573397157713771)", - "surface": 31720000, - "canton": null, - "numero_insee": "41036" - } - }, - { - "pk": 27599, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA CHAPELLE-ENCHERIE", - "center": "POINT (515774.2658879529917613 2314664.9328397209756076)", - "surface": 10810000, - "canton": null, - "numero_insee": "41037" - } - }, - { - "pk": 33424, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA CHAPELLE-MONTMARTIN", - "center": "POINT (555735.4608510893303901 2251147.7537104818038642)", - "surface": 10930000, - "canton": null, - "numero_insee": "41038" - } - }, - { - "pk": 33351, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA CHAPELLE-SAINT-MARTIN-EN-PLAINE", - "center": "POINT (530573.8275096112629399 2304079.9984997748397291)", - "surface": 22780000, - "canton": null, - "numero_insee": "41039" - } - }, - { - "pk": 31652, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA CHAPELLE-VENDOMOISE", - "center": "POINT (517515.4084711591131054 2297866.4162538247182965)", - "surface": 13180000, - "canton": null, - "numero_insee": "41040" - } - }, - { - "pk": 18742, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA CHAPELLE-VICOMTESSE", - "center": "POINT (502715.4353112233220600 2332569.9569264575839043)", - "surface": 15350000, - "canton": null, - "numero_insee": "41041" - } - }, - { - "pk": 13464, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHATEAUVIEUX", - "center": "POINT (526044.9457032405771315 2247096.7905363300815225)", - "surface": 33550000, - "canton": null, - "numero_insee": "41042" - } - }, - { - "pk": 28189, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHATILLON-SUR-CHER", - "center": "POINT (535391.8887439320096746 2254380.6328813112340868)", - "surface": 29810000, - "canton": null, - "numero_insee": "41043" - } - }, - { - "pk": 16244, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHATRES-SUR-CHER", - "center": "POINT (569209.5366731634130701 2255563.9659336442127824)", - "surface": 35230000, - "canton": null, - "numero_insee": "41044" - } - }, - { - "pk": 26282, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAUMONT-SUR-LOIRE", - "center": "POINT (514207.0652294321916997 2274520.4451827127486467)", - "surface": 26700000, - "canton": null, - "numero_insee": "41045" - } - }, - { - "pk": 21708, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAUMONT-SUR-THARONNE", - "center": "POINT (568917.2283973585581407 2290489.4625766165554523)", - "surface": 80360000, - "canton": null, - "numero_insee": "41046" - } - }, - { - "pk": 26280, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA CHAUSSEE-SAINT-VICTOR", - "center": "POINT (526382.5691931999754161 2290634.5778290466405451)", - "surface": 6730000, - "canton": null, - "numero_insee": "41047" - } - }, - { - "pk": 26992, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHAUVIGNY-DU-PERCHE", - "center": "POINT (505942.6031531419139355 2329594.5351182743906975)", - "surface": 24100000, - "canton": null, - "numero_insee": "41048" - } - }, - { - "pk": 9343, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHEMERY", - "center": "POINT (535826.2966046861838549 2262290.6732418104074895)", - "surface": 35570000, - "canton": null, - "numero_insee": "41049" - } - }, - { - "pk": 36561, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHEVERNY", - "center": "POINT (533413.5681979955406860 2275581.2362934495322406)", - "surface": 32870000, - "canton": null, - "numero_insee": "41050" - } - }, - { - "pk": 32608, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHISSAY-EN-TOURAINE", - "center": "POINT (509205.7880582124344073 2262168.9149859533645213)", - "surface": 18360000, - "canton": null, - "numero_insee": "41051" - } - }, - { - "pk": 12511, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHITENAY", - "center": "POINT (526894.6461397199891508 2277228.2306280271150172)", - "surface": 15820000, - "canton": null, - "numero_insee": "41052" - } - }, - { - "pk": 27643, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHOUE", - "center": "POINT (495096.9213414923870005 2334107.8224985059350729)", - "surface": 36470000, - "canton": null, - "numero_insee": "41053" - } - }, - { - "pk": 33569, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHOUSSY", - "center": "POINT (525410.2641331687336788 2263204.6155943982303143)", - "surface": 15550000, - "canton": null, - "numero_insee": "41054" - } - }, - { - "pk": 34509, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CHOUZY-SUR-CISSE", - "center": "POINT (517255.1500563502195291 2281051.0105276061221957)", - "surface": 22330000, - "canton": null, - "numero_insee": "41055" - } - }, - { - "pk": 35028, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA COLOMBE", - "center": "POINT (527826.8238354584900662 2321470.4862400493584573)", - "surface": 18320000, - "canton": null, - "numero_insee": "41056" - } - }, - { - "pk": 11981, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CONAN", - "center": "POINT (522058.6459647864103317 2305109.8707332089543343)", - "surface": 15400000, - "canton": null, - "numero_insee": "41057" - } - }, - { - "pk": 8098, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CONCRIERS", - "center": "POINT (535936.7328222100622952 2309028.5272243535146117)", - "surface": 4900000, - "canton": null, - "numero_insee": "41058" - } - }, - { - "pk": 17123, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CONTRES", - "center": "POINT (532064.2975324713625014 2269365.0146040418185294)", - "surface": 35960000, - "canton": null, - "numero_insee": "41059" - } - }, - { - "pk": 34112, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CORMENON", - "center": "POINT (493228.8826673144940287 2330089.2795715290121734)", - "surface": 5630000, - "canton": null, - "numero_insee": "41060" - } - }, - { - "pk": 37090, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CORMERAY", - "center": "POINT (529601.6182591444812715 2276650.3218970978632569)", - "surface": 10350000, - "canton": null, - "numero_insee": "41061" - } - }, - { - "pk": 8091, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COUDDES", - "center": "POINT (529514.1276462107198313 2263138.7495822249911726)", - "surface": 18580000, - "canton": null, - "numero_insee": "41062" - } - }, - { - "pk": 31110, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COUFFY", - "center": "POINT (531823.4271959295729175 2250247.5154642104171216)", - "surface": 14920000, - "canton": null, - "numero_insee": "41063" - } - }, - { - "pk": 14135, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COULANGES", - "center": "POINT (515039.3880449654534459 2282733.9068216192536056)", - "surface": 8290000, - "canton": null, - "numero_insee": "41064" - } - }, - { - "pk": 22924, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COULOMMIERS-LA-TOUR", - "center": "POINT (509814.2143583586439490 2309311.2311724517494440)", - "surface": 12150000, - "canton": null, - "numero_insee": "41065" - } - }, - { - "pk": 21322, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COURBOUZON", - "center": "POINT (539722.8557182351360098 2299052.3571045813150704)", - "surface": 7740000, - "canton": null, - "numero_insee": "41066" - } - }, - { - "pk": 3735, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COUR-CHEVERNY", - "center": "POINT (535183.9885870132129639 2279298.9557443424127996)", - "surface": 29560000, - "canton": null, - "numero_insee": "41067" - } - }, - { - "pk": 17701, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COURMEMIN", - "center": "POINT (546531.4750769806560129 2274689.9301678501069546)", - "surface": 26230000, - "canton": null, - "numero_insee": "41068" - } - }, - { - "pk": 30087, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COUR-SUR-LOIRE", - "center": "POINT (530743.1640164722921327 2295774.9388787592761219)", - "surface": 5900000, - "canton": null, - "numero_insee": "41069" - } - }, - { - "pk": 25225, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "COUTURE-SUR-LOIR", - "center": "POINT (476209.6680823741480708 2306730.2055391604080796)", - "surface": 14320000, - "canton": null, - "numero_insee": "41070" - } - }, - { - "pk": 20105, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CROUY-SUR-COSSON", - "center": "POINT (546360.1399711557896808 2295204.7225995301268995)", - "surface": 28290000, - "canton": null, - "numero_insee": "41071" - } - }, - { - "pk": 18136, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "CRUCHERAY", - "center": "POINT (507153.9492664709105156 2304285.2203274024650455)", - "surface": 25590000, - "canton": null, - "numero_insee": "41072" - } - }, - { - "pk": 4292, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "DANZE", - "center": "POINT (501085.8355076732696034 2323949.8883116524666548)", - "surface": 42730000, - "canton": null, - "numero_insee": "41073" - } - }, - { - "pk": 15479, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "DHUIZON", - "center": "POINT (550225.5561257129302248 2287731.1138810263946652)", - "surface": 45730000, - "canton": null, - "numero_insee": "41074" - } - }, - { - "pk": 22276, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "DROUE", - "center": "POINT (505173.0274660844588652 2337894.3856587852351367)", - "surface": 24350000, - "canton": null, - "numero_insee": "41075" - } - }, - { - "pk": 33085, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "EPIAIS", - "center": "POINT (518589.5594241063226946 2313087.1501310556195676)", - "surface": 8720000, - "canton": null, - "numero_insee": "41077" - } - }, - { - "pk": 17634, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "EPUISAY", - "center": "POINT (494592.1492933582048863 2322594.9140710155479610)", - "surface": 23730000, - "canton": null, - "numero_insee": "41078" - } - }, - { - "pk": 27602, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LES ESSARTS", - "center": "POINT (478126.7869298852747306 2304844.6391167435795069)", - "surface": 4490000, - "canton": null, - "numero_insee": "41079" - } - }, - { - "pk": 33315, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FAVEROLLES-SUR-CHER", - "center": "POINT (512747.5380825643660501 2257494.5860287765972316)", - "surface": 15480000, - "canton": null, - "numero_insee": "41080" - } - }, - { - "pk": 8576, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FAYE", - "center": "POINT (513993.8377708989428356 2312148.1843887749128044)", - "surface": 8840000, - "canton": null, - "numero_insee": "41081" - } - }, - { - "pk": 34681, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FEINGS", - "center": "POINT (527041.4388399480376393 2271624.9763542232103646)", - "surface": 16790000, - "canton": null, - "numero_insee": "41082" - } - }, - { - "pk": 10682, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA FERTE-BEAUHARNAIS", - "center": "POINT (563682.0723068588413298 2282239.1784875607118011)", - "surface": 2480000, - "canton": null, - "numero_insee": "41083" - } - }, - { - "pk": 19151, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA FERTE-IMBAULT", - "center": "POINT (571416.5812100304756314 2266891.5913184299133718)", - "surface": 51390000, - "canton": null, - "numero_insee": "41084" - } - }, - { - "pk": 20770, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA FERTE-SAINT-CYR", - "center": "POINT (551151.8589370801346377 2296645.8461381727829576)", - "surface": 59270000, - "canton": null, - "numero_insee": "41085" - } - }, - { - "pk": 18144, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FONTAINES-EN-SOLOGNE", - "center": "POINT (540609.6281600651564077 2276742.1620109775103629)", - "surface": 50590000, - "canton": null, - "numero_insee": "41086" - } - }, - { - "pk": 29979, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FONTAINE-LES-COTEAUX", - "center": "POINT (487474.4244536625337787 2312027.7324284883216023)", - "surface": 22000000, - "canton": null, - "numero_insee": "41087" - } - }, - { - "pk": 33906, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FONTAINE-RAOUL", - "center": "POINT (510232.2325463247834705 2331231.4397818464785814)", - "surface": 21960000, - "canton": null, - "numero_insee": "41088" - } - }, - { - "pk": 19326, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA FONTENELLE", - "center": "POINT (501349.6363986229407601 2340364.4580169715918601)", - "surface": 19830000, - "canton": null, - "numero_insee": "41089" - } - }, - { - "pk": 32490, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FORTAN", - "center": "POINT (493537.9551637029508129 2316981.8725726832635701)", - "surface": 5920000, - "canton": null, - "numero_insee": "41090" - } - }, - { - "pk": 7016, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FOSSE", - "center": "POINT (520359.0881467210128903 2292886.1879789922386408)", - "surface": 10310000, - "canton": null, - "numero_insee": "41091" - } - }, - { - "pk": 24022, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FOUGERES-SUR-BIEVRE", - "center": "POINT (524930.7256614682264626 2272708.2630530120804906)", - "surface": 14620000, - "canton": null, - "numero_insee": "41092" - } - }, - { - "pk": 29380, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FRANCAY", - "center": "POINT (507559.9165828530676663 2291578.6743665589019656)", - "surface": 20420000, - "canton": null, - "numero_insee": "41093" - } - }, - { - "pk": 35162, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FRESNES", - "center": "POINT (530046.1390776688931510 2271349.7888878565281630)", - "surface": 16280000, - "canton": null, - "numero_insee": "41094" - } - }, - { - "pk": 15514, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "FRETEVAL", - "center": "POINT (515414.8919765095924959 2321767.3751405589282513)", - "surface": 20550000, - "canton": null, - "numero_insee": "41095" - } - }, - { - "pk": 20564, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LE GAULT-PERCHE", - "center": "POINT (499607.7138284459942952 2345253.6304051601327956)", - "surface": 28230000, - "canton": null, - "numero_insee": "41096" - } - }, - { - "pk": 17896, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "GIEVRES", - "center": "POINT (549601.6367634948110208 2254599.3512604068964720)", - "surface": 38170000, - "canton": null, - "numero_insee": "41097" - } - }, - { - "pk": 34921, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "GY-EN-SOLOGNE", - "center": "POINT (543848.0874829033855349 2260456.0913954521529377)", - "surface": 35950000, - "canton": null, - "numero_insee": "41099" - } - }, - { - "pk": 12974, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LES HAYES", - "center": "POINT (483161.8938079268555157 2301083.4760674950666726)", - "surface": 15770000, - "canton": null, - "numero_insee": "41100" - } - }, - { - "pk": 30488, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "HERBAULT", - "center": "POINT (511164.9969135316205211 2291308.4427514551207423)", - "surface": 13270000, - "canton": null, - "numero_insee": "41101" - } - }, - { - "pk": 21109, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "HOUSSAY", - "center": "POINT (495731.7457035666448064 2305891.5475414292886853)", - "surface": 16840000, - "canton": null, - "numero_insee": "41102" - } - }, - { - "pk": 13931, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "HUISSEAU-EN-BEAUCE", - "center": "POINT (500455.8680022294283845 2303428.8823698386549950)", - "surface": 9020000, - "canton": null, - "numero_insee": "41103" - } - }, - { - "pk": 6788, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "HUISSEAU-SUR-COSSON", - "center": "POINT (533604.4296451971167699 2288693.2247526347637177)", - "surface": 22730000, - "canton": null, - "numero_insee": "41104" - } - }, - { - "pk": 33083, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "JOSNES", - "center": "POINT (539626.8052685000002384 2310560.4780809152871370)", - "surface": 20620000, - "canton": null, - "numero_insee": "41105" - } - }, - { - "pk": 18418, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LAMOTTE-BEUVRON", - "center": "POINT (576432.6622671347577125 2289351.4383497457019985)", - "surface": 23420000, - "canton": null, - "numero_insee": "41106" - } - }, - { - "pk": 33322, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LANCE", - "center": "POINT (504695.4707311738748103 2299060.7176254363730550)", - "surface": 18100000, - "canton": null, - "numero_insee": "41107" - } - }, - { - "pk": 5954, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LANCOME", - "center": "POINT (509128.5825293319066986 2295494.7896760539151728)", - "surface": 9920000, - "canton": null, - "numero_insee": "41108" - } - }, - { - "pk": 16412, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LANDES-LE-GAULOIS", - "center": "POINT (512427.6060938006266952 2295922.5634720535017550)", - "surface": 24210000, - "canton": null, - "numero_insee": "41109" - } - }, - { - "pk": 19331, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LANGON", - "center": "POINT (562295.1941891872556880 2256607.0088221719488502)", - "surface": 38670000, - "canton": null, - "numero_insee": "41110" - } - }, - { - "pk": 25229, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LASSAY-SUR-CROISNE", - "center": "POINT (546926.1436887913150713 2263384.1437521716579795)", - "surface": 18690000, - "canton": null, - "numero_insee": "41112" - } - }, - { - "pk": 24795, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LAVARDIN", - "center": "POINT (491134.3171482406323776 2305152.7993348850868642)", - "surface": 6900000, - "canton": null, - "numero_insee": "41113" - } - }, - { - "pk": 26928, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LESTIOU", - "center": "POINT (542169.4943928039865568 2305677.9134350433014333)", - "surface": 8380000, - "canton": null, - "numero_insee": "41114" - } - }, - { - "pk": 35869, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LIGNIERES", - "center": "POINT (514439.1951456395909190 2318756.9590988950803876)", - "surface": 15870000, - "canton": null, - "numero_insee": "41115" - } - }, - { - "pk": 19634, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LISLE", - "center": "POINT (507928.0110935153206810 2319503.3728409102186561)", - "surface": 6620000, - "canton": null, - "numero_insee": "41116" - } - }, - { - "pk": 6202, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LOREUX", - "center": "POINT (562707.6722316677914932 2267118.9571333327330649)", - "surface": 32140000, - "canton": null, - "numero_insee": "41118" - } - }, - { - "pk": 28886, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LORGES", - "center": "POINT (537197.5657075681956485 2313842.7467510309070349)", - "surface": 13560000, - "canton": null, - "numero_insee": "41119" - } - }, - { - "pk": 20989, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LUNAY", - "center": "POINT (492668.9251308353268541 2313171.7323200628161430)", - "surface": 38530000, - "canton": null, - "numero_insee": "41120" - } - }, - { - "pk": 27715, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA MADELEINE-VILLEFROUIN", - "center": "POINT (529031.0478326989104971 2309071.0065725175663829)", - "surface": 9730000, - "canton": null, - "numero_insee": "41121" - } - }, - { - "pk": 9316, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MARAY", - "center": "POINT (564664.7203935149591416 2248520.2163071907125413)", - "surface": 28580000, - "canton": null, - "numero_insee": "41122" - } - }, - { - "pk": 34110, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MARCHENOIR", - "center": "POINT (530680.5034610328730196 2315289.5355344046838582)", - "surface": 9540000, - "canton": null, - "numero_insee": "41123" - } - }, - { - "pk": 34114, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MARCILLY-EN-BEAUCE", - "center": "POINT (500023.1321958259213716 2307328.3090144353918731)", - "surface": 6380000, - "canton": null, - "numero_insee": "41124" - } - }, - { - "pk": 21884, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MARCILLY-EN-GAULT", - "center": "POINT (564854.0320195551030338 2273742.2099920967593789)", - "surface": 56940000, - "canton": null, - "numero_insee": "41125" - } - }, - { - "pk": 35118, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MAREUIL-SUR-CHER", - "center": "POINT (521789.2527931859367527 2253366.4773216908797622)", - "surface": 31850000, - "canton": null, - "numero_insee": "41126" - } - }, - { - "pk": 16077, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA MAROLLE-EN-SOLOGNE", - "center": "POINT (558737.5268848610576242 2287101.7045784210786223)", - "surface": 25040000, - "canton": null, - "numero_insee": "41127" - } - }, - { - "pk": 6096, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MAROLLES", - "center": "POINT (522841.6973178093321621 2295208.6779010598547757)", - "surface": 10040000, - "canton": null, - "numero_insee": "41128" - } - }, - { - "pk": 18814, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MASLIVES", - "center": "POINT (535770.9435587383341044 2292914.6037831986322999)", - "surface": 7340000, - "canton": null, - "numero_insee": "41129" - } - }, - { - "pk": 21420, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MAVES", - "center": "POINT (526165.7120587107492611 2304643.7116790367290378)", - "surface": 33210000, - "canton": null, - "numero_insee": "41130" - } - }, - { - "pk": 36511, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MAZANGE", - "center": "POINT (496043.8577097610104829 2316502.3158098720014095)", - "surface": 23860000, - "canton": null, - "numero_insee": "41131" - } - }, - { - "pk": 34074, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MEHERS", - "center": "POINT (533151.8480889282654971 2258965.6869334550574422)", - "surface": 18380000, - "canton": null, - "numero_insee": "41132" - } - }, - { - "pk": 7047, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MEMBROLLES", - "center": "POINT (534944.9938224066281691 2331937.7398394877091050)", - "surface": 18810000, - "canton": null, - "numero_insee": "41133" - } - }, - { - "pk": 3248, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MENARS", - "center": "POINT (529552.3213102667359635 2294564.0683313673362136)", - "surface": 4530000, - "canton": null, - "numero_insee": "41134" - } - }, - { - "pk": 31310, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MENNETOU-SUR-CHER", - "center": "POINT (565012.2720629774266854 2254828.2727854186668992)", - "surface": 16240000, - "canton": null, - "numero_insee": "41135" - } - }, - { - "pk": 31339, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MER", - "center": "POINT (537497.9105799306416884 2301835.9707997809164226)", - "surface": 26450000, - "canton": null, - "numero_insee": "41136" - } - }, - { - "pk": 21679, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MESLAND", - "center": "POINT (506851.7711966772330925 2280464.0046904119662941)", - "surface": 26620000, - "canton": null, - "numero_insee": "41137" - } - }, - { - "pk": 34277, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MESLAY", - "center": "POINT (508177.2812553896801546 2313600.9227834418416023)", - "surface": 7120000, - "canton": null, - "numero_insee": "41138" - } - }, - { - "pk": 19164, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MEUSNES", - "center": "POINT (536730.4362633050186560 2249888.1254872553981841)", - "surface": 13470000, - "canton": null, - "numero_insee": "41139" - } - }, - { - "pk": 17628, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MILLANCAY", - "center": "POINT (558059.1077128564938903 2272484.4194988668896258)", - "surface": 61690000, - "canton": null, - "numero_insee": "41140" - } - }, - { - "pk": 29978, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MOISY", - "center": "POINT (523895.7653689188882709 2324840.3089232165366411)", - "surface": 17350000, - "canton": null, - "numero_insee": "41141" - } - }, - { - "pk": 32422, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MOLINEUF", - "center": "POINT (516402.8966099627432413 2287248.8235309161245823)", - "surface": 10910000, - "canton": null, - "numero_insee": "41142" - } - }, - { - "pk": 4550, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONDOUBLEAU", - "center": "POINT (492405.0519025246612728 2332884.5488105635158718)", - "surface": 4880000, - "canton": null, - "numero_insee": "41143" - } - }, - { - "pk": 11048, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTEAUX", - "center": "POINT (507181.9672086749924347 2276863.8850181712768972)", - "surface": 6270000, - "canton": null, - "numero_insee": "41144" - } - }, - { - "pk": 16486, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTHOU-SUR-BIEVRE", - "center": "POINT (519614.3429762638988905 2274165.1619075071066618)", - "surface": 16710000, - "canton": null, - "numero_insee": "41145" - } - }, - { - "pk": 14420, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTHOU-SUR-CHER", - "center": "POINT (520918.6127657477045432 2261766.0501054213382304)", - "surface": 20190000, - "canton": null, - "numero_insee": "41146" - } - }, - { - "pk": 26080, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LES MONTILS", - "center": "POINT (522178.7162337165209465 2278690.1197335291653872)", - "surface": 9360000, - "canton": null, - "numero_insee": "41147" - } - }, - { - "pk": 25482, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTLIVAULT", - "center": "POINT (533065.6726976673817262 2293292.3495517661795020)", - "surface": 11110000, - "canton": null, - "numero_insee": "41148" - } - }, - { - "pk": 11272, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTOIRE-SUR-LE-LOIR", - "center": "POINT (488906.9934852994629182 2308236.6975540234707296)", - "surface": 21340000, - "canton": null, - "numero_insee": "41149" - } - }, - { - "pk": 35192, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONT-PRES-CHAMBORD", - "center": "POINT (533138.2945148317376152 2284586.0970289907418191)", - "surface": 28380000, - "canton": null, - "numero_insee": "41150" - } - }, - { - "pk": 13604, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTRICHARD", - "center": "POINT (512902.6932028324226849 2262900.2561283269897103)", - "surface": 14270000, - "canton": null, - "numero_insee": "41151" - } - }, - { - "pk": 17831, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTRIEUX-EN-SOLOGNE", - "center": "POINT (553362.9113295673159882 2283554.0079475971870124)", - "surface": 34130000, - "canton": null, - "numero_insee": "41152" - } - }, - { - "pk": 29109, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MONTROUVEAU", - "center": "POINT (478150.8688117951387540 2301942.5844366922974586)", - "surface": 17790000, - "canton": null, - "numero_insee": "41153" - } - }, - { - "pk": 6334, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MUIDES-SUR-LOIRE", - "center": "POINT (539644.5006153304129839 2296449.6714750220999122)", - "surface": 9250000, - "canton": null, - "numero_insee": "41155" - } - }, - { - "pk": 26931, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MULSANS", - "center": "POINT (528207.1727054375223815 2299856.9964169338345528)", - "surface": 15890000, - "canton": null, - "numero_insee": "41156" - } - }, - { - "pk": 4814, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "MUR-DE-SOLOGNE", - "center": "POINT (544278.2635891664540395 2268866.4638225040398538)", - "surface": 53130000, - "canton": null, - "numero_insee": "41157" - } - }, - { - "pk": 12456, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "NAVEIL", - "center": "POINT (501498.3905207613133825 2310442.9730011573992670)", - "surface": 13430000, - "canton": null, - "numero_insee": "41158" - } - }, - { - "pk": 19011, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "NEUNG-SUR-BEUVRON", - "center": "POINT (560382.1954754529288039 2281911.3403868810273707)", - "surface": 65440000, - "canton": null, - "numero_insee": "41159" - } - }, - { - "pk": 31129, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "NEUVY", - "center": "POINT (543538.2826709223445505 2285573.6019187285564840)", - "surface": 31350000, - "canton": null, - "numero_insee": "41160" - } - }, - { - "pk": 16078, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "NOUAN-LE-FUZELIER", - "center": "POINT (576795.7384872999973595 2281848.5476233358494937)", - "surface": 87610000, - "canton": null, - "numero_insee": "41161" - } - }, - { - "pk": 27314, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "NOURRAY", - "center": "POINT (503462.9860919932252727 2302853.4256728100590408)", - "surface": 12260000, - "canton": null, - "numero_insee": "41163" - } - }, - { - "pk": 23376, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "NOYERS-SUR-CHER", - "center": "POINT (529890.2916848777094856 2254034.4976006355136633)", - "surface": 22740000, - "canton": null, - "numero_insee": "41164" - } - }, - { - "pk": 22685, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "OIGNY", - "center": "POINT (493735.3285224049468525 2341401.9842098746448755)", - "surface": 9800000, - "canton": null, - "numero_insee": "41165" - } - }, - { - "pk": 10405, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "OISLY", - "center": "POINT (527484.2824726059334353 2266524.5688855373300612)", - "surface": 10720000, - "canton": null, - "numero_insee": "41166" - } - }, - { - "pk": 8336, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ORCAY", - "center": "POINT (583716.1309788686921820 2256185.8702370123937726)", - "surface": 18650000, - "canton": null, - "numero_insee": "41168" - } - }, - { - "pk": 35643, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ORCHAISE", - "center": "POINT (512394.1834557306719944 2287915.9965236913412809)", - "surface": 20100000, - "canton": null, - "numero_insee": "41169" - } - }, - { - "pk": 24898, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "OUCHAMPS", - "center": "POINT (523306.2034028226044029 2275496.9632334355264902)", - "surface": 13220000, - "canton": null, - "numero_insee": "41170" - } - }, - { - "pk": 21436, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "OUCQUES", - "center": "POINT (522286.3124573393724859 2313818.4868413996882737)", - "surface": 26200000, - "canton": null, - "numero_insee": "41171" - } - }, - { - "pk": 12229, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "OUZOUER-LE-DOYEN", - "center": "POINT (525674.4882310305256397 2327557.1833053585141897)", - "surface": 16330000, - "canton": null, - "numero_insee": "41172" - } - }, - { - "pk": 30333, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "OUZOUER-LE-MARCHE", - "center": "POINT (539924.3531417232006788 2322872.3900484321638942)", - "surface": 28140000, - "canton": null, - "numero_insee": "41173" - } - }, - { - "pk": 32853, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PERIGNY", - "center": "POINT (511040.0473376505542547 2306319.1132697272114456)", - "surface": 10370000, - "canton": null, - "numero_insee": "41174" - } - }, - { - "pk": 21432, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PEZOU", - "center": "POINT (510930.9295461128349416 2319428.2880740095861256)", - "surface": 14090000, - "canton": null, - "numero_insee": "41175" - } - }, - { - "pk": 18542, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PIERREFITTE-SUR-SAULDRE", - "center": "POINT (584210.3185896835057065 2280809.7959247119724751)", - "surface": 74420000, - "canton": null, - "numero_insee": "41176" - } - }, - { - "pk": 34905, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LE PLESSIS-DORIN", - "center": "POINT (490108.7799760077614337 2344274.0178064908832312)", - "surface": 13780000, - "canton": null, - "numero_insee": "41177" - } - }, - { - "pk": 29472, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LE PLESSIS-L'ECHELLE", - "center": "POINT (531702.0660581231350079 2312796.1332546714693308)", - "surface": 11680000, - "canton": null, - "numero_insee": "41178" - } - }, - { - "pk": 26143, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LE POISLAY", - "center": "POINT (505539.1681493142386898 2342000.5003096973523498)", - "surface": 16000000, - "canton": null, - "numero_insee": "41179" - } - }, - { - "pk": 14987, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PONTLEVOY", - "center": "POINT (516472.8487055640434846 2266833.1337236436083913)", - "surface": 51390000, - "canton": null, - "numero_insee": "41180" - } - }, - { - "pk": 8734, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "POUILLE", - "center": "POINT (519957.8932307965005748 2256954.1508428710512817)", - "surface": 18000000, - "canton": null, - "numero_insee": "41181" - } - }, - { - "pk": 10625, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PRAY", - "center": "POINT (507998.6505744629539549 2298988.1231241831555963)", - "surface": 10520000, - "canton": null, - "numero_insee": "41182" - } - }, - { - "pk": 11403, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PRENOUVELLON", - "center": "POINT (539566.5180783518590033 2329774.6406436292454600)", - "surface": 19920000, - "canton": null, - "numero_insee": "41183" - } - }, - { - "pk": 21376, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PRUNAY-CASSEREAU", - "center": "POINT (493084.7232203983003274 2299264.4141652975231409)", - "surface": 32690000, - "canton": null, - "numero_insee": "41184" - } - }, - { - "pk": 34950, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "PRUNIERS-EN-SOLOGNE", - "center": "POINT (550355.4097226407611743 2260210.2006430546753109)", - "surface": 44060000, - "canton": null, - "numero_insee": "41185" - } - }, - { - "pk": 30771, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "RAHART", - "center": "POINT (504523.9823438359890133 2319675.2043759739026427)", - "surface": 14400000, - "canton": null, - "numero_insee": "41186" - } - }, - { - "pk": 22513, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "RENAY", - "center": "POINT (512859.7425763661740348 2316141.8170419023372233)", - "surface": 12080000, - "canton": null, - "numero_insee": "41187" - } - }, - { - "pk": 37094, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "RHODON", - "center": "POINT (519744.5167014863109216 2306591.7529933815822005)", - "surface": 7170000, - "canton": null, - "numero_insee": "41188" - } - }, - { - "pk": 37558, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "RILLY-SUR-LOIRE", - "center": "POINT (510109.0688433357863687 2273885.8486159797757864)", - "surface": 10170000, - "canton": null, - "numero_insee": "41189" - } - }, - { - "pk": 34226, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ROCE", - "center": "POINT (510981.7395584074547514 2313324.0325747122988105)", - "surface": 10210000, - "canton": null, - "numero_insee": "41190" - } - }, - { - "pk": 29473, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ROCHES", - "center": "POINT (533819.3963220339501277 2310912.3298330642282963)", - "surface": 8740000, - "canton": null, - "numero_insee": "41191" - } - }, - { - "pk": 8648, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LES ROCHES-L'EVEQUE", - "center": "POINT (491389.6315438409801573 2310559.0990665210410953)", - "surface": 2430000, - "canton": null, - "numero_insee": "41192" - } - }, - { - "pk": 12687, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ROMILLY", - "center": "POINT (502046.5801695602713153 2328761.5221758577972651)", - "surface": 15200000, - "canton": null, - "numero_insee": "41193" - } - }, - { - "pk": 17968, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ROMORANTIN-LANTHENAY", - "center": "POINT (555228.0887504303827882 2263953.9151354725472629)", - "surface": 45030000, - "canton": null, - "numero_insee": "41194" - } - }, - { - "pk": 15868, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "ROUGEOU", - "center": "POINT (540026.8957989519694820 2262625.9714209772646427)", - "surface": 7840000, - "canton": null, - "numero_insee": "41195" - } - }, - { - "pk": 11154, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "RUAN-SUR-EGVONNE", - "center": "POINT (510395.7232592047657818 2335636.1161822732537985)", - "surface": 11370000, - "canton": null, - "numero_insee": "41196" - } - }, - { - "pk": 25589, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-AGIL", - "center": "POINT (495359.7006807404104620 2338613.3876809407956898)", - "surface": 15750000, - "canton": null, - "numero_insee": "41197" - } - }, - { - "pk": 29219, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-AIGNAN", - "center": "POINT (524115.1585822692140937 2250483.4913065996952355)", - "surface": 18400000, - "canton": null, - "numero_insee": "41198" - } - }, - { - "pk": 17287, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-AMAND-LONGPRE", - "center": "POINT (499691.0818672694731504 2299119.1737445555627346)", - "surface": 21400000, - "canton": null, - "numero_insee": "41199" - } - }, - { - "pk": 6138, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-ARNOULT", - "center": "POINT (489860.8320033401250839 2301839.6545747746713459)", - "surface": 9560000, - "canton": null, - "numero_insee": "41201" - } - }, - { - "pk": 33525, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-AVIT", - "center": "POINT (493908.8543738103471696 2344605.8139003082178533)", - "surface": 14490000, - "canton": null, - "numero_insee": "41202" - } - }, - { - "pk": 4316, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-BOHAIRE", - "center": "POINT (517544.5811358612263575 2294363.9195139729417861)", - "surface": 13800000, - "canton": null, - "numero_insee": "41203" - } - }, - { - "pk": 29225, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-CLAUDE-DE-DIRAY", - "center": "POINT (530980.8618299318477511 2291273.3898549256846309)", - "surface": 9120000, - "canton": null, - "numero_insee": "41204" - } - }, - { - "pk": 22848, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-CYR-DU-GAULT", - "center": "POINT (501451.3806647850433365 2292028.2505985945463181)", - "surface": 26190000, - "canton": null, - "numero_insee": "41205" - } - }, - { - "pk": 31126, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-DENIS-SUR-LOIRE", - "center": "POINT (527563.4069910047110170 2293046.3084823554381728)", - "surface": 12360000, - "canton": null, - "numero_insee": "41206" - } - }, - { - "pk": 25871, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-DYE-SUR-LOIRE", - "center": "POINT (536654.8874425471294671 2294923.5479801320470870)", - "surface": 5420000, - "canton": null, - "numero_insee": "41207" - } - }, - { - "pk": 13882, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-ETIENNE-DES-GUERETS", - "center": "POINT (504275.0321835467475466 2289449.6905656638555229)", - "surface": 11490000, - "canton": null, - "numero_insee": "41208" - } - }, - { - "pk": 34052, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINTE-GEMMES", - "center": "POINT (518504.4933230082970113 2311285.0552079346962273)", - "surface": 8580000, - "canton": null, - "numero_insee": "41210" - } - }, - { - "pk": 10397, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-GEORGES-SUR-CHER", - "center": "POINT (509246.6015362976468168 2257265.2798396013677120)", - "surface": 23730000, - "canton": null, - "numero_insee": "41211" - } - }, - { - "pk": 37709, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-GERVAIS-LA-FORET", - "center": "POINT (526530.1915239534573629 2284931.3097698818892241)", - "surface": 9020000, - "canton": null, - "numero_insee": "41212" - } - }, - { - "pk": 27894, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-GOURGON", - "center": "POINT (500513.2873706237878650 2296523.9787001856602728)", - "surface": 10240000, - "canton": null, - "numero_insee": "41213" - } - }, - { - "pk": 12014, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-HILAIRE-LA-GRAVELLE", - "center": "POINT (513675.3884187997900881 2326356.3914459832012653)", - "surface": 17520000, - "canton": null, - "numero_insee": "41214" - } - }, - { - "pk": 13582, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-JACQUES-DES-GUERETS", - "center": "POINT (484101.1192056733998470 2308497.0183539860881865)", - "surface": 1790000, - "canton": null, - "numero_insee": "41215" - } - }, - { - "pk": 28112, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-JEAN-FROIDMENTEL", - "center": "POINT (515849.4063914344296791 2329676.9942016880959272)", - "surface": 17160000, - "canton": null, - "numero_insee": "41216" - } - }, - { - "pk": 13858, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-JULIEN-DE-CHEDON", - "center": "POINT (514642.2838703714078292 2258311.0128747709095478)", - "surface": 9850000, - "canton": null, - "numero_insee": "41217" - } - }, - { - "pk": 12441, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-JULIEN-SUR-CHER", - "center": "POINT (557830.3373057814314961 2251965.9209231138229370)", - "surface": 16240000, - "canton": null, - "numero_insee": "41218" - } - }, - { - "pk": 14880, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-LAURENT-DES-BOIS", - "center": "POINT (534660.7557563565205783 2318024.8035728605464101)", - "surface": 18290000, - "canton": null, - "numero_insee": "41219" - } - }, - { - "pk": 23938, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-LAURENT-NOUAN", - "center": "POINT (546509.3008327903226018 2301310.7323802774772048)", - "surface": 61220000, - "canton": null, - "numero_insee": "41220" - } - }, - { - "pk": 5369, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-LEONARD-EN-BEAUCE", - "center": "POINT (527187.2364925300935283 2314159.5643688347190619)", - "surface": 40790000, - "canton": null, - "numero_insee": "41221" - } - }, - { - "pk": 10462, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-LOUP", - "center": "POINT (561143.6831044658320025 2250692.5649148770608008)", - "surface": 14970000, - "canton": null, - "numero_insee": "41222" - } - }, - { - "pk": 31983, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-LUBIN-EN-VERGONNOIS", - "center": "POINT (515367.1756195678608492 2291443.5080594928003848)", - "surface": 17150000, - "canton": null, - "numero_insee": "41223" - } - }, - { - "pk": 14180, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-MARC-DU-COR", - "center": "POINT (497827.0521877949358895 2330727.9504265571013093)", - "surface": 12970000, - "canton": null, - "numero_insee": "41224" - } - }, - { - "pk": 19382, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-MARTIN-DES-BOIS", - "center": "POINT (486541.0382788334973156 2303913.7132670585997403)", - "surface": 37070000, - "canton": null, - "numero_insee": "41225" - } - }, - { - "pk": 24416, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-OUEN", - "center": "POINT (505263.5964952799258754 2314977.7557907234877348)", - "surface": 11210000, - "canton": null, - "numero_insee": "41226" - } - }, - { - "pk": 35751, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-RIMAY", - "center": "POINT (493506.9072328303591348 2308675.2245995057746768)", - "surface": 7350000, - "canton": null, - "numero_insee": "41228" - } - }, - { - "pk": 25243, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-ROMAIN-SUR-CHER", - "center": "POINT (528155.6474293323699385 2258023.2890383121557534)", - "surface": 31380000, - "canton": null, - "numero_insee": "41229" - } - }, - { - "pk": 34731, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-SULPICE-DE-POMMERAY", - "center": "POINT (519184.0720633242744952 2289773.9608588279224932)", - "surface": 11710000, - "canton": null, - "numero_insee": "41230" - } - }, - { - "pk": 18809, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAINT-VIATRE", - "center": "POINT (569609.7928256958257407 2279486.5542472847737372)", - "surface": 99520000, - "canton": null, - "numero_insee": "41231" - } - }, - { - "pk": 30092, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SALBRIS", - "center": "POINT (577911.3011894230730832 2268146.9431830509565771)", - "surface": 106540000, - "canton": null, - "numero_insee": "41232" - } - }, - { - "pk": 36335, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAMBIN", - "center": "POINT (520042.9824216200504452 2270766.0088572525419295)", - "surface": 21070000, - "canton": null, - "numero_insee": "41233" - } - }, - { - "pk": 16434, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SANTENAY", - "center": "POINT (507107.8548494653077796 2285770.3384454781189561)", - "surface": 30460000, - "canton": null, - "numero_insee": "41234" - } - }, - { - "pk": 29285, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SARGE-SUR-BRAYE", - "center": "POINT (489857.3029298366163857 2326358.4635606044903398)", - "surface": 42170000, - "canton": null, - "numero_insee": "41235" - } - }, - { - "pk": 27796, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SASNIERES", - "center": "POINT (493752.7873300809878856 2303173.0038806986995041)", - "surface": 7840000, - "canton": null, - "numero_insee": "41236" - } - }, - { - "pk": 9242, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SASSAY", - "center": "POINT (532791.5230755869997665 2266168.5050187325105071)", - "surface": 16720000, - "canton": null, - "numero_insee": "41237" - } - }, - { - "pk": 16023, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SAVIGNY-SUR-BRAYE", - "center": "POINT (487308.6973530147806741 2319932.4189790338277817)", - "surface": 67220000, - "canton": null, - "numero_insee": "41238" - } - }, - { - "pk": 25107, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SEIGY", - "center": "POINT (527715.3507177494466305 2250813.7485287436284125)", - "surface": 8110000, - "canton": null, - "numero_insee": "41239" - } - }, - { - "pk": 27912, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SEILLAC", - "center": "POINT (511727.0023652197560295 2283907.2791427001357079)", - "surface": 9570000, - "canton": null, - "numero_insee": "41240" - } - }, - { - "pk": 3104, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SELLES-SAINT-DENIS", - "center": "POINT (567437.0882409093901515 2264056.0254067801870406)", - "surface": 51170000, - "canton": null, - "numero_insee": "41241" - } - }, - { - "pk": 21694, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SELLES-SUR-CHER", - "center": "POINT (541505.6258519773837179 2253330.7600175379775465)", - "surface": 25510000, - "canton": null, - "numero_insee": "41242" - } - }, - { - "pk": 29656, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SELOMMES", - "center": "POINT (515630.7922251640702598 2307858.4957118751481175)", - "surface": 27990000, - "canton": null, - "numero_insee": "41243" - } - }, - { - "pk": 23655, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SEMERVILLE", - "center": "POINT (528896.7156097945990041 2325182.2234070831909776)", - "surface": 9650000, - "canton": null, - "numero_insee": "41244" - } - }, - { - "pk": 14700, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SERIS", - "center": "POINT (537858.1100650702137500 2306642.7029758947901428)", - "surface": 17650000, - "canton": null, - "numero_insee": "41245" - } - }, - { - "pk": 7985, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SEUR", - "center": "POINT (524773.0990299494005740 2279612.4575650510378182)", - "surface": 3980000, - "canton": null, - "numero_insee": "41246" - } - }, - { - "pk": 5873, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SOINGS-EN-SOLOGNE", - "center": "POINT (538979.3837834618752822 2268221.7453245259821415)", - "surface": 36440000, - "canton": null, - "numero_insee": "41247" - } - }, - { - "pk": 14692, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SOUDAY", - "center": "POINT (488848.6277396483928896 2339359.8894290560856462)", - "surface": 36480000, - "canton": null, - "numero_insee": "41248" - } - }, - { - "pk": 20942, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SOUESMES", - "center": "POINT (587478.0773075502365828 2273030.9661458972841501)", - "surface": 99790000, - "canton": null, - "numero_insee": "41249" - } - }, - { - "pk": 18556, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SOUGE", - "center": "POINT (479285.2806703469250351 2309958.2017924920655787)", - "surface": 16930000, - "canton": null, - "numero_insee": "41250" - } - }, - { - "pk": 21042, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SOUVIGNY-EN-SOLOGNE", - "center": "POINT (587199.3040314941899851 2294345.5071092154830694)", - "surface": 41380000, - "canton": null, - "numero_insee": "41251" - } - }, - { - "pk": 30487, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "SUEVRES", - "center": "POINT (533724.4347598818130791 2298301.7593694762326777)", - "surface": 36730000, - "canton": null, - "numero_insee": "41252" - } - }, - { - "pk": 29260, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "TALCY", - "center": "POINT (532642.7597493608482182 2308000.2756729032844305)", - "surface": 15090000, - "canton": null, - "numero_insee": "41253" - } - }, - { - "pk": 8764, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LE TEMPLE", - "center": "POINT (495158.4656057388638146 2326702.7391275675036013)", - "surface": 13380000, - "canton": null, - "numero_insee": "41254" - } - }, - { - "pk": 10474, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "TERNAY", - "center": "POINT (482629.1389579285751097 2304982.0860034204088151)", - "surface": 14560000, - "canton": null, - "numero_insee": "41255" - } - }, - { - "pk": 19713, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "THEILLAY", - "center": "POINT (577498.1093336746562272 2257735.0734784980304539)", - "surface": 96140000, - "canton": null, - "numero_insee": "41256" - } - }, - { - "pk": 3381, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "THESEE", - "center": "POINT (523945.8548259969102219 2258788.8451399607583880)", - "surface": 17650000, - "canton": null, - "numero_insee": "41258" - } - }, - { - "pk": 5447, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "THORE-LA-ROCHETTE", - "center": "POINT (497595.6507772256736644 2310410.5222978163510561)", - "surface": 10760000, - "canton": null, - "numero_insee": "41259" - } - }, - { - "pk": 24143, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "THOURY", - "center": "POINT (545397.0322582907974720 2290693.1462895949371159)", - "surface": 15570000, - "canton": null, - "numero_insee": "41260" - } - }, - { - "pk": 22650, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "TOURAILLES", - "center": "POINT (511396.0706341136246920 2299616.8678725799545646)", - "surface": 7490000, - "canton": null, - "numero_insee": "41261" - } - }, - { - "pk": 11332, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "TREHET", - "center": "POINT (472311.8944152257754467 2306097.4079289985820651)", - "surface": 5650000, - "canton": null, - "numero_insee": "41263" - } - }, - { - "pk": 10825, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "TRIPLEVILLE", - "center": "POINT (536080.8129403343191370 2327744.0394911933690310)", - "surface": 13140000, - "canton": null, - "numero_insee": "41264" - } - }, - { - "pk": 24208, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "TROO", - "center": "POINT (483179.7155274508404545 2310991.2994518028572202)", - "surface": 13260000, - "canton": null, - "numero_insee": "41265" - } - }, - { - "pk": 35675, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VALAIRE", - "center": "POINT (518502.7024350418942049 2275456.9405305329710245)", - "surface": 6590000, - "canton": null, - "numero_insee": "41266" - } - }, - { - "pk": 5754, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VALLIERES-LES-GRANDES", - "center": "POINT (510253.2900519719696604 2268582.7972493818961084)", - "surface": 40770000, - "canton": null, - "numero_insee": "41267" - } - }, - { - "pk": 13975, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VEILLEINS", - "center": "POINT (551074.8934757573297247 2269924.0387074807658792)", - "surface": 46570000, - "canton": null, - "numero_insee": "41268" - } - }, - { - "pk": 17389, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VENDOME", - "center": "POINT (504387.1083403477678075 2312068.2335520018823445)", - "surface": 23900000, - "canton": null, - "numero_insee": "41269" - } - }, - { - "pk": 33853, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VERDES", - "center": "POINT (531170.7642379482276738 2328503.6891494728624821)", - "surface": 28600000, - "canton": null, - "numero_insee": "41270" - } - }, - { - "pk": 16079, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VERNOU-EN-SOLOGNE", - "center": "POINT (551509.2007199689978734 2277833.9876777180470526)", - "surface": 54700000, - "canton": null, - "numero_insee": "41271" - } - }, - { - "pk": 12929, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VEUVES", - "center": "POINT (508991.6073240931145847 2275878.1465965895913541)", - "surface": 7970000, - "canton": null, - "numero_insee": "41272" - } - }, - { - "pk": 14582, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VIEVY-LE-RAYE", - "center": "POINT (522237.9499211848597042 2319622.5302375797182322)", - "surface": 45090000, - "canton": null, - "numero_insee": "41273" - } - }, - { - "pk": 32911, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLAVARD", - "center": "POINT (492622.0727342140162364 2306766.4014101168140769)", - "surface": 5190000, - "canton": null, - "numero_insee": "41274" - } - }, - { - "pk": 18099, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "LA VILLE-AUX-CLERCS", - "center": "POINT (507280.9654142482904717 2325102.2578134448267519)", - "surface": 26730000, - "canton": null, - "numero_insee": "41275" - } - }, - { - "pk": 31338, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEBAROU", - "center": "POINT (523466.3108630378264934 2292311.6078302375972271)", - "surface": 9170000, - "canton": null, - "numero_insee": "41276" - } - }, - { - "pk": 28232, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEBOUT", - "center": "POINT (513123.3915206200908870 2332556.4871687558479607)", - "surface": 11360000, - "canton": null, - "numero_insee": "41277" - } - }, - { - "pk": 21263, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLECHAUVE", - "center": "POINT (495724.8353840791969560 2294682.7577527593821287)", - "surface": 11120000, - "canton": null, - "numero_insee": "41278" - } - }, - { - "pk": 16112, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEDIEU-LE-CHATEAU", - "center": "POINT (472637.8356131086475216 2302997.7038067518733442)", - "surface": 29670000, - "canton": null, - "numero_insee": "41279" - } - }, - { - "pk": 31117, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEFRANCHE-SUR-CHER", - "center": "POINT (555892.1091621515806764 2256353.3045682036317885)", - "surface": 27240000, - "canton": null, - "numero_insee": "41280" - } - }, - { - "pk": 33825, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEFRANCOEUR", - "center": "POINT (514893.5582245441619307 2300246.4545614570379257)", - "surface": 18260000, - "canton": null, - "numero_insee": "41281" - } - }, - { - "pk": 28301, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEHERVIERS", - "center": "POINT (560346.0783709777751938 2262295.3312758333049715)", - "surface": 38740000, - "canton": null, - "numero_insee": "41282" - } - }, - { - "pk": 26449, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEMARDY", - "center": "POINT (513663.5442886408418417 2303738.9365639616735280)", - "surface": 12210000, - "canton": null, - "numero_insee": "41283" - } - }, - { - "pk": 27536, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLENEUVE-FROUVILLE", - "center": "POINT (523618.9117695662425831 2310026.6641735779121518)", - "surface": 4310000, - "canton": null, - "numero_insee": "41284" - } - }, - { - "pk": 20116, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLENY", - "center": "POINT (556098.0117538135964423 2291583.1831661653704941)", - "surface": 35480000, - "canton": null, - "numero_insee": "41285" - } - }, - { - "pk": 13787, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEPORCHER", - "center": "POINT (498526.8369771939469501 2294706.0513352602720261)", - "surface": 12140000, - "canton": null, - "numero_insee": "41286" - } - }, - { - "pk": 8960, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLERABLE", - "center": "POINT (502727.5323380326153710 2307050.5674313516356051)", - "surface": 16740000, - "canton": null, - "numero_insee": "41287" - } - }, - { - "pk": 34960, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLERBON", - "center": "POINT (526334.1856454941444099 2296438.7260320070199668)", - "surface": 17320000, - "canton": null, - "numero_insee": "41288" - } - }, - { - "pk": 37871, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLERMAIN", - "center": "POINT (539764.3044273997657001 2318067.3889345377683640)", - "surface": 28970000, - "canton": null, - "numero_insee": "41289" - } - }, - { - "pk": 10910, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEROMAIN", - "center": "POINT (510669.7513766327174380 2302713.2365118716843426)", - "surface": 12990000, - "canton": null, - "numero_insee": "41290" - } - }, - { - "pk": 9238, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLETRUN", - "center": "POINT (512207.5712437547044829 2310331.9251712593249977)", - "surface": 6820000, - "canton": null, - "numero_insee": "41291" - } - }, - { - "pk": 28393, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLEXANTON", - "center": "POINT (533168.1528773121535778 2305002.3342459551058710)", - "surface": 11480000, - "canton": null, - "numero_insee": "41292" - } - }, - { - "pk": 31190, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLIERSFAUX", - "center": "POINT (498333.5815485375351273 2305913.1764783826656640)", - "surface": 7200000, - "canton": null, - "numero_insee": "41293" - } - }, - { - "pk": 3595, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VILLIERS-SUR-LOIR", - "center": "POINT (499675.4920649540144950 2313029.8181641702540219)", - "surface": 9970000, - "canton": null, - "numero_insee": "41294" - } - }, - { - "pk": 27538, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VINEUIL", - "center": "POINT (528608.3445900467922911 2287750.8484517671167850)", - "surface": 22300000, - "canton": null, - "numero_insee": "41295" - } - }, - { - "pk": 16191, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "VOUZON", - "center": "POINT (578397.2139245652360842 2293771.3526382325217128)", - "surface": 78050000, - "canton": null, - "numero_insee": "41296" - } - }, - { - "pk": 20363, - "model": "ishtar_common.town", - "fields": { - "departement": 42, - "name": "YVOY-LE-MARRON", - "center": "POINT (563291.4489997323835269 2293044.4350188830867410)", - "surface": 50730000, - "canton": null, - "numero_insee": "41297" - } - }, - { - "pk": 27881, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "AILLEUX", - "center": "POINT (724140.5072612543590367 2089923.3546429697889835)", - "surface": 9330000, - "canton": null, - "numero_insee": "42002" - } - }, - { - "pk": 28949, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "AMIONS", - "center": "POINT (732272.8373666948173195 2098800.6705063497647643)", - "surface": 17300000, - "canton": null, - "numero_insee": "42004" - } - }, - { - "pk": 26581, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ANDREZIEUX-BOUTHEON", - "center": "POINT (751510.1935899344971403 2061228.3626212161034346)", - "surface": 15880000, - "canton": null, - "numero_insee": "42005" - } - }, - { - "pk": 17367, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "APINAC", - "center": "POINT (729829.2676785415969789 2044728.2631955030374229)", - "surface": 15540000, - "canton": null, - "numero_insee": "42006" - } - }, - { - "pk": 12724, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ARCINGES", - "center": "POINT (750642.8189721903763711 2127883.5769436392001808)", - "surface": 3450000, - "canton": null, - "numero_insee": "42007" - } - }, - { - "pk": 14553, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ARCON", - "center": "POINT (718638.0561237181536853 2113198.4236333044245839)", - "surface": 19130000, - "canton": null, - "numero_insee": "42008" - } - }, - { - "pk": 10669, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ARTHUN", - "center": "POINT (732274.7626293615903705 2086789.3976082140579820)", - "surface": 13880000, - "canton": null, - "numero_insee": "42009" - } - }, - { - "pk": 6028, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "AVEIZIEUX", - "center": "POINT (759384.0121694208355621 2065199.1314139005262405)", - "surface": 9170000, - "canton": null, - "numero_insee": "42010" - } - }, - { - "pk": 28190, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BALBIGNY", - "center": "POINT (743425.8262225509388372 2093790.6623472352512181)", - "surface": 16950000, - "canton": null, - "numero_insee": "42011" - } - }, - { - "pk": 24014, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BARD", - "center": "POINT (729539.6560432891128585 2067047.4016231226269156)", - "surface": 13420000, - "canton": null, - "numero_insee": "42012" - } - }, - { - "pk": 17387, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BELLEGARDE-EN-FOREZ", - "center": "POINT (753711.7464037482859567 2073058.4292303489055485)", - "surface": 18990000, - "canton": null, - "numero_insee": "42013" - } - }, - { - "pk": 31077, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BELLEROCHE", - "center": "POINT (760025.1681148097850382 2130966.1773534421809018)", - "surface": 13940000, - "canton": null, - "numero_insee": "42014" - } - }, - { - "pk": 22165, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BELMONT-DE-LA-LOIRE", - "center": "POINT (755420.4526565253036097 2131027.0661703688092530)", - "surface": 23820000, - "canton": null, - "numero_insee": "42015" - } - }, - { - "pk": 11986, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA BENISSON-DIEU", - "center": "POINT (732106.8369816839694977 2130128.1933584357611835)", - "surface": 11170000, - "canton": null, - "numero_insee": "42016" - } - }, - { - "pk": 31437, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LE BESSAT", - "center": "POINT (770576.3266167319379747 2043873.6976204132661223)", - "surface": 10140000, - "canton": null, - "numero_insee": "42017" - } - }, - { - "pk": 6509, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BESSEY", - "center": "POINT (785271.7075489547569305 2046101.0598345096223056)", - "surface": 6280000, - "canton": null, - "numero_insee": "42018" - } - }, - { - "pk": 28779, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BOEN-SUR-LIGNON", - "center": "POINT (730090.6903780518332496 2084668.8621627006214112)", - "surface": 5990000, - "canton": null, - "numero_insee": "42019" - } - }, - { - "pk": 34217, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BOISSET-LES-MONTROND", - "center": "POINT (745820.9367013331502676 2071089.4883761003147811)", - "surface": 8240000, - "canton": null, - "numero_insee": "42020" - } - }, - { - "pk": 18658, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BOISSET-SAINT-PRIEST", - "center": "POINT (739222.1819731701398268 2058421.2702346560545266)", - "surface": 18160000, - "canton": null, - "numero_insee": "42021" - } - }, - { - "pk": 8946, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BONSON", - "center": "POINT (747219.1237392495386302 2059690.4146396471187472)", - "surface": 5210000, - "canton": null, - "numero_insee": "42022" - } - }, - { - "pk": 20123, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BOURG-ARGENTAL", - "center": "POINT (774846.6836547728162259 2036102.4390181445050985)", - "surface": 20180000, - "canton": null, - "numero_insee": "42023" - } - }, - { - "pk": 11010, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BOYER", - "center": "POINT (745174.7848781871143728 2123533.1261768806725740)", - "surface": 5210000, - "canton": null, - "numero_insee": "42025" - } - }, - { - "pk": 22274, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BRIENNON", - "center": "POINT (734418.9731343827443197 2128946.7392693706788123)", - "surface": 22210000, - "canton": null, - "numero_insee": "42026" - } - }, - { - "pk": 20591, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BULLY", - "center": "POINT (728420.2646479326067492 2104573.3705233214423060)", - "surface": 19140000, - "canton": null, - "numero_insee": "42027" - } - }, - { - "pk": 17920, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BURDIGNES", - "center": "POINT (774483.8600601187208667 2031695.0075628031045198)", - "surface": 30700000, - "canton": null, - "numero_insee": "42028" - } - }, - { - "pk": 14042, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BUSSIERES", - "center": "POINT (749721.0770116627682000 2095045.3278311553876847)", - "surface": 16660000, - "canton": null, - "numero_insee": "42029" - } - }, - { - "pk": 18109, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "BUSSY-ALBIEUX", - "center": "POINT (732049.9356642216444016 2089690.2262476633768529)", - "surface": 19610000, - "canton": null, - "numero_insee": "42030" - } - }, - { - "pk": 34851, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CALOIRE", - "center": "POINT (748521.4987222159979865 2047789.9418413236271590)", - "surface": 4760000, - "canton": null, - "numero_insee": "42031" - } - }, - { - "pk": 12261, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LE CERGNE", - "center": "POINT (751956.6881601663772017 2126393.3833199678920209)", - "surface": 5860000, - "canton": null, - "numero_insee": "42033" - } - }, - { - "pk": 18745, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CERVIERES", - "center": "POINT (709979.0229415067005903 2095608.6896012835204601)", - "surface": 7630000, - "canton": null, - "numero_insee": "42034" - } - }, - { - "pk": 15151, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CEZAY", - "center": "POINT (726538.3484877090668306 2090444.1796847390942276)", - "surface": 10430000, - "canton": null, - "numero_insee": "42035" - } - }, - { - "pk": 30645, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAGNON", - "center": "POINT (773127.7669363747118041 2061612.6446537950541824)", - "surface": 2490000, - "canton": null, - "numero_insee": "42036" - } - }, - { - "pk": 34986, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHALAIN-D'UZORE", - "center": "POINT (734267.3969413900049403 2076096.1653419467620552)", - "surface": 8060000, - "canton": null, - "numero_insee": "42037" - } - }, - { - "pk": 31364, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHALAIN-LE-COMTAL", - "center": "POINT (743104.0818324720021337 2072768.0148804360069335)", - "surface": 18690000, - "canton": null, - "numero_insee": "42038" - } - }, - { - "pk": 15169, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHALMAZEL", - "center": "POINT (715829.1138481365051121 2078542.1379244616255164)", - "surface": 39280000, - "canton": null, - "numero_insee": "42039" - } - }, - { - "pk": 29932, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA CHAMBA", - "center": "POINT (710871.3517014880198985 2084806.0773177500814199)", - "surface": 5150000, - "canton": null, - "numero_insee": "42040" - } - }, - { - "pk": 31365, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAMBEON", - "center": "POINT (742950.3872341169044375 2079072.7167815151624382)", - "surface": 16840000, - "canton": null, - "numero_insee": "42041" - } - }, - { - "pk": 31239, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAMBOEUF", - "center": "POINT (754875.7500399299897254 2065661.2385676370467991)", - "surface": 11240000, - "canton": null, - "numero_insee": "42043" - } - }, - { - "pk": 4861, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LE CHAMBON-FEUGEROLLES", - "center": "POINT (756252.3006488354876637 2045052.9823483685031533)", - "surface": 17440000, - "canton": null, - "numero_insee": "42044" - } - }, - { - "pk": 7507, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA CHAMBONIE", - "center": "POINT (710582.1193143480923027 2083502.3945050383917987)", - "surface": 4440000, - "canton": null, - "numero_insee": "42045" - } - }, - { - "pk": 37121, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAMPDIEU", - "center": "POINT (733596.5365476338192821 2072587.1251265483442694)", - "surface": 18000000, - "canton": null, - "numero_insee": "42046" - } - }, - { - "pk": 9091, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAMPOLY", - "center": "POINT (716983.3888215795159340 2095868.2706694572698325)", - "surface": 15010000, - "canton": null, - "numero_insee": "42047" - } - }, - { - "pk": 25358, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHANDON", - "center": "POINT (744027.0485715968534350 2129028.4027210394851863)", - "surface": 12570000, - "canton": null, - "numero_insee": "42048" - } - }, - { - "pk": 34675, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHANGY", - "center": "POINT (720710.8462396063841879 2128429.9835768281482160)", - "surface": 13740000, - "canton": null, - "numero_insee": "42049" - } - }, - { - "pk": 17346, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA CHAPELLE-EN-LAFAYE", - "center": "POINT (729050.4505526322172955 2053930.6058150851167738)", - "surface": 9070000, - "canton": null, - "numero_insee": "42050" - } - }, - { - "pk": 6302, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA CHAPELLE-VILLARS", - "center": "POINT (785889.4939095980953425 2055815.7749903099611402)", - "surface": 8310000, - "canton": null, - "numero_insee": "42051" - } - }, - { - "pk": 24801, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHARLIEU", - "center": "POINT (741806.4790204046294093 2131211.5308366580866277)", - "surface": 6610000, - "canton": null, - "numero_insee": "42052" - } - }, - { - "pk": 30837, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHATEAUNEUF", - "center": "POINT (779450.4621305018663406 2059664.6209841538220644)", - "surface": 13550000, - "canton": null, - "numero_insee": "42053" - } - }, - { - "pk": 36187, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHATELNEUF", - "center": "POINT (728094.2250129670137540 2072240.1112933536060154)", - "surface": 8530000, - "canton": null, - "numero_insee": "42054" - } - }, - { - "pk": 36317, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHATELUS", - "center": "POINT (765769.2435285863466561 2067655.8152684981469065)", - "surface": 2520000, - "canton": null, - "numero_insee": "42055" - } - }, - { - "pk": 25578, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAVANAY", - "center": "POINT (787146.0921024262206629 2049320.1778695315588266)", - "surface": 15050000, - "canton": null, - "numero_insee": "42056" - } - }, - { - "pk": 29418, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAZELLES-SUR-LAVIEU", - "center": "POINT (729986.7558485495392233 2061545.9060529167763889)", - "surface": 9720000, - "canton": null, - "numero_insee": "42058" - } - }, - { - "pk": 16350, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAZELLES-SUR-LYON", - "center": "POINT (758826.4780331513611600 2071900.8146346535068005)", - "surface": 21070000, - "canton": null, - "numero_insee": "42059" - } - }, - { - "pk": 19104, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHENEREILLES", - "center": "POINT (737044.8764692671829835 2055499.9617573495488614)", - "surface": 9210000, - "canton": null, - "numero_insee": "42060" - } - }, - { - "pk": 20588, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHERIER", - "center": "POINT (720277.6352226405870169 2108708.1636940632015467)", - "surface": 28730000, - "canton": null, - "numero_insee": "42061" - } - }, - { - "pk": 15725, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHEVRIERES", - "center": "POINT (761665.6033785225590691 2067620.8650643627624959)", - "surface": 14610000, - "canton": null, - "numero_insee": "42062" - } - }, - { - "pk": 18111, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHIRASSIMONT", - "center": "POINT (750952.3793768235482275 2103263.4812783640809357)", - "surface": 10690000, - "canton": null, - "numero_insee": "42063" - } - }, - { - "pk": 29582, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHUYER", - "center": "POINT (785010.0372049820143729 2053305.8434926820918918)", - "surface": 11630000, - "canton": null, - "numero_insee": "42064" - } - }, - { - "pk": 5648, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CIVENS", - "center": "POINT (747487.1825312622822821 2087018.7867204195354134)", - "surface": 13280000, - "canton": null, - "numero_insee": "42065" - } - }, - { - "pk": 37521, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CLEPPE", - "center": "POINT (743090.9993375000776723 2086080.5532456182409078)", - "surface": 15400000, - "canton": null, - "numero_insee": "42066" - } - }, - { - "pk": 32013, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "COMBRE", - "center": "POINT (749148.7483095683855936 2115259.2818939844146371)", - "surface": 4000000, - "canton": null, - "numero_insee": "42068" - } - }, - { - "pk": 14223, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "COMMELLE-VERNAY", - "center": "POINT (733462.5835603075101972 2111922.9763563158921897)", - "surface": 12670000, - "canton": null, - "numero_insee": "42069" - } - }, - { - "pk": 3559, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CORDELLE", - "center": "POINT (733511.8955760870594531 2106118.0097837746143341)", - "surface": 26670000, - "canton": null, - "numero_insee": "42070" - } - }, - { - "pk": 13993, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LE COTEAU", - "center": "POINT (735843.3736141020199284 2114445.5164415137842298)", - "surface": 4890000, - "canton": null, - "numero_insee": "42071" - } - }, - { - "pk": 21613, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA COTE-EN-COUZAN", - "center": "POINT (715960.5316630669403821 2086650.9323505854699761)", - "surface": 9070000, - "canton": null, - "numero_insee": "42072" - } - }, - { - "pk": 16030, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "COTTANCE", - "center": "POINT (752265.8250240477500483 2090062.2710171358194202)", - "surface": 13900000, - "canton": null, - "numero_insee": "42073" - } - }, - { - "pk": 22926, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "COUTOUVRE", - "center": "POINT (744596.4052391429431736 2120925.8190264720469713)", - "surface": 21950000, - "canton": null, - "numero_insee": "42074" - } - }, - { - "pk": 14155, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CRAINTILLEUX", - "center": "POINT (747369.9322199169546366 2065497.2875546845607460)", - "surface": 8310000, - "canton": null, - "numero_insee": "42075" - } - }, - { - "pk": 6236, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CROIZET-SUR-GAND", - "center": "POINT (745949.7776351770153269 2103020.7424002801999450)", - "surface": 5960000, - "canton": null, - "numero_insee": "42077" - } - }, - { - "pk": 5327, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LE CROZET", - "center": "POINT (715881.3405984577257186 2131391.7491479911841452)", - "surface": 13360000, - "canton": null, - "numero_insee": "42078" - } - }, - { - "pk": 29537, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CUINZIER", - "center": "POINT (749051.6884051272645593 2126668.9423344344832003)", - "surface": 5580000, - "canton": null, - "numero_insee": "42079" - } - }, - { - "pk": 10170, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CUZIEU", - "center": "POINT (750442.0368834707187489 2069126.8753468713257462)", - "surface": 11630000, - "canton": null, - "numero_insee": "42081" - } - }, - { - "pk": 24685, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "DANCE", - "center": "POINT (731643.4168837210163474 2102198.5033231540583074)", - "surface": 8860000, - "canton": null, - "numero_insee": "42082" - } - }, - { - "pk": 10585, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "DARGOIRE", - "center": "POINT (782407.0367521648295224 2065095.0499753896147013)", - "surface": 1950000, - "canton": null, - "numero_insee": "42083" - } - }, - { - "pk": 11142, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "DEBATS-RIVIERE-D'ORPRA", - "center": "POINT (724880.1954143005423248 2085325.2881444664672017)", - "surface": 3390000, - "canton": null, - "numero_insee": "42084" - } - }, - { - "pk": 21239, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "DOIZIEUX", - "center": "POINT (776238.8217267378931865 2048926.8464905237779021)", - "surface": 27880000, - "canton": null, - "numero_insee": "42085" - } - }, - { - "pk": 33117, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ECOCHE", - "center": "POINT (752028.6685679028742015 2129697.0137612642720342)", - "surface": 11090000, - "canton": null, - "numero_insee": "42086" - } - }, - { - "pk": 29933, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ECOTAY-L'OLME", - "center": "POINT (733347.2809833359206095 2066579.2581508911680430)", - "surface": 6410000, - "canton": null, - "numero_insee": "42087" - } - }, - { - "pk": 32221, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "EPERCIEUX-SAINT-PAUL", - "center": "POINT (744963.7235212576342747 2089499.6882884816732258)", - "surface": 8140000, - "canton": null, - "numero_insee": "42088" - } - }, - { - "pk": 30171, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ESSERTINES-EN-CHATELNEUF", - "center": "POINT (729615.0982966828159988 2069950.8233927867840976)", - "surface": 15140000, - "canton": null, - "numero_insee": "42089" - } - }, - { - "pk": 24681, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ESSERTINES-EN-DONZY", - "center": "POINT (755702.8603533516870812 2086087.7406140090897679)", - "surface": 7100000, - "canton": null, - "numero_insee": "42090" - } - }, - { - "pk": 15593, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ESTIVAREILLES", - "center": "POINT (731393.3153346065664664 2049145.8356517828069627)", - "surface": 22720000, - "canton": null, - "numero_insee": "42091" - } - }, - { - "pk": 30378, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "L'ETRAT", - "center": "POINT (759054.3791982386028394 2056888.3130700085312128)", - "surface": 8650000, - "canton": null, - "numero_insee": "42092" - } - }, - { - "pk": 33953, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "FARNAY", - "center": "POINT (777076.4797665342921391 2056341.1819168240763247)", - "surface": 7390000, - "canton": null, - "numero_insee": "42093" - } - }, - { - "pk": 36051, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "FEURS", - "center": "POINT (746820.6190029858844355 2083009.3298665483016521)", - "surface": 23890000, - "canton": null, - "numero_insee": "42094" - } - }, - { - "pk": 26582, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "FONTANES", - "center": "POINT (763512.3799347497988492 2062331.4912578696385026)", - "surface": 6930000, - "canton": null, - "numero_insee": "42096" - } - }, - { - "pk": 30834, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA FOUILLOUSE", - "center": "POINT (754944.7437993958592415 2057554.0110077825374901)", - "surface": 21020000, - "canton": null, - "numero_insee": "42097" - } - }, - { - "pk": 21246, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "FOURNEAUX", - "center": "POINT (750023.5065947731491178 2106558.6545074675232172)", - "surface": 12580000, - "canton": null, - "numero_insee": "42098" - } - }, - { - "pk": 11365, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "FRAISSES", - "center": "POINT (750652.3429847720544785 2044404.7471935939975083)", - "surface": 4670000, - "canton": null, - "numero_insee": "42099" - } - }, - { - "pk": 12042, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA GIMOND", - "center": "POINT (762198.4356924456078559 2063821.7473259791731834)", - "surface": 3360000, - "canton": null, - "numero_insee": "42100" - } - }, - { - "pk": 30419, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "GRAMMOND", - "center": "POINT (764283.2564834963995963 2065841.4277602138463408)", - "surface": 8170000, - "canton": null, - "numero_insee": "42102" - } - }, - { - "pk": 24097, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA GRAND-CROIX", - "center": "POINT (773655.5149447306757793 2058414.0505509716458619)", - "surface": 4040000, - "canton": null, - "numero_insee": "42103" - } - }, - { - "pk": 7561, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA GRESLE", - "center": "POINT (750001.8325513399904594 2120871.7026383951306343)", - "surface": 14760000, - "canton": null, - "numero_insee": "42104" - } - }, - { - "pk": 22870, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "GREZIEUX-LE-FROMENTAL", - "center": "POINT (741727.5175796155817807 2069853.5369462540838867)", - "surface": 10410000, - "canton": null, - "numero_insee": "42105" - } - }, - { - "pk": 34762, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "GREZOLLES", - "center": "POINT (725079.3599915994564071 2097238.1856102733872831)", - "surface": 5540000, - "canton": null, - "numero_insee": "42106" - } - }, - { - "pk": 36296, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "GUMIERES", - "center": "POINT (728099.5068206294672564 2059828.2416402064263821)", - "surface": 16040000, - "canton": null, - "numero_insee": "42107" - } - }, - { - "pk": 24069, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "L'HOPITAL-LE-GRAND", - "center": "POINT (745051.7171742094215006 2067379.3999302559532225)", - "surface": 12910000, - "canton": null, - "numero_insee": "42108" - } - }, - { - "pk": 37347, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "L'HOPITAL-SOUS-ROCHEFORT", - "center": "POINT (724365.3168704160489142 2087022.5255095493048429)", - "surface": 1090000, - "canton": null, - "numero_insee": "42109" - } - }, - { - "pk": 14291, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "L'HORME", - "center": "POINT (772266.2051099217496812 2057000.8531663501635194)", - "surface": 4510000, - "canton": null, - "numero_insee": "42110" - } - }, - { - "pk": 19493, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "JARNOSSE", - "center": "POINT (747572.5573855398688465 2124053.9775614505633712)", - "surface": 12010000, - "canton": null, - "numero_insee": "42112" - } - }, - { - "pk": 26611, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "JAS", - "center": "POINT (754215.1775725644547492 2084473.5643784706480801)", - "surface": 6300000, - "canton": null, - "numero_insee": "42113" - } - }, - { - "pk": 32577, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "JEANSAGNIERE", - "center": "POINT (714794.2837240919470787 2082537.1605482986196876)", - "surface": 13750000, - "canton": null, - "numero_insee": "42114" - } - }, - { - "pk": 13010, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "JONZIEUX", - "center": "POINT (758819.3176245474023744 2037467.3834045121911913)", - "surface": 10340000, - "canton": null, - "numero_insee": "42115" - } - }, - { - "pk": 23936, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "JURE", - "center": "POINT (720850.2491653325268999 2100205.1027513649314642)", - "surface": 12060000, - "canton": null, - "numero_insee": "42116" - } - }, - { - "pk": 37814, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LAVIEU", - "center": "POINT (733191.3107652902835980 2061372.9283273098990321)", - "surface": 4480000, - "canton": null, - "numero_insee": "42117" - } - }, - { - "pk": 13842, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LAY", - "center": "POINT (747497.5253228138899431 2109339.7707959064282477)", - "surface": 12600000, - "canton": null, - "numero_insee": "42118" - } - }, - { - "pk": 34761, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LEIGNEUX", - "center": "POINT (728195.8268124479800463 2083852.0148881606291980)", - "surface": 4450000, - "canton": null, - "numero_insee": "42119" - } - }, - { - "pk": 25319, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LENTIGNY", - "center": "POINT (726860.3454800070030615 2111466.5374602782540023)", - "surface": 11470000, - "canton": null, - "numero_insee": "42120" - } - }, - { - "pk": 34310, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LERIGNEUX", - "center": "POINT (725634.4939752585487440 2067214.4398843250237405)", - "surface": 9750000, - "canton": null, - "numero_insee": "42121" - } - }, - { - "pk": 22040, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LEZIGNEUX", - "center": "POINT (734273.5872533654328436 2063584.2414823221042752)", - "surface": 14800000, - "canton": null, - "numero_insee": "42122" - } - }, - { - "pk": 14204, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LORETTE", - "center": "POINT (775350.2098365098936483 2059229.2713860447984189)", - "surface": 3400000, - "canton": null, - "numero_insee": "42123" - } - }, - { - "pk": 35073, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LUPE", - "center": "POINT (785087.7530042134458199 2044197.6322083598934114)", - "surface": 1450000, - "canton": null, - "numero_insee": "42124" - } - }, - { - "pk": 25897, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LURE", - "center": "POINT (723560.2239004287403077 2099327.2581884413957596)", - "surface": 6230000, - "canton": null, - "numero_insee": "42125" - } - }, - { - "pk": 14934, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LURIECQ", - "center": "POINT (735876.9635689806891605 2051586.2543688016012311)", - "surface": 20340000, - "canton": null, - "numero_insee": "42126" - } - }, - { - "pk": 8448, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MABLY", - "center": "POINT (733470.8455440924735740 2122733.0066656088456511)", - "surface": 33280000, - "canton": null, - "numero_insee": "42127" - } - }, - { - "pk": 15134, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MACHEZAL", - "center": "POINT (753442.6074524527648464 2104685.9761778670363128)", - "surface": 14060000, - "canton": null, - "numero_insee": "42128" - } - }, - { - "pk": 5702, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MACLAS", - "center": "POINT (784999.6185395078500733 2042795.5094089463818818)", - "surface": 10310000, - "canton": null, - "numero_insee": "42129" - } - }, - { - "pk": 36329, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MAGNEUX-HAUTE-RIVE", - "center": "POINT (742876.6767840008251369 2075969.1373043786734343)", - "surface": 12530000, - "canton": null, - "numero_insee": "42130" - } - }, - { - "pk": 7296, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MAIZILLY", - "center": "POINT (747201.6485433052293956 2132358.4114090879447758)", - "surface": 5150000, - "canton": null, - "numero_insee": "42131" - } - }, - { - "pk": 25977, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MALLEVAL", - "center": "POINT (787077.6061522796517238 2045615.9813659365754575)", - "surface": 5130000, - "canton": null, - "numero_insee": "42132" - } - }, - { - "pk": 37838, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARCENOD", - "center": "POINT (767386.0130331049440429 2065867.8583897144999355)", - "surface": 9020000, - "canton": null, - "numero_insee": "42133" - } - }, - { - "pk": 20587, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARCILLY-LE-CHATEL", - "center": "POINT (731749.8931838267017156 2077876.4966798634268343)", - "surface": 16460000, - "canton": null, - "numero_insee": "42134" - } - }, - { - "pk": 8836, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARCLOPT", - "center": "POINT (746785.2210964781697839 2075401.7985868009272963)", - "surface": 8660000, - "canton": null, - "numero_insee": "42135" - } - }, - { - "pk": 36736, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARCOUX", - "center": "POINT (729333.3339321892708540 2079557.5922823816072196)", - "surface": 15450000, - "canton": null, - "numero_insee": "42136" - } - }, - { - "pk": 4352, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARGERIE-CHANTAGRET", - "center": "POINT (734106.5673406313871965 2059679.0620005852542818)", - "surface": 7810000, - "canton": null, - "numero_insee": "42137" - } - }, - { - "pk": 15848, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARINGES", - "center": "POINT (757195.2440599632682279 2075390.2737415304873139)", - "surface": 9120000, - "canton": null, - "numero_insee": "42138" - } - }, - { - "pk": 22025, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARLHES", - "center": "POINT (761546.4907726900419220 2034587.7477410591673106)", - "surface": 32590000, - "canton": null, - "numero_insee": "42139" - } - }, - { - "pk": 37500, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MARS", - "center": "POINT (747826.8399324513738975 2129461.0836381018161774)", - "surface": 12150000, - "canton": null, - "numero_insee": "42141" - } - }, - { - "pk": 19408, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MERLE-LEIGNEC", - "center": "POINT (732147.4993874880019575 2042846.0920129616279155)", - "surface": 16390000, - "canton": null, - "numero_insee": "42142" - } - }, - { - "pk": 5519, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MIZERIEUX", - "center": "POINT (742161.2843030970543623 2089475.8616834520362318)", - "surface": 7060000, - "canton": null, - "numero_insee": "42143" - } - }, - { - "pk": 15530, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MONTAGNY", - "center": "POINT (746135.9791180902393535 2116434.7648287178017199)", - "surface": 25520000, - "canton": null, - "numero_insee": "42145" - } - }, - { - "pk": 9057, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MONTARCHER", - "center": "POINT (729265.9272305878112093 2052130.6882173328194767)", - "surface": 5870000, - "canton": null, - "numero_insee": "42146" - } - }, - { - "pk": 20346, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MONTBRISON", - "center": "POINT (735335.4526618807576597 2068197.6832140793558210)", - "surface": 16290000, - "canton": null, - "numero_insee": "42147" - } - }, - { - "pk": 34000, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MONTCHAL", - "center": "POINT (754739.0409403011435643 2093486.5200723453890532)", - "surface": 8880000, - "canton": null, - "numero_insee": "42148" - } - }, - { - "pk": 12944, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MONTROND-LES-BAINS", - "center": "POINT (748413.0222461256198585 2072312.6811074151191860)", - "surface": 10150000, - "canton": null, - "numero_insee": "42149" - } - }, - { - "pk": 20931, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "MONTVERDUN", - "center": "POINT (735430.1895900380332023 2080610.3264149387832731)", - "surface": 16610000, - "canton": null, - "numero_insee": "42150" - } - }, - { - "pk": 32914, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NANDAX", - "center": "POINT (741670.1243405101122335 2123703.5111361611634493)", - "surface": 8140000, - "canton": null, - "numero_insee": "42152" - } - }, - { - "pk": 21258, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NEAUX", - "center": "POINT (741902.9409029048401862 2108091.0836871531791985)", - "surface": 17530000, - "canton": null, - "numero_insee": "42153" - } - }, - { - "pk": 9135, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NERONDE", - "center": "POINT (747122.2276799480896443 2094622.8465659737121314)", - "surface": 8580000, - "canton": null, - "numero_insee": "42154" - } - }, - { - "pk": 16403, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NERVIEUX", - "center": "POINT (740240.0630057768430561 2091761.6986724315211177)", - "surface": 19640000, - "canton": null, - "numero_insee": "42155" - } - }, - { - "pk": 5382, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NEULISE", - "center": "POINT (742058.3318590710405260 2101586.3474431494250894)", - "surface": 22930000, - "canton": null, - "numero_insee": "42156" - } - }, - { - "pk": 17604, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NOAILLY", - "center": "POINT (728821.0615465107839555 2128098.4614336132071912)", - "surface": 31940000, - "canton": null, - "numero_insee": "42157" - } - }, - { - "pk": 12477, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LES NOES", - "center": "POINT (716012.0694572909269482 2115978.7354548126459122)", - "surface": 15640000, - "canton": null, - "numero_insee": "42158" - } - }, - { - "pk": 22253, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NOIRETABLE", - "center": "POINT (709322.5315812272019684 2090398.2359939566813409)", - "surface": 40650000, - "canton": null, - "numero_insee": "42159" - } - }, - { - "pk": 13310, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NOLLIEUX", - "center": "POINT (728425.5552444406785071 2092161.8031124842818826)", - "surface": 7030000, - "canton": null, - "numero_insee": "42160" - } - }, - { - "pk": 12128, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "NOTRE-DAME-DE-BOISSET", - "center": "POINT (739271.7905380320735276 2111471.8740107431076467)", - "surface": 9030000, - "canton": null, - "numero_insee": "42161" - } - }, - { - "pk": 13362, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "OUCHES", - "center": "POINT (728441.3165882253088057 2113882.1821189946494997)", - "surface": 10060000, - "canton": null, - "numero_insee": "42162" - } - }, - { - "pk": 10072, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA PACAUDIERE", - "center": "POINT (719072.9872184698469937 2132720.0077980980277061)", - "surface": 20810000, - "canton": null, - "numero_insee": "42163" - } - }, - { - "pk": 35220, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PALOGNEUX", - "center": "POINT (723592.6500700165051967 2083712.8452120120637119)", - "surface": 7100000, - "canton": null, - "numero_insee": "42164" - } - }, - { - "pk": 3170, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PANISSIERES", - "center": "POINT (756069.1341333955060691 2090094.6375693492591381)", - "surface": 26440000, - "canton": null, - "numero_insee": "42165" - } - }, - { - "pk": 26505, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PARIGNY", - "center": "POINT (735971.5219599002739415 2111143.5503886719234288)", - "surface": 9160000, - "canton": null, - "numero_insee": "42166" - } - }, - { - "pk": 35074, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PAVEZIN", - "center": "POINT (781698.5331145523814484 2054278.5633232416585088)", - "surface": 8780000, - "canton": null, - "numero_insee": "42167" - } - }, - { - "pk": 18023, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PELUSSIN", - "center": "POINT (781838.7506934411358088 2049575.1875264574773610)", - "surface": 32380000, - "canton": null, - "numero_insee": "42168" - } - }, - { - "pk": 21093, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PERIGNEUX", - "center": "POINT (741285.2244083090918139 2051231.8235151565168053)", - "surface": 31840000, - "canton": null, - "numero_insee": "42169" - } - }, - { - "pk": 16397, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PERREUX", - "center": "POINT (739923.8986793403746560 2117182.6870863609947264)", - "surface": 41500000, - "canton": null, - "numero_insee": "42170" - } - }, - { - "pk": 34987, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PINAY", - "center": "POINT (739583.3979783116374165 2098362.3162974901497364)", - "surface": 6640000, - "canton": null, - "numero_insee": "42171" - } - }, - { - "pk": 17919, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PLANFOY", - "center": "POINT (764060.2099706368753687 2045019.3594879079610109)", - "surface": 12510000, - "canton": null, - "numero_insee": "42172" - } - }, - { - "pk": 3996, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "POMMIERS", - "center": "POINT (735117.7724648423027247 2093820.1468075015582144)", - "surface": 24090000, - "canton": null, - "numero_insee": "42173" - } - }, - { - "pk": 20676, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PONCINS", - "center": "POINT (741120.7300165854394436 2082360.2985601550899446)", - "surface": 20640000, - "canton": null, - "numero_insee": "42174" - } - }, - { - "pk": 8765, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "POUILLY-LES-FEURS", - "center": "POINT (747355.5994522013934329 2090721.1606876507867128)", - "surface": 13100000, - "canton": null, - "numero_insee": "42175" - } - }, - { - "pk": 36682, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "POUILLY-LES-NONAINS", - "center": "POINT (727010.3827001248719171 2117373.2646235805004835)", - "surface": 10370000, - "canton": null, - "numero_insee": "42176" - } - }, - { - "pk": 24106, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "POUILLY-SOUS-CHARLIEU", - "center": "POINT (738733.6483157543698326 2127682.2148070079274476)", - "surface": 16490000, - "canton": null, - "numero_insee": "42177" - } - }, - { - "pk": 6545, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PRADINES", - "center": "POINT (742063.9727758500957862 2112696.7199842701666057)", - "surface": 11440000, - "canton": null, - "numero_insee": "42178" - } - }, - { - "pk": 38035, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PRALONG", - "center": "POINT (731176.5653981862124056 2074668.5772523835767061)", - "surface": 8000000, - "canton": null, - "numero_insee": "42179" - } - }, - { - "pk": 31063, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "PRECIEUX", - "center": "POINT (741351.8352978854672983 2066947.5614166406448931)", - "surface": 16440000, - "canton": null, - "numero_insee": "42180" - } - }, - { - "pk": 25429, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "REGNY", - "center": "POINT (745369.3429444201756269 2112424.5463865208439529)", - "surface": 13770000, - "canton": null, - "numero_insee": "42181" - } - }, - { - "pk": 17707, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "RENAISON", - "center": "POINT (721604.0946492872899398 2117527.5605946243740618)", - "surface": 23340000, - "canton": null, - "numero_insee": "42182" - } - }, - { - "pk": 32522, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA RICAMARIE", - "center": "POINT (759040.3487093541771173 2046778.3742502045352012)", - "surface": 6900000, - "canton": null, - "numero_insee": "42183" - } - }, - { - "pk": 29376, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "RIORGES", - "center": "POINT (731315.7373773371800780 2117209.6397475805133581)", - "surface": 15660000, - "canton": null, - "numero_insee": "42184" - } - }, - { - "pk": 12395, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "RIVAS", - "center": "POINT (749258.0001364880008623 2067114.8838512036018074)", - "surface": 4690000, - "canton": null, - "numero_insee": "42185" - } - }, - { - "pk": 31481, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ROANNE", - "center": "POINT (734816.1616492525208741 2117539.6511322157457471)", - "surface": 16070000, - "canton": null, - "numero_insee": "42187" - } - }, - { - "pk": 27668, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ROCHE-LA-MOLIERE", - "center": "POINT (755616.8335106307640672 2049151.5744163731578737)", - "surface": 17440000, - "canton": null, - "numero_insee": "42189" - } - }, - { - "pk": 27637, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ROISEY", - "center": "POINT (781668.4520987035939470 2046070.3195301885716617)", - "surface": 13060000, - "canton": null, - "numero_insee": "42191" - } - }, - { - "pk": 32083, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ROZIER-COTES-D'AUREC", - "center": "POINT (739250.5305695963324979 2043306.8267347707878798)", - "surface": 13770000, - "canton": null, - "numero_insee": "42192" - } - }, - { - "pk": 9336, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "ROZIER-EN-DONZY", - "center": "POINT (750455.7428549218457192 2091047.8137454669922590)", - "surface": 9620000, - "canton": null, - "numero_insee": "42193" - } - }, - { - "pk": 9724, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAIL-LES-BAINS", - "center": "POINT (716119.6217716488754377 2138700.4016603198833764)", - "surface": 21470000, - "canton": null, - "numero_insee": "42194" - } - }, - { - "pk": 27566, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAIL-SOUS-COUZAN", - "center": "POINT (726401.0485432844143361 2083036.0195071471389383)", - "surface": 7540000, - "canton": null, - "numero_insee": "42195" - } - }, - { - "pk": 10753, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINTE-AGATHE-EN-DONZY", - "center": "POINT (752926.4064800908090547 2094772.3170295709278435)", - "surface": 3370000, - "canton": null, - "numero_insee": "42196" - } - }, - { - "pk": 37252, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINTE-AGATHE-LA-BOUTERESSE", - "center": "POINT (733399.5280164270661771 2083996.3014663693029433)", - "surface": 11670000, - "canton": null, - "numero_insee": "42197" - } - }, - { - "pk": 13710, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ALBAN-LES-EAUX", - "center": "POINT (723444.6988754534395412 2112938.9325319547206163)", - "surface": 7880000, - "canton": null, - "numero_insee": "42198" - } - }, - { - "pk": 10539, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ANDRE-D'APCHON", - "center": "POINT (723724.5675040162168443 2115343.5265377019532025)", - "surface": 13530000, - "canton": null, - "numero_insee": "42199" - } - }, - { - "pk": 34075, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ANDRE-LE-PUY", - "center": "POINT (750203.5450760518433526 2073629.1544836268294603)", - "surface": 8680000, - "canton": null, - "numero_insee": "42200" - } - }, - { - "pk": 36723, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-APPOLINARD", - "center": "POINT (781111.4490167282056063 2040960.5754384773317724)", - "surface": 9830000, - "canton": null, - "numero_insee": "42201" - } - }, - { - "pk": 16353, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-BARTHELEMY-LESTRA", - "center": "POINT (755039.7282454624073580 2081677.9254417642951012)", - "surface": 11130000, - "canton": null, - "numero_insee": "42202" - } - }, - { - "pk": 3383, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-BONNET-DES-QUARTS", - "center": "POINT (715221.4972926981281489 2126581.7702334374189377)", - "surface": 32850000, - "canton": null, - "numero_insee": "42203" - } - }, - { - "pk": 24088, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-BONNET-LE-CHATEAU", - "center": "POINT (735201.8423263520235196 2048577.5999678466469049)", - "surface": 1880000, - "canton": null, - "numero_insee": "42204" - } - }, - { - "pk": 16641, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-BONNET-LE-COURREAU", - "center": "POINT (723875.2220509808976203 2074006.0176959459204227)", - "surface": 50360000, - "canton": null, - "numero_insee": "42205" - } - }, - { - "pk": 31637, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-BONNET-LES-OULES", - "center": "POINT (755807.2167136599309742 2062065.6986906223464757)", - "surface": 12410000, - "canton": null, - "numero_insee": "42206" - } - }, - { - "pk": 18141, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-CHAMOND", - "center": "POINT (769284.8384610810317099 2054473.0221564935054630)", - "surface": 55100000, - "canton": null, - "numero_insee": "42207" - } - }, - { - "pk": 3083, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-CHRISTO-EN-JAREZ", - "center": "POINT (766319.9928732158150524 2061754.8267648373730481)", - "surface": 22110000, - "canton": null, - "numero_insee": "42208" - } - }, - { - "pk": 11116, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINTE-COLOMBE-SUR-GAND", - "center": "POINT (751095.8934770948253572 2098159.9326755334623158)", - "surface": 13560000, - "canton": null, - "numero_insee": "42209" - } - }, - { - "pk": 11796, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINTE-CROIX-EN-JAREZ", - "center": "POINT (779585.5500227777520195 2055561.8026018829550594)", - "surface": 12050000, - "canton": null, - "numero_insee": "42210" - } - }, - { - "pk": 5508, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-CYPRIEN", - "center": "POINT (747802.6351070408709347 2061697.3077403439674526)", - "surface": 7130000, - "canton": null, - "numero_insee": "42211" - } - }, - { - "pk": 14802, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-CYR-DE-FAVIERES", - "center": "POINT (736996.1898954017087817 2108349.6585425254888833)", - "surface": 14250000, - "canton": null, - "numero_insee": "42212" - } - }, - { - "pk": 27162, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-CYR-DE-VALORGES", - "center": "POINT (753376.5896697873249650 2100681.6792465588077903)", - "surface": 9910000, - "canton": null, - "numero_insee": "42213" - } - }, - { - "pk": 14800, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-CYR-LES-VIGNES", - "center": "POINT (752077.1210361799458042 2076948.2435675517190248)", - "surface": 19390000, - "canton": null, - "numero_insee": "42214" - } - }, - { - "pk": 37994, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-DENIS-DE-CABANNE", - "center": "POINT (744399.3001683866605163 2132334.5788091346621513)", - "surface": 7800000, - "canton": null, - "numero_insee": "42215" - } - }, - { - "pk": 3789, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-DENIS-SUR-COISE", - "center": "POINT (763346.6546528926119208 2070037.4837756161578000)", - "surface": 10780000, - "canton": null, - "numero_insee": "42216" - } - }, - { - "pk": 3289, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-DIDIER-SUR-ROCHEFORT", - "center": "POINT (718640.8131354838842526 2089276.1219021393917501)", - "surface": 22720000, - "canton": null, - "numero_insee": "42217" - } - }, - { - "pk": 22976, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ETIENNE", - "center": "POINT (762821.6206581897567958 2049413.1047677143942565)", - "surface": 79950000, - "canton": null, - "numero_insee": "42218" - } - }, - { - "pk": 8837, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ETIENNE-LE-MOLARD", - "center": "POINT (737006.0805393599439412 2083626.5626184304710478)", - "surface": 16580000, - "canton": null, - "numero_insee": "42219" - } - }, - { - "pk": 33917, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-FORGEUX-LESPINASSE", - "center": "POINT (724119.6537793671013787 2127758.2733817277476192)", - "surface": 16470000, - "canton": null, - "numero_insee": "42220" - } - }, - { - "pk": 19541, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINTE-FOY-SAINT-SULPICE", - "center": "POINT (737771.9100011948030442 2087736.9497947418130934)", - "surface": 29330000, - "canton": null, - "numero_insee": "42221" - } - }, - { - "pk": 21229, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-GALMIER", - "center": "POINT (754247.9610680195037276 2068858.9697607015259564)", - "surface": 19540000, - "canton": null, - "numero_insee": "42222" - } - }, - { - "pk": 34441, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-GENEST-MALIFAUX", - "center": "POINT (764197.8081532497890294 2040616.2233392545022070)", - "surface": 47010000, - "canton": null, - "numero_insee": "42224" - } - }, - { - "pk": 35860, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "GENILAC", - "center": "POINT (774627.3991729326080531 2061825.6211423964705318)", - "surface": 8580000, - "canton": null, - "numero_insee": "42225" - } - }, - { - "pk": 29633, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-GEORGES-EN-COUZAN", - "center": "POINT (724026.9789294020738453 2079712.7355801700614393)", - "surface": 23660000, - "canton": null, - "numero_insee": "42227" - } - }, - { - "pk": 31638, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-GEORGES-HAUTE-VILLE", - "center": "POINT (737090.5382877934025601 2061906.5356395349372178)", - "surface": 9640000, - "canton": null, - "numero_insee": "42228" - } - }, - { - "pk": 10120, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-GERMAIN-LAVAL", - "center": "POINT (730714.8041704688221216 2093682.6534104659222066)", - "surface": 17050000, - "canton": null, - "numero_insee": "42230" - } - }, - { - "pk": 30776, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-GERMAIN-LESPINASSE", - "center": "POINT (725749.0388834385666996 2124469.0837614601477981)", - "surface": 14770000, - "canton": null, - "numero_insee": "42231" - } - }, - { - "pk": 29042, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-HAON-LE-CHATEL", - "center": "POINT (722188.4666667298879474 2119434.2697868803516030)", - "surface": 860000, - "canton": null, - "numero_insee": "42232" - } - }, - { - "pk": 34680, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-HAON-LE-VIEUX", - "center": "POINT (721278.3609992439160123 2120527.5585500267334282)", - "surface": 16430000, - "canton": null, - "numero_insee": "42233" - } - }, - { - "pk": 21588, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-HEAND", - "center": "POINT (759720.9209314212203026 2060897.8553579419385642)", - "surface": 30930000, - "canton": null, - "numero_insee": "42234" - } - }, - { - "pk": 22909, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-HILAIRE-CUSSON-LA-VALMITTE", - "center": "POINT (734955.1380772719858214 2042269.3524760836735368)", - "surface": 18590000, - "canton": null, - "numero_insee": "42235" - } - }, - { - "pk": 12449, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JEAN-BONNEFONDS", - "center": "POINT (765194.7981131027918309 2052836.6243709782138467)", - "surface": 11710000, - "canton": null, - "numero_insee": "42237" - } - }, - { - "pk": 14097, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JEAN-LA-VETRE", - "center": "POINT (713154.6924914822448045 2087027.5162766452413052)", - "surface": 16260000, - "canton": null, - "numero_insee": "42238" - } - }, - { - "pk": 15440, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JEAN-SAINT-MAURICE-SUR-LOIRE", - "center": "POINT (727793.4058737684972584 2107670.9329468887299299)", - "surface": 24350000, - "canton": null, - "numero_insee": "42239" - } - }, - { - "pk": 14945, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JEAN-SOLEYMIEUX", - "center": "POINT (730826.5677370316116139 2056948.5939233857207000)", - "surface": 16590000, - "canton": null, - "numero_insee": "42240" - } - }, - { - "pk": 9381, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JODARD", - "center": "POINT (738967.5682949346955866 2100158.7672235406935215)", - "surface": 6660000, - "canton": null, - "numero_insee": "42241" - } - }, - { - "pk": 6843, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JOSEPH", - "center": "POINT (778210.9805507576093078 2064158.3937885523773730)", - "surface": 8270000, - "canton": null, - "numero_insee": "42242" - } - }, - { - "pk": 9995, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JULIEN-D'ODDES", - "center": "POINT (728494.1988892360823229 2095865.8630974316038191)", - "surface": 10330000, - "canton": null, - "numero_insee": "42243" - } - }, - { - "pk": 21134, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JULIEN-MOLIN-MOLETTE", - "center": "POINT (778832.4059923911700025 2038238.4874170012772083)", - "surface": 9480000, - "canton": null, - "numero_insee": "42246" - } - }, - { - "pk": 37016, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JUST-EN-BAS", - "center": "POINT (720100.6256875467952341 2082381.9809101414866745)", - "surface": 20770000, - "canton": null, - "numero_insee": "42247" - } - }, - { - "pk": 23277, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JUST-EN-CHEVALET", - "center": "POINT (716817.0848354768240824 2103674.1544800237752497)", - "surface": 29160000, - "canton": null, - "numero_insee": "42248" - } - }, - { - "pk": 30515, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-LAURENT-LA-CONCHE", - "center": "POINT (747562.0918314924929291 2078211.0744226677343249)", - "surface": 15710000, - "canton": null, - "numero_insee": "42251" - } - }, - { - "pk": 4007, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-LAURENT-ROCHEFORT", - "center": "POINT (722061.6106961463810876 2087203.1635860563255847)", - "surface": 15680000, - "canton": null, - "numero_insee": "42252" - } - }, - { - "pk": 4548, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-LEGER-SUR-ROANNE", - "center": "POINT (728815.3119590040296316 2116988.2208448876626790)", - "surface": 4530000, - "canton": null, - "numero_insee": "42253" - } - }, - { - "pk": 19933, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MARCEL-DE-FELINES", - "center": "POINT (743696.3027240713126957 2097296.2483080080710351)", - "surface": 22470000, - "canton": null, - "numero_insee": "42254" - } - }, - { - "pk": 8356, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MARCEL-D'URFE", - "center": "POINT (719768.8307128003798425 2097893.7749209133908153)", - "surface": 14060000, - "canton": null, - "numero_insee": "42255" - } - }, - { - "pk": 20740, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MARCELLIN-EN-FOREZ", - "center": "POINT (743146.9426864286651835 2055952.2103882674127817)", - "surface": 31310000, - "canton": null, - "numero_insee": "42256" - } - }, - { - "pk": 14511, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MARTIN-D'ESTREAUX", - "center": "POINT (714246.0472358812112361 2135381.5185711914673448)", - "surface": 29890000, - "canton": null, - "numero_insee": "42257" - } - }, - { - "pk": 28278, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MARTIN-LA-PLAINE", - "center": "POINT (776011.5812250805320218 2063839.3507402390241623)", - "surface": 9640000, - "canton": null, - "numero_insee": "42259" - } - }, - { - "pk": 16032, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MARTIN-LA-SAUVETE", - "center": "POINT (723003.8746874562930316 2094117.6609076778404415)", - "surface": 29690000, - "canton": null, - "numero_insee": "42260" - } - }, - { - "pk": 15738, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MARTIN-LESTRA", - "center": "POINT (758129.6668544062413275 2083205.6500574906822294)", - "surface": 16230000, - "canton": null, - "numero_insee": "42261" - } - }, - { - "pk": 24512, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MEDARD-EN-FOREZ", - "center": "POINT (757960.6144277738640085 2067789.5130510369781405)", - "surface": 10380000, - "canton": null, - "numero_insee": "42264" - } - }, - { - "pk": 32303, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-MICHEL-SUR-RHONE", - "center": "POINT (787523.3892269153147936 2052026.0271657085977495)", - "surface": 5870000, - "canton": null, - "numero_insee": "42265" - } - }, - { - "pk": 22457, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-NIZIER-DE-FORNAS", - "center": "POINT (736621.8134304292034358 2046387.5187096521258354)", - "surface": 16040000, - "canton": null, - "numero_insee": "42266" - } - }, - { - "pk": 26892, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-NIZIER-SOUS-CHARLIEU", - "center": "POINT (738207.7096758104162291 2130680.4849615246057510)", - "surface": 13130000, - "canton": null, - "numero_insee": "42267" - } - }, - { - "pk": 37501, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PAUL-DE-VEZELIN", - "center": "POINT (735463.6973205353133380 2100229.0866862796247005)", - "surface": 13420000, - "canton": null, - "numero_insee": "42268" - } - }, - { - "pk": 28993, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PAUL-D'UZORE", - "center": "POINT (736566.8723834281554446 2076415.9870972814969718)", - "surface": 9630000, - "canton": null, - "numero_insee": "42269" - } - }, - { - "pk": 14933, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PAUL-EN-CORNILLON", - "center": "POINT (748939.7372535690665245 2045691.4499188403133303)", - "surface": 3640000, - "canton": null, - "numero_insee": "42270" - } - }, - { - "pk": 16768, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PAUL-EN-JAREZ", - "center": "POINT (775288.5188160733086988 2054724.3859580967109650)", - "surface": 19830000, - "canton": null, - "numero_insee": "42271" - } - }, - { - "pk": 9867, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PIERRE-DE-BOEUF", - "center": "POINT (788587.5060004140250385 2044627.8896051896736026)", - "surface": 6010000, - "canton": null, - "numero_insee": "42272" - } - }, - { - "pk": 30076, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PIERRE-LA-NOAILLE", - "center": "POINT (736387.4879945148713887 2132867.0216182442381978)", - "surface": 7470000, - "canton": null, - "numero_insee": "42273" - } - }, - { - "pk": 8304, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-POLGUES", - "center": "POINT (727538.1855317848967388 2102363.8294409103691578)", - "surface": 5830000, - "canton": null, - "numero_insee": "42274" - } - }, - { - "pk": 8939, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PRIEST-EN-JAREZ", - "center": "POINT (759172.3626219746656716 2054787.2821381525136530)", - "surface": 3080000, - "canton": null, - "numero_insee": "42275" - } - }, - { - "pk": 18150, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PRIEST-LA-PRUGNE", - "center": "POINT (708990.0148903067456558 2106010.0224850275553763)", - "surface": 37120000, - "canton": null, - "numero_insee": "42276" - } - }, - { - "pk": 21908, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PRIEST-LA-ROCHE", - "center": "POINT (737235.4836507723666728 2103747.4099895455874503)", - "surface": 13500000, - "canton": null, - "numero_insee": "42277" - } - }, - { - "pk": 36188, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-PRIEST-LA-VETRE", - "center": "POINT (714430.3645336620975286 2090041.1643350122030824)", - "surface": 5210000, - "canton": null, - "numero_insee": "42278" - } - }, - { - "pk": 30835, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-JUST-SAINT-RAMBERT", - "center": "POINT (749550.9769362240331247 2056206.8617022833786905)", - "surface": 41310000, - "canton": null, - "numero_insee": "42279" - } - }, - { - "pk": 19103, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-REGIS-DU-COIN", - "center": "POINT (766154.0991574712097645 2034226.5936029255390167)", - "surface": 20440000, - "canton": null, - "numero_insee": "42280" - } - }, - { - "pk": 13516, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-RIRAND", - "center": "POINT (716078.1987026203423738 2119982.9818507158197463)", - "surface": 16540000, - "canton": null, - "numero_insee": "42281" - } - }, - { - "pk": 18973, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ROMAIN-D'URFE", - "center": "POINT (714951.0999298910610378 2099454.4063674379140139)", - "surface": 15120000, - "canton": null, - "numero_insee": "42282" - } - }, - { - "pk": 16178, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ROMAIN-EN-JAREZ", - "center": "POINT (772097.0170091229956597 2065107.2327698860317469)", - "surface": 16940000, - "canton": null, - "numero_insee": "42283" - } - }, - { - "pk": 30336, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ROMAIN-LA-MOTTE", - "center": "POINT (728276.6448429476004094 2121487.7899673203937709)", - "surface": 27950000, - "canton": null, - "numero_insee": "42284" - } - }, - { - "pk": 22036, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-ROMAIN-LE-PUY", - "center": "POINT (740080.4539533108472824 2063433.3890954032540321)", - "surface": 21310000, - "canton": null, - "numero_insee": "42285" - } - }, - { - "pk": 23642, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-SIXTE", - "center": "POINT (727367.9353904976742342 2087048.0138797657564282)", - "surface": 15470000, - "canton": null, - "numero_insee": "42288" - } - }, - { - "pk": 20638, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-SYMPHORIEN-DE-LAY", - "center": "POINT (745719.8158876829547808 2106522.0488754380494356)", - "surface": 32710000, - "canton": null, - "numero_insee": "42289" - } - }, - { - "pk": 12468, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-THOMAS-LA-GARDE", - "center": "POINT (736464.4914320402313024 2064904.1054170627612621)", - "surface": 3500000, - "canton": null, - "numero_insee": "42290" - } - }, - { - "pk": 8626, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAINT-VINCENT-DE-BOISSET", - "center": "POINT (737752.6476017455570400 2113560.9079244015738368)", - "surface": 4110000, - "canton": null, - "numero_insee": "42294" - } - }, - { - "pk": 22252, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LES SALLES", - "center": "POINT (712378.5561501495540142 2095929.3136724273208529)", - "surface": 25560000, - "canton": null, - "numero_insee": "42295" - } - }, - { - "pk": 30514, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SALT-EN-DONZY", - "center": "POINT (751422.9459012729348615 2083248.6677673126105219)", - "surface": 9260000, - "canton": null, - "numero_insee": "42296" - } - }, - { - "pk": 9907, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SALVIZINET", - "center": "POINT (750797.7270681189838797 2086146.0957917198538780)", - "surface": 10890000, - "canton": null, - "numero_insee": "42297" - } - }, - { - "pk": 22042, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAUVAIN", - "center": "POINT (718662.9907617921708152 2074862.6504730971064419)", - "surface": 30730000, - "canton": null, - "numero_insee": "42298" - } - }, - { - "pk": 24574, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SAVIGNEUX", - "center": "POINT (737516.9928991124033928 2070618.5188244208693504)", - "surface": 19000000, - "canton": null, - "numero_insee": "42299" - } - }, - { - "pk": 28340, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SEVELINGES", - "center": "POINT (750776.1130188412498683 2123981.1382224676199257)", - "surface": 8200000, - "canton": null, - "numero_insee": "42300" - } - }, - { - "pk": 22526, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SOLEYMIEUX", - "center": "POINT (734924.2875416742172092 2057684.0753520564176142)", - "surface": 9040000, - "canton": null, - "numero_insee": "42301" - } - }, - { - "pk": 8045, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SORBIERS", - "center": "POINT (764152.9809224044438452 2057632.4059037796687335)", - "surface": 12040000, - "canton": null, - "numero_insee": "42302" - } - }, - { - "pk": 17535, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SOUTERNON", - "center": "POINT (728366.9183252512011677 2099067.7812959603033960)", - "surface": 17060000, - "canton": null, - "numero_insee": "42303" - } - }, - { - "pk": 14514, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "SURY-LE-COMTAL", - "center": "POINT (743998.3941104604164138 2061765.0552324140444398)", - "surface": 24130000, - "canton": null, - "numero_insee": "42304" - } - }, - { - "pk": 13004, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA TALAUDIERE", - "center": "POINT (763172.5428810925222933 2055221.7305558298248798)", - "surface": 7680000, - "canton": null, - "numero_insee": "42305" - } - }, - { - "pk": 12305, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "TARTARAS", - "center": "POINT (781614.0088149354560301 2064187.4181231185793877)", - "surface": 3920000, - "canton": null, - "numero_insee": "42307" - } - }, - { - "pk": 28277, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA TERRASSE-SUR-DORLAY", - "center": "POINT (775410.7944604099029675 2052122.9026494962163270)", - "surface": 8670000, - "canton": null, - "numero_insee": "42308" - } - }, - { - "pk": 32120, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA TOUR-EN-JAREZ", - "center": "POINT (761061.2843184251105413 2056304.8185095866210759)", - "surface": 5130000, - "canton": null, - "numero_insee": "42311" - } - }, - { - "pk": 4614, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA TOURETTE", - "center": "POINT (736704.0454980974318460 2048490.2648518641944975)", - "surface": 5680000, - "canton": null, - "numero_insee": "42312" - } - }, - { - "pk": 7618, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "TRELINS", - "center": "POINT (729513.9623228732962161 2081861.3106572346296161)", - "surface": 8210000, - "canton": null, - "numero_insee": "42313" - } - }, - { - "pk": 10926, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "UNIAS", - "center": "POINT (747439.3772053390275687 2069101.3353207961190492)", - "surface": 5430000, - "canton": null, - "numero_insee": "42315" - } - }, - { - "pk": 29152, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "UNIEUX", - "center": "POINT (751230.7475375316571444 2047012.2068133219145238)", - "surface": 8560000, - "canton": null, - "numero_insee": "42316" - } - }, - { - "pk": 16962, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "URBISE", - "center": "POINT (719410.4844001159071922 2140129.5862512625753880)", - "surface": 15720000, - "canton": null, - "numero_insee": "42317" - } - }, - { - "pk": 20573, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "USSON-EN-FOREZ", - "center": "POINT (725125.0156605791999027 2044688.3273100091610104)", - "surface": 47120000, - "canton": null, - "numero_insee": "42318" - } - }, - { - "pk": 16029, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VALEILLE", - "center": "POINT (751346.7011047750711441 2080445.3605827344581485)", - "surface": 16400000, - "canton": null, - "numero_insee": "42319" - } - }, - { - "pk": 30812, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VALFLEURY", - "center": "POINT (769817.9985791620565578 2062385.2087681114207953)", - "surface": 8830000, - "canton": null, - "numero_insee": "42320" - } - }, - { - "pk": 33262, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA VALLA-SUR-ROCHEFORT", - "center": "POINT (717174.3136596443364397 2085159.8087987955659628)", - "surface": 8930000, - "canton": null, - "numero_insee": "42321" - } - }, - { - "pk": 17921, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA VALLA-EN-GIER", - "center": "POINT (771247.9592686814721674 2047282.7436694814823568)", - "surface": 34790000, - "canton": null, - "numero_insee": "42322" - } - }, - { - "pk": 27032, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VEAUCHE", - "center": "POINT (752485.5382634364068508 2064239.5524299019016325)", - "surface": 10850000, - "canton": null, - "numero_insee": "42323" - } - }, - { - "pk": 6961, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VEAUCHETTE", - "center": "POINT (749383.6298296930035576 2064113.0675555705092847)", - "surface": 7610000, - "canton": null, - "numero_insee": "42324" - } - }, - { - "pk": 13493, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VENDRANGES", - "center": "POINT (739425.4671997152036056 2105167.3262463482096791)", - "surface": 11100000, - "canton": null, - "numero_insee": "42325" - } - }, - { - "pk": 28320, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VERANNE", - "center": "POINT (779985.6947886951966211 2043853.8154122030828148)", - "surface": 16150000, - "canton": null, - "numero_insee": "42326" - } - }, - { - "pk": 35802, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VERIN", - "center": "POINT (788007.6084525429178029 2053932.0068149184808135)", - "surface": 3220000, - "canton": null, - "numero_insee": "42327" - } - }, - { - "pk": 17408, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VERRIERES-EN-FOREZ", - "center": "POINT (728962.0686268701683730 2064339.9023122580256313)", - "surface": 21090000, - "canton": null, - "numero_insee": "42328" - } - }, - { - "pk": 19205, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "LA VERSANNE", - "center": "POINT (770127.0470594094367698 2037863.9848574255593121)", - "surface": 15140000, - "canton": null, - "numero_insee": "42329" - } - }, - { - "pk": 31230, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VILLARS", - "center": "POINT (757577.7424554130993783 2053972.9315065885894001)", - "surface": 5740000, - "canton": null, - "numero_insee": "42330" - } - }, - { - "pk": 17793, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VILLEMONTAIS", - "center": "POINT (723867.1266420738538727 2110340.1093680094927549)", - "surface": 13190000, - "canton": null, - "numero_insee": "42331" - } - }, - { - "pk": 27088, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VILLEREST", - "center": "POINT (730957.8983010436641052 2112201.9797266609966755)", - "surface": 14160000, - "canton": null, - "numero_insee": "42332" - } - }, - { - "pk": 32048, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VILLERS", - "center": "POINT (746049.1592612989479676 2126643.4036001125350595)", - "surface": 5820000, - "canton": null, - "numero_insee": "42333" - } - }, - { - "pk": 15135, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VIOLAY", - "center": "POINT (756314.0206180835375562 2096602.8378552864305675)", - "surface": 27110000, - "canton": null, - "numero_insee": "42334" - } - }, - { - "pk": 11003, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VIRICELLES", - "center": "POINT (759302.2088459507795051 2074807.6373052112758160)", - "surface": 2040000, - "canton": null, - "numero_insee": "42335" - } - }, - { - "pk": 8082, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VIRIGNEUX", - "center": "POINT (756469.9213019142625853 2078286.8646627960260957)", - "surface": 11880000, - "canton": null, - "numero_insee": "42336" - } - }, - { - "pk": 30673, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VIVANS", - "center": "POINT (723478.3741625485708937 2132557.2093406412750483)", - "surface": 25540000, - "canton": null, - "numero_insee": "42337" - } - }, - { - "pk": 4692, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "VOUGY", - "center": "POINT (738173.1200914666987956 2122973.1444828906096518)", - "surface": 21040000, - "canton": null, - "numero_insee": "42338" - } - }, - { - "pk": 15441, - "model": "ishtar_common.town", - "fields": { - "departement": 43, - "name": "CHAUSSETERRE", - "center": "POINT (711233.4806455748621374 2101124.4727532165125012)", - "surface": 16690000, - "canton": null, - "numero_insee": "42339" - } - }, - { - "pk": 3906, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "AGNAT", - "center": "POINT (687237.2955724034691229 2038861.9093291750177741)", - "surface": 19720000, - "canton": null, - "numero_insee": "43001" - } - }, - { - "pk": 7619, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "AIGUILHE", - "center": "POINT (721941.1707453664857894 2007024.0526474933139980)", - "surface": 1090000, - "canton": null, - "numero_insee": "43002" - } - }, - { - "pk": 21766, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ALLEGRE", - "center": "POINT (706301.1934391234535724 2021706.2313564124051481)", - "surface": 23930000, - "canton": null, - "numero_insee": "43003" - } - }, - { - "pk": 10233, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ALLEYRAC", - "center": "POINT (730498.5855737791862339 1989478.8833396858535707)", - "surface": 11430000, - "canton": null, - "numero_insee": "43004" - } - }, - { - "pk": 19972, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ALLEYRAS", - "center": "POINT (706065.3287110901437700 1990472.8684020584914833)", - "surface": 25050000, - "canton": null, - "numero_insee": "43005" - } - }, - { - "pk": 35492, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ALLY", - "center": "POINT (677011.4053067789645866 2017053.9954332057386637)", - "surface": 31090000, - "canton": null, - "numero_insee": "43006" - } - }, - { - "pk": 14727, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ARAULES", - "center": "POINT (744248.3578698711935431 2008815.1141004683449864)", - "surface": 31750000, - "canton": null, - "numero_insee": "43007" - } - }, - { - "pk": 3880, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ARLEMPDES", - "center": "POINT (723818.5788292682264000 1986319.0220820738468319)", - "surface": 13770000, - "canton": null, - "numero_insee": "43008" - } - }, - { - "pk": 20417, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ARLET", - "center": "POINT (684452.9561665820656344 2013012.8141506917309016)", - "surface": 5830000, - "canton": null, - "numero_insee": "43009" - } - }, - { - "pk": 3253, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ARSAC-EN-VELAY", - "center": "POINT (727602.4729599655838683 2000465.4498551487922668)", - "surface": 11940000, - "canton": null, - "numero_insee": "43010" - } - }, - { - "pk": 16679, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "AUBAZAT", - "center": "POINT (687141.0688087510643527 2014737.2482644498813897)", - "surface": 16550000, - "canton": null, - "numero_insee": "43011" - } - }, - { - "pk": 21086, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "AUREC-SUR-LOIRE", - "center": "POINT (746262.8292522588744760 2042665.7514543877914548)", - "surface": 22880000, - "canton": null, - "numero_insee": "43012" - } - }, - { - "pk": 20114, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VISSAC-AUTEYRAC", - "center": "POINT (701264.3100737935164943 2013655.5898144729435444)", - "surface": 17570000, - "canton": null, - "numero_insee": "43013" - } - }, - { - "pk": 16880, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "AUTRAC", - "center": "POINT (662122.9303059064550325 2037648.7189266053028405)", - "surface": 8470000, - "canton": null, - "numero_insee": "43014" - } - }, - { - "pk": 14720, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "AUZON", - "center": "POINT (681592.4317249723244458 2043518.7703728093765676)", - "surface": 17110000, - "canton": null, - "numero_insee": "43016" - } - }, - { - "pk": 28829, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "AZERAT", - "center": "POINT (683226.0427406819071621 2039728.8657368028070778)", - "surface": 18050000, - "canton": null, - "numero_insee": "43017" - } - }, - { - "pk": 16573, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BAINS", - "center": "POINT (712487.4648797889240086 2000437.3277647164650261)", - "surface": 37660000, - "canton": null, - "numero_insee": "43018" - } - }, - { - "pk": 13348, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BARGES", - "center": "POINT (722348.5795239631552249 1982602.7686453484930098)", - "surface": 7110000, - "canton": null, - "numero_insee": "43019" - } - }, - { - "pk": 29797, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BAS-EN-BASSET", - "center": "POINT (738606.8818115902831778 2036594.7867793838959187)", - "surface": 46900000, - "canton": null, - "numero_insee": "43020" - } - }, - { - "pk": 10604, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BEAULIEU", - "center": "POINT (726960.9641771377064288 2017076.6654505000915378)", - "surface": 22580000, - "canton": null, - "numero_insee": "43021" - } - }, - { - "pk": 6756, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BEAUMONT", - "center": "POINT (677960.1446567653911188 2035079.8322670480702072)", - "surface": 12260000, - "canton": null, - "numero_insee": "43022" - } - }, - { - "pk": 19201, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BEAUNE-SUR-ARZON", - "center": "POINT (716415.5226295780157670 2033003.0533765647560358)", - "surface": 14490000, - "canton": null, - "numero_insee": "43023" - } - }, - { - "pk": 21297, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BEAUX", - "center": "POINT (737221.1715636821463704 2022969.5725866155698895)", - "surface": 16770000, - "canton": null, - "numero_insee": "43024" - } - }, - { - "pk": 19551, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BEAUZAC", - "center": "POINT (737862.2838432298740372 2029981.9547057703603059)", - "surface": 35840000, - "canton": null, - "numero_insee": "43025" - } - }, - { - "pk": 3804, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BERBEZIT", - "center": "POINT (698701.8985563799506053 2032552.6478809881955385)", - "surface": 10510000, - "canton": null, - "numero_insee": "43027" - } - }, - { - "pk": 18631, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BESSAMOREL", - "center": "POINT (737080.5149545443709940 2015961.4061041583772749)", - "surface": 7430000, - "canton": null, - "numero_insee": "43028" - } - }, - { - "pk": 20014, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LA BESSEYRE-SAINT-MARY", - "center": "POINT (684986.2277887733653188 1997301.5358590153045952)", - "surface": 21690000, - "canton": null, - "numero_insee": "43029" - } - }, - { - "pk": 6666, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BLANZAC", - "center": "POINT (719085.0688288932433352 2013306.1383233079686761)", - "surface": 8600000, - "canton": null, - "numero_insee": "43030" - } - }, - { - "pk": 20318, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BLASSAC", - "center": "POINT (682306.1526832195231691 2018299.9488758449442685)", - "surface": 12230000, - "canton": null, - "numero_insee": "43031" - } - }, - { - "pk": 12798, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BLAVOZY", - "center": "POINT (728838.2595916026039049 2008183.6948256301693618)", - "surface": 6260000, - "canton": null, - "numero_insee": "43032" - } - }, - { - "pk": 14424, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BLESLE", - "center": "POINT (665844.0428567524068058 2035578.0696520821657032)", - "surface": 29830000, - "canton": null, - "numero_insee": "43033" - } - }, - { - "pk": 20331, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BOISSET", - "center": "POINT (728998.9875063839135692 2036413.0796967614442110)", - "surface": 14120000, - "canton": null, - "numero_insee": "43034" - } - }, - { - "pk": 5366, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BONNEVAL", - "center": "POINT (709491.4051181445829570 2035046.4161321513820440)", - "surface": 14720000, - "canton": null, - "numero_insee": "43035" - } - }, - { - "pk": 35110, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BORNE", - "center": "POINT (714496.0762902293354273 2011465.4181425145361573)", - "surface": 5430000, - "canton": null, - "numero_insee": "43036" - } - }, - { - "pk": 5295, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE BOUCHET-SAINT-NICOLAS", - "center": "POINT (714592.0326616825768724 1988342.9000243106856942)", - "surface": 19330000, - "canton": null, - "numero_insee": "43037" - } - }, - { - "pk": 18017, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BOURNONCLE-SAINT-PIERRE", - "center": "POINT (677330.8356798512395471 2038477.8518487336114049)", - "surface": 16130000, - "canton": null, - "numero_insee": "43038" - } - }, - { - "pk": 20833, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE BRIGNON", - "center": "POINT (721670.7293721357127652 1991706.2963055316358805)", - "surface": 34910000, - "canton": null, - "numero_insee": "43039" - } - }, - { - "pk": 16343, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BRIOUDE", - "center": "POINT (682178.3606732900952920 2033413.8194082234986126)", - "surface": 13440000, - "canton": null, - "numero_insee": "43040" - } - }, - { - "pk": 27949, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "BRIVES-CHARENSAC", - "center": "POINT (725050.8583359044278041 2006249.6367133650928736)", - "surface": 4720000, - "canton": null, - "numero_insee": "43041" - } - }, - { - "pk": 17459, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CAYRES", - "center": "POINT (716359.7833317415788770 1992361.9585194429382682)", - "surface": 29190000, - "canton": null, - "numero_insee": "43042" - } - }, - { - "pk": 19971, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CEAUX-D'ALLEGRE", - "center": "POINT (711810.5056139752268791 2021252.4271963008213788)", - "surface": 32500000, - "canton": null, - "numero_insee": "43043" - } - }, - { - "pk": 4097, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CERZAT", - "center": "POINT (689313.4688287351746112 2018259.1162870819680393)", - "surface": 10450000, - "canton": null, - "numero_insee": "43044" - } - }, - { - "pk": 23394, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CEYSSAC", - "center": "POINT (717654.9873909364687279 2004885.5809053890407085)", - "surface": 10930000, - "canton": null, - "numero_insee": "43045" - } - }, - { - "pk": 7135, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHADRAC", - "center": "POINT (723234.7391939954832196 2007935.9328633993864059)", - "surface": 2480000, - "canton": null, - "numero_insee": "43046" - } - }, - { - "pk": 18297, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHADRON", - "center": "POINT (726342.0336126019246876 1995649.8949664202518761)", - "surface": 13510000, - "canton": null, - "numero_insee": "43047" - } - }, - { - "pk": 20575, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHAMALIERES-SUR-LOIRE", - "center": "POINT (729220.6018925500102341 2022100.8266350352205336)", - "surface": 13620000, - "canton": null, - "numero_insee": "43049" - } - }, - { - "pk": 13884, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHAMBEZON", - "center": "POINT (670688.4813846450997517 2042725.9385911782737821)", - "surface": 5160000, - "canton": null, - "numero_insee": "43050" - } - }, - { - "pk": 19998, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE CHAMBON-SUR-LIGNON", - "center": "POINT (756169.6665471917949617 2007715.3078674229327589)", - "surface": 41690000, - "canton": null, - "numero_insee": "43051" - } - }, - { - "pk": 20432, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHAMPAGNAC-LE-VIEUX", - "center": "POINT (691531.8865179861895740 2039999.3228635359555483)", - "surface": 20700000, - "canton": null, - "numero_insee": "43052" - } - }, - { - "pk": 16879, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHAMPCLAUSE", - "center": "POINT (743786.1817685149144381 2004306.6594980717636645)", - "surface": 22070000, - "canton": null, - "numero_insee": "43053" - } - }, - { - "pk": 20169, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHANALEILLES", - "center": "POINT (690999.3346320636337623 1984639.4962393299210817)", - "surface": 48540000, - "canton": null, - "numero_insee": "43054" - } - }, - { - "pk": 23198, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHANIAT", - "center": "POINT (689666.5763773772632703 2035679.3196740036364645)", - "surface": 14040000, - "canton": null, - "numero_insee": "43055" - } - }, - { - "pk": 23902, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHANTEUGES", - "center": "POINT (694003.2850811964599416 2008188.7052763872779906)", - "surface": 16150000, - "canton": null, - "numero_insee": "43056" - } - }, - { - "pk": 22651, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LA CHAPELLE-BERTIN", - "center": "POINT (702971.0203460801858455 2024881.1939787163864821)", - "surface": 11280000, - "canton": null, - "numero_insee": "43057" - } - }, - { - "pk": 17458, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LA CHAPELLE-D'AUREC", - "center": "POINT (746499.6086738272570074 2038363.5491860690526664)", - "surface": 11770000, - "canton": null, - "numero_insee": "43058" - } - }, - { - "pk": 19105, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LA CHAPELLE-GENESTE", - "center": "POINT (704744.7199746564729139 2040011.1018873811699450)", - "surface": 18120000, - "canton": null, - "numero_insee": "43059" - } - }, - { - "pk": 16074, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHARRAIX", - "center": "POINT (696346.1009083101525903 2003403.7111081501934677)", - "surface": 9750000, - "canton": null, - "numero_insee": "43060" - } - }, - { - "pk": 17139, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHASPINHAC", - "center": "POINT (725511.3973049722844735 2010958.2630964729469270)", - "surface": 16420000, - "canton": null, - "numero_insee": "43061" - } - }, - { - "pk": 5399, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHASPUZAC", - "center": "POINT (711321.1014964494388551 2008135.1920921357814223)", - "surface": 10070000, - "canton": null, - "numero_insee": "43062" - } - }, - { - "pk": 37220, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHASSAGNES", - "center": "POINT (695362.3385750082088634 2025016.9626025459729135)", - "surface": 12200000, - "canton": null, - "numero_insee": "43063" - } - }, - { - "pk": 19919, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHASSIGNOLLES", - "center": "POINT (690088.2703960962826386 2044991.9963242427911609)", - "surface": 18200000, - "canton": null, - "numero_insee": "43064" - } - }, - { - "pk": 14937, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHASTEL", - "center": "POINT (677493.8319491228321567 2007348.3701592849101871)", - "surface": 27890000, - "canton": null, - "numero_insee": "43065" - } - }, - { - "pk": 4482, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHAUDEYROLLES", - "center": "POINT (746762.9387004964519292 1995623.1751547870226204)", - "surface": 18930000, - "canton": null, - "numero_insee": "43066" - } - }, - { - "pk": 30962, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHAVANIAC-LAFAYETTE", - "center": "POINT (698123.2971091112121940 2018133.4814384167548269)", - "surface": 8470000, - "canton": null, - "numero_insee": "43067" - } - }, - { - "pk": 7883, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHAZELLES", - "center": "POINT (690844.3442009378923103 2002956.7439517301972955)", - "surface": 4930000, - "canton": null, - "numero_insee": "43068" - } - }, - { - "pk": 22008, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHENEREILLES", - "center": "POINT (749485.1902692172443494 2016867.6530873531010002)", - "surface": 14570000, - "canton": null, - "numero_insee": "43069" - } - }, - { - "pk": 9777, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHILHAC", - "center": "POINT (686812.8514793770154938 2018037.7629859566222876)", - "surface": 4140000, - "canton": null, - "numero_insee": "43070" - } - }, - { - "pk": 36994, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CHOMELIX", - "center": "POINT (716542.7778200127650052 2029800.9755593738518655)", - "surface": 26810000, - "canton": null, - "numero_insee": "43071" - } - }, - { - "pk": 10030, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LA CHOMETTE", - "center": "POINT (688748.6505040688207373 2025861.8851361796259880)", - "surface": 7060000, - "canton": null, - "numero_insee": "43072" - } - }, - { - "pk": 20404, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CISTRIERES", - "center": "POINT (699762.2177826209226623 2037366.3480327953584492)", - "surface": 22190000, - "canton": null, - "numero_insee": "43073" - } - }, - { - "pk": 35451, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "COHADE", - "center": "POINT (681040.9690781299723312 2037708.4292287731077522)", - "surface": 10080000, - "canton": null, - "numero_insee": "43074" - } - }, - { - "pk": 18188, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "COLLAT", - "center": "POINT (699343.1307047125883400 2027753.3391997229773551)", - "surface": 10330000, - "canton": null, - "numero_insee": "43075" - } - }, - { - "pk": 21551, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CONNANGLES", - "center": "POINT (702693.6832519987365231 2033987.8337135517504066)", - "surface": 21940000, - "canton": null, - "numero_insee": "43076" - } - }, - { - "pk": 28399, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "COSTAROS", - "center": "POINT (718891.0091247262898833 1988979.9687924284953624)", - "surface": 3870000, - "canton": null, - "numero_insee": "43077" - } - }, - { - "pk": 22114, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "COUBON", - "center": "POINT (725394.4633981578517705 2001147.4150675898417830)", - "surface": 22660000, - "canton": null, - "numero_insee": "43078" - } - }, - { - "pk": 25298, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "COUTEUGES", - "center": "POINT (691191.5096793848788366 2021077.7924386612139642)", - "surface": 10550000, - "canton": null, - "numero_insee": "43079" - } - }, - { - "pk": 21421, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CRAPONNE-SUR-ARZON", - "center": "POINT (718876.2025853428058326 2037928.7439175778999925)", - "surface": 33340000, - "canton": null, - "numero_insee": "43080" - } - }, - { - "pk": 36205, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CROISANCES", - "center": "POINT (701478.7838473465526477 1988331.8789972139056772)", - "surface": 7420000, - "canton": null, - "numero_insee": "43081" - } - }, - { - "pk": 20319, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CRONCE", - "center": "POINT (680678.1994067945051938 2009577.4936635000631213)", - "surface": 16320000, - "canton": null, - "numero_insee": "43082" - } - }, - { - "pk": 20898, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CUBELLES", - "center": "POINT (696772.7438141802558675 2000304.1973289884626865)", - "surface": 12130000, - "canton": null, - "numero_insee": "43083" - } - }, - { - "pk": 4330, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "CUSSAC-SUR-LOIRE", - "center": "POINT (721305.0573704283451661 1999410.9970610016025603)", - "surface": 10180000, - "canton": null, - "numero_insee": "43084" - } - }, - { - "pk": 4406, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "DESGES", - "center": "POINT (687140.8822279855376109 2002925.4122888913843781)", - "surface": 16880000, - "canton": null, - "numero_insee": "43085" - } - }, - { - "pk": 19950, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "DUNIERES", - "center": "POINT (757817.9948381353169680 2025747.3080910758581012)", - "surface": 34670000, - "canton": null, - "numero_insee": "43087" - } - }, - { - "pk": 13704, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ESPALEM", - "center": "POINT (670262.4243229106068611 2033913.7101840791292489)", - "surface": 14650000, - "canton": null, - "numero_insee": "43088" - } - }, - { - "pk": 6791, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ESPALY-SAINT-MARCEL", - "center": "POINT (719846.0046768639003858 2006205.4733899219427258)", - "surface": 6260000, - "canton": null, - "numero_insee": "43089" - } - }, - { - "pk": 35240, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ESPLANTAS", - "center": "POINT (695559.6424170553218573 1989883.3898295923136175)", - "surface": 10380000, - "canton": null, - "numero_insee": "43090" - } - }, - { - "pk": 17138, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LES ESTABLES", - "center": "POINT (742496.3243523833807558 1991182.4351350616198033)", - "surface": 33870000, - "canton": null, - "numero_insee": "43091" - } - }, - { - "pk": 20650, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "FAY-SUR-LIGNON", - "center": "POINT (747926.6163613272365183 2000037.5243335815612227)", - "surface": 13350000, - "canton": null, - "numero_insee": "43092" - } - }, - { - "pk": 26746, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "FERRUSSAC", - "center": "POINT (684077.9780204817652702 2010006.6404618704691529)", - "surface": 17260000, - "canton": null, - "numero_insee": "43094" - } - }, - { - "pk": 5603, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "FIX-SAINT-GENEYS", - "center": "POINT (704443.5359579152427614 2016485.3154645017348230)", - "surface": 8090000, - "canton": null, - "numero_insee": "43095" - } - }, - { - "pk": 13212, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "FRUGERES-LES-MINES", - "center": "POINT (676088.2981529338285327 2043372.1468603643588722)", - "surface": 1070000, - "canton": null, - "numero_insee": "43099" - } - }, - { - "pk": 21458, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "FRUGIERES-LE-PIN", - "center": "POINT (691210.2920156077016145 2030687.4578425826039165)", - "surface": 11590000, - "canton": null, - "numero_insee": "43100" - } - }, - { - "pk": 15602, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "GRAZAC", - "center": "POINT (745129.2988024802180007 2022936.6861961954273283)", - "surface": 21650000, - "canton": null, - "numero_insee": "43102" - } - }, - { - "pk": 19402, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "GREZES", - "center": "POINT (689347.8530994766624644 1990531.5340546120423824)", - "surface": 35700000, - "canton": null, - "numero_insee": "43104" - } - }, - { - "pk": 14028, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "JAVAUGUES", - "center": "POINT (690490.1722862204769626 2032983.6317032447550446)", - "surface": 7000000, - "canton": null, - "numero_insee": "43105" - } - }, - { - "pk": 5715, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "JAX", - "center": "POINT (700713.8329356466419995 2019556.8120748226065189)", - "surface": 12430000, - "canton": null, - "numero_insee": "43106" - } - }, - { - "pk": 18641, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "JOSAT", - "center": "POINT (699971.6527682200539857 2024455.3939340931829065)", - "surface": 12450000, - "canton": null, - "numero_insee": "43107" - } - }, - { - "pk": 19946, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "JULLIANGES", - "center": "POINT (713295.7185722953872755 2034978.5675075191538781)", - "surface": 18550000, - "canton": null, - "numero_insee": "43108" - } - }, - { - "pk": 3405, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LAFARRE", - "center": "POINT (730652.2230756588978693 1983173.7590628953184932)", - "surface": 12800000, - "canton": null, - "numero_insee": "43109" - } - }, - { - "pk": 17496, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LAMOTHE", - "center": "POINT (685464.4422708355123177 2035443.5757777590770274)", - "surface": 12460000, - "canton": null, - "numero_insee": "43110" - } - }, - { - "pk": 16842, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LANDOS", - "center": "POINT (719231.1978778641205281 1984278.0604255569633096)", - "surface": 36870000, - "canton": null, - "numero_insee": "43111" - } - }, - { - "pk": 14938, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LANGEAC", - "center": "POINT (689886.7617100082570687 2009655.3741772868670523)", - "surface": 34050000, - "canton": null, - "numero_insee": "43112" - } - }, - { - "pk": 19900, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LAPTE", - "center": "POINT (749144.0502490814542398 2021669.5340467449277639)", - "surface": 31180000, - "canton": null, - "numero_insee": "43114" - } - }, - { - "pk": 19690, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LAUSSONNE", - "center": "POINT (735333.5004152114270255 1997728.2681811146903783)", - "surface": 25040000, - "canton": null, - "numero_insee": "43115" - } - }, - { - "pk": 24355, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LAVAL-SUR-DOULON", - "center": "POINT (696436.3357079967390746 2040040.8350547621957958)", - "surface": 12440000, - "canton": null, - "numero_insee": "43116" - } - }, - { - "pk": 9659, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LAVOUTE-CHILHAC", - "center": "POINT (684512.4182754512876272 2017818.1072498993016779)", - "surface": 3640000, - "canton": null, - "numero_insee": "43118" - } - }, - { - "pk": 30052, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LAVOUTE-SUR-LOIRE", - "center": "POINT (723279.6238531412091106 2014442.8254495367873460)", - "surface": 10500000, - "canton": null, - "numero_insee": "43119" - } - }, - { - "pk": 5471, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LEMPDES-SUR-ALLAGNON", - "center": "POINT (673893.9173290064791217 2042452.7247985310386866)", - "surface": 10370000, - "canton": null, - "numero_insee": "43120" - } - }, - { - "pk": 18061, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LEOTOING", - "center": "POINT (670815.6264206804335117 2039523.8812057909090072)", - "surface": 19740000, - "canton": null, - "numero_insee": "43121" - } - }, - { - "pk": 3407, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LISSAC", - "center": "POINT (711956.4178505720337853 2015848.2852416378445923)", - "surface": 12110000, - "canton": null, - "numero_insee": "43122" - } - }, - { - "pk": 12796, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LORLANGES", - "center": "POINT (672544.2291191292461008 2036335.3444959099870175)", - "surface": 14580000, - "canton": null, - "numero_insee": "43123" - } - }, - { - "pk": 15063, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LOUDES", - "center": "POINT (710790.0920755807310343 2011734.2999452231451869)", - "surface": 24970000, - "canton": null, - "numero_insee": "43124" - } - }, - { - "pk": 22410, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MALREVERS", - "center": "POINT (728303.8041874663904309 2012183.1681284678634256)", - "surface": 14180000, - "canton": null, - "numero_insee": "43126" - } - }, - { - "pk": 18018, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MALVALETTE", - "center": "POINT (742272.8166194191435352 2041030.2620467401575297)", - "surface": 20930000, - "canton": null, - "numero_insee": "43127" - } - }, - { - "pk": 23435, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE MAS-DE-TENCE", - "center": "POINT (759910.1555772665888071 2015154.5630783864762634)", - "surface": 12650000, - "canton": null, - "numero_insee": "43129" - } - }, - { - "pk": 29394, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MAZET-SAINT-VOY", - "center": "POINT (749973.2493112838128582 2006561.4838179629296064)", - "surface": 45480000, - "canton": null, - "numero_insee": "43130" - } - }, - { - "pk": 18637, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MAZERAT-AUROUZE", - "center": "POINT (696593.0997671503573656 2021523.9086142415180802)", - "surface": 16340000, - "canton": null, - "numero_insee": "43131" - } - }, - { - "pk": 8007, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MAZEYRAT-D'ALLIER", - "center": "POINT (693746.3389368830248713 2014893.2372570850420743)", - "surface": 45770000, - "canton": null, - "numero_insee": "43132" - } - }, - { - "pk": 5478, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MERCOEUR", - "center": "POINT (675975.8008854554500431 2021149.3235068060457706)", - "surface": 27360000, - "canton": null, - "numero_insee": "43133" - } - }, - { - "pk": 27063, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MEZERES", - "center": "POINT (731841.6982199545018375 2019920.8948579421266913)", - "surface": 8710000, - "canton": null, - "numero_insee": "43134" - } - }, - { - "pk": 23450, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE MONASTIER-SUR-GAZEILLE", - "center": "POINT (731861.6605245103128254 1993995.0315989598166198)", - "surface": 39200000, - "canton": null, - "numero_insee": "43135" - } - }, - { - "pk": 17244, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MONISTROL-D'ALLIER", - "center": "POINT (702497.5879488744540140 1998050.3514637055341154)", - "surface": 27450000, - "canton": null, - "numero_insee": "43136" - } - }, - { - "pk": 19784, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MONISTROL-SUR-LOIRE", - "center": "POINT (744836.3569160909391940 2033844.9803444067947567)", - "surface": 47880000, - "canton": null, - "numero_insee": "43137" - } - }, - { - "pk": 21248, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MONLET", - "center": "POINT (708164.7738674248103052 2026226.4870140124112368)", - "surface": 35260000, - "canton": null, - "numero_insee": "43138" - } - }, - { - "pk": 21798, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MONTCLARD", - "center": "POINT (697622.9274315850343555 2029940.9474468068219721)", - "surface": 9570000, - "canton": null, - "numero_insee": "43139" - } - }, - { - "pk": 5219, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE MONTEIL", - "center": "POINT (724130.4815801905933768 2008544.1365133700892329)", - "surface": 2170000, - "canton": null, - "numero_insee": "43140" - } - }, - { - "pk": 32344, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MONTFAUCON-EN-VELAY", - "center": "POINT (756145.3942530405474827 2022329.6964562321081758)", - "surface": 4940000, - "canton": null, - "numero_insee": "43141" - } - }, - { - "pk": 4958, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MONTUSCLAT", - "center": "POINT (740097.1825631514657289 2002573.5913591850548983)", - "surface": 10510000, - "canton": null, - "numero_insee": "43143" - } - }, - { - "pk": 17452, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "MOUDEYRES", - "center": "POINT (739454.3647561093093827 1995761.2533536572009325)", - "surface": 9210000, - "canton": null, - "numero_insee": "43144" - } - }, - { - "pk": 31132, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "OUIDES", - "center": "POINT (710870.7131877056090161 1990413.4896389960777014)", - "surface": 10770000, - "canton": null, - "numero_insee": "43145" - } - }, - { - "pk": 21478, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PAULHAC", - "center": "POINT (678776.9488647416001186 2033184.8668747551273555)", - "surface": 8680000, - "canton": null, - "numero_insee": "43147" - } - }, - { - "pk": 13696, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PAULHAGUET", - "center": "POINT (692561.4588818658376113 2024793.0576953543350101)", - "surface": 11210000, - "canton": null, - "numero_insee": "43148" - } - }, - { - "pk": 36433, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PEBRAC", - "center": "POINT (693339.9063426986103877 2003778.6680742967873812)", - "surface": 17370000, - "canton": null, - "numero_insee": "43149" - } - }, - { - "pk": 15051, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE PERTUIS", - "center": "POINT (736006.7060141237452626 2012749.0843132194131613)", - "surface": 12060000, - "canton": null, - "numero_insee": "43150" - } - }, - { - "pk": 18414, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PINOLS", - "center": "POINT (682620.5914234481751919 2004789.0964719397015870)", - "surface": 35070000, - "canton": null, - "numero_insee": "43151" - } - }, - { - "pk": 3252, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "POLIGNAC", - "center": "POINT (720014.7740659574046731 2009910.6201443702448159)", - "surface": 32870000, - "canton": null, - "numero_insee": "43152" - } - }, - { - "pk": 20520, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PONT-SALOMON", - "center": "POINT (749397.1385450058151037 2038988.7804316333495080)", - "surface": 8630000, - "canton": null, - "numero_insee": "43153" - } - }, - { - "pk": 19109, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PRADELLES", - "center": "POINT (721512.2631065644090995 1974987.8766277129761875)", - "surface": 17410000, - "canton": null, - "numero_insee": "43154" - } - }, - { - "pk": 22255, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PRADES", - "center": "POINT (699048.6263474979205057 2003426.5922568466048688)", - "surface": 4900000, - "canton": null, - "numero_insee": "43155" - } - }, - { - "pk": 3085, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "PRESAILLES", - "center": "POINT (734905.2982427790993825 1989216.0014628926292062)", - "surface": 22310000, - "canton": null, - "numero_insee": "43156" - } - }, - { - "pk": 15366, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE PUY-EN-VELAY", - "center": "POINT (722866.6406755959615111 2004128.9879462346434593)", - "surface": 16870000, - "canton": null, - "numero_insee": "43157" - } - }, - { - "pk": 5191, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "QUEYRIERES", - "center": "POINT (739239.4468963143881410 2009273.0431213956326246)", - "surface": 14030000, - "canton": null, - "numero_insee": "43158" - } - }, - { - "pk": 4149, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "RAUCOULES", - "center": "POINT (752935.6321625437121838 2023103.1790932887233794)", - "surface": 20840000, - "canton": null, - "numero_insee": "43159" - } - }, - { - "pk": 15053, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "RAURET", - "center": "POINT (715870.4083036311203614 1979244.4394997893832624)", - "surface": 20640000, - "canton": null, - "numero_insee": "43160" - } - }, - { - "pk": 18657, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "RETOURNAC", - "center": "POINT (732894.2587524943519384 2025635.4959546721074730)", - "surface": 45790000, - "canton": null, - "numero_insee": "43162" - } - }, - { - "pk": 17345, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "RIOTORD", - "center": "POINT (763803.0523342217784375 2028200.6426144102588296)", - "surface": 51890000, - "canton": null, - "numero_insee": "43163" - } - }, - { - "pk": 34207, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "ROCHE-EN-REGNIER", - "center": "POINT (726475.6330240052193403 2027082.4832366765476763)", - "surface": 26800000, - "canton": null, - "numero_insee": "43164" - } - }, - { - "pk": 22376, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ANDRE-DE-CHALENCON", - "center": "POINT (726836.0670360771473497 2031790.1875612884759903)", - "surface": 17390000, - "canton": null, - "numero_insee": "43166" - } - }, - { - "pk": 22995, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ARCONS-D'ALLIER", - "center": "POINT (696590.4550252645276487 2010012.4104138182010502)", - "surface": 16140000, - "canton": null, - "numero_insee": "43167" - } - }, - { - "pk": 4185, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ARCONS-DE-BARGES", - "center": "POINT (725551.6225921394070610 1982629.9490964845754206)", - "surface": 15370000, - "canton": null, - "numero_insee": "43168" - } - }, - { - "pk": 22135, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-AUSTREMOINE", - "center": "POINT (680243.1348318757954985 2013677.9186950407456607)", - "surface": 11590000, - "canton": null, - "numero_insee": "43169" - } - }, - { - "pk": 23117, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-BERAIN", - "center": "POINT (701946.2522408077493310 2004051.7354406849481165)", - "surface": 13320000, - "canton": null, - "numero_insee": "43171" - } - }, - { - "pk": 31052, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-BONNET-LE-FROID", - "center": "POINT (764890.9220083521213382 2017999.7702571246773005)", - "surface": 13060000, - "canton": null, - "numero_insee": "43172" - } - }, - { - "pk": 35833, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-CHRISTOPHE-D'ALLIER", - "center": "POINT (707922.1627582565415651 1983981.9763681723270565)", - "surface": 19270000, - "canton": null, - "numero_insee": "43173" - } - }, - { - "pk": 4402, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-CHRISTOPHE-SUR-DOLAISON", - "center": "POINT (717497.2466112206457183 1999879.2018080023117363)", - "surface": 27180000, - "canton": null, - "numero_insee": "43174" - } - }, - { - "pk": 21513, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-CIRGUES", - "center": "POINT (682831.1588037972105667 2015401.4971239522565156)", - "surface": 13720000, - "canton": null, - "numero_insee": "43175" - } - }, - { - "pk": 31987, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-DIDIER-D'ALLIER", - "center": "POINT (707297.8560610697604716 1998591.5242662541568279)", - "surface": 7690000, - "canton": null, - "numero_insee": "43176" - } - }, - { - "pk": 16177, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-DIDIER-EN-VELAY", - "center": "POINT (752723.9831647491082549 2036214.3298824895173311)", - "surface": 26230000, - "canton": null, - "numero_insee": "43177" - } - }, - { - "pk": 17127, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-DIDIER-SUR-DOULON", - "center": "POINT (694981.5729890792863443 2034523.1198929348029196)", - "surface": 34030000, - "canton": null, - "numero_insee": "43178" - } - }, - { - "pk": 27743, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ETIENNE-DU-VIGAN", - "center": "POINT (718587.4152914914302528 1977565.7375665577128530)", - "surface": 9470000, - "canton": null, - "numero_insee": "43180" - } - }, - { - "pk": 19373, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ETIENNE-LARDEYROL", - "center": "POINT (731418.5836390897165984 2010808.2121404630597681)", - "surface": 11910000, - "canton": null, - "numero_insee": "43181" - } - }, - { - "pk": 18635, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ETIENNE-SUR-BLESLE", - "center": "POINT (661853.0694664723705500 2034042.9046511431224644)", - "surface": 17930000, - "canton": null, - "numero_insee": "43182" - } - }, - { - "pk": 19005, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINTE-EUGENIE-DE-VILLENEUVE", - "center": "POINT (701741.0367304619867355 2016462.4232974734622985)", - "surface": 6360000, - "canton": null, - "numero_insee": "43183" - } - }, - { - "pk": 15627, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-FERREOL-D'AUROURE", - "center": "POINT (750577.7953122414182872 2041401.1769298745784909)", - "surface": 10830000, - "canton": null, - "numero_insee": "43184" - } - }, - { - "pk": 12797, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINTE-FLORINE", - "center": "POINT (676174.8550175309646875 2044974.4404851817525923)", - "surface": 7660000, - "canton": null, - "numero_insee": "43185" - } - }, - { - "pk": 16569, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-FRONT", - "center": "POINT (742234.0299451460596174 1998487.6106614260934293)", - "surface": 51970000, - "canton": null, - "numero_insee": "43186" - } - }, - { - "pk": 10361, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-GENEYS-PRES-SAINT-PAULIEN", - "center": "POINT (717424.1587889965157956 2020299.0330333518795669)", - "surface": 16830000, - "canton": null, - "numero_insee": "43187" - } - }, - { - "pk": 21233, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-GEORGES-D'AURAC", - "center": "POINT (695519.1991309053264558 2018311.6341411583125591)", - "surface": 17670000, - "canton": null, - "numero_insee": "43188" - } - }, - { - "pk": 37443, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-GEORGES-LAGRICOL", - "center": "POINT (721705.0768086344469339 2034849.6965235858224332)", - "surface": 19250000, - "canton": null, - "numero_insee": "43189" - } - }, - { - "pk": 23990, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-GERMAIN-LAPRADE", - "center": "POINT (729266.6758451228961349 2004884.0142775652930140)", - "surface": 27960000, - "canton": null, - "numero_insee": "43190" - } - }, - { - "pk": 11002, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-GERON", - "center": "POINT (675035.5108691607601941 2037657.6696614064276218)", - "surface": 10820000, - "canton": null, - "numero_insee": "43191" - } - }, - { - "pk": 20436, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-HAON", - "center": "POINT (712619.8386144344694912 1984822.6096549881622195)", - "surface": 38060000, - "canton": null, - "numero_insee": "43192" - } - }, - { - "pk": 4631, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-HILAIRE", - "center": "POINT (686302.6130612884880975 2042857.9189676255919039)", - "surface": 14690000, - "canton": null, - "numero_insee": "43193" - } - }, - { - "pk": 4590, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-HOSTIEN", - "center": "POINT (734829.3978133003693074 2009936.2779391058720648)", - "surface": 13550000, - "canton": null, - "numero_insee": "43194" - } - }, - { - "pk": 35453, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ILPIZE", - "center": "POINT (684070.5728204977931455 2022719.2429423057474196)", - "surface": 11750000, - "canton": null, - "numero_insee": "43195" - } - }, - { - "pk": 21535, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JEAN-D'AUBRIGOUX", - "center": "POINT (715443.4017634093761444 2041403.0599647762719542)", - "surface": 17970000, - "canton": null, - "numero_insee": "43196" - } - }, - { - "pk": 16340, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JEAN-DE-NAY", - "center": "POINT (706516.6283620318863541 2008094.4742661220952868)", - "surface": 28850000, - "canton": null, - "numero_insee": "43197" - } - }, - { - "pk": 22059, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JEAN-LACHALM", - "center": "POINT (709435.4573110117344186 1994405.3869235590100288)", - "surface": 34880000, - "canton": null, - "numero_insee": "43198" - } - }, - { - "pk": 22007, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JEURES", - "center": "POINT (747513.9809662154875696 2013247.2907628470566124)", - "surface": 34550000, - "canton": null, - "numero_insee": "43199" - } - }, - { - "pk": 16182, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JULIEN-CHAPTEUIL", - "center": "POINT (737375.9457567143253982 2004752.6857302540447563)", - "surface": 28600000, - "canton": null, - "numero_insee": "43200" - } - }, - { - "pk": 17460, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JULIEN-D'ANCE", - "center": "POINT (724505.0820683488855138 2035173.7523188050836325)", - "surface": 17920000, - "canton": null, - "numero_insee": "43201" - } - }, - { - "pk": 23400, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JULIEN-DES-CHAZES", - "center": "POINT (697625.2832660969579592 2006017.1567243023309857)", - "surface": 6890000, - "canton": null, - "numero_insee": "43202" - } - }, - { - "pk": 19949, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JULIEN-DU-PINET", - "center": "POINT (734563.7457970536779612 2017641.7221977268345654)", - "surface": 17380000, - "canton": null, - "numero_insee": "43203" - } - }, - { - "pk": 4547, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JULIEN-MOLHESABATE", - "center": "POINT (765046.7777133561903611 2023206.2754326837603003)", - "surface": 27380000, - "canton": null, - "numero_insee": "43204" - } - }, - { - "pk": 21587, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JUST-MALMONT", - "center": "POINT (755591.7020884451922029 2040342.7590424600057304)", - "surface": 24110000, - "canton": null, - "numero_insee": "43205" - } - }, - { - "pk": 22112, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-JUST-PRES-BRIOUDE", - "center": "POINT (678034.5916370891500264 2026271.7805552845820785)", - "surface": 47020000, - "canton": null, - "numero_insee": "43206" - } - }, - { - "pk": 5837, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-LAURENT-CHABREUGES", - "center": "POINT (679294.3271007811417803 2031187.2695263132918626)", - "surface": 8320000, - "canton": null, - "numero_insee": "43207" - } - }, - { - "pk": 31130, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINTE-MARGUERITE", - "center": "POINT (697873.1113532159943134 2024037.2274400279857218)", - "surface": 5450000, - "canton": null, - "numero_insee": "43208" - } - }, - { - "pk": 21524, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-MAURICE-DE-LIGNON", - "center": "POINT (741200.1851305785821751 2025906.2629148405976593)", - "surface": 30100000, - "canton": null, - "numero_insee": "43211" - } - }, - { - "pk": 27866, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PAL-DE-CHALENCON", - "center": "POINT (727468.7315160506404936 2039803.4262641840614378)", - "surface": 29120000, - "canton": null, - "numero_insee": "43212" - } - }, - { - "pk": 20438, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PAL-DE-MONS", - "center": "POINT (752787.8517103234771639 2028707.4740104184020311)", - "surface": 27220000, - "canton": null, - "numero_insee": "43213" - } - }, - { - "pk": 23392, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PAL-DE-SENOUIRE", - "center": "POINT (702832.7753666626522318 2029384.4757886652369052)", - "surface": 18230000, - "canton": null, - "numero_insee": "43214" - } - }, - { - "pk": 29612, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PAUL-DE-TARTAS", - "center": "POINT (723181.6148138057906181 1978805.9439559204038233)", - "surface": 27730000, - "canton": null, - "numero_insee": "43215" - } - }, - { - "pk": 15702, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PAULIEN", - "center": "POINT (716760.0145158184459433 2015989.1153696675319225)", - "surface": 40450000, - "canton": null, - "numero_insee": "43216" - } - }, - { - "pk": 34194, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PIERRE-DU-CHAMP", - "center": "POINT (721759.4294304935028777 2028443.8440956030972302)", - "surface": 30570000, - "canton": null, - "numero_insee": "43217" - } - }, - { - "pk": 3785, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PIERRE-EYNAC", - "center": "POINT (733156.7187313105678186 2006518.6564133022911847)", - "surface": 24130000, - "canton": null, - "numero_insee": "43218" - } - }, - { - "pk": 4752, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PREJET-ARMANDON", - "center": "POINT (695434.4698653578525409 2028320.8393405047245324)", - "surface": 8530000, - "canton": null, - "numero_insee": "43219" - } - }, - { - "pk": 21075, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PREJET-D'ALLIER", - "center": "POINT (701749.3966940230457112 1991837.7307617780752480)", - "surface": 24370000, - "canton": null, - "numero_insee": "43220" - } - }, - { - "pk": 20840, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PRIVAT-D'ALLIER", - "center": "POINT (705075.4383367710979655 2000975.1179791742470115)", - "surface": 30720000, - "canton": null, - "numero_insee": "43221" - } - }, - { - "pk": 17129, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-PRIVAT-DU-DRAGON", - "center": "POINT (686978.3233754838583991 2022143.2401736732572317)", - "surface": 21590000, - "canton": null, - "numero_insee": "43222" - } - }, - { - "pk": 21294, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-ROMAIN-LACHALM", - "center": "POINT (757169.7364924189168960 2031347.3322454679291695)", - "surface": 19540000, - "canton": null, - "numero_insee": "43223" - } - }, - { - "pk": 5264, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINTE-SIGOLENE", - "center": "POINT (748479.6527933636680245 2029171.3213987399358302)", - "surface": 30730000, - "canton": null, - "numero_insee": "43224" - } - }, - { - "pk": 22113, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-VERT", - "center": "POINT (694413.3391925138421357 2042526.1568347217980772)", - "surface": 20620000, - "canton": null, - "numero_insee": "43226" - } - }, - { - "pk": 31271, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-VICTOR-MALESCOURS", - "center": "POINT (755841.2890142881078646 2034539.1821998348459601)", - "surface": 14700000, - "canton": null, - "numero_insee": "43227" - } - }, - { - "pk": 22545, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-VICTOR-SUR-ARLANC", - "center": "POINT (712867.3499964994844049 2038278.1782111627981067)", - "surface": 11730000, - "canton": null, - "numero_insee": "43228" - } - }, - { - "pk": 37218, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-VIDAL", - "center": "POINT (715115.3064650108572096 2009268.4638890423811972)", - "surface": 7950000, - "canton": null, - "numero_insee": "43229" - } - }, - { - "pk": 21534, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAINT-VINCENT", - "center": "POINT (722848.6769527809228748 2018042.7615056794602424)", - "surface": 20920000, - "canton": null, - "numero_insee": "43230" - } - }, - { - "pk": 20124, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SALETTES", - "center": "POINT (729924.3629326461814344 1986370.8482137466780841)", - "surface": 20630000, - "canton": null, - "numero_insee": "43231" - } - }, - { - "pk": 34962, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SALZUIT", - "center": "POINT (689966.6904067019931972 2023870.2084882643539459)", - "surface": 8060000, - "canton": null, - "numero_insee": "43232" - } - }, - { - "pk": 16885, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SANSSAC-L'EGLISE", - "center": "POINT (714641.9997476682765409 2006061.2368809147737920)", - "surface": 15710000, - "canton": null, - "numero_insee": "43233" - } - }, - { - "pk": 20276, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SAUGUES", - "center": "POINT (694816.6189942271448672 1994882.1768540535122156)", - "surface": 78900000, - "canton": null, - "numero_insee": "43234" - } - }, - { - "pk": 5047, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LA SEAUVE-SUR-SEMENE", - "center": "POINT (750035.9961651617195457 2034489.7896058899350464)", - "surface": 8110000, - "canton": null, - "numero_insee": "43236" - } - }, - { - "pk": 19907, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SEMBADEL", - "center": "POINT (706522.5945920327212662 2031017.3158423977438360)", - "surface": 18610000, - "canton": null, - "numero_insee": "43237" - } - }, - { - "pk": 14469, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SENEUJOLS", - "center": "POINT (714128.0038576675578952 1995846.5843780499417335)", - "surface": 12230000, - "canton": null, - "numero_insee": "43238" - } - }, - { - "pk": 33734, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SIAUGUES-SAINTE-MARIE", - "center": "POINT (701600.1936041832668707 2009454.2298529276158661)", - "surface": 40700000, - "canton": null, - "numero_insee": "43239" - } - }, - { - "pk": 15730, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SOLIGNAC-SOUS-ROCHE", - "center": "POINT (730260.4232336096465588 2029316.7914103679358959)", - "surface": 8690000, - "canton": null, - "numero_insee": "43240" - } - }, - { - "pk": 14783, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "SOLIGNAC-SUR-LOIRE", - "center": "POINT (721831.0038576198276132 1996412.4243713528849185)", - "surface": 24290000, - "canton": null, - "numero_insee": "43241" - } - }, - { - "pk": 18129, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "TAILHAC", - "center": "POINT (688215.6623615268617868 2006037.6231109150685370)", - "surface": 12570000, - "canton": null, - "numero_insee": "43242" - } - }, - { - "pk": 22919, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "TENCE", - "center": "POINT (754511.1111583076417446 2014407.9116820367053151)", - "surface": 52340000, - "canton": null, - "numero_insee": "43244" - } - }, - { - "pk": 37364, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "THORAS", - "center": "POINT (696702.2033812713343650 1984988.0689185459632427)", - "surface": 37640000, - "canton": null, - "numero_insee": "43245" - } - }, - { - "pk": 5572, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "TIRANGES", - "center": "POINT (731428.3732630376471207 2033230.5583890716079623)", - "surface": 26960000, - "canton": null, - "numero_insee": "43246" - } - }, - { - "pk": 5639, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "TORSIAC", - "center": "POINT (667513.4741669713985175 2039395.8945257482118905)", - "surface": 9090000, - "canton": null, - "numero_insee": "43247" - } - }, - { - "pk": 3732, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VALPRIVAS", - "center": "POINT (734098.5320354315917939 2037056.9760260866023600)", - "surface": 22370000, - "canton": null, - "numero_insee": "43249" - } - }, - { - "pk": 34733, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VALS-LE-CHASTEL", - "center": "POINT (693511.5492958032991737 2030807.0317775176372379)", - "surface": 3950000, - "canton": null, - "numero_insee": "43250" - } - }, - { - "pk": 35679, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VALS-PRES-LE-PUY", - "center": "POINT (720467.7933521954109892 2003708.2322568560484797)", - "surface": 5150000, - "canton": null, - "numero_insee": "43251" - } - }, - { - "pk": 17451, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LES VASTRES", - "center": "POINT (752425.7292978150071576 2000676.3980607423000038)", - "surface": 30150000, - "canton": null, - "numero_insee": "43253" - } - }, - { - "pk": 19250, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VAZEILLES-LIMANDRE", - "center": "POINT (706768.5644543571397662 2013802.3184941529762000)", - "surface": 11950000, - "canton": null, - "numero_insee": "43254" - } - }, - { - "pk": 32886, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VAZEILLES-PRES-SAUGUES", - "center": "POINT (698264.7374556598952040 1989605.9855867701116949)", - "surface": 6780000, - "canton": null, - "numero_insee": "43255" - } - }, - { - "pk": 15474, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VENTEUGES", - "center": "POINT (690381.9870047044241801 1998448.2912108197342604)", - "surface": 39430000, - "canton": null, - "numero_insee": "43256" - } - }, - { - "pk": 19353, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VERGEZAC", - "center": "POINT (710151.3731892674695700 2004421.5577979306690395)", - "surface": 20730000, - "canton": null, - "numero_insee": "43257" - } - }, - { - "pk": 21799, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VERGONGHEON", - "center": "POINT (677903.4636614947812632 2041785.9236539762932807)", - "surface": 11990000, - "canton": null, - "numero_insee": "43258" - } - }, - { - "pk": 19821, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VERNASSAL", - "center": "POINT (708041.7788812958169729 2017116.4020827338099480)", - "surface": 19330000, - "canton": null, - "numero_insee": "43259" - } - }, - { - "pk": 25127, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LE VERNET", - "center": "POINT (704440.1099395945202559 2005073.8664744752459228)", - "surface": 3940000, - "canton": null, - "numero_insee": "43260" - } - }, - { - "pk": 34511, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VEZEZOUX", - "center": "POINT (679174.1833850658731535 2045400.1811354041565210)", - "surface": 7090000, - "canton": null, - "numero_insee": "43261" - } - }, - { - "pk": 17126, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VIEILLE-BRIOUDE", - "center": "POINT (683722.8971950544510037 2028321.8491327788215131)", - "surface": 27750000, - "canton": null, - "numero_insee": "43262" - } - }, - { - "pk": 9629, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VIELPRAT", - "center": "POINT (727637.4759940239600837 1984549.5959342741407454)", - "surface": 7170000, - "canton": null, - "numero_insee": "43263" - } - }, - { - "pk": 20133, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VILLENEUVE-D'ALLIER", - "center": "POINT (681774.3786090542562306 2021999.1319502356927842)", - "surface": 14410000, - "canton": null, - "numero_insee": "43264" - } - }, - { - "pk": 16199, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "LES VILLETTES", - "center": "POINT (744582.8861675157677382 2028337.3946044761687517)", - "surface": 11610000, - "canton": null, - "numero_insee": "43265" - } - }, - { - "pk": 23062, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "VOREY", - "center": "POINT (723210.8254397362470627 2022550.3120940900407732)", - "surface": 39490000, - "canton": null, - "numero_insee": "43267" - } - }, - { - "pk": 31438, - "model": "ishtar_common.town", - "fields": { - "departement": 44, - "name": "YSSINGEAUX", - "center": "POINT (741175.8056482628453523 2016997.2044228992890567)", - "surface": 81160000, - "canton": null, - "numero_insee": "43268" - } - }, - { - "pk": 2033, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ABBARETZ", - "center": "POINT (311809.9913602801389061 2291065.5715156276710331)", - "surface": 62040000, - "canton": null, - "numero_insee": "44001" - } - }, - { - "pk": 2690, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "AIGREFEUILLE-SUR-MAINE", - "center": "POINT (315054.4636352243251167 2236948.1686070244759321)", - "surface": 14700000, - "canton": null, - "numero_insee": "44002" - } - }, - { - "pk": 2355, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ANCENIS", - "center": "POINT (334294.0705889719538391 2270733.0796914314851165)", - "surface": 20050000, - "canton": null, - "numero_insee": "44003" - } - }, - { - "pk": 1871, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ANETZ", - "center": "POINT (341003.9381424662424251 2270187.5476501304656267)", - "surface": 12030000, - "canton": null, - "numero_insee": "44004" - } - }, - { - "pk": 2298, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ARTHON-EN-RETZ", - "center": "POINT (274825.1190143571002409 2248730.0191883025690913)", - "surface": 39830000, - "canton": null, - "numero_insee": "44005" - } - }, - { - "pk": 2121, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ASSERAC", - "center": "POINT (241930.7133817542926408 2281689.6250273887999356)", - "surface": 33620000, - "canton": null, - "numero_insee": "44006" - } - }, - { - "pk": 2358, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "AVESSAC", - "center": "POINT (276395.6011989954859018 2301685.3553735874593258)", - "surface": 76300000, - "canton": null, - "numero_insee": "44007" - } - }, - { - "pk": 1979, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BARBECHAT", - "center": "POINT (325074.7897242157487199 2259948.9631872363388538)", - "surface": 12130000, - "canton": null, - "numero_insee": "44008" - } - }, - { - "pk": 1843, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BASSE-GOULAINE", - "center": "POINT (312323.2717145112110302 2252738.9088993170298636)", - "surface": 13800000, - "canton": null, - "numero_insee": "44009" - } - }, - { - "pk": 2275, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BATZ-SUR-MER", - "center": "POINT (236262.0023013288155198 2264930.1521121026016772)", - "surface": 13120000, - "canton": null, - "numero_insee": "44010" - } - }, - { - "pk": 1574, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BELLIGNE", - "center": "POINT (346621.2025637272163294 2280842.0767090786248446)", - "surface": 33140000, - "canton": null, - "numero_insee": "44011" - } - }, - { - "pk": 2983, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA BERNERIE-EN-RETZ", - "center": "POINT (268482.9667154524358921 2240972.0206403587944806)", - "surface": 5990000, - "canton": null, - "numero_insee": "44012" - } - }, - { - "pk": 2669, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BESNE", - "center": "POINT (267115.0756133846007288 2273787.7379085277207196)", - "surface": 17750000, - "canton": null, - "numero_insee": "44013" - } - }, - { - "pk": 1605, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE BIGNON", - "center": "POINT (308119.7514090407057665 2240494.5002271379344165)", - "surface": 27910000, - "canton": null, - "numero_insee": "44014" - } - }, - { - "pk": 2521, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BLAIN", - "center": "POINT (290669.6895474005141295 2281685.7387332129292190)", - "surface": 102080000, - "canton": null, - "numero_insee": "44015" - } - }, - { - "pk": 2754, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA BOISSIERE-DU-DORE", - "center": "POINT (332025.8210316781187430 2254401.2714188471436501)", - "surface": 9470000, - "canton": null, - "numero_insee": "44016" - } - }, - { - "pk": 1994, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BONNOEUVRE", - "center": "POINT (331265.7949182286392897 2286120.6102064466103911)", - "surface": 15590000, - "canton": null, - "numero_insee": "44017" - } - }, - { - "pk": 2647, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BOUAYE", - "center": "POINT (296062.4157435984816402 2246300.9598462679423392)", - "surface": 14070000, - "canton": null, - "numero_insee": "44018" - } - }, - { - "pk": 1854, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BOUEE", - "center": "POINT (278797.8162122683133930 2264775.4673531544394791)", - "surface": 24650000, - "canton": null, - "numero_insee": "44019" - } - }, - { - "pk": 2178, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BOUGUENAIS", - "center": "POINT (300346.0778511019889265 2248737.8945538196712732)", - "surface": 31120000, - "canton": null, - "numero_insee": "44020" - } - }, - { - "pk": 2344, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BOURGNEUF-EN-RETZ", - "center": "POINT (276236.1225481145083904 2235230.3020574362017214)", - "surface": 53700000, - "canton": null, - "numero_insee": "44021" - } - }, - { - "pk": 1757, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BOUSSAY", - "center": "POINT (334194.4832070686388761 2234002.1667204517871141)", - "surface": 26430000, - "canton": null, - "numero_insee": "44022" - } - }, - { - "pk": 2511, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BOUVRON", - "center": "POINT (282100.0748993034940213 2277112.2973763961344957)", - "surface": 47430000, - "canton": null, - "numero_insee": "44023" - } - }, - { - "pk": 2587, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "BRAINS", - "center": "POINT (292136.6014843199518509 2249071.2477846033871174)", - "surface": 15440000, - "canton": null, - "numero_insee": "44024" - } - }, - { - "pk": 2557, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CAMPBON", - "center": "POINT (275292.6232443983899429 2277357.1007973784580827)", - "surface": 50290000, - "canton": null, - "numero_insee": "44025" - } - }, - { - "pk": 2422, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CARQUEFOU", - "center": "POINT (312041.3565386140835471 2262744.7718537463806570)", - "surface": 43320000, - "canton": null, - "numero_insee": "44026" - } - }, - { - "pk": 2828, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CASSON", - "center": "POINT (306252.9374678793828934 2273005.8254675501957536)", - "surface": 16190000, - "canton": null, - "numero_insee": "44027" - } - }, - { - "pk": 2474, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE CELLIER", - "center": "POINT (320719.2042752235429361 2266318.5385576919652522)", - "surface": 35670000, - "canton": null, - "numero_insee": "44028" - } - }, - { - "pk": 2941, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHAPELLE-BASSE-MER", - "center": "POINT (321171.8740181963657960 2259917.0420752209611237)", - "surface": 23470000, - "canton": null, - "numero_insee": "44029" - } - }, - { - "pk": 2695, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHAPELLE-DES-MARAIS", - "center": "POINT (254547.2841507341945544 2280891.3484434029087424)", - "surface": 17860000, - "canton": null, - "numero_insee": "44030" - } - }, - { - "pk": 2128, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHAPELLE-GLAIN", - "center": "POINT (334578.1492002517334186 2297156.4084057253785431)", - "surface": 34770000, - "canton": null, - "numero_insee": "44031" - } - }, - { - "pk": 2878, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHAPELLE-HEULIN", - "center": "POINT (320569.5483906947192736 2247902.2848499631509185)", - "surface": 13560000, - "canton": null, - "numero_insee": "44032" - } - }, - { - "pk": 1591, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHAPELLE-LAUNAY", - "center": "POINT (273847.7260945961461402 2270439.7810564269311726)", - "surface": 24750000, - "canton": null, - "numero_insee": "44033" - } - }, - { - "pk": 2401, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHAPELLE-SAINT-SAUVEUR", - "center": "POINT (349855.5383798947441392 2276965.4739906410686672)", - "surface": 18980000, - "canton": null, - "numero_insee": "44034" - } - }, - { - "pk": 1542, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHAPELLE-SUR-ERDRE", - "center": "POINT (305332.2721169406431727 2263190.3818556200712919)", - "surface": 33390000, - "canton": null, - "numero_insee": "44035" - } - }, - { - "pk": 2787, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CHATEAUBRIANT", - "center": "POINT (320670.0601822378812358 2309052.0011850628070533)", - "surface": 33600000, - "canton": null, - "numero_insee": "44036" - } - }, - { - "pk": 2986, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CHATEAU-THEBAUD", - "center": "POINT (313612.4991814870154485 2241940.5373708675615489)", - "surface": 17640000, - "canton": null, - "numero_insee": "44037" - } - }, - { - "pk": 2169, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CHAUVE", - "center": "POINT (270419.3374046934768558 2248994.4028235506266356)", - "surface": 40900000, - "canton": null, - "numero_insee": "44038" - } - }, - { - "pk": 1937, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CHEIX-EN-RETZ", - "center": "POINT (286720.2746682311990298 2250528.3231620802544057)", - "surface": 8320000, - "canton": null, - "numero_insee": "44039" - } - }, - { - "pk": 1954, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CHEMERE", - "center": "POINT (279549.0630244107451290 2246266.4253891184926033)", - "surface": 37630000, - "canton": null, - "numero_insee": "44040" - } - }, - { - "pk": 1561, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHEVROLIERE", - "center": "POINT (301522.0645088279270567 2239539.8798915632069111)", - "surface": 32620000, - "canton": null, - "numero_insee": "44041" - } - }, - { - "pk": 2959, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CLISSON", - "center": "POINT (326244.2038190090097487 2239341.5874031949788332)", - "surface": 11350000, - "canton": null, - "numero_insee": "44043" - } - }, - { - "pk": 2381, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CONQUEREUIL", - "center": "POINT (292102.7777297023567371 2302313.7113405051641166)", - "surface": 32840000, - "canton": null, - "numero_insee": "44044" - } - }, - { - "pk": 1612, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CORDEMAIS", - "center": "POINT (284512.6684172838577069 2263520.9668221217580140)", - "surface": 37460000, - "canton": null, - "numero_insee": "44045" - } - }, - { - "pk": 2459, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CORSEPT", - "center": "POINT (264820.7397335442365147 2260558.3704009028151631)", - "surface": 24100000, - "canton": null, - "numero_insee": "44046" - } - }, - { - "pk": 2450, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "COUERON", - "center": "POINT (292181.1803158776601776 2255877.1968102068640292)", - "surface": 48770000, - "canton": null, - "numero_insee": "44047" - } - }, - { - "pk": 2380, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "COUFFE", - "center": "POINT (326079.8244274780736305 2271666.6612138119526207)", - "surface": 39840000, - "canton": null, - "numero_insee": "44048" - } - }, - { - "pk": 2900, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE CROISIC", - "center": "POINT (232650.3828454334870912 2266001.7572365221567452)", - "surface": 4540000, - "canton": null, - "numero_insee": "44049" - } - }, - { - "pk": 2172, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CROSSAC", - "center": "POINT (261285.5629407518426888 2276842.8242330895736814)", - "surface": 25800000, - "canton": null, - "numero_insee": "44050" - } - }, - { - "pk": 2850, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "DERVAL", - "center": "POINT (298502.4614410634967498 2302966.3731003347784281)", - "surface": 63790000, - "canton": null, - "numero_insee": "44051" - } - }, - { - "pk": 2017, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "DONGES", - "center": "POINT (266851.4869415245484561 2269281.9596756552346051)", - "surface": 49550000, - "canton": null, - "numero_insee": "44052" - } - }, - { - "pk": 1764, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "DREFFEAC", - "center": "POINT (268737.3568075433722697 2283508.7148219309747219)", - "surface": 14180000, - "canton": null, - "numero_insee": "44053" - } - }, - { - "pk": 2073, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ERBRAY", - "center": "POINT (325323.2491522705531679 2302985.2998903575353324)", - "surface": 58410000, - "canton": null, - "numero_insee": "44054" - } - }, - { - "pk": 2067, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA BAULE-ESCOUBLAC", - "center": "POINT (245367.9947334174648859 2265104.1270817182958126)", - "surface": 26580000, - "canton": null, - "numero_insee": "44055" - } - }, - { - "pk": 2493, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "FAY-DE-BRETAGNE", - "center": "POINT (288132.2250777719891630 2273758.7184593719430268)", - "surface": 64780000, - "canton": null, - "numero_insee": "44056" - } - }, - { - "pk": 1507, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "FEGREAC", - "center": "POINT (272039.6755254277377389 2295845.3423332348465919)", - "surface": 44400000, - "canton": null, - "numero_insee": "44057" - } - }, - { - "pk": 2038, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "FERCE", - "center": "POINT (321099.2405131959822029 2317762.2348202723078430)", - "surface": 22030000, - "canton": null, - "numero_insee": "44058" - } - }, - { - "pk": 2402, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "FRESNAY-EN-RETZ", - "center": "POINT (281154.5660985064459965 2233468.8606119644828141)", - "surface": 20630000, - "canton": null, - "numero_insee": "44059" - } - }, - { - "pk": 2733, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE FRESNE-SUR-LOIRE", - "center": "POINT (352496.0178600541548803 2272283.3549631070345640)", - "surface": 5970000, - "canton": null, - "numero_insee": "44060" - } - }, - { - "pk": 2597, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "FROSSAY", - "center": "POINT (276849.2924519853550009 2258254.3023399850353599)", - "surface": 59910000, - "canton": null, - "numero_insee": "44061" - } - }, - { - "pk": 2369, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE GAVRE", - "center": "POINT (289008.1541782671120018 2289078.0839010481722653)", - "surface": 54080000, - "canton": null, - "numero_insee": "44062" - } - }, - { - "pk": 2024, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GETIGNE", - "center": "POINT (330164.3824120842618868 2237271.9228136893361807)", - "surface": 23890000, - "canton": null, - "numero_insee": "44063" - } - }, - { - "pk": 2316, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GORGES", - "center": "POINT (323234.5460867454530671 2240217.7131438232026994)", - "surface": 16310000, - "canton": null, - "numero_insee": "44064" - } - }, - { - "pk": 1998, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GRAND-AUVERNE", - "center": "POINT (325608.5172619674704038 2292579.4685011147521436)", - "surface": 34680000, - "canton": null, - "numero_insee": "44065" - } - }, - { - "pk": 1926, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GRANDCHAMPS-DES-FONTAINES", - "center": "POINT (301375.4554595017107204 2269763.4285296648740768)", - "surface": 34050000, - "canton": null, - "numero_insee": "44066" - } - }, - { - "pk": 2362, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GUEMENE-PENFAO", - "center": "POINT (286915.3628393225371838 2300269.8616136983036995)", - "surface": 105650000, - "canton": null, - "numero_insee": "44067" - } - }, - { - "pk": 2448, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GUENROUET", - "center": "POINT (276715.5081843583029695 2286976.3548438581638038)", - "surface": 69810000, - "canton": null, - "numero_insee": "44068" - } - }, - { - "pk": 2032, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GUERANDE", - "center": "POINT (240925.7252930066897534 2269871.9672812391072512)", - "surface": 81550000, - "canton": null, - "numero_insee": "44069" - } - }, - { - "pk": 1878, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA HAIE-FOUASSIERE", - "center": "POINT (316674.7760055822436698 2246869.6176078580319881)", - "surface": 11830000, - "canton": null, - "numero_insee": "44070" - } - }, - { - "pk": 2679, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "HAUTE-GOULAINE", - "center": "POINT (316142.4949878990883008 2250768.4780146502889693)", - "surface": 20900000, - "canton": null, - "numero_insee": "44071" - } - }, - { - "pk": 2512, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "HERBIGNAC", - "center": "POINT (249432.1590526588843204 2282250.9203073866665363)", - "surface": 71290000, - "canton": null, - "numero_insee": "44072" - } - }, - { - "pk": 1957, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "HERIC", - "center": "POINT (300219.1077762507484294 2276559.4659595596604049)", - "surface": 74530000, - "canton": null, - "numero_insee": "44073" - } - }, - { - "pk": 2740, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "INDRE", - "center": "POINT (296416.1804818960954435 2252008.5417785886675119)", - "surface": 4750000, - "canton": null, - "numero_insee": "44074" - } - }, - { - "pk": 2495, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ISSE", - "center": "POINT (314958.3393147686147131 2297696.4946836810559034)", - "surface": 39170000, - "canton": null, - "numero_insee": "44075" - } - }, - { - "pk": 2559, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "JANS", - "center": "POINT (303838.9238194850040600 2299006.7857401059009135)", - "surface": 33380000, - "canton": null, - "numero_insee": "44076" - } - }, - { - "pk": 2549, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "JOUE-SUR-ERDRE", - "center": "POINT (316358.2295405432232656 2285598.3732997141778469)", - "surface": 55220000, - "canton": null, - "numero_insee": "44077" - } - }, - { - "pk": 2327, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "JUIGNE-DES-MOUTIERS", - "center": "POINT (333614.4299023157800548 2304854.5431538927368820)", - "surface": 24540000, - "canton": null, - "numero_insee": "44078" - } - }, - { - "pk": 1632, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE LANDREAU", - "center": "POINT (324642.3616706645698287 2251638.6385923349298537)", - "surface": 23530000, - "canton": null, - "numero_insee": "44079" - } - }, - { - "pk": 2888, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LAVAU-SUR-LOIRE", - "center": "POINT (275479.0588522899197415 2266750.0662463381886482)", - "surface": 19220000, - "canton": null, - "numero_insee": "44080" - } - }, - { - "pk": 2170, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LEGE", - "center": "POINT (301693.6276266885106452 2218523.6576740220189095)", - "surface": 61690000, - "canton": null, - "numero_insee": "44081" - } - }, - { - "pk": 2124, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LIGNE", - "center": "POINT (319460.2232684629270807 2273413.9745335634797812)", - "surface": 45550000, - "canton": null, - "numero_insee": "44082" - } - }, - { - "pk": 1651, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA LIMOUZINIERE", - "center": "POINT (297509.5755220202263445 2228397.8583163032308221)", - "surface": 29380000, - "canton": null, - "numero_insee": "44083" - } - }, - { - "pk": 2535, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE LOROUX-BOTTEREAU", - "center": "POINT (322316.0736532728187740 2254622.0706737656146288)", - "surface": 44770000, - "canton": null, - "numero_insee": "44084" - } - }, - { - "pk": 2880, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LOUISFERT", - "center": "POINT (317512.7709169961744919 2303521.9114540261216462)", - "surface": 18290000, - "canton": null, - "numero_insee": "44085" - } - }, - { - "pk": 1654, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LUSANGER", - "center": "POINT (305793.7936108602443710 2304727.2037330078892410)", - "surface": 35580000, - "canton": null, - "numero_insee": "44086" - } - }, - { - "pk": 2089, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MACHECOUL", - "center": "POINT (283688.2983450612518936 2229586.2387694623321295)", - "surface": 67360000, - "canton": null, - "numero_insee": "44087" - } - }, - { - "pk": 1512, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MAISDON-SUR-SEVRE", - "center": "POINT (317316.1361991133890115 2241870.7263528471812606)", - "surface": 17330000, - "canton": null, - "numero_insee": "44088" - } - }, - { - "pk": 2552, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MALVILLE", - "center": "POINT (283468.7061112513183616 2268816.7590906638652086)", - "surface": 31070000, - "canton": null, - "numero_insee": "44089" - } - }, - { - "pk": 1818, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA MARNE", - "center": "POINT (291698.5607340856804512 2229151.1238397313281894)", - "surface": 17920000, - "canton": null, - "numero_insee": "44090" - } - }, - { - "pk": 1900, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MARSAC-SUR-DON", - "center": "POINT (296759.1280559304868802 2295846.5804663170129061)", - "surface": 27790000, - "canton": null, - "numero_insee": "44091" - } - }, - { - "pk": 2929, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MASSERAC", - "center": "POINT (281665.1699395127361640 2305931.5482877772301435)", - "surface": 18860000, - "canton": null, - "numero_insee": "44092" - } - }, - { - "pk": 1556, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MAUMUSSON", - "center": "POINT (339609.5312866745516658 2281585.2643655501306057)", - "surface": 24660000, - "canton": null, - "numero_insee": "44093" - } - }, - { - "pk": 1737, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MAUVES-SUR-LOIRE", - "center": "POINT (317334.6749270138097927 2264089.0852675824426115)", - "surface": 14430000, - "canton": null, - "numero_insee": "44094" - } - }, - { - "pk": 2399, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA MEILLERAYE-DE-BRETAGNE", - "center": "POINT (319312.1472588235628791 2291527.1931272945366800)", - "surface": 28050000, - "canton": null, - "numero_insee": "44095" - } - }, - { - "pk": 1701, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MESANGER", - "center": "POINT (331249.2628000549739227 2275912.3358144150115550)", - "surface": 50380000, - "canton": null, - "numero_insee": "44096" - } - }, - { - "pk": 2775, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MESQUER", - "center": "POINT (237262.1638420015224256 2277348.2976137101650238)", - "surface": 16840000, - "canton": null, - "numero_insee": "44097" - } - }, - { - "pk": 2584, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MISSILLAC", - "center": "POINT (260008.2096467207302339 2286239.9603603063151240)", - "surface": 59770000, - "canton": null, - "numero_insee": "44098" - } - }, - { - "pk": 2580, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MOISDON-LA-RIVIERE", - "center": "POINT (321061.0856902094674297 2297946.5316952806897461)", - "surface": 51020000, - "canton": null, - "numero_insee": "44099" - } - }, - { - "pk": 2830, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MONNIERES", - "center": "POINT (320416.8609611072461121 2242096.2441392801702023)", - "surface": 9800000, - "canton": null, - "numero_insee": "44100" - } - }, - { - "pk": 2678, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA MONTAGNE", - "center": "POINT (295327.5956437839777209 2250498.4277459159493446)", - "surface": 3610000, - "canton": null, - "numero_insee": "44101" - } - }, - { - "pk": 1557, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MONTBERT", - "center": "POINT (310952.9589398201787844 2236714.4851843416690826)", - "surface": 29040000, - "canton": null, - "numero_insee": "44102" - } - }, - { - "pk": 2034, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MONTOIR-DE-BRETAGNE", - "center": "POINT (261259.5297052576788701 2267735.2671228866092861)", - "surface": 29670000, - "canton": null, - "numero_insee": "44103" - } - }, - { - "pk": 2797, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MONTRELAIS", - "center": "POINT (350295.2173427835805342 2272165.2273825933225453)", - "surface": 14020000, - "canton": null, - "numero_insee": "44104" - } - }, - { - "pk": 1731, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MOUAIS", - "center": "POINT (299760.9350850732298568 2308180.6953956144861877)", - "surface": 10020000, - "canton": null, - "numero_insee": "44105" - } - }, - { - "pk": 2776, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LES MOUTIERS-EN-RETZ", - "center": "POINT (271508.8843241930590011 2238094.2338353637605906)", - "surface": 9790000, - "canton": null, - "numero_insee": "44106" - } - }, - { - "pk": 1508, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MOUZEIL", - "center": "POINT (323431.2527325211558491 2277349.5755356932058930)", - "surface": 18860000, - "canton": null, - "numero_insee": "44107" - } - }, - { - "pk": 2045, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "MOUZILLON", - "center": "POINT (326115.4693094919784926 2242843.4358769073151052)", - "surface": 16370000, - "canton": null, - "numero_insee": "44108" - } - }, - { - "pk": 1961, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "NANTES", - "center": "POINT (305898.0175641477108002 2255188.4754896541126072)", - "surface": 65770000, - "canton": null, - "numero_insee": "44109" - } - }, - { - "pk": 2348, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "NORT-SUR-ERDRE", - "center": "POINT (309406.2582688771653920 2279036.3919590516015887)", - "surface": 67040000, - "canton": null, - "numero_insee": "44110" - } - }, - { - "pk": 2342, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "NOTRE-DAME-DES-LANDES", - "center": "POINT (294052.9049069096799940 2271805.3810148313641548)", - "surface": 37590000, - "canton": null, - "numero_insee": "44111" - } - }, - { - "pk": 2938, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "NOYAL-SUR-BRUTZ", - "center": "POINT (324229.2416553207440302 2314385.2057138467207551)", - "surface": 7780000, - "canton": null, - "numero_insee": "44112" - } - }, - { - "pk": 2133, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "NOZAY", - "center": "POINT (303785.4107637128909118 2293301.8627829747274518)", - "surface": 57960000, - "canton": null, - "numero_insee": "44113" - } - }, - { - "pk": 2373, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ORVAULT", - "center": "POINT (300453.1183225933345966 2260148.1113926763646305)", - "surface": 27790000, - "canton": null, - "numero_insee": "44114" - } - }, - { - "pk": 2710, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "OUDON", - "center": "POINT (327511.1531839944655076 2267975.3861551936715841)", - "surface": 22320000, - "canton": null, - "numero_insee": "44115" - } - }, - { - "pk": 1944, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PAIMBOEUF", - "center": "POINT (270003.4650107870693319 2263202.6538759008981287)", - "surface": 1660000, - "canton": null, - "numero_insee": "44116" - } - }, - { - "pk": 2694, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE PALLET", - "center": "POINT (320795.8876005549682304 2244701.4950245330110192)", - "surface": 11300000, - "canton": null, - "numero_insee": "44117" - } - }, - { - "pk": 2457, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PANNECE", - "center": "POINT (332296.8283220634330064 2282426.1058260765857995)", - "surface": 30570000, - "canton": null, - "numero_insee": "44118" - } - }, - { - "pk": 2090, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PAULX", - "center": "POINT (286922.5891271618311293 2225709.3218734902329743)", - "surface": 35950000, - "canton": null, - "numero_insee": "44119" - } - }, - { - "pk": 2540, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE PELLERIN", - "center": "POINT (284979.8409714799490757 2255318.0803498239256442)", - "surface": 31090000, - "canton": null, - "numero_insee": "44120" - } - }, - { - "pk": 1593, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PETIT-AUVERNE", - "center": "POINT (328279.3547534985700622 2296404.3099786760285497)", - "surface": 22710000, - "canton": null, - "numero_insee": "44121" - } - }, - { - "pk": 2087, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PETIT-MARS", - "center": "POINT (313749.4780849072849378 2274167.9426869512535632)", - "surface": 26230000, - "canton": null, - "numero_insee": "44122" - } - }, - { - "pk": 2688, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PIERRIC", - "center": "POINT (291464.8202257833909243 2306912.1023000865243375)", - "surface": 27770000, - "canton": null, - "numero_insee": "44123" - } - }, - { - "pk": 1684, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE PIN", - "center": "POINT (338008.4534546419745311 2293781.8204958210699260)", - "surface": 24900000, - "canton": null, - "numero_insee": "44124" - } - }, - { - "pk": 2400, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PIRIAC-SUR-MER", - "center": "POINT (233674.1117477338993922 2275517.7489614379592240)", - "surface": 12070000, - "canton": null, - "numero_insee": "44125" - } - }, - { - "pk": 2520, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA PLAINE-SUR-MER", - "center": "POINT (257315.9027125620632432 2248087.1665801843628287)", - "surface": 16400000, - "canton": null, - "numero_insee": "44126" - } - }, - { - "pk": 2661, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA PLANCHE", - "center": "POINT (312998.6533880825154483 2231326.6919541000388563)", - "surface": 24430000, - "canton": null, - "numero_insee": "44127" - } - }, - { - "pk": 2591, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PLESSE", - "center": "POINT (281974.5365263236453757 2292523.5432551549747586)", - "surface": 105060000, - "canton": null, - "numero_insee": "44128" - } - }, - { - "pk": 2974, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PONTCHATEAU", - "center": "POINT (265765.2763672411092557 2279781.5794394360855222)", - "surface": 55630000, - "canton": null, - "numero_insee": "44129" - } - }, - { - "pk": 2613, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PONT-SAINT-MARTIN", - "center": "POINT (303991.2914886695216410 2243563.3559560417197645)", - "surface": 21770000, - "canton": null, - "numero_insee": "44130" - } - }, - { - "pk": 2334, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PORNIC", - "center": "POINT (267148.5883683646097779 2245064.5645541818812490)", - "surface": 94780000, - "canton": null, - "numero_insee": "44131" - } - }, - { - "pk": 1793, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PORNICHET", - "center": "POINT (248197.7180508040473796 2261724.3332422808744013)", - "surface": 12660000, - "canton": null, - "numero_insee": "44132" - } - }, - { - "pk": 2534, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PORT-SAINT-PERE", - "center": "POINT (288759.3183573274291120 2245941.1509756715968251)", - "surface": 32670000, - "canton": null, - "numero_insee": "44133" - } - }, - { - "pk": 1560, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "POUILLE-LES-COTEAUX", - "center": "POINT (335318.6816008783644065 2280048.9290998517535627)", - "surface": 12260000, - "canton": null, - "numero_insee": "44134" - } - }, - { - "pk": 2236, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE POULIGUEN", - "center": "POINT (239377.3127372399903834 2263354.1220807237550616)", - "surface": 4460000, - "canton": null, - "numero_insee": "44135" - } - }, - { - "pk": 2769, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PREFAILLES", - "center": "POINT (254924.6512240394367836 2246766.6570354602299631)", - "surface": 5190000, - "canton": null, - "numero_insee": "44136" - } - }, - { - "pk": 3000, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PRINQUIAU", - "center": "POINT (271226.2513179576490074 2272820.3820467279292643)", - "surface": 22940000, - "canton": null, - "numero_insee": "44137" - } - }, - { - "pk": 1616, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "PUCEUL", - "center": "POINT (302132.3687252053059638 2287383.7002804176881909)", - "surface": 20280000, - "canton": null, - "numero_insee": "44138" - } - }, - { - "pk": 2072, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "QUILLY", - "center": "POINT (277654.4617183859227225 2282280.2540931482799351)", - "surface": 17760000, - "canton": null, - "numero_insee": "44139" - } - }, - { - "pk": 2094, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA REGRIPPIERE", - "center": "POINT (332471.9995261849835515 2248800.3276584874838591)", - "surface": 18070000, - "canton": null, - "numero_insee": "44140" - } - }, - { - "pk": 2593, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA REMAUDIERE", - "center": "POINT (329831.5388975964160636 2253482.5740196616388857)", - "surface": 13170000, - "canton": null, - "numero_insee": "44141" - } - }, - { - "pk": 1666, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "REMOUILLE", - "center": "POINT (317087.0840487859095447 2233161.6144008035771549)", - "surface": 21880000, - "canton": null, - "numero_insee": "44142" - } - }, - { - "pk": 2673, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "REZE", - "center": "POINT (305547.5636421264498495 2249080.6045596576295793)", - "surface": 15570000, - "canton": null, - "numero_insee": "44143" - } - }, - { - "pk": 2481, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "RIAILLE", - "center": "POINT (325258.1583114544046111 2286471.7745829578489065)", - "surface": 50610000, - "canton": null, - "numero_insee": "44144" - } - }, - { - "pk": 2101, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ROUANS", - "center": "POINT (283320.1483293169876561 2250200.3662047227844596)", - "surface": 37770000, - "canton": null, - "numero_insee": "44145" - } - }, - { - "pk": 2698, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "ROUGE", - "center": "POINT (317421.9918118488276377 2314629.7886776928789914)", - "surface": 56780000, - "canton": null, - "numero_insee": "44146" - } - }, - { - "pk": 2378, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA ROUXIERE", - "center": "POINT (342541.9850648115389049 2277906.3320094030350447)", - "surface": 20910000, - "canton": null, - "numero_insee": "44147" - } - }, - { - "pk": 2088, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "RUFFIGNE", - "center": "POINT (310819.7875520103261806 2314275.6190968514420092)", - "surface": 33770000, - "canton": null, - "numero_insee": "44148" - } - }, - { - "pk": 2257, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAFFRE", - "center": "POINT (304960.5476032283040695 2284204.2410994055680931)", - "surface": 58690000, - "canton": null, - "numero_insee": "44149" - } - }, - { - "pk": 1697, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-AIGNAN-GRANDLIEU", - "center": "POINT (299679.8505877840798348 2244528.9894962031394243)", - "surface": 18070000, - "canton": null, - "numero_insee": "44150" - } - }, - { - "pk": 1677, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-ANDRE-DES-EAUX", - "center": "POINT (248742.9040333378943615 2268534.2907644836232066)", - "surface": 25220000, - "canton": null, - "numero_insee": "44151" - } - }, - { - "pk": 2898, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINTE-ANNE-SUR-BRIVET", - "center": "POINT (271655.7669034876162186 2281530.8635463705286384)", - "surface": 26260000, - "canton": null, - "numero_insee": "44152" - } - }, - { - "pk": 2165, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-AUBIN-DES-CHATEAUX", - "center": "POINT (313776.6089424155652523 2307594.5776285976171494)", - "surface": 47610000, - "canton": null, - "numero_insee": "44153" - } - }, - { - "pk": 2267, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-BREVIN-LES-PINS", - "center": "POINT (260335.2643491389462724 2258320.0971667589619756)", - "surface": 20770000, - "canton": null, - "numero_insee": "44154" - } - }, - { - "pk": 2305, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-COLOMBAN", - "center": "POINT (303982.7311883566435426 2232353.9653079495765269)", - "surface": 35860000, - "canton": null, - "numero_insee": "44155" - } - }, - { - "pk": 2595, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "CORCOUE-SUR-LOGNE", - "center": "POINT (300443.6760629297932610 2224518.5239269789308310)", - "surface": 50580000, - "canton": null, - "numero_insee": "44156" - } - }, - { - "pk": 1599, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-ETIENNE-DE-MER-MORTE", - "center": "POINT (291439.9547690514009446 2224044.7235597809776664)", - "surface": 27460000, - "canton": null, - "numero_insee": "44157" - } - }, - { - "pk": 2605, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-ETIENNE-DE-MONTLUC", - "center": "POINT (288245.6144008428673260 2259848.3777738055214286)", - "surface": 57380000, - "canton": null, - "numero_insee": "44158" - } - }, - { - "pk": 2708, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-FIACRE-SUR-MAINE", - "center": "POINT (315490.2255752172786742 2244858.2838362380862236)", - "surface": 5920000, - "canton": null, - "numero_insee": "44159" - } - }, - { - "pk": 2882, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-GEREON", - "center": "POINT (332303.2420228618429974 2269415.7338579483330250)", - "surface": 7650000, - "canton": null, - "numero_insee": "44160" - } - }, - { - "pk": 1875, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-GILDAS-DES-BOIS", - "center": "POINT (269000.9388469115947373 2288014.4431294901296496)", - "surface": 33550000, - "canton": null, - "numero_insee": "44161" - } - }, - { - "pk": 2925, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-HERBLAIN", - "center": "POINT (299396.3947027380345389 2254735.0742614916525781)", - "surface": 29920000, - "canton": null, - "numero_insee": "44162" - } - }, - { - "pk": 2497, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-HERBLON", - "center": "POINT (339479.0581830280134454 2273077.3908383813686669)", - "surface": 37340000, - "canton": null, - "numero_insee": "44163" - } - }, - { - "pk": 2340, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-HILAIRE-DE-CHALEONS", - "center": "POINT (279988.4980147299356759 2241466.0281866318546236)", - "surface": 35290000, - "canton": null, - "numero_insee": "44164" - } - }, - { - "pk": 2216, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-HILAIRE-DE-CLISSON", - "center": "POINT (322574.1206903121201321 2235308.2356573995202780)", - "surface": 18780000, - "canton": null, - "numero_insee": "44165" - } - }, - { - "pk": 2711, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-JEAN-DE-BOISEAU", - "center": "POINT (292715.8352333956281655 2251678.1114996201358736)", - "surface": 11530000, - "canton": null, - "numero_insee": "44166" - } - }, - { - "pk": 2122, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-JOACHIM", - "center": "POINT (254306.4176349946064875 2273583.5249899993650615)", - "surface": 86420000, - "canton": null, - "numero_insee": "44168" - } - }, - { - "pk": 2919, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-JULIEN-DE-CONCELLES", - "center": "POINT (316697.9567545869504102 2256277.5269663669168949)", - "surface": 33260000, - "canton": null, - "numero_insee": "44169" - } - }, - { - "pk": 2129, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-JULIEN-DE-VOUVANTES", - "center": "POINT (332146.1216160121257417 2300839.4018770921975374)", - "surface": 25800000, - "canton": null, - "numero_insee": "44170" - } - }, - { - "pk": 1872, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-LEGER-LES-VIGNES", - "center": "POINT (292862.4340184197644703 2245974.6092126183211803)", - "surface": 6730000, - "canton": null, - "numero_insee": "44171" - } - }, - { - "pk": 1530, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINTE-LUCE-SUR-LOIRE", - "center": "POINT (311685.2086412682547234 2257337.4618608830496669)", - "surface": 11410000, - "canton": null, - "numero_insee": "44172" - } - }, - { - "pk": 2858, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-LUMINE-DE-CLISSON", - "center": "POINT (319151.8747957816231064 2237682.2474985634908080)", - "surface": 18240000, - "canton": null, - "numero_insee": "44173" - } - }, - { - "pk": 2999, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-LUMINE-DE-COUTAIS", - "center": "POINT (291643.0601629208540544 2235956.3614875688217580)", - "surface": 17810000, - "canton": null, - "numero_insee": "44174" - } - }, - { - "pk": 2361, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-LYPHARD", - "center": "POINT (247391.5569707420072518 2274728.3287292374297976)", - "surface": 24500000, - "canton": null, - "numero_insee": "44175" - } - }, - { - "pk": 2895, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-MALO-DE-GUERSAC", - "center": "POINT (259527.3502875255071558 2271524.2601973391138017)", - "surface": 15350000, - "canton": null, - "numero_insee": "44176" - } - }, - { - "pk": 1547, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-MARS-DE-COUTAIS", - "center": "POINT (289615.4127481874311343 2239142.4924778486602008)", - "surface": 34510000, - "canton": null, - "numero_insee": "44178" - } - }, - { - "pk": 2896, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-MARS-DU-DESERT", - "center": "POINT (314394.0792896040366031 2268768.8579736193642020)", - "surface": 30410000, - "canton": null, - "numero_insee": "44179" - } - }, - { - "pk": 1993, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-MARS-LA-JAILLE", - "center": "POINT (334159.7104813679470681 2287145.0911230980418622)", - "surface": 20130000, - "canton": null, - "numero_insee": "44180" - } - }, - { - "pk": 2130, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-MEME-LE-TENU", - "center": "POINT (285953.3671453505521640 2234108.4689900144003332)", - "surface": 18340000, - "canton": null, - "numero_insee": "44181" - } - }, - { - "pk": 2375, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-MICHEL-CHEF-CHEF", - "center": "POINT (261793.2804867967497557 2251326.2070861319079995)", - "surface": 25140000, - "canton": null, - "numero_insee": "44182" - } - }, - { - "pk": 2322, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-MOLF", - "center": "POINT (241475.0094426701543853 2276181.5114736133255064)", - "surface": 23230000, - "canton": null, - "numero_insee": "44183" - } - }, - { - "pk": 2581, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-NAZAIRE", - "center": "POINT (252887.4202609728672542 2263463.8109884336590767)", - "surface": 48150000, - "canton": null, - "numero_insee": "44184" - } - }, - { - "pk": 2494, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-NICOLAS-DE-REDON", - "center": "POINT (269986.9379737499984913 2302133.5918601355515420)", - "surface": 22140000, - "canton": null, - "numero_insee": "44185" - } - }, - { - "pk": 2576, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINTE-PAZANNE", - "center": "POINT (284605.0610279040411115 2239902.3145533748902380)", - "surface": 41810000, - "canton": null, - "numero_insee": "44186" - } - }, - { - "pk": 2578, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-PERE-EN-RETZ", - "center": "POINT (266754.7296984378481284 2256570.8317323140799999)", - "surface": 64020000, - "canton": null, - "numero_insee": "44187" - } - }, - { - "pk": 2252, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-PHILBERT-DE-GRAND-LIEU", - "center": "POINT (296742.0748584771063179 2236598.4562925510108471)", - "surface": 97820000, - "canton": null, - "numero_insee": "44188" - } - }, - { - "pk": 2624, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINTE-REINE-DE-BRETAGNE", - "center": "POINT (259447.6296680802479386 2281331.4918523100204766)", - "surface": 19660000, - "canton": null, - "numero_insee": "44189" - } - }, - { - "pk": 1770, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-SEBASTIEN-SUR-LOIRE", - "center": "POINT (309428.4430273567559198 2251814.5204864800907671)", - "surface": 11730000, - "canton": null, - "numero_insee": "44190" - } - }, - { - "pk": 1995, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-SULPICE-DES-LANDES", - "center": "POINT (332223.1109826611937024 2291432.6422926550731063)", - "surface": 31250000, - "canton": null, - "numero_insee": "44191" - } - }, - { - "pk": 1520, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-VIAUD", - "center": "POINT (272341.8391312007443048 2258718.0146043663844466)", - "surface": 32450000, - "canton": null, - "numero_insee": "44192" - } - }, - { - "pk": 1861, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAINT-VINCENT-DES-LANDES", - "center": "POINT (311519.1122609702288173 2302171.9247163403779268)", - "surface": 33670000, - "canton": null, - "numero_insee": "44193" - } - }, - { - "pk": 3004, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAUTRON", - "center": "POINT (296148.2665544379851781 2260313.1487700799480081)", - "surface": 17710000, - "canton": null, - "numero_insee": "44194" - } - }, - { - "pk": 1960, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SAVENAY", - "center": "POINT (278650.4711147937341593 2270578.9659440331161022)", - "surface": 25970000, - "canton": null, - "numero_insee": "44195" - } - }, - { - "pk": 2715, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SEVERAC", - "center": "POINT (268759.2728370794793591 2293116.5197602701373398)", - "surface": 22420000, - "canton": null, - "numero_insee": "44196" - } - }, - { - "pk": 2000, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SION-LES-MINES", - "center": "POINT (306146.6956941271782853 2310534.5971462698653340)", - "surface": 55160000, - "canton": null, - "numero_insee": "44197" - } - }, - { - "pk": 2645, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LES SORINIERES", - "center": "POINT (307581.7709007406956516 2245093.9165856624022126)", - "surface": 13130000, - "canton": null, - "numero_insee": "44198" - } - }, - { - "pk": 2039, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SOUDAN", - "center": "POINT (327975.2382557404926047 2309111.7418687958270311)", - "surface": 53990000, - "canton": null, - "numero_insee": "44199" - } - }, - { - "pk": 2010, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SOULVACHE", - "center": "POINT (316674.8874022294185124 2320328.0720945810899138)", - "surface": 11230000, - "canton": null, - "numero_insee": "44200" - } - }, - { - "pk": 2102, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "SUCE-SUR-ERDRE", - "center": "POINT (308790.7453385852859356 2268623.0006587663665414)", - "surface": 41480000, - "canton": null, - "numero_insee": "44201" - } - }, - { - "pk": 1928, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "TEILLE", - "center": "POINT (326811.6435974815976806 2280079.3856919016689062)", - "surface": 29070000, - "canton": null, - "numero_insee": "44202" - } - }, - { - "pk": 2691, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LE TEMPLE-DE-BRETAGNE", - "center": "POINT (288188.5105340707814321 2266853.6040387623943388)", - "surface": 1730000, - "canton": null, - "numero_insee": "44203" - } - }, - { - "pk": 1899, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "THOUARE-SUR-LOIRE", - "center": "POINT (314968.0550615998217836 2259766.2451467895880342)", - "surface": 12530000, - "canton": null, - "numero_insee": "44204" - } - }, - { - "pk": 2406, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LES TOUCHES", - "center": "POINT (316209.6085291255149059 2279292.1356206564232707)", - "surface": 35260000, - "canton": null, - "numero_insee": "44205" - } - }, - { - "pk": 2596, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "TOUVOIS", - "center": "POINT (294078.7131242314353585 2219562.4447689359076321)", - "surface": 36910000, - "canton": null, - "numero_insee": "44206" - } - }, - { - "pk": 2554, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "TRANS-SUR-ERDRE", - "center": "POINT (321191.9979260131949559 2281934.9410041309893131)", - "surface": 22780000, - "canton": null, - "numero_insee": "44207" - } - }, - { - "pk": 2763, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "TREFFIEUX", - "center": "POINT (309556.0924648319487460 2297452.2072018552571535)", - "surface": 18990000, - "canton": null, - "numero_insee": "44208" - } - }, - { - "pk": 2057, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "TREILLIERES", - "center": "POINT (300513.1735303257009946 2265052.5864762193523347)", - "surface": 29120000, - "canton": null, - "numero_insee": "44209" - } - }, - { - "pk": 2945, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "TRIGNAC", - "center": "POINT (256662.6105924771982245 2266897.2508873483166099)", - "surface": 14240000, - "canton": null, - "numero_insee": "44210" - } - }, - { - "pk": 2523, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA TURBALLE", - "center": "POINT (235601.4899895039270632 2272330.7967605125159025)", - "surface": 18300000, - "canton": null, - "numero_insee": "44211" - } - }, - { - "pk": 2314, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VALLET", - "center": "POINT (327278.7137622556183487 2247456.7528982530348003)", - "surface": 58320000, - "canton": null, - "numero_insee": "44212" - } - }, - { - "pk": 2565, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VARADES", - "center": "POINT (346390.7022915685083717 2272333.3794139074161649)", - "surface": 45270000, - "canton": null, - "numero_insee": "44213" - } - }, - { - "pk": 2173, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VAY", - "center": "POINT (295600.7051359396427870 2290633.0259004817344248)", - "surface": 36260000, - "canton": null, - "numero_insee": "44214" - } - }, - { - "pk": 2253, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VERTOU", - "center": "POINT (311369.1225397038506344 2247026.4235168285667896)", - "surface": 38180000, - "canton": null, - "numero_insee": "44215" - } - }, - { - "pk": 2224, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VIEILLEVIGNE", - "center": "POINT (314344.6417696554563008 2225833.0770676871761680)", - "surface": 51990000, - "canton": null, - "numero_insee": "44216" - } - }, - { - "pk": 2335, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VIGNEUX-DE-BRETAGNE", - "center": "POINT (293402.9879773367429152 2265595.0661985985934734)", - "surface": 52840000, - "canton": null, - "numero_insee": "44217" - } - }, - { - "pk": 2566, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VILLEPOT", - "center": "POINT (328535.5481620345963165 2314020.1192735438235104)", - "surface": 20640000, - "canton": null, - "numero_insee": "44218" - } - }, - { - "pk": 1736, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VRITZ", - "center": "POINT (343617.4080588955548592 2293227.2923378660343587)", - "surface": 33100000, - "canton": null, - "numero_insee": "44219" - } - }, - { - "pk": 2042, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "VUE", - "center": "POINT (278998.1450358962756582 2252467.0484451032243669)", - "surface": 19550000, - "canton": null, - "numero_insee": "44220" - } - }, - { - "pk": 2861, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA CHEVALLERAIS", - "center": "POINT (298465.6016756269382313 2282950.2779594790190458)", - "surface": 10720000, - "canton": null, - "numero_insee": "44221" - } - }, - { - "pk": 2333, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA ROCHE-BLANCHE", - "center": "POINT (337448.0812931896653026 2276663.6459183869883418)", - "surface": 14940000, - "canton": null, - "numero_insee": "44222" - } - }, - { - "pk": 1784, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "GENESTON", - "center": "POINT (306654.5681061685318127 2236078.8732937737368047)", - "surface": 8290000, - "canton": null, - "numero_insee": "44223" - } - }, - { - "pk": 2563, - "model": "ishtar_common.town", - "fields": { - "departement": 45, - "name": "LA GRIGONNAIS", - "center": "POINT (297628.2791238047648221 2287447.0278339218348265)", - "surface": 21390000, - "canton": null, - "numero_insee": "44224" - } - }, - { - "pk": 20172, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ADON", - "center": "POINT (634527.7874156235484406 2307252.9012956349179149)", - "surface": 24810000, - "canton": null, - "numero_insee": "45001" - } - }, - { - "pk": 33348, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AILLANT-SUR-MILLERON", - "center": "POINT (644906.4238729210337624 2310742.9652773030102253)", - "surface": 27210000, - "canton": null, - "numero_insee": "45002" - } - }, - { - "pk": 15893, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AMILLY", - "center": "POINT (633218.9047825881280005 2331960.7661608336493373)", - "surface": 40300000, - "canton": null, - "numero_insee": "45004" - } - }, - { - "pk": 10394, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ANDONVILLE", - "center": "POINT (576708.9086396953789517 2363910.2765193697996438)", - "surface": 11960000, - "canton": null, - "numero_insee": "45005" - } - }, - { - "pk": 32306, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ARTENAY", - "center": "POINT (565985.0724495572503656 2341904.3457361110486090)", - "surface": 20470000, - "canton": null, - "numero_insee": "45008" - } - }, - { - "pk": 10143, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ASCHERES-LE-MARCHE", - "center": "POINT (575658.9532522978261113 2345888.2268519159406424)", - "surface": 21050000, - "canton": null, - "numero_insee": "45009" - } - }, - { - "pk": 22185, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ASCOUX", - "center": "POINT (593458.3460604789434001 2347538.5231222477741539)", - "surface": 6640000, - "canton": null, - "numero_insee": "45010" - } - }, - { - "pk": 27448, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ATTRAY", - "center": "POINT (584658.3034918489865959 2346764.2164079099893570)", - "surface": 16790000, - "canton": null, - "numero_insee": "45011" - } - }, - { - "pk": 10588, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AUDEVILLE", - "center": "POINT (593015.4538877020822838 2364547.3138479883782566)", - "surface": 12730000, - "canton": null, - "numero_insee": "45012" - } - }, - { - "pk": 29154, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AUGERVILLE-LA-RIVIERE", - "center": "POINT (606050.9049336784519255 2361454.3846667581237853)", - "surface": 4040000, - "canton": null, - "numero_insee": "45013" - } - }, - { - "pk": 29793, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AULNAY-LA-RIVIERE", - "center": "POINT (602688.9833577950485051 2356622.6350308950059116)", - "surface": 16190000, - "canton": null, - "numero_insee": "45014" - } - }, - { - "pk": 37484, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AUTRUY-SUR-JUINE", - "center": "POINT (581810.5931877635885030 2364153.1593869151547551)", - "surface": 27090000, - "canton": null, - "numero_insee": "45015" - } - }, - { - "pk": 18704, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AUTRY-LE-CHATEL", - "center": "POINT (619875.5784069581422955 2288314.9114111098460853)", - "surface": 50940000, - "canton": null, - "numero_insee": "45016" - } - }, - { - "pk": 16464, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AUVILLIERS-EN-GATINAIS", - "center": "POINT (612222.1982014731038362 2329682.5689878533594310)", - "surface": 20560000, - "canton": null, - "numero_insee": "45017" - } - }, - { - "pk": 31589, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "AUXY", - "center": "POINT (611088.6667255357606336 2345484.8989345114678144)", - "surface": 20180000, - "canton": null, - "numero_insee": "45018" - } - }, - { - "pk": 31329, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BACCON", - "center": "POINT (546646.5395052230451256 2320826.9122506701387465)", - "surface": 33020000, - "canton": null, - "numero_insee": "45019" - } - }, - { - "pk": 8367, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LE BARDON", - "center": "POINT (548487.9104354486335069 2316038.6191939753480256)", - "surface": 12330000, - "canton": null, - "numero_insee": "45020" - } - }, - { - "pk": 6365, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BARVILLE-EN-GATINAIS", - "center": "POINT (604680.9955780883319676 2345831.3741962267085910)", - "surface": 10330000, - "canton": null, - "numero_insee": "45021" - } - }, - { - "pk": 33159, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BATILLY-EN-GATINAIS", - "center": "POINT (602406.3304615212837234 2342609.8915010294876993)", - "surface": 10320000, - "canton": null, - "numero_insee": "45022" - } - }, - { - "pk": 26722, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BATILLY-EN-PUISAYE", - "center": "POINT (641175.6963781041558832 2290295.6208440503105521)", - "surface": 17380000, - "canton": null, - "numero_insee": "45023" - } - }, - { - "pk": 8246, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BAULE", - "center": "POINT (549918.1467975637642667 2312547.8774529127404094)", - "surface": 11960000, - "canton": null, - "numero_insee": "45024" - } - }, - { - "pk": 26585, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BAZOCHES-LES-GALLERANDES", - "center": "POINT (578815.0048631563549861 2351418.7381690186448395)", - "surface": 37080000, - "canton": null, - "numero_insee": "45025" - } - }, - { - "pk": 37758, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BAZOCHES-SUR-LE-BETZ", - "center": "POINT (648592.8176255155121908 2348302.4279414359480143)", - "surface": 15440000, - "canton": null, - "numero_insee": "45026" - } - }, - { - "pk": 6131, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BEAUCHAMPS-SUR-HUILLARD", - "center": "POINT (608740.8129749502986670 2327151.4256567712873220)", - "surface": 18160000, - "canton": null, - "numero_insee": "45027" - } - }, - { - "pk": 10549, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BEAUGENCY", - "center": "POINT (547746.6972453763009980 2308926.9620112036354840)", - "surface": 16530000, - "canton": null, - "numero_insee": "45028" - } - }, - { - "pk": 3693, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BEAULIEU-SUR-LOIRE", - "center": "POINT (635042.0394131436478347 2281837.3119674394838512)", - "surface": 49490000, - "canton": null, - "numero_insee": "45029" - } - }, - { - "pk": 33385, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BEAUNE-LA-ROLANDE", - "center": "POINT (606917.7756668535294011 2341647.0280249281786382)", - "surface": 20530000, - "canton": null, - "numero_insee": "45030" - } - }, - { - "pk": 21111, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BELLEGARDE", - "center": "POINT (604307.5368387296330184 2330716.9177625761367381)", - "surface": 4950000, - "canton": null, - "numero_insee": "45031" - } - }, - { - "pk": 29741, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LE BIGNON-MIRABEAU", - "center": "POINT (644475.7282521363813430 2349968.9809084180742502)", - "surface": 12770000, - "canton": null, - "numero_insee": "45032" - } - }, - { - "pk": 23619, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOESSES", - "center": "POINT (607149.0595013214042410 2349855.0699631236493587)", - "surface": 13160000, - "canton": null, - "numero_insee": "45033" - } - }, - { - "pk": 18842, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOIGNY-SUR-BIONNE", - "center": "POINT (576226.8308183688204736 2325877.9531510113738477)", - "surface": 7490000, - "canton": null, - "numero_insee": "45034" - } - }, - { - "pk": 31876, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOISCOMMUN", - "center": "POINT (601446.8160685264738277 2337698.1701781470328569)", - "surface": 15890000, - "canton": null, - "numero_insee": "45035" - } - }, - { - "pk": 4280, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOISMORAND", - "center": "POINT (628709.3907455280423164 2308905.2357162116095424)", - "surface": 25330000, - "canton": null, - "numero_insee": "45036" - } - }, - { - "pk": 36340, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOISSEAUX", - "center": "POINT (573925.4953028752934188 2361685.3618835308589041)", - "surface": 7250000, - "canton": null, - "numero_insee": "45037" - } - }, - { - "pk": 30906, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BONDAROY", - "center": "POINT (595806.2256309094373137 2353962.9548243423923850)", - "surface": 6930000, - "canton": null, - "numero_insee": "45038" - } - }, - { - "pk": 24407, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BONNEE", - "center": "POINT (604177.0621677903691307 2310500.3977241953834891)", - "surface": 11730000, - "canton": null, - "numero_insee": "45039" - } - }, - { - "pk": 27762, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BONNY-SUR-LOIRE", - "center": "POINT (637805.2904301508096978 2286464.2288009179756045)", - "surface": 26660000, - "canton": null, - "numero_insee": "45040" - } - }, - { - "pk": 21840, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BORDEAUX-EN-GATINAIS", - "center": "POINT (614898.7953150242101401 2344616.2481002002023160)", - "surface": 9470000, - "canton": null, - "numero_insee": "45041" - } - }, - { - "pk": 10556, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LES BORDES", - "center": "POINT (607459.2026471025310457 2312929.8107085698284209)", - "surface": 24240000, - "canton": null, - "numero_insee": "45042" - } - }, - { - "pk": 35905, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOUGY-LEZ-NEUVILLE", - "center": "POINT (576624.9287307364866138 2338090.4925981410779059)", - "surface": 16850000, - "canton": null, - "numero_insee": "45044" - } - }, - { - "pk": 32392, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOUILLY-EN-GATINAIS", - "center": "POINT (596287.9347144578350708 2344259.8076868718490005)", - "surface": 15990000, - "canton": null, - "numero_insee": "45045" - } - }, - { - "pk": 30907, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOULAY-LES-BARRES", - "center": "POINT (558172.5914450709242374 2330730.6675426047295332)", - "surface": 12330000, - "canton": null, - "numero_insee": "45046" - } - }, - { - "pk": 9103, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOUZONVILLE-AUX-BOIS", - "center": "POINT (593179.9681489280192181 2344934.2552663246169686)", - "surface": 7560000, - "canton": null, - "numero_insee": "45047" - } - }, - { - "pk": 16021, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOUZY-LA-FORET", - "center": "POINT (602309.4310410934267566 2318390.7875323574990034)", - "surface": 37340000, - "canton": null, - "numero_insee": "45049" - } - }, - { - "pk": 7525, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BOYNES", - "center": "POINT (601774.0030233713332564 2346407.4132040394470096)", - "surface": 15440000, - "canton": null, - "numero_insee": "45050" - } - }, - { - "pk": 3576, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BRAY-EN-VAL", - "center": "POINT (603243.6638060772093013 2314395.5634862715378404)", - "surface": 22270000, - "canton": null, - "numero_insee": "45051" - } - }, - { - "pk": 8375, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BRETEAU", - "center": "POINT (641414.3584786022547632 2297603.3606162648648024)", - "surface": 16380000, - "canton": null, - "numero_insee": "45052" - } - }, - { - "pk": 27325, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BRIARE", - "center": "POINT (630636.1627250533783808 2294009.8488602247089148)", - "surface": 45380000, - "canton": null, - "numero_insee": "45053" - } - }, - { - "pk": 23210, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BRIARRES-SUR-ESSONNE", - "center": "POINT (605675.0106554204830900 2358549.1034219763241708)", - "surface": 8250000, - "canton": null, - "numero_insee": "45054" - } - }, - { - "pk": 33066, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BRICY", - "center": "POINT (558048.2608175121713430 2333631.8157482184469700)", - "surface": 12690000, - "canton": null, - "numero_insee": "45055" - } - }, - { - "pk": 9669, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BROMEILLES", - "center": "POINT (611820.2563462476246059 2353697.1208929489366710)", - "surface": 14740000, - "canton": null, - "numero_insee": "45056" - } - }, - { - "pk": 12178, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LABROSSE", - "center": "POINT (604258.1177670621545985 2360438.5979046793654561)", - "surface": 4070000, - "canton": null, - "numero_insee": "45057" - } - }, - { - "pk": 8238, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BUCY-LE-ROI", - "center": "POINT (569003.0142869909759611 2340028.1793222269043326)", - "surface": 4650000, - "canton": null, - "numero_insee": "45058" - } - }, - { - "pk": 33543, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "BUCY-SAINT-LIPHARD", - "center": "POINT (556404.8172931584995240 2326712.8607075335457921)", - "surface": 17830000, - "canton": null, - "numero_insee": "45059" - } - }, - { - "pk": 19034, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA BUSSIERE", - "center": "POINT (630752.9122319846646860 2303918.5610111961141229)", - "surface": 35000000, - "canton": null, - "numero_insee": "45060" - } - }, - { - "pk": 5826, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CEPOY", - "center": "POINT (630056.1399181344313547 2339139.5557116484269500)", - "surface": 8450000, - "canton": null, - "numero_insee": "45061" - } - }, - { - "pk": 18232, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CERCOTTES", - "center": "POINT (567168.7124499689089134 2332006.8183639608323574)", - "surface": 24250000, - "canton": null, - "numero_insee": "45062" - } - }, - { - "pk": 20788, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CERDON", - "center": "POINT (603330.1178760218899697 2292179.0364470053464174)", - "surface": 67220000, - "canton": null, - "numero_insee": "45063" - } - }, - { - "pk": 33158, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CERNOY-EN-BERRY", - "center": "POINT (623723.7650594873121008 2282943.0048343911767006)", - "surface": 28990000, - "canton": null, - "numero_insee": "45064" - } - }, - { - "pk": 9427, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CESARVILLE-DOSSAINVILLE", - "center": "POINT (596134.2869264323962852 2362572.0187868904322386)", - "surface": 19190000, - "canton": null, - "numero_insee": "45065" - } - }, - { - "pk": 34455, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHAILLY-EN-GATINAIS", - "center": "POINT (614252.1653218843275681 2326297.0518882940523326)", - "surface": 18320000, - "canton": null, - "numero_insee": "45066" - } - }, - { - "pk": 13627, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHAINGY", - "center": "POINT (557850.1221346631646156 2321420.9112432780675590)", - "surface": 21650000, - "canton": null, - "numero_insee": "45067" - } - }, - { - "pk": 37924, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHALETTE-SUR-LOING", - "center": "POINT (629786.2578134108334780 2335534.5818295166827738)", - "surface": 13080000, - "canton": null, - "numero_insee": "45068" - } - }, - { - "pk": 34937, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHAMBON-LA-FORET", - "center": "POINT (596033.0707522369921207 2338853.6350691616535187)", - "surface": 17190000, - "canton": null, - "numero_insee": "45069" - } - }, - { - "pk": 6255, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHAMPOULET", - "center": "POINT (644040.6650196379050612 2294723.2213533450849354)", - "surface": 9430000, - "canton": null, - "numero_insee": "45070" - } - }, - { - "pk": 32833, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHANTEAU", - "center": "POINT (572183.0248806851450354 2330747.8048622435890138)", - "surface": 28940000, - "canton": null, - "numero_insee": "45072" - } - }, - { - "pk": 26982, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHANTECOQ", - "center": "POINT (647176.1737207102123648 2338283.0226519638672471)", - "surface": 15870000, - "canton": null, - "numero_insee": "45073" - } - }, - { - "pk": 37624, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA CHAPELLE-ONZERAIN", - "center": "POINT (545808.1685219421051443 2337332.3984060492366552)", - "surface": 7230000, - "canton": null, - "numero_insee": "45074" - } - }, - { - "pk": 6779, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA CHAPELLE-SAINT-MESMIN", - "center": "POINT (561955.4735288189258426 2321155.0114436228759587)", - "surface": 8900000, - "canton": null, - "numero_insee": "45075" - } - }, - { - "pk": 28218, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA CHAPELLE-SAINT-SEPULCRE", - "center": "POINT (637295.5803329143673182 2335097.4330313424579799)", - "surface": 6190000, - "canton": null, - "numero_insee": "45076" - } - }, - { - "pk": 37949, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA CHAPELLE-SUR-AVEYRON", - "center": "POINT (640232.3814114030683413 2319110.0321049815975130)", - "surface": 19000000, - "canton": null, - "numero_insee": "45077" - } - }, - { - "pk": 11471, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHAPELON", - "center": "POINT (617961.3929593982174993 2337436.6106722820550203)", - "surface": 6540000, - "canton": null, - "numero_insee": "45078" - } - }, - { - "pk": 34098, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LE CHARME", - "center": "POINT (649103.4596567712724209 2311478.8875864986330271)", - "surface": 13850000, - "canton": null, - "numero_insee": "45079" - } - }, - { - "pk": 35653, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHARMONT-EN-BEAUCE", - "center": "POINT (583447.7066933563910425 2359863.7351314695551991)", - "surface": 18130000, - "canton": null, - "numero_insee": "45080" - } - }, - { - "pk": 24791, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHARSONVILLE", - "center": "POINT (543003.1055249641649425 2325700.2197459670715034)", - "surface": 24640000, - "canton": null, - "numero_insee": "45081" - } - }, - { - "pk": 36116, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHATEAU-RENARD", - "center": "POINT (643682.5220178618328646 2325343.8327315836213529)", - "surface": 40380000, - "canton": null, - "numero_insee": "45083" - } - }, - { - "pk": 20279, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHATENOY", - "center": "POINT (605164.3869209847180173 2324019.0324040041305125)", - "surface": 25760000, - "canton": null, - "numero_insee": "45084" - } - }, - { - "pk": 15621, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHATILLON-COLIGNY", - "center": "POINT (640276.2221533631673083 2313906.4125233842059970)", - "surface": 25490000, - "canton": null, - "numero_insee": "45085" - } - }, - { - "pk": 9429, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHATILLON-LE-ROI", - "center": "POINT (582515.8029864227864891 2351649.8920260835438967)", - "surface": 4570000, - "canton": null, - "numero_insee": "45086" - } - }, - { - "pk": 25983, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHATILLON-SUR-LOIRE", - "center": "POINT (630003.8890223097987473 2285898.1458240686915815)", - "surface": 39860000, - "canton": null, - "numero_insee": "45087" - } - }, - { - "pk": 25463, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHAUSSY", - "center": "POINT (574410.3853249105159193 2351581.9972945461049676)", - "surface": 13000000, - "canton": null, - "numero_insee": "45088" - } - }, - { - "pk": 3870, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHECY", - "center": "POINT (576454.6252001795219257 2322577.3508035568520427)", - "surface": 15510000, - "canton": null, - "numero_insee": "45089" - } - }, - { - "pk": 28596, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHEVANNES", - "center": "POINT (638887.1512076160870492 2348120.5550983832217753)", - "surface": 12000000, - "canton": null, - "numero_insee": "45091" - } - }, - { - "pk": 37059, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHEVILLON-SUR-HUILLARD", - "center": "POINT (621328.4387484511826187 2329759.1220168420113623)", - "surface": 19520000, - "canton": null, - "numero_insee": "45092" - } - }, - { - "pk": 32817, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHEVILLY", - "center": "POINT (566928.3842346253804862 2336808.4199874899350107)", - "surface": 42240000, - "canton": null, - "numero_insee": "45093" - } - }, - { - "pk": 10391, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHEVRY-SOUS-LE-BIGNON", - "center": "POINT (641476.2485818526474759 2349643.4810226159170270)", - "surface": 7390000, - "canton": null, - "numero_insee": "45094" - } - }, - { - "pk": 28283, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHILLEURS-AUX-BOIS", - "center": "POINT (585417.4876002980163321 2339765.3598598507232964)", - "surface": 52360000, - "canton": null, - "numero_insee": "45095" - } - }, - { - "pk": 14258, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LES CHOUX", - "center": "POINT (623898.4444694197736681 2309765.4512806828133762)", - "surface": 33760000, - "canton": null, - "numero_insee": "45096" - } - }, - { - "pk": 11028, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CHUELLES", - "center": "POINT (647119.1306951092556119 2333178.7061441419646144)", - "surface": 30930000, - "canton": null, - "numero_insee": "45097" - } - }, - { - "pk": 9016, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CLERY-SAINT-ANDRE", - "center": "POINT (557420.8859040196985006 2312910.8102918374352157)", - "surface": 18330000, - "canton": null, - "numero_insee": "45098" - } - }, - { - "pk": 36591, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COINCES", - "center": "POINT (554930.2514879801310599 2335507.1812405660748482)", - "surface": 21930000, - "canton": null, - "numero_insee": "45099" - } - }, - { - "pk": 25924, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COMBREUX", - "center": "POINT (597820.7183480564272031 2328560.8767760535702109)", - "surface": 12790000, - "canton": null, - "numero_insee": "45101" - } - }, - { - "pk": 12279, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CONFLANS-SUR-LOING", - "center": "POINT (632856.5439223616849631 2327454.3102921303361654)", - "surface": 9160000, - "canton": null, - "numero_insee": "45102" - } - }, - { - "pk": 31315, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CORBEILLES", - "center": "POINT (616624.3366242480697110 2341728.5896080485545099)", - "surface": 32680000, - "canton": null, - "numero_insee": "45103" - } - }, - { - "pk": 9153, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CORQUILLEROY", - "center": "POINT (626563.0278830827446654 2338009.3339811800979078)", - "surface": 13910000, - "canton": null, - "numero_insee": "45104" - } - }, - { - "pk": 24196, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CORTRAT", - "center": "POINT (632293.1997660562628880 2323046.2227450022473931)", - "surface": 11040000, - "canton": null, - "numero_insee": "45105" - } - }, - { - "pk": 13922, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COUDRAY", - "center": "POINT (602435.0844142009736970 2363025.1926702633500099)", - "surface": 12480000, - "canton": null, - "numero_insee": "45106" - } - }, - { - "pk": 27791, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COUDROY", - "center": "POINT (610278.8369783379603177 2322761.0016000182367861)", - "surface": 14700000, - "canton": null, - "numero_insee": "45107" - } - }, - { - "pk": 26534, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COULLONS", - "center": "POINT (612748.6141962433466688 2290857.0490039647556841)", - "surface": 81070000, - "canton": null, - "numero_insee": "45108" - } - }, - { - "pk": 32909, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COULMIERS", - "center": "POINT (549304.9424798480467871 2326053.0754972361028194)", - "surface": 14200000, - "canton": null, - "numero_insee": "45109" - } - }, - { - "pk": 12009, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COURCELLES", - "center": "POINT (599289.9580724403494969 2344284.9998124781996012)", - "surface": 6280000, - "canton": null, - "numero_insee": "45110" - } - }, - { - "pk": 22348, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COURCY-AUX-LOGES", - "center": "POINT (591024.6416260247351602 2339412.0718876109458506)", - "surface": 20890000, - "canton": null, - "numero_insee": "45111" - } - }, - { - "pk": 14173, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA COUR-MARIGNY", - "center": "POINT (618397.8979137664427981 2321228.0200587734580040)", - "surface": 13380000, - "canton": null, - "numero_insee": "45112" - } - }, - { - "pk": 18441, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COURTEMAUX", - "center": "POINT (644372.5858716020593420 2338459.5398617624305189)", - "surface": 12200000, - "canton": null, - "numero_insee": "45113" - } - }, - { - "pk": 6413, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COURTEMPIERRE", - "center": "POINT (622209.6072602364001796 2343977.1963812531903386)", - "surface": 13370000, - "canton": null, - "numero_insee": "45114" - } - }, - { - "pk": 14863, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "COURTENAY", - "center": "POINT (654100.2741564784664661 2336039.6883768672123551)", - "surface": 50080000, - "canton": null, - "numero_insee": "45115" - } - }, - { - "pk": 6559, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CRAVANT", - "center": "POINT (543391.8738074648426846 2315095.3708463604561985)", - "surface": 33860000, - "canton": null, - "numero_insee": "45116" - } - }, - { - "pk": 9881, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "CROTTES-EN-PITHIVERAIS", - "center": "POINT (579760.0373927793698385 2346122.7257957723923028)", - "surface": 13660000, - "canton": null, - "numero_insee": "45118" - } - }, - { - "pk": 22433, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DADONVILLE", - "center": "POINT (594935.8476485786959529 2350352.9931723750196397)", - "surface": 18300000, - "canton": null, - "numero_insee": "45119" - } - }, - { - "pk": 24917, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DAMMARIE-EN-PUISAYE", - "center": "POINT (639354.1738734259270132 2292682.1626482489518821)", - "surface": 25820000, - "canton": null, - "numero_insee": "45120" - } - }, - { - "pk": 32478, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DAMMARIE-SUR-LOING", - "center": "POINT (640215.7774743211921304 2309202.2796314549632370)", - "surface": 20980000, - "canton": null, - "numero_insee": "45121" - } - }, - { - "pk": 28000, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DAMPIERRE-EN-BURLY", - "center": "POINT (615416.8754258339758962 2306791.8879219423979521)", - "surface": 48310000, - "canton": null, - "numero_insee": "45122" - } - }, - { - "pk": 33881, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DARVOY", - "center": "POINT (581505.0383649531286210 2317015.3790405276231468)", - "surface": 8570000, - "canton": null, - "numero_insee": "45123" - } - }, - { - "pk": 7606, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DESMONTS", - "center": "POINT (612079.2543885458726436 2358602.9019287950359285)", - "surface": 4750000, - "canton": null, - "numero_insee": "45124" - } - }, - { - "pk": 23085, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DIMANCHEVILLE", - "center": "POINT (606463.7753986443858594 2359956.7540807262994349)", - "surface": 2340000, - "canton": null, - "numero_insee": "45125" - } - }, - { - "pk": 26886, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DONNERY", - "center": "POINT (582548.7816912638954818 2323829.3177244872786105)", - "surface": 21790000, - "canton": null, - "numero_insee": "45126" - } - }, - { - "pk": 33012, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DORDIVES", - "center": "POINT (632567.7579048497136682 2349868.6703286846168339)", - "surface": 15150000, - "canton": null, - "numero_insee": "45127" - } - }, - { - "pk": 7966, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DOUCHY", - "center": "POINT (652774.4433286297135055 2327121.7811381067149341)", - "surface": 23320000, - "canton": null, - "numero_insee": "45129" - } - }, - { - "pk": 27988, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "DRY", - "center": "POINT (554339.6261933585628867 2310383.1279674684628844)", - "surface": 23120000, - "canton": null, - "numero_insee": "45130" - } - }, - { - "pk": 22973, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ECHILLEUSES", - "center": "POINT (607829.3558867136016488 2352262.5591594935394824)", - "surface": 12450000, - "canton": null, - "numero_insee": "45131" - } - }, - { - "pk": 5608, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "EGRY", - "center": "POINT (607693.9417476125527173 2344555.7103702439926565)", - "surface": 7440000, - "canton": null, - "numero_insee": "45132" - } - }, - { - "pk": 26379, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ENGENVILLE", - "center": "POINT (592557.9293323906604201 2359439.7485104734078050)", - "surface": 18070000, - "canton": null, - "numero_insee": "45133" - } - }, - { - "pk": 34911, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "EPIEDS-EN-BEAUCE", - "center": "POINT (545273.7736542812781408 2329421.9836262296885252)", - "surface": 40260000, - "canton": null, - "numero_insee": "45134" - } - }, - { - "pk": 8598, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ERCEVILLE", - "center": "POINT (576935.8588092701975256 2360709.8392425668425858)", - "surface": 12700000, - "canton": null, - "numero_insee": "45135" - } - }, - { - "pk": 7270, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ERVAUVILLE", - "center": "POINT (648128.7613397826207802 2343995.3165063499473035)", - "surface": 12540000, - "canton": null, - "numero_insee": "45136" - } - }, - { - "pk": 33067, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ESCRENNES", - "center": "POINT (588646.7305495954351500 2348498.9129471275955439)", - "surface": 11490000, - "canton": null, - "numero_insee": "45137" - } - }, - { - "pk": 27195, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ESCRIGNELLES", - "center": "POINT (636176.9507944578072056 2301562.3629209212958813)", - "surface": 13990000, - "canton": null, - "numero_insee": "45138" - } - }, - { - "pk": 25982, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ESTOUY", - "center": "POINT (598904.0936321673216298 2354489.3186839008703828)", - "surface": 18710000, - "canton": null, - "numero_insee": "45139" - } - }, - { - "pk": 30594, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FAVERELLES", - "center": "POINT (645101.2647581144701689 2287626.5728714801371098)", - "surface": 19150000, - "canton": null, - "numero_insee": "45141" - } - }, - { - "pk": 27763, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FAY-AUX-LOGES", - "center": "POINT (586734.9046652107499540 2325865.9237552569247782)", - "surface": 26350000, - "canton": null, - "numero_insee": "45142" - } - }, - { - "pk": 37863, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FEINS-EN-GATINAIS", - "center": "POINT (637446.6844779209932312 2305275.9330989154987037)", - "surface": 11800000, - "canton": null, - "numero_insee": "45143" - } - }, - { - "pk": 7759, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FEROLLES", - "center": "POINT (583532.4283090566750616 2313929.9888250017538667)", - "surface": 17050000, - "canton": null, - "numero_insee": "45144" - } - }, - { - "pk": 21591, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FERRIERES-EN-GATINAIS", - "center": "POINT (634808.8361783183645457 2345184.0497875912114978)", - "surface": 27360000, - "canton": null, - "numero_insee": "45145" - } - }, - { - "pk": 18808, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA FERTE-SAINT-AUBIN", - "center": "POINT (569226.2223931448534131 2301400.5810480322688818)", - "surface": 86200000, - "canton": null, - "numero_insee": "45146" - } - }, - { - "pk": 36590, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FLEURY-LES-AUBRAIS", - "center": "POINT (568815.0309171536937356 2326616.5094988038763404)", - "surface": 10160000, - "canton": null, - "numero_insee": "45147" - } - }, - { - "pk": 16334, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FONTENAY-SUR-LOING", - "center": "POINT (632127.2362667107954621 2342759.6821491452865303)", - "surface": 9730000, - "canton": null, - "numero_insee": "45148" - } - }, - { - "pk": 7438, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FOUCHEROLLES", - "center": "POINT (650727.1391829485073686 2344417.5252029593102634)", - "surface": 9870000, - "canton": null, - "numero_insee": "45149" - } - }, - { - "pk": 30324, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "FREVILLE-DU-GATINAIS", - "center": "POINT (608269.0889589092694223 2335653.8817446716129780)", - "surface": 9980000, - "canton": null, - "numero_insee": "45150" - } - }, - { - "pk": 24198, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GAUBERTIN", - "center": "POINT (606569.6681511980714276 2347348.3497902941890061)", - "surface": 7260000, - "canton": null, - "numero_insee": "45151" - } - }, - { - "pk": 26826, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GEMIGNY", - "center": "POINT (552579.6226135194301605 2329382.9363210583105683)", - "surface": 14540000, - "canton": null, - "numero_insee": "45152" - } - }, - { - "pk": 32388, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GERMIGNY-DES-PRES", - "center": "POINT (594727.6569128929404542 2315525.0127772665582597)", - "surface": 9950000, - "canton": null, - "numero_insee": "45153" - } - }, - { - "pk": 24126, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GIDY", - "center": "POINT (562560.5420345521997660 2332568.7196397767402232)", - "surface": 23460000, - "canton": null, - "numero_insee": "45154" - } - }, - { - "pk": 36222, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GIEN", - "center": "POINT (624668.8107394957914948 2301465.4954510498791933)", - "surface": 67620000, - "canton": null, - "numero_insee": "45155" - } - }, - { - "pk": 34568, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GIROLLES", - "center": "POINT (628334.7752598343649879 2341526.8637920743785799)", - "surface": 13810000, - "canton": null, - "numero_insee": "45156" - } - }, - { - "pk": 29103, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GIVRAINES", - "center": "POINT (603343.9929661341011524 2350123.3387344432994723)", - "surface": 11250000, - "canton": null, - "numero_insee": "45157" - } - }, - { - "pk": 26135, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GONDREVILLE", - "center": "POINT (623349.9115565811516717 2339283.2761352970264852)", - "surface": 8100000, - "canton": null, - "numero_insee": "45158" - } - }, - { - "pk": 13921, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GRANGERMONT", - "center": "POINT (606811.8789463209686801 2354255.4889614353887737)", - "surface": 3950000, - "canton": null, - "numero_insee": "45159" - } - }, - { - "pk": 25215, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GRENEVILLE-EN-BEAUCE", - "center": "POINT (583192.7909094262868166 2354457.6314087798818946)", - "surface": 22580000, - "canton": null, - "numero_insee": "45160" - } - }, - { - "pk": 20197, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GRISELLES", - "center": "POINT (637440.0874504433013499 2341703.5993384420871735)", - "surface": 30110000, - "canton": null, - "numero_insee": "45161" - } - }, - { - "pk": 26583, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GUIGNEVILLE", - "center": "POINT (587871.5941042784834281 2357398.9827631721273065)", - "surface": 31960000, - "canton": null, - "numero_insee": "45162" - } - }, - { - "pk": 16185, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GUILLY", - "center": "POINT (595059.7688419573241845 2311724.8767533972859383)", - "surface": 17020000, - "canton": null, - "numero_insee": "45164" - } - }, - { - "pk": 24003, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "GY-LES-NONAINS", - "center": "POINT (638076.1341119959251955 2325596.8237145561724901)", - "surface": 20170000, - "canton": null, - "numero_insee": "45165" - } - }, - { - "pk": 10897, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "HUETRE", - "center": "POINT (560027.0343809017213061 2336350.3916215309873223)", - "surface": 13230000, - "canton": null, - "numero_insee": "45166" - } - }, - { - "pk": 20446, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "HUISSEAU-SUR-MAUVES", - "center": "POINT (552342.9663334828801453 2321775.1860824534669518)", - "surface": 37030000, - "canton": null, - "numero_insee": "45167" - } - }, - { - "pk": 27121, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "INGRANNES", - "center": "POINT (591581.2107811626046896 2332711.7053873562254012)", - "surface": 38990000, - "canton": null, - "numero_insee": "45168" - } - }, - { - "pk": 7007, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "INGRE", - "center": "POINT (561629.3211877902504057 2324254.6453044270165265)", - "surface": 20770000, - "canton": null, - "numero_insee": "45169" - } - }, - { - "pk": 23328, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "INTVILLE-LA-GUETARD", - "center": "POINT (591037.6341223925119266 2361728.6815526001155376)", - "surface": 4860000, - "canton": null, - "numero_insee": "45170" - } - }, - { - "pk": 18373, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ISDES", - "center": "POINT (594290.9390031673246995 2296006.2331611597910523)", - "surface": 43830000, - "canton": null, - "numero_insee": "45171" - } - }, - { - "pk": 11748, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "JARGEAU", - "center": "POINT (583805.8005369543097913 2317134.7358158975839615)", - "surface": 14620000, - "canton": null, - "numero_insee": "45173" - } - }, - { - "pk": 35808, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "JOUY-EN-PITHIVERAIS", - "center": "POINT (584730.6934755184920505 2350067.2704874398186803)", - "surface": 15860000, - "canton": null, - "numero_insee": "45174" - } - }, - { - "pk": 23570, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "JOUY-LE-POTIER", - "center": "POINT (560385.6770435412181541 2305429.8066319632343948)", - "surface": 50730000, - "canton": null, - "numero_insee": "45175" - } - }, - { - "pk": 12010, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "JURANVILLE", - "center": "POINT (610833.0252323518507183 2340178.7963950554840267)", - "surface": 15170000, - "canton": null, - "numero_insee": "45176" - } - }, - { - "pk": 33302, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LAAS", - "center": "POINT (591162.6751017869682983 2346818.7485884511843324)", - "surface": 6560000, - "canton": null, - "numero_insee": "45177" - } - }, - { - "pk": 36904, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LADON", - "center": "POINT (614083.9728176632197574 2334401.7619070555083454)", - "surface": 13650000, - "canton": null, - "numero_insee": "45178" - } - }, - { - "pk": 23050, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LAILLY-EN-VAL", - "center": "POINT (553379.9027262883028015 2305471.3174649635329843)", - "surface": 46170000, - "canton": null, - "numero_insee": "45179" - } - }, - { - "pk": 4455, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LANGESSE", - "center": "POINT (623070.1057006202172488 2313061.0274821538478136)", - "surface": 8990000, - "canton": null, - "numero_insee": "45180" - } - }, - { - "pk": 6564, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LEOUVILLE", - "center": "POINT (581359.7306923649739474 2358245.0657017291523516)", - "surface": 4270000, - "canton": null, - "numero_insee": "45181" - } - }, - { - "pk": 15882, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LIGNY-LE-RIBAULT", - "center": "POINT (558944.0268817814067006 2298312.2267263820394874)", - "surface": 58790000, - "canton": null, - "numero_insee": "45182" - } - }, - { - "pk": 10804, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LION-EN-BEAUCE", - "center": "POINT (569835.7840179896447808 2348141.1836087335832417)", - "surface": 7020000, - "canton": null, - "numero_insee": "45183" - } - }, - { - "pk": 24598, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LION-EN-SULLIAS", - "center": "POINT (610647.9689626309555024 2302648.6294237826950848)", - "surface": 24360000, - "canton": null, - "numero_insee": "45184" - } - }, - { - "pk": 15503, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LOMBREUIL", - "center": "POINT (621652.2099698593374342 2326959.7237064368091524)", - "surface": 7630000, - "canton": null, - "numero_insee": "45185" - } - }, - { - "pk": 17961, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LORCY", - "center": "POINT (614252.9907195762498304 2338105.9624569523148239)", - "surface": 17240000, - "canton": null, - "numero_insee": "45186" - } - }, - { - "pk": 28001, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LORRIS", - "center": "POINT (612019.5331473574042320 2318072.0375522403046489)", - "surface": 44910000, - "canton": null, - "numero_insee": "45187" - } - }, - { - "pk": 15907, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LOURY", - "center": "POINT (581658.5111879288451746 2334529.9551106323488057)", - "surface": 34350000, - "canton": null, - "numero_insee": "45188" - } - }, - { - "pk": 10557, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LOUZOUER", - "center": "POINT (639678.6688865992473438 2337319.1610821429640055)", - "surface": 11190000, - "canton": null, - "numero_insee": "45189" - } - }, - { - "pk": 7365, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MAINVILLIERS", - "center": "POINT (596400.9004420270211995 2366577.1714217574335635)", - "surface": 10260000, - "canton": null, - "numero_insee": "45190" - } - }, - { - "pk": 4491, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MALESHERBES", - "center": "POINT (604515.4632283328101039 2365544.4828283651731908)", - "surface": 17580000, - "canton": null, - "numero_insee": "45191" - } - }, - { - "pk": 24457, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MANCHECOURT", - "center": "POINT (600759.1617614210117608 2360008.9297603531740606)", - "surface": 16290000, - "canton": null, - "numero_insee": "45192" - } - }, - { - "pk": 30966, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MARCILLY-EN-VILLETTE", - "center": "POINT (577276.6408724741777405 2308073.1049166959710419)", - "surface": 62730000, - "canton": null, - "numero_insee": "45193" - } - }, - { - "pk": 34929, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MARDIE", - "center": "POINT (579962.0762622848851606 2322006.2732766205444932)", - "surface": 17240000, - "canton": null, - "numero_insee": "45194" - } - }, - { - "pk": 35424, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MAREAU-AUX-BOIS", - "center": "POINT (589082.2390432434622198 2344299.4429966346360743)", - "surface": 11600000, - "canton": null, - "numero_insee": "45195" - } - }, - { - "pk": 21241, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MAREAU-AUX-PRES", - "center": "POINT (557191.4656960469437763 2316411.5807896680198610)", - "surface": 15460000, - "canton": null, - "numero_insee": "45196" - } - }, - { - "pk": 34033, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MARIGNY-LES-USAGES", - "center": "POINT (575802.2524445904418826 2328776.5962446769699454)", - "surface": 9670000, - "canton": null, - "numero_insee": "45197" - } - }, - { - "pk": 14120, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MARSAINVILLIERS", - "center": "POINT (595079.7338739100378007 2357059.1414690325036645)", - "surface": 10800000, - "canton": null, - "numero_insee": "45198" - } - }, - { - "pk": 22050, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MELLEROY", - "center": "POINT (646620.7946826658444479 2321065.3230074276216328)", - "surface": 24130000, - "canton": null, - "numero_insee": "45199" - } - }, - { - "pk": 23825, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MENESTREAU-EN-VILLETTE", - "center": "POINT (577334.4743829033104703 2301168.2348125604912639)", - "surface": 54200000, - "canton": null, - "numero_insee": "45200" - } - }, - { - "pk": 33792, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MERINVILLE", - "center": "POINT (645030.0444200973724946 2343568.8955955845303833)", - "surface": 11920000, - "canton": null, - "numero_insee": "45201" - } - }, - { - "pk": 15950, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MESSAS", - "center": "POINT (547418.0685326023958623 2312326.8395925145596266)", - "surface": 5290000, - "canton": null, - "numero_insee": "45202" - } - }, - { - "pk": 30263, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MEUNG-SUR-LOIRE", - "center": "POINT (552092.9288095968076959 2315768.5072960862889886)", - "surface": 20230000, - "canton": null, - "numero_insee": "45203" - } - }, - { - "pk": 22368, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MEZIERES-LEZ-CLERY", - "center": "POINT (561027.5885351690230891 2312440.5831025484949350)", - "surface": 26960000, - "canton": null, - "numero_insee": "45204" - } - }, - { - "pk": 13783, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MEZIERES-EN-GATINAIS", - "center": "POINT (610867.4968363866209984 2336076.0116043542511761)", - "surface": 9970000, - "canton": null, - "numero_insee": "45205" - } - }, - { - "pk": 23658, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MIGNERES", - "center": "POINT (621252.6952234855853021 2338765.2618027785792947)", - "surface": 5120000, - "canton": null, - "numero_insee": "45206" - } - }, - { - "pk": 10690, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MIGNERETTE", - "center": "POINT (619940.0321823020931333 2340155.2711718194186687)", - "surface": 6200000, - "canton": null, - "numero_insee": "45207" - } - }, - { - "pk": 10944, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTARGIS", - "center": "POINT (629804.7876165794441476 2333333.0813734903931618)", - "surface": 4450000, - "canton": null, - "numero_insee": "45208" - } - }, - { - "pk": 25698, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTBARROIS", - "center": "POINT (604439.6118782688863575 2338824.1217103437520564)", - "surface": 6070000, - "canton": null, - "numero_insee": "45209" - } - }, - { - "pk": 34344, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTBOUY", - "center": "POINT (636333.0458264920162037 2318676.8799230088479817)", - "surface": 26680000, - "canton": null, - "numero_insee": "45210" - } - }, - { - "pk": 19028, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTCORBON", - "center": "POINT (655746.1113435052102432 2330749.5774612776003778)", - "surface": 26720000, - "canton": null, - "numero_insee": "45211" - } - }, - { - "pk": 6589, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTCRESSON", - "center": "POINT (634990.8519021731335670 2323569.3175191879272461)", - "surface": 21040000, - "canton": null, - "numero_insee": "45212" - } - }, - { - "pk": 32247, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTEREAU", - "center": "POINT (616848.1063923748442903 2315110.3203575285151601)", - "surface": 50090000, - "canton": null, - "numero_insee": "45213" - } - }, - { - "pk": 24054, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTIGNY", - "center": "POINT (583368.3308706460520625 2345452.4388582091778517)", - "surface": 5340000, - "canton": null, - "numero_insee": "45214" - } - }, - { - "pk": 10319, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MONTLIARD", - "center": "POINT (604769.2256951247109100 2335324.2622367581352592)", - "surface": 9070000, - "canton": null, - "numero_insee": "45215" - } - }, - { - "pk": 37614, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MORMANT-SUR-VERNISSON", - "center": "POINT (629258.2800439618295059 2326923.6412650663405657)", - "surface": 11030000, - "canton": null, - "numero_insee": "45216" - } - }, - { - "pk": 12126, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MORVILLE-EN-BEAUCE", - "center": "POINT (586733.9539679746376351 2361792.6697966065257788)", - "surface": 11070000, - "canton": null, - "numero_insee": "45217" - } - }, - { - "pk": 4072, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LE MOULINET-SUR-SOLIN", - "center": "POINT (620468.2887319251894951 2313039.1447637211531401)", - "surface": 19690000, - "canton": null, - "numero_insee": "45218" - } - }, - { - "pk": 27919, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "MOULON", - "center": "POINT (619279.1052489174762741 2335446.1876609092578292)", - "surface": 9580000, - "canton": null, - "numero_insee": "45219" - } - }, - { - "pk": 10689, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NANCRAY-SUR-RIMARDE", - "center": "POINT (598918.2424084227532148 2340879.3427412947639823)", - "surface": 11540000, - "canton": null, - "numero_insee": "45220" - } - }, - { - "pk": 8846, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NANGEVILLE", - "center": "POINT (599087.5571006156969815 2368401.0247738375328481)", - "surface": 8630000, - "canton": null, - "numero_insee": "45221" - } - }, - { - "pk": 8643, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NARGIS", - "center": "POINT (629800.4148866073228419 2345742.3309253305196762)", - "surface": 22240000, - "canton": null, - "numero_insee": "45222" - } - }, - { - "pk": 32682, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NESPLOY", - "center": "POINT (602387.7527526960475370 2332902.4595787427388132)", - "surface": 12940000, - "canton": null, - "numero_insee": "45223" - } - }, - { - "pk": 32740, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NEUVILLE-AUX-BOIS", - "center": "POINT (579302.4530745620140806 2341015.0907739046961069)", - "surface": 31750000, - "canton": null, - "numero_insee": "45224" - } - }, - { - "pk": 34071, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA NEUVILLE-SUR-ESSONNE", - "center": "POINT (603116.9741161392303184 2353323.7977872402407229)", - "surface": 9210000, - "canton": null, - "numero_insee": "45225" - } - }, - { - "pk": 37750, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NEUVY-EN-SULLIAS", - "center": "POINT (592986.8378991300705820 2308304.8630268070846796)", - "surface": 25240000, - "canton": null, - "numero_insee": "45226" - } - }, - { - "pk": 28448, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NEVOY", - "center": "POINT (619145.5639526598388329 2303720.8304062238894403)", - "surface": 30970000, - "canton": null, - "numero_insee": "45227" - } - }, - { - "pk": 19260, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NIBELLE", - "center": "POINT (598067.1789966840296984 2334967.7756959451362491)", - "surface": 27120000, - "canton": null, - "numero_insee": "45228" - } - }, - { - "pk": 7287, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NOGENT-SUR-VERNISSON", - "center": "POINT (629354.2943299405742437 2315515.7477730535902083)", - "surface": 33450000, - "canton": null, - "numero_insee": "45229" - } - }, - { - "pk": 29873, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "NOYERS", - "center": "POINT (614877.8112522884039208 2323300.0292890835553408)", - "surface": 18030000, - "canton": null, - "numero_insee": "45230" - } - }, - { - "pk": 31734, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OISON", - "center": "POINT (573136.3249020756920800 2348368.9607095704413950)", - "surface": 12100000, - "canton": null, - "numero_insee": "45231" - } - }, - { - "pk": 30524, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OLIVET", - "center": "POINT (566391.1770408725133166 2317289.1360958800651133)", - "surface": 23330000, - "canton": null, - "numero_insee": "45232" - } - }, - { - "pk": 10468, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ONDREVILLE-SUR-ESSONNE", - "center": "POINT (605902.0350156754720956 2355348.6580260484479368)", - "surface": 6570000, - "canton": null, - "numero_insee": "45233" - } - }, - { - "pk": 16668, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ORLEANS", - "center": "POINT (567367.5892187465215102 2320199.5245402394793928)", - "surface": 27580000, - "canton": null, - "numero_insee": "45234" - } - }, - { - "pk": 31107, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ORMES", - "center": "POINT (560399.2038936810567975 2327747.0152935227379203)", - "surface": 18220000, - "canton": null, - "numero_insee": "45235" - } - }, - { - "pk": 25169, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ORVEAU-BELLESAUVE", - "center": "POINT (600115.0893388325348496 2365207.3220609314739704)", - "surface": 15800000, - "canton": null, - "numero_insee": "45236" - } - }, - { - "pk": 26535, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ORVILLE", - "center": "POINT (609062.9747294245753437 2360278.8059766059741378)", - "surface": 7200000, - "canton": null, - "numero_insee": "45237" - } - }, - { - "pk": 12580, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUSSON-SUR-LOIRE", - "center": "POINT (634481.0069471094757318 2289038.2854641336016357)", - "surface": 5390000, - "canton": null, - "numero_insee": "45238" - } - }, - { - "pk": 30323, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUSSOY-EN-GATINAIS", - "center": "POINT (622390.5673114808741957 2322462.5116402972489595)", - "surface": 23300000, - "canton": null, - "numero_insee": "45239" - } - }, - { - "pk": 24024, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUTARVILLE", - "center": "POINT (576564.9257943736156449 2357204.1661734208464622)", - "surface": 46690000, - "canton": null, - "numero_insee": "45240" - } - }, - { - "pk": 35003, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUVROUER-LES-CHAMPS", - "center": "POINT (588224.8036019724095240 2315270.3210237999446690)", - "surface": 10520000, - "canton": null, - "numero_insee": "45241" - } - }, - { - "pk": 22863, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUZOUER-DES-CHAMPS", - "center": "POINT (627817.8801187194185331 2319706.0351786068640649)", - "surface": 11360000, - "canton": null, - "numero_insee": "45242" - } - }, - { - "pk": 29742, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUZOUER-SOUS-BELLEGARDE", - "center": "POINT (610600.0819382792105898 2332170.8280718899331987)", - "surface": 11560000, - "canton": null, - "numero_insee": "45243" - } - }, - { - "pk": 35257, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUZOUER-SUR-LOIRE", - "center": "POINT (610491.5669523205142468 2309352.5084159770049155)", - "surface": 35600000, - "canton": null, - "numero_insee": "45244" - } - }, - { - "pk": 15618, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "OUZOUER-SUR-TREZEE", - "center": "POINT (635511.8497276831185445 2297353.4840170373208821)", - "surface": 62510000, - "canton": null, - "numero_insee": "45245" - } - }, - { - "pk": 7849, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PANNECIERES", - "center": "POINT (585300.3182639670558274 2365683.4976630005985498)", - "surface": 6870000, - "canton": null, - "numero_insee": "45246" - } - }, - { - "pk": 31877, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PANNES", - "center": "POINT (624788.7450702568748966 2334792.0014988249167800)", - "surface": 20790000, - "canton": null, - "numero_insee": "45247" - } - }, - { - "pk": 5950, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PATAY", - "center": "POINT (552097.4047971669351682 2339186.2835790715180337)", - "surface": 13940000, - "canton": null, - "numero_insee": "45248" - } - }, - { - "pk": 7894, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PAUCOURT", - "center": "POINT (633670.3776658406713977 2337768.9326161453500390)", - "surface": 20780000, - "canton": null, - "numero_insee": "45249" - } - }, - { - "pk": 32479, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PERS-EN-GATINAIS", - "center": "POINT (642402.9923654175363481 2346548.9891676278784871)", - "surface": 10660000, - "canton": null, - "numero_insee": "45250" - } - }, - { - "pk": 29319, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PIERREFITTE-ES-BOIS", - "center": "POINT (626758.7719294073758647 2279065.4395508836023510)", - "surface": 27640000, - "canton": null, - "numero_insee": "45251" - } - }, - { - "pk": 12179, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PITHIVIERS", - "center": "POINT (593508.8888490959070623 2353443.3131947154179215)", - "surface": 6950000, - "canton": null, - "numero_insee": "45252" - } - }, - { - "pk": 32532, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PITHIVIERS-LE-VIEIL", - "center": "POINT (590313.4666693097678944 2352615.9225761475972831)", - "surface": 33690000, - "canton": null, - "numero_insee": "45253" - } - }, - { - "pk": 31389, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "POILLY-LEZ-GIEN", - "center": "POINT (619313.7924238039413467 2295615.9261554768308997)", - "surface": 33280000, - "canton": null, - "numero_insee": "45254" - } - }, - { - "pk": 23657, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PREFONTAINES", - "center": "POINT (626301.4269100384553894 2345312.5873407870531082)", - "surface": 11680000, - "canton": null, - "numero_insee": "45255" - } - }, - { - "pk": 34100, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PRESNOY", - "center": "POINT (616533.5593886432470754 2328718.0480881384573877)", - "surface": 7850000, - "canton": null, - "numero_insee": "45256" - } - }, - { - "pk": 25925, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PRESSIGNY-LES-PINS", - "center": "POINT (631719.7426012433134019 2319838.9529639859683812)", - "surface": 11830000, - "canton": null, - "numero_insee": "45257" - } - }, - { - "pk": 36959, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "PUISEAUX", - "center": "POINT (609593.5692524616606534 2356680.6217275368981063)", - "surface": 20290000, - "canton": null, - "numero_insee": "45258" - } - }, - { - "pk": 36667, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "QUIERS-SUR-BEZONDE", - "center": "POINT (606598.1867314092814922 2332037.1357662989757955)", - "surface": 16590000, - "canton": null, - "numero_insee": "45259" - } - }, - { - "pk": 10981, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "RAMOULU", - "center": "POINT (597667.1860387857304886 2358782.0997626828029752)", - "surface": 12030000, - "canton": null, - "numero_insee": "45260" - } - }, - { - "pk": 26652, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "REBRECHIEN", - "center": "POINT (576670.1851213118061423 2332686.8115616780705750)", - "surface": 19370000, - "canton": null, - "numero_insee": "45261" - } - }, - { - "pk": 31101, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ROUVRAY-SAINTE-CROIX", - "center": "POINT (555194.4911975157447159 2339812.6150547526776791)", - "surface": 9500000, - "canton": null, - "numero_insee": "45262" - } - }, - { - "pk": 7389, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ROUVRES-SAINT-JEAN", - "center": "POINT (590572.7551496741361916 2369430.3892634366638958)", - "surface": 10140000, - "canton": null, - "numero_insee": "45263" - } - }, - { - "pk": 27524, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ROZIERES-EN-BEAUCE", - "center": "POINT (553001.6392747374484316 2326784.4931075801141560)", - "surface": 9170000, - "canton": null, - "numero_insee": "45264" - } - }, - { - "pk": 34535, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "ROZOY-LE-VIEIL", - "center": "POINT (645704.3678042881656438 2346676.8880489864386618)", - "surface": 8210000, - "canton": null, - "numero_insee": "45265" - } - }, - { - "pk": 30118, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "RUAN", - "center": "POINT (569257.1556154299760237 2345534.4094360582530499)", - "surface": 16390000, - "canton": null, - "numero_insee": "45266" - } - }, - { - "pk": 12535, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-AIGNAN-DES-GUES", - "center": "POINT (599732.8219419374363497 2315366.8592219110578299)", - "surface": 3920000, - "canton": null, - "numero_insee": "45267" - } - }, - { - "pk": 12008, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-AIGNAN-LE-JAILLARD", - "center": "POINT (606436.5947746948804706 2303614.0303845908492804)", - "surface": 24080000, - "canton": null, - "numero_insee": "45268" - } - }, - { - "pk": 28726, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-AY", - "center": "POINT (555772.0879400765988976 2318601.4006586517207325)", - "surface": 10300000, - "canton": null, - "numero_insee": "45269" - } - }, - { - "pk": 26129, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-BENOIT-SUR-LOIRE", - "center": "POINT (598559.6994654941372573 2312054.4757933965884149)", - "surface": 20360000, - "canton": null, - "numero_insee": "45270" - } - }, - { - "pk": 24256, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-BRISSON-SUR-LOIRE", - "center": "POINT (625444.2385135232470930 2292565.0574223864823580)", - "surface": 22070000, - "canton": null, - "numero_insee": "45271" - } - }, - { - "pk": 17627, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-CYR-EN-VAL", - "center": "POINT (571733.4005187016446143 2312730.3143444927409291)", - "surface": 44370000, - "canton": null, - "numero_insee": "45272" - } - }, - { - "pk": 33115, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-DENIS-DE-L'HOTEL", - "center": "POINT (586279.8580137287499383 2320457.9970307745970786)", - "surface": 25390000, - "canton": null, - "numero_insee": "45273" - } - }, - { - "pk": 36821, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-DENIS-EN-VAL", - "center": "POINT (572771.3349097797181457 2320244.7539626057259738)", - "surface": 17330000, - "canton": null, - "numero_insee": "45274" - } - }, - { - "pk": 17846, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-FIRMIN-DES-BOIS", - "center": "POINT (642741.4241173859918490 2330139.5416295933537185)", - "surface": 19020000, - "canton": null, - "numero_insee": "45275" - } - }, - { - "pk": 10345, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-FIRMIN-SUR-LOIRE", - "center": "POINT (627170.7159836905775592 2289577.2234729127958417)", - "surface": 25070000, - "canton": null, - "numero_insee": "45276" - } - }, - { - "pk": 33520, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-FLORENT", - "center": "POINT (608682.7016896657878533 2298328.7676976900547743)", - "surface": 37560000, - "canton": null, - "numero_insee": "45277" - } - }, - { - "pk": 24993, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINTE-GENEVIEVE-DES-BOIS", - "center": "POINT (634182.9176145284436643 2312554.0901258364319801)", - "surface": 40870000, - "canton": null, - "numero_insee": "45278" - } - }, - { - "pk": 35821, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-GERMAIN-DES-PRES", - "center": "POINT (638241.7117026320192963 2329701.3276237994432449)", - "surface": 26390000, - "canton": null, - "numero_insee": "45279" - } - }, - { - "pk": 22517, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-GONDON", - "center": "POINT (615184.7958454055478796 2298683.6380659593269229)", - "surface": 24120000, - "canton": null, - "numero_insee": "45280" - } - }, - { - "pk": 22632, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-HILAIRE-LES-ANDRESIS", - "center": "POINT (650567.5113532046088949 2339612.5925771105103195)", - "surface": 25720000, - "canton": null, - "numero_insee": "45281" - } - }, - { - "pk": 37132, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-HILAIRE-SAINT-MESMIN", - "center": "POINT (562291.6712132239481434 2316854.5350204608403146)", - "surface": 14100000, - "canton": null, - "numero_insee": "45282" - } - }, - { - "pk": 26765, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-HILAIRE-SUR-PUISEAUX", - "center": "POINT (626988.6955570917343721 2323101.6522666020318866)", - "surface": 11380000, - "canton": null, - "numero_insee": "45283" - } - }, - { - "pk": 31733, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-JEAN-DE-BRAYE", - "center": "POINT (572737.8233002764172852 2324247.5221507940441370)", - "surface": 13710000, - "canton": null, - "numero_insee": "45284" - } - }, - { - "pk": 34489, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-JEAN-DE-LA-RUELLE", - "center": "POINT (565136.7612587828189135 2323683.5276516019366682)", - "surface": 6090000, - "canton": null, - "numero_insee": "45285" - } - }, - { - "pk": 34035, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-JEAN-LE-BLANC", - "center": "POINT (569767.5789207771886140 2320419.7623978340998292)", - "surface": 7640000, - "canton": null, - "numero_insee": "45286" - } - }, - { - "pk": 6641, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-LOUP-DE-GONOIS", - "center": "POINT (643854.5357130881166086 2340556.7466920213773847)", - "surface": 6190000, - "canton": null, - "numero_insee": "45287" - } - }, - { - "pk": 27196, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-LOUP-DES-VIGNES", - "center": "POINT (606748.7368611221900210 2337942.8387717180885375)", - "surface": 9280000, - "canton": null, - "numero_insee": "45288" - } - }, - { - "pk": 31270, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-LYE-LA-FORET", - "center": "POINT (572828.2108460434246808 2337358.1754515189677477)", - "surface": 27280000, - "canton": null, - "numero_insee": "45289" - } - }, - { - "pk": 30197, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-MARTIN-D'ABBAT", - "center": "POINT (597691.1194354512263089 2320153.4000855796039104)", - "surface": 38940000, - "canton": null, - "numero_insee": "45290" - } - }, - { - "pk": 32823, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-MARTIN-SUR-OCRE", - "center": "POINT (623129.1261814997997135 2294146.8376912772655487)", - "surface": 15740000, - "canton": null, - "numero_insee": "45291" - } - }, - { - "pk": 16696, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-MAURICE-SUR-AVEYRON", - "center": "POINT (646659.5999007403152063 2316462.1292714197188616)", - "surface": 54600000, - "canton": null, - "numero_insee": "45292" - } - }, - { - "pk": 33895, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-MAURICE-SUR-FESSARD", - "center": "POINT (620805.3737924689194188 2332456.7627617027610540)", - "surface": 15390000, - "canton": null, - "numero_insee": "45293" - } - }, - { - "pk": 8642, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-MICHEL", - "center": "POINT (602624.1081246786052361 2340510.1509219575673342)", - "surface": 5080000, - "canton": null, - "numero_insee": "45294" - } - }, - { - "pk": 31595, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-PERAVY-LA-COLOMBE", - "center": "POINT (551941.5841059644008055 2333881.0015370273031294)", - "surface": 19270000, - "canton": null, - "numero_insee": "45296" - } - }, - { - "pk": 33636, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-PERE-SUR-LOIRE", - "center": "POINT (602688.6129799983464181 2308986.7422616155818105)", - "surface": 10700000, - "canton": null, - "numero_insee": "45297" - } - }, - { - "pk": 28665, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-PRYVE-SAINT-MESMIN", - "center": "POINT (563965.2305396993178874 2320171.0585025213658810)", - "surface": 8950000, - "canton": null, - "numero_insee": "45298" - } - }, - { - "pk": 27252, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SAINT-SIGISMOND", - "center": "POINT (549858.5409240692388266 2331661.9393531652167439)", - "surface": 14580000, - "canton": null, - "numero_insee": "45299" - } - }, - { - "pk": 19010, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SANDILLON", - "center": "POINT (577016.9923941708402708 2315176.4009546251036227)", - "surface": 42860000, - "canton": null, - "numero_insee": "45300" - } - }, - { - "pk": 9351, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SANTEAU", - "center": "POINT (586183.6381931393407285 2343874.8439294523559511)", - "surface": 8670000, - "canton": null, - "numero_insee": "45301" - } - }, - { - "pk": 26712, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SARAN", - "center": "POINT (565702.0120414425618947 2327891.4462008699774742)", - "surface": 20290000, - "canton": null, - "numero_insee": "45302" - } - }, - { - "pk": 17953, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SCEAUX-DU-GATINAIS", - "center": "POINT (618882.9806603107135743 2346851.3787980102933943)", - "surface": 31630000, - "canton": null, - "numero_insee": "45303" - } - }, - { - "pk": 13462, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SEICHEBRIERES", - "center": "POINT (595295.4937391362618655 2331341.8055786681361496)", - "surface": 14820000, - "canton": null, - "numero_insee": "45305" - } - }, - { - "pk": 14867, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA SELLE-EN-HERMOY", - "center": "POINT (641206.6695554463658482 2334129.6284769605845213)", - "surface": 19590000, - "canton": null, - "numero_insee": "45306" - } - }, - { - "pk": 34251, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "LA SELLE-SUR-LE-BIED", - "center": "POINT (641039.9924689033068717 2342034.1503554959781468)", - "surface": 23930000, - "canton": null, - "numero_insee": "45307" - } - }, - { - "pk": 10145, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SEMOY", - "center": "POINT (572018.0721989882877097 2326543.2438819394446909)", - "surface": 7740000, - "canton": null, - "numero_insee": "45308" - } - }, - { - "pk": 36830, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SERMAISES", - "center": "POINT (590096.7619636674644426 2366524.2917465101927519)", - "surface": 21210000, - "canton": null, - "numero_insee": "45310" - } - }, - { - "pk": 34393, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SIGLOY", - "center": "POINT (591425.3564723955933005 2315497.3128523635677993)", - "surface": 10710000, - "canton": null, - "numero_insee": "45311" - } - }, - { - "pk": 34488, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SOUGY", - "center": "POINT (559996.9107071657199413 2339952.8385495352558792)", - "surface": 28040000, - "canton": null, - "numero_insee": "45313" - } - }, - { - "pk": 34013, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SULLY-LA-CHAPELLE", - "center": "POINT (587487.6361623738193884 2331576.5498503693379462)", - "surface": 26290000, - "canton": null, - "numero_insee": "45314" - } - }, - { - "pk": 13225, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SULLY-SUR-LOIRE", - "center": "POINT (601413.7417597925523296 2305873.6404529493302107)", - "surface": 43690000, - "canton": null, - "numero_insee": "45315" - } - }, - { - "pk": 30465, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "SURY-AUX-BOIS", - "center": "POINT (601726.7570648498367518 2328193.3583472971804440)", - "surface": 37850000, - "canton": null, - "numero_insee": "45316" - } - }, - { - "pk": 16558, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TAVERS", - "center": "POINT (544257.6065003748517483 2307296.5865272716619074)", - "surface": 21910000, - "canton": null, - "numero_insee": "45317" - } - }, - { - "pk": 34708, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "THIGNONVILLE", - "center": "POINT (588019.7117863149615005 2363604.7635262385010719)", - "surface": 9240000, - "canton": null, - "numero_insee": "45320" - } - }, - { - "pk": 28683, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "THIMORY", - "center": "POINT (619265.7048390711424872 2325138.2873120708391070)", - "surface": 12470000, - "canton": null, - "numero_insee": "45321" - } - }, - { - "pk": 7694, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "THORAILLES", - "center": "POINT (641687.6170587843516842 2336435.4114165175706148)", - "surface": 3460000, - "canton": null, - "numero_insee": "45322" - } - }, - { - "pk": 19519, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "THOU", - "center": "POINT (642105.0114991134032607 2286900.7688084105029702)", - "surface": 15090000, - "canton": null, - "numero_insee": "45323" - } - }, - { - "pk": 3577, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TIGY", - "center": "POINT (588578.7113666420336813 2308868.3589726323261857)", - "surface": 47020000, - "canton": null, - "numero_insee": "45324" - } - }, - { - "pk": 8719, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TIVERNON", - "center": "POINT (570311.8304229059722275 2351047.3159635039046407)", - "surface": 12640000, - "canton": null, - "numero_insee": "45325" - } - }, - { - "pk": 30814, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TOURNOISIS", - "center": "POINT (546835.5925327305449173 2334138.5735981059260666)", - "surface": 15220000, - "canton": null, - "numero_insee": "45326" - } - }, - { - "pk": 16336, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TRAINOU", - "center": "POINT (582601.0528056699549779 2329534.0804806663654745)", - "surface": 33450000, - "canton": null, - "numero_insee": "45327" - } - }, - { - "pk": 36903, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TREILLES-EN-GATINAIS", - "center": "POINT (624426.2442457495490089 2342194.4994458518922329)", - "surface": 14010000, - "canton": null, - "numero_insee": "45328" - } - }, - { - "pk": 3585, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TRIGUERES", - "center": "POINT (649174.4989304098999128 2326791.1932712984271348)", - "surface": 35890000, - "canton": null, - "numero_insee": "45329" - } - }, - { - "pk": 32606, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "TRINAY", - "center": "POINT (571381.1871483337599784 2342850.1764679523184896)", - "surface": 17410000, - "canton": null, - "numero_insee": "45330" - } - }, - { - "pk": 20790, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VANNES-SUR-COSSON", - "center": "POINT (590337.8090275314170867 2301977.7590451994910836)", - "surface": 35530000, - "canton": null, - "numero_insee": "45331" - } - }, - { - "pk": 19743, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VARENNES-CHANGY", - "center": "POINT (624428.9914365818258375 2318076.2969933361746371)", - "surface": 29740000, - "canton": null, - "numero_insee": "45332" - } - }, - { - "pk": 11852, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VENNECY", - "center": "POINT (578707.5972717526601627 2328400.6274006022140384)", - "surface": 10750000, - "canton": null, - "numero_insee": "45333" - } - }, - { - "pk": 38059, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VIEILLES-MAISONS-SUR-JOUDRY", - "center": "POINT (607496.2332396479323506 2320435.8719137427397072)", - "surface": 16350000, - "canton": null, - "numero_insee": "45334" - } - }, - { - "pk": 37044, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VIENNE-EN-VAL", - "center": "POINT (584072.1958563736407086 2309230.8907885942608118)", - "surface": 35720000, - "canton": null, - "numero_insee": "45335" - } - }, - { - "pk": 23857, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VIGLAIN", - "center": "POINT (596529.6015427180100232 2303530.8644324187189341)", - "surface": 39860000, - "canton": null, - "numero_insee": "45336" - } - }, - { - "pk": 36273, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLAMBLAIN", - "center": "POINT (541423.5507556878728792 2335094.1380108576267958)", - "surface": 26610000, - "canton": null, - "numero_insee": "45337" - } - }, - { - "pk": 37835, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLEMANDEUR", - "center": "POINT (627518.3745136860525236 2331512.4808378750458360)", - "surface": 11340000, - "canton": null, - "numero_insee": "45338" - } - }, - { - "pk": 11472, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLEMOUTIERS", - "center": "POINT (616504.1166368469130248 2332220.4463152610696852)", - "surface": 16110000, - "canton": null, - "numero_insee": "45339" - } - }, - { - "pk": 16682, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLEMURLIN", - "center": "POINT (600379.3245287304744124 2297958.8093904568813741)", - "surface": 48910000, - "canton": null, - "numero_insee": "45340" - } - }, - { - "pk": 3726, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLENEUVE-SUR-CONIE", - "center": "POINT (548697.6037848292617127 2338857.6554698222316802)", - "surface": 18050000, - "canton": null, - "numero_insee": "45341" - } - }, - { - "pk": 11259, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLEREAU", - "center": "POINT (574294.0395449961069971 2341573.5926549932919443)", - "surface": 9010000, - "canton": null, - "numero_insee": "45342" - } - }, - { - "pk": 9026, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLEVOQUES", - "center": "POINT (621570.5727137916255742 2336666.3597016320563853)", - "surface": 5020000, - "canton": null, - "numero_insee": "45343" - } - }, - { - "pk": 11864, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VILLORCEAU", - "center": "POINT (544423.4882453383179381 2311401.1381129911169410)", - "surface": 9530000, - "canton": null, - "numero_insee": "45344" - } - }, - { - "pk": 32898, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VIMORY", - "center": "POINT (625448.9304983805632219 2327692.1925377375446260)", - "surface": 26310000, - "canton": null, - "numero_insee": "45345" - } - }, - { - "pk": 5872, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VITRY-AUX-LOGES", - "center": "POINT (593541.2685683468589559 2325722.8482564915902913)", - "surface": 43940000, - "canton": null, - "numero_insee": "45346" - } - }, - { - "pk": 25857, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "VRIGNY", - "center": "POINT (593307.7352223758352920 2341632.8661846742033958)", - "surface": 16050000, - "canton": null, - "numero_insee": "45347" - } - }, - { - "pk": 32248, - "model": "ishtar_common.town", - "fields": { - "departement": 46, - "name": "YEVRE-LA-VILLE", - "center": "POINT (598947.7643204078776762 2349285.8426990499719977)", - "surface": 26710000, - "canton": null, - "numero_insee": "45348" - } - }, - { - "pk": 16862, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ALBAS", - "center": "POINT (512684.0669051368022338 1940598.4183698319830000)", - "surface": 21720000, - "canton": null, - "numero_insee": "46001" - } - }, - { - "pk": 14113, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ALBIAC", - "center": "POINT (558451.3346128440462053 1974214.9423599475994706)", - "surface": 3790000, - "canton": null, - "numero_insee": "46002" - } - }, - { - "pk": 3008, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ALVIGNAC", - "center": "POINT (548479.1250609993003309 1981639.2668160048779100)", - "surface": 13000000, - "canton": null, - "numero_insee": "46003" - } - }, - { - "pk": 26570, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ANGLARS-JUILLAC", - "center": "POINT (510158.2681833223905414 1943380.3261416980531067)", - "surface": 5510000, - "canton": null, - "numero_insee": "46005" - } - }, - { - "pk": 4845, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ANGLARS-NOZAC", - "center": "POINT (526502.4121293997159228 1976150.3853460515383631)", - "surface": 9740000, - "canton": null, - "numero_insee": "46006" - } - }, - { - "pk": 20798, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ARCAMBAL", - "center": "POINT (537118.9114448401378468 1939500.8039772254414856)", - "surface": 23460000, - "canton": null, - "numero_insee": "46007" - } - }, - { - "pk": 5773, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ASSIER", - "center": "POINT (563245.4451838412787765 1963544.0069007603451610)", - "surface": 16620000, - "canton": null, - "numero_insee": "46009" - } - }, - { - "pk": 22024, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "AUJOLS", - "center": "POINT (536645.9930160252843052 1936193.3762613465078175)", - "surface": 16310000, - "canton": null, - "numero_insee": "46010" - } - }, - { - "pk": 15910, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "AYNAC", - "center": "POINT (561936.2638728579040617 1976446.3509094314649701)", - "surface": 21600000, - "canton": null, - "numero_insee": "46012" - } - }, - { - "pk": 22296, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BACH", - "center": "POINT (547631.1762595837935805 1927375.6932510519400239)", - "surface": 21060000, - "canton": null, - "numero_insee": "46013" - } - }, - { - "pk": 4083, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BAGAT-EN-QUERCY", - "center": "POINT (511553.7523749961983413 1932080.0296449360903352)", - "surface": 16660000, - "canton": null, - "numero_insee": "46014" - } - }, - { - "pk": 26068, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BAGNAC-SUR-CELE", - "center": "POINT (585078.2354369073873386 1962325.4029669174924493)", - "surface": 22230000, - "canton": null, - "numero_insee": "46015" - } - }, - { - "pk": 11185, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BALADOU", - "center": "POINT (538184.1798550313105807 1991763.6723242849111557)", - "surface": 15540000, - "canton": null, - "numero_insee": "46016" - } - }, - { - "pk": 36817, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BANNES", - "center": "POINT (566817.4910652511753142 1979290.0646162033081055)", - "surface": 10080000, - "canton": null, - "numero_insee": "46017" - } - }, - { - "pk": 17798, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LE BASTIT", - "center": "POINT (547387.5367813027696684 1968516.6923138750717044)", - "surface": 27940000, - "canton": null, - "numero_insee": "46018" - } - }, - { - "pk": 33687, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BEAUMAT", - "center": "POINT (534933.9876058290246874 1961405.4579239424783736)", - "surface": 8140000, - "canton": null, - "numero_insee": "46019" - } - }, - { - "pk": 17189, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BEAUREGARD", - "center": "POINT (555533.9932989319786429 1928042.3854800176341087)", - "surface": 14960000, - "canton": null, - "numero_insee": "46020" - } - }, - { - "pk": 19817, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BEDUER", - "center": "POINT (567343.9773954071570188 1952266.5559292456600815)", - "surface": 24950000, - "canton": null, - "numero_insee": "46021" - } - }, - { - "pk": 22768, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BELFORT-DU-QUERCY", - "center": "POINT (537090.8475915300659835 1918878.7146993556525558)", - "surface": 36020000, - "canton": null, - "numero_insee": "46023" - } - }, - { - "pk": 28813, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BELMONT-BRETENOUX", - "center": "POINT (564045.4013321123784408 1987575.3396880603395402)", - "surface": 6640000, - "canton": null, - "numero_insee": "46024" - } - }, - { - "pk": 18536, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BELMONTET", - "center": "POINT (505456.8823409603792243 1930928.0974550014361739)", - "surface": 12270000, - "canton": null, - "numero_insee": "46025" - } - }, - { - "pk": 9841, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BELMONT-SAINTE-FOI", - "center": "POINT (543578.9448098399443552 1921135.2405780262779444)", - "surface": 8940000, - "canton": null, - "numero_insee": "46026" - } - }, - { - "pk": 22456, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BERGANTY", - "center": "POINT (543536.0745863713091239 1938253.0177076316904277)", - "surface": 7040000, - "canton": null, - "numero_insee": "46027" - } - }, - { - "pk": 4907, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BETAILLE", - "center": "POINT (552582.7239485855679959 1993685.7735336427576840)", - "surface": 13930000, - "canton": null, - "numero_insee": "46028" - } - }, - { - "pk": 11553, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BIARS-SUR-CERE", - "center": "POINT (562106.7564322545658797 1991963.5908508745487779)", - "surface": 3620000, - "canton": null, - "numero_insee": "46029" - } - }, - { - "pk": 17043, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BIO", - "center": "POINT (556540.3083747996715829 1975300.0914392741397023)", - "surface": 10730000, - "canton": null, - "numero_insee": "46030" - } - }, - { - "pk": 33002, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BLARS", - "center": "POINT (551522.7335609077708796 1952834.9570695192087442)", - "surface": 25790000, - "canton": null, - "numero_insee": "46031" - } - }, - { - "pk": 18372, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BOISSIERES", - "center": "POINT (526119.7033903090050444 1950020.1555147531908005)", - "surface": 13100000, - "canton": null, - "numero_insee": "46032" - } - }, - { - "pk": 20233, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LE BOURG", - "center": "POINT (566117.2501126478891820 1967271.8641278210561723)", - "surface": 13320000, - "canton": null, - "numero_insee": "46034" - } - }, - { - "pk": 28087, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BOUSSAC", - "center": "POINT (566820.8709227823419496 1954964.9935089929495007)", - "surface": 7890000, - "canton": null, - "numero_insee": "46035" - } - }, - { - "pk": 8428, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LE BOUYSSOU", - "center": "POINT (569031.7725074952468276 1965894.8119665780104697)", - "surface": 5560000, - "canton": null, - "numero_insee": "46036" - } - }, - { - "pk": 36943, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BOUZIES", - "center": "POINT (544203.3191817265469581 1942262.8020025060977787)", - "surface": 8250000, - "canton": null, - "numero_insee": "46037" - } - }, - { - "pk": 25845, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BRETENOUX", - "center": "POINT (560918.1823430389631540 1990452.1254710264038295)", - "surface": 5720000, - "canton": null, - "numero_insee": "46038" - } - }, - { - "pk": 3408, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BRENGUES", - "center": "POINT (559929.2359220751095563 1953105.4550036280415952)", - "surface": 20760000, - "canton": null, - "numero_insee": "46039" - } - }, - { - "pk": 23693, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CABRERETS", - "center": "POINT (542967.0288448657374829 1946456.8848872629459947)", - "surface": 43860000, - "canton": null, - "numero_insee": "46040" - } - }, - { - "pk": 33001, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CADRIEU", - "center": "POINT (563306.1479051175992936 1944324.4958635182119906)", - "surface": 5240000, - "canton": null, - "numero_insee": "46041" - } - }, - { - "pk": 15623, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAHORS", - "center": "POINT (528612.2203823257004842 1939229.6087364442646503)", - "surface": 64830000, - "canton": null, - "numero_insee": "46042" - } - }, - { - "pk": 4917, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAHUS", - "center": "POINT (566578.3357692122226581 1995904.9572033341974020)", - "surface": 10230000, - "canton": null, - "numero_insee": "46043" - } - }, - { - "pk": 28267, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAILLAC", - "center": "POINT (521164.8872428992181085 1943972.5567155801691115)", - "surface": 7560000, - "canton": null, - "numero_insee": "46044" - } - }, - { - "pk": 11686, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAJARC", - "center": "POINT (560307.3953360103769228 1943798.8838228650856763)", - "surface": 25740000, - "canton": null, - "numero_insee": "46045" - } - }, - { - "pk": 24444, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CALAMANE", - "center": "POINT (526245.6789463607128710 1946917.9611619575880468)", - "surface": 7600000, - "canton": null, - "numero_insee": "46046" - } - }, - { - "pk": 4040, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CALES", - "center": "POINT (537302.7159482622519135 1977441.7285608742386103)", - "surface": 33900000, - "canton": null, - "numero_insee": "46047" - } - }, - { - "pk": 21917, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CALVIAC", - "center": "POINT (578733.3328364474000409 1990801.4684004627633840)", - "surface": 26610000, - "canton": null, - "numero_insee": "46048" - } - }, - { - "pk": 17645, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CALVIGNAC", - "center": "POINT (556245.2266325743403286 1938759.6509211179800332)", - "surface": 17760000, - "canton": null, - "numero_insee": "46049" - } - }, - { - "pk": 20675, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAMBAYRAC", - "center": "POINT (516317.6321211926406249 1937024.8956129923462868)", - "surface": 7320000, - "canton": null, - "numero_insee": "46050" - } - }, - { - "pk": 32332, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAMBES", - "center": "POINT (567397.1577039510011673 1957872.8352256622165442)", - "surface": 6630000, - "canton": null, - "numero_insee": "46051" - } - }, - { - "pk": 35343, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAMBOULIT", - "center": "POINT (569419.2076659286394715 1955487.2635582720395178)", - "surface": 5230000, - "canton": null, - "numero_insee": "46052" - } - }, - { - "pk": 11254, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAMBURAT", - "center": "POINT (573081.7286595802288502 1960423.0233384799212217)", - "surface": 8040000, - "canton": null, - "numero_insee": "46053" - } - }, - { - "pk": 21006, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CANIAC-DU-CAUSSE", - "center": "POINT (545965.5332469511777163 1958994.9758324623107910)", - "surface": 35080000, - "canton": null, - "numero_insee": "46054" - } - }, - { - "pk": 19434, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAPDENAC", - "center": "POINT (578543.1414354823064059 1953761.7984255652409047)", - "surface": 11000000, - "canton": null, - "numero_insee": "46055" - } - }, - { - "pk": 34645, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CARAYAC", - "center": "POINT (567071.3321104095084593 1948960.8250854162033647)", - "surface": 6950000, - "canton": null, - "numero_insee": "46056" - } - }, - { - "pk": 18638, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CARDAILLAC", - "center": "POINT (574347.7775755253387615 1964637.9784086877480149)", - "surface": 18220000, - "canton": null, - "numero_insee": "46057" - } - }, - { - "pk": 31268, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CARENNAC", - "center": "POINT (551515.9861564682796597 1989572.6970388344489038)", - "surface": 19060000, - "canton": null, - "numero_insee": "46058" - } - }, - { - "pk": 22078, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CARLUCET", - "center": "POINT (542367.6798269541468471 1970276.6168386025819927)", - "surface": 33940000, - "canton": null, - "numero_insee": "46059" - } - }, - { - "pk": 20427, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CARNAC-ROUFFIAC", - "center": "POINT (511123.3439248265931383 1935680.2521503716707230)", - "surface": 13470000, - "canton": null, - "numero_insee": "46060" - } - }, - { - "pk": 33426, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CASSAGNES", - "center": "POINT (503879.7025274209445342 1952037.1668779053725302)", - "surface": 11570000, - "canton": null, - "numero_insee": "46061" - } - }, - { - "pk": 33427, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CASTELFRANC", - "center": "POINT (511342.7718892234843224 1945392.2906208450440317)", - "surface": 5460000, - "canton": null, - "numero_insee": "46062" - } - }, - { - "pk": 20163, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CASTELNAU-MONTRATIER", - "center": "POINT (520978.1030601008096710 1918343.8757444922812283)", - "surface": 73050000, - "canton": null, - "numero_insee": "46063" - } - }, - { - "pk": 4411, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CATUS", - "center": "POINT (520803.6836423933273181 1951277.1918194037862122)", - "surface": 21310000, - "canton": null, - "numero_insee": "46064" - } - }, - { - "pk": 25892, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAVAGNAC", - "center": "POINT (544906.9958799809683114 2001829.9199751380365342)", - "surface": 10330000, - "canton": null, - "numero_insee": "46065" - } - }, - { - "pk": 35212, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAZALS", - "center": "POINT (511412.0807424036320299 1961109.2475350890308619)", - "surface": 10490000, - "canton": null, - "numero_insee": "46066" - } - }, - { - "pk": 15645, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CAZILLAC", - "center": "POINT (541628.1418862532591447 1998899.6120069951284677)", - "surface": 18870000, - "canton": null, - "numero_insee": "46067" - } - }, - { - "pk": 11706, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CEZAC", - "center": "POINT (520497.6013660634635016 1927950.0984691814519465)", - "surface": 17560000, - "canton": null, - "numero_insee": "46069" - } - }, - { - "pk": 5719, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CIEURAC", - "center": "POINT (533091.7260194383561611 1930257.4700811174698174)", - "surface": 18640000, - "canton": null, - "numero_insee": "46070" - } - }, - { - "pk": 15274, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "COMIAC", - "center": "POINT (572999.4475830764276907 1994156.8893760151695460)", - "surface": 29290000, - "canton": null, - "numero_insee": "46071" - } - }, - { - "pk": 16034, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CONCORES", - "center": "POINT (524907.6192613808671013 1963323.8892349433153868)", - "surface": 19120000, - "canton": null, - "numero_insee": "46072" - } - }, - { - "pk": 17471, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CONCOTS", - "center": "POINT (544680.6372161201434210 1933057.0861010309308767)", - "surface": 26090000, - "canton": null, - "numero_insee": "46073" - } - }, - { - "pk": 35956, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CONDAT", - "center": "POINT (547431.9181739244377241 1999148.2908887914381921)", - "surface": 6170000, - "canton": null, - "numero_insee": "46074" - } - }, - { - "pk": 15705, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CORN", - "center": "POINT (564408.4876743960194290 1956146.0550378491170704)", - "surface": 15350000, - "canton": null, - "numero_insee": "46075" - } - }, - { - "pk": 16482, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CORNAC", - "center": "POINT (566835.4887772413203493 1989100.2136570727452636)", - "surface": 13520000, - "canton": null, - "numero_insee": "46076" - } - }, - { - "pk": 17901, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "COURS", - "center": "POINT (535852.5627307589165866 1947298.4271057099103928)", - "surface": 17200000, - "canton": null, - "numero_insee": "46077" - } - }, - { - "pk": 4722, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "COUZOU", - "center": "POINT (544134.2945587213616818 1974495.6933584518264979)", - "surface": 21600000, - "canton": null, - "numero_insee": "46078" - } - }, - { - "pk": 37200, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CRAS", - "center": "POINT (536723.3630685405805707 1950909.4621672593057156)", - "surface": 10330000, - "canton": null, - "numero_insee": "46079" - } - }, - { - "pk": 27847, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CRAYSSAC", - "center": "POINT (519841.0862574955681339 1946664.3548900147434324)", - "surface": 15080000, - "canton": null, - "numero_insee": "46080" - } - }, - { - "pk": 22911, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CRESSENSAC", - "center": "POINT (535793.4533498855307698 2002354.4302805853076279)", - "surface": 23050000, - "canton": null, - "numero_insee": "46083" - } - }, - { - "pk": 22389, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CREYSSE", - "center": "POINT (541311.3477403272408992 1988886.8360790270380676)", - "surface": 9530000, - "canton": null, - "numero_insee": "46084" - } - }, - { - "pk": 8062, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CUZAC", - "center": "POINT (584654.1079780296422541 1953212.3848744314163923)", - "surface": 4990000, - "canton": null, - "numero_insee": "46085" - } - }, - { - "pk": 18978, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "CUZANCE", - "center": "POINT (536247.2958916643401608 1995951.7596016728784889)", - "surface": 29480000, - "canton": null, - "numero_insee": "46086" - } - }, - { - "pk": 23362, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "DEGAGNAC", - "center": "POINT (519900.2853397117578425 1963582.4558000238612294)", - "surface": 37840000, - "canton": null, - "numero_insee": "46087" - } - }, - { - "pk": 37424, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "DOUELLE", - "center": "POINT (521785.5024299343931489 1941575.2079109712503850)", - "surface": 9060000, - "canton": null, - "numero_insee": "46088" - } - }, - { - "pk": 16750, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "DURAVEL", - "center": "POINT (500218.5706939083174802 1946901.3645654222927988)", - "surface": 15040000, - "canton": null, - "numero_insee": "46089" - } - }, - { - "pk": 13293, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "DURBANS", - "center": "POINT (554829.8029425374697894 1964374.5529410820454359)", - "surface": 27940000, - "canton": null, - "numero_insee": "46090" - } - }, - { - "pk": 20472, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ESCAMPS", - "center": "POINT (542708.7572245153132826 1929436.8019646601751447)", - "surface": 12240000, - "canton": null, - "numero_insee": "46091" - } - }, - { - "pk": 29822, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ESCLAUZELS", - "center": "POINT (541143.7426731901941821 1937031.7724151578731835)", - "surface": 17900000, - "canton": null, - "numero_insee": "46092" - } - }, - { - "pk": 28317, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ESPAGNAC-SAINTE-EULALIE", - "center": "POINT (562218.0755010237917304 1954726.2699565982911736)", - "surface": 9810000, - "canton": null, - "numero_insee": "46093" - } - }, - { - "pk": 4749, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ESPEDAILLAC", - "center": "POINT (555374.6413620078237727 1959073.6126690944656730)", - "surface": 35160000, - "canton": null, - "numero_insee": "46094" - } - }, - { - "pk": 31516, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ESPEYROUX", - "center": "POINT (567363.2077540430473164 1973889.0922211899887770)", - "surface": 7730000, - "canton": null, - "numero_insee": "46096" - } - }, - { - "pk": 6082, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ESTAL", - "center": "POINT (566919.6665856973268092 1991002.8483732007443905)", - "surface": 5990000, - "canton": null, - "numero_insee": "46097" - } - }, - { - "pk": 25320, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FAJOLES", - "center": "POINT (524477.9647055409150198 1978836.2722718173172325)", - "surface": 8880000, - "canton": null, - "numero_insee": "46098" - } - }, - { - "pk": 3999, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FARGUES", - "center": "POINT (508032.7865608679130673 1934152.9304052670486271)", - "surface": 14840000, - "canton": null, - "numero_insee": "46099" - } - }, - { - "pk": 36530, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FAYCELLES", - "center": "POINT (572554.9079324530903250 1951609.4498862191103399)", - "surface": 13940000, - "canton": null, - "numero_insee": "46100" - } - }, - { - "pk": 3126, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FELZINS", - "center": "POINT (585126.9036448870319873 1956519.7868493313435465)", - "surface": 15050000, - "canton": null, - "numero_insee": "46101" - } - }, - { - "pk": 20718, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FIGEAC", - "center": "POINT (575220.6492510299431160 1956036.3627506659831852)", - "surface": 35330000, - "canton": null, - "numero_insee": "46102" - } - }, - { - "pk": 16748, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FLAUGNAC", - "center": "POINT (525857.1211484990781173 1921487.8661698873620480)", - "surface": 31230000, - "canton": null, - "numero_insee": "46103" - } - }, - { - "pk": 35345, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FLAUJAC-GARE", - "center": "POINT (555204.2453495952067897 1967480.8882707434240729)", - "surface": 8120000, - "canton": null, - "numero_insee": "46104" - } - }, - { - "pk": 21017, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FLAUJAC-POUJOLS", - "center": "POINT (533155.0714405790204182 1934662.6562134104315192)", - "surface": 12620000, - "canton": null, - "numero_insee": "46105" - } - }, - { - "pk": 9002, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FLOIRAC", - "center": "POINT (547411.2698509494075552 1989638.4979776768013835)", - "surface": 19000000, - "canton": null, - "numero_insee": "46106" - } - }, - { - "pk": 20970, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FLORESSAS", - "center": "POINT (502675.9003440546221100 1940314.8798116440884769)", - "surface": 13830000, - "canton": null, - "numero_insee": "46107" - } - }, - { - "pk": 16009, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FONS", - "center": "POINT (569564.0965066179633141 1962095.3343475183937699)", - "surface": 15100000, - "canton": null, - "numero_insee": "46108" - } - }, - { - "pk": 13405, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FONTANES", - "center": "POINT (532433.6310239516897127 1925146.5621900069527328)", - "surface": 16560000, - "canton": null, - "numero_insee": "46109" - } - }, - { - "pk": 27532, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FONTANES-DU-CAUSSE", - "center": "POINT (546835.4631186896003783 1962706.0824707576539367)", - "surface": 14970000, - "canton": null, - "numero_insee": "46110" - } - }, - { - "pk": 37473, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FOURMAGNAC", - "center": "POINT (571760.3558408401440829 1962814.4474833048880100)", - "surface": 3730000, - "canton": null, - "numero_insee": "46111" - } - }, - { - "pk": 16217, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FRANCOULES", - "center": "POINT (532419.1697401701239869 1950873.5406320495530963)", - "surface": 13640000, - "canton": null, - "numero_insee": "46112" - } - }, - { - "pk": 18490, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FRAYSSINET", - "center": "POINT (532433.2394111071480438 1961184.3818385237827897)", - "surface": 16870000, - "canton": null, - "numero_insee": "46113" - } - }, - { - "pk": 21404, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FRAYSSINET-LE-GELAT", - "center": "POINT (505155.9735589583287947 1955050.9192825374193490)", - "surface": 23160000, - "canton": null, - "numero_insee": "46114" - } - }, - { - "pk": 5822, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FRAYSSINHES", - "center": "POINT (568664.8417484213132411 1985812.1665016575716436)", - "surface": 11830000, - "canton": null, - "numero_insee": "46115" - } - }, - { - "pk": 12326, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "FRONTENAC", - "center": "POINT (570872.5272926611360162 1949292.9590938151814044)", - "surface": 2820000, - "canton": null, - "numero_insee": "46116" - } - }, - { - "pk": 15272, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GAGNAC-SUR-CERE", - "center": "POINT (564298.7836960122222081 1993183.1474659559316933)", - "surface": 12850000, - "canton": null, - "numero_insee": "46117" - } - }, - { - "pk": 17586, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GIGNAC", - "center": "POINT (531015.6767313784221187 1999111.3371056527830660)", - "surface": 40960000, - "canton": null, - "numero_insee": "46118" - } - }, - { - "pk": 36876, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GIGOUZAC", - "center": "POINT (528088.2590697199339047 1954040.7501159396488219)", - "surface": 9890000, - "canton": null, - "numero_insee": "46119" - } - }, - { - "pk": 5051, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GINDOU", - "center": "POINT (514833.7179400426102802 1958935.4648136738687754)", - "surface": 15640000, - "canton": null, - "numero_insee": "46120" - } - }, - { - "pk": 9648, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GINOUILLAC", - "center": "POINT (536565.4491659614723176 1969827.7608152446337044)", - "surface": 9460000, - "canton": null, - "numero_insee": "46121" - } - }, - { - "pk": 35221, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GINTRAC", - "center": "POINT (553839.0815476684365422 1987089.5723994728177786)", - "surface": 6720000, - "canton": null, - "numero_insee": "46122" - } - }, - { - "pk": 26448, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GIRAC", - "center": "POINT (559504.3009386034682393 1991941.8217988093383610)", - "surface": 4390000, - "canton": null, - "numero_insee": "46123" - } - }, - { - "pk": 17622, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GLANES", - "center": "POINT (563316.2642754847183824 1990972.6950310119427741)", - "surface": 2720000, - "canton": null, - "numero_insee": "46124" - } - }, - { - "pk": 22237, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GORSES", - "center": "POINT (575846.1957760262303054 1976963.1997822977136821)", - "surface": 35770000, - "canton": null, - "numero_insee": "46125" - } - }, - { - "pk": 10501, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GOUJOUNAC", - "center": "POINT (509675.3538256123429164 1953286.6692607444711030)", - "surface": 10320000, - "canton": null, - "numero_insee": "46126" - } - }, - { - "pk": 21898, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GOURDON", - "center": "POINT (523944.1565354680642486 1970823.6033779149875045)", - "surface": 45640000, - "canton": null, - "numero_insee": "46127" - } - }, - { - "pk": 20981, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GRAMAT", - "center": "POINT (550847.4024309336673468 1973750.9596064651850611)", - "surface": 57100000, - "canton": null, - "numero_insee": "46128" - } - }, - { - "pk": 5956, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GREALOU", - "center": "POINT (563266.7849707108689472 1949029.0921772602014244)", - "surface": 17490000, - "canton": null, - "numero_insee": "46129" - } - }, - { - "pk": 16805, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GREZELS", - "center": "POINT (505469.4883403779822402 1941439.2895083178300411)", - "surface": 10810000, - "canton": null, - "numero_insee": "46130" - } - }, - { - "pk": 12736, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "GREZES", - "center": "POINT (559289.3033564798533916 1957804.9977013065945357)", - "surface": 11070000, - "canton": null, - "numero_insee": "46131" - } - }, - { - "pk": 20057, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ISSENDOLUS", - "center": "POINT (555775.5304677633102983 1970989.2744708568789065)", - "surface": 18990000, - "canton": null, - "numero_insee": "46132" - } - }, - { - "pk": 23635, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ISSEPTS", - "center": "POINT (566644.5389391557546332 1964072.9683313798159361)", - "surface": 9100000, - "canton": null, - "numero_insee": "46133" - } - }, - { - "pk": 35567, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LES JUNIES", - "center": "POINT (511409.5225583841092885 1949397.0370255918242037)", - "surface": 13070000, - "canton": null, - "numero_insee": "46134" - } - }, - { - "pk": 31253, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LABASTIDE-DU-HAUT-MONT", - "center": "POINT (582320.5277955183992162 1980821.3365180883556604)", - "surface": 9760000, - "canton": null, - "numero_insee": "46135" - } - }, - { - "pk": 26368, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LABASTIDE-DU-VERT", - "center": "POINT (514736.9292853577062488 1946521.7170914888847619)", - "surface": 10420000, - "canton": null, - "numero_insee": "46136" - } - }, - { - "pk": 23026, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LABASTIDE-MARNHAC", - "center": "POINT (524466.5141610117862001 1932187.6407042355276644)", - "surface": 28660000, - "canton": null, - "numero_insee": "46137" - } - }, - { - "pk": 14390, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LABASTIDE-MURAT", - "center": "POINT (539942.1675007535377517 1961046.8499469039961696)", - "surface": 27220000, - "canton": null, - "numero_insee": "46138" - } - }, - { - "pk": 36818, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LABATHUDE", - "center": "POINT (572095.3672828389098868 1970625.3116181669756770)", - "surface": 9960000, - "canton": null, - "numero_insee": "46139" - } - }, - { - "pk": 36489, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LABURGADE", - "center": "POINT (536478.3822250489611179 1932287.8540485748089850)", - "surface": 12390000, - "canton": null, - "numero_insee": "46140" - } - }, - { - "pk": 19663, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LACAM-D'OURCET", - "center": "POINT (574199.3999625302385539 1982354.9347455389797688)", - "surface": 14140000, - "canton": null, - "numero_insee": "46141" - } - }, - { - "pk": 34385, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LACAPELLE-CABANAC", - "center": "POINT (499357.6640496832551435 1942089.1625288953073323)", - "surface": 8030000, - "canton": null, - "numero_insee": "46142" - } - }, - { - "pk": 5739, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LACAPELLE-MARIVAL", - "center": "POINT (568201.6768542357021943 1969391.4772757797036320)", - "surface": 11660000, - "canton": null, - "numero_insee": "46143" - } - }, - { - "pk": 4454, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LACAVE", - "center": "POINT (538361.9858580513391644 1982455.6883020985405892)", - "surface": 21980000, - "canton": null, - "numero_insee": "46144" - } - }, - { - "pk": 11450, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LACHAPELLE-AUZAC", - "center": "POINT (532365.3367427077610046 1993316.7316566570661962)", - "surface": 31430000, - "canton": null, - "numero_insee": "46145" - } - }, - { - "pk": 35406, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LADIRAT", - "center": "POINT (570815.4397240688558668 1980024.2472670143470168)", - "surface": 8890000, - "canton": null, - "numero_insee": "46146" - } - }, - { - "pk": 13536, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAGARDELLE", - "center": "POINT (507153.6579062374075875 1943555.5178089675027877)", - "surface": 3170000, - "canton": null, - "numero_insee": "46147" - } - }, - { - "pk": 23556, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LALBENQUE", - "center": "POINT (538332.8107777953846380 1925996.6507513849064708)", - "surface": 52220000, - "canton": null, - "numero_insee": "46148" - } - }, - { - "pk": 11915, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAMAGDELAINE", - "center": "POINT (533496.1581144592491910 1941772.9879886785056442)", - "surface": 10430000, - "canton": null, - "numero_insee": "46149" - } - }, - { - "pk": 22660, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAMOTHE-CASSEL", - "center": "POINT (534669.6186193639878184 1957098.7848969383630902)", - "surface": 11440000, - "canton": null, - "numero_insee": "46151" - } - }, - { - "pk": 15746, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAMOTHE-FENELON", - "center": "POINT (527862.0090907070552930 1981166.8464172086678445)", - "surface": 13880000, - "canton": null, - "numero_insee": "46152" - } - }, - { - "pk": 34538, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LANZAC", - "center": "POINT (531427.0246421312913299 1985801.2806971743702888)", - "surface": 14610000, - "canton": null, - "numero_insee": "46153" - } - }, - { - "pk": 3409, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LARAMIERE", - "center": "POINT (562735.2708918672287837 1928803.3597136510070413)", - "surface": 22040000, - "canton": null, - "numero_insee": "46154" - } - }, - { - "pk": 18640, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LARNAGOL", - "center": "POINT (555407.6143446912756190 1943157.2770792441442609)", - "surface": 24120000, - "canton": null, - "numero_insee": "46155" - } - }, - { - "pk": 37425, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAROQUE-DES-ARCS", - "center": "POINT (530981.1762141166254878 1943253.5795050438027829)", - "surface": 7190000, - "canton": null, - "numero_insee": "46156" - } - }, - { - "pk": 34423, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LARROQUE-TOIRAC", - "center": "POINT (567791.2857470781309530 1946664.4425595644861460)", - "surface": 5840000, - "canton": null, - "numero_insee": "46157" - } - }, - { - "pk": 20620, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LASCABANES", - "center": "POINT (516603.7403237873804756 1926716.3716253691818565)", - "surface": 16690000, - "canton": null, - "numero_insee": "46158" - } - }, - { - "pk": 4600, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LATOUILLE-LENTILLAC", - "center": "POINT (571788.7355889286845922 1983335.7693298915401101)", - "surface": 12000000, - "canton": null, - "numero_insee": "46159" - } - }, - { - "pk": 15878, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LATRONQUIERE", - "center": "POINT (578942.4482943412149325 1977789.9579317811876535)", - "surface": 10380000, - "canton": null, - "numero_insee": "46160" - } - }, - { - "pk": 15877, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAURESSES", - "center": "POINT (581961.2507099721115083 1975913.3049855271819979)", - "surface": 23930000, - "canton": null, - "numero_insee": "46161" - } - }, - { - "pk": 29361, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAUZES", - "center": "POINT (539621.1763644313905388 1951534.2809646788518876)", - "surface": 6410000, - "canton": null, - "numero_insee": "46162" - } - }, - { - "pk": 21687, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAVAL-DE-CERE", - "center": "POINT (568297.5304515184834599 1993817.2205084983725101)", - "surface": 8000000, - "canton": null, - "numero_insee": "46163" - } - }, - { - "pk": 21932, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAVERCANTIERE", - "center": "POINT (519438.1777345952577889 1958973.8326615619007498)", - "surface": 15000000, - "canton": null, - "numero_insee": "46164" - } - }, - { - "pk": 20349, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LAVERGNE", - "center": "POINT (554816.0868716847617179 1977988.4448235502932221)", - "surface": 8770000, - "canton": null, - "numero_insee": "46165" - } - }, - { - "pk": 19215, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LENTILLAC-DU-CAUSSE", - "center": "POINT (544435.8877583493012935 1950373.2357680352870375)", - "surface": 13670000, - "canton": null, - "numero_insee": "46167" - } - }, - { - "pk": 29179, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LENTILLAC-SAINT-BLAISE", - "center": "POINT (582543.6756895675789565 1954195.7383838086389005)", - "surface": 5690000, - "canton": null, - "numero_insee": "46168" - } - }, - { - "pk": 12606, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LEOBARD", - "center": "POINT (518453.0534974933834746 1969076.0790007084142417)", - "surface": 10320000, - "canton": null, - "numero_insee": "46169" - } - }, - { - "pk": 3209, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LEYME", - "center": "POINT (565143.5107701477827504 1975972.6726409674156457)", - "surface": 10150000, - "canton": null, - "numero_insee": "46170" - } - }, - { - "pk": 18304, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LHERM", - "center": "POINT (512883.4726668279035948 1952712.7620020748581737)", - "surface": 13430000, - "canton": null, - "numero_insee": "46171" - } - }, - { - "pk": 11913, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LHOSPITALET", - "center": "POINT (527501.2074587056413293 1928408.9202201711013913)", - "surface": 14790000, - "canton": null, - "numero_insee": "46172" - } - }, - { - "pk": 4151, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LIMOGNE-EN-QUERCY", - "center": "POINT (555392.8836254560155794 1932946.3993216329254210)", - "surface": 32210000, - "canton": null, - "numero_insee": "46173" - } - }, - { - "pk": 23876, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LIVERNON", - "center": "POINT (560965.8321879636496305 1960822.1370697820093483)", - "surface": 26180000, - "canton": null, - "numero_insee": "46176" - } - }, - { - "pk": 17042, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LOUBRESSAC", - "center": "POINT (556758.5705628794385120 1985111.9438957497477531)", - "surface": 23390000, - "canton": null, - "numero_insee": "46177" - } - }, - { - "pk": 10099, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LOUPIAC", - "center": "POINT (531667.3001784784719348 1980998.3851398180704564)", - "surface": 12740000, - "canton": null, - "numero_insee": "46178" - } - }, - { - "pk": 11383, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LUGAGNAC", - "center": "POINT (550873.3778470647521317 1934710.5219219420105219)", - "surface": 15750000, - "canton": null, - "numero_insee": "46179" - } - }, - { - "pk": 19769, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LUNAN", - "center": "POINT (579921.0185336921131238 1956576.2600969783961773)", - "surface": 6200000, - "canton": null, - "numero_insee": "46180" - } - }, - { - "pk": 37741, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LUNEGARDE", - "center": "POINT (548919.0908839334733784 1964925.7698445536661893)", - "surface": 10350000, - "canton": null, - "numero_insee": "46181" - } - }, - { - "pk": 14391, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LUZECH", - "center": "POINT (515565.2339759347378276 1943225.1548698234837502)", - "surface": 22150000, - "canton": null, - "numero_insee": "46182" - } - }, - { - "pk": 21931, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MARMINIAC", - "center": "POINT (508493.4380005882703699 1962986.9126994451507926)", - "surface": 22890000, - "canton": null, - "numero_insee": "46184" - } - }, - { - "pk": 21705, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MARTEL", - "center": "POINT (542373.9377982291625813 1993500.3787766408640891)", - "surface": 35500000, - "canton": null, - "numero_insee": "46185" - } - }, - { - "pk": 27968, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MASCLAT", - "center": "POINT (524353.6663390019675717 1981738.2032060541678220)", - "surface": 9820000, - "canton": null, - "numero_insee": "46186" - } - }, - { - "pk": 22779, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MAUROUX", - "center": "POINT (497173.8210885829757899 1939868.6796514212619513)", - "surface": 16370000, - "canton": null, - "numero_insee": "46187" - } - }, - { - "pk": 5866, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MAXOU", - "center": "POINT (529224.3987679360434413 1949845.8414895299356431)", - "surface": 12560000, - "canton": null, - "numero_insee": "46188" - } - }, - { - "pk": 17044, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MAYRINHAC-LENTOUR", - "center": "POINT (557909.0019746144535020 1979215.5358160384930670)", - "surface": 15480000, - "canton": null, - "numero_insee": "46189" - } - }, - { - "pk": 13088, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MECHMONT", - "center": "POINT (530491.4292087999638170 1953960.6925699992571026)", - "surface": 6690000, - "canton": null, - "numero_insee": "46190" - } - }, - { - "pk": 35303, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MERCUES", - "center": "POINT (524564.0475651228334755 1944501.4209411444608122)", - "surface": 7210000, - "canton": null, - "numero_insee": "46191" - } - }, - { - "pk": 37988, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MEYRONNE", - "center": "POINT (540839.2912327909143642 1985479.4329640062060207)", - "surface": 8100000, - "canton": null, - "numero_insee": "46192" - } - }, - { - "pk": 24378, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MILHAC", - "center": "POINT (521683.6353833585162647 1977811.9514244899619371)", - "surface": 5440000, - "canton": null, - "numero_insee": "46194" - } - }, - { - "pk": 23194, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MOLIERES", - "center": "POINT (568541.7346632271073759 1976601.7293279953300953)", - "surface": 12790000, - "canton": null, - "numero_insee": "46195" - } - }, - { - "pk": 5942, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTAMEL", - "center": "POINT (530669.0763675540219992 1956664.9871723649557680)", - "surface": 9690000, - "canton": null, - "numero_insee": "46196" - } - }, - { - "pk": 20621, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LE MONTAT", - "center": "POINT (529678.3377990560838953 1931430.2619920151773840)", - "surface": 22520000, - "canton": null, - "numero_insee": "46197" - } - }, - { - "pk": 31671, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTBRUN", - "center": "POINT (565497.4133208447601646 1945644.1958486132789403)", - "surface": 8100000, - "canton": null, - "numero_insee": "46198" - } - }, - { - "pk": 17380, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTCABRIER", - "center": "POINT (500186.9223268912173808 1950705.0784964819904417)", - "surface": 21760000, - "canton": null, - "numero_insee": "46199" - } - }, - { - "pk": 14774, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTCLERA", - "center": "POINT (509533.5799902367871255 1958290.6958146444521844)", - "surface": 20890000, - "canton": null, - "numero_insee": "46200" - } - }, - { - "pk": 17188, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTCUQ", - "center": "POINT (510197.3827585955150425 1926663.0042880892287940)", - "surface": 32270000, - "canton": null, - "numero_insee": "46201" - } - }, - { - "pk": 11230, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTDOUMERC", - "center": "POINT (533265.3335491140605882 1921449.5609921906143427)", - "surface": 13590000, - "canton": null, - "numero_insee": "46202" - } - }, - { - "pk": 4371, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTET-ET-BOUXAL", - "center": "POINT (576088.3080269615165889 1971960.0903464227449149)", - "surface": 11520000, - "canton": null, - "numero_insee": "46203" - } - }, - { - "pk": 5641, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTFAUCON", - "center": "POINT (540306.6155192395672202 1965354.3470181962475181)", - "surface": 26460000, - "canton": null, - "numero_insee": "46204" - } - }, - { - "pk": 32517, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTGESTY", - "center": "POINT (516984.1303790427627973 1953147.3428062172606587)", - "surface": 11900000, - "canton": null, - "numero_insee": "46205" - } - }, - { - "pk": 10713, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTLAUZUN", - "center": "POINT (508631.6344279477489181 1922345.3882726919837296)", - "surface": 6460000, - "canton": null, - "numero_insee": "46206" - } - }, - { - "pk": 15698, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTREDON", - "center": "POINT (587927.1027996656484902 1956843.5759582596365362)", - "surface": 11840000, - "canton": null, - "numero_insee": "46207" - } - }, - { - "pk": 22628, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MONTVALENT", - "center": "POINT (544537.7877995735034347 1986110.9320695779751986)", - "surface": 27530000, - "canton": null, - "numero_insee": "46208" - } - }, - { - "pk": 31157, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "NADAILLAC-DE-ROUGE", - "center": "POINT (528242.3534246415365487 1983572.4706857223063707)", - "surface": 7750000, - "canton": null, - "numero_insee": "46209" - } - }, - { - "pk": 25886, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "NADILLAC", - "center": "POINT (534314.3397338379872963 1951690.1911951475776732)", - "surface": 7390000, - "canton": null, - "numero_insee": "46210" - } - }, - { - "pk": 5661, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "NUZEJOULS", - "center": "POINT (523427.0829611674998887 1948796.4478342116344720)", - "surface": 4750000, - "canton": null, - "numero_insee": "46211" - } - }, - { - "pk": 19678, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ORNIAC", - "center": "POINT (547548.1112758924718946 1949298.0854556486010551)", - "surface": 16970000, - "canton": null, - "numero_insee": "46212" - } - }, - { - "pk": 4638, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PADIRAC", - "center": "POINT (554070.2319665703689680 1983387.7327266326174140)", - "surface": 8860000, - "canton": null, - "numero_insee": "46213" - } - }, - { - "pk": 37423, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PARNAC", - "center": "POINT (518872.6428644142579287 1942752.1900783972814679)", - "surface": 5960000, - "canton": null, - "numero_insee": "46214" - } - }, - { - "pk": 5306, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PAYRAC", - "center": "POINT (530996.6958046720828861 1977389.1038537085987628)", - "surface": 19580000, - "canton": null, - "numero_insee": "46215" - } - }, - { - "pk": 29715, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PAYRIGNAC", - "center": "POINT (521314.9589693832676858 1974004.9776075314730406)", - "surface": 21570000, - "canton": null, - "numero_insee": "46216" - } - }, - { - "pk": 16158, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PERN", - "center": "POINT (525817.0515416766284034 1926292.6433297037146986)", - "surface": 25870000, - "canton": null, - "numero_insee": "46217" - } - }, - { - "pk": 25969, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PESCADOIRES", - "center": "POINT (506141.0106460596434772 1944948.5572709115222096)", - "surface": 2460000, - "canton": null, - "numero_insee": "46218" - } - }, - { - "pk": 16157, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PEYRILLES", - "center": "POINT (525050.2837381215067580 1958219.7867430706974119)", - "surface": 28470000, - "canton": null, - "numero_insee": "46219" - } - }, - { - "pk": 4121, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PINSAC", - "center": "POINT (535239.8213970725191757 1984731.9750530018936843)", - "surface": 19940000, - "canton": null, - "numero_insee": "46220" - } - }, - { - "pk": 11902, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PLANIOLES", - "center": "POINT (575486.5661624431377277 1960142.8523608553223312)", - "surface": 5780000, - "canton": null, - "numero_insee": "46221" - } - }, - { - "pk": 29159, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "POMAREDE", - "center": "POINT (507488.2121980112278834 1951466.5788628819864243)", - "surface": 7050000, - "canton": null, - "numero_insee": "46222" - } - }, - { - "pk": 6278, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PONTCIRQ", - "center": "POINT (514708.5758667296613567 1949925.0406281028408557)", - "surface": 8860000, - "canton": null, - "numero_insee": "46223" - } - }, - { - "pk": 23476, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PRADINES", - "center": "POINT (524494.8317213102709502 1940796.9548998954705894)", - "surface": 16480000, - "canton": null, - "numero_insee": "46224" - } - }, - { - "pk": 27861, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PRAYSSAC", - "center": "POINT (508530.8606270300806500 1946470.0277301557362080)", - "surface": 24210000, - "canton": null, - "numero_insee": "46225" - } - }, - { - "pk": 15704, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PRENDEIGNES", - "center": "POINT (579339.1811688701855019 1966281.4451820075046271)", - "surface": 15780000, - "canton": null, - "numero_insee": "46226" - } - }, - { - "pk": 29828, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PROMILHANES", - "center": "POINT (559616.2904933120589703 1930679.2829609550535679)", - "surface": 14590000, - "canton": null, - "numero_insee": "46227" - } - }, - { - "pk": 5080, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PRUDHOMAT", - "center": "POINT (558932.1967920318711549 1988533.5833568787202239)", - "surface": 12280000, - "canton": null, - "numero_insee": "46228" - } - }, - { - "pk": 28798, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PUYBRUN", - "center": "POINT (556606.5837266327580437 1991316.9800167575012892)", - "surface": 4390000, - "canton": null, - "numero_insee": "46229" - } - }, - { - "pk": 12061, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PUYJOURDES", - "center": "POINT (561594.8226717785000801 1933498.7979627235326916)", - "surface": 7880000, - "canton": null, - "numero_insee": "46230" - } - }, - { - "pk": 18615, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "PUY-L'EVEQUE", - "center": "POINT (504423.5142983854748309 1946836.2531882338225842)", - "surface": 26440000, - "canton": null, - "numero_insee": "46231" - } - }, - { - "pk": 32873, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LES QUATRE-ROUTES-DU-LOT", - "center": "POINT (544824.4596309692133218 1999727.1139097840059549)", - "surface": 2810000, - "canton": null, - "numero_insee": "46232" - } - }, - { - "pk": 14998, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "QUISSAC", - "center": "POINT (550876.1373518790351227 1958335.2807599592488259)", - "surface": 24960000, - "canton": null, - "numero_insee": "46233" - } - }, - { - "pk": 33852, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "RAMPOUX", - "center": "POINT (517224.3676009230548516 1960356.8375029028393328)", - "surface": 5750000, - "canton": null, - "numero_insee": "46234" - } - }, - { - "pk": 13970, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "REILHAC", - "center": "POINT (551504.8665112993912771 1966949.4470828990451992)", - "surface": 13020000, - "canton": null, - "numero_insee": "46235" - } - }, - { - "pk": 11935, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "REILHAGUET", - "center": "POINT (534314.8851844794116914 1975614.9442244747187942)", - "surface": 16020000, - "canton": null, - "numero_insee": "46236" - } - }, - { - "pk": 35585, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "REYREVIGNES", - "center": "POINT (566273.4727989791426808 1960566.2352152464445680)", - "surface": 12490000, - "canton": null, - "numero_insee": "46237" - } - }, - { - "pk": 6237, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "RIGNAC", - "center": "POINT (549906.3889392735436559 1978548.0212219923269004)", - "surface": 9640000, - "canton": null, - "numero_insee": "46238" - } - }, - { - "pk": 11590, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LE ROC", - "center": "POINT (529028.9206195155857131 1985280.7656581059563905)", - "surface": 6970000, - "canton": null, - "numero_insee": "46239" - } - }, - { - "pk": 4322, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ROCAMADOUR", - "center": "POINT (543390.9882402337389067 1979594.7154213441535830)", - "surface": 49340000, - "canton": null, - "numero_insee": "46240" - } - }, - { - "pk": 32147, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "ROUFFILHAC", - "center": "POINT (526889.4383698874153197 1977755.2540905352216214)", - "surface": 6480000, - "canton": null, - "numero_insee": "46241" - } - }, - { - "pk": 17081, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "RUDELLE", - "center": "POINT (563593.0682211857056245 1969853.4246782890986651)", - "surface": 6790000, - "canton": null, - "numero_insee": "46242" - } - }, - { - "pk": 18321, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SABADEL-LAUZES", - "center": "POINT (542026.8591835791012272 1951153.9513394138775766)", - "surface": 8750000, - "canton": null, - "numero_insee": "46245" - } - }, - { - "pk": 9874, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAIGNES", - "center": "POINT (559132.7500699495431036 1976523.0029421609360725)", - "surface": 3610000, - "canton": null, - "numero_insee": "46246" - } - }, - { - "pk": 21055, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAILLAC", - "center": "POINT (552451.8372018487425521 1925513.9613755152095109)", - "surface": 16390000, - "canton": null, - "numero_insee": "46247" - } - }, - { - "pk": 23405, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINTE-ALAUZIE", - "center": "POINT (518829.2849380272091366 1923931.9395761964842677)", - "surface": 12270000, - "canton": null, - "numero_insee": "46248" - } - }, - { - "pk": 22502, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-BRESSOU", - "center": "POINT (571331.4746090238913894 1966214.3749523172155023)", - "surface": 10120000, - "canton": null, - "numero_insee": "46249" - } - }, - { - "pk": 11914, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CAPRAIS", - "center": "POINT (506036.0171835359651595 1957560.8476776643656194)", - "surface": 9100000, - "canton": null, - "numero_insee": "46250" - } - }, - { - "pk": 14644, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CERE", - "center": "POINT (564878.8250566315837204 1983678.3386048490647227)", - "surface": 11380000, - "canton": null, - "numero_insee": "46251" - } - }, - { - "pk": 15408, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CERNIN", - "center": "POINT (540287.5906545458128676 1955644.1213031616061926)", - "surface": 16280000, - "canton": null, - "numero_insee": "46252" - } - }, - { - "pk": 3690, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CHAMARAND", - "center": "POINT (530397.9017918299650773 1965171.5439375774003565)", - "surface": 13070000, - "canton": null, - "numero_insee": "46253" - } - }, - { - "pk": 36299, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CHELS", - "center": "POINT (558476.3306835041148588 1947287.2396807693876326)", - "surface": 18090000, - "canton": null, - "numero_insee": "46254" - } - }, - { - "pk": 22248, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CIRQ-LAPOPIE", - "center": "POINT (545526.3363663255004212 1939671.1178538629319519)", - "surface": 18030000, - "canton": null, - "numero_insee": "46256" - } - }, - { - "pk": 7609, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CIRQ-MADELON", - "center": "POINT (519187.9202262368053198 1976990.3293507725466043)", - "surface": 7530000, - "canton": null, - "numero_insee": "46257" - } - }, - { - "pk": 12262, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CIRQ-SOUILLAGUET", - "center": "POINT (528976.5124414687743410 1967562.1671958593651652)", - "surface": 8520000, - "canton": null, - "numero_insee": "46258" - } - }, - { - "pk": 3024, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CLAIR", - "center": "POINT (525583.2545907454332337 1966332.6271431725472212)", - "surface": 10860000, - "canton": null, - "numero_insee": "46259" - } - }, - { - "pk": 33200, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINTE-CROIX", - "center": "POINT (505782.1784122292883694 1927927.6227552515920252)", - "surface": 7850000, - "canton": null, - "numero_insee": "46261" - } - }, - { - "pk": 5091, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-CYPRIEN", - "center": "POINT (514131.2781472182250582 1923091.9404972284100950)", - "surface": 15200000, - "canton": null, - "numero_insee": "46262" - } - }, - { - "pk": 4952, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-DAUNES", - "center": "POINT (511275.9654511006665416 1929374.8542704945430160)", - "surface": 10190000, - "canton": null, - "numero_insee": "46263" - } - }, - { - "pk": 17187, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-DENIS-CATUS", - "center": "POINT (524598.2078477410832420 1952409.9752497428562492)", - "surface": 10820000, - "canton": null, - "numero_insee": "46264" - } - }, - { - "pk": 21879, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-DENIS-LES-MARTEL", - "center": "POINT (546473.6250222242670134 1994035.1285360720939934)", - "surface": 7920000, - "canton": null, - "numero_insee": "46265" - } - }, - { - "pk": 9844, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-FELIX", - "center": "POINT (582221.5726773259229958 1956795.7468373381998390)", - "surface": 7770000, - "canton": null, - "numero_insee": "46266" - } - }, - { - "pk": 22690, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-GERMAIN-DU-BEL-AIR", - "center": "POINT (528931.5225068663712591 1960954.9604341769590974)", - "surface": 21350000, - "canton": null, - "numero_insee": "46267" - } - }, - { - "pk": 21351, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-GERY", - "center": "POINT (541293.7858445501187816 1943039.3429460185579956)", - "surface": 13690000, - "canton": null, - "numero_insee": "46268" - } - }, - { - "pk": 3808, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-HILAIRE", - "center": "POINT (585160.9537465975154191 1976340.5346380639821291)", - "surface": 7950000, - "canton": null, - "numero_insee": "46269" - } - }, - { - "pk": 31462, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-JEAN-DE-LAUR", - "center": "POINT (559666.1538757955422625 1936686.0455732648260891)", - "surface": 21700000, - "canton": null, - "numero_insee": "46270" - } - }, - { - "pk": 26720, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-JEAN-LESPINASSE", - "center": "POINT (562271.3293121940223500 1984257.1341598550789058)", - "surface": 5880000, - "canton": null, - "numero_insee": "46271" - } - }, - { - "pk": 3903, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-JEAN-MIRABEL", - "center": "POINT (581801.8906811493216082 1959094.6209778089541942)", - "surface": 9220000, - "canton": null, - "numero_insee": "46272" - } - }, - { - "pk": 16484, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-LAURENT-LES-TOURS", - "center": "POINT (565753.7134367886465043 1986788.8202147763222456)", - "surface": 10870000, - "canton": null, - "numero_insee": "46273" - } - }, - { - "pk": 15654, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-LAURENT-LOLMIE", - "center": "POINT (511643.7954427119111642 1921269.3005345857236534)", - "surface": 10830000, - "canton": null, - "numero_insee": "46274" - } - }, - { - "pk": 15081, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MARTIN-DE-VERS", - "center": "POINT (537102.0283026729011908 1953515.3373249105643481)", - "surface": 9850000, - "canton": null, - "numero_insee": "46275" - } - }, - { - "pk": 22153, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MARTIN-LABOUVAL", - "center": "POINT (551511.3196402548346668 1942223.7593885611277074)", - "surface": 13380000, - "canton": null, - "numero_insee": "46276" - } - }, - { - "pk": 16008, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MARTIN-LE-REDON", - "center": "POINT (496397.3672988904872909 1948971.7752983663231134)", - "surface": 10690000, - "canton": null, - "numero_insee": "46277" - } - }, - { - "pk": 32733, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MATRE", - "center": "POINT (502725.8838146629277617 1934308.9651749168988317)", - "surface": 6470000, - "canton": null, - "numero_insee": "46278" - } - }, - { - "pk": 3889, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MAURICE-EN-QUERCY", - "center": "POINT (569880.6854583930689842 1972108.3139062996488065)", - "surface": 12970000, - "canton": null, - "numero_insee": "46279" - } - }, - { - "pk": 35064, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MEDARD", - "center": "POINT (517117.5915395352058113 1949144.2756428313441575)", - "surface": 11750000, - "canton": null, - "numero_insee": "46280" - } - }, - { - "pk": 14255, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MEDARD-DE-PRESQUE", - "center": "POINT (560875.8601308467332274 1983544.7461366124916822)", - "surface": 5200000, - "canton": null, - "numero_insee": "46281" - } - }, - { - "pk": 33054, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MEDARD-NICOURBY", - "center": "POINT (574170.5583219241816550 1973845.9825816703960299)", - "surface": 7810000, - "canton": null, - "numero_insee": "46282" - } - }, - { - "pk": 28192, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MICHEL-DE-BANNIERES", - "center": "POINT (548447.9115940838819370 1997354.9620830193161964)", - "surface": 7750000, - "canton": null, - "numero_insee": "46283" - } - }, - { - "pk": 34247, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-MICHEL-LOUBEJOU", - "center": "POINT (561743.2217269029933959 1987556.0787588325329125)", - "surface": 5270000, - "canton": null, - "numero_insee": "46284" - } - }, - { - "pk": 20799, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-PANTALEON", - "center": "POINT (515973.9525314848870039 1930214.8393126856535673)", - "surface": 19310000, - "canton": null, - "numero_insee": "46285" - } - }, - { - "pk": 12091, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-PAUL-DE-VERN", - "center": "POINT (568797.6136846035951748 1981909.2979631451889873)", - "surface": 10730000, - "canton": null, - "numero_insee": "46286" - } - }, - { - "pk": 32535, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-PAUL-DE-LOUBRESSAC", - "center": "POINT (528970.2319042705930769 1920312.5513035184703767)", - "surface": 20310000, - "canton": null, - "numero_insee": "46287" - } - }, - { - "pk": 33000, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-PERDOUX", - "center": "POINT (577152.9937122839037329 1964361.1645099855959415)", - "surface": 12530000, - "canton": null, - "numero_insee": "46288" - } - }, - { - "pk": 7689, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-PIERRE-TOIRAC", - "center": "POINT (569478.7026886512758210 1948380.3482411494478583)", - "surface": 5790000, - "canton": null, - "numero_insee": "46289" - } - }, - { - "pk": 26887, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-PROJET", - "center": "POINT (534544.3136881600366905 1972113.2610987289808691)", - "surface": 15820000, - "canton": null, - "numero_insee": "46290" - } - }, - { - "pk": 7084, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-SAUVEUR-LA-VALLEE", - "center": "POINT (536972.6865110053913668 1957017.9035852139350027)", - "surface": 6690000, - "canton": null, - "numero_insee": "46291" - } - }, - { - "pk": 33475, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-SIMON", - "center": "POINT (559615.1784913600422442 1966716.9481421119999141)", - "surface": 9200000, - "canton": null, - "numero_insee": "46292" - } - }, - { - "pk": 32650, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-SOZY", - "center": "POINT (537823.0734930429607630 1987055.8807792139705271)", - "surface": 8700000, - "canton": null, - "numero_insee": "46293" - } - }, - { - "pk": 24089, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-SULPICE", - "center": "POINT (556924.6421443170402199 1953280.5353598715737462)", - "surface": 12970000, - "canton": null, - "numero_insee": "46294" - } - }, - { - "pk": 18570, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-VINCENT-RIVE-D'OLT", - "center": "POINT (518502.2819957155152224 1939145.3150598304346204)", - "surface": 19950000, - "canton": null, - "numero_insee": "46296" - } - }, - { - "pk": 17403, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SALVIAC", - "center": "POINT (514979.7070203967159614 1965443.4193877910729498)", - "surface": 29680000, - "canton": null, - "numero_insee": "46297" - } - }, - { - "pk": 16283, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SARRAZAC", - "center": "POINT (540300.1769561719847843 2002091.7495552585460246)", - "surface": 18210000, - "canton": null, - "numero_insee": "46298" - } - }, - { - "pk": 21145, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAULIAC-SUR-CELE", - "center": "POINT (550770.4763684443896636 1947022.6051849673967808)", - "surface": 25210000, - "canton": null, - "numero_insee": "46299" - } - }, - { - "pk": 37447, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAUZET", - "center": "POINT (514125.4703000283916481 1935805.3645710954442620)", - "surface": 10960000, - "canton": null, - "numero_insee": "46301" - } - }, - { - "pk": 15276, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SENAILLAC-LATRONQUIERE", - "center": "POINT (579210.0272711830912158 1981696.1917501469142735)", - "surface": 11260000, - "canton": null, - "numero_insee": "46302" - } - }, - { - "pk": 25288, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SENAILLAC-LAUZES", - "center": "POINT (545502.6769084138795733 1954486.4265266479924321)", - "surface": 25980000, - "canton": null, - "numero_insee": "46303" - } - }, - { - "pk": 35917, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SENIERGUES", - "center": "POINT (538478.9743745187297463 1968442.2903842697851360)", - "surface": 18220000, - "canton": null, - "numero_insee": "46304" - } - }, - { - "pk": 20624, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SERIGNAC", - "center": "POINT (500300.1918598662596196 1937091.7373603079468012)", - "surface": 18600000, - "canton": null, - "numero_insee": "46305" - } - }, - { - "pk": 18021, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SONAC", - "center": "POINT (561724.7373994360677898 1965833.6641441734973341)", - "surface": 7300000, - "canton": null, - "numero_insee": "46306" - } - }, - { - "pk": 22293, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SOTURAC", - "center": "POINT (495520.6304721917258576 1946061.4451178845483810)", - "surface": 19680000, - "canton": null, - "numero_insee": "46307" - } - }, - { - "pk": 8814, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SOUCIRAC", - "center": "POINT (533981.3269553747959435 1967603.9237069583032280)", - "surface": 11290000, - "canton": null, - "numero_insee": "46308" - } - }, - { - "pk": 21140, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SOUILLAC", - "center": "POINT (530992.4072763888398185 1989901.8267924485262483)", - "surface": 26080000, - "canton": null, - "numero_insee": "46309" - } - }, - { - "pk": 22704, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SOULOMES", - "center": "POINT (540164.9271827952470630 1958345.9061967791058123)", - "surface": 7760000, - "canton": null, - "numero_insee": "46310" - } - }, - { - "pk": 23065, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SOUSCEYRAC", - "center": "POINT (576165.2505861812969670 1986675.7858563922345638)", - "surface": 57760000, - "canton": null, - "numero_insee": "46311" - } - }, - { - "pk": 28422, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "STRENQUELS", - "center": "POINT (544644.3373041579034179 1997323.1863278159871697)", - "surface": 9060000, - "canton": null, - "numero_insee": "46312" - } - }, - { - "pk": 33293, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "TAURIAC", - "center": "POINT (555515.5868268074700609 1990106.6393832792527974)", - "surface": 8290000, - "canton": null, - "numero_insee": "46313" - } - }, - { - "pk": 29290, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "THEGRA", - "center": "POINT (553694.1175103462301195 1980481.6249332716688514)", - "surface": 12700000, - "canton": null, - "numero_insee": "46317" - } - }, - { - "pk": 13450, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "THEMINES", - "center": "POINT (559081.2099907156080008 1970716.6089742828626186)", - "surface": 13450000, - "canton": null, - "numero_insee": "46318" - } - }, - { - "pk": 6885, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "THEMINETTES", - "center": "POINT (561401.0025702012935653 1968633.8478237690869719)", - "surface": 8760000, - "canton": null, - "numero_insee": "46319" - } - }, - { - "pk": 23325, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "TOUR-DE-FAURE", - "center": "POINT (548210.5903013153001666 1941895.8596087093465030)", - "surface": 8830000, - "canton": null, - "numero_insee": "46320" - } - }, - { - "pk": 11499, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "TOUZAC", - "center": "POINT (498335.0308852786547504 1944683.3864712354261428)", - "surface": 4120000, - "canton": null, - "numero_insee": "46321" - } - }, - { - "pk": 18489, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "TRESPOUX-RASSIELS", - "center": "POINT (522031.5951339462772012 1936071.4631028375588357)", - "surface": 20550000, - "canton": null, - "numero_insee": "46322" - } - }, - { - "pk": 26195, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "USSEL", - "center": "POINT (533186.5387073082383722 1954884.1177453887648880)", - "surface": 6780000, - "canton": null, - "numero_insee": "46323" - } - }, - { - "pk": 25571, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "UZECH", - "center": "POINT (524375.4780457371380180 1955110.9337751166895032)", - "surface": 12200000, - "canton": null, - "numero_insee": "46324" - } - }, - { - "pk": 23396, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VAILLAC", - "center": "POINT (535715.5461379420012236 1963714.3644465568941087)", - "surface": 13740000, - "canton": null, - "numero_insee": "46325" - } - }, - { - "pk": 23273, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VALPRIONDE", - "center": "POINT (502677.4350959014263935 1928101.9924464770592749)", - "surface": 15820000, - "canton": null, - "numero_insee": "46326" - } - }, - { - "pk": 4443, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VARAIRE", - "center": "POINT (550614.0747865267330781 1929803.1673741489648819)", - "surface": 25410000, - "canton": null, - "numero_insee": "46328" - } - }, - { - "pk": 29391, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VAYLATS", - "center": "POINT (545147.9279441989492625 1925052.5015568807721138)", - "surface": 26350000, - "canton": null, - "numero_insee": "46329" - } - }, - { - "pk": 25810, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VAYRAC", - "center": "POINT (549177.0076158748706803 1993957.6144301078747958)", - "surface": 16150000, - "canton": null, - "numero_insee": "46330" - } - }, - { - "pk": 17902, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VERS", - "center": "POINT (536884.4563461801735684 1943603.1593047266360372)", - "surface": 18070000, - "canton": null, - "numero_insee": "46331" - } - }, - { - "pk": 14765, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VIAZAC", - "center": "POINT (578980.7282933250535280 1961273.2648657688405365)", - "surface": 17620000, - "canton": null, - "numero_insee": "46332" - } - }, - { - "pk": 6977, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VIDAILLAC", - "center": "POINT (558643.7651129286969081 1927267.5412102537229657)", - "surface": 9620000, - "canton": null, - "numero_insee": "46333" - } - }, - { - "pk": 22329, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "LE VIGAN", - "center": "POINT (529846.4838147164555266 1971273.2398884915746748)", - "surface": 34200000, - "canton": null, - "numero_insee": "46334" - } - }, - { - "pk": 34947, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VILLESEQUE", - "center": "POINT (518449.7339919188525528 1933438.8592699859291315)", - "surface": 23410000, - "canton": null, - "numero_insee": "46335" - } - }, - { - "pk": 37426, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "VIRE-SUR-LOT", - "center": "POINT (501346.3014187638764270 1943707.3907367521896958)", - "surface": 7670000, - "canton": null, - "numero_insee": "46336" - } - }, - { - "pk": 24576, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "MAYRAC", - "center": "POINT (537506.0780561666470021 1989055.2694149070885032)", - "surface": 7830000, - "canton": null, - "numero_insee": "46337" - } - }, - { - "pk": 4918, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "BESSONIES", - "center": "POINT (584741.2729689817642793 1978639.3746390580199659)", - "surface": 7420000, - "canton": null, - "numero_insee": "46338" - } - }, - { - "pk": 37202, - "model": "ishtar_common.town", - "fields": { - "departement": 47, - "name": "SAINT-PIERRE-LAFEUILLE", - "center": "POINT (529751.6078092041425407 1946646.8893647699151188)", - "surface": 8600000, - "canton": null, - "numero_insee": "46340" - } - }, - { - "pk": 7808, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AGEN", - "center": "POINT (463062.5370673302677460 1912756.8548330164048821)", - "surface": 11520000, - "canton": null, - "numero_insee": "47001" - } - }, - { - "pk": 36718, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AGME", - "center": "POINT (441071.4498620567610487 1945109.1598036787472665)", - "surface": 5030000, - "canton": null, - "numero_insee": "47002" - } - }, - { - "pk": 6178, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AGNAC", - "center": "POINT (444836.8739954415941611 1961857.7615970612969249)", - "surface": 13910000, - "canton": null, - "numero_insee": "47003" - } - }, - { - "pk": 15414, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AIGUILLON", - "center": "POINT (441945.3111395683372393 1924194.2873889775946736)", - "surface": 28330000, - "canton": null, - "numero_insee": "47004" - } - }, - { - "pk": 36038, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ALLEMANS-DU-DROPT", - "center": "POINT (437143.4910701952176169 1960092.3222508933395147)", - "surface": 6380000, - "canton": null, - "numero_insee": "47005" - } - }, - { - "pk": 4305, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ALLEZ-ET-CAZENEUVE", - "center": "POINT (463698.1257367632933892 1932683.3433999523986131)", - "surface": 10830000, - "canton": null, - "numero_insee": "47006" - } - }, - { - "pk": 20922, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ALLONS", - "center": "POINT (406598.3907774274703115 1913190.6961891604587436)", - "surface": 76330000, - "canton": null, - "numero_insee": "47007" - } - }, - { - "pk": 30468, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AMBRUS", - "center": "POINT (432799.0641657101223245 1916510.4864834127947688)", - "surface": 12320000, - "canton": null, - "numero_insee": "47008" - } - }, - { - "pk": 29186, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ANDIRAN", - "center": "POINT (435620.2022666205884889 1902218.4324140532407910)", - "surface": 9860000, - "canton": null, - "numero_insee": "47009" - } - }, - { - "pk": 9766, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ANTAGNAC", - "center": "POINT (413358.2076485418365337 1931065.4949441996868700)", - "surface": 9390000, - "canton": null, - "numero_insee": "47010" - } - }, - { - "pk": 4147, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ANTHE", - "center": "POINT (489738.0015405097510666 1931197.7606373142916709)", - "surface": 14190000, - "canton": null, - "numero_insee": "47011" - } - }, - { - "pk": 21821, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ANZEX", - "center": "POINT (426940.2862769189523533 1922868.8799663148820400)", - "surface": 23310000, - "canton": null, - "numero_insee": "47012" - } - }, - { - "pk": 22060, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ARGENTON", - "center": "POINT (418939.7848348870757036 1934014.6651053633540869)", - "surface": 12140000, - "canton": null, - "numero_insee": "47013" - } - }, - { - "pk": 5346, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ARMILLAC", - "center": "POINT (445215.8979687439277768 1952351.0094382876995951)", - "surface": 7820000, - "canton": null, - "numero_insee": "47014" - } - }, - { - "pk": 21994, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ASTAFFORT", - "center": "POINT (465292.5242606319952756 1897358.7328559169545770)", - "surface": 35440000, - "canton": null, - "numero_insee": "47015" - } - }, - { - "pk": 15710, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AUBIAC", - "center": "POINT (458316.6342160325730219 1905609.8612522024195641)", - "surface": 14090000, - "canton": null, - "numero_insee": "47016" - } - }, - { - "pk": 29147, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AURADOU", - "center": "POINT (478554.3389692244818434 1927801.3360768128186464)", - "surface": 11280000, - "canton": null, - "numero_insee": "47017" - } - }, - { - "pk": 27553, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "AURIAC-SUR-DROPT", - "center": "POINT (433810.4832895629806444 1963668.4859389956109226)", - "surface": 5300000, - "canton": null, - "numero_insee": "47018" - } - }, - { - "pk": 20089, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BALEYSSAGUES", - "center": "POINT (426476.1136110664810985 1966911.2587920350488275)", - "surface": 8200000, - "canton": null, - "numero_insee": "47020" - } - }, - { - "pk": 19839, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BARBASTE", - "center": "POINT (432464.0712755899876356 1908599.2305926696863025)", - "surface": 38890000, - "canton": null, - "numero_insee": "47021" - } - }, - { - "pk": 34519, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BEAUGAS", - "center": "POINT (463679.5085625709034503 1946998.2553259097039700)", - "surface": 22650000, - "canton": null, - "numero_insee": "47023" - } - }, - { - "pk": 6841, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BEAUPUY", - "center": "POINT (425611.6552928485325538 1950386.9499186482280493)", - "surface": 8260000, - "canton": null, - "numero_insee": "47024" - } - }, - { - "pk": 5869, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BEAUVILLE", - "center": "POINT (484923.8106590684037656 1920246.1538998647592962)", - "surface": 23090000, - "canton": null, - "numero_insee": "47025" - } - }, - { - "pk": 34842, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BEAUZIAC", - "center": "POINT (416000.4695808785036206 1926282.2142496453598142)", - "surface": 15470000, - "canton": null, - "numero_insee": "47026" - } - }, - { - "pk": 32961, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BIAS", - "center": "POINT (467076.5782226363662630 1935714.5407595986034721)", - "surface": 12320000, - "canton": null, - "numero_insee": "47027" - } - }, - { - "pk": 23356, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BIRAC-SUR-TREC", - "center": "POINT (434665.1682647187262774 1945056.1509028670843691)", - "surface": 14300000, - "canton": null, - "numero_insee": "47028" - } - }, - { - "pk": 19742, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BLANQUEFORT-SUR-BRIOLANCE", - "center": "POINT (490621.0646252440055832 1957432.6123962802812457)", - "surface": 42040000, - "canton": null, - "numero_insee": "47029" - } - }, - { - "pk": 30097, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOE", - "center": "POINT (464694.8662739871069789 1909066.4168430154677480)", - "surface": 16730000, - "canton": null, - "numero_insee": "47031" - } - }, - { - "pk": 34912, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BON-ENCONTRE", - "center": "POINT (468164.3380319923162460 1913199.6061712007503957)", - "surface": 20420000, - "canton": null, - "numero_insee": "47032" - } - }, - { - "pk": 27238, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOUDY-DE-BEAUREGARD", - "center": "POINT (468054.7509634869638830 1950538.2127435668371618)", - "surface": 10180000, - "canton": null, - "numero_insee": "47033" - } - }, - { - "pk": 26207, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOUGLON", - "center": "POINT (421725.1880073975771666 1936139.8988088206388056)", - "surface": 14050000, - "canton": null, - "numero_insee": "47034" - } - }, - { - "pk": 30829, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOURGOUGNAGUE", - "center": "POINT (447760.4075920134782791 1959379.3735174899920821)", - "surface": 11710000, - "canton": null, - "numero_insee": "47035" - } - }, - { - "pk": 21873, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOURLENS", - "center": "POINT (491292.1494288925896399 1936916.7092393010389060)", - "surface": 15650000, - "canton": null, - "numero_insee": "47036" - } - }, - { - "pk": 15119, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOURNEL", - "center": "POINT (468173.5595926715759560 1960349.4103408190421760)", - "surface": 14590000, - "canton": null, - "numero_insee": "47037" - } - }, - { - "pk": 21466, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOURRAN", - "center": "POINT (445621.6457113320939243 1927528.2363207140006125)", - "surface": 18310000, - "canton": null, - "numero_insee": "47038" - } - }, - { - "pk": 36593, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BOUSSES", - "center": "POINT (419451.7855786322033964 1908391.5562278451398015)", - "surface": 47170000, - "canton": null, - "numero_insee": "47039" - } - }, - { - "pk": 33788, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BRAX", - "center": "POINT (457657.1116148692090064 1912712.0348919318057597)", - "surface": 8860000, - "canton": null, - "numero_insee": "47040" - } - }, - { - "pk": 15395, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BRUGNAC", - "center": "POINT (449918.2260827535064891 1940577.5753214980941266)", - "surface": 14800000, - "canton": null, - "numero_insee": "47042" - } - }, - { - "pk": 19196, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "BUZET-SUR-BAISE", - "center": "POINT (437383.7967374447034672 1918950.9847013682592660)", - "surface": 21250000, - "canton": null, - "numero_insee": "47043" - } - }, - { - "pk": 1498, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAHUZAC", - "center": "POINT (459136.6201594054000452 1963677.9916170332580805)", - "surface": 8070000, - "canton": null, - "numero_insee": "47044" - } - }, - { - "pk": 23530, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CALIGNAC", - "center": "POINT (446202.7532248087227345 1905709.7031649504788220)", - "surface": 18490000, - "canton": null, - "numero_insee": "47045" - } - }, - { - "pk": 34872, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CALONGES", - "center": "POINT (431566.3314037820091471 1932417.2294105838518590)", - "surface": 15990000, - "canton": null, - "numero_insee": "47046" - } - }, - { - "pk": 37466, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAMBES", - "center": "POINT (436366.7300686617381871 1957182.8795800115913153)", - "surface": 9230000, - "canton": null, - "numero_insee": "47047" - } - }, - { - "pk": 21822, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CANCON", - "center": "POINT (464046.6929209489608184 1951005.4879373621661216)", - "surface": 24490000, - "canton": null, - "numero_insee": "47048" - } - }, - { - "pk": 4095, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASSENEUIL", - "center": "POINT (463337.2267731228494085 1939988.0603334642946720)", - "surface": 18120000, - "canton": null, - "numero_insee": "47049" - } - }, - { - "pk": 32075, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASSIGNAS", - "center": "POINT (475688.8576686928863637 1923272.7539642427582294)", - "surface": 7940000, - "canton": null, - "numero_insee": "47050" - } - }, - { - "pk": 5383, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASTELCULIER", - "center": "POINT (469885.1511707443278283 1910911.4154016217216849)", - "surface": 14990000, - "canton": null, - "numero_insee": "47051" - } - }, - { - "pk": 17144, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASTELJALOUX", - "center": "POINT (420107.8606801718706265 1925915.7170459968037903)", - "surface": 30730000, - "canton": null, - "numero_insee": "47052" - } - }, - { - "pk": 4428, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASTELLA", - "center": "POINT (468066.3327848394401371 1925011.4047787445597351)", - "surface": 12580000, - "canton": null, - "numero_insee": "47053" - } - }, - { - "pk": 19512, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASTELNAUD-DE-GRATECAMBE", - "center": "POINT (468393.2472152447444387 1945936.2033816277980804)", - "surface": 17280000, - "canton": null, - "numero_insee": "47055" - } - }, - { - "pk": 20107, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASTELNAU-SUR-GUPIE", - "center": "POINT (425367.6116416496224701 1955690.4680385885294527)", - "surface": 15380000, - "canton": null, - "numero_insee": "47056" - } - }, - { - "pk": 12742, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CASTILLONNES", - "center": "POINT (462559.8295772467972711 1961303.8853370414581150)", - "surface": 19410000, - "canton": null, - "numero_insee": "47057" - } - }, - { - "pk": 28323, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAUBEYRES", - "center": "POINT (430570.3686400299193338 1919695.4779768914449960)", - "surface": 14520000, - "canton": null, - "numero_insee": "47058" - } - }, - { - "pk": 12490, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAUDECOSTE", - "center": "POINT (471851.0377834829268977 1903219.4336570983286947)", - "surface": 17210000, - "canton": null, - "numero_insee": "47060" - } - }, - { - "pk": 28716, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAUMONT-SUR-GARONNE", - "center": "POINT (428111.6522813750198111 1938595.2181695539038628)", - "surface": 11690000, - "canton": null, - "numero_insee": "47061" - } - }, - { - "pk": 20177, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAUZAC", - "center": "POINT (478916.1555664950865321 1920396.4598012436181307)", - "surface": 14600000, - "canton": null, - "numero_insee": "47062" - } - }, - { - "pk": 14493, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAVARC", - "center": "POINT (465524.5441860223072581 1965933.2388678207062185)", - "surface": 11990000, - "canton": null, - "numero_insee": "47063" - } - }, - { - "pk": 11118, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CAZIDEROQUE", - "center": "POINT (487807.0005437016370706 1934685.4142807682510465)", - "surface": 12060000, - "canton": null, - "numero_insee": "47064" - } - }, - { - "pk": 15038, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CLAIRAC", - "center": "POINT (444383.9860859302571043 1931922.6579913753084838)", - "surface": 33840000, - "canton": null, - "numero_insee": "47065" - } - }, - { - "pk": 10125, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CLERMONT-DESSOUS", - "center": "POINT (449603.4660071231191978 1918151.1910630308557302)", - "surface": 15300000, - "canton": null, - "numero_insee": "47066" - } - }, - { - "pk": 18799, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CLERMONT-SOUBIRAN", - "center": "POINT (480741.7450526360189542 1905495.6323380740359426)", - "surface": 10470000, - "canton": null, - "numero_insee": "47067" - } - }, - { - "pk": 19885, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "COCUMONT", - "center": "POINT (416573.0233423566096462 1941803.3500894997268915)", - "surface": 25390000, - "canton": null, - "numero_insee": "47068" - } - }, - { - "pk": 16512, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "COLAYRAC-SAINT-CIRQ", - "center": "POINT (458429.7003967497730628 1916122.0855935283470899)", - "surface": 21570000, - "canton": null, - "numero_insee": "47069" - } - }, - { - "pk": 28274, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CONDEZAYGUES", - "center": "POINT (486329.0870610123965889 1943882.8262419630773365)", - "surface": 10890000, - "canton": null, - "numero_insee": "47070" - } - }, - { - "pk": 17160, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "COULX", - "center": "POINT (451097.8470271182013676 1943190.0830058674328029)", - "surface": 16430000, - "canton": null, - "numero_insee": "47071" - } - }, - { - "pk": 29366, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "COURBIAC", - "center": "POINT (496543.9037418563966639 1931354.4605683861300349)", - "surface": 9080000, - "canton": null, - "numero_insee": "47072" - } - }, - { - "pk": 22408, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "COURS", - "center": "POINT (460746.6147437486797571 1926452.2880617796909064)", - "surface": 11430000, - "canton": null, - "numero_insee": "47073" - } - }, - { - "pk": 31434, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "COUTHURES-SUR-GARONNE", - "center": "POINT (419515.6120876154745929 1949135.3212195825763047)", - "surface": 6960000, - "canton": null, - "numero_insee": "47074" - } - }, - { - "pk": 3349, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LA CROIX-BLANCHE", - "center": "POINT (468689.3558565787971020 1922313.6975190939847380)", - "surface": 13000000, - "canton": null, - "numero_insee": "47075" - } - }, - { - "pk": 18642, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CUQ", - "center": "POINT (470084.1081286244443618 1899000.2245623252820224)", - "surface": 16860000, - "canton": null, - "numero_insee": "47076" - } - }, - { - "pk": 13286, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "CUZORN", - "center": "POINT (489577.4081543734064326 1950516.7405757587403059)", - "surface": 23550000, - "canton": null, - "numero_insee": "47077" - } - }, - { - "pk": 11808, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DAMAZAN", - "center": "POINT (435248.5696580428048037 1922937.5894834543578327)", - "surface": 16490000, - "canton": null, - "numero_insee": "47078" - } - }, - { - "pk": 7549, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DAUSSE", - "center": "POINT (484518.7111386880278587 1932856.1836372003890574)", - "surface": 6990000, - "canton": null, - "numero_insee": "47079" - } - }, - { - "pk": 19980, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DEVILLAC", - "center": "POINT (478507.6493156282813288 1957532.1733887044247240)", - "surface": 9290000, - "canton": null, - "numero_insee": "47080" - } - }, - { - "pk": 3662, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DOLMAYRAC", - "center": "POINT (460718.3951015541097149 1929855.6656483870465308)", - "surface": 19480000, - "canton": null, - "numero_insee": "47081" - } - }, - { - "pk": 17616, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DONDAS", - "center": "POINT (481350.9817618884262629 1916512.5139165455475450)", - "surface": 14410000, - "canton": null, - "numero_insee": "47082" - } - }, - { - "pk": 3986, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DOUDRAC", - "center": "POINT (468443.9531815473455936 1963955.3871509439777583)", - "surface": 8650000, - "canton": null, - "numero_insee": "47083" - } - }, - { - "pk": 21003, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DOUZAINS", - "center": "POINT (458257.3224587014992721 1961068.0063957395032048)", - "surface": 12690000, - "canton": null, - "numero_insee": "47084" - } - }, - { - "pk": 25861, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DURANCE", - "center": "POINT (425957.5156356978695840 1908545.4283716375939548)", - "surface": 38880000, - "canton": null, - "numero_insee": "47085" - } - }, - { - "pk": 32371, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "DURAS", - "center": "POINT (430586.6940267942845821 1966144.4142069993540645)", - "surface": 20090000, - "canton": null, - "numero_insee": "47086" - } - }, - { - "pk": 3078, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ENGAYRAC", - "center": "POINT (485143.9736488700727932 1917845.4185556992888451)", - "surface": 10170000, - "canton": null, - "numero_insee": "47087" - } - }, - { - "pk": 34693, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ESCASSEFORT", - "center": "POINT (432602.7706043484504335 1952346.7385394410230219)", - "surface": 14000000, - "canton": null, - "numero_insee": "47088" - } - }, - { - "pk": 12880, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ESCLOTTES", - "center": "POINT (426645.6939976722351275 1970616.4816128648817539)", - "surface": 9200000, - "canton": null, - "numero_insee": "47089" - } - }, - { - "pk": 3485, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ESPIENS", - "center": "POINT (443565.3177605759701692 1909892.3890581075102091)", - "surface": 17630000, - "canton": null, - "numero_insee": "47090" - } - }, - { - "pk": 24704, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ESTILLAC", - "center": "POINT (459089.2249277563532814 1909019.9301250404678285)", - "surface": 8060000, - "canton": null, - "numero_insee": "47091" - } - }, - { - "pk": 36302, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FALS", - "center": "POINT (467958.7211303143412806 1901785.6186786089092493)", - "surface": 9430000, - "canton": null, - "numero_insee": "47092" - } - }, - { - "pk": 17663, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FARGUES-SUR-OURBISE", - "center": "POINT (425689.4622212556423619 1916752.0200992231257260)", - "surface": 44460000, - "canton": null, - "numero_insee": "47093" - } - }, - { - "pk": 19851, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FAUGUEROLLES", - "center": "POINT (433301.0509342429577373 1940540.1342262816615403)", - "surface": 6950000, - "canton": null, - "numero_insee": "47094" - } - }, - { - "pk": 34152, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FAUILLET", - "center": "POINT (436925.3018324206350371 1938067.4803471125196666)", - "surface": 14240000, - "canton": null, - "numero_insee": "47095" - } - }, - { - "pk": 3347, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FERRENSAC", - "center": "POINT (465159.8579202688997611 1961625.7596392575651407)", - "surface": 12420000, - "canton": null, - "numero_insee": "47096" - } - }, - { - "pk": 14430, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FEUGAROLLES", - "center": "POINT (441922.2737166321603581 1914884.1568694638554007)", - "surface": 23940000, - "canton": null, - "numero_insee": "47097" - } - }, - { - "pk": 17072, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FIEUX", - "center": "POINT (446636.3178706824546680 1901708.9723912221379578)", - "surface": 14820000, - "canton": null, - "numero_insee": "47098" - } - }, - { - "pk": 37186, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FONGRAVE", - "center": "POINT (455967.2724658478982747 1935422.2098374029155821)", - "surface": 9480000, - "canton": null, - "numero_insee": "47099" - } - }, - { - "pk": 4028, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FOULAYRONNES", - "center": "POINT (464117.1470592699479312 1918371.6018360545858741)", - "surface": 28840000, - "canton": null, - "numero_insee": "47100" - } - }, - { - "pk": 8317, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FOURQUES-SUR-GARONNE", - "center": "POINT (426183.3004282384645194 1941782.6492499008309096)", - "surface": 13960000, - "canton": null, - "numero_insee": "47101" - } - }, - { - "pk": 6201, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FREGIMONT", - "center": "POINT (450278.4601654068683274 1921260.0952053386718035)", - "surface": 7620000, - "canton": null, - "numero_insee": "47104" - } - }, - { - "pk": 15573, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FRESPECH", - "center": "POINT (479079.7758263141149655 1924802.5096183589193970)", - "surface": 11810000, - "canton": null, - "numero_insee": "47105" - } - }, - { - "pk": 32800, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "FUMEL", - "center": "POINT (492016.3700194559642114 1946132.4096743359696120)", - "surface": 22780000, - "canton": null, - "numero_insee": "47106" - } - }, - { - "pk": 36263, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GALAPIAN", - "center": "POINT (446252.9126566993072629 1923829.5260815380606800)", - "surface": 9400000, - "canton": null, - "numero_insee": "47107" - } - }, - { - "pk": 13165, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GAUJAC", - "center": "POINT (423247.3583022319944575 1945762.5889905155636370)", - "surface": 7140000, - "canton": null, - "numero_insee": "47108" - } - }, - { - "pk": 5669, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GAVAUDUN", - "center": "POINT (485252.4163456046371721 1952983.4073559397365898)", - "surface": 21420000, - "canton": null, - "numero_insee": "47109" - } - }, - { - "pk": 35794, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GONTAUD-DE-NOGARET", - "center": "POINT (437191.6404682195279747 1942174.0043230568990111)", - "surface": 29430000, - "canton": null, - "numero_insee": "47110" - } - }, - { - "pk": 11639, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GRANGES-SUR-LOT", - "center": "POINT (451096.4300976481172256 1931277.5088880509138107)", - "surface": 4220000, - "canton": null, - "numero_insee": "47111" - } - }, - { - "pk": 23077, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GRATELOUP-SAINT-GAYRAND", - "center": "POINT (445241.7785146358655766 1937135.2606089813634753)", - "surface": 20800000, - "canton": null, - "numero_insee": "47112" - } - }, - { - "pk": 14639, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GRAYSSAS", - "center": "POINT (482129.0210512406192720 1907208.9893526197411120)", - "surface": 9300000, - "canton": null, - "numero_insee": "47113" - } - }, - { - "pk": 13000, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "GUERIN", - "center": "POINT (418413.6571222848724574 1937113.5968182652723044)", - "surface": 10500000, - "canton": null, - "numero_insee": "47115" - } - }, - { - "pk": 4127, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "HAUTEFAGE-LA-TOUR", - "center": "POINT (475249.3990200915723108 1927974.1058202548883855)", - "surface": 20710000, - "canton": null, - "numero_insee": "47117" - } - }, - { - "pk": 32293, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "HAUTESVIGNES", - "center": "POINT (441498.3555242602014914 1941909.3295855517499149)", - "surface": 8820000, - "canton": null, - "numero_insee": "47118" - } - }, - { - "pk": 19207, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "HOUEILLES", - "center": "POINT (416412.3800177428056486 1912771.1820799952838570)", - "surface": 67710000, - "canton": null, - "numero_insee": "47119" - } - }, - { - "pk": 28503, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "JUSIX", - "center": "POINT (417995.9542396476026624 1951325.0707783245015889)", - "surface": 7480000, - "canton": null, - "numero_insee": "47120" - } - }, - { - "pk": 29364, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LABASTIDE-CASTEL-AMOUROUX", - "center": "POINT (423680.8374564669793472 1929649.1743158262688667)", - "surface": 11990000, - "canton": null, - "numero_insee": "47121" - } - }, - { - "pk": 10089, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LABRETONIE", - "center": "POINT (443674.0013806136557832 1945130.7032979461364448)", - "surface": 11770000, - "canton": null, - "numero_insee": "47122" - } - }, - { - "pk": 29786, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LACAPELLE-BIRON", - "center": "POINT (485723.7915861381916329 1956490.9725599125958979)", - "surface": 13870000, - "canton": null, - "numero_insee": "47123" - } - }, - { - "pk": 30370, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LACAUSSADE", - "center": "POINT (479504.1246996553381905 1946028.4356600444298238)", - "surface": 10300000, - "canton": null, - "numero_insee": "47124" - } - }, - { - "pk": 4076, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LACEPEDE", - "center": "POINT (451841.9080097579862922 1925877.9501036889851093)", - "surface": 11310000, - "canton": null, - "numero_insee": "47125" - } - }, - { - "pk": 33239, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LACHAPELLE", - "center": "POINT (434885.1434457904542796 1954768.1220184590201825)", - "surface": 4510000, - "canton": null, - "numero_insee": "47126" - } - }, - { - "pk": 31628, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAFITTE-SUR-LOT", - "center": "POINT (448405.3604918165365234 1929853.7324623903259635)", - "surface": 16100000, - "canton": null, - "numero_insee": "47127" - } - }, - { - "pk": 7690, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAFOX", - "center": "POINT (468904.9111188707174733 1908400.5917537647765130)", - "surface": 5110000, - "canton": null, - "numero_insee": "47128" - } - }, - { - "pk": 22583, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAGARRIGUE", - "center": "POINT (444058.1783442192245275 1922910.3936532200314105)", - "surface": 4430000, - "canton": null, - "numero_insee": "47129" - } - }, - { - "pk": 22318, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAGRUERE", - "center": "POINT (434847.2435425398871303 1935147.2247177844401449)", - "surface": 9970000, - "canton": null, - "numero_insee": "47130" - } - }, - { - "pk": 9179, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAGUPIE", - "center": "POINT (423076.1241976511082612 1954370.1748090516775846)", - "surface": 8730000, - "canton": null, - "numero_insee": "47131" - } - }, - { - "pk": 20448, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LALANDUSSE", - "center": "POINT (456132.8887582337483764 1963753.1980777496937662)", - "surface": 9380000, - "canton": null, - "numero_insee": "47132" - } - }, - { - "pk": 4921, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAMONTJOIE", - "center": "POINT (455675.3034221255220473 1898179.9628114602528512)", - "surface": 17890000, - "canton": null, - "numero_insee": "47133" - } - }, - { - "pk": 15304, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LANNES", - "center": "POINT (435392.7804091835860163 1893407.0044061115477234)", - "surface": 32510000, - "canton": null, - "numero_insee": "47134" - } - }, - { - "pk": 12805, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAPARADE", - "center": "POINT (448756.0115194633253850 1935862.9902788999024779)", - "surface": 16220000, - "canton": null, - "numero_insee": "47135" - } - }, - { - "pk": 37431, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAPERCHE", - "center": "POINT (447126.8704268737928942 1951265.6837719068862498)", - "surface": 8420000, - "canton": null, - "numero_insee": "47136" - } - }, - { - "pk": 18840, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAPLUME", - "center": "POINT (455932.4634246197529137 1903387.7226241643074900)", - "surface": 32820000, - "canton": null, - "numero_insee": "47137" - } - }, - { - "pk": 20631, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAROQUE-TIMBAUT", - "center": "POINT (473706.8073040363378823 1920853.7392186566721648)", - "surface": 21650000, - "canton": null, - "numero_insee": "47138" - } - }, - { - "pk": 10611, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LASSERRE", - "center": "POINT (443556.3833632044261321 1898880.4363036812283099)", - "surface": 6490000, - "canton": null, - "numero_insee": "47139" - } - }, - { - "pk": 16611, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAUGNAC", - "center": "POINT (461972.7109011515276507 1923459.2613510130904615)", - "surface": 17290000, - "canton": null, - "numero_insee": "47140" - } - }, - { - "pk": 12174, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAUSSOU", - "center": "POINT (476234.5025356289697811 1954009.6525123915635049)", - "surface": 17210000, - "canton": null, - "numero_insee": "47141" - } - }, - { - "pk": 3348, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAUZUN", - "center": "POINT (451841.1680215717060491 1962216.0817025357391685)", - "surface": 24250000, - "canton": null, - "numero_insee": "47142" - } - }, - { - "pk": 19910, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAVARDAC", - "center": "POINT (437148.1030076176975854 1911140.6715478156693280)", - "surface": 15220000, - "canton": null, - "numero_insee": "47143" - } - }, - { - "pk": 25832, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAVERGNE", - "center": "POINT (447190.4951377719989978 1955670.8031270229257643)", - "surface": 20310000, - "canton": null, - "numero_insee": "47144" - } - }, - { - "pk": 4647, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LAYRAC", - "center": "POINT (465241.0402659093961120 1903565.0172623514663428)", - "surface": 38210000, - "canton": null, - "numero_insee": "47145" - } - }, - { - "pk": 3797, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LEDAT", - "center": "POINT (467043.3609206849941984 1939718.4856561725027859)", - "surface": 12480000, - "canton": null, - "numero_insee": "47146" - } - }, - { - "pk": 19672, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LEVIGNAC-DE-GUYENNE", - "center": "POINT (430636.3547924836166203 1960138.6038482417352498)", - "surface": 24990000, - "canton": null, - "numero_insee": "47147" - } - }, - { - "pk": 22400, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LEYRITZ-MONCASSIN", - "center": "POINT (427497.8522554537048563 1928079.0256200754083693)", - "surface": 20360000, - "canton": null, - "numero_insee": "47148" - } - }, - { - "pk": 9302, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LONGUEVILLE", - "center": "POINT (431383.4513009128859267 1942426.2749766227789223)", - "surface": 4790000, - "canton": null, - "numero_insee": "47150" - } - }, - { - "pk": 21668, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LOUBES-BERNAC", - "center": "POINT (439444.7640472938655876 1972323.9841777144465595)", - "surface": 19280000, - "canton": null, - "numero_insee": "47151" - } - }, - { - "pk": 15239, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LUSIGNAN-PETIT", - "center": "POINT (454597.6863278567907400 1919493.9605879909358919)", - "surface": 7300000, - "canton": null, - "numero_insee": "47154" - } - }, - { - "pk": 18502, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MADAILLAN", - "center": "POINT (459690.3364043026231229 1921037.7765123080462217)", - "surface": 24340000, - "canton": null, - "numero_insee": "47155" - } - }, - { - "pk": 14602, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MARMANDE", - "center": "POINT (427739.3615467083873227 1947301.2908468965906650)", - "surface": 44910000, - "canton": null, - "numero_insee": "47157" - } - }, - { - "pk": 29921, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MARMONT-PACHAS", - "center": "POINT (459959.7496896459488198 1900618.0810867105610669)", - "surface": 7990000, - "canton": null, - "numero_insee": "47158" - } - }, - { - "pk": 34295, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LE MAS-D'AGENAIS", - "center": "POINT (429639.6177792794187553 1935404.4718204718083143)", - "surface": 21120000, - "canton": null, - "numero_insee": "47159" - } - }, - { - "pk": 20849, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MASQUIERES", - "center": "POINT (496815.8912656810134649 1934760.3211083197966218)", - "surface": 11360000, - "canton": null, - "numero_insee": "47160" - } - }, - { - "pk": 35067, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MASSELS", - "center": "POINT (481779.9687547670910135 1925125.2572131077758968)", - "surface": 6250000, - "canton": null, - "numero_insee": "47161" - } - }, - { - "pk": 37187, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MASSOULES", - "center": "POINT (482960.3721931035979651 1927637.7217807946726680)", - "surface": 7940000, - "canton": null, - "numero_insee": "47162" - } - }, - { - "pk": 15029, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MAUVEZIN-SUR-GUPIE", - "center": "POINT (428189.3718017620267347 1953411.3936678823083639)", - "surface": 15970000, - "canton": null, - "numero_insee": "47163" - } - }, - { - "pk": 3933, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MAZIERES-NARESSE", - "center": "POINT (470654.3864704112056643 1962972.6922342651523650)", - "surface": 8950000, - "canton": null, - "numero_insee": "47164" - } - }, - { - "pk": 34384, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MEILHAN-SUR-GARONNE", - "center": "POINT (416324.0523702199570835 1947707.4926518758293241)", - "surface": 28700000, - "canton": null, - "numero_insee": "47165" - } - }, - { - "pk": 33801, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MEZIN", - "center": "POINT (433957.4005632718326524 1897499.5840993039309978)", - "surface": 31780000, - "canton": null, - "numero_insee": "47167" - } - }, - { - "pk": 37809, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MIRAMONT-DE-GUYENNE", - "center": "POINT (442586.8455318711348809 1955532.5830714961048216)", - "surface": 16680000, - "canton": null, - "numero_insee": "47168" - } - }, - { - "pk": 16452, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MOIRAX", - "center": "POINT (461519.0359095528256148 1905736.5217098272405565)", - "surface": 16400000, - "canton": null, - "numero_insee": "47169" - } - }, - { - "pk": 18320, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONBAHUS", - "center": "POINT (455944.5895632343599573 1950237.5837114194873720)", - "surface": 32060000, - "canton": null, - "numero_insee": "47170" - } - }, - { - "pk": 28917, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONBALEN", - "center": "POINT (472472.3745195925002918 1924847.7563797649927437)", - "surface": 12930000, - "canton": null, - "numero_insee": "47171" - } - }, - { - "pk": 15905, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONCAUT", - "center": "POINT (452603.4117969865910709 1906463.4796549060847610)", - "surface": 15980000, - "canton": null, - "numero_insee": "47172" - } - }, - { - "pk": 20254, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONCLAR", - "center": "POINT (455330.1784655653173104 1939821.5731681161560118)", - "surface": 24110000, - "canton": null, - "numero_insee": "47173" - } - }, - { - "pk": 15060, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONCRABEAU", - "center": "POINT (441984.5917517064372078 1895263.5163959455676377)", - "surface": 50400000, - "canton": null, - "numero_insee": "47174" - } - }, - { - "pk": 17910, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONFLANQUIN", - "center": "POINT (474384.1702373310690746 1947787.8101193250622600)", - "surface": 62350000, - "canton": null, - "numero_insee": "47175" - } - }, - { - "pk": 24333, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONGAILLARD", - "center": "POINT (436722.8524149069562554 1914140.3746069520711899)", - "surface": 8600000, - "canton": null, - "numero_insee": "47176" - } - }, - { - "pk": 25382, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONHEURT", - "center": "POINT (437911.5043576934840530 1927764.7326394715346396)", - "surface": 11330000, - "canton": null, - "numero_insee": "47177" - } - }, - { - "pk": 25289, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONSEGUR", - "center": "POINT (483828.2972023283364251 1943661.8363011726178229)", - "surface": 11380000, - "canton": null, - "numero_insee": "47178" - } - }, - { - "pk": 8540, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONSEMPRON-LIBOS", - "center": "POINT (488118.3736972920014523 1945399.2715161091182381)", - "surface": 8960000, - "canton": null, - "numero_insee": "47179" - } - }, - { - "pk": 33246, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTAGNAC-SUR-AUVIGNON", - "center": "POINT (449479.5518501310143620 1908940.2921162962447852)", - "surface": 22910000, - "canton": null, - "numero_insee": "47180" - } - }, - { - "pk": 20801, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTAGNAC-SUR-LEDE", - "center": "POINT (481476.9826628190930933 1949548.4884131490252912)", - "surface": 19580000, - "canton": null, - "numero_insee": "47181" - } - }, - { - "pk": 15391, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTASTRUC", - "center": "POINT (455284.5529207076178864 1945326.9792622583918273)", - "surface": 24850000, - "canton": null, - "numero_insee": "47182" - } - }, - { - "pk": 27359, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTAURIOL", - "center": "POINT (460581.9588554683141410 1958384.4727270372677594)", - "surface": 9940000, - "canton": null, - "numero_insee": "47183" - } - }, - { - "pk": 18498, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTAUT", - "center": "POINT (468598.0317710448289290 1957449.9176135291345417)", - "surface": 14260000, - "canton": null, - "numero_insee": "47184" - } - }, - { - "pk": 15655, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTAYRAL", - "center": "POINT (492153.0876864823512733 1941728.9250801757443696)", - "surface": 25010000, - "canton": null, - "numero_insee": "47185" - } - }, - { - "pk": 20287, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTETON", - "center": "POINT (434349.0533475988777354 1959068.1654435251839459)", - "surface": 13940000, - "canton": null, - "numero_insee": "47187" - } - }, - { - "pk": 15979, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTIGNAC-DE-LAUZUN", - "center": "POINT (451810.7287241476587951 1953807.0907965488731861)", - "surface": 20560000, - "canton": null, - "numero_insee": "47188" - } - }, - { - "pk": 25206, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTIGNAC-TOUPINERIE", - "center": "POINT (442217.9413800083566457 1951725.5633820521179587)", - "surface": 8310000, - "canton": null, - "numero_insee": "47189" - } - }, - { - "pk": 16555, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTPEZAT", - "center": "POINT (456125.4460460662376136 1928416.1042100763879716)", - "surface": 24270000, - "canton": null, - "numero_insee": "47190" - } - }, - { - "pk": 21855, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONTPOUILLAN", - "center": "POINT (421471.2305004431400448 1942644.6547076913993806)", - "surface": 12150000, - "canton": null, - "numero_insee": "47191" - } - }, - { - "pk": 35556, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MONVIEL", - "center": "POINT (457721.4571838262490928 1953255.4457091507501900)", - "surface": 6250000, - "canton": null, - "numero_insee": "47192" - } - }, - { - "pk": 18500, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MOULINET", - "center": "POINT (460544.9349171616486274 1950776.2408392371144146)", - "surface": 14700000, - "canton": null, - "numero_insee": "47193" - } - }, - { - "pk": 31220, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "MOUSTIER", - "center": "POINT (438427.3590964882750995 1962205.1253561794292182)", - "surface": 8280000, - "canton": null, - "numero_insee": "47194" - } - }, - { - "pk": 19718, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "NERAC", - "center": "POINT (440299.2780808071838692 1905360.5030202898196876)", - "surface": 62670000, - "canton": null, - "numero_insee": "47195" - } - }, - { - "pk": 9306, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "NICOLE", - "center": "POINT (439914.3212390450062230 1927681.2009508535265923)", - "surface": 4740000, - "canton": null, - "numero_insee": "47196" - } - }, - { - "pk": 23247, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "NOMDIEU", - "center": "POINT (450259.8678331598639488 1899336.3884720890782773)", - "surface": 12590000, - "canton": null, - "numero_insee": "47197" - } - }, - { - "pk": 12039, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PAILLOLES", - "center": "POINT (465515.3138332969974726 1942909.1776507783215493)", - "surface": 9210000, - "canton": null, - "numero_insee": "47198" - } - }, - { - "pk": 36178, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PARDAILLAN", - "center": "POINT (435900.0947798817651346 1965187.3247129241935909)", - "surface": 19630000, - "canton": null, - "numero_insee": "47199" - } - }, - { - "pk": 19088, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PARRANQUET", - "center": "POINT (479259.3806671851198189 1963444.5414622076787055)", - "surface": 9650000, - "canton": null, - "numero_insee": "47200" - } - }, - { - "pk": 23503, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PAULHIAC", - "center": "POINT (479939.7687593994196504 1953840.2124462067149580)", - "surface": 22280000, - "canton": null, - "numero_insee": "47202" - } - }, - { - "pk": 17336, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PENNE-D'AGENAIS", - "center": "POINT (480521.4048322386224754 1932022.1285343663766980)", - "surface": 47120000, - "canton": null, - "numero_insee": "47203" - } - }, - { - "pk": 29363, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PEYRIERE", - "center": "POINT (438487.8229186019743793 1954898.0328859619330615)", - "surface": 8190000, - "canton": null, - "numero_insee": "47204" - } - }, - { - "pk": 9422, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PINDERES", - "center": "POINT (413234.8737349796574563 1921754.5795929743908346)", - "surface": 40960000, - "canton": null, - "numero_insee": "47205" - } - }, - { - "pk": 20128, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PINEL-HAUTERIVE", - "center": "POINT (459118.1539966856362298 1941754.9717798535712063)", - "surface": 21880000, - "canton": null, - "numero_insee": "47206" - } - }, - { - "pk": 6065, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "POMPIEY", - "center": "POINT (429624.8263945335056633 1912980.4810620346106589)", - "surface": 19680000, - "canton": null, - "numero_insee": "47207" - } - }, - { - "pk": 19279, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PONT-DU-CASSE", - "center": "POINT (467137.5885707355919294 1916294.4104659664444625)", - "surface": 19360000, - "canton": null, - "numero_insee": "47209" - } - }, - { - "pk": 24473, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PORT-SAINTE-MARIE", - "center": "POINT (443184.6280899015255272 1919599.6385352606885135)", - "surface": 19080000, - "canton": null, - "numero_insee": "47210" - } - }, - { - "pk": 20813, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "POUDENAS", - "center": "POINT (428567.6373070172267035 1895552.9440342320594937)", - "surface": 17370000, - "canton": null, - "numero_insee": "47211" - } - }, - { - "pk": 37270, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "POUSSIGNAC", - "center": "POINT (419469.2229525277507491 1930515.3295686007477343)", - "surface": 13090000, - "canton": null, - "numero_insee": "47212" - } - }, - { - "pk": 15980, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PRAYSSAS", - "center": "POINT (454367.6229259305400774 1923095.8964471034705639)", - "surface": 26530000, - "canton": null, - "numero_insee": "47213" - } - }, - { - "pk": 3009, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PUCH-D'AGENAIS", - "center": "POINT (434209.4815170532674529 1927533.8911914629861712)", - "surface": 23310000, - "canton": null, - "numero_insee": "47214" - } - }, - { - "pk": 19511, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PUJOLS", - "center": "POINT (469316.1283463902655058 1931228.3603821909055114)", - "surface": 25160000, - "canton": null, - "numero_insee": "47215" - } - }, - { - "pk": 3275, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PUYMICLAN", - "center": "POINT (439146.3912060829461552 1947896.1648906220216304)", - "surface": 25860000, - "canton": null, - "numero_insee": "47216" - } - }, - { - "pk": 20129, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PUYMIROL", - "center": "POINT (477394.3565933747449890 1910773.5375107512809336)", - "surface": 19590000, - "canton": null, - "numero_insee": "47217" - } - }, - { - "pk": 34609, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "PUYSSERAMPION", - "center": "POINT (439668.2827861794503406 1957410.4060856141149998)", - "surface": 10860000, - "canton": null, - "numero_insee": "47218" - } - }, - { - "pk": 20425, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "RAYET", - "center": "POINT (475648.4204272422939539 1964315.4904205708298832)", - "surface": 9970000, - "canton": null, - "numero_insee": "47219" - } - }, - { - "pk": 33693, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "RAZIMET", - "center": "POINT (431985.7687478924053721 1930118.2595497295260429)", - "surface": 7320000, - "canton": null, - "numero_insee": "47220" - } - }, - { - "pk": 32372, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "REAUP-LISSE", - "center": "POINT (429514.0221126395044848 1902167.9250514633022249)", - "surface": 70970000, - "canton": null, - "numero_insee": "47221" - } - }, - { - "pk": 6991, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LA REUNION", - "center": "POINT (422737.7482269835891202 1922633.9309069472365081)", - "surface": 28170000, - "canton": null, - "numero_insee": "47222" - } - }, - { - "pk": 18345, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "RIVES", - "center": "POINT (473057.5391650520614348 1962892.5329726811032742)", - "surface": 12790000, - "canton": null, - "numero_insee": "47223" - } - }, - { - "pk": 26372, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ROMESTAING", - "center": "POINT (415304.8080743910395540 1937788.6593450843356550)", - "surface": 15540000, - "canton": null, - "numero_insee": "47224" - } - }, - { - "pk": 11513, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ROQUEFORT", - "center": "POINT (457580.2454661037772894 1909908.3887167661450803)", - "surface": 7590000, - "canton": null, - "numero_insee": "47225" - } - }, - { - "pk": 10110, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "ROUMAGNE", - "center": "POINT (441546.9322114916867577 1960228.8659375163260847)", - "surface": 10640000, - "canton": null, - "numero_insee": "47226" - } - }, - { - "pk": 11958, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "RUFFIAC", - "center": "POINT (416551.4626866640755907 1932293.1370565418619663)", - "surface": 13020000, - "canton": null, - "numero_insee": "47227" - } - }, - { - "pk": 6162, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-ANTOINE-DE-FICALBA", - "center": "POINT (470945.9588143364526331 1927838.2778250086121261)", - "surface": 11040000, - "canton": null, - "numero_insee": "47228" - } - }, - { - "pk": 11271, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-ASTIER", - "center": "POINT (436345.9241371693788096 1971797.8293640131596476)", - "surface": 9490000, - "canton": null, - "numero_insee": "47229" - } - }, - { - "pk": 20834, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-AUBIN", - "center": "POINT (480832.8356448481208645 1942736.0062784124165773)", - "surface": 18490000, - "canton": null, - "numero_insee": "47230" - } - }, - { - "pk": 24245, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-AVIT", - "center": "POINT (431879.7365996659500524 1955043.5771344213280827)", - "surface": 9120000, - "canton": null, - "numero_insee": "47231" - } - }, - { - "pk": 16307, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-BARTHELEMY-D'AGENAIS", - "center": "POINT (443542.4134779585292563 1948933.5983731681481004)", - "surface": 15320000, - "canton": null, - "numero_insee": "47232" - } - }, - { - "pk": 27871, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-BAZEILLE", - "center": "POINT (422310.0821613168809563 1950159.4558918338734657)", - "surface": 20790000, - "canton": null, - "numero_insee": "47233" - } - }, - { - "pk": 14630, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-CAPRAIS-DE-LERM", - "center": "POINT (473563.9434831521357410 1913945.1703239057678729)", - "surface": 13640000, - "canton": null, - "numero_insee": "47234" - } - }, - { - "pk": 33970, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-COLOMB-DE-LAUZUN", - "center": "POINT (452376.4826284010196105 1958016.1538180108182132)", - "surface": 23390000, - "canton": null, - "numero_insee": "47235" - } - }, - { - "pk": 37225, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-COLOMBE-DE-DURAS", - "center": "POINT (424159.8301847677212209 1968593.8721837147604674)", - "surface": 7000000, - "canton": null, - "numero_insee": "47236" - } - }, - { - "pk": 18501, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-COLOMBE-DE-VILLENEUVE", - "center": "POINT (465924.3841555924736895 1929798.7355880138929933)", - "surface": 19010000, - "canton": null, - "numero_insee": "47237" - } - }, - { - "pk": 4721, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-COLOMBE-EN-BRUILHOIS", - "center": "POINT (454266.1384406611905433 1911182.3176980004645884)", - "surface": 21280000, - "canton": null, - "numero_insee": "47238" - } - }, - { - "pk": 29365, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-ETIENNE-DE-FOUGERES", - "center": "POINT (458262.0770298524294049 1936342.1820797929540277)", - "surface": 10000000, - "canton": null, - "numero_insee": "47239" - } - }, - { - "pk": 11919, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-ETIENNE-DE-VILLEREAL", - "center": "POINT (474899.9975238659535535 1958002.7394502498209476)", - "surface": 14560000, - "canton": null, - "numero_insee": "47240" - } - }, - { - "pk": 25833, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-EUTROPE-DE-BORN", - "center": "POINT (470526.4584363992325962 1954262.5856149808969349)", - "surface": 38310000, - "canton": null, - "numero_insee": "47241" - } - }, - { - "pk": 5627, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-FRONT-SUR-LEMANCE", - "center": "POINT (493566.3306016221758910 1952351.7850109308492392)", - "surface": 19770000, - "canton": null, - "numero_insee": "47242" - } - }, - { - "pk": 14732, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-GEMME-MARTAILLAC", - "center": "POINT (426464.5867400831775740 1931974.6228991269599646)", - "surface": 14120000, - "canton": null, - "numero_insee": "47244" - } - }, - { - "pk": 10213, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-GERAUD", - "center": "POINT (426931.1085580176440999 1960308.1785212850663811)", - "surface": 5740000, - "canton": null, - "numero_insee": "47245" - } - }, - { - "pk": 20408, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-HILAIRE-DE-LUSIGNAN", - "center": "POINT (455712.0604789271019399 1917901.4854362616315484)", - "surface": 16970000, - "canton": null, - "numero_insee": "47246" - } - }, - { - "pk": 21900, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-JEAN-DE-DURAS", - "center": "POINT (438684.5795420533395372 1967412.6382574620656669)", - "surface": 16570000, - "canton": null, - "numero_insee": "47247" - } - }, - { - "pk": 9073, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-JEAN-DE-THURAC", - "center": "POINT (472116.4442995555582456 1907426.1678498571272939)", - "surface": 5120000, - "canton": null, - "numero_insee": "47248" - } - }, - { - "pk": 30013, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-LAURENT", - "center": "POINT (445408.3793103337520733 1917015.2695630842354149)", - "surface": 4210000, - "canton": null, - "numero_insee": "47249" - } - }, - { - "pk": 14801, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-LEGER", - "center": "POINT (438441.8222804224351421 1924165.2902274387888610)", - "surface": 5710000, - "canton": null, - "numero_insee": "47250" - } - }, - { - "pk": 27440, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-LEON", - "center": "POINT (432446.6034454774926417 1922814.3049099023919553)", - "surface": 9590000, - "canton": null, - "numero_insee": "47251" - } - }, - { - "pk": 17335, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-LIVRADE-SUR-LOT", - "center": "POINT (461473.5368706339504570 1935367.7513593540061265)", - "surface": 31090000, - "canton": null, - "numero_insee": "47252" - } - }, - { - "pk": 28785, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-MARTHE", - "center": "POINT (425519.8430134088848718 1937272.4207440973259509)", - "surface": 9730000, - "canton": null, - "numero_insee": "47253" - } - }, - { - "pk": 23242, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-MARTIN-CURTON", - "center": "POINT (411478.6336630583391525 1928347.1100970739498734)", - "surface": 41540000, - "canton": null, - "numero_insee": "47254" - } - }, - { - "pk": 31512, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-MARTIN-DE-BEAUVILLE", - "center": "POINT (478558.1534555215039290 1915288.0315343071706593)", - "surface": 7580000, - "canton": null, - "numero_insee": "47255" - } - }, - { - "pk": 36493, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-MARTIN-DE-VILLEREAL", - "center": "POINT (479078.3063330218428746 1961140.6529337898828089)", - "surface": 8240000, - "canton": null, - "numero_insee": "47256" - } - }, - { - "pk": 31858, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-MARTIN-PETIT", - "center": "POINT (421571.3534283690969460 1954758.1584189566783607)", - "surface": 6400000, - "canton": null, - "numero_insee": "47257" - } - }, - { - "pk": 15745, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINTE-MAURE-DE-PEYRIAC", - "center": "POINT (424791.0738640909548849 1892218.1319105646107346)", - "surface": 23250000, - "canton": null, - "numero_insee": "47258" - } - }, - { - "pk": 30257, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-MAURICE-DE-LESTAPEL", - "center": "POINT (459909.4942938753520139 1954975.3573632913175970)", - "surface": 7780000, - "canton": null, - "numero_insee": "47259" - } - }, - { - "pk": 14641, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-MAURIN", - "center": "POINT (484577.4758532412815839 1913736.3198294558096677)", - "surface": 21870000, - "canton": null, - "numero_insee": "47260" - } - }, - { - "pk": 4137, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-NICOLAS-DE-LA-BALERME", - "center": "POINT (473341.7522618079092354 1904533.2116296887397766)", - "surface": 4800000, - "canton": null, - "numero_insee": "47262" - } - }, - { - "pk": 7548, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-PARDOUX-DU-BREUIL", - "center": "POINT (429773.6007106886245310 1943414.0145659844856709)", - "surface": 7200000, - "canton": null, - "numero_insee": "47263" - } - }, - { - "pk": 34153, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-PARDOUX-ISAAC", - "center": "POINT (444462.1764134089462459 1958751.4393463544547558)", - "surface": 7330000, - "canton": null, - "numero_insee": "47264" - } - }, - { - "pk": 17907, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-PASTOUR", - "center": "POINT (461900.1564145169104449 1944280.6662192412186414)", - "surface": 14620000, - "canton": null, - "numero_insee": "47265" - } - }, - { - "pk": 17679, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-PE-SAINT-SIMON", - "center": "POINT (419891.0348309648688883 1891576.9830925043206662)", - "surface": 17480000, - "canton": null, - "numero_insee": "47266" - } - }, - { - "pk": 35306, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-PIERRE-DE-BUZET", - "center": "POINT (434776.2260951880016364 1919530.0518121449276805)", - "surface": 8560000, - "canton": null, - "numero_insee": "47267" - } - }, - { - "pk": 23282, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-PIERRE-DE-CLAIRAC", - "center": "POINT (473095.8481149793369696 1910037.0961244616191834)", - "surface": 13250000, - "canton": null, - "numero_insee": "47269" - } - }, - { - "pk": 17334, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-PIERRE-SUR-DROPT", - "center": "POINT (430911.8147668920573778 1963143.9954275204800069)", - "surface": 8200000, - "canton": null, - "numero_insee": "47271" - } - }, - { - "pk": 14370, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-QUENTIN-DU-DROPT", - "center": "POINT (462120.4316073731170036 1966005.1110725759062916)", - "surface": 11890000, - "canton": null, - "numero_insee": "47272" - } - }, - { - "pk": 30371, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-ROBERT", - "center": "POINT (476336.0001373335253447 1917672.1480128823313862)", - "surface": 6700000, - "canton": null, - "numero_insee": "47273" - } - }, - { - "pk": 13295, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-ROMAIN-LE-NOBLE", - "center": "POINT (475022.6926917311502621 1907049.8628792865201831)", - "surface": 8430000, - "canton": null, - "numero_insee": "47274" - } - }, - { - "pk": 3977, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-SALVY", - "center": "POINT (449255.0741114512784407 1923954.4971591453067958)", - "surface": 9320000, - "canton": null, - "numero_insee": "47275" - } - }, - { - "pk": 33236, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-SIXTE", - "center": "POINT (475547.2996532192337327 1904151.0905105215497315)", - "surface": 5800000, - "canton": null, - "numero_insee": "47279" - } - }, - { - "pk": 4877, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-SYLVESTRE-SUR-LOT", - "center": "POINT (478183.3833426901837811 1936307.2584119853563607)", - "surface": 21480000, - "canton": null, - "numero_insee": "47280" - } - }, - { - "pk": 27324, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-URCISSE", - "center": "POINT (479118.5136318446602672 1908084.9516865757759660)", - "surface": 10950000, - "canton": null, - "numero_insee": "47281" - } - }, - { - "pk": 3483, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-VINCENT-DE-LAMONTJOIE", - "center": "POINT (452750.7920542943757027 1900758.5429426906630397)", - "surface": 15190000, - "canton": null, - "numero_insee": "47282" - } - }, - { - "pk": 13142, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-VITE", - "center": "POINT (488250.0869360776850954 1941596.3737822365947068)", - "surface": 5520000, - "canton": null, - "numero_insee": "47283" - } - }, - { - "pk": 22800, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SALLES", - "center": "POINT (484887.7903290104586631 1948675.8829418555833399)", - "surface": 21560000, - "canton": null, - "numero_insee": "47284" - } - }, - { - "pk": 4989, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAMAZAN", - "center": "POINT (422597.9542215161491185 1939550.6997269948478788)", - "surface": 17250000, - "canton": null, - "numero_insee": "47285" - } - }, - { - "pk": 3820, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAUMEJAN", - "center": "POINT (411469.4361495060147718 1917335.2988455258309841)", - "surface": 19620000, - "canton": null, - "numero_insee": "47286" - } - }, - { - "pk": 11896, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAUMONT", - "center": "POINT (449315.0060037461225875 1904634.2934313982259482)", - "surface": 6800000, - "canton": null, - "numero_insee": "47287" - } - }, - { - "pk": 35405, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAUVAGNAS", - "center": "POINT (473135.2904446448083036 1917345.2543777162209153)", - "surface": 13590000, - "canton": null, - "numero_insee": "47288" - } - }, - { - "pk": 10133, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LA SAUVETAT-DE-SAVERES", - "center": "POINT (476753.8554555579321459 1915573.3695380012504756)", - "surface": 6860000, - "canton": null, - "numero_insee": "47289" - } - }, - { - "pk": 16310, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LA SAUVETAT-SUR-LEDE", - "center": "POINT (471015.7323813253315166 1943555.4449124550446868)", - "surface": 14130000, - "canton": null, - "numero_insee": "47291" - } - }, - { - "pk": 8573, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAUVETERRE-LA-LEMANCE", - "center": "POINT (496748.6352442161296494 1954880.8587957876734436)", - "surface": 23570000, - "canton": null, - "numero_insee": "47292" - } - }, - { - "pk": 14333, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAUVETERRE-SAINT-DENIS", - "center": "POINT (468919.0319601495284587 1906698.8775759364943951)", - "surface": 8170000, - "canton": null, - "numero_insee": "47293" - } - }, - { - "pk": 4997, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAVIGNAC-DE-DURAS", - "center": "POINT (429346.6387133217649534 1970839.0157419373281300)", - "surface": 14980000, - "canton": null, - "numero_insee": "47294" - } - }, - { - "pk": 24246, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAVIGNAC-SUR-LEYZE", - "center": "POINT (477021.6227142676361836 1943605.3008295376785100)", - "surface": 11470000, - "canton": null, - "numero_insee": "47295" - } - }, - { - "pk": 31221, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SEGALAS", - "center": "POINT (456598.8145286284852773 1955848.8519412104506046)", - "surface": 12860000, - "canton": null, - "numero_insee": "47296" - } - }, - { - "pk": 10844, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SEMBAS", - "center": "POINT (464954.1131590193836018 1926086.7564532535616308)", - "surface": 12620000, - "canton": null, - "numero_insee": "47297" - } - }, - { - "pk": 10974, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SENESTIS", - "center": "POINT (432722.8132460918277502 1937832.5044992808252573)", - "surface": 11300000, - "canton": null, - "numero_insee": "47298" - } - }, - { - "pk": 15571, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SERIGNAC-PEBOUDOU", - "center": "POINT (456573.9261238949839026 1958851.7679270133376122)", - "surface": 12210000, - "canton": null, - "numero_insee": "47299" - } - }, - { - "pk": 26603, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SERIGNAC-SUR-GARONNE", - "center": "POINT (452637.9869346096529625 1914372.2614166773855686)", - "surface": 8900000, - "canton": null, - "numero_insee": "47300" - } - }, - { - "pk": 23107, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SEYCHES", - "center": "POINT (437411.5974460842553526 1951885.9959763858933002)", - "surface": 24940000, - "canton": null, - "numero_insee": "47301" - } - }, - { - "pk": 15320, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SOS", - "center": "POINT (422645.0843027526279911 1897506.1567779364995658)", - "surface": 53190000, - "canton": null, - "numero_insee": "47302" - } - }, - { - "pk": 21661, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SOUMENSAC", - "center": "POINT (441288.7453255461296067 1967233.9826436475850642)", - "surface": 11500000, - "canton": null, - "numero_insee": "47303" - } - }, - { - "pk": 9765, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TAILLEBOURG", - "center": "POINT (429996.1449645996326581 1940713.0132301733829081)", - "surface": 7160000, - "canton": null, - "numero_insee": "47304" - } - }, - { - "pk": 15270, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TAYRAC", - "center": "POINT (479881.0736868247040547 1912696.2306553416419774)", - "surface": 13010000, - "canton": null, - "numero_insee": "47305" - } - }, - { - "pk": 4134, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "LE TEMPLE-SUR-LOT", - "center": "POINT (455494.1548455202719197 1932114.7967784812208265)", - "surface": 17030000, - "canton": null, - "numero_insee": "47306" - } - }, - { - "pk": 26859, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "THEZAC", - "center": "POINT (494688.8428274302277714 1937745.7976541437674314)", - "surface": 11280000, - "canton": null, - "numero_insee": "47307" - } - }, - { - "pk": 19558, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TOMBEBOEUF", - "center": "POINT (450055.4063531146966852 1948186.6947582343127578)", - "surface": 18410000, - "canton": null, - "numero_insee": "47309" - } - }, - { - "pk": 27673, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TOURLIAC", - "center": "POINT (478537.9233124033780769 1965941.1378722439985722)", - "surface": 9790000, - "canton": null, - "numero_insee": "47311" - } - }, - { - "pk": 15572, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TOURNON-D'AGENAIS", - "center": "POINT (493024.6229371734661981 1933227.2038791289087385)", - "surface": 21440000, - "canton": null, - "numero_insee": "47312" - } - }, - { - "pk": 26574, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TOURTRES", - "center": "POINT (447360.2238289407687262 1947263.4288749208208174)", - "surface": 11760000, - "canton": null, - "numero_insee": "47313" - } - }, - { - "pk": 12444, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TREMONS", - "center": "POINT (484591.3629480795934796 1936160.2764236165676266)", - "surface": 13520000, - "canton": null, - "numero_insee": "47314" - } - }, - { - "pk": 20195, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "TRENTELS", - "center": "POINT (482662.8770428285934031 1939347.6296820386778563)", - "surface": 19520000, - "canton": null, - "numero_insee": "47315" - } - }, - { - "pk": 3955, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VARES", - "center": "POINT (442124.6320215556188487 1938811.2478008843027055)", - "surface": 16830000, - "canton": null, - "numero_insee": "47316" - } - }, - { - "pk": 21196, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VERTEUIL-D'AGENAIS", - "center": "POINT (446097.0782521204091609 1942648.1385721699334681)", - "surface": 22370000, - "canton": null, - "numero_insee": "47317" - } - }, - { - "pk": 5208, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VIANNE", - "center": "POINT (438923.4048979722429067 1914358.7989796330220997)", - "surface": 9880000, - "canton": null, - "numero_insee": "47318" - } - }, - { - "pk": 30588, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VILLEBRAMAR", - "center": "POINT (451952.2904368226882070 1948803.0372079024091363)", - "surface": 10070000, - "canton": null, - "numero_insee": "47319" - } - }, - { - "pk": 3460, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VILLEFRANCHE-DU-QUEYRAN", - "center": "POINT (430328.7799370237626135 1924698.8152073435485363)", - "surface": 16810000, - "canton": null, - "numero_insee": "47320" - } - }, - { - "pk": 35152, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VILLENEUVE-DE-DURAS", - "center": "POINT (433628.4253432997502387 1973577.2041667569428682)", - "surface": 11860000, - "canton": null, - "numero_insee": "47321" - } - }, - { - "pk": 36039, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VILLENEUVE-SUR-LOT", - "center": "POINT (472969.9419261773000471 1937265.0299147006589919)", - "surface": 81190000, - "canton": null, - "numero_insee": "47323" - } - }, - { - "pk": 4436, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VILLEREAL", - "center": "POINT (474780.7884758628206328 1960304.1400352830532938)", - "surface": 13960000, - "canton": null, - "numero_insee": "47324" - } - }, - { - "pk": 28915, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VILLETON", - "center": "POINT (435873.0768204962951131 1932152.5357913859188557)", - "surface": 10820000, - "canton": null, - "numero_insee": "47325" - } - }, - { - "pk": 15413, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "VIRAZEIL", - "center": "POINT (433040.4163064010208473 1947845.6492171459831297)", - "surface": 19920000, - "canton": null, - "numero_insee": "47326" - } - }, - { - "pk": 8974, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "XAINTRAILLES", - "center": "POINT (433621.3950705952011049 1913914.5011134401429445)", - "surface": 10380000, - "canton": null, - "numero_insee": "47327" - } - }, - { - "pk": 26937, - "model": "ishtar_common.town", - "fields": { - "departement": 48, - "name": "SAINT-GEORGES", - "center": "POINT (487672.7916467873146757 1938788.6269423374906182)", - "surface": 15960000, - "canton": null, - "numero_insee": "47328" - } - }, - { - "pk": 17926, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ALBARET-LE-COMTAL", - "center": "POINT (663764.2185849328525364 1985510.4460219731554389)", - "surface": 29620000, - "canton": null, - "numero_insee": "48001" - } - }, - { - "pk": 21348, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ALBARET-SAINTE-MARIE", - "center": "POINT (672154.4300129138864577 1987683.4361242074519396)", - "surface": 15710000, - "canton": null, - "numero_insee": "48002" - } - }, - { - "pk": 15975, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ALLENC", - "center": "POINT (706499.5650742052821442 1951035.9060104298405349)", - "surface": 39130000, - "canton": null, - "numero_insee": "48003" - } - }, - { - "pk": 15383, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ALTIER", - "center": "POINT (721000.2062867734348401 1940948.1301501980051398)", - "surface": 54760000, - "canton": null, - "numero_insee": "48004" - } - }, - { - "pk": 23264, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ANTRENAS", - "center": "POINT (672834.6972687579691410 1954555.0661959666758776)", - "surface": 17480000, - "canton": null, - "numero_insee": "48005" - } - }, - { - "pk": 33210, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ARZENC-D'APCHER", - "center": "POINT (661283.8102957828668877 1982886.8563309200108051)", - "surface": 7840000, - "canton": null, - "numero_insee": "48007" - } - }, - { - "pk": 21240, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ARZENC-DE-RANDON", - "center": "POINT (701399.7507082261145115 1962204.3766062229406089)", - "surface": 69520000, - "canton": null, - "numero_insee": "48008" - } - }, - { - "pk": 19004, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "AUMONT-AUBRAC", - "center": "POINT (674809.8757593458285555 1969587.3149655256420374)", - "surface": 26570000, - "canton": null, - "numero_insee": "48009" - } - }, - { - "pk": 36616, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "AUROUX", - "center": "POINT (710109.8414829435059801 1973890.1587143121287227)", - "surface": 35140000, - "canton": null, - "numero_insee": "48010" - } - }, - { - "pk": 20995, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES MONTS-VERTS", - "center": "POINT (669987.8527754833921790 1983460.8518986017443240)", - "surface": 28830000, - "canton": null, - "numero_insee": "48012" - } - }, - { - "pk": 16981, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BADAROUX", - "center": "POINT (696802.8254655016353354 1949452.2149994266219437)", - "surface": 20730000, - "canton": null, - "numero_insee": "48013" - } - }, - { - "pk": 12887, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BAGNOLS-LES-BAINS", - "center": "POINT (705437.5012871515937150 1946422.0882473294623196)", - "surface": 2380000, - "canton": null, - "numero_insee": "48014" - } - }, - { - "pk": 16955, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "PIED-DE-BORNE", - "center": "POINT (729888.5487452807137743 1943426.0871131664607674)", - "surface": 27370000, - "canton": null, - "numero_insee": "48015" - } - }, - { - "pk": 16018, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BALSIEGES", - "center": "POINT (687855.0094675738364458 1942168.9404088137671351)", - "surface": 32950000, - "canton": null, - "numero_insee": "48016" - } - }, - { - "pk": 33498, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BANASSAC", - "center": "POINT (667075.1781814390560612 1937188.2703322817105800)", - "surface": 17430000, - "canton": null, - "numero_insee": "48017" - } - }, - { - "pk": 5024, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BARJAC", - "center": "POINT (685308.5390385694336146 1947352.8650126014836133)", - "surface": 29890000, - "canton": null, - "numero_insee": "48018" - } - }, - { - "pk": 21490, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BARRE-DES-CEVENNES", - "center": "POINT (706580.9278182419948280 1917801.4583288063295186)", - "surface": 34450000, - "canton": null, - "numero_insee": "48019" - } - }, - { - "pk": 15449, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BASSURELS", - "center": "POINT (701566.5376105664763600 1907047.4880727645941079)", - "surface": 46690000, - "canton": null, - "numero_insee": "48020" - } - }, - { - "pk": 14959, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA BASTIDE-PUYLAURENT", - "center": "POINT (723302.3428385463776067 1952780.0452253075782210)", - "surface": 24020000, - "canton": null, - "numero_insee": "48021" - } - }, - { - "pk": 29198, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BEDOUES", - "center": "POINT (704089.5025283598806709 1928291.5528533400502056)", - "surface": 25890000, - "canton": null, - "numero_insee": "48022" - } - }, - { - "pk": 30654, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BELVEZET", - "center": "POINT (711601.1397779921535403 1951479.5572301917709410)", - "surface": 12260000, - "canton": null, - "numero_insee": "48023" - } - }, - { - "pk": 15477, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES BESSONS", - "center": "POINT (671760.4910917030647397 1975067.2172753056511283)", - "surface": 23330000, - "canton": null, - "numero_insee": "48025" - } - }, - { - "pk": 27385, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BLAVIGNAC", - "center": "POINT (674871.3645401193061844 1986004.6576323059853166)", - "surface": 13720000, - "canton": null, - "numero_insee": "48026" - } - }, - { - "pk": 16784, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES BONDONS", - "center": "POINT (703442.2765033345203847 1933791.9049867049325258)", - "surface": 45740000, - "canton": null, - "numero_insee": "48028" - } - }, - { - "pk": 16418, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE BORN", - "center": "POINT (697057.3593882259447128 1954860.0133379318285733)", - "surface": 30660000, - "canton": null, - "numero_insee": "48029" - } - }, - { - "pk": 32874, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BRENOUX", - "center": "POINT (695250.4050539541058242 1943632.9885693998076022)", - "surface": 11210000, - "canton": null, - "numero_insee": "48030" - } - }, - { - "pk": 18413, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "BRION", - "center": "POINT (658770.0165810134494677 1972354.8736812165006995)", - "surface": 21950000, - "canton": null, - "numero_insee": "48031" - } - }, - { - "pk": 17544, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE BUISSON", - "center": "POINT (670394.3219743785448372 1959039.1385954590514302)", - "surface": 24220000, - "canton": null, - "numero_insee": "48032" - } - }, - { - "pk": 28187, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CANILHAC", - "center": "POINT (664580.3221958413487300 1936266.2572487161960453)", - "surface": 7240000, - "canton": null, - "numero_insee": "48033" - } - }, - { - "pk": 17781, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA CANOURGUE", - "center": "POINT (673293.9652456926414743 1935739.2075300379656255)", - "surface": 104680000, - "canton": null, - "numero_insee": "48034" - } - }, - { - "pk": 17155, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CASSAGNAS", - "center": "POINT (711764.0613331811036915 1920448.1619110503233969)", - "surface": 35840000, - "canton": null, - "numero_insee": "48036" - } - }, - { - "pk": 34896, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHADENET", - "center": "POINT (703635.7415654787328094 1946406.8254950437694788)", - "surface": 13350000, - "canton": null, - "numero_insee": "48037" - } - }, - { - "pk": 4635, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHAMBON-LE-CHATEAU", - "center": "POINT (704212.7128519975813106 1984651.2627581630367786)", - "surface": 8140000, - "canton": null, - "numero_insee": "48038" - } - }, - { - "pk": 20709, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHANAC", - "center": "POINT (680271.2480092298937961 1939301.8636475468520075)", - "surface": 71660000, - "canton": null, - "numero_insee": "48039" - } - }, - { - "pk": 15184, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHASSERADES", - "center": "POINT (717910.6711686723865569 1951132.6349082172382623)", - "surface": 62360000, - "canton": null, - "numero_insee": "48040" - } - }, - { - "pk": 19990, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHASTANIER", - "center": "POINT (712244.9439058408606797 1970004.2365043167956173)", - "surface": 10440000, - "canton": null, - "numero_insee": "48041" - } - }, - { - "pk": 16415, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHASTEL-NOUVEL", - "center": "POINT (691869.2482731078052893 1952814.0151926437392831)", - "surface": 31210000, - "canton": null, - "numero_insee": "48042" - } - }, - { - "pk": 18317, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHATEAUNEUF-DE-RANDON", - "center": "POINT (707010.2487042245920748 1961651.2800678373314440)", - "surface": 24540000, - "canton": null, - "numero_insee": "48043" - } - }, - { - "pk": 20863, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHAUCHAILLES", - "center": "POINT (658329.0962016418343410 1977156.0871558911167085)", - "surface": 17330000, - "canton": null, - "numero_insee": "48044" - } - }, - { - "pk": 3262, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHAUDEYRAC", - "center": "POINT (712220.3649146453244612 1961094.8124008711893111)", - "surface": 44430000, - "canton": null, - "numero_insee": "48045" - } - }, - { - "pk": 24048, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHAULHAC", - "center": "POINT (673324.2779004733311012 1991397.0820045273285359)", - "surface": 9610000, - "canton": null, - "numero_insee": "48046" - } - }, - { - "pk": 17828, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA CHAZE-DE-PEYRE", - "center": "POINT (671726.3452628889353946 1967258.8895872735884041)", - "surface": 19260000, - "canton": null, - "numero_insee": "48047" - } - }, - { - "pk": 18767, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CHIRAC", - "center": "POINT (671473.0751979548949748 1949838.6541823188308626)", - "surface": 33950000, - "canton": null, - "numero_insee": "48049" - } - }, - { - "pk": 6537, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "COCURES", - "center": "POINT (702282.6322396212490276 1928876.8865112336352468)", - "surface": 3420000, - "canton": null, - "numero_insee": "48050" - } - }, - { - "pk": 18316, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE COLLET-DE-DEZE", - "center": "POINT (726897.8029797354247421 1918374.1667925589717925)", - "surface": 26470000, - "canton": null, - "numero_insee": "48051" - } - }, - { - "pk": 35375, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CUBIERES", - "center": "POINT (715380.2801075198221952 1942602.2577461895998567)", - "surface": 48800000, - "canton": null, - "numero_insee": "48053" - } - }, - { - "pk": 6227, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CUBIERETTES", - "center": "POINT (715510.0839066253975034 1939099.6701453069690615)", - "surface": 11890000, - "canton": null, - "numero_insee": "48054" - } - }, - { - "pk": 22366, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "CULTURES", - "center": "POINT (683035.9142693702597171 1943829.9735419307835400)", - "surface": 3920000, - "canton": null, - "numero_insee": "48055" - } - }, - { - "pk": 17780, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ESCLANEDES", - "center": "POINT (682044.2437900560908020 1942720.4325991296209395)", - "surface": 12610000, - "canton": null, - "numero_insee": "48056" - } - }, - { - "pk": 3941, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ESTABLES", - "center": "POINT (692971.3066758912755176 1964535.5116164458449930)", - "surface": 33110000, - "canton": null, - "numero_insee": "48057" - } - }, - { - "pk": 23689, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA FAGE-MONTIVERNOUX", - "center": "POINT (664478.0139589924365282 1972102.7377148095984012)", - "surface": 37530000, - "canton": null, - "numero_insee": "48058" - } - }, - { - "pk": 23833, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA FAGE-SAINT-JULIEN", - "center": "POINT (668933.2994184697745368 1977946.3161134324036539)", - "surface": 18010000, - "canton": null, - "numero_insee": "48059" - } - }, - { - "pk": 4168, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "FAU-DE-PEYRE", - "center": "POINT (669190.1269036941230297 1971241.5967968637123704)", - "surface": 26770000, - "canton": null, - "numero_insee": "48060" - } - }, - { - "pk": 14741, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "FLORAC", - "center": "POINT (699415.3565042066620663 1924648.1378263826481998)", - "surface": 29380000, - "canton": null, - "numero_insee": "48061" - } - }, - { - "pk": 14139, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "FONTANES", - "center": "POINT (714291.7969133002916351 1976528.2828902355395257)", - "surface": 11100000, - "canton": null, - "numero_insee": "48062" - } - }, - { - "pk": 21175, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "FONTANS", - "center": "POINT (682296.7675253637135029 1972053.0691850993316621)", - "surface": 34020000, - "canton": null, - "numero_insee": "48063" - } - }, - { - "pk": 3924, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "FOURNELS", - "center": "POINT (662716.4002713714726269 1979195.1612966405227780)", - "surface": 15490000, - "canton": null, - "numero_insee": "48064" - } - }, - { - "pk": 22803, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "FRAISSINET-DE-FOURQUES", - "center": "POINT (695513.0520566975465044 1912602.2650792156346142)", - "surface": 24290000, - "canton": null, - "numero_insee": "48065" - } - }, - { - "pk": 21759, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "FRAISSINET-DE-LOZERE", - "center": "POINT (708949.4010442738654092 1933638.3501477930694818)", - "surface": 38900000, - "canton": null, - "numero_insee": "48066" - } - }, - { - "pk": 7614, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "GABRIAC", - "center": "POINT (709954.6332153188996017 1909521.1339049621019512)", - "surface": 8400000, - "canton": null, - "numero_insee": "48067" - } - }, - { - "pk": 20213, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "GABRIAS", - "center": "POINT (682877.4191943617770448 1950735.8679994773119688)", - "surface": 20290000, - "canton": null, - "numero_insee": "48068" - } - }, - { - "pk": 17223, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "GATUZIERES", - "center": "POINT (692823.0512146987020969 1911077.8873856288846582)", - "surface": 29610000, - "canton": null, - "numero_insee": "48069" - } - }, - { - "pk": 17243, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "GRANDRIEU", - "center": "POINT (703184.5832253500120714 1976033.7441381115932018)", - "surface": 63650000, - "canton": null, - "numero_insee": "48070" - } - }, - { - "pk": 3574, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "GRANDVALS", - "center": "POINT (656685.7364030652679503 1970235.1254690398927778)", - "surface": 12760000, - "canton": null, - "numero_insee": "48071" - } - }, - { - "pk": 7269, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "GREZES", - "center": "POINT (680110.2283536345930770 1946508.0745949251577258)", - "surface": 16060000, - "canton": null, - "numero_insee": "48072" - } - }, - { - "pk": 4105, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES HERMAUX", - "center": "POINT (663186.1045041450997815 1947266.0638341135345399)", - "surface": 17620000, - "canton": null, - "numero_insee": "48073" - } - }, - { - "pk": 15187, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "HURES-LA-PARADE", - "center": "POINT (683865.0281477397074923 1916808.3372964248992503)", - "surface": 88770000, - "canton": null, - "numero_insee": "48074" - } - }, - { - "pk": 18517, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ISPAGNAC", - "center": "POINT (695234.1836965435650200 1933722.4065615066792816)", - "surface": 54540000, - "canton": null, - "numero_insee": "48075" - } - }, - { - "pk": 18412, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "JAVOLS", - "center": "POINT (679042.6752042749430984 1966219.5729603143408895)", - "surface": 31180000, - "canton": null, - "numero_insee": "48076" - } - }, - { - "pk": 16416, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LACHAMP", - "center": "POINT (682025.0170231210067868 1956835.0275395140051842)", - "surface": 26020000, - "canton": null, - "numero_insee": "48078" - } - }, - { - "pk": 23634, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LAJO", - "center": "POINT (687221.9738997725071386 1981504.3712533107027411)", - "surface": 18650000, - "canton": null, - "numero_insee": "48079" - } - }, - { - "pk": 31040, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LANGOGNE", - "center": "POINT (718649.3913978396449238 1970258.7485621385276318)", - "surface": 31240000, - "canton": null, - "numero_insee": "48080" - } - }, - { - "pk": 15822, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LANUEJOLS", - "center": "POINT (699552.0747736787889153 1943969.7207710428629071)", - "surface": 33510000, - "canton": null, - "numero_insee": "48081" - } - }, - { - "pk": 36857, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LAUBERT", - "center": "POINT (703855.4857050577411428 1955918.6234297922346741)", - "surface": 14220000, - "canton": null, - "numero_insee": "48082" - } - }, - { - "pk": 22124, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES LAUBIES", - "center": "POINT (687641.6424108128994703 1967393.4197074209805578)", - "surface": 23060000, - "canton": null, - "numero_insee": "48083" - } - }, - { - "pk": 19669, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LAVAL-ATGER", - "center": "POINT (708066.3645750019932166 1978777.8752275018487126)", - "surface": 10570000, - "canton": null, - "numero_insee": "48084" - } - }, - { - "pk": 14788, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LAVAL-DU-TARN", - "center": "POINT (680343.1699874692130834 1930793.4831547639332712)", - "surface": 36920000, - "canton": null, - "numero_insee": "48085" - } - }, - { - "pk": 14372, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LUC", - "center": "POINT (721333.4088928496930748 1960671.5735863363370299)", - "surface": 45970000, - "canton": null, - "numero_insee": "48086" - } - }, - { - "pk": 19476, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MALBOUZON", - "center": "POINT (662914.4989428425906226 1967584.8980128078255802)", - "surface": 14340000, - "canton": null, - "numero_insee": "48087" - } - }, - { - "pk": 17931, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA MALENE", - "center": "POINT (678008.4736734222387895 1922765.2416243774350733)", - "surface": 41170000, - "canton": null, - "numero_insee": "48088" - } - }, - { - "pk": 20217, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE MALZIEU-FORAIN", - "center": "POINT (683180.0810383387142792 1985974.7854780480265617)", - "surface": 49380000, - "canton": null, - "numero_insee": "48089" - } - }, - { - "pk": 19229, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE MALZIEU-VILLE", - "center": "POINT (678982.8667086518835276 1985138.4858309566043317)", - "surface": 7970000, - "canton": null, - "numero_insee": "48090" - } - }, - { - "pk": 17550, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MARCHASTEL", - "center": "POINT (661173.5880441054468974 1960362.7467831089161336)", - "surface": 34940000, - "canton": null, - "numero_insee": "48091" - } - }, - { - "pk": 15597, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MARVEJOLS", - "center": "POINT (675566.0773198315873742 1951174.5924331720452756)", - "surface": 12720000, - "canton": null, - "numero_insee": "48092" - } - }, - { - "pk": 20594, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MAS-D'ORCIERES", - "center": "POINT (709493.1576288419310004 1940350.0366934684570879)", - "surface": 36910000, - "canton": null, - "numero_insee": "48093" - } - }, - { - "pk": 21779, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE MASSEGROS", - "center": "POINT (665604.5864988558460027 1921659.4025693112052977)", - "surface": 17960000, - "canton": null, - "numero_insee": "48094" - } - }, - { - "pk": 17520, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MENDE", - "center": "POINT (691007.3316079047508538 1948201.9094730792567134)", - "surface": 36900000, - "canton": null, - "numero_insee": "48095" - } - }, - { - "pk": 23344, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MEYRUEIS", - "center": "POINT (689241.4548947552684695 1908444.7863404841627926)", - "surface": 104490000, - "canton": null, - "numero_insee": "48096" - } - }, - { - "pk": 23846, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MOISSAC-VALLEE-FRANCAISE", - "center": "POINT (716380.5857839672826231 1907273.1277838477399200)", - "surface": 26990000, - "canton": null, - "numero_insee": "48097" - } - }, - { - "pk": 23847, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MOLEZON", - "center": "POINT (708616.0055530248209834 1913914.5205594925209880)", - "surface": 14790000, - "canton": null, - "numero_insee": "48098" - } - }, - { - "pk": 18339, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE MONASTIER-PIN-MORIES", - "center": "POINT (670805.3649020488373935 1945928.9277035673148930)", - "surface": 19290000, - "canton": null, - "numero_insee": "48099" - } - }, - { - "pk": 27489, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MONTBEL", - "center": "POINT (709260.7269446102436632 1955964.4200051934458315)", - "surface": 23620000, - "canton": null, - "numero_insee": "48100" - } - }, - { - "pk": 14957, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MONTBRUN", - "center": "POINT (693609.5934183779172599 1924598.9926777591463178)", - "surface": 30410000, - "canton": null, - "numero_insee": "48101" - } - }, - { - "pk": 5855, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MONTRODAT", - "center": "POINT (678869.2915509380400181 1951202.5076633561402559)", - "surface": 20590000, - "canton": null, - "numero_insee": "48103" - } - }, - { - "pk": 21077, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "NASBINALS", - "center": "POINT (656466.5088937154505402 1960623.3427371634170413)", - "surface": 63430000, - "canton": null, - "numero_insee": "48104" - } - }, - { - "pk": 11901, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "NAUSSAC", - "center": "POINT (715814.4495281870476902 1974038.6228584786877036)", - "surface": 13790000, - "canton": null, - "numero_insee": "48105" - } - }, - { - "pk": 16776, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "NOALHAC", - "center": "POINT (660320.8697407245635986 1978374.1242606597952545)", - "surface": 13490000, - "canton": null, - "numero_insee": "48106" - } - }, - { - "pk": 37932, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "PALHERS", - "center": "POINT (677203.1641025007702410 1946984.0286289951764047)", - "surface": 8650000, - "canton": null, - "numero_insee": "48107" - } - }, - { - "pk": 21645, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA PANOUSE", - "center": "POINT (699119.6516905095195398 1971394.5844526872970164)", - "surface": 37720000, - "canton": null, - "numero_insee": "48108" - } - }, - { - "pk": 23081, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "PAULHAC-EN-MARGERIDE", - "center": "POINT (682810.3966036648489535 1994179.9974002938251942)", - "surface": 15900000, - "canton": null, - "numero_insee": "48110" - } - }, - { - "pk": 36503, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "PIERREFICHE", - "center": "POINT (710678.1917217294685543 1965886.7179741507861763)", - "surface": 16830000, - "canton": null, - "numero_insee": "48112" - } - }, - { - "pk": 19255, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE POMPIDOU", - "center": "POINT (705827.6173368840245530 1912189.0696868053637445)", - "surface": 23040000, - "canton": null, - "numero_insee": "48115" - } - }, - { - "pk": 18092, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE PONT-DE-MONTVERT", - "center": "POINT (714174.0523041421547532 1931380.1968370992690325)", - "surface": 90340000, - "canton": null, - "numero_insee": "48116" - } - }, - { - "pk": 37262, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "POURCHARESSES", - "center": "POINT (724427.3272249770816416 1938174.2533564881887287)", - "surface": 32110000, - "canton": null, - "numero_insee": "48117" - } - }, - { - "pk": 18318, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "PREVENCHERES", - "center": "POINT (725948.1978272702544928 1947697.1577934739179909)", - "surface": 61390000, - "canton": null, - "numero_insee": "48119" - } - }, - { - "pk": 21576, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "PRINSUEJOLS", - "center": "POINT (665952.8780502901645377 1963406.2007167758420110)", - "surface": 43060000, - "canton": null, - "numero_insee": "48120" - } - }, - { - "pk": 20659, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "PRUNIERES", - "center": "POINT (678925.9202006061095744 1980032.7907241138163954)", - "surface": 13210000, - "canton": null, - "numero_insee": "48121" - } - }, - { - "pk": 18371, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "QUEZAC", - "center": "POINT (694273.8607544989790767 1928909.1886262944899499)", - "surface": 27050000, - "canton": null, - "numero_insee": "48122" - } - }, - { - "pk": 3573, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "RECOULES-D'AUBRAC", - "center": "POINT (655520.0455732317641377 1966020.9549058310221881)", - "surface": 26240000, - "canton": null, - "numero_insee": "48123" - } - }, - { - "pk": 37117, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "RECOULES-DE-FUMAS", - "center": "POINT (679100.2069583768025041 1959413.0079502114094794)", - "surface": 9680000, - "canton": null, - "numero_insee": "48124" - } - }, - { - "pk": 16783, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "RIBENNES", - "center": "POINT (683286.4985454275738448 1961550.5799036610405892)", - "surface": 25060000, - "canton": null, - "numero_insee": "48126" - } - }, - { - "pk": 16417, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "RIEUTORT-DE-RANDON", - "center": "POINT (691418.8880218099802732 1958716.3543275312986225)", - "surface": 62120000, - "canton": null, - "numero_insee": "48127" - } - }, - { - "pk": 24904, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "RIMEIZE", - "center": "POINT (677573.6512805001111701 1974215.4086636821739376)", - "surface": 32520000, - "canton": null, - "numero_insee": "48128" - } - }, - { - "pk": 20106, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ROCLES", - "center": "POINT (714865.2633268204517663 1967924.2821875833906233)", - "surface": 19790000, - "canton": null, - "numero_insee": "48129" - } - }, - { - "pk": 4224, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "ROUSSES", - "center": "POINT (698930.0204429397126660 1911029.4709944361820817)", - "surface": 22280000, - "canton": null, - "numero_insee": "48130" - } - }, - { - "pk": 14305, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LE ROZIER", - "center": "POINT (670501.5161333946743980 1910789.0765118952840567)", - "surface": 2030000, - "canton": null, - "numero_insee": "48131" - } - }, - { - "pk": 22443, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-ALBAN-SUR-LIMAGNOLE", - "center": "POINT (684349.6864190555643290 1977876.3904607864096761)", - "surface": 51040000, - "canton": null, - "numero_insee": "48132" - } - }, - { - "pk": 37346, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-AMANS", - "center": "POINT (688674.7815406167646870 1963598.2257539997808635)", - "surface": 9940000, - "canton": null, - "numero_insee": "48133" - } - }, - { - "pk": 13756, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-ANDEOL-DE-CLERGUEMORT", - "center": "POINT (725254.5828902272041887 1923265.4582255268469453)", - "surface": 6800000, - "canton": null, - "numero_insee": "48134" - } - }, - { - "pk": 7075, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-ANDRE-CAPCEZE", - "center": "POINT (727946.0642983431462198 1936402.2144753395114094)", - "surface": 9770000, - "canton": null, - "numero_insee": "48135" - } - }, - { - "pk": 5820, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-ANDRE-DE-LANCIZE", - "center": "POINT (718187.4190943657886237 1918500.4826363748870790)", - "surface": 22640000, - "canton": null, - "numero_insee": "48136" - } - }, - { - "pk": 15596, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-BAUZILE", - "center": "POINT (691864.8611558669945225 1941502.1275936728343368)", - "surface": 29460000, - "canton": null, - "numero_insee": "48137" - } - }, - { - "pk": 32447, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-BONNET-DE-CHIRAC", - "center": "POINT (674816.0422937500989065 1945161.9687514351680875)", - "surface": 7570000, - "canton": null, - "numero_insee": "48138" - } - }, - { - "pk": 20311, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-BONNET-DE-MONTAUROUX", - "center": "POINT (709552.5253740809857845 1980592.3146948080975562)", - "surface": 21410000, - "canton": null, - "numero_insee": "48139" - } - }, - { - "pk": 22069, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-CHELY-D'APCHER", - "center": "POINT (674225.6711139508988708 1979492.5582333630882204)", - "surface": 28130000, - "canton": null, - "numero_insee": "48140" - } - }, - { - "pk": 14786, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "MAS-SAINT-CHELY", - "center": "POINT (686009.6606688630999997 1923633.7384408626239747)", - "surface": 57540000, - "canton": null, - "numero_insee": "48141" - } - }, - { - "pk": 18411, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINTE-COLOMBE-DE-PEYRE", - "center": "POINT (670950.0937255901517347 1964349.3323796344920993)", - "surface": 21700000, - "canton": null, - "numero_insee": "48142" - } - }, - { - "pk": 4483, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINTE-CROIX-VALLEE-FRANCAISE", - "center": "POINT (712449.5087388693355024 1910443.2479822624009103)", - "surface": 18740000, - "canton": null, - "numero_insee": "48144" - } - }, - { - "pk": 20071, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-DENIS-EN-MARGERIDE", - "center": "POINT (690007.5360193628584966 1971717.8724581829737872)", - "surface": 37890000, - "canton": null, - "numero_insee": "48145" - } - }, - { - "pk": 21459, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINTE-ENIMIE", - "center": "POINT (686345.7178716746857390 1931244.6605355166830122)", - "surface": 87410000, - "canton": null, - "numero_insee": "48146" - } - }, - { - "pk": 17731, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-ETIENNE-DU-VALDONNEZ", - "center": "POINT (698495.9139382850844413 1938655.1966983410529792)", - "surface": 55950000, - "canton": null, - "numero_insee": "48147" - } - }, - { - "pk": 14953, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-ETIENNE-VALLEE-FRANCAISE", - "center": "POINT (721672.3333901265868917 1908919.7328847399912775)", - "surface": 50530000, - "canton": null, - "numero_insee": "48148" - } - }, - { - "pk": 3306, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINTE-EULALIE", - "center": "POINT (690867.7462032189359888 1976530.0886374867986888)", - "surface": 21420000, - "canton": null, - "numero_insee": "48149" - } - }, - { - "pk": 32526, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-FLOUR-DE-MERCOIRE", - "center": "POINT (718389.0047424726653844 1965551.6809565427247435)", - "surface": 12060000, - "canton": null, - "numero_insee": "48150" - } - }, - { - "pk": 15385, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-FREZAL-D'ALBUGES", - "center": "POINT (713679.4239357280312106 1954300.1005589005071670)", - "surface": 17310000, - "canton": null, - "numero_insee": "48151" - } - }, - { - "pk": 23715, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-GEORGES-DE-LEVEJAC", - "center": "POINT (671771.8664522491162643 1926316.3829002440907061)", - "surface": 56190000, - "canton": null, - "numero_insee": "48154" - } - }, - { - "pk": 37245, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-GERMAIN-DE-CALBERTE", - "center": "POINT (717821.8242945447564125 1914392.9879314966965467)", - "surface": 38620000, - "canton": null, - "numero_insee": "48155" - } - }, - { - "pk": 15757, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-GERMAIN-DU-TEIL", - "center": "POINT (666529.0491001483751461 1942589.3493288487661630)", - "surface": 22690000, - "canton": null, - "numero_insee": "48156" - } - }, - { - "pk": 20068, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINTE-HELENE", - "center": "POINT (700725.2775978819699958 1947283.1201260213274509)", - "surface": 6580000, - "canton": null, - "numero_insee": "48157" - } - }, - { - "pk": 7672, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-HILAIRE-DE-LAVIT", - "center": "POINT (721294.7593983532860875 1918026.3034484132658690)", - "surface": 10370000, - "canton": null, - "numero_insee": "48158" - } - }, - { - "pk": 22214, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-JEAN-LA-FOUILLOUSE", - "center": "POINT (707252.0167476143687963 1968560.4750274238176644)", - "surface": 29140000, - "canton": null, - "numero_insee": "48160" - } - }, - { - "pk": 30961, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-JUERY", - "center": "POINT (659095.2323264153674245 1981266.7520062429830432)", - "surface": 1640000, - "canton": null, - "numero_insee": "48161" - } - }, - { - "pk": 7586, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-JULIEN-DES-POINTS", - "center": "POINT (729796.4494830472394824 1918899.3062209764029831)", - "surface": 3790000, - "canton": null, - "numero_insee": "48163" - } - }, - { - "pk": 22607, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-JULIEN-DU-TOURNEL", - "center": "POINT (706854.1357691287994385 1944632.1999760661274195)", - "surface": 36540000, - "canton": null, - "numero_insee": "48164" - } - }, - { - "pk": 28102, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-LAURENT-DE-MURET", - "center": "POINT (666619.3772877997253090 1955603.7219356943387538)", - "surface": 45860000, - "canton": null, - "numero_insee": "48165" - } - }, - { - "pk": 35720, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-LAURENT-DE-VEYRES", - "center": "POINT (662257.3193148738937452 1974286.2570915953256190)", - "surface": 9150000, - "canton": null, - "numero_insee": "48167" - } - }, - { - "pk": 14789, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-LEGER-DE-PEYRE", - "center": "POINT (677023.5513409766135737 1956392.3351556216366589)", - "surface": 26920000, - "canton": null, - "numero_insee": "48168" - } - }, - { - "pk": 37365, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-LEGER-DU-MALZIEU", - "center": "POINT (677347.5111713281366974 1989128.7396201007068157)", - "surface": 19230000, - "canton": null, - "numero_insee": "48169" - } - }, - { - "pk": 15450, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-MARTIN-DE-BOUBAUX", - "center": "POINT (726555.1716203945688903 1911563.9623480408918113)", - "surface": 31240000, - "canton": null, - "numero_insee": "48170" - } - }, - { - "pk": 20137, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-MARTIN-DE-LANSUSCLE", - "center": "POINT (713015.3211720873368904 1914552.4499117021914572)", - "surface": 18160000, - "canton": null, - "numero_insee": "48171" - } - }, - { - "pk": 15384, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-MAURICE-DE-VENTALON", - "center": "POINT (718111.0163168100407347 1927509.4372791685163975)", - "surface": 38270000, - "canton": null, - "numero_insee": "48172" - } - }, - { - "pk": 29265, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-MICHEL-DE-DEZE", - "center": "POINT (723809.1465765403117985 1916646.1356146256439388)", - "surface": 14010000, - "canton": null, - "numero_insee": "48173" - } - }, - { - "pk": 23690, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-PAUL-LE-FROID", - "center": "POINT (695361.0305451465537772 1977869.4493773931171745)", - "surface": 44080000, - "canton": null, - "numero_insee": "48174" - } - }, - { - "pk": 17210, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-PIERRE-DE-NOGARET", - "center": "POINT (662920.4506630834657699 1943159.5176567316520959)", - "surface": 16330000, - "canton": null, - "numero_insee": "48175" - } - }, - { - "pk": 31933, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-PIERRE-DES-TRIPIERS", - "center": "POINT (674578.5684515298344195 1914026.9529634343925864)", - "surface": 34990000, - "canton": null, - "numero_insee": "48176" - } - }, - { - "pk": 21174, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-PIERRE-LE-VIEUX", - "center": "POINT (676597.5068918997421861 1983116.2833912891801447)", - "surface": 15010000, - "canton": null, - "numero_insee": "48177" - } - }, - { - "pk": 30861, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-PRIVAT-DE-VALLONGUE", - "center": "POINT (718762.5491281874710694 1921508.5677884235046804)", - "surface": 23750000, - "canton": null, - "numero_insee": "48178" - } - }, - { - "pk": 16075, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-PRIVAT-DU-FAU", - "center": "POINT (680531.9223297622520477 1991357.8924848733004183)", - "surface": 22430000, - "canton": null, - "numero_insee": "48179" - } - }, - { - "pk": 4731, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-ROME-DE-DOLAN", - "center": "POINT (668530.2964874877361581 1918981.2211145395413041)", - "surface": 32790000, - "canton": null, - "numero_insee": "48180" - } - }, - { - "pk": 9000, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-SATURNIN", - "center": "POINT (668502.7596200724365190 1934097.0483910990878940)", - "surface": 9180000, - "canton": null, - "numero_insee": "48181" - } - }, - { - "pk": 21936, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-SAUVEUR-DE-GINESTOUX", - "center": "POINT (701354.8222854642663151 1967509.4858367659617215)", - "surface": 22220000, - "canton": null, - "numero_insee": "48182" - } - }, - { - "pk": 17782, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-SAUVEUR-DE-PEYRE", - "center": "POINT (675477.2691951266024262 1961684.7790939910337329)", - "surface": 27740000, - "canton": null, - "numero_insee": "48183" - } - }, - { - "pk": 15475, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (701724.7511115053202957 1982928.4519643834792078)", - "surface": 33630000, - "canton": null, - "numero_insee": "48184" - } - }, - { - "pk": 14289, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES SALELLES", - "center": "POINT (674533.5087998448871076 1943057.3751389021053910)", - "surface": 10630000, - "canton": null, - "numero_insee": "48185" - } - }, - { - "pk": 15974, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA SALLE-PRUNET", - "center": "POINT (704216.7343160845339298 1925089.2257942487485707)", - "surface": 18400000, - "canton": null, - "numero_insee": "48186" - } - }, - { - "pk": 16022, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES SALCES", - "center": "POINT (663451.7566320671467111 1951372.5976464201230556)", - "surface": 45960000, - "canton": null, - "numero_insee": "48187" - } - }, - { - "pk": 21462, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SERVERETTE", - "center": "POINT (683640.3333515141857788 1967059.2693562246859074)", - "surface": 17320000, - "canton": null, - "numero_insee": "48188" - } - }, - { - "pk": 37345, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "SERVIERES", - "center": "POINT (685849.0197103972313926 1954464.8614397509954870)", - "surface": 19720000, - "canton": null, - "numero_insee": "48189" - } - }, - { - "pk": 23706, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "TERMES", - "center": "POINT (665805.8341833750018850 1980822.8793609582353383)", - "surface": 17430000, - "canton": null, - "numero_insee": "48190" - } - }, - { - "pk": 18069, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA TIEULE", - "center": "POINT (665821.2226073204074055 1931571.7598426195327193)", - "surface": 24090000, - "canton": null, - "numero_insee": "48191" - } - }, - { - "pk": 15818, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "TRELANS", - "center": "POINT (660186.5524325059959665 1946840.3299233040306717)", - "surface": 23200000, - "canton": null, - "numero_insee": "48192" - } - }, - { - "pk": 37260, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "VEBRON", - "center": "POINT (696469.9936145351966843 1917815.9409402462188154)", - "surface": 69890000, - "canton": null, - "numero_insee": "48193" - } - }, - { - "pk": 16957, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "VIALAS", - "center": "POINT (723912.5210171967046335 1928059.1827435402665287)", - "surface": 49430000, - "canton": null, - "numero_insee": "48194" - } - }, - { - "pk": 14787, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LES VIGNES", - "center": "POINT (673034.7861647708341479 1919019.2658257680013776)", - "surface": 28700000, - "canton": null, - "numero_insee": "48195" - } - }, - { - "pk": 31376, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "LA VILLEDIEU", - "center": "POINT (695034.3584680396597832 1969157.7295129455160350)", - "surface": 23210000, - "canton": null, - "numero_insee": "48197" - } - }, - { - "pk": 33329, - "model": "ishtar_common.town", - "fields": { - "departement": 49, - "name": "VILLEFORT", - "center": "POINT (726919.5918570725480095 1939396.6705437630880624)", - "surface": 8090000, - "canton": null, - "numero_insee": "48198" - } - }, - { - "pk": 1908, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES ALLEUDS", - "center": "POINT (391822.0725702224299312 2260796.9449230884201825)", - "surface": 10630000, - "canton": null, - "numero_insee": "49001" - } - }, - { - "pk": 2200, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ALLONNES", - "center": "POINT (424166.7482879608869553 2258561.5814220388419926)", - "surface": 36470000, - "canton": null, - "numero_insee": "49002" - } - }, - { - "pk": 1623, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "AMBILLOU-CHATEAU", - "center": "POINT (397580.7157030542148277 2254238.9874556832946837)", - "surface": 19970000, - "canton": null, - "numero_insee": "49003" - } - }, - { - "pk": 1583, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ANDARD", - "center": "POINT (394471.7177924094139598 2279333.6482542231678963)", - "surface": 12180000, - "canton": null, - "numero_insee": "49004" - } - }, - { - "pk": 1802, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ANDIGNE", - "center": "POINT (365272.2401674720458686 2300810.7085027722641826)", - "surface": 6820000, - "canton": null, - "numero_insee": "49005" - } - }, - { - "pk": 1968, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ANDREZE", - "center": "POINT (350008.1965774790151045 2246141.6999354641884565)", - "surface": 21300000, - "canton": null, - "numero_insee": "49006" - } - }, - { - "pk": 2315, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ANGERS", - "center": "POINT (381962.5928634310839698 2279230.7148701702244580)", - "surface": 44330000, - "canton": null, - "numero_insee": "49007" - } - }, - { - "pk": 1901, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ANGRIE", - "center": "POINT (351436.1581596180913039 2291690.1175292548723519)", - "surface": 40980000, - "canton": null, - "numero_insee": "49008" - } - }, - { - "pk": 2726, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ANTOIGNE", - "center": "POINT (412561.0192991571966559 2233845.5581454141065478)", - "surface": 17750000, - "canton": null, - "numero_insee": "49009" - } - }, - { - "pk": 1730, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ARMAILLE", - "center": "POINT (339298.8195690098218620 2307302.9515545880421996)", - "surface": 16890000, - "canton": null, - "numero_insee": "49010" - } - }, - { - "pk": 1955, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ARTANNES-SUR-THOUET", - "center": "POINT (415651.1659033840987831 2247482.3012297055684030)", - "surface": 6700000, - "canton": null, - "numero_insee": "49011" - } - }, - { - "pk": 2984, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "AUBIGNE-SUR-LAYON", - "center": "POINT (387209.9795376576948911 2249649.9231708743609488)", - "surface": 5340000, - "canton": null, - "numero_insee": "49012" - } - }, - { - "pk": 2643, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "AUVERSE", - "center": "POINT (426888.7283297989051789 2280401.6004187627695501)", - "surface": 30810000, - "canton": null, - "numero_insee": "49013" - } - }, - { - "pk": 1638, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "AVIRE", - "center": "POINT (365229.5176872990559787 2306014.4112327452749014)", - "surface": 14580000, - "canton": null, - "numero_insee": "49014" - } - }, - { - "pk": 2834, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "AVRILLE", - "center": "POINT (378733.1059124082676135 2282506.7896248446777463)", - "surface": 15960000, - "canton": null, - "numero_insee": "49015" - } - }, - { - "pk": 1873, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BARACE", - "center": "POINT (397528.1753086295793764 2297072.8110007955692708)", - "surface": 13470000, - "canton": null, - "numero_insee": "49017" - } - }, - { - "pk": 2871, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BAUGE", - "center": "POINT (415935.3839228202123195 2285815.5547917317599058)", - "surface": 8570000, - "canton": null, - "numero_insee": "49018" - } - }, - { - "pk": 1898, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BAUNE", - "center": "POINT (398449.9086311681894585 2282368.7978905336931348)", - "surface": 20970000, - "canton": null, - "numero_insee": "49019" - } - }, - { - "pk": 1642, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEAUCOUZE", - "center": "POINT (376058.2835767613723874 2279182.1725606620311737)", - "surface": 17930000, - "canton": null, - "numero_insee": "49020" - } - }, - { - "pk": 2085, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEAUFORT-EN-VALLEE", - "center": "POINT (408127.8396829214179888 2273841.6821941770613194)", - "surface": 35830000, - "canton": null, - "numero_insee": "49021" - } - }, - { - "pk": 2417, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEAULIEU-SUR-LAYON", - "center": "POINT (378002.7480894168838859 2261784.1515106572769582)", - "surface": 12870000, - "canton": null, - "numero_insee": "49022" - } - }, - { - "pk": 2438, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEAUPREAU", - "center": "POINT (348566.1110562472022139 2251133.9884352139197290)", - "surface": 35880000, - "canton": null, - "numero_insee": "49023" - } - }, - { - "pk": 2753, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEAUSSE", - "center": "POINT (352669.1378400130779482 2263377.5872891345061362)", - "surface": 5400000, - "canton": null, - "numero_insee": "49024" - } - }, - { - "pk": 1776, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEAUVAU", - "center": "POINT (405179.7993423819425516 2291531.4483155831694603)", - "surface": 8060000, - "canton": null, - "numero_insee": "49025" - } - }, - { - "pk": 2476, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BECON-LES-GRANITS", - "center": "POINT (363722.1835069187218323 2282383.4696396170184016)", - "surface": 46740000, - "canton": null, - "numero_insee": "49026" - } - }, - { - "pk": 2413, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEGROLLES-EN-MAUGES", - "center": "POINT (352142.6185409607132897 2242155.9003424029797316)", - "surface": 14710000, - "canton": null, - "numero_insee": "49027" - } - }, - { - "pk": 1851, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BEHUARD", - "center": "POINT (374145.6405085824662820 2268357.7875682543963194)", - "surface": 2300000, - "canton": null, - "numero_insee": "49028" - } - }, - { - "pk": 2502, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BLAISON-GOHIER", - "center": "POINT (394956.0582544676726684 2269129.4603318632580340)", - "surface": 21350000, - "canton": null, - "numero_insee": "49029" - } - }, - { - "pk": 2225, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BLOU", - "center": "POINT (419407.0821774117648602 2265327.8012090437114239)", - "surface": 21580000, - "canton": null, - "numero_insee": "49030" - } - }, - { - "pk": 1538, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BOCE", - "center": "POINT (417870.6155058081494644 2281728.2680676840245724)", - "surface": 16170000, - "canton": null, - "numero_insee": "49031" - } - }, - { - "pk": 2972, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA BOHALLE", - "center": "POINT (394422.7302430855343118 2273128.2848448781296611)", - "surface": 9580000, - "canton": null, - "numero_insee": "49032" - } - }, - { - "pk": 2879, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA BOISSIERE-SUR-EVRE", - "center": "POINT (340974.3709678784944117 2261580.3443810911849141)", - "surface": 6100000, - "canton": null, - "numero_insee": "49033" - } - }, - { - "pk": 1511, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BOTZ-EN-MAUGES", - "center": "POINT (348078.0225058017531410 2261838.7234826548956335)", - "surface": 15730000, - "canton": null, - "numero_insee": "49034" - } - }, - { - "pk": 2831, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BOUCHEMAINE", - "center": "POINT (376398.8079395224340260 2274281.0512465517967939)", - "surface": 20530000, - "canton": null, - "numero_insee": "49035" - } - }, - { - "pk": 2368, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BOUILLE-MENARD", - "center": "POINT (352091.4936219504452311 2309409.3344859066419303)", - "surface": 15890000, - "canton": null, - "numero_insee": "49036" - } - }, - { - "pk": 2921, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE BOURG-D'IRE", - "center": "POINT (351751.9289605371886864 2302000.7923807287588716)", - "surface": 23060000, - "canton": null, - "numero_insee": "49037" - } - }, - { - "pk": 1917, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BOURG-L'EVEQUE", - "center": "POINT (348592.2967884925892577 2308980.3372883708216250)", - "surface": 5330000, - "canton": null, - "numero_insee": "49038" - } - }, - { - "pk": 2547, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BOURGNEUF-EN-MAUGES", - "center": "POINT (358389.8004334643483162 2261422.8950808965601027)", - "surface": 11790000, - "canton": null, - "numero_insee": "49039" - } - }, - { - "pk": 2364, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BOUZILLE", - "center": "POINT (339740.6857031550025567 2265573.4829549649730325)", - "surface": 18500000, - "canton": null, - "numero_insee": "49040" - } - }, - { - "pk": 2778, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRAIN-SUR-ALLONNES", - "center": "POINT (428670.0999370194040239 2258598.7740920656360686)", - "surface": 33520000, - "canton": null, - "numero_insee": "49041" - } - }, - { - "pk": 2886, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRAIN-SUR-L'AUTHION", - "center": "POINT (393092.1162222444545478 2276720.2135239029303193)", - "surface": 23540000, - "canton": null, - "numero_insee": "49042" - } - }, - { - "pk": 2460, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRAIN-SUR-LONGUENEE", - "center": "POINT (366049.1556658477056772 2291509.7853439333848655)", - "surface": 23170000, - "canton": null, - "numero_insee": "49043" - } - }, - { - "pk": 2743, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BREIL", - "center": "POINT (436523.8395941279595718 2277078.4997385358437896)", - "surface": 15200000, - "canton": null, - "numero_insee": "49044" - } - }, - { - "pk": 2675, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA BREILLE-LES-PINS", - "center": "POINT (429729.5813912586891092 2263611.5818680268712342)", - "surface": 27850000, - "canton": null, - "numero_insee": "49045" - } - }, - { - "pk": 2935, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BREZE", - "center": "POINT (418687.2906776037998497 2243403.9793379404582083)", - "surface": 20060000, - "canton": null, - "numero_insee": "49046" - } - }, - { - "pk": 1723, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRIGNE", - "center": "POINT (394489.1058326031779870 2252912.4637466501444578)", - "surface": 14600000, - "canton": null, - "numero_insee": "49047" - } - }, - { - "pk": 1634, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRIOLLAY", - "center": "POINT (386777.2500228885328397 2290078.8896264773793519)", - "surface": 14450000, - "canton": null, - "numero_insee": "49048" - } - }, - { - "pk": 1673, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRION", - "center": "POINT (412930.5348121454590000 2273981.3661486911587417)", - "surface": 28400000, - "canton": null, - "numero_insee": "49049" - } - }, - { - "pk": 2709, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRISSAC-QUINCE", - "center": "POINT (390095.2734266291372478 2263885.2448930013924837)", - "surface": 9930000, - "canton": null, - "numero_insee": "49050" - } - }, - { - "pk": 2093, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BRISSARTHE", - "center": "POINT (389956.9234544922364876 2305016.7272981894202530)", - "surface": 17030000, - "canton": null, - "numero_insee": "49051" - } - }, - { - "pk": 2827, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BROC", - "center": "POINT (439119.9009572084760293 2289910.1188085870817304)", - "surface": 21240000, - "canton": null, - "numero_insee": "49052" - } - }, - { - "pk": 2807, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "BROSSAY", - "center": "POINT (406472.2797166889067739 2244003.8007329744286835)", - "surface": 4810000, - "canton": null, - "numero_insee": "49053" - } - }, - { - "pk": 1839, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CANDE", - "center": "POINT (346247.9874102305620909 2289746.0859666871838272)", - "surface": 4880000, - "canton": null, - "numero_insee": "49054" - } - }, - { - "pk": 1949, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CANTENAY-EPINARD", - "center": "POINT (381406.2687030753586441 2286031.5481275999918580)", - "surface": 16570000, - "canton": null, - "numero_insee": "49055" - } - }, - { - "pk": 2755, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CARBAY", - "center": "POINT (332775.3654474093928002 2309551.3296145061030984)", - "surface": 7710000, - "canton": null, - "numero_insee": "49056" - } - }, - { - "pk": 2860, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CERNUSSON", - "center": "POINT (386350.4735593703808263 2244638.7369088209234178)", - "surface": 8540000, - "canton": null, - "numero_insee": "49057" - } - }, - { - "pk": 1548, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES CERQUEUX", - "center": "POINT (373583.8180117338197306 2227119.2790120104327798)", - "surface": 13850000, - "canton": null, - "numero_insee": "49058" - } - }, - { - "pk": 2602, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES CERQUEUX-SOUS-PASSAVANT", - "center": "POINT (386705.0505095151602291 2238036.1945775719359517)", - "surface": 23050000, - "canton": null, - "numero_insee": "49059" - } - }, - { - "pk": 2865, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHACE", - "center": "POINT (417648.5440339429769665 2247999.1936083501204848)", - "surface": 6570000, - "canton": null, - "numero_insee": "49060" - } - }, - { - "pk": 2354, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHALLAIN-LA-POTHERIE", - "center": "POINT (343878.2666552107548341 2298033.2033901573158801)", - "surface": 48600000, - "canton": null, - "numero_insee": "49061" - } - }, - { - "pk": 2738, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHALONNES-SOUS-LE-LUDE", - "center": "POINT (437347.5590269343229011 2286392.7016149042174220)", - "surface": 16620000, - "canton": null, - "numero_insee": "49062" - } - }, - { - "pk": 2343, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHALONNES-SUR-LOIRE", - "center": "POINT (365060.2782814099336974 2265681.0549806570634246)", - "surface": 38800000, - "canton": null, - "numero_insee": "49063" - } - }, - { - "pk": 2853, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAMBELLAY", - "center": "POINT (372558.5419435752555728 2303172.3455743486993015)", - "surface": 13520000, - "canton": null, - "numero_insee": "49064" - } - }, - { - "pk": 2167, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAMPIGNE", - "center": "POINT (381690.5279787023901008 2300144.9846912971697748)", - "surface": 23140000, - "canton": null, - "numero_insee": "49065" - } - }, - { - "pk": 1636, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAMP-SUR-LAYON", - "center": "POINT (380056.0789806480170228 2255495.9058704129420221)", - "surface": 19220000, - "canton": null, - "numero_insee": "49066" - } - }, - { - "pk": 1880, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAMPTEUSSE-SUR-BACONNE", - "center": "POINT (375379.4500008425675333 2300893.7297529573552310)", - "surface": 11670000, - "canton": null, - "numero_insee": "49067" - } - }, - { - "pk": 2809, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAMPTOCE-SUR-LOIRE", - "center": "POINT (357778.5730427320231684 2274928.7763145035132766)", - "surface": 37200000, - "canton": null, - "numero_insee": "49068" - } - }, - { - "pk": 1791, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAMPTOCEAUX", - "center": "POINT (328142.7142197107314132 2264177.4769728779792786)", - "surface": 15670000, - "canton": null, - "numero_insee": "49069" - } - }, - { - "pk": 2132, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHANTELOUP-LES-BOIS", - "center": "POINT (370107.1948542973841541 2236098.2263535414822400)", - "surface": 27530000, - "canton": null, - "numero_insee": "49070" - } - }, - { - "pk": 2509, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHANZEAUX", - "center": "POINT (373944.9311875698040240 2256246.3211955646984279)", - "surface": 31510000, - "canton": null, - "numero_insee": "49071" - } - }, - { - "pk": 2036, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CHAPELLE-DU-GENET", - "center": "POINT (346193.8343947962857783 2247511.5811468767933547)", - "surface": 9260000, - "canton": null, - "numero_insee": "49072" - } - }, - { - "pk": 2841, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CHAPELLE-HULLIN", - "center": "POINT (344765.0059318412677385 2311951.2951405695639551)", - "surface": 9970000, - "canton": null, - "numero_insee": "49073" - } - }, - { - "pk": 2184, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CHAPELLE-ROUSSELIN", - "center": "POINT (362198.5343935422133654 2248543.6124669164419174)", - "surface": 12570000, - "canton": null, - "numero_insee": "49074" - } - }, - { - "pk": 2040, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CHAPELLE-SAINT-FLORENT", - "center": "POINT (343456.5534479697234929 2264002.6303763422183692)", - "surface": 16140000, - "canton": null, - "numero_insee": "49075" - } - }, - { - "pk": 1777, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CHAPELLE-SAINT-LAUD", - "center": "POINT (401958.5322747968020849 2293806.7144071389921010)", - "surface": 10650000, - "canton": null, - "numero_insee": "49076" - } - }, - { - "pk": 2168, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CHAPELLE-SUR-OUDON", - "center": "POINT (362267.6336559136398137 2301086.2783056306652725)", - "surface": 12760000, - "canton": null, - "numero_insee": "49077" - } - }, - { - "pk": 2030, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHARCE-SAINT-ELLIER-SUR-AUBANCE", - "center": "POINT (392989.1858307221555151 2264909.8759291861206293)", - "surface": 16930000, - "canton": null, - "numero_insee": "49078" - } - }, - { - "pk": 2718, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHARTRENE", - "center": "POINT (414286.9840393033809960 2279396.8707731673493981)", - "surface": 3770000, - "canton": null, - "numero_insee": "49079" - } - }, - { - "pk": 2607, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHATEAUNEUF-SUR-SARTHE", - "center": "POINT (387378.9537543117185123 2302093.2563928221352398)", - "surface": 14600000, - "canton": null, - "numero_insee": "49080" - } - }, - { - "pk": 2589, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHATELAIS", - "center": "POINT (354772.0655186504009180 2312033.3293348518200219)", - "surface": 24010000, - "canton": null, - "numero_insee": "49081" - } - }, - { - "pk": 2421, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAUDEFONDS-SUR-LAYON", - "center": "POINT (368886.9339368203654885 2262810.1329103196039796)", - "surface": 15000000, - "canton": null, - "numero_insee": "49082" - } - }, - { - "pk": 1652, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAUDRON-EN-MAUGES", - "center": "POINT (350304.2793770647258498 2258854.5360267055220902)", - "surface": 25750000, - "canton": null, - "numero_insee": "49083" - } - }, - { - "pk": 2942, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAUMONT-D'ANJOU", - "center": "POINT (402027.7905938624753617 2285400.6538507957011461)", - "surface": 12080000, - "canton": null, - "numero_insee": "49084" - } - }, - { - "pk": 2287, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CHAUSSAIRE", - "center": "POINT (335654.7498440415365621 2251228.3594468492083251)", - "surface": 12250000, - "canton": null, - "numero_insee": "49085" - } - }, - { - "pk": 1936, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAVAGNES", - "center": "POINT (389956.9001297809300013 2256378.0113265812397003)", - "surface": 16460000, - "canton": null, - "numero_insee": "49086" - } - }, - { - "pk": 2862, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAVAIGNES", - "center": "POINT (427249.3476744027575478 2285208.3910481468774378)", - "surface": 7460000, - "canton": null, - "numero_insee": "49087" - } - }, - { - "pk": 1738, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAZE-HENRY", - "center": "POINT (341559.4670517260674387 2312325.3432051436975598)", - "surface": 20070000, - "canton": null, - "numero_insee": "49088" - } - }, - { - "pk": 2485, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHAZE-SUR-ARGOS", - "center": "POINT (356808.8581062815501355 2295537.1749857864342630)", - "surface": 31620000, - "canton": null, - "numero_insee": "49089" - } - }, - { - "pk": 1579, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHEFFES", - "center": "POINT (385330.9639639694360085 2295571.3216177499853075)", - "surface": 17680000, - "canton": null, - "numero_insee": "49090" - } - }, - { - "pk": 2852, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHEMELLIER", - "center": "POINT (396306.4655634547816589 2263135.7336447727866471)", - "surface": 11010000, - "canton": null, - "numero_insee": "49091" - } - }, - { - "pk": 2035, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHEMILLE", - "center": "POINT (367774.8130472427001223 2251992.1932466379366815)", - "surface": 49450000, - "canton": null, - "numero_insee": "49092" - } - }, - { - "pk": 2805, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHEMIRE-SUR-SARTHE", - "center": "POINT (392320.7373382557416335 2309639.7505343109369278)", - "surface": 6610000, - "canton": null, - "numero_insee": "49093" - } - }, - { - "pk": 2790, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHENEHUTTE-TREVES-CUNAULT", - "center": "POINT (408848.7458393056876957 2259235.8400433980859816)", - "surface": 28660000, - "canton": null, - "numero_insee": "49094" - } - }, - { - "pk": 2962, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHENILLE-CHANGE", - "center": "POINT (374859.3569668929558247 2303291.3284589461982250)", - "surface": 5360000, - "canton": null, - "numero_insee": "49095" - } - }, - { - "pk": 2782, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHERRE", - "center": "POINT (383052.0243873682920821 2304959.9236780107021332)", - "surface": 13990000, - "canton": null, - "numero_insee": "49096" - } - }, - { - "pk": 2247, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHEVIRE-LE-ROUGE", - "center": "POINT (411290.7915450857253745 2290781.1963692484423518)", - "surface": 36130000, - "canton": null, - "numero_insee": "49097" - } - }, - { - "pk": 1769, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHIGNE", - "center": "POINT (432525.0704014858929440 2288654.6625772230327129)", - "surface": 25310000, - "canton": null, - "numero_insee": "49098" - } - }, - { - "pk": 2579, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CHOLET", - "center": "POINT (355726.5680427931947634 2232277.0714378701522946)", - "surface": 87470000, - "canton": null, - "numero_insee": "49099" - } - }, - { - "pk": 1624, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CIZAY-LA-MADELEINE", - "center": "POINT (408861.7179618517402560 2245524.7372049703262746)", - "surface": 19310000, - "canton": null, - "numero_insee": "49100" - } - }, - { - "pk": 2472, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CLEFS", - "center": "POINT (419365.2419594418024644 2294650.7953692968003452)", - "surface": 25920000, - "canton": null, - "numero_insee": "49101" - } - }, - { - "pk": 2498, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CLERE-SUR-LAYON", - "center": "POINT (389928.9062786610447802 2235460.5668347175233066)", - "surface": 21560000, - "canton": null, - "numero_insee": "49102" - } - }, - { - "pk": 2411, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "COMBREE", - "center": "POINT (348114.9090369725599885 2306174.2494690436869860)", - "surface": 24290000, - "canton": null, - "numero_insee": "49103" - } - }, - { - "pk": 2657, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CONCOURSON-SUR-LAYON", - "center": "POINT (396255.4925706654321402 2245020.5229174960404634)", - "surface": 18300000, - "canton": null, - "numero_insee": "49104" - } - }, - { - "pk": 2309, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CONTIGNE", - "center": "POINT (387040.0456368071027100 2306794.1255265241488814)", - "surface": 23450000, - "canton": null, - "numero_insee": "49105" - } - }, - { - "pk": 1951, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CORNE", - "center": "POINT (397387.0207613845122978 2277756.3777693738229573)", - "surface": 16740000, - "canton": null, - "numero_insee": "49106" - } - }, - { - "pk": 1813, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CORNILLE-LES-CAVES", - "center": "POINT (401069.1129407995613292 2280288.7023661225102842)", - "surface": 10390000, - "canton": null, - "numero_insee": "49107" - } - }, - { - "pk": 1544, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA CORNUAILLE", - "center": "POINT (349082.0079977404093370 2285866.2264653430320323)", - "surface": 44320000, - "canton": null, - "numero_insee": "49108" - } - }, - { - "pk": 2532, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CORON", - "center": "POINT (374380.0460328306071460 2239836.4104303750209510)", - "surface": 31930000, - "canton": null, - "numero_insee": "49109" - } - }, - { - "pk": 1712, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CORZE", - "center": "POINT (396318.7144188251113519 2285954.1036762460134923)", - "surface": 31420000, - "canton": null, - "numero_insee": "49110" - } - }, - { - "pk": 2269, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "COSSE-D'ANJOU", - "center": "POINT (372720.4379433317226358 2246928.6356899901293218)", - "surface": 13410000, - "canton": null, - "numero_insee": "49111" - } - }, - { - "pk": 1516, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE COUDRAY-MACOUARD", - "center": "POINT (413065.7161549000302330 2245459.3262550369836390)", - "surface": 13590000, - "canton": null, - "numero_insee": "49112" - } - }, - { - "pk": 1745, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "COURCHAMPS", - "center": "POINT (411050.1743000578135252 2247144.1008224310353398)", - "surface": 6980000, - "canton": null, - "numero_insee": "49113" - } - }, - { - "pk": 2890, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "COURLEON", - "center": "POINT (434606.7430527904070914 2266854.4678218001499772)", - "surface": 13950000, - "canton": null, - "numero_insee": "49114" - } - }, - { - "pk": 1700, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "COUTURES", - "center": "POINT (396974.8413849264616147 2267044.3917716485448182)", - "surface": 9350000, - "canton": null, - "numero_insee": "49115" - } - }, - { - "pk": 1670, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "CUON", - "center": "POINT (417098.9337216269923374 2278219.1124248956330121)", - "surface": 13130000, - "canton": null, - "numero_insee": "49116" - } - }, - { - "pk": 2407, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA DAGUENIERE", - "center": "POINT (390317.2472414433723316 2273394.7289424990303814)", - "surface": 11890000, - "canton": null, - "numero_insee": "49117" - } - }, - { - "pk": 2193, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DAUMERAY", - "center": "POINT (397389.3704507949296385 2301775.3426317311823368)", - "surface": 40790000, - "canton": null, - "numero_insee": "49119" - } - }, - { - "pk": 2265, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DENEE", - "center": "POINT (377548.1528586237691343 2268385.7541103730909526)", - "surface": 15980000, - "canton": null, - "numero_insee": "49120" - } - }, - { - "pk": 2911, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DENEZE-SOUS-DOUE", - "center": "POINT (403490.9079442088259384 2253587.1091643194667995)", - "surface": 23850000, - "canton": null, - "numero_insee": "49121" - } - }, - { - "pk": 2970, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DENEZE-SOUS-LE-LUDE", - "center": "POINT (433361.2065572306746617 2284358.1694404762238264)", - "surface": 15350000, - "canton": null, - "numero_insee": "49122" - } - }, - { - "pk": 2744, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DISTRE", - "center": "POINT (413629.0197286518523470 2249967.6708963327109814)", - "surface": 14910000, - "canton": null, - "numero_insee": "49123" - } - }, - { - "pk": 2623, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DOUE-LA-FONTAINE", - "center": "POINT (401845.7082967217429541 2246767.9751031799241900)", - "surface": 35830000, - "canton": null, - "numero_insee": "49125" - } - }, - { - "pk": 1645, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DRAIN", - "center": "POINT (332043.1583740438800305 2264509.6415782007388771)", - "surface": 19480000, - "canton": null, - "numero_insee": "49126" - } - }, - { - "pk": 2282, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "DURTAL", - "center": "POINT (405404.1382349603227340 2300740.5123753705993295)", - "surface": 61000000, - "canton": null, - "numero_insee": "49127" - } - }, - { - "pk": 1728, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ECHEMIRE", - "center": "POINT (410924.3367141878115945 2286674.9358215644024312)", - "surface": 17020000, - "canton": null, - "numero_insee": "49128" - } - }, - { - "pk": 2213, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ECOUFLANT", - "center": "POINT (385018.7567164608044550 2284860.3076361007988453)", - "surface": 17580000, - "canton": null, - "numero_insee": "49129" - } - }, - { - "pk": 2791, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ECUILLE", - "center": "POINT (382136.8974034023704007 2294544.2657884825021029)", - "surface": 12530000, - "canton": null, - "numero_insee": "49130" - } - }, - { - "pk": 2201, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "EPIEDS", - "center": "POINT (419817.0346651547006331 2239910.4117745412513614)", - "surface": 27390000, - "canton": null, - "numero_insee": "49131" - } - }, - { - "pk": 1934, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ETRICHE", - "center": "POINT (390505.0449611165095121 2299216.7145941574126482)", - "surface": 19820000, - "canton": null, - "numero_insee": "49132" - } - }, - { - "pk": 2222, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FAVERAYE-MACHELLES", - "center": "POINT (384689.9843169630621560 2251830.9932955573312938)", - "surface": 18780000, - "canton": null, - "numero_insee": "49133" - } - }, - { - "pk": 2960, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FAYE-D'ANJOU", - "center": "POINT (383321.5072054187767208 2260026.4274632725864649)", - "surface": 30800000, - "canton": null, - "numero_insee": "49134" - } - }, - { - "pk": 2866, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FENEU", - "center": "POINT (379061.8195957751013339 2291216.3832274698652327)", - "surface": 25910000, - "canton": null, - "numero_insee": "49135" - } - }, - { - "pk": 1787, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA FERRIERE-DE-FLEE", - "center": "POINT (361803.2856348104542121 2308888.5384738217107952)", - "surface": 13400000, - "canton": null, - "numero_insee": "49136" - } - }, - { - "pk": 2899, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE FIEF-SAUVIN", - "center": "POINT (342754.3603966082446277 2251987.0905707180500031)", - "surface": 30450000, - "canton": null, - "numero_insee": "49137" - } - }, - { - "pk": 2245, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FONTAINE-GUERIN", - "center": "POINT (410788.5583638414391316 2278867.6185131091624498)", - "surface": 22400000, - "canton": null, - "numero_insee": "49138" - } - }, - { - "pk": 1916, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FONTAINE-MILON", - "center": "POINT (404861.9848563417326659 2281520.9114057007245719)", - "surface": 8450000, - "canton": null, - "numero_insee": "49139" - } - }, - { - "pk": 1885, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FONTEVRAUD-L'ABBAYE", - "center": "POINT (425477.5595600727247074 2245261.5225429041311145)", - "surface": 14940000, - "canton": null, - "numero_insee": "49140" - } - }, - { - "pk": 2058, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FORGES", - "center": "POINT (405028.3261714743566699 2249196.1763961599208415)", - "surface": 9190000, - "canton": null, - "numero_insee": "49141" - } - }, - { - "pk": 1647, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA FOSSE-DE-TIGNE", - "center": "POINT (389846.5328653039177880 2245468.1674621310085058)", - "surface": 5560000, - "canton": null, - "numero_insee": "49142" - } - }, - { - "pk": 2108, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FOUGERE", - "center": "POINT (412963.1286310591385700 2294297.7422389476560056)", - "surface": 24460000, - "canton": null, - "numero_insee": "49143" - } - }, - { - "pk": 2147, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "FREIGNE", - "center": "POINT (340862.1143462785985321 2287500.2146010398864746)", - "surface": 65410000, - "canton": null, - "numero_insee": "49144" - } - }, - { - "pk": 2561, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE FUILET", - "center": "POINT (338389.6453760485164821 2259457.4627476194873452)", - "surface": 15590000, - "canton": null, - "numero_insee": "49145" - } - }, - { - "pk": 1866, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GEE", - "center": "POINT (406497.7943643042817712 2277331.0455593401566148)", - "surface": 6380000, - "canton": null, - "numero_insee": "49147" - } - }, - { - "pk": 2803, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GENE", - "center": "POINT (363802.3856098854448646 2296995.6659525134600699)", - "surface": 9570000, - "canton": null, - "numero_insee": "49148" - } - }, - { - "pk": 2608, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GENNES", - "center": "POINT (404135.3473054632777348 2260397.9606154342181981)", - "surface": 32990000, - "canton": null, - "numero_insee": "49149" - } - }, - { - "pk": 2404, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GENNETEIL", - "center": "POINT (427713.3429420604952611 2289615.7020027711987495)", - "surface": 35940000, - "canton": null, - "numero_insee": "49150" - } - }, - { - "pk": 1640, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GESTE", - "center": "POINT (338582.3473267625086010 2248149.7879607402719557)", - "surface": 35680000, - "canton": null, - "numero_insee": "49151" - } - }, - { - "pk": 2873, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VALANJOU", - "center": "POINT (377094.1446780553087592 2250567.5428075287491083)", - "surface": 56370000, - "canton": null, - "numero_insee": "49153" - } - }, - { - "pk": 2821, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GREZILLE", - "center": "POINT (398022.5645233523100615 2261348.4081243015825748)", - "surface": 17810000, - "canton": null, - "numero_insee": "49154" - } - }, - { - "pk": 2210, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GREZ-NEUVILLE", - "center": "POINT (371943.5447119874879718 2292759.1436257651075721)", - "surface": 27660000, - "canton": null, - "numero_insee": "49155" - } - }, - { - "pk": 1774, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "GRUGE-L'HOPITAL", - "center": "POINT (347872.9362781966920011 2311276.2229339876212180)", - "surface": 15900000, - "canton": null, - "numero_insee": "49156" - } - }, - { - "pk": 1688, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE GUEDENIAU", - "center": "POINT (421086.1582926686387509 2280153.5324287498369813)", - "surface": 18170000, - "canton": null, - "numero_insee": "49157" - } - }, - { - "pk": 1893, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "L'HOTELLERIE-DE-FLEE", - "center": "POINT (357889.0306615742156282 2310257.5044741705060005)", - "surface": 14830000, - "canton": null, - "numero_insee": "49158" - } - }, - { - "pk": 1622, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "HUILLE", - "center": "POINT (401220.1060796729288995 2298404.2388659771531820)", - "surface": 12720000, - "canton": null, - "numero_insee": "49159" - } - }, - { - "pk": 1867, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "INGRANDES", - "center": "POINT (354287.4937743056798354 2273499.0126412478275597)", - "surface": 6730000, - "canton": null, - "numero_insee": "49160" - } - }, - { - "pk": 2339, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA JAILLE-YVON", - "center": "POINT (373124.4368971189251170 2307380.2619282752275467)", - "surface": 12830000, - "canton": null, - "numero_insee": "49161" - } - }, - { - "pk": 2142, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "JALLAIS", - "center": "POINT (358092.1542877930914983 2248910.2368440292775631)", - "surface": 52950000, - "canton": null, - "numero_insee": "49162" - } - }, - { - "pk": 1996, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "JARZE", - "center": "POINT (406115.0898255500942469 2287335.8411035975441337)", - "surface": 33380000, - "canton": null, - "numero_insee": "49163" - } - }, - { - "pk": 2428, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA JUBAUDIERE", - "center": "POINT (355614.8991176207782701 2245887.4401991087943316)", - "surface": 10930000, - "canton": null, - "numero_insee": "49165" - } - }, - { - "pk": 2671, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "JUIGNE-SUR-LOIRE", - "center": "POINT (387038.7017911156872287 2270465.4189020534977317)", - "surface": 12530000, - "canton": null, - "numero_insee": "49167" - } - }, - { - "pk": 2539, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA JUMELLIERE", - "center": "POINT (368119.2180298421299085 2258800.5764885270036757)", - "surface": 29240000, - "canton": null, - "numero_insee": "49169" - } - }, - { - "pk": 2098, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "JUVARDEIL", - "center": "POINT (385900.1119647035375237 2299378.9813494556583464)", - "surface": 19170000, - "canton": null, - "numero_insee": "49170" - } - }, - { - "pk": 2863, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA LANDE-CHASLES", - "center": "POINT (418716.6183492942363955 2276230.8637498365715146)", - "surface": 5090000, - "canton": null, - "numero_insee": "49171" - } - }, - { - "pk": 1708, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LANDEMONT", - "center": "POINT (329596.9899475991842337 2257684.0890091592445970)", - "surface": 18700000, - "canton": null, - "numero_insee": "49172" - } - }, - { - "pk": 2541, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LASSE", - "center": "POINT (424546.5662436080165207 2285286.1511628157459199)", - "surface": 29130000, - "canton": null, - "numero_insee": "49173" - } - }, - { - "pk": 1783, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LEZIGNE", - "center": "POINT (402438.2783498233184218 2296312.6299953679554164)", - "surface": 9260000, - "canton": null, - "numero_insee": "49174" - } - }, - { - "pk": 1859, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LINIERES-BOUTON", - "center": "POINT (428837.2291668909019791 2274713.1437777346000075)", - "surface": 9910000, - "canton": null, - "numero_insee": "49175" - } - }, - { - "pk": 2405, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE LION-D'ANGERS", - "center": "POINT (368007.0407124808989465 2296830.0323653486557305)", - "surface": 41670000, - "canton": null, - "numero_insee": "49176" - } - }, - { - "pk": 2425, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LIRE", - "center": "POINT (336344.7167596386279911 2264745.0213797893375158)", - "surface": 32140000, - "canton": null, - "numero_insee": "49177" - } - }, - { - "pk": 2548, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LOIRE", - "center": "POINT (351893.0281956375110894 2296998.0346593982540071)", - "surface": 34200000, - "canton": null, - "numero_insee": "49178" - } - }, - { - "pk": 2155, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE LONGERON", - "center": "POINT (343230.9117444991716184 2230473.1837972141802311)", - "surface": 22010000, - "canton": null, - "numero_insee": "49179" - } - }, - { - "pk": 2270, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LONGUE-JUMELLES", - "center": "POINT (415470.3459714229684323 2269398.6228264458477497)", - "surface": 96540000, - "canton": null, - "numero_insee": "49180" - } - }, - { - "pk": 2480, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LOUERRE", - "center": "POINT (399346.6142979992437176 2258557.0395808136090636)", - "surface": 14530000, - "canton": null, - "numero_insee": "49181" - } - }, - { - "pk": 2854, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LOURESSE-ROCHEMENIER", - "center": "POINT (399897.2788998342584819 2252456.5984603138640523)", - "surface": 25980000, - "canton": null, - "numero_insee": "49182" - } - }, - { - "pk": 2386, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE LOUROUX-BECONNAIS", - "center": "POINT (356195.3735557064646855 2284923.7677479027770460)", - "surface": 66110000, - "canton": null, - "numero_insee": "49183" - } - }, - { - "pk": 2064, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LOUVAINES", - "center": "POINT (364347.7733721837867051 2303705.3821439738385379)", - "surface": 15130000, - "canton": null, - "numero_insee": "49184" - } - }, - { - "pk": 2734, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LUE-EN-BAUGEOIS", - "center": "POINT (403346.8745159932295792 2283209.7770185177214444)", - "surface": 7530000, - "canton": null, - "numero_insee": "49185" - } - }, - { - "pk": 1882, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LUIGNE", - "center": "POINT (392949.2561384589644149 2257603.6219064388424158)", - "surface": 9580000, - "canton": null, - "numero_insee": "49186" - } - }, - { - "pk": 1665, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MARANS", - "center": "POINT (360588.5931985774077475 2298370.3854210190474987)", - "surface": 9780000, - "canton": null, - "numero_insee": "49187" - } - }, - { - "pk": 2588, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MARCE", - "center": "POINT (401687.9977579350234009 2290201.6502950005233288)", - "surface": 21180000, - "canton": null, - "numero_insee": "49188" - } - }, - { - "pk": 2454, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MARIGNE", - "center": "POINT (377941.8214534736471251 2305718.5303849084302783)", - "surface": 25020000, - "canton": null, - "numero_insee": "49189" - } - }, - { - "pk": 1858, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE MARILLAIS", - "center": "POINT (342925.8416094441199675 2267701.2763818176463246)", - "surface": 9330000, - "canton": null, - "numero_insee": "49190" - } - }, - { - "pk": 2223, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MARTIGNE-BRIAND", - "center": "POINT (389988.2004010113887489 2252575.1643097409978509)", - "surface": 27260000, - "canton": null, - "numero_insee": "49191" - } - }, - { - "pk": 2621, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MAULEVRIER", - "center": "POINT (363960.8012275003711693 2228941.8165120831690729)", - "surface": 33690000, - "canton": null, - "numero_insee": "49192" - } - }, - { - "pk": 2504, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE MAY-SUR-EVRE", - "center": "POINT (356348.2741815471090376 2241890.1531691537238657)", - "surface": 31850000, - "canton": null, - "numero_insee": "49193" - } - }, - { - "pk": 2409, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MAZE", - "center": "POINT (402399.7448904822813347 2276696.7925777910277247)", - "surface": 33430000, - "canton": null, - "numero_insee": "49194" - } - }, - { - "pk": 2934, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MAZIERES-EN-MAUGES", - "center": "POINT (362121.6205885240342468 2233530.5596297015435994)", - "surface": 8910000, - "canton": null, - "numero_insee": "49195" - } - }, - { - "pk": 2212, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA MEIGNANNE", - "center": "POINT (373612.9471050539286807 2284466.2957666274160147)", - "surface": 23920000, - "canton": null, - "numero_insee": "49196" - } - }, - { - "pk": 1780, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MEIGNE-LE-VICOMTE", - "center": "POINT (438189.5043728033779189 2281395.6960415518842638)", - "surface": 23130000, - "canton": null, - "numero_insee": "49197" - } - }, - { - "pk": 1846, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MEIGNE", - "center": "POINT (406804.1058077085763216 2252313.3551196102052927)", - "surface": 13430000, - "canton": null, - "numero_insee": "49198" - } - }, - { - "pk": 2056, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MELAY", - "center": "POINT (369017.6416833605617285 2246898.2128111911006272)", - "surface": 22900000, - "canton": null, - "numero_insee": "49199" - } - }, - { - "pk": 2120, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA MEMBROLLE-SUR-LONGUENEE", - "center": "POINT (372776.1873785612406209 2288862.9068168927915394)", - "surface": 9630000, - "canton": null, - "numero_insee": "49200" - } - }, - { - "pk": 2636, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA MENITRE", - "center": "POINT (404250.5454310391796753 2270707.2335019856691360)", - "surface": 17860000, - "canton": null, - "numero_insee": "49201" - } - }, - { - "pk": 2396, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MEON", - "center": "POINT (432420.0188285192707554 2277144.6627351888455451)", - "surface": 15100000, - "canton": null, - "numero_insee": "49202" - } - }, - { - "pk": 1611, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE MESNIL-EN-VALLEE", - "center": "POINT (353728.9139106448856182 2268390.3248433303087950)", - "surface": 17830000, - "canton": null, - "numero_insee": "49204" - } - }, - { - "pk": 1822, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MIRE", - "center": "POINT (387708.4320564821828157 2310702.6461286479607224)", - "surface": 17920000, - "canton": null, - "numero_insee": "49205" - } - }, - { - "pk": 1857, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTFAUCON-MONTIGNE", - "center": "POINT (337171.3744161584763788 2237129.1281280368566513)", - "surface": 17060000, - "canton": null, - "numero_insee": "49206" - } - }, - { - "pk": 2780, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTFORT", - "center": "POINT (406553.3802086480427533 2246306.3642321177758276)", - "surface": 4440000, - "canton": null, - "numero_insee": "49207" - } - }, - { - "pk": 1691, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTGUILLON", - "center": "POINT (368111.8534309369861148 2308439.9416892556473613)", - "surface": 12090000, - "canton": null, - "numero_insee": "49208" - } - }, - { - "pk": 1711, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTIGNE-LES-RAIRIES", - "center": "POINT (408254.8063473943620920 2294859.3901473814621568)", - "surface": 9150000, - "canton": null, - "numero_insee": "49209" - } - }, - { - "pk": 2268, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTILLIERS", - "center": "POINT (383829.6463907444267534 2246919.8923797686584294)", - "surface": 26450000, - "canton": null, - "numero_insee": "49211" - } - }, - { - "pk": 1703, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTJEAN-SUR-LOIRE", - "center": "POINT (358020.5982678519794717 2269826.6622945265844464)", - "surface": 19660000, - "canton": null, - "numero_insee": "49212" - } - }, - { - "pk": 1710, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTPOLLIN", - "center": "POINT (415898.2321762634674087 2290318.8048326326534152)", - "surface": 4520000, - "canton": null, - "numero_insee": "49213" - } - }, - { - "pk": 2301, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTREUIL-JUIGNE", - "center": "POINT (377699.4728445736691356 2286501.4681912465021014)", - "surface": 14440000, - "canton": null, - "numero_insee": "49214" - } - }, - { - "pk": 2229, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTREUIL-BELLAY", - "center": "POINT (413215.3234627572819591 2239455.6053477413952351)", - "surface": 49410000, - "canton": null, - "numero_insee": "49215" - } - }, - { - "pk": 2323, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTREUIL-SUR-LOIR", - "center": "POINT (394769.8387811691500247 2291745.9329878184944391)", - "surface": 12100000, - "canton": null, - "numero_insee": "49216" - } - }, - { - "pk": 2063, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTREUIL-SUR-MAINE", - "center": "POINT (371082.9574483787873760 2300057.8030169629491866)", - "surface": 11510000, - "canton": null, - "numero_insee": "49217" - } - }, - { - "pk": 1735, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTREVAULT", - "center": "POINT (343621.4137543122051284 2256097.5517083136364818)", - "surface": 2690000, - "canton": null, - "numero_insee": "49218" - } - }, - { - "pk": 1778, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MONTSOREAU", - "center": "POINT (426952.2416441749082878 2248476.3329295297153294)", - "surface": 5400000, - "canton": null, - "numero_insee": "49219" - } - }, - { - "pk": 2971, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MORANNES", - "center": "POINT (394448.5833805328584276 2306454.7859977129846811)", - "surface": 40870000, - "canton": null, - "numero_insee": "49220" - } - }, - { - "pk": 2189, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MOULIHERNE", - "center": "POINT (424730.0952067892067134 2275179.6240684045478702)", - "surface": 41010000, - "canton": null, - "numero_insee": "49221" - } - }, - { - "pk": 2144, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MOZE-SUR-LOUET", - "center": "POINT (380569.2962711133295670 2266108.7367610461078584)", - "surface": 26010000, - "canton": null, - "numero_insee": "49222" - } - }, - { - "pk": 2188, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "MURS-ERIGNE", - "center": "POINT (381837.3383935817400925 2270122.3910695752128959)", - "surface": 17380000, - "canton": null, - "numero_insee": "49223" - } - }, - { - "pk": 2659, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NEUILLE", - "center": "POINT (422034.6160413330071606 2262246.9813899020664394)", - "surface": 13920000, - "canton": null, - "numero_insee": "49224" - } - }, - { - "pk": 2350, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NEUVY-EN-MAUGES", - "center": "POINT (361730.8683882041368634 2256746.4900677236728370)", - "surface": 18280000, - "canton": null, - "numero_insee": "49225" - } - }, - { - "pk": 2410, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NOELLET", - "center": "POINT (342820.9802247170591727 2304929.9343126704916358)", - "surface": 15670000, - "canton": null, - "numero_insee": "49226" - } - }, - { - "pk": 2681, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NOTRE-DAME-D'ALLENCON", - "center": "POINT (388032.4205410354770720 2259164.4535978110507131)", - "surface": 13860000, - "canton": null, - "numero_insee": "49227" - } - }, - { - "pk": 2615, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NOYANT", - "center": "POINT (432188.4509181019384414 2280945.7781872185878456)", - "surface": 27450000, - "canton": null, - "numero_insee": "49228" - } - }, - { - "pk": 2736, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NOYANT-LA-GRAVOYERE", - "center": "POINT (352620.5679034157074057 2305910.9548840909264982)", - "surface": 11880000, - "canton": null, - "numero_insee": "49229" - } - }, - { - "pk": 2759, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NOYANT-LA-PLAINE", - "center": "POINT (395961.3857009995263070 2256427.4463005117140710)", - "surface": 4970000, - "canton": null, - "numero_insee": "49230" - } - }, - { - "pk": 2071, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NUAILLE", - "center": "POINT (363598.9401685284683481 2236445.1039708410389721)", - "surface": 13630000, - "canton": null, - "numero_insee": "49231" - } - }, - { - "pk": 2914, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NUEIL-SUR-LAYON", - "center": "POINT (392995.0188308184733614 2239889.4601951371878386)", - "surface": 53900000, - "canton": null, - "numero_insee": "49232" - } - }, - { - "pk": 2273, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "NYOISEAU", - "center": "POINT (356620.9471999636152759 2306243.9978208430111408)", - "surface": 15540000, - "canton": null, - "numero_insee": "49233" - } - }, - { - "pk": 2393, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "PARCAY-LES-PINS", - "center": "POINT (434560.4252086495398544 2272458.5893420274369419)", - "surface": 27820000, - "canton": null, - "numero_insee": "49234" - } - }, - { - "pk": 2978, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "PARNAY", - "center": "POINT (423342.0952929782215506 2249347.2584052761085331)", - "surface": 6710000, - "canton": null, - "numero_insee": "49235" - } - }, - { - "pk": 2674, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "PASSAVANT-SUR-LAYON", - "center": "POINT (393519.2956223572837189 2236991.3718252466060221)", - "surface": 4890000, - "canton": null, - "numero_insee": "49236" - } - }, - { - "pk": 2656, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA PELLERINE", - "center": "POINT (433734.2003495605895296 2275554.2439913400448859)", - "surface": 5390000, - "canton": null, - "numero_insee": "49237" - } - }, - { - "pk": 2627, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "PELLOUAILLES-LES-VIGNES", - "center": "POINT (390220.8829218271421269 2285103.2695628022775054)", - "surface": 3650000, - "canton": null, - "numero_insee": "49238" - } - }, - { - "pk": 2148, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE PIN-EN-MAUGES", - "center": "POINT (355034.0623045022366568 2255690.7181190419942141)", - "surface": 17090000, - "canton": null, - "numero_insee": "49239" - } - }, - { - "pk": 1971, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA PLAINE", - "center": "POINT (374728.8062095377827063 2233934.3741590324789286)", - "surface": 22240000, - "canton": null, - "numero_insee": "49240" - } - }, - { - "pk": 1886, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE PLESSIS-GRAMMOIRE", - "center": "POINT (391058.5285446873167530 2280606.5865387702360749)", - "surface": 9450000, - "canton": null, - "numero_insee": "49241" - } - }, - { - "pk": 2891, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE PLESSIS-MACE", - "center": "POINT (374886.7521447712206282 2287779.3795474357903004)", - "surface": 8120000, - "canton": null, - "numero_insee": "49242" - } - }, - { - "pk": 2619, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA POITEVINIERE", - "center": "POINT (356257.9519685697741807 2252898.4687113240361214)", - "surface": 26820000, - "canton": null, - "numero_insee": "49243" - } - }, - { - "pk": 2414, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA POMMERAYE", - "center": "POINT (357758.1492795736994594 2265220.7934620492160320)", - "surface": 39550000, - "canton": null, - "numero_insee": "49244" - } - }, - { - "pk": 2693, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "PONTIGNE", - "center": "POINT (420436.9894633842632174 2286052.8595769926905632)", - "surface": 24610000, - "canton": null, - "numero_insee": "49245" - } - }, - { - "pk": 2338, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES PONTS-DE-CE", - "center": "POINT (385011.7073356464970857 2273551.2332749618217349)", - "surface": 19470000, - "canton": null, - "numero_insee": "49246" - } - }, - { - "pk": 1881, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA POSSONNIERE", - "center": "POINT (370036.8555826931260526 2269024.5924044726416469)", - "surface": 18640000, - "canton": null, - "numero_insee": "49247" - } - }, - { - "pk": 1675, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "POUANCE", - "center": "POINT (335449.4247534259920940 2312975.8504013754427433)", - "surface": 49540000, - "canton": null, - "numero_insee": "49248" - } - }, - { - "pk": 2883, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA POUEZE", - "center": "POINT (363473.5681192816700786 2288286.1113160271197557)", - "surface": 22550000, - "canton": null, - "numero_insee": "49249" - } - }, - { - "pk": 1939, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA PREVIERE", - "center": "POINT (336290.1347083253203891 2308078.9367080973461270)", - "surface": 7400000, - "canton": null, - "numero_insee": "49250" - } - }, - { - "pk": 1800, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "PRUILLE", - "center": "POINT (374656.1795310917077586 2291480.4078531451523304)", - "surface": 13050000, - "canton": null, - "numero_insee": "49251" - } - }, - { - "pk": 2196, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE PUISET-DORE", - "center": "POINT (336630.0970392272574827 2254338.8878416996449232)", - "surface": 22640000, - "canton": null, - "numero_insee": "49252" - } - }, - { - "pk": 1659, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE PUY-NOTRE-DAME", - "center": "POINT (405320.0420882656471804 2238089.4225985356606543)", - "surface": 15880000, - "canton": null, - "numero_insee": "49253" - } - }, - { - "pk": 2794, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "QUERRE", - "center": "POINT (378478.3714978697826155 2301319.5128423967398703)", - "surface": 12590000, - "canton": null, - "numero_insee": "49254" - } - }, - { - "pk": 2906, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "RABLAY-SUR-LAYON", - "center": "POINT (378736.1808465021895245 2257786.9288485953584313)", - "surface": 7550000, - "canton": null, - "numero_insee": "49256" - } - }, - { - "pk": 2768, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES RAIRIES", - "center": "POINT (408130.8107640802627429 2297760.6417406070977449)", - "surface": 8470000, - "canton": null, - "numero_insee": "49257" - } - }, - { - "pk": 2280, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA RENAUDIERE", - "center": "POINT (341937.3226111518451944 2241771.9896642575040460)", - "surface": 21530000, - "canton": null, - "numero_insee": "49258" - } - }, - { - "pk": 2077, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ROCHEFORT-SUR-LOIRE", - "center": "POINT (374369.6389232273213565 2265457.2860025563277304)", - "surface": 28040000, - "canton": null, - "numero_insee": "49259" - } - }, - { - "pk": 2171, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA ROMAGNE", - "center": "POINT (345807.4811241513816640 2233596.8923563323915005)", - "surface": 16110000, - "canton": null, - "numero_insee": "49260" - } - }, - { - "pk": 2957, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES ROSIERS-SUR-LOIRE", - "center": "POINT (406683.6595977311953902 2266924.2270537079311907)", - "surface": 26070000, - "canton": null, - "numero_insee": "49261" - } - }, - { - "pk": 1739, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ROU-MARSON", - "center": "POINT (411607.7067640902241692 2252352.9641963792964816)", - "surface": 12910000, - "canton": null, - "numero_insee": "49262" - } - }, - { - "pk": 3003, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "ROUSSAY", - "center": "POINT (342374.5298680236446671 2237271.8380863605998456)", - "surface": 11000000, - "canton": null, - "numero_insee": "49263" - } - }, - { - "pk": 1850, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-ANDRE-DE-LA-MARCHE", - "center": "POINT (346569.5356302049476653 2238307.0518388315103948)", - "surface": 11170000, - "canton": null, - "numero_insee": "49264" - } - }, - { - "pk": 1551, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-AUBIN-DE-LUIGNE", - "center": "POINT (372194.3209634543163702 2262236.8178296508267522)", - "surface": 15320000, - "canton": null, - "numero_insee": "49265" - } - }, - { - "pk": 1997, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-AUGUSTIN-DES-BOIS", - "center": "POINT (363462.2202645734651014 2277477.4258751049637794)", - "surface": 27440000, - "canton": null, - "numero_insee": "49266" - } - }, - { - "pk": 2967, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-BARTHELEMY-D'ANJOU", - "center": "POINT (387271.4030048443819396 2278673.9055999442934990)", - "surface": 14680000, - "canton": null, - "numero_insee": "49267" - } - }, - { - "pk": 2281, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINTE-CHRISTINE", - "center": "POINT (360009.8833274714415893 2259134.3201429322361946)", - "surface": 9500000, - "canton": null, - "numero_insee": "49268" - } - }, - { - "pk": 2682, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-CHRISTOPHE-DU-BOIS", - "center": "POINT (349033.7330147256725468 2230720.9204629608429968)", - "surface": 21800000, - "canton": null, - "numero_insee": "49269" - } - }, - { - "pk": 2670, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-CHRISTOPHE-LA-COUPERIE", - "center": "POINT (334006.0208134910208173 2257019.6081621400080621)", - "surface": 8430000, - "canton": null, - "numero_insee": "49270" - } - }, - { - "pk": 1829, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-CLEMENT-DE-LA-PLACE", - "center": "POINT (368802.8839330285554752 2285227.4149346919730306)", - "surface": 33410000, - "canton": null, - "numero_insee": "49271" - } - }, - { - "pk": 1945, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-CLEMENT-DES-LEVEES", - "center": "POINT (409613.8584478605771437 2263545.6370822116732597)", - "surface": 10420000, - "canton": null, - "numero_insee": "49272" - } - }, - { - "pk": 1662, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-CRESPIN-SUR-MOINE", - "center": "POINT (331837.0086192504968494 2240788.5211755093187094)", - "surface": 20330000, - "canton": null, - "numero_insee": "49273" - } - }, - { - "pk": 1772, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-CYR-EN-BOURG", - "center": "POINT (419161.2375770901562646 2246610.5270258472301066)", - "surface": 8680000, - "canton": null, - "numero_insee": "49274" - } - }, - { - "pk": 1682, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-FLORENT-LE-VIEIL", - "center": "POINT (347644.9094519531354308 2265838.4161613853648305)", - "surface": 24890000, - "canton": null, - "numero_insee": "49276" - } - }, - { - "pk": 2443, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINTE-GEMMES-D'ANDIGNE", - "center": "POINT (357262.4212607590015978 2301245.3627700228244066)", - "surface": 25390000, - "canton": null, - "numero_insee": "49277" - } - }, - { - "pk": 2824, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINTE-GEMMES-SUR-LOIRE", - "center": "POINT (380305.7857875906629488 2273812.7700611804611981)", - "surface": 14820000, - "canton": null, - "numero_insee": "49278" - } - }, - { - "pk": 2374, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-GEORGES-DES-SEPT-VOIES", - "center": "POINT (400900.8099321734625846 2264274.4687033547088504)", - "surface": 15100000, - "canton": null, - "numero_insee": "49279" - } - }, - { - "pk": 2705, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-GEORGES-DU-BOIS", - "center": "POINT (407273.6304852542234585 2280339.8340845336206257)", - "surface": 9490000, - "canton": null, - "numero_insee": "49280" - } - }, - { - "pk": 2103, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-GEORGES-DES-GARDES", - "center": "POINT (364926.0473701131995767 2245463.4541452168487012)", - "surface": 27570000, - "canton": null, - "numero_insee": "49281" - } - }, - { - "pk": 1584, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-GEORGES-SUR-LAYON", - "center": "POINT (393933.1522917560068890 2247503.4567225202918053)", - "surface": 22640000, - "canton": null, - "numero_insee": "49282" - } - }, - { - "pk": 1693, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-GEORGES-SUR-LOIRE", - "center": "POINT (366613.7984096838627011 2271498.4903797581791878)", - "surface": 34410000, - "canton": null, - "numero_insee": "49283" - } - }, - { - "pk": 2747, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-GERMAIN-DES-PRES", - "center": "POINT (362401.6668902961537242 2272564.7912419857457280)", - "surface": 20000000, - "canton": null, - "numero_insee": "49284" - } - }, - { - "pk": 2138, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-GERMAIN-SUR-MOINE", - "center": "POINT (337539.7121340485173278 2241035.3831602954305708)", - "surface": 26980000, - "canton": null, - "numero_insee": "49285" - } - }, - { - "pk": 1911, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-JEAN-DE-LA-CROIX", - "center": "POINT (379319.8615885305916891 2272003.2181948791258037)", - "surface": 1890000, - "canton": null, - "numero_insee": "49288" - } - }, - { - "pk": 2856, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-JEAN-DE-LINIERES", - "center": "POINT (372969.1753024190547876 2277555.5080602504312992)", - "surface": 8790000, - "canton": null, - "numero_insee": "49289" - } - }, - { - "pk": 2536, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-JEAN-DES-MAUVRETS", - "center": "POINT (388854.0284818372456357 2268778.9877408761531115)", - "surface": 12740000, - "canton": null, - "numero_insee": "49290" - } - }, - { - "pk": 2977, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-JUST-SUR-DIVE", - "center": "POINT (415278.1118134012212977 2244176.5067686857655644)", - "surface": 7250000, - "canton": null, - "numero_insee": "49291" - } - }, - { - "pk": 1568, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LAMBERT-DU-LATTAY", - "center": "POINT (374916.0691170832142234 2259857.2351662744767964)", - "surface": 14680000, - "canton": null, - "numero_insee": "49292" - } - }, - { - "pk": 2468, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LAMBERT-LA-POTHERIE", - "center": "POINT (371842.8821554458700120 2280648.7287341756746173)", - "surface": 14110000, - "canton": null, - "numero_insee": "49294" - } - }, - { - "pk": 2310, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LAURENT-DE-LA-PLAINE", - "center": "POINT (362796.3641795449075289 2261058.7381682237610221)", - "surface": 18880000, - "canton": null, - "numero_insee": "49295" - } - }, - { - "pk": 2813, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LAURENT-DES-AUTELS", - "center": "POINT (333779.6526227351860143 2260220.3637092947028577)", - "surface": 18720000, - "canton": null, - "numero_insee": "49296" - } - }, - { - "pk": 2423, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LAURENT-DU-MOTTAY", - "center": "POINT (351243.4771104103419930 2266368.3252010089345276)", - "surface": 14740000, - "canton": null, - "numero_insee": "49297" - } - }, - { - "pk": 2692, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LEGER-DES-BOIS", - "center": "POINT (368961.3155106972553767 2278123.0619121463969350)", - "surface": 15720000, - "canton": null, - "numero_insee": "49298" - } - }, - { - "pk": 2792, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LEGER-SOUS-CHOLET", - "center": "POINT (354072.7965287297847681 2238668.8320949110202491)", - "surface": 9720000, - "canton": null, - "numero_insee": "49299" - } - }, - { - "pk": 1649, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-LEZIN", - "center": "POINT (364450.1450055913301185 2254667.0999369448982179)", - "surface": 13220000, - "canton": null, - "numero_insee": "49300" - } - }, - { - "pk": 2465, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MACAIRE-EN-MAUGES", - "center": "POINT (347043.6636589573463425 2241513.5926782232709229)", - "surface": 27640000, - "canton": null, - "numero_insee": "49301" - } - }, - { - "pk": 2664, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MACAIRE-DU-BOIS", - "center": "POINT (400715.7148796732653864 2238151.5599060659296811)", - "surface": 13230000, - "canton": null, - "numero_insee": "49302" - } - }, - { - "pk": 2993, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MARTIN-D'ARCE", - "center": "POINT (417712.7405983437784016 2288732.5129915229044855)", - "surface": 13430000, - "canton": null, - "numero_insee": "49303" - } - }, - { - "pk": 2944, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MARTIN-DE-LA-PLACE", - "center": "POINT (412941.0685292723355815 2260570.6447371691465378)", - "surface": 14830000, - "canton": null, - "numero_insee": "49304" - } - }, - { - "pk": 1810, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MARTIN-DU-BOIS", - "center": "POINT (369346.4006223371252418 2304346.8944893889129162)", - "surface": 21950000, - "canton": null, - "numero_insee": "49305" - } - }, - { - "pk": 3005, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MARTIN-DU-FOUILLOUX", - "center": "POINT (370286.1069071537931450 2275231.6233918899670243)", - "surface": 14960000, - "canton": null, - "numero_insee": "49306" - } - }, - { - "pk": 1782, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MATHURIN-SUR-LOIRE", - "center": "POINT (399532.2465512957423925 2272469.8032503928989172)", - "surface": 19770000, - "canton": null, - "numero_insee": "49307" - } - }, - { - "pk": 1958, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MELAINE-SUR-AUBANCE", - "center": "POINT (385654.1361476919846609 2268452.4164661830291152)", - "surface": 5000000, - "canton": null, - "numero_insee": "49308" - } - }, - { - "pk": 2321, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-MICHEL-ET-CHANVEAUX", - "center": "POINT (338736.0908661267021671 2302694.7596471565775573)", - "surface": 28030000, - "canton": null, - "numero_insee": "49309" - } - }, - { - "pk": 2614, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-PAUL-DU-BOIS", - "center": "POINT (381416.6498893515672535 2236091.1103771184571087)", - "surface": 26810000, - "canton": null, - "numero_insee": "49310" - } - }, - { - "pk": 2360, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-PHILBERT-DU-PEUPLE", - "center": "POINT (420282.9678931951057166 2268337.4508117763325572)", - "surface": 16640000, - "canton": null, - "numero_insee": "49311" - } - }, - { - "pk": 2131, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-PHILBERT-EN-MAUGES", - "center": "POINT (345514.6323011436033994 2244903.8700199574232101)", - "surface": 7280000, - "canton": null, - "numero_insee": "49312" - } - }, - { - "pk": 2773, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-PIERRE-MONTLIMART", - "center": "POINT (345104.4937567450106144 2258311.5013807336799800)", - "surface": 22230000, - "canton": null, - "numero_insee": "49313" - } - }, - { - "pk": 2522, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-QUENTIN-EN-MAUGES", - "center": "POINT (355304.7313602999201976 2259295.8745353468693793)", - "surface": 21320000, - "canton": null, - "numero_insee": "49314" - } - }, - { - "pk": 1975, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-QUENTIN-LES-BEAUREPAIRE", - "center": "POINT (416453.2552407542825677 2295827.7091769101098180)", - "surface": 7560000, - "canton": null, - "numero_insee": "49315" - } - }, - { - "pk": 1752, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-REMY-EN-MAUGES", - "center": "POINT (341208.1356380835641176 2257478.9207060569897294)", - "surface": 21610000, - "canton": null, - "numero_insee": "49316" - } - }, - { - "pk": 1905, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-REMY-LA-VARENNE", - "center": "POINT (399463.4991478922311217 2268666.1805670089088380)", - "surface": 15710000, - "canton": null, - "numero_insee": "49317" - } - }, - { - "pk": 2988, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-SATURNIN-SUR-LOIRE", - "center": "POINT (391158.1972840398084372 2268497.7100858548656106)", - "surface": 12050000, - "canton": null, - "numero_insee": "49318" - } - }, - { - "pk": 1840, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-SAUVEUR-DE-FLEE", - "center": "POINT (364193.4837427905295044 2310309.2419838020578027)", - "surface": 13090000, - "canton": null, - "numero_insee": "49319" - } - }, - { - "pk": 1789, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-SAUVEUR-DE-LANDEMONT", - "center": "POINT (329270.5581836688797921 2260884.0252374284900725)", - "surface": 11770000, - "canton": null, - "numero_insee": "49320" - } - }, - { - "pk": 2870, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-SIGISMOND", - "center": "POINT (352753.5610649542068131 2277489.6380178201943636)", - "surface": 13010000, - "canton": null, - "numero_insee": "49321" - } - }, - { - "pk": 1918, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-SULPICE", - "center": "POINT (392141.6355852923588827 2270607.4964338354766369)", - "surface": 2760000, - "canton": null, - "numero_insee": "49322" - } - }, - { - "pk": 1836, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAINT-SYLVAIN-D'ANJOU", - "center": "POINT (388137.4752585730748251 2282884.3776457356289029)", - "surface": 22000000, - "canton": null, - "numero_insee": "49323" - } - }, - { - "pk": 1755, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA SALLE-ET-CHAPELLE-AUBRY", - "center": "POINT (349634.1167908494826406 2255146.0214782631956041)", - "surface": 18900000, - "canton": null, - "numero_insee": "49324" - } - }, - { - "pk": 1536, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA SALLE-DE-VIHIERS", - "center": "POINT (375237.1334149655885994 2245147.8363955961540341)", - "surface": 17390000, - "canton": null, - "numero_insee": "49325" - } - }, - { - "pk": 1801, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SARRIGNE", - "center": "POINT (394853.0581467981683090 2281638.6204683496616781)", - "surface": 3050000, - "canton": null, - "numero_insee": "49326" - } - }, - { - "pk": 1935, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAULGE-L'HOPITAL", - "center": "POINT (394534.7941541324835271 2259518.2226586723700166)", - "surface": 6660000, - "canton": null, - "numero_insee": "49327" - } - }, - { - "pk": 1956, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAUMUR", - "center": "POINT (416892.6888077674084343 2254698.4427387556061149)", - "surface": 66500000, - "canton": null, - "numero_insee": "49328" - } - }, - { - "pk": 2648, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SAVENNIERES", - "center": "POINT (373317.9119516256032512 2271653.6431727614253759)", - "surface": 21260000, - "canton": null, - "numero_insee": "49329" - } - }, - { - "pk": 1864, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SCEAUX-D'ANJOU", - "center": "POINT (378617.9297987290192395 2296516.9031718247570097)", - "surface": 17380000, - "canton": null, - "numero_insee": "49330" - } - }, - { - "pk": 2116, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SEGRE", - "center": "POINT (359833.0733559076907113 2305069.4180364343337715)", - "surface": 16230000, - "canton": null, - "numero_insee": "49331" - } - }, - { - "pk": 2385, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA SEGUINIERE", - "center": "POINT (349888.4675304470583797 2236332.6011096257716417)", - "surface": 31490000, - "canton": null, - "numero_insee": "49332" - } - }, - { - "pk": 2427, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SEICHES-SUR-LE-LOIR", - "center": "POINT (397263.3975214936072007 2292767.2533403644338250)", - "surface": 28890000, - "canton": null, - "numero_insee": "49333" - } - }, - { - "pk": 2686, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SERMAISE", - "center": "POINT (407748.4203823572024703 2283446.2135666878893971)", - "surface": 7240000, - "canton": null, - "numero_insee": "49334" - } - }, - { - "pk": 2544, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SOEURDRES", - "center": "POINT (381921.6196082956157625 2308553.4232199513353407)", - "surface": 15300000, - "canton": null, - "numero_insee": "49335" - } - }, - { - "pk": 1972, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SOMLOIRE", - "center": "POINT (377161.0864610918797553 2230251.2806393397040665)", - "surface": 31800000, - "canton": null, - "numero_insee": "49336" - } - }, - { - "pk": 1832, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SOUCELLES", - "center": "POINT (392277.0996650027809665 2290624.5444234483875334)", - "surface": 19470000, - "canton": null, - "numero_insee": "49337" - } - }, - { - "pk": 1811, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SOULAINES-SUR-AUBANCE", - "center": "POINT (384272.8590683804359287 2266039.1160896355286241)", - "surface": 12890000, - "canton": null, - "numero_insee": "49338" - } - }, - { - "pk": 1767, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SOULAIRE-ET-BOURG", - "center": "POINT (383369.8579148798598908 2290651.3343274807557464)", - "surface": 18330000, - "canton": null, - "numero_insee": "49339" - } - }, - { - "pk": 1726, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "SOUZAY-CHAMPIGNY", - "center": "POINT (421443.1447476270841435 2249031.3345421799458563)", - "surface": 9150000, - "canton": null, - "numero_insee": "49341" - } - }, - { - "pk": 1580, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TANCOIGNE", - "center": "POINT (391455.1572393880924210 2244580.6670402367599308)", - "surface": 4260000, - "canton": null, - "numero_insee": "49342" - } - }, - { - "pk": 2366, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA TESSOUALLE", - "center": "POINT (358664.1124791441252455 2227997.5798399425111711)", - "surface": 21190000, - "canton": null, - "numero_insee": "49343" - } - }, - { - "pk": 1794, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "THORIGNE-D'ANJOU", - "center": "POINT (374510.0560722296359017 2297083.6109585948288441)", - "surface": 16840000, - "canton": null, - "numero_insee": "49344" - } - }, - { - "pk": 2513, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "THOUARCE", - "center": "POINT (383963.9381529379170388 2254927.5563154434785247)", - "surface": 19080000, - "canton": null, - "numero_insee": "49345" - } - }, - { - "pk": 2907, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE THOUREIL", - "center": "POINT (402883.3252007584087551 2266592.6629662918858230)", - "surface": 10960000, - "canton": null, - "numero_insee": "49346" - } - }, - { - "pk": 2403, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TIERCE", - "center": "POINT (391037.5233704017009586 2295318.0405621328391135)", - "surface": 34090000, - "canton": null, - "numero_insee": "49347" - } - }, - { - "pk": 1716, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TIGNE", - "center": "POINT (389724.2173481422942132 2248169.3826659778133035)", - "surface": 16930000, - "canton": null, - "numero_insee": "49348" - } - }, - { - "pk": 2234, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TILLIERES", - "center": "POINT (334109.2622311438317411 2244410.1039507905952632)", - "surface": 24430000, - "canton": null, - "numero_insee": "49349" - } - }, - { - "pk": 2306, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TORFOU", - "center": "POINT (339706.0809707574080676 2233146.5580212259665132)", - "surface": 32390000, - "canton": null, - "numero_insee": "49350" - } - }, - { - "pk": 1753, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA TOURLANDRY", - "center": "POINT (369654.2698934915824793 2242499.8124192641116679)", - "surface": 19340000, - "canton": null, - "numero_insee": "49351" - } - }, - { - "pk": 2622, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TOUTLEMONDE", - "center": "POINT (364927.0537215595832095 2233153.2612898098304868)", - "surface": 12880000, - "canton": null, - "numero_insee": "49352" - } - }, - { - "pk": 1766, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TRELAZE", - "center": "POINT (388092.5739674140932038 2276178.6643598712980747)", - "surface": 12270000, - "canton": null, - "numero_insee": "49353" - } - }, - { - "pk": 2389, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE TREMBLAY", - "center": "POINT (346146.2913879953557625 2302154.9972801487892866)", - "surface": 23440000, - "canton": null, - "numero_insee": "49354" - } - }, - { - "pk": 2256, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TREMENTINES", - "center": "POINT (361964.0325486060464755 2240535.0842367084696889)", - "surface": 34860000, - "canton": null, - "numero_insee": "49355" - } - }, - { - "pk": 2817, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TREMONT", - "center": "POINT (388463.5935940252384171 2243254.9706014543771744)", - "surface": 8110000, - "canton": null, - "numero_insee": "49356" - } - }, - { - "pk": 1690, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "TURQUANT", - "center": "POINT (424652.1633020791923627 2248257.1731693856418133)", - "surface": 7920000, - "canton": null, - "numero_insee": "49358" - } - }, - { - "pk": 2720, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES ULMES", - "center": "POINT (409224.0606501567526720 2250131.5050629712641239)", - "surface": 8190000, - "canton": null, - "numero_insee": "49359" - } - }, - { - "pk": 1509, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LA VARENNE", - "center": "POINT (324542.4908550536492839 2263847.7796919746324420)", - "surface": 14170000, - "canton": null, - "numero_insee": "49360" - } - }, - { - "pk": 1683, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VARENNES-SUR-LOIRE", - "center": "POINT (426220.3072433066554368 2252273.4016548008657992)", - "surface": 23450000, - "canton": null, - "numero_insee": "49361" - } - }, - { - "pk": 2516, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VARRAINS", - "center": "POINT (418029.8500254537211731 2250304.2276192218996584)", - "surface": 3450000, - "canton": null, - "numero_insee": "49362" - } - }, - { - "pk": 2311, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VAUCHRETIEN", - "center": "POINT (386794.4717788046109490 2263657.9196570008061826)", - "surface": 20110000, - "canton": null, - "numero_insee": "49363" - } - }, - { - "pk": 1678, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VAUDELNAY", - "center": "POINT (406597.1059406159911305 2241002.3519897274672985)", - "surface": 25620000, - "canton": null, - "numero_insee": "49364" - } - }, - { - "pk": 2517, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LES VERCHERS-SUR-LAYON", - "center": "POINT (399884.5988404471427202 2241847.7758138934150338)", - "surface": 30860000, - "canton": null, - "numero_insee": "49365" - } - }, - { - "pk": 1830, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VERGONNES", - "center": "POINT (343793.8154312776168808 2308340.5483885048888624)", - "surface": 10580000, - "canton": null, - "numero_insee": "49366" - } - }, - { - "pk": 2313, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VERN-D'ANJOU", - "center": "POINT (360336.8310487420530990 2292463.6825841548852623)", - "surface": 37330000, - "canton": null, - "numero_insee": "49367" - } - }, - { - "pk": 1562, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VERNANTES", - "center": "POINT (425785.3703160753939301 2268583.0398454815149307)", - "surface": 41700000, - "canton": null, - "numero_insee": "49368" - } - }, - { - "pk": 1981, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VERNOIL-LE-FOURRIER", - "center": "POINT (430989.2025472915265709 2268626.0244017820805311)", - "surface": 33200000, - "canton": null, - "numero_insee": "49369" - } - }, - { - "pk": 2958, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VERRIE", - "center": "POINT (409082.7264590843697079 2255134.4298324720002711)", - "surface": 17100000, - "canton": null, - "numero_insee": "49370" - } - }, - { - "pk": 2765, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VEZINS", - "center": "POINT (367977.6403107990045100 2239483.5553824328817427)", - "surface": 18390000, - "canton": null, - "numero_insee": "49371" - } - }, - { - "pk": 2274, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "LE VIEIL-BAUGE", - "center": "POINT (413155.6422040371689945 2283090.4830610058270395)", - "surface": 28650000, - "canton": null, - "numero_insee": "49372" - } - }, - { - "pk": 2294, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VIHIERS", - "center": "POINT (380371.4438032637117431 2241486.9929939880967140)", - "surface": 60030000, - "canton": null, - "numero_insee": "49373" - } - }, - { - "pk": 1715, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VILLEBERNIER", - "center": "POINT (421601.9875424854690209 2254036.7390683870762587)", - "surface": 10090000, - "canton": null, - "numero_insee": "49374" - } - }, - { - "pk": 2582, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VILLEDIEU-LA-BLOUERE", - "center": "POINT (342905.2798167392611504 2245783.2274593440815806)", - "surface": 14370000, - "canton": null, - "numero_insee": "49375" - } - }, - { - "pk": 1521, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VILLEMOISAN", - "center": "POINT (356840.1443101066979580 2279524.7574775912798941)", - "surface": 20850000, - "canton": null, - "numero_insee": "49376" - } - }, - { - "pk": 2359, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VILLEVEQUE", - "center": "POINT (390506.2753463254775852 2286907.0448617553338408)", - "surface": 28670000, - "canton": null, - "numero_insee": "49377" - } - }, - { - "pk": 2112, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VIVY", - "center": "POINT (418343.4321549073210917 2260815.3791420022025704)", - "surface": 23490000, - "canton": null, - "numero_insee": "49378" - } - }, - { - "pk": 2560, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "VAULANDRY", - "center": "POINT (422486.4644027380272746 2292374.7493753428570926)", - "surface": 27880000, - "canton": null, - "numero_insee": "49380" - } - }, - { - "pk": 2590, - "model": "ishtar_common.town", - "fields": { - "departement": 50, - "name": "YZERNAY", - "center": "POINT (369452.7020243817241862 2230488.1794266137294471)", - "surface": 41290000, - "canton": null, - "numero_insee": "49381" - } - }, - { - "pk": 37966, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ACQUEVILLE", - "center": "POINT (304434.7761648697778583 2520365.8977125016972423)", - "surface": 5770000, - "canton": null, - "numero_insee": "50001" - } - }, - { - "pk": 32233, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AGNEAUX", - "center": "POINT (346829.3758286625379696 2463075.9790742695331573)", - "surface": 6550000, - "canton": null, - "numero_insee": "50002" - } - }, - { - "pk": 23943, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AGON-COUTAINVILLE", - "center": "POINT (313364.4278473591548391 2456097.9487145137973130)", - "surface": 12570000, - "canton": null, - "numero_insee": "50003" - } - }, - { - "pk": 18998, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AIREL", - "center": "POINT (350944.9417322045192122 2473716.5725306756794453)", - "surface": 10090000, - "canton": null, - "numero_insee": "50004" - } - }, - { - "pk": 3962, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AMFREVILLE", - "center": "POINT (329642.1488466364680789 2496857.0507708825170994)", - "surface": 10230000, - "canton": null, - "numero_insee": "50005" - } - }, - { - "pk": 7399, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AMIGNY", - "center": "POINT (342987.8279095206526108 2467847.6515769078396261)", - "surface": 3660000, - "canton": null, - "numero_insee": "50006" - } - }, - { - "pk": 27424, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANCTEVILLE", - "center": "POINT (322716.0461999098188244 2462778.6615410479716957)", - "surface": 7810000, - "canton": null, - "numero_insee": "50007" - } - }, - { - "pk": 6147, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANCTOVILLE-SUR-BOSCQ", - "center": "POINT (316242.5219909753068350 2434507.0014607398770750)", - "surface": 2140000, - "canton": null, - "numero_insee": "50008" - } - }, - { - "pk": 3714, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANGEY", - "center": "POINT (318932.3872797280200757 2423721.6097210599109530)", - "surface": 2520000, - "canton": null, - "numero_insee": "50009" - } - }, - { - "pk": 24391, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANGOVILLE-AU-PLAIN", - "center": "POINT (338907.8818893359275535 2489528.1721365307457745)", - "surface": 5760000, - "canton": null, - "numero_insee": "50010" - } - }, - { - "pk": 10054, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANGOVILLE-SUR-AY", - "center": "POINT (316773.7425402440130711 2479741.1391158229671419)", - "surface": 6860000, - "canton": null, - "numero_insee": "50012" - } - }, - { - "pk": 24285, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANNEVILLE-EN-SAIRE", - "center": "POINT (338146.4689052641624585 2521441.7078892672434449)", - "surface": 6020000, - "canton": null, - "numero_insee": "50013" - } - }, - { - "pk": 28372, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANNEVILLE-SUR-MER", - "center": "POINT (313490.2170383678167127 2465204.9504095604643226)", - "surface": 4240000, - "canton": null, - "numero_insee": "50014" - } - }, - { - "pk": 36013, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ANNOVILLE", - "center": "POINT (316638.2314078889903612 2447318.8382222396321595)", - "surface": 8560000, - "canton": null, - "numero_insee": "50015" - } - }, - { - "pk": 21510, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "APPEVILLE", - "center": "POINT (332822.4325187895447016 2487276.9988646148703992)", - "surface": 13360000, - "canton": null, - "numero_insee": "50016" - } - }, - { - "pk": 17070, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ARGOUGES", - "center": "POINT (325275.0126465042121708 2394553.0779581521637738)", - "surface": 16630000, - "canton": null, - "numero_insee": "50018" - } - }, - { - "pk": 30030, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AUDERVILLE", - "center": "POINT (291635.0076102380990051 2531668.4960122029297054)", - "surface": 4520000, - "canton": null, - "numero_insee": "50020" - } - }, - { - "pk": 28204, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AUDOUVILLE-LA-HUBERT", - "center": "POINT (341249.4600555587094277 2496851.9293155800551176)", - "surface": 6440000, - "canton": null, - "numero_insee": "50021" - } - }, - { - "pk": 24980, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AUMEVILLE-LESTRE", - "center": "POINT (334931.4239014740451239 2510808.9330412368290126)", - "surface": 2510000, - "canton": null, - "numero_insee": "50022" - } - }, - { - "pk": 22602, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AUVERS", - "center": "POINT (333548.1970319386455230 2484180.9634147733449936)", - "surface": 18900000, - "canton": null, - "numero_insee": "50023" - } - }, - { - "pk": 27384, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AUXAIS", - "center": "POINT (334526.4583330898894928 2474682.8771559125743806)", - "surface": 7900000, - "canton": null, - "numero_insee": "50024" - } - }, - { - "pk": 30605, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AVRANCHES", - "center": "POINT (327999.3187333999667317 2416290.5469374395906925)", - "surface": 4470000, - "canton": null, - "numero_insee": "50025" - } - }, - { - "pk": 10536, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "AZEVILLE", - "center": "POINT (335206.8204710575519130 2501605.4893952291458845)", - "surface": 3050000, - "canton": null, - "numero_insee": "50026" - } - }, - { - "pk": 13156, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA BALEINE", - "center": "POINT (333289.9323084154748358 2442351.5224826568737626)", - "surface": 4050000, - "canton": null, - "numero_insee": "50028" - } - }, - { - "pk": 13429, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BARFLEUR", - "center": "POINT (339918.7877757644164376 2524958.3261015070602298)", - "surface": 670000, - "canton": null, - "numero_insee": "50030" - } - }, - { - "pk": 35384, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BARNEVILLE-CARTERET", - "center": "POINT (301641.9456765747745521 2494727.2775344369001687)", - "surface": 10390000, - "canton": null, - "numero_insee": "50031" - } - }, - { - "pk": 27010, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA BARRE-DE-SEMILLY", - "center": "POINT (354946.4258617862360552 2461641.5023888684809208)", - "surface": 7810000, - "canton": null, - "numero_insee": "50032" - } - }, - { - "pk": 13773, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BAUBIGNY", - "center": "POINT (299296.6143828082713298 2500111.5485446560196579)", - "surface": 6520000, - "canton": null, - "numero_insee": "50033" - } - }, - { - "pk": 25751, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BAUDRE", - "center": "POINT (351059.7119255776051432 2459708.4060554620809853)", - "surface": 3820000, - "canton": null, - "numero_insee": "50034" - } - }, - { - "pk": 7626, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BAUDREVILLE", - "center": "POINT (311817.8506882776273414 2486204.8353264182806015)", - "surface": 4690000, - "canton": null, - "numero_insee": "50035" - } - }, - { - "pk": 14126, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA BAZOGE", - "center": "POINT (351464.7641460923478007 2410278.3363468134775758)", - "surface": 5850000, - "canton": null, - "numero_insee": "50037" - } - }, - { - "pk": 32274, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEAUCHAMPS", - "center": "POINT (328063.6316737346933223 2432902.4425430931150913)", - "surface": 4110000, - "canton": null, - "numero_insee": "50038" - } - }, - { - "pk": 24226, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEAUCOUDRAY", - "center": "POINT (345168.4318991720210761 2445951.0833668150007725)", - "surface": 4710000, - "canton": null, - "numero_insee": "50039" - } - }, - { - "pk": 17778, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEAUFICEL", - "center": "POINT (357280.6763206536415964 2421033.4093090570531785)", - "surface": 9120000, - "canton": null, - "numero_insee": "50040" - } - }, - { - "pk": 17004, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEAUMONT-HAGUE", - "center": "POINT (297981.5749643013696186 2526416.9990943027660251)", - "surface": 7930000, - "canton": null, - "numero_insee": "50041" - } - }, - { - "pk": 36020, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEAUVOIR", - "center": "POINT (314962.2238778008031659 2407477.9640844138339162)", - "surface": 14390000, - "canton": null, - "numero_insee": "50042" - } - }, - { - "pk": 37790, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BELLEFONTAINE", - "center": "POINT (355633.7669555232860148 2414415.3550236928276718)", - "surface": 6810000, - "canton": null, - "numero_insee": "50043" - } - }, - { - "pk": 6831, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BELVAL", - "center": "POINT (330062.0600378534290940 2457735.3569625965319574)", - "surface": 5800000, - "canton": null, - "numero_insee": "50044" - } - }, - { - "pk": 35719, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BENOITVILLE", - "center": "POINT (302107.6954116700799204 2511241.3522794023156166)", - "surface": 8480000, - "canton": null, - "numero_insee": "50045" - } - }, - { - "pk": 11072, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BERIGNY", - "center": "POINT (360223.2799681965261698 2464886.8544948371127248)", - "surface": 12120000, - "canton": null, - "numero_insee": "50046" - } - }, - { - "pk": 4597, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BESLON", - "center": "POINT (343460.7510074571473524 2434529.4398279082961380)", - "surface": 17510000, - "canton": null, - "numero_insee": "50048" - } - }, - { - "pk": 14844, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BESNEVILLE", - "center": "POINT (311955.9074259834014811 2493810.7728884583339095)", - "surface": 18410000, - "canton": null, - "numero_insee": "50049" - } - }, - { - "pk": 33926, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEUVRIGNY", - "center": "POINT (355274.4913321894709952 2446033.8845670255832374)", - "surface": 6850000, - "canton": null, - "numero_insee": "50050" - } - }, - { - "pk": 10811, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEUZEVILLE-AU-PLAIN", - "center": "POINT (337233.3065762718324549 2498520.1313032535836101)", - "surface": 2110000, - "canton": null, - "numero_insee": "50051" - } - }, - { - "pk": 18947, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BEUZEVILLE-LA-BASTILLE", - "center": "POINT (330897.6299456537235528 2490163.0967925023287535)", - "surface": 4310000, - "canton": null, - "numero_insee": "50052" - } - }, - { - "pk": 37193, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BIEVILLE", - "center": "POINT (364185.4818787290714681 2457614.5753805479034781)", - "surface": 5580000, - "canton": null, - "numero_insee": "50054" - } - }, - { - "pk": 11459, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BINIVILLE", - "center": "POINT (322418.4992574719362892 2499199.5231678378768265)", - "surface": 2970000, - "canton": null, - "numero_insee": "50055" - } - }, - { - "pk": 17590, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BION", - "center": "POINT (359990.6223051174893044 2407846.4981629187241197)", - "surface": 12730000, - "canton": null, - "numero_insee": "50056" - } - }, - { - "pk": 12740, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BIVILLE", - "center": "POINT (300027.4973699547117576 2520930.3365456368774176)", - "surface": 8900000, - "canton": null, - "numero_insee": "50057" - } - }, - { - "pk": 23760, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BLAINVILLE-SUR-MER", - "center": "POINT (314334.7965417794766836 2459808.3077440178021789)", - "surface": 11890000, - "canton": null, - "numero_insee": "50058" - } - }, - { - "pk": 22708, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BLOSVILLE", - "center": "POINT (336585.2996069695218466 2492110.8117343392223120)", - "surface": 4200000, - "canton": null, - "numero_insee": "50059" - } - }, - { - "pk": 3117, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA BLOUTIERE", - "center": "POINT (336942.8692539712064900 2436177.2361159208230674)", - "surface": 9480000, - "canton": null, - "numero_insee": "50060" - } - }, - { - "pk": 5602, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BOISROGER", - "center": "POINT (317119.2907581742038019 2461932.4214701815508306)", - "surface": 5290000, - "canton": null, - "numero_insee": "50061" - } - }, - { - "pk": 12559, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BOISYVON", - "center": "POINT (345409.4391461200430058 2428741.4608956947922707)", - "surface": 3870000, - "canton": null, - "numero_insee": "50062" - } - }, - { - "pk": 37362, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BOLLEVILLE", - "center": "POINT (314323.3578285644180141 2485724.9667529081925750)", - "surface": 6230000, - "canton": null, - "numero_insee": "50063" - } - }, - { - "pk": 5373, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA BONNEVILLE", - "center": "POINT (324254.6566565856919624 2494911.8281500851735473)", - "surface": 6350000, - "canton": null, - "numero_insee": "50064" - } - }, - { - "pk": 15538, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "JULLOUVILLE", - "center": "POINT (315917.4548894471954554 2425298.0807135961949825)", - "surface": 21700000, - "canton": null, - "numero_insee": "50066" - } - }, - { - "pk": 12482, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BOURGUENOLLES", - "center": "POINT (333709.6198219896759838 2427745.0801332774572074)", - "surface": 7730000, - "canton": null, - "numero_insee": "50069" - } - }, - { - "pk": 11458, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BOUTTEVILLE", - "center": "POINT (338971.0964975403621793 2494031.5274018421769142)", - "surface": 1880000, - "canton": null, - "numero_insee": "50070" - } - }, - { - "pk": 12462, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRAFFAIS", - "center": "POINT (334646.1944729255628772 2423349.7329460843466222)", - "surface": 5860000, - "canton": null, - "numero_insee": "50071" - } - }, - { - "pk": 3062, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRAINVILLE", - "center": "POINT (319631.3870962241780944 2460652.0854175444692373)", - "surface": 3210000, - "canton": null, - "numero_insee": "50072" - } - }, - { - "pk": 6692, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRANVILLE-HAGUE", - "center": "POINT (302092.7499514740775339 2525349.8385638999752700)", - "surface": 2090000, - "canton": null, - "numero_insee": "50073" - } - }, - { - "pk": 20175, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRECEY", - "center": "POINT (341680.0166750968201086 2419804.8280337215401232)", - "surface": 21330000, - "canton": null, - "numero_insee": "50074" - } - }, - { - "pk": 12720, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRETTEVILLE", - "center": "POINT (322117.3966180395800620 2523812.1994536612182856)", - "surface": 5780000, - "canton": null, - "numero_insee": "50077" - } - }, - { - "pk": 13500, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRETTEVILLE-SUR-AY", - "center": "POINT (311163.9929093777900562 2480495.8605447984300554)", - "surface": 10090000, - "canton": null, - "numero_insee": "50078" - } - }, - { - "pk": 4604, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BREUVILLE", - "center": "POINT (309807.0289195757941343 2511904.5098447632044554)", - "surface": 8600000, - "canton": null, - "numero_insee": "50079" - } - }, - { - "pk": 35718, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BREVANDS", - "center": "POINT (344922.7426292699528858 2488176.5174069022759795)", - "surface": 14790000, - "canton": null, - "numero_insee": "50080" - } - }, - { - "pk": 10525, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BREVILLE-SUR-MER", - "center": "POINT (314119.1811588032287546 2437191.4892932996153831)", - "surface": 6700000, - "canton": null, - "numero_insee": "50081" - } - }, - { - "pk": 21173, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRICQUEBEC", - "center": "POINT (312071.1033044399227947 2504218.2206450407393277)", - "surface": 33030000, - "canton": null, - "numero_insee": "50082" - } - }, - { - "pk": 25503, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRICQUEBOSQ", - "center": "POINT (306305.9237990378751419 2511775.8908712482079864)", - "surface": 8280000, - "canton": null, - "numero_insee": "50083" - } - }, - { - "pk": 30788, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRICQUEVILLE-LA-BLOUETTE", - "center": "POINT (320872.9649020354263484 2455658.9358482682146132)", - "surface": 6330000, - "canton": null, - "numero_insee": "50084" - } - }, - { - "pk": 3416, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRICQUEVILLE-SUR-MER", - "center": "POINT (317678.8752749437117018 2442424.0584209840744734)", - "surface": 12890000, - "canton": null, - "numero_insee": "50085" - } - }, - { - "pk": 32317, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRILLEVAST", - "center": "POINT (328847.1715742886881344 2520665.2434299890883267)", - "surface": 9110000, - "canton": null, - "numero_insee": "50086" - } - }, - { - "pk": 3305, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRIX", - "center": "POINT (316800.2503874895046465 2513262.3799669248983264)", - "surface": 32300000, - "canton": null, - "numero_insee": "50087" - } - }, - { - "pk": 32925, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BROUAINS", - "center": "POINT (356800.0572987630730495 2418627.8176107946783304)", - "surface": 3830000, - "canton": null, - "numero_insee": "50088" - } - }, - { - "pk": 30752, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BRUCHEVILLE", - "center": "POINT (342403.3087923006387427 2490357.2840440329164267)", - "surface": 15130000, - "canton": null, - "numero_insee": "50089" - } - }, - { - "pk": 21334, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "BUAIS", - "center": "POINT (355582.9561021357076243 2396202.2085875300690532)", - "surface": 17910000, - "canton": null, - "numero_insee": "50090" - } - }, - { - "pk": 33727, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CAMBERNON", - "center": "POINT (328336.5144384190789424 2460723.2206443767063320)", - "surface": 16980000, - "canton": null, - "numero_insee": "50092" - } - }, - { - "pk": 13940, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CAMETOURS", - "center": "POINT (335358.6453474663430825 2458579.2027118913829327)", - "surface": 7460000, - "canton": null, - "numero_insee": "50093" - } - }, - { - "pk": 35281, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CAMPROND", - "center": "POINT (331440.7951854714192450 2460448.4056183216162026)", - "surface": 6160000, - "canton": null, - "numero_insee": "50094" - } - }, - { - "pk": 29897, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CANISY", - "center": "POINT (342958.2167354176053777 2459241.7909802668727934)", - "surface": 6440000, - "canton": null, - "numero_insee": "50095" - } - }, - { - "pk": 13699, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CANTELOUP", - "center": "POINT (332737.0091513693914749 2522197.9520820020698011)", - "surface": 4300000, - "canton": null, - "numero_insee": "50096" - } - }, - { - "pk": 22858, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CANVILLE-LA-ROCQUE", - "center": "POINT (311182.4001188895199448 2490502.3775144037790596)", - "surface": 5450000, - "canton": null, - "numero_insee": "50097" - } - }, - { - "pk": 35044, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CARANTILLY", - "center": "POINT (337765.7937728333054110 2457898.4371664593927562)", - "surface": 10790000, - "canton": null, - "numero_insee": "50098" - } - }, - { - "pk": 34998, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CARENTAN", - "center": "POINT (338556.7774924611439928 2483521.4897347306832671)", - "surface": 15870000, - "canton": null, - "numero_insee": "50099" - } - }, - { - "pk": 24125, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CARNET", - "center": "POINT (327364.9057229761965573 2395971.1567841130308807)", - "surface": 10230000, - "canton": null, - "numero_insee": "50100" - } - }, - { - "pk": 12879, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CARNEVILLE", - "center": "POINT (326514.0428194862906821 2524548.5405780011788011)", - "surface": 6990000, - "canton": null, - "numero_insee": "50101" - } - }, - { - "pk": 8426, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CAROLLES", - "center": "POINT (313428.1642694458132610 2423776.7258428661152720)", - "surface": 4450000, - "canton": null, - "numero_insee": "50102" - } - }, - { - "pk": 36890, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CARQUEBUT", - "center": "POINT (333980.5611181656713597 2492489.7584788990207016)", - "surface": 8590000, - "canton": null, - "numero_insee": "50103" - } - }, - { - "pk": 35971, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CATTEVILLE", - "center": "POINT (316280.3846788954106160 2491144.3674849187955260)", - "surface": 4680000, - "canton": null, - "numero_insee": "50105" - } - }, - { - "pk": 12138, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CAVIGNY", - "center": "POINT (347761.9414354028995149 2471389.0133755858987570)", - "surface": 6850000, - "canton": null, - "numero_insee": "50106" - } - }, - { - "pk": 4275, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CATZ", - "center": "POINT (343646.5796127764042467 2485164.1656523128040135)", - "surface": 2770000, - "canton": null, - "numero_insee": "50107" - } - }, - { - "pk": 25853, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CEAUX", - "center": "POINT (325649.3533109884592704 2409966.9612281336449087)", - "surface": 8520000, - "canton": null, - "numero_insee": "50108" - } - }, - { - "pk": 30845, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CERENCES", - "center": "POINT (323191.1922989759477787 2441368.3531507863663137)", - "surface": 26220000, - "canton": null, - "numero_insee": "50109" - } - }, - { - "pk": 19436, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CERISY-LA-FORET", - "center": "POINT (361073.7497217254713178 2470997.7892390945926309)", - "surface": 23930000, - "canton": null, - "numero_insee": "50110" - } - }, - { - "pk": 19781, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CERISY-LA-SALLE", - "center": "POINT (336090.9854211626225151 2454682.6238318779505789)", - "surface": 16930000, - "canton": null, - "numero_insee": "50111" - } - }, - { - "pk": 21797, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA CHAISE-BAUDOUIN", - "center": "POINT (337138.7335566215915605 2424470.8821516954340041)", - "surface": 12170000, - "canton": null, - "numero_insee": "50112" - } - }, - { - "pk": 27616, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES CHAMBRES", - "center": "POINT (326729.0345403529936448 2424786.0107336980290711)", - "surface": 4330000, - "canton": null, - "numero_insee": "50114" - } - }, - { - "pk": 29124, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHAMPCERVON", - "center": "POINT (325219.9285029086167924 2425774.3587715630419552)", - "surface": 5650000, - "canton": null, - "numero_insee": "50115" - } - }, - { - "pk": 30347, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHAMPCEY", - "center": "POINT (321158.2772043299628422 2420737.7341071739792824)", - "surface": 3310000, - "canton": null, - "numero_insee": "50116" - } - }, - { - "pk": 10078, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHAMPEAUX", - "center": "POINT (315540.9048509717686102 2422393.0163800702430308)", - "surface": 4270000, - "canton": null, - "numero_insee": "50117" - } - }, - { - "pk": 17652, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHAMPREPUS", - "center": "POINT (331770.8038364458479919 2432332.3508818536065519)", - "surface": 9220000, - "canton": null, - "numero_insee": "50118" - } - }, - { - "pk": 23879, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES CHAMPS-DE-LOSQUE", - "center": "POINT (340366.6584528915700503 2470227.7533123777247965)", - "surface": 9320000, - "canton": null, - "numero_insee": "50119" - } - }, - { - "pk": 32501, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHANTELOUP", - "center": "POINT (319903.9094496619654819 2439540.2839092910289764)", - "surface": 4270000, - "canton": null, - "numero_insee": "50120" - } - }, - { - "pk": 8660, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA CHAPELLE-CECELIN", - "center": "POINT (342506.0199845854658633 2428917.8214430119842291)", - "surface": 5180000, - "canton": null, - "numero_insee": "50121" - } - }, - { - "pk": 23003, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA CHAPELLE-EN-JUGER", - "center": "POINT (340807.8389414346893318 2465228.1142889596521854)", - "surface": 15170000, - "canton": null, - "numero_insee": "50123" - } - }, - { - "pk": 29762, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHASSEGUEY", - "center": "POINT (348961.5533116048318334 2410457.9628907144069672)", - "surface": 3060000, - "canton": null, - "numero_insee": "50125" - } - }, - { - "pk": 4349, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHAVOY", - "center": "POINT (329958.0153716345666908 2421510.1488439505919814)", - "surface": 3700000, - "canton": null, - "numero_insee": "50126" - } - }, - { - "pk": 8884, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHEF-DU-PONT", - "center": "POINT (332370.6598738152533770 2493577.2859375784173608)", - "surface": 3810000, - "canton": null, - "numero_insee": "50127" - } - }, - { - "pk": 22815, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHERBOURG-OCTEVILLE", - "center": "POINT (312923.8700572536909021 2522336.2961851661093533)", - "surface": 15870000, - "canton": null, - "numero_insee": "50129" - } - }, - { - "pk": 17305, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHERENCE-LE-HERON", - "center": "POINT (340011.0376191110117361 2428096.8506405921652913)", - "surface": 9650000, - "canton": null, - "numero_insee": "50130" - } - }, - { - "pk": 14508, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHERENCE-LE-ROUSSEL", - "center": "POINT (354405.9479235325125046 2417707.5691839465871453)", - "surface": 11080000, - "canton": null, - "numero_insee": "50131" - } - }, - { - "pk": 11849, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES CHERIS", - "center": "POINT (335858.2306902791606262 2409750.2512121475301683)", - "surface": 5910000, - "canton": null, - "numero_insee": "50132" - } - }, - { - "pk": 10834, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHEVREVILLE", - "center": "POINT (350187.7263037479715422 2407365.8502785558812320)", - "surface": 4460000, - "canton": null, - "numero_insee": "50133" - } - }, - { - "pk": 12843, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHEVRY", - "center": "POINT (347261.4964476083405316 2446968.8924463787116110)", - "surface": 3720000, - "canton": null, - "numero_insee": "50134" - } - }, - { - "pk": 13497, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CLITOURPS", - "center": "POINT (332026.8155346448766068 2523392.8725298033095896)", - "surface": 6460000, - "canton": null, - "numero_insee": "50135" - } - }, - { - "pk": 24392, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COIGNY", - "center": "POINT (329023.5470934580080211 2486845.6846338482573628)", - "surface": 4570000, - "canton": null, - "numero_insee": "50136" - } - }, - { - "pk": 36520, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA COLOMBE", - "center": "POINT (340841.9650904837762937 2436609.4184227292425931)", - "surface": 14480000, - "canton": null, - "numero_insee": "50137" - } - }, - { - "pk": 25332, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COLOMBY", - "center": "POINT (322396.4313195575377904 2501901.0280659412965178)", - "surface": 11350000, - "canton": null, - "numero_insee": "50138" - } - }, - { - "pk": 21815, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CONDE-SUR-VIRE", - "center": "POINT (354193.5204625453334302 2455831.5220264112576842)", - "surface": 24980000, - "canton": null, - "numero_insee": "50139" - } - }, - { - "pk": 3109, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CONTRIERES", - "center": "POINT (324223.9852886532898992 2449682.3404504829086363)", - "surface": 9190000, - "canton": null, - "numero_insee": "50140" - } - }, - { - "pk": 14827, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COSQUEVILLE", - "center": "POINT (330088.1720260818838142 2527979.8006391506642103)", - "surface": 10970000, - "canton": null, - "numero_insee": "50142" - } - }, - { - "pk": 24811, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COUDEVILLE-SUR-MER", - "center": "POINT (316718.3118533290107735 2437512.9156764545477927)", - "surface": 8840000, - "canton": null, - "numero_insee": "50143" - } - }, - { - "pk": 18526, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COULOUVRAY-BOISBENATRE", - "center": "POINT (347034.1908929651835933 2425852.7903863438405097)", - "surface": 17260000, - "canton": null, - "numero_insee": "50144" - } - }, - { - "pk": 16909, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COURCY", - "center": "POINT (327568.7607802139827982 2456714.3137989696115255)", - "surface": 11620000, - "canton": null, - "numero_insee": "50145" - } - }, - { - "pk": 14013, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COURTILS", - "center": "POINT (322848.4075552534195594 2409843.9969519004225731)", - "surface": 5450000, - "canton": null, - "numero_insee": "50146" - } - }, - { - "pk": 5791, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COUTANCES", - "center": "POINT (323559.0322257057996467 2457582.1351417866535485)", - "surface": 12670000, - "canton": null, - "numero_insee": "50147" - } - }, - { - "pk": 22452, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COUVAINS", - "center": "POINT (355896.1612286231247708 2467853.3290926553308964)", - "surface": 15110000, - "canton": null, - "numero_insee": "50148" - } - }, - { - "pk": 34290, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "COUVILLE", - "center": "POINT (309087.8722826902521774 2514200.0564437354914844)", - "surface": 8740000, - "canton": null, - "numero_insee": "50149" - } - }, - { - "pk": 12667, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CREANCES", - "center": "POINT (315720.4911112156696618 2473928.8074047476984560)", - "surface": 21000000, - "canton": null, - "numero_insee": "50151" - } - }, - { - "pk": 22287, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES CRESNAYS", - "center": "POINT (345999.0793114233529195 2417838.8193115498870611)", - "surface": 9980000, - "canton": null, - "numero_insee": "50152" - } - }, - { - "pk": 14845, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CRETTEVILLE", - "center": "POINT (328705.3828839898924343 2489044.4788121930323541)", - "surface": 6520000, - "canton": null, - "numero_insee": "50153" - } - }, - { - "pk": 5918, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA CROIX-AVRANCHIN", - "center": "POINT (325522.0312511309166439 2401059.6885551842860878)", - "surface": 10830000, - "canton": null, - "numero_insee": "50154" - } - }, - { - "pk": 9291, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CROLLON", - "center": "POINT (325692.7087823124020360 2404663.6121986452490091)", - "surface": 4760000, - "canton": null, - "numero_insee": "50155" - } - }, - { - "pk": 36656, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CROSVILLE-SUR-DOUVE", - "center": "POINT (322959.6480827778577805 2494200.8077101940289140)", - "surface": 4130000, - "canton": null, - "numero_insee": "50156" - } - }, - { - "pk": 4802, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DANGY", - "center": "POINT (339601.2519997290219180 2453710.6874399362131953)", - "surface": 10000000, - "canton": null, - "numero_insee": "50159" - } - }, - { - "pk": 9658, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DENNEVILLE", - "center": "POINT (309009.7255248354049399 2486982.4306032224558294)", - "surface": 8340000, - "canton": null, - "numero_insee": "50160" - } - }, - { - "pk": 18410, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE DEZERT", - "center": "POINT (344842.2362491389503703 2473566.5247870525345206)", - "surface": 14690000, - "canton": null, - "numero_insee": "50161" - } - }, - { - "pk": 19367, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DIGOSVILLE", - "center": "POINT (320535.3275571994599886 2521497.8843061486259103)", - "surface": 9410000, - "canton": null, - "numero_insee": "50162" - } - }, - { - "pk": 28542, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DIGULLEVILLE", - "center": "POINT (297055.0064526231144555 2529611.3788836314342916)", - "surface": 8040000, - "canton": null, - "numero_insee": "50163" - } - }, - { - "pk": 17302, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DOMJEAN", - "center": "POINT (353149.4506285843672231 2448918.3978616180829704)", - "surface": 16600000, - "canton": null, - "numero_insee": "50164" - } - }, - { - "pk": 30999, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DONVILLE-LES-BAINS", - "center": "POINT (313034.8493582014925778 2435181.2841357425786555)", - "surface": 2800000, - "canton": null, - "numero_insee": "50165" - } - }, - { - "pk": 17564, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DOVILLE", - "center": "POINT (317498.2195880617364310 2489052.9819832788780332)", - "surface": 11260000, - "canton": null, - "numero_insee": "50166" - } - }, - { - "pk": 21944, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DRAGEY-RONTHON", - "center": "POINT (318463.1383724912884645 2419915.1641098074615002)", - "surface": 15390000, - "canton": null, - "numero_insee": "50167" - } - }, - { - "pk": 14905, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "DUCEY", - "center": "POINT (333373.8481326365144923 2407628.4590646312572062)", - "surface": 11270000, - "canton": null, - "numero_insee": "50168" - } - }, - { - "pk": 6924, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ECAUSSEVILLE", - "center": "POINT (330199.1325922881951556 2502164.9150586458854377)", - "surface": 5220000, - "canton": null, - "numero_insee": "50169" - } - }, - { - "pk": 30532, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ECOQUENEAUVILLE", - "center": "POINT (336359.8137110807001591 2495210.9177888920530677)", - "surface": 3590000, - "canton": null, - "numero_insee": "50170" - } - }, - { - "pk": 8299, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ECULLEVILLE", - "center": "POINT (299465.2591606469941325 2528530.3555085230618715)", - "surface": 2390000, - "canton": null, - "numero_insee": "50171" - } - }, - { - "pk": 20732, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "EMONDEVILLE", - "center": "POINT (333401.7287027204292826 2502091.0381304174661636)", - "surface": 5350000, - "canton": null, - "numero_insee": "50172" - } - }, - { - "pk": 26856, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "EQUEURDREVILLE-HAINNEVILLE", - "center": "POINT (309810.7683663264033385 2523711.7456023674458265)", - "surface": 12880000, - "canton": null, - "numero_insee": "50173" - } - }, - { - "pk": 14425, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "EQUILLY", - "center": "POINT (326866.1699969095061533 2432492.3812498035840690)", - "surface": 5810000, - "canton": null, - "numero_insee": "50174" - } - }, - { - "pk": 37363, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "EROUDEVILLE", - "center": "POINT (329284.7285777094657533 2503858.4974119006656110)", - "surface": 4840000, - "canton": null, - "numero_insee": "50175" - } - }, - { - "pk": 11504, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "L'ETANG-BERTRAND", - "center": "POINT (316573.5997328064986505 2504254.9703682190738618)", - "surface": 8780000, - "canton": null, - "numero_insee": "50176" - } - }, - { - "pk": 24393, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ETIENVILLE", - "center": "POINT (325862.0965913365362212 2494124.4596405886113644)", - "surface": 7450000, - "canton": null, - "numero_insee": "50177" - } - }, - { - "pk": 19485, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FERMANVILLE", - "center": "POINT (326193.4435412075836211 2527047.4298623506911099)", - "surface": 11880000, - "canton": null, - "numero_insee": "50178" - } - }, - { - "pk": 36924, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FERRIERES", - "center": "POINT (356859.9913932537892833 2399114.7258957428857684)", - "surface": 3480000, - "canton": null, - "numero_insee": "50179" - } - }, - { - "pk": 9965, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FERVACHES", - "center": "POINT (349842.5600700032082386 2449491.6994953854009509)", - "surface": 5020000, - "canton": null, - "numero_insee": "50180" - } - }, - { - "pk": 9013, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA FEUILLIE", - "center": "POINT (320652.7517519802204333 2470366.7570096952840686)", - "surface": 12430000, - "canton": null, - "numero_insee": "50182" - } - }, - { - "pk": 3037, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FIERVILLE-LES-MINES", - "center": "POINT (309236.4278139113448560 2495989.9674409478902817)", - "surface": 7660000, - "canton": null, - "numero_insee": "50183" - } - }, - { - "pk": 24309, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FLAMANVILLE", - "center": "POINT (295399.1205074940226041 2511787.0525742541067302)", - "surface": 7800000, - "canton": null, - "numero_insee": "50184" - } - }, - { - "pk": 37930, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FLOTTEMANVILLE", - "center": "POINT (325279.2405523629859090 2504226.0108015434816480)", - "surface": 4760000, - "canton": null, - "numero_insee": "50186" - } - }, - { - "pk": 24647, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FLOTTEMANVILLE-HAGUE", - "center": "POINT (306831.1814562538056634 2520985.8038890399038792)", - "surface": 11530000, - "canton": null, - "numero_insee": "50187" - } - }, - { - "pk": 14902, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FOLLIGNY", - "center": "POINT (324175.1493676835088991 2431169.5017659058794379)", - "surface": 11890000, - "canton": null, - "numero_insee": "50188" - } - }, - { - "pk": 37407, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FONTENAY", - "center": "POINT (352482.6156450285343453 2408185.2161026098765433)", - "surface": 6890000, - "canton": null, - "numero_insee": "50189" - } - }, - { - "pk": 27179, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FONTENAY-SUR-MER", - "center": "POINT (335673.5444478940335102 2505711.8536669090390205)", - "surface": 8200000, - "canton": null, - "numero_insee": "50190" - } - }, - { - "pk": 34327, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FOUCARVILLE", - "center": "POINT (339319.7422439901274629 2500338.3258443484082818)", - "surface": 5040000, - "canton": null, - "numero_insee": "50191" - } - }, - { - "pk": 36746, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "FOURNEAUX", - "center": "POINT (352571.2319748935988173 2446211.8615512559190392)", - "surface": 3390000, - "canton": null, - "numero_insee": "50192" - } - }, - { - "pk": 15908, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE FRESNE-PORET", - "center": "POINT (367522.3096528747119009 2416814.4704959406517446)", - "surface": 10160000, - "canton": null, - "numero_insee": "50193" - } - }, - { - "pk": 3329, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GATHEMO", - "center": "POINT (357256.0620515723712742 2424035.2645091991871595)", - "surface": 10550000, - "canton": null, - "numero_insee": "50195" - } - }, - { - "pk": 3740, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GATTEVILLE-LE-PHARE", - "center": "POINT (338006.3091235819156282 2526343.5243711885996163)", - "surface": 9920000, - "canton": null, - "numero_insee": "50196" - } - }, - { - "pk": 21817, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GAVRAY", - "center": "POINT (331108.2435997792053968 2439932.0666801468469203)", - "surface": 20600000, - "canton": null, - "numero_insee": "50197" - } - }, - { - "pk": 15824, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GEFFOSSES", - "center": "POINT (316185.2636674204259180 2466027.4751002686098218)", - "surface": 16100000, - "canton": null, - "numero_insee": "50198" - } - }, - { - "pk": 23265, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GENETS", - "center": "POINT (319389.0400734040304087 2416820.5884849098511040)", - "surface": 7070000, - "canton": null, - "numero_insee": "50199" - } - }, - { - "pk": 19719, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GER", - "center": "POINT (368656.6723311829846352 2412720.9465679451823235)", - "surface": 39820000, - "canton": null, - "numero_insee": "50200" - } - }, - { - "pk": 5144, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GIEVILLE", - "center": "POINT (356932.8529976651770994 2451250.9366973987780511)", - "surface": 10420000, - "canton": null, - "numero_insee": "50202" - } - }, - { - "pk": 14750, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA GLACERIE", - "center": "POINT (316250.1543906414881349 2519361.6200156789273024)", - "surface": 18920000, - "canton": null, - "numero_insee": "50203" - } - }, - { - "pk": 9517, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GLATIGNY", - "center": "POINT (310749.8830421927268617 2482193.5693237110972404)", - "surface": 4980000, - "canton": null, - "numero_insee": "50204" - } - }, - { - "pk": 10450, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA GODEFROY", - "center": "POINT (333402.6909692769404501 2416334.7398355123586953)", - "surface": 3680000, - "canton": null, - "numero_insee": "50205" - } - }, - { - "pk": 6973, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA GOHANNIERE", - "center": "POINT (335094.7462117653922178 2417449.3434476084075868)", - "surface": 3800000, - "canton": null, - "numero_insee": "50206" - } - }, - { - "pk": 29083, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GOLLEVILLE", - "center": "POINT (320508.4491235705208965 2500284.6091229151934385)", - "surface": 6540000, - "canton": null, - "numero_insee": "50207" - } - }, - { - "pk": 10934, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GONFREVILLE", - "center": "POINT (327504.4207634629565291 2476826.8765723402611911)", - "surface": 9180000, - "canton": null, - "numero_insee": "50208" - } - }, - { - "pk": 22537, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GORGES", - "center": "POINT (328575.6090140844462439 2480437.9425114998593926)", - "surface": 22850000, - "canton": null, - "numero_insee": "50210" - } - }, - { - "pk": 11946, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GOUBERVILLE", - "center": "POINT (335796.1291504870750941 2527426.1089001270011067)", - "surface": 2830000, - "canton": null, - "numero_insee": "50211" - } - }, - { - "pk": 3895, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GOURBESVILLE", - "center": "POINT (328030.6213974019628949 2498144.6923241335898638)", - "surface": 8260000, - "canton": null, - "numero_insee": "50212" - } - }, - { - "pk": 25556, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GOURFALEUR", - "center": "POINT (348171.1173433740623295 2458083.6910271923989058)", - "surface": 8480000, - "canton": null, - "numero_insee": "50213" - } - }, - { - "pk": 4381, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GOUVETS", - "center": "POINT (348501.5602266748901457 2442175.8422739119268954)", - "surface": 11200000, - "canton": null, - "numero_insee": "50214" - } - }, - { - "pk": 30531, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GOUVILLE-SUR-MER", - "center": "POINT (313911.6888989784638397 2462606.6907118577510118)", - "surface": 13340000, - "canton": null, - "numero_insee": "50215" - } - }, - { - "pk": 32829, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE GRAND-CELLAND", - "center": "POINT (341513.4812578544369899 2415700.6357373706996441)", - "surface": 12780000, - "canton": null, - "numero_insee": "50217" - } - }, - { - "pk": 20509, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GRANVILLE", - "center": "POINT (313352.1877705093356781 2433082.4515021261759102)", - "surface": 9940000, - "canton": null, - "numero_insee": "50218" - } - }, - { - "pk": 29880, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GRATOT", - "center": "POINT (319944.6411783045623451 2459053.5929796001873910)", - "surface": 10830000, - "canton": null, - "numero_insee": "50219" - } - }, - { - "pk": 4029, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GREVILLE-HAGUE", - "center": "POINT (301175.9557371628470719 2527343.5738974311389029)", - "surface": 10130000, - "canton": null, - "numero_insee": "50220" - } - }, - { - "pk": 36923, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GRIMESNIL", - "center": "POINT (329858.4247687448514625 2445925.8674266408197582)", - "surface": 2550000, - "canton": null, - "numero_insee": "50221" - } - }, - { - "pk": 30190, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GROSVILLE", - "center": "POINT (305030.5022081666393206 2508663.5775986625812948)", - "surface": 13760000, - "canton": null, - "numero_insee": "50222" - } - }, - { - "pk": 23366, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GUEHEBERT", - "center": "POINT (328446.1304895690409467 2447315.2542274636216462)", - "surface": 6360000, - "canton": null, - "numero_insee": "50223" - } - }, - { - "pk": 34037, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "GUILBERVILLE", - "center": "POINT (359359.7183131334022619 2448168.7774537848308682)", - "surface": 22240000, - "canton": null, - "numero_insee": "50224" - } - }, - { - "pk": 29125, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE GUISLAIN", - "center": "POINT (339853.7844103157403879 2447308.5057837120257318)", - "surface": 5500000, - "canton": null, - "numero_insee": "50225" - } - }, - { - "pk": 6471, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE HAM", - "center": "POINT (328106.1434076175210066 2501147.1836143764667213)", - "surface": 3860000, - "canton": null, - "numero_insee": "50227" - } - }, - { - "pk": 21758, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HAMBYE", - "center": "POINT (336472.2141644516377710 2444779.1637949864380062)", - "surface": 29850000, - "canton": null, - "numero_insee": "50228" - } - }, - { - "pk": 9809, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HAMELIN", - "center": "POINT (337141.6997168867383152 2399653.6798591776750982)", - "surface": 2510000, - "canton": null, - "numero_insee": "50229" - } - }, - { - "pk": 31905, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HARDINVAST", - "center": "POINT (311773.8372592891100794 2516123.1339979511685669)", - "surface": 7380000, - "canton": null, - "numero_insee": "50230" - } - }, - { - "pk": 4603, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HAUTEVILLE-SUR-MER", - "center": "POINT (315726.2523924489505589 2448712.3243337930180132)", - "surface": 3360000, - "canton": null, - "numero_insee": "50231" - } - }, - { - "pk": 16071, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HAUTEVILLE-LA-GUICHARD", - "center": "POINT (334208.8879089874681085 2464573.7280796593986452)", - "surface": 11680000, - "canton": null, - "numero_insee": "50232" - } - }, - { - "pk": 12001, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HAUTTEVILLE-BOCAGE", - "center": "POINT (323921.7892358685494401 2498911.6166047556325793)", - "surface": 4340000, - "canton": null, - "numero_insee": "50233" - } - }, - { - "pk": 11218, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA HAYE-BELLEFOND", - "center": "POINT (341847.6107695759274065 2448225.4259661729447544)", - "surface": 2950000, - "canton": null, - "numero_insee": "50234" - } - }, - { - "pk": 12140, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA HAYE-D'ECTOT", - "center": "POINT (304633.0276266228174791 2496052.4828029363416135)", - "surface": 7360000, - "canton": null, - "numero_insee": "50235" - } - }, - { - "pk": 21575, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA HAYE-DU-PUITS", - "center": "POINT (317846.5944374121027067 2483152.0744856307283044)", - "surface": 5350000, - "canton": null, - "numero_insee": "50236" - } - }, - { - "pk": 16129, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA HAYE-PESNEL", - "center": "POINT (327287.6839003836503252 2429894.0600463012233377)", - "surface": 6380000, - "canton": null, - "numero_insee": "50237" - } - }, - { - "pk": 21347, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HEBECREVON", - "center": "POINT (343820.2433774961973540 2463951.9262337940745056)", - "surface": 13630000, - "canton": null, - "numero_insee": "50239" - } - }, - { - "pk": 7757, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HELLEVILLE", - "center": "POINT (301580.5061352130724117 2514539.0839830613695085)", - "surface": 5930000, - "canton": null, - "numero_insee": "50240" - } - }, - { - "pk": 6706, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HEMEVEZ", - "center": "POINT (326392.9324078270001337 2502634.1165310549549758)", - "surface": 4320000, - "canton": null, - "numero_insee": "50241" - } - }, - { - "pk": 28176, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HERQUEVILLE", - "center": "POINT (295274.4181065429002047 2527095.3671914329752326)", - "surface": 2970000, - "canton": null, - "numero_insee": "50242" - } - }, - { - "pk": 11487, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HEUGUEVILLE-SUR-SIENNE", - "center": "POINT (318470.7230573613196611 2455739.3794256313703954)", - "surface": 5890000, - "canton": null, - "numero_insee": "50243" - } - }, - { - "pk": 8524, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HERENGUERVILLE", - "center": "POINT (318928.9872729157214053 2448638.4138368298299611)", - "surface": 2850000, - "canton": null, - "numero_insee": "50244" - } - }, - { - "pk": 23661, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HEUSSE", - "center": "POINT (360593.5400974364019930 2395342.6654986841604114)", - "surface": 14810000, - "canton": null, - "numero_insee": "50245" - } - }, - { - "pk": 11318, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HIESVILLE", - "center": "POINT (338688.1202089457074180 2491927.8896207455545664)", - "surface": 4060000, - "canton": null, - "numero_insee": "50246" - } - }, - { - "pk": 12293, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HOCQUIGNY", - "center": "POINT (325286.4561495789093897 2429877.7005779836326838)", - "surface": 3050000, - "canton": null, - "numero_insee": "50247" - } - }, - { - "pk": 20776, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE HOMMET-D'ARTHENAY", - "center": "POINT (342457.2302439284976572 2471545.7067877319641411)", - "surface": 15010000, - "canton": null, - "numero_insee": "50248" - } - }, - { - "pk": 9388, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HOUESVILLE", - "center": "POINT (336003.7863538603414781 2489804.6024915552698076)", - "surface": 5490000, - "canton": null, - "numero_insee": "50249" - } - }, - { - "pk": 13236, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HOUTTEVILLE", - "center": "POINT (331408.5480144869070500 2488866.4516147598624229)", - "surface": 4500000, - "canton": null, - "numero_insee": "50250" - } - }, - { - "pk": 8365, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HUBERVILLE", - "center": "POINT (326850.6913275056285784 2507841.0823730789124966)", - "surface": 5630000, - "canton": null, - "numero_insee": "50251" - } - }, - { - "pk": 30620, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HUDIMESNIL", - "center": "POINT (320825.7101850034669042 2436946.0615622447803617)", - "surface": 19060000, - "canton": null, - "numero_insee": "50252" - } - }, - { - "pk": 8908, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HUISNES-SUR-MER", - "center": "POINT (320760.1665229467907920 2408225.8158559417352080)", - "surface": 6850000, - "canton": null, - "numero_insee": "50253" - } - }, - { - "pk": 4138, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HUSSON", - "center": "POINT (360629.5784347465960309 2403148.4532749336212873)", - "surface": 13690000, - "canton": null, - "numero_insee": "50254" - } - }, - { - "pk": 28245, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "HYENVILLE", - "center": "POINT (320216.6878754455246963 2450249.9970668856985867)", - "surface": 3410000, - "canton": null, - "numero_insee": "50255" - } - }, - { - "pk": 21056, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ISIGNY-LE-BUAT", - "center": "POINT (340473.4136845623725094 2408286.9808569410815835)", - "surface": 73700000, - "canton": null, - "numero_insee": "50256" - } - }, - { - "pk": 16848, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "JOGANVILLE", - "center": "POINT (332490.5928881312138401 2503384.3962225504219532)", - "surface": 2850000, - "canton": null, - "numero_insee": "50258" - } - }, - { - "pk": 25276, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "JUILLEY", - "center": "POINT (328187.7476554225431755 2405484.5725665958598256)", - "surface": 11410000, - "canton": null, - "numero_insee": "50259" - } - }, - { - "pk": 36820, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "JUVIGNY-LE-TERTRE", - "center": "POINT (351032.5318670322885737 2414177.5009404900483787)", - "surface": 7540000, - "canton": null, - "numero_insee": "50260" - } - }, - { - "pk": 8945, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LAMBERVILLE", - "center": "POINT (362178.5566417921800166 2458298.5722298608161509)", - "surface": 7160000, - "canton": null, - "numero_insee": "50261" - } - }, - { - "pk": 24065, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA LANDE-D'AIROU", - "center": "POINT (334086.1265351192560047 2430650.1353555954992771)", - "surface": 15120000, - "canton": null, - "numero_insee": "50262" - } - }, - { - "pk": 27099, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LAPENTY", - "center": "POINT (351933.0852108595427126 2401976.3737165699712932)", - "surface": 14900000, - "canton": null, - "numero_insee": "50263" - } - }, - { - "pk": 7400, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LAULNE", - "center": "POINT (323782.6671792047563940 2479198.0026403558440506)", - "surface": 9110000, - "canton": null, - "numero_insee": "50265" - } - }, - { - "pk": 30789, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LENGRONNE", - "center": "POINT (327675.0989848272292875 2443706.5450760764069855)", - "surface": 12050000, - "canton": null, - "numero_insee": "50266" - } - }, - { - "pk": 19000, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LESSAY", - "center": "POINT (318508.2210276771802455 2475652.6674240659922361)", - "surface": 22800000, - "canton": null, - "numero_insee": "50267" - } - }, - { - "pk": 34780, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LESTRE", - "center": "POINT (334843.6434206844423898 2509307.2910938835702837)", - "surface": 7730000, - "canton": null, - "numero_insee": "50268" - } - }, - { - "pk": 26321, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LIESVILLE-SUR-DOUVE", - "center": "POINT (334000.2005314207053743 2490088.4041567859239876)", - "surface": 5330000, - "canton": null, - "numero_insee": "50269" - } - }, - { - "pk": 8634, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LIEUSAINT", - "center": "POINT (323771.0523286071256734 2505114.2471078438684344)", - "surface": 5320000, - "canton": null, - "numero_insee": "50270" - } - }, - { - "pk": 36527, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LINGEARD", - "center": "POINT (352579.4040031835902482 2420794.7314266902394593)", - "surface": 3620000, - "canton": null, - "numero_insee": "50271" - } - }, - { - "pk": 24225, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LINGREVILLE", - "center": "POINT (316755.4512737863697112 2445218.3927051797509193)", - "surface": 9080000, - "canton": null, - "numero_insee": "50272" - } - }, - { - "pk": 37743, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LITHAIRE", - "center": "POINT (321538.9008645346038975 2484382.9958410547114909)", - "surface": 14270000, - "canton": null, - "numero_insee": "50273" - } - }, - { - "pk": 33442, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES LOGES-MARCHIS", - "center": "POINT (347259.6121916240081191 2398335.5441284370608628)", - "surface": 20330000, - "canton": null, - "numero_insee": "50274" - } - }, - { - "pk": 9941, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES LOGES-SUR-BRECEY", - "center": "POINT (342752.8429560500662774 2423215.9476410932838917)", - "surface": 5420000, - "canton": null, - "numero_insee": "50275" - } - }, - { - "pk": 20905, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LOLIF", - "center": "POINT (325456.8590098703280091 2421273.2090722862631083)", - "surface": 12640000, - "canton": null, - "numero_insee": "50276" - } - }, - { - "pk": 26669, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LONGUEVILLE", - "center": "POINT (315830.8381209323415533 2435904.5871217693202198)", - "surface": 4230000, - "canton": null, - "numero_insee": "50277" - } - }, - { - "pk": 13343, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE LOREUR", - "center": "POINT (324035.0169574133469723 2436071.6779695507138968)", - "surface": 3240000, - "canton": null, - "numero_insee": "50278" - } - }, - { - "pk": 4942, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE LOREY", - "center": "POINT (334332.6819392563775182 2461672.8444070364348590)", - "surface": 14730000, - "canton": null, - "numero_insee": "50279" - } - }, - { - "pk": 15241, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA LUCERNE-D'OUTREMER", - "center": "POINT (324604.0189417259534821 2427670.6228181002661586)", - "surface": 14590000, - "canton": null, - "numero_insee": "50281" - } - }, - { - "pk": 3917, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE LUOT", - "center": "POINT (330430.5021638366160914 2424916.3451477079652250)", - "surface": 8580000, - "canton": null, - "numero_insee": "50282" - } - }, - { - "pk": 6356, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA LUZERNE", - "center": "POINT (353012.5115666374331340 2465628.2642942308448255)", - "surface": 1890000, - "canton": null, - "numero_insee": "50283" - } - }, - { - "pk": 25953, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MACEY", - "center": "POINT (322301.1840346510289237 2403334.9782665777020156)", - "surface": 6050000, - "canton": null, - "numero_insee": "50284" - } - }, - { - "pk": 4615, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MAGNEVILLE", - "center": "POINT (318093.2219269324559718 2501965.9462510850280523)", - "surface": 9810000, - "canton": null, - "numero_insee": "50285" - } - }, - { - "pk": 25750, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA MANCELLIERE-SUR-VIRE", - "center": "POINT (350082.0759430488105863 2456898.5559212090447545)", - "surface": 6910000, - "canton": null, - "numero_insee": "50287" - } - }, - { - "pk": 28480, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MARCEY-LES-GREVES", - "center": "POINT (325685.6121768264565617 2417772.6673433803953230)", - "surface": 6680000, - "canton": null, - "numero_insee": "50288" - } - }, - { - "pk": 4740, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MARCHESIEUX", - "center": "POINT (334250.0189724149531685 2471778.7433067644014955)", - "surface": 19910000, - "canton": null, - "numero_insee": "50289" - } - }, - { - "pk": 14672, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MARCILLY", - "center": "POINT (336138.7672715227818117 2412154.2161956736817956)", - "surface": 8950000, - "canton": null, - "numero_insee": "50290" - } - }, - { - "pk": 11098, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MARGUERAY", - "center": "POINT (346024.6373978308402002 2439153.5392094906419516)", - "surface": 4720000, - "canton": null, - "numero_insee": "50291" - } - }, - { - "pk": 30189, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MARIGNY", - "center": "POINT (337830.6461549599771388 2462201.7896909173578024)", - "surface": 10470000, - "canton": null, - "numero_insee": "50292" - } - }, - { - "pk": 9039, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MARTIGNY", - "center": "POINT (346285.2660060126218013 2407333.8772592148743570)", - "surface": 8990000, - "canton": null, - "numero_insee": "50293" - } - }, - { - "pk": 10661, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MARTINVAST", - "center": "POINT (311654.1895867271232419 2518523.6239969283342361)", - "surface": 10450000, - "canton": null, - "numero_insee": "50294" - } - }, - { - "pk": 27479, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MAUPERTUIS", - "center": "POINT (340869.9459276633569971 2445415.5558296944946051)", - "surface": 5460000, - "canton": null, - "numero_insee": "50295" - } - }, - { - "pk": 8693, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MAUPERTUS-SUR-MER", - "center": "POINT (323913.4618622680427507 2524427.2332378444261849)", - "surface": 3460000, - "canton": null, - "numero_insee": "50296" - } - }, - { - "pk": 10880, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA MEAUFFE", - "center": "POINT (349283.3017372778849676 2468899.8552960744127631)", - "surface": 10120000, - "canton": null, - "numero_insee": "50297" - } - }, - { - "pk": 4580, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MEAUTIS", - "center": "POINT (335568.1618601587833837 2481896.0181444375775754)", - "surface": 17060000, - "canton": null, - "numero_insee": "50298" - } - }, - { - "pk": 5199, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL", - "center": "POINT (307155.6513848897884600 2493471.4200819139368832)", - "surface": 3440000, - "canton": null, - "numero_insee": "50299" - } - }, - { - "pk": 20610, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-ADELEE", - "center": "POINT (349711.2213273709057830 2416668.4023928032256663)", - "surface": 6880000, - "canton": null, - "numero_insee": "50300" - } - }, - { - "pk": 11817, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-AMAND", - "center": "POINT (328728.0612320974469185 2437310.8517545787617564)", - "surface": 6760000, - "canton": null, - "numero_insee": "50301" - } - }, - { - "pk": 9805, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-AMEY", - "center": "POINT (340832.4084242134122178 2462226.3557989499531686)", - "surface": 2880000, - "canton": null, - "numero_insee": "50302" - } - }, - { - "pk": 7652, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-AUBERT", - "center": "POINT (325062.9000745559460483 2444986.0623792032711208)", - "surface": 5950000, - "canton": null, - "numero_insee": "50304" - } - }, - { - "pk": 25064, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-AU-VAL", - "center": "POINT (320362.9999171358067542 2518094.4076920980587602)", - "surface": 13570000, - "canton": null, - "numero_insee": "50305" - } - }, - { - "pk": 8774, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNILBUS", - "center": "POINT (330595.3246527283918113 2465945.0887019210495055)", - "surface": 5110000, - "canton": null, - "numero_insee": "50308" - } - }, - { - "pk": 35490, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-EURY", - "center": "POINT (339379.9977879018988460 2468518.5756516000255942)", - "surface": 3560000, - "canton": null, - "numero_insee": "50310" - } - }, - { - "pk": 22035, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-GARNIER", - "center": "POINT (332742.7690235070185736 2435842.6711374558508396)", - "surface": 10420000, - "canton": null, - "numero_insee": "50311" - } - }, - { - "pk": 18465, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-GILBERT", - "center": "POINT (350291.9167744137812406 2419074.8157020797953010)", - "surface": 7920000, - "canton": null, - "numero_insee": "50312" - } - }, - { - "pk": 34363, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-HERMAN", - "center": "POINT (345214.4114559757290408 2452555.8467380590736866)", - "surface": 1940000, - "canton": null, - "numero_insee": "50313" - } - }, - { - "pk": 15541, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNILLARD", - "center": "POINT (348072.4649413042934611 2409049.7038721558637917)", - "surface": 9920000, - "canton": null, - "numero_insee": "50315" - } - }, - { - "pk": 11776, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-OPAC", - "center": "POINT (347418.9983731837710366 2452173.6371465073898435)", - "surface": 5700000, - "canton": null, - "numero_insee": "50316" - } - }, - { - "pk": 33928, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-OZENNE", - "center": "POINT (338128.5563648645184003 2413571.4722328698262572)", - "surface": 4690000, - "canton": null, - "numero_insee": "50317" - } - }, - { - "pk": 31205, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-RAINFRAY", - "center": "POINT (350546.9788300379877910 2412372.2740630824118853)", - "surface": 11640000, - "canton": null, - "numero_insee": "50318" - } - }, - { - "pk": 19327, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-RAOULT", - "center": "POINT (351508.3197348515968770 2453808.1968220891430974)", - "surface": 4080000, - "canton": null, - "numero_insee": "50319" - } - }, - { - "pk": 16908, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-ROGUES", - "center": "POINT (327342.7527236251044087 2435398.2421473534777761)", - "surface": 4860000, - "canton": null, - "numero_insee": "50320" - } - }, - { - "pk": 13234, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-ROUXELIN", - "center": "POINT (350708.7087385652121156 2465909.5827201032079756)", - "surface": 4750000, - "canton": null, - "numero_insee": "50321" - } - }, - { - "pk": 3646, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-TOVE", - "center": "POINT (353121.5422174418345094 2415695.6599236857146025)", - "surface": 11890000, - "canton": null, - "numero_insee": "50323" - } - }, - { - "pk": 13370, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-VENERON", - "center": "POINT (344926.7280107403057627 2475468.4409481277689338)", - "surface": 2840000, - "canton": null, - "numero_insee": "50324" - } - }, - { - "pk": 36889, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-VIGOT", - "center": "POINT (336276.5550317220622674 2468693.3117784061469138)", - "surface": 3320000, - "canton": null, - "numero_insee": "50325" - } - }, - { - "pk": 14488, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MESNIL-VILLEMAN", - "center": "POINT (330048.4892331316368654 2434920.0271764369681478)", - "surface": 10930000, - "canton": null, - "numero_insee": "50326" - } - }, - { - "pk": 33183, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA MEURDRAQUIERE", - "center": "POINT (325339.0801476875785738 2435682.0659285974688828)", - "surface": 7680000, - "canton": null, - "numero_insee": "50327" - } - }, - { - "pk": 4685, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MILLIERES", - "center": "POINT (323437.2118081379448995 2472490.8650998040102422)", - "surface": 20540000, - "canton": null, - "numero_insee": "50328" - } - }, - { - "pk": 23397, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MILLY", - "center": "POINT (351606.6513403583085164 2405175.9412525487132370)", - "surface": 9800000, - "canton": null, - "numero_insee": "50329" - } - }, - { - "pk": 33873, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MOBECQ", - "center": "POINT (319161.2291106455377303 2481461.7239878643304110)", - "surface": 7970000, - "canton": null, - "numero_insee": "50330" - } - }, - { - "pk": 19673, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES MOITIERS-D'ALLONNE", - "center": "POINT (300620.1770848440355621 2497320.5825413642451167)", - "surface": 17550000, - "canton": null, - "numero_insee": "50332" - } - }, - { - "pk": 29950, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES MOITIERS-EN-BAUPTOIS", - "center": "POINT (326085.9213245104765519 2491224.4606409799307585)", - "surface": 8130000, - "canton": null, - "numero_insee": "50333" - } - }, - { - "pk": 4830, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTABOT", - "center": "POINT (345791.7370147511246614 2443154.3163119191303849)", - "surface": 11660000, - "canton": null, - "numero_insee": "50334" - } - }, - { - "pk": 7882, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTAIGU-LA-BRISETTE", - "center": "POINT (327999.0177219741744921 2514254.4059634762816131)", - "surface": 14710000, - "canton": null, - "numero_insee": "50335" - } - }, - { - "pk": 9289, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTAIGU-LES-BOIS", - "center": "POINT (335422.3085798702086322 2438566.4131095656193793)", - "surface": 6730000, - "canton": null, - "numero_insee": "50336" - } - }, - { - "pk": 13989, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTANEL", - "center": "POINT (323081.7789098856155761 2393534.4401184497401118)", - "surface": 15510000, - "canton": null, - "numero_insee": "50337" - } - }, - { - "pk": 10005, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTBRAY", - "center": "POINT (347141.6955301516572945 2437161.3415610943920910)", - "surface": 14280000, - "canton": null, - "numero_insee": "50338" - } - }, - { - "pk": 24050, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTCHATON", - "center": "POINT (319300.6207478318829089 2452143.7755231857299805)", - "surface": 6800000, - "canton": null, - "numero_insee": "50339" - } - }, - { - "pk": 36431, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTCUIT", - "center": "POINT (331013.5587578302947804 2463747.0728184916079044)", - "surface": 4960000, - "canton": null, - "numero_insee": "50340" - } - }, - { - "pk": 25706, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTEBOURG", - "center": "POINT (330064.7238201702712104 2506366.4239405328407884)", - "surface": 5840000, - "canton": null, - "numero_insee": "50341" - } - }, - { - "pk": 11316, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTFARVILLE", - "center": "POINT (339830.1949186119600199 2523556.7551469942554832)", - "surface": 5490000, - "canton": null, - "numero_insee": "50342" - } - }, - { - "pk": 16404, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTGARDON", - "center": "POINT (314852.2306804875843227 2482227.0517790061421692)", - "surface": 13360000, - "canton": null, - "numero_insee": "50343" - } - }, - { - "pk": 7178, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTHUCHON", - "center": "POINT (325432.3524880483746529 2460999.6789095830172300)", - "surface": 7830000, - "canton": null, - "numero_insee": "50345" - } - }, - { - "pk": 19374, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTJOIE-SAINT-MARTIN", - "center": "POINT (332151.6091686413274147 2398011.7197574535384774)", - "surface": 7480000, - "canton": null, - "numero_insee": "50347" - } - }, - { - "pk": 18997, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTMARTIN-EN-GRAIGNES", - "center": "POINT (344989.0998388717416674 2480071.9038026272319257)", - "surface": 30570000, - "canton": null, - "numero_insee": "50348" - } - }, - { - "pk": 34819, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTMARTIN-SUR-MER", - "center": "POINT (316912.2631673558498733 2450523.2068287613801658)", - "surface": 9620000, - "canton": null, - "numero_insee": "50349" - } - }, - { - "pk": 17653, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTPINCHON", - "center": "POINT (332396.1538715193164535 2453751.8047175500541925)", - "surface": 17340000, - "canton": null, - "numero_insee": "50350" - } - }, - { - "pk": 36922, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTRABOT", - "center": "POINT (363753.2330180616700090 2461513.5871439934708178)", - "surface": 3870000, - "canton": null, - "numero_insee": "50351" - } - }, - { - "pk": 12096, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTREUIL-SUR-LOZON", - "center": "POINT (338604.9143570717424154 2465410.2157735447399318)", - "surface": 6460000, - "canton": null, - "numero_insee": "50352" - } - }, - { - "pk": 32061, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE MONT-SAINT-MICHEL", - "center": "POINT (314644.8741211390006356 2409576.8386214948259294)", - "surface": 3980000, - "canton": null, - "numero_insee": "50353" - } - }, - { - "pk": 37361, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTSURVENT", - "center": "POINT (318907.2746105185360648 2463548.0711199613288045)", - "surface": 8500000, - "canton": null, - "numero_insee": "50354" - } - }, - { - "pk": 6061, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MONTVIRON", - "center": "POINT (323742.7186987275490537 2422860.2975287637673318)", - "surface": 5920000, - "canton": null, - "numero_insee": "50355" - } - }, - { - "pk": 14433, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MOON-SUR-ELLE", - "center": "POINT (352755.0003624245291576 2472630.6935251737013459)", - "surface": 9880000, - "canton": null, - "numero_insee": "50356" - } - }, - { - "pk": 29123, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MORIGNY", - "center": "POINT (350046.7353708896553144 2436784.8706160821020603)", - "surface": 4390000, - "canton": null, - "numero_insee": "50357" - } - }, - { - "pk": 11570, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MORSALINES", - "center": "POINT (335403.8750205612159334 2514214.8847248856909573)", - "surface": 3740000, - "canton": null, - "numero_insee": "50358" - } - }, - { - "pk": 37938, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA MOUCHE", - "center": "POINT (328812.3318017636775039 2427004.5484672873280942)", - "surface": 4550000, - "canton": null, - "numero_insee": "50361" - } - }, - { - "pk": 36694, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MOULINES", - "center": "POINT (350250.0458798367762938 2399761.0334686283022165)", - "surface": 7540000, - "canton": null, - "numero_insee": "50362" - } - }, - { - "pk": 17204, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MOYON", - "center": "POINT (345739.2918608597829007 2449558.1554522151127458)", - "surface": 23680000, - "canton": null, - "numero_insee": "50363" - } - }, - { - "pk": 24619, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "MUNEVILLE-SUR-MER", - "center": "POINT (319764.6137045050854795 2444342.3684516581706703)", - "surface": 7450000, - "canton": null, - "numero_insee": "50365" - } - }, - { - "pk": 32885, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NAY", - "center": "POINT (329797.5655832070624456 2477846.2650553528219461)", - "surface": 2530000, - "canton": null, - "numero_insee": "50368" - } - }, - { - "pk": 4235, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NEGREVILLE", - "center": "POINT (318146.7103742820327170 2507669.9217460500076413)", - "surface": 11550000, - "canton": null, - "numero_insee": "50369" - } - }, - { - "pk": 21643, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NEHOU", - "center": "POINT (316916.2439135722815990 2499054.5258759562857449)", - "surface": 16240000, - "canton": null, - "numero_insee": "50370" - } - }, - { - "pk": 8824, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE NEUFBOURG", - "center": "POINT (358054.1398545514675789 2412133.6072350209578872)", - "surface": 2220000, - "canton": null, - "numero_insee": "50371" - } - }, - { - "pk": 17242, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NEUFMESNIL", - "center": "POINT (318722.5955245954100974 2486161.1393029307946563)", - "surface": 5320000, - "canton": null, - "numero_insee": "50372" - } - }, - { - "pk": 27982, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NEUVILLE-AU-PLAIN", - "center": "POINT (333434.4575933447922580 2498088.8092279480770230)", - "surface": 4680000, - "canton": null, - "numero_insee": "50373" - } - }, - { - "pk": 31164, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NEUVILLE-EN-BEAUMONT", - "center": "POINT (313982.3512927672709338 2490725.3551125610247254)", - "surface": 1660000, - "canton": null, - "numero_insee": "50374" - } - }, - { - "pk": 23243, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NEVILLE-SUR-MER", - "center": "POINT (334492.1609192151809111 2527815.6857868633233011)", - "surface": 3550000, - "canton": null, - "numero_insee": "50375" - } - }, - { - "pk": 10239, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NICORPS", - "center": "POINT (325884.9279248248785734 2454599.1637992123141885)", - "surface": 5510000, - "canton": null, - "numero_insee": "50376" - } - }, - { - "pk": 27101, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NOTRE-DAME-DE-CENILLY", - "center": "POINT (336926.6652157770586200 2450386.6134146181866527)", - "surface": 25300000, - "canton": null, - "numero_insee": "50378" - } - }, - { - "pk": 28078, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NOTRE-DAME-DE-LIVOYE", - "center": "POINT (339858.4210084211081266 2422291.6337435240857303)", - "surface": 3610000, - "canton": null, - "numero_insee": "50379" - } - }, - { - "pk": 32126, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NOTRE-DAME-D'ELLE", - "center": "POINT (359546.6649918496841565 2461979.4127218103967607)", - "surface": 2830000, - "canton": null, - "numero_insee": "50380" - } - }, - { - "pk": 18665, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NOTRE-DAME-DU-TOUCHET", - "center": "POINT (357022.3737150495871902 2403719.2889557266607881)", - "surface": 17770000, - "canton": null, - "numero_insee": "50381" - } - }, - { - "pk": 27850, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "NOUAINVILLE", - "center": "POINT (309432.5893811770365573 2521007.0218899552710354)", - "surface": 3860000, - "canton": null, - "numero_insee": "50382" - } - }, - { - "pk": 37744, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "OCTEVILLE-L'AVENEL", - "center": "POINT (331821.5429688432486728 2511784.1180210309103131)", - "surface": 6970000, - "canton": null, - "numero_insee": "50384" - } - }, - { - "pk": 27459, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "OMONVILLE-LA-PETITE", - "center": "POINT (295151.5447378986282274 2529896.0533072655089200)", - "surface": 6210000, - "canton": null, - "numero_insee": "50385" - } - }, - { - "pk": 32557, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "OMONVILLE-LA-ROGUE", - "center": "POINT (298350.8105866857804358 2530222.2972018793225288)", - "surface": 4350000, - "canton": null, - "numero_insee": "50386" - } - }, - { - "pk": 8686, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ORGLANDES", - "center": "POINT (325826.9385576315689832 2498426.8704662774689496)", - "surface": 9320000, - "canton": null, - "numero_insee": "50387" - } - }, - { - "pk": 18838, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ORVAL", - "center": "POINT (321798.8415770779247396 2452564.4492633678019047)", - "surface": 12600000, - "canton": null, - "numero_insee": "50388" - } - }, - { - "pk": 16847, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "OUVILLE", - "center": "POINT (328997.4045267631299794 2453323.7474124282598495)", - "surface": 11400000, - "canton": null, - "numero_insee": "50389" - } - }, - { - "pk": 28672, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "OZEVILLE", - "center": "POINT (333462.5103183463215828 2506894.5139407436363399)", - "surface": 4760000, - "canton": null, - "numero_insee": "50390" - } - }, - { - "pk": 22355, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PARIGNY", - "center": "POINT (347706.6438571393955499 2404843.7736434685066342)", - "surface": 11840000, - "canton": null, - "numero_insee": "50391" - } - }, - { - "pk": 16726, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PERCY", - "center": "POINT (340303.1656776983290911 2441308.1712993388064206)", - "surface": 37280000, - "canton": null, - "numero_insee": "50393" - } - }, - { - "pk": 4279, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PERIERS", - "center": "POINT (326539.0092435997794382 2472516.2129183262586594)", - "surface": 14530000, - "canton": null, - "numero_insee": "50394" - } - }, - { - "pk": 36306, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA PERNELLE", - "center": "POINT (336265.0839753278996795 2519024.8597839265130460)", - "surface": 7220000, - "canton": null, - "numero_insee": "50395" - } - }, - { - "pk": 27983, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES PERQUES", - "center": "POINT (310088.7688574263011105 2501900.6140048806555569)", - "surface": 4930000, - "canton": null, - "numero_insee": "50396" - } - }, - { - "pk": 5179, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PERRIERS-EN-BEAUFICEL", - "center": "POINT (354483.8628895495785400 2420410.0669252160005271)", - "surface": 9270000, - "canton": null, - "numero_insee": "50397" - } - }, - { - "pk": 33220, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE PERRON", - "center": "POINT (363801.6629788789432496 2455610.1101343282498419)", - "surface": 4720000, - "canton": null, - "numero_insee": "50398" - } - }, - { - "pk": 14190, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE PETIT-CELLAND", - "center": "POINT (338501.7794504228513688 2416876.8108400036580861)", - "surface": 6720000, - "canton": null, - "numero_insee": "50399" - } - }, - { - "pk": 4458, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PICAUVILLE", - "center": "POINT (329371.4258873598882928 2493252.5756858224049211)", - "surface": 19300000, - "canton": null, - "numero_insee": "50400" - } - }, - { - "pk": 25157, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PIERREVILLE", - "center": "POINT (301562.8270032649743371 2504432.7015175800770521)", - "surface": 10210000, - "canton": null, - "numero_insee": "50401" - } - }, - { - "pk": 18945, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES PIEUX", - "center": "POINT (298720.5027060110587627 2509412.6340718013234437)", - "surface": 15750000, - "canton": null, - "numero_insee": "50402" - } - }, - { - "pk": 30941, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PIROU", - "center": "POINT (315752.3514028646168299 2470026.5426733647473156)", - "surface": 29310000, - "canton": null, - "numero_insee": "50403" - } - }, - { - "pk": 25366, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PLACY-MONTAIGU", - "center": "POINT (363623.7076295727165416 2452906.8679173975251615)", - "surface": 9090000, - "canton": null, - "numero_insee": "50404" - } - }, - { - "pk": 15425, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE PLESSIS-LASTELLE", - "center": "POINT (325359.0563874837826006 2482212.8040224155411124)", - "surface": 15060000, - "canton": null, - "numero_insee": "50405" - } - }, - { - "pk": 26786, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PLOMB", - "center": "POINT (331759.1319780549965799 2421524.8796118330210447)", - "surface": 8210000, - "canton": null, - "numero_insee": "50406" - } - }, - { - "pk": 18220, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "POILLEY", - "center": "POINT (330265.3438176016788930 2408403.5899959960952401)", - "surface": 12980000, - "canton": null, - "numero_insee": "50407" - } - }, - { - "pk": 33188, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PONTAUBAULT", - "center": "POINT (327856.4660015544504859 2409284.5184977790340781)", - "surface": 1840000, - "canton": null, - "numero_insee": "50408" - } - }, - { - "pk": 16289, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PONT-HEBERT", - "center": "POINT (345484.3685701051726937 2468468.4819896509870887)", - "surface": 15360000, - "canton": null, - "numero_insee": "50409" - } - }, - { - "pk": 20398, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PONTORSON", - "center": "POINT (317796.6903152217855677 2403498.3133400753140450)", - "surface": 43210000, - "canton": null, - "numero_insee": "50410" - } - }, - { - "pk": 15731, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PONTS", - "center": "POINT (329779.9852632663096301 2418806.8342268355190754)", - "surface": 6750000, - "canton": null, - "numero_insee": "50411" - } - }, - { - "pk": 36364, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PRECEY", - "center": "POINT (326172.5738938231370412 2407169.2849539062008262)", - "surface": 7880000, - "canton": null, - "numero_insee": "50413" - } - }, - { - "pk": 28298, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PRECORBIN", - "center": "POINT (358774.0904517022427171 2458570.8492856435477734)", - "surface": 7260000, - "canton": null, - "numero_insee": "50414" - } - }, - { - "pk": 18750, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "PRETOT-SAINTE-SUZANNE", - "center": "POINT (324621.8645538379205391 2486709.6467038257978857)", - "surface": 11770000, - "canton": null, - "numero_insee": "50415" - } - }, - { - "pk": 6651, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "QUERQUEVILLE", - "center": "POINT (307694.9474374905112199 2525495.5767446500249207)", - "surface": 5690000, - "canton": null, - "numero_insee": "50416" - } - }, - { - "pk": 17175, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "QUETTEHOU", - "center": "POINT (335086.5272622306947596 2516313.5740537089295685)", - "surface": 16400000, - "canton": null, - "numero_insee": "50417" - } - }, - { - "pk": 19774, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "QUETTETOT", - "center": "POINT (307551.4674559043487534 2506282.6513345669955015)", - "surface": 12720000, - "canton": null, - "numero_insee": "50418" - } - }, - { - "pk": 4032, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "QUETTREVILLE-SUR-SIENNE", - "center": "POINT (321242.6276676734560169 2447156.3142057955265045)", - "surface": 16040000, - "canton": null, - "numero_insee": "50419" - } - }, - { - "pk": 21832, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "QUIBOU", - "center": "POINT (340463.2942669208277948 2458420.8420355091802776)", - "surface": 17260000, - "canton": null, - "numero_insee": "50420" - } - }, - { - "pk": 8497, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "QUINEVILLE", - "center": "POINT (336058.2157529820105992 2507616.1756496494635940)", - "surface": 4660000, - "canton": null, - "numero_insee": "50421" - } - }, - { - "pk": 13636, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "RAIDS", - "center": "POINT (331529.6343503001262434 2474057.9811033769510686)", - "surface": 6800000, - "canton": null, - "numero_insee": "50422" - } - }, - { - "pk": 29301, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "RAMPAN", - "center": "POINT (346901.5725780441425741 2466478.7877212963066995)", - "surface": 4140000, - "canton": null, - "numero_insee": "50423" - } - }, - { - "pk": 14944, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "RAUVILLE-LA-BIGOT", - "center": "POINT (310025.9131205859011970 2509604.8780085956677794)", - "surface": 17380000, - "canton": null, - "numero_insee": "50425" - } - }, - { - "pk": 9326, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "RAUVILLE-LA-PLACE", - "center": "POINT (321152.9147802324150689 2494886.4893068340606987)", - "surface": 11980000, - "canton": null, - "numero_insee": "50426" - } - }, - { - "pk": 10428, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "RAVENOVILLE", - "center": "POINT (338010.0139558077789843 2501428.2954705171287060)", - "surface": 11700000, - "canton": null, - "numero_insee": "50427" - } - }, - { - "pk": 13421, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "REFFUVEILLE", - "center": "POINT (346028.5851540955482051 2414236.5727254487574100)", - "surface": 23720000, - "canton": null, - "numero_insee": "50428" - } - }, - { - "pk": 8905, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "REGNEVILLE-SUR-MER", - "center": "POINT (316389.0860097903059795 2453320.7921987930312753)", - "surface": 8280000, - "canton": null, - "numero_insee": "50429" - } - }, - { - "pk": 27777, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "REIGNEVILLE-BOCAGE", - "center": "POINT (323236.9289869396016002 2497004.8316653170622885)", - "surface": 2310000, - "canton": null, - "numero_insee": "50430" - } - }, - { - "pk": 20927, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "REMILLY-SUR-LOZON", - "center": "POINT (337561.7568456360604614 2470605.0591487209312618)", - "surface": 9530000, - "canton": null, - "numero_insee": "50431" - } - }, - { - "pk": 12603, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "RETHOVILLE", - "center": "POINT (333088.9580707020359114 2528104.3924484122544527)", - "surface": 3450000, - "canton": null, - "numero_insee": "50432" - } - }, - { - "pk": 12793, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "REVILLE", - "center": "POINT (340557.5885209676343948 2520260.7062800829298794)", - "surface": 10800000, - "canton": null, - "numero_insee": "50433" - } - }, - { - "pk": 7686, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA ROCHELLE-NORMANDE", - "center": "POINT (322624.0475090056424960 2425052.6635285192169249)", - "surface": 7580000, - "canton": null, - "numero_insee": "50434" - } - }, - { - "pk": 21512, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ROCHEVILLE", - "center": "POINT (315147.5048545980826020 2507345.2511648647487164)", - "surface": 10190000, - "canton": null, - "numero_insee": "50435" - } - }, - { - "pk": 14691, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ROMAGNY", - "center": "POINT (355474.6607455400517210 2409410.5796106602065265)", - "surface": 29430000, - "canton": null, - "numero_insee": "50436" - } - }, - { - "pk": 36805, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "RONCEY", - "center": "POINT (331534.0785267672035843 2449041.6364627326838672)", - "surface": 12290000, - "canton": null, - "numero_insee": "50437" - } - }, - { - "pk": 5357, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "ROUXEVILLE", - "center": "POINT (360464.4250152428285219 2459885.5636178362183273)", - "surface": 5750000, - "canton": null, - "numero_insee": "50441" - } - }, - { - "pk": 9918, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE ROZEL", - "center": "POINT (297946.1517860253807157 2506204.3426391337998211)", - "surface": 5700000, - "canton": null, - "numero_insee": "50442" - } - }, - { - "pk": 17655, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SACEY", - "center": "POINT (319461.4769624914042652 2395706.4143517361953855)", - "surface": 15330000, - "canton": null, - "numero_insee": "50443" - } - }, - { - "pk": 14591, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-AMAND", - "center": "POINT (359707.4420783687382936 2454575.8692811615765095)", - "surface": 29350000, - "canton": null, - "numero_insee": "50444" - } - }, - { - "pk": 6811, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-ANDRE-DE-BOHON", - "center": "POINT (338809.2912240219302475 2477119.4604995641857386)", - "surface": 10510000, - "canton": null, - "numero_insee": "50445" - } - }, - { - "pk": 20999, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-ANDRE-DE-L'EPINE", - "center": "POINT (354720.8852659494150430 2464741.6787177794612944)", - "surface": 7260000, - "canton": null, - "numero_insee": "50446" - } - }, - { - "pk": 25752, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-AUBIN-DES-PREAUX", - "center": "POINT (318081.2171742072678171 2429918.8943401845172048)", - "surface": 8460000, - "canton": null, - "numero_insee": "50447" - } - }, - { - "pk": 15732, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-AUBIN-DE-TERREGATTE", - "center": "POINT (332511.7531754868687131 2402918.1155590689741075)", - "surface": 21380000, - "canton": null, - "numero_insee": "50448" - } - }, - { - "pk": 29759, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-BARTHELEMY", - "center": "POINT (357834.3210944187594578 2414533.4677782040089369)", - "surface": 6890000, - "canton": null, - "numero_insee": "50450" - } - }, - { - "pk": 24427, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-BRICE", - "center": "POINT (332393.8813996590906754 2417327.1782379052601755)", - "surface": 2520000, - "canton": null, - "numero_insee": "50451" - } - }, - { - "pk": 30677, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-BRICE-DE-LANDELLES", - "center": "POINT (343750.0032117784721777 2399207.4307182068005204)", - "surface": 15400000, - "canton": null, - "numero_insee": "50452" - } - }, - { - "pk": 4039, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-CECILE", - "center": "POINT (340980.5247284373035654 2431907.3717263587750494)", - "surface": 11570000, - "canton": null, - "numero_insee": "50453" - } - }, - { - "pk": 34999, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-CHRISTOPHE-DU-FOC", - "center": "POINT (305187.3704377809190191 2513968.1217989837750793)", - "surface": 3610000, - "canton": null, - "numero_insee": "50454" - } - }, - { - "pk": 33364, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-CLAIR-SUR-L'ELLE", - "center": "POINT (353672.7405452717212029 2470536.8564665005542338)", - "surface": 8050000, - "canton": null, - "numero_insee": "50455" - } - }, - { - "pk": 18463, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-CLEMENT-RANCOUDRAY", - "center": "POINT (362252.6667010406381451 2412668.3918061535805464)", - "surface": 32730000, - "canton": null, - "numero_insee": "50456" - } - }, - { - "pk": 12269, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-COLOMBE", - "center": "POINT (320529.6959612093633041 2497683.1564395288005471)", - "surface": 5090000, - "canton": null, - "numero_insee": "50457" - } - }, - { - "pk": 32022, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-COME-DU-MONT", - "center": "POINT (338423.9727090764208697 2487522.9460117956623435)", - "surface": 13030000, - "canton": null, - "numero_insee": "50458" - } - }, - { - "pk": 31301, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-CROIX-HAGUE", - "center": "POINT (303505.7387436560238712 2523860.4490255364216864)", - "surface": 9940000, - "canton": null, - "numero_insee": "50460" - } - }, - { - "pk": 12953, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-CYR", - "center": "POINT (327872.5038750715903006 2505247.8234433988109231)", - "surface": 5790000, - "canton": null, - "numero_insee": "50461" - } - }, - { - "pk": 3330, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-DENIS-LE-GAST", - "center": "POINT (331470.0242522362968884 2444638.1776473522186279)", - "surface": 16960000, - "canton": null, - "numero_insee": "50463" - } - }, - { - "pk": 29815, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-DENIS-LE-VETU", - "center": "POINT (328021.3497764174826443 2450313.7781123453751206)", - "surface": 14170000, - "canton": null, - "numero_insee": "50464" - } - }, - { - "pk": 14446, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-EBREMOND-DE-BONFOSSE", - "center": "POINT (345467.0650849185767584 2458361.7419342808425426)", - "surface": 11920000, - "canton": null, - "numero_insee": "50465" - } - }, - { - "pk": 34549, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-FLOXEL", - "center": "POINT (332174.8825550655019470 2505282.9941873508505523)", - "surface": 8510000, - "canton": null, - "numero_insee": "50467" - } - }, - { - "pk": 16290, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-FROMOND", - "center": "POINT (348931.4924687566235662 2475201.0448773698881269)", - "surface": 15660000, - "canton": null, - "numero_insee": "50468" - } - }, - { - "pk": 36403, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-GENEVIEVE", - "center": "POINT (336723.6168261137790978 2524131.7041082764044404)", - "surface": 5020000, - "canton": null, - "numero_insee": "50469" - } - }, - { - "pk": 23880, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GEORGES-DE-BOHON", - "center": "POINT (338092.5143841468961909 2479114.8788160234689713)", - "surface": 14010000, - "canton": null, - "numero_insee": "50470" - } - }, - { - "pk": 14163, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GEORGES-DE-LA-RIVIERE", - "center": "POINT (304460.6562699826317839 2492648.9359325566329062)", - "surface": 3830000, - "canton": null, - "numero_insee": "50471" - } - }, - { - "pk": 12430, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GEORGES-DE-LIVOYE", - "center": "POINT (338165.5576577107422054 2421277.0905494387261569)", - "surface": 5610000, - "canton": null, - "numero_insee": "50472" - } - }, - { - "pk": 34324, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GEORGES-D'ELLE", - "center": "POINT (358011.3296056018443778 2466169.5638314359821379)", - "surface": 9040000, - "canton": null, - "numero_insee": "50473" - } - }, - { - "pk": 21049, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GEORGES-DE-ROUELLEY", - "center": "POINT (370510.3797378824092448 2406331.7128997235558927)", - "surface": 20780000, - "canton": null, - "numero_insee": "50474" - } - }, - { - "pk": 7280, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GEORGES-MONTCOCQ", - "center": "POINT (348413.1025929802563041 2465190.3211369579657912)", - "surface": 9200000, - "canton": null, - "numero_insee": "50475" - } - }, - { - "pk": 22209, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GERMAIN-D'ELLE", - "center": "POINT (362040.7454577805474401 2462900.4552119025029242)", - "surface": 9050000, - "canton": null, - "numero_insee": "50476" - } - }, - { - "pk": 11828, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GERMAIN-DES-VAUX", - "center": "POINT (293233.4170179922366515 2531981.6920607010833919)", - "surface": 6520000, - "canton": null, - "numero_insee": "50477" - } - }, - { - "pk": 33455, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GERMAIN-DE-TOURNEBUT", - "center": "POINT (329036.3652049952070229 2509760.1184819918125868)", - "surface": 13910000, - "canton": null, - "numero_insee": "50478" - } - }, - { - "pk": 6597, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GERMAIN-DE-VARREVILLE", - "center": "POINT (340027.5007553814211860 2499443.5555531959980726)", - "surface": 5940000, - "canton": null, - "numero_insee": "50479" - } - }, - { - "pk": 3304, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GERMAIN-LE-GAILLARD", - "center": "POINT (302043.5287218512385152 2506838.1099883415736258)", - "surface": 14060000, - "canton": null, - "numero_insee": "50480" - } - }, - { - "pk": 14846, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GERMAIN-SUR-AY", - "center": "POINT (312483.5216828410630114 2478205.1536754709668458)", - "surface": 14590000, - "canton": null, - "numero_insee": "50481" - } - }, - { - "pk": 16073, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GERMAIN-SUR-SEVES", - "center": "POINT (329316.9099093087133951 2475440.7918420359492302)", - "surface": 8310000, - "canton": null, - "numero_insee": "50482" - } - }, - { - "pk": 25557, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-GILLES", - "center": "POINT (344444.3539290520711802 2461055.1394623969681561)", - "surface": 7870000, - "canton": null, - "numero_insee": "50483" - } - }, - { - "pk": 6246, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-HILAIRE-PETITVILLE", - "center": "POINT (341352.6416675461223349 2484244.8157860236242414)", - "surface": 10060000, - "canton": null, - "numero_insee": "50485" - } - }, - { - "pk": 14843, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JACQUES-DE-NEHOU", - "center": "POINT (313017.3304207361070439 2498622.4494166327640414)", - "surface": 21780000, - "canton": null, - "numero_insee": "50486" - } - }, - { - "pk": 37681, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JAMES", - "center": "POINT (329448.2470392878749408 2398189.7486744048073888)", - "surface": 18430000, - "canton": null, - "numero_insee": "50487" - } - }, - { - "pk": 11457, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-DE-DAYE", - "center": "POINT (346923.7838644302682951 2475985.1158975930884480)", - "surface": 4160000, - "canton": null, - "numero_insee": "50488" - } - }, - { - "pk": 17876, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-DE-LA-HAIZE", - "center": "POINT (327970.6830367445363663 2419792.7283349465578794)", - "surface": 9070000, - "canton": null, - "numero_insee": "50489" - } - }, - { - "pk": 36432, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-DE-LA-RIVIERE", - "center": "POINT (303754.5499927620403469 2493343.6197402458637953)", - "surface": 3680000, - "canton": null, - "numero_insee": "50490" - } - }, - { - "pk": 36200, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-DE-SAVIGNY", - "center": "POINT (356372.6662671647500247 2470759.1149863665923476)", - "surface": 7620000, - "canton": null, - "numero_insee": "50491" - } - }, - { - "pk": 24809, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-DES-BAISANTS", - "center": "POINT (356859.8456805832101963 2460156.2046267911791801)", - "surface": 13540000, - "canton": null, - "numero_insee": "50492" - } - }, - { - "pk": 16727, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-DES-CHAMPS", - "center": "POINT (320868.2211438072263263 2431742.8864860143512487)", - "surface": 19340000, - "canton": null, - "numero_insee": "50493" - } - }, - { - "pk": 26552, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-DU-CORAIL-DES-BOIS", - "center": "POINT (339635.3632884618127719 2425091.7266351203434169)", - "surface": 3610000, - "canton": null, - "numero_insee": "50495" - } - }, - { - "pk": 3602, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JEAN-LE-THOMAS", - "center": "POINT (316551.3319883277872577 2421200.4433441660366952)", - "surface": 2510000, - "canton": null, - "numero_insee": "50496" - } - }, - { - "pk": 22313, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JORES", - "center": "POINT (327840.0399448138778098 2484734.6751180612482131)", - "surface": 12740000, - "canton": null, - "numero_insee": "50497" - } - }, - { - "pk": 33874, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-JOSEPH", - "center": "POINT (320323.4105356564978138 2510689.5481317355297506)", - "surface": 9860000, - "canton": null, - "numero_insee": "50498" - } - }, - { - "pk": 17303, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-LAURENT-DE-CUVES", - "center": "POINT (346062.2598147962125950 2422342.4326089899986982)", - "surface": 14810000, - "canton": null, - "numero_insee": "50499" - } - }, - { - "pk": 4628, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-LAURENT-DE-TERREGATTE", - "center": "POINT (335514.4769361983053386 2402842.6133729596622288)", - "surface": 16690000, - "canton": null, - "numero_insee": "50500" - } - }, - { - "pk": 16676, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-LO", - "center": "POINT (350638.1619875586475246 2462306.6554145067930222)", - "surface": 23260000, - "canton": null, - "numero_insee": "50502" - } - }, - { - "pk": 21278, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-LO-D'OURVILLE", - "center": "POINT (308293.0021645869128406 2488977.8529705498367548)", - "surface": 10750000, - "canton": null, - "numero_insee": "50503" - } - }, - { - "pk": 10639, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-LOUET-SUR-VIRE", - "center": "POINT (356650.7211796173360199 2449047.1637444291263819)", - "surface": 7500000, - "canton": null, - "numero_insee": "50504" - } - }, - { - "pk": 24618, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-LOUP", - "center": "POINT (331823.7909406739636324 2413619.9543014895170927)", - "surface": 6480000, - "canton": null, - "numero_insee": "50505" - } - }, - { - "pk": 7517, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARCOUF", - "center": "POINT (337189.1063113538548350 2503923.1344474558718503)", - "surface": 13620000, - "canton": null, - "numero_insee": "50507" - } - }, - { - "pk": 12560, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-MARIE-DU-BOIS", - "center": "POINT (361358.7530362365650944 2399651.9765784190967679)", - "surface": 4890000, - "canton": null, - "numero_insee": "50508" - } - }, - { - "pk": 19505, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-MARIE-DU-MONT", - "center": "POINT (342770.7741114461096004 2494362.8122267001308501)", - "surface": 27650000, - "canton": null, - "numero_insee": "50509" - } - }, - { - "pk": 17241, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-D'AUBIGNY", - "center": "POINT (330865.2279389922623523 2469649.7015695269219577)", - "surface": 15130000, - "canton": null, - "numero_insee": "50510" - } - }, - { - "pk": 27578, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-D'AUDOUVILLE", - "center": "POINT (331437.6840754562872462 2509779.7485744538716972)", - "surface": 3630000, - "canton": null, - "numero_insee": "50511" - } - }, - { - "pk": 6148, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-DE-CENILLY", - "center": "POINT (334643.3000966838444583 2448166.4690654678270221)", - "surface": 6760000, - "canton": null, - "numero_insee": "50513" - } - }, - { - "pk": 21100, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "CHAULIEU", - "center": "POINT (364783.6796238169772550 2421295.0917860376648605)", - "surface": 10570000, - "canton": null, - "numero_insee": "50514" - } - }, - { - "pk": 16506, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-DE-LANDELLES", - "center": "POINT (340035.3560716024367139 2400678.0703387921676040)", - "surface": 20020000, - "canton": null, - "numero_insee": "50515" - } - }, - { - "pk": 24077, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-DES-CHAMPS", - "center": "POINT (329319.7694641777779907 2413899.6825588876381516)", - "surface": 6450000, - "canton": null, - "numero_insee": "50516" - } - }, - { - "pk": 14054, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-DE-VARREVILLE", - "center": "POINT (340837.7725992044433951 2498249.4364172755740583)", - "surface": 8370000, - "canton": null, - "numero_insee": "50517" - } - }, - { - "pk": 21833, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-LE-BOUILLANT", - "center": "POINT (343031.7258254342013970 2425820.0109292473644018)", - "surface": 12500000, - "canton": null, - "numero_insee": "50518" - } - }, - { - "pk": 12954, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-LE-GREARD", - "center": "POINT (311594.9542637256672606 2513520.0806887852959335)", - "surface": 2910000, - "canton": null, - "numero_insee": "50519" - } - }, - { - "pk": 13237, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MARTIN-LE-HEBERT", - "center": "POINT (313639.3271854033228010 2508233.4981485707685351)", - "surface": 2180000, - "canton": null, - "numero_insee": "50520" - } - }, - { - "pk": 34185, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MAUR-DES-BOIS", - "center": "POINT (343698.5630066776648164 2429928.2667564605362713)", - "surface": 5000000, - "canton": null, - "numero_insee": "50521" - } - }, - { - "pk": 9518, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MAURICE-EN-COTENTIN", - "center": "POINT (306834.2635523461503908 2496070.4349705758504570)", - "surface": 7670000, - "canton": null, - "numero_insee": "50522" - } - }, - { - "pk": 21511, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-MERE-EGLISE", - "center": "POINT (334149.5780472210608423 2496293.5299022127874196)", - "surface": 17800000, - "canton": null, - "numero_insee": "50523" - } - }, - { - "pk": 23799, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MICHEL-DE-LA-PIERRE", - "center": "POINT (328494.0964045752189122 2465927.9092736770398915)", - "surface": 4280000, - "canton": null, - "numero_insee": "50524" - } - }, - { - "pk": 35953, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-MICHEL-DE-MONTJOIE", - "center": "POINT (352755.7445684681879357 2423698.1662328974343836)", - "surface": 14510000, - "canton": null, - "numero_insee": "50525" - } - }, - { - "pk": 6116, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-NICOLAS-DE-PIERREPONT", - "center": "POINT (314909.8141336226253770 2487430.8346930537372828)", - "surface": 8120000, - "canton": null, - "numero_insee": "50528" - } - }, - { - "pk": 26785, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-NICOLAS-DES-BOIS", - "center": "POINT (340445.6864613351644948 2423897.5382984867319465)", - "surface": 3660000, - "canton": null, - "numero_insee": "50529" - } - }, - { - "pk": 17422, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-OVIN", - "center": "POINT (336215.9025387325673364 2414956.7891117809340358)", - "surface": 12890000, - "canton": null, - "numero_insee": "50531" - } - }, - { - "pk": 23152, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PAIR-SUR-MER", - "center": "POINT (314680.7625723135424778 2429690.9872075906023383)", - "surface": 14720000, - "canton": null, - "numero_insee": "50532" - } - }, - { - "pk": 33136, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PATRICE-DE-CLAIDS", - "center": "POINT (324705.2600114992819726 2476503.8068679678253829)", - "surface": 5650000, - "canton": null, - "numero_insee": "50533" - } - }, - { - "pk": 5844, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PELLERIN", - "center": "POINT (343361.9717892394401133 2483260.6261377870105207)", - "surface": 4480000, - "canton": null, - "numero_insee": "50534" - } - }, - { - "pk": 15843, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-PIENCE", - "center": "POINT (332728.6485834314371459 2425335.4157215142622590)", - "surface": 8640000, - "canton": null, - "numero_insee": "50535" - } - }, - { - "pk": 25515, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PIERRE-D'ARTHEGLISE", - "center": "POINT (308015.3491107263835147 2498481.5744053712114692)", - "surface": 5410000, - "canton": null, - "numero_insee": "50536" - } - }, - { - "pk": 31660, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PIERRE-DE-COUTANCES", - "center": "POINT (323380.9895311846630648 2454878.8988795001059771)", - "surface": 3990000, - "canton": null, - "numero_insee": "50537" - } - }, - { - "pk": 33182, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PIERRE-DE-SEMILLY", - "center": "POINT (356533.4210775883402675 2463355.6224116533994675)", - "surface": 4590000, - "canton": null, - "numero_insee": "50538" - } - }, - { - "pk": 27378, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PIERRE-EGLISE", - "center": "POINT (330107.7999331576284021 2525578.5147722754627466)", - "surface": 8160000, - "canton": null, - "numero_insee": "50539" - } - }, - { - "pk": 16510, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PIERRE-LANGERS", - "center": "POINT (318802.0816508383140899 2427423.0777374599128962)", - "surface": 8330000, - "canton": null, - "numero_insee": "50540" - } - }, - { - "pk": 34465, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-PLANCHERS", - "center": "POINT (317858.2100639010895975 2432718.9765287330374122)", - "surface": 12180000, - "canton": null, - "numero_insee": "50541" - } - }, - { - "pk": 33277, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-POIS", - "center": "POINT (350268.9588049356825650 2421876.5526395598426461)", - "surface": 7740000, - "canton": null, - "numero_insee": "50542" - } - }, - { - "pk": 18168, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-QUENTIN-SUR-LE-HOMME", - "center": "POINT (331942.6791478491504677 2411319.3295193966478109)", - "surface": 16990000, - "canton": null, - "numero_insee": "50543" - } - }, - { - "pk": 6245, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-REMY-DES-LANDES", - "center": "POINT (309325.4067762592458166 2485083.7971444795839489)", - "surface": 8480000, - "canton": null, - "numero_insee": "50544" - } - }, - { - "pk": 28185, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-ROMPHAIRE", - "center": "POINT (349201.2163754805224016 2454489.7570633441209793)", - "surface": 10130000, - "canton": null, - "numero_insee": "50545" - } - }, - { - "pk": 13523, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SAMSON-DE-BONFOSSE", - "center": "POINT (346388.9021875636535697 2455767.5793988541699946)", - "surface": 6300000, - "canton": null, - "numero_insee": "50546" - } - }, - { - "pk": 28434, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SAUVEUR-DE-PIERREPONT", - "center": "POINT (312994.8515458471374586 2489116.2822849331423640)", - "surface": 8230000, - "canton": null, - "numero_insee": "50548" - } - }, - { - "pk": 37638, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SAUVEUR-LA-POMMERAYE", - "center": "POINT (323155.7289950867998414 2433462.7320172130130231)", - "surface": 5380000, - "canton": null, - "numero_insee": "50549" - } - }, - { - "pk": 19001, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SAUVEUR-LENDELIN", - "center": "POINT (326701.2218517785659060 2464912.6014140276238322)", - "surface": 16620000, - "canton": null, - "numero_insee": "50550" - } - }, - { - "pk": 21811, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SAUVEUR-LE-VICOMTE", - "center": "POINT (317759.1735874650184996 2493858.1446418948471546)", - "surface": 34420000, - "canton": null, - "numero_insee": "50551" - } - }, - { - "pk": 13911, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SEBASTIEN-DE-RAIDS", - "center": "POINT (329238.9383103924919851 2472738.4122493918985128)", - "surface": 5220000, - "canton": null, - "numero_insee": "50552" - } - }, - { - "pk": 18221, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SENIER-DE-BEUVRON", - "center": "POINT (330019.1677286477643065 2401796.9540555942803621)", - "surface": 11140000, - "canton": null, - "numero_insee": "50553" - } - }, - { - "pk": 32057, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTE-SUZANNE-SUR-VIRE", - "center": "POINT (351873.3012850057566538 2458114.0216217325069010)", - "surface": 5040000, - "canton": null, - "numero_insee": "50556" - } - }, - { - "pk": 30060, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SYMPHORIEN-DES-MONTS", - "center": "POINT (354558.5261104898527265 2399095.8555618417449296)", - "surface": 6920000, - "canton": null, - "numero_insee": "50557" - } - }, - { - "pk": 35491, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-SYMPHORIEN-LE-VALOIS", - "center": "POINT (316233.4261145467171445 2484639.8594139646738768)", - "surface": 5950000, - "canton": null, - "numero_insee": "50558" - } - }, - { - "pk": 19002, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-VAAST-LA-HOUGUE", - "center": "POINT (338780.3539386756019667 2517344.3994864285923541)", - "surface": 6620000, - "canton": null, - "numero_insee": "50562" - } - }, - { - "pk": 21691, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINT-VIGOR-DES-MONTS", - "center": "POINT (351121.9858824246912263 2439895.7680585971102118)", - "surface": 15990000, - "canton": null, - "numero_insee": "50563" - } - }, - { - "pk": 17240, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAINTENY", - "center": "POINT (332998.5879795832443051 2477972.5037520756013691)", - "surface": 21710000, - "canton": null, - "numero_insee": "50564" - } - }, - { - "pk": 16130, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SARTILLY", - "center": "POINT (320530.9251941266702488 2424034.8750780881382525)", - "surface": 11700000, - "canton": null, - "numero_insee": "50565" - } - }, - { - "pk": 3572, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAUSSEMESNIL", - "center": "POINT (322988.9312209330964833 2515114.0214993031695485)", - "surface": 21700000, - "canton": null, - "numero_insee": "50567" - } - }, - { - "pk": 6378, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAUSSEY", - "center": "POINT (324701.3873796006082557 2452488.1008132500573993)", - "surface": 9160000, - "canton": null, - "numero_insee": "50568" - } - }, - { - "pk": 26062, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAVIGNY", - "center": "POINT (332065.6977261634310707 2457451.5440692948177457)", - "surface": 10280000, - "canton": null, - "numero_insee": "50569" - } - }, - { - "pk": 3413, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SAVIGNY-LE-VIEUX", - "center": "POINT (351678.0016970731085166 2396470.4088639370165765)", - "surface": 17300000, - "canton": null, - "numero_insee": "50570" - } - }, - { - "pk": 28203, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SEBEVILLE", - "center": "POINT (336872.3721038489020430 2493714.1678885705769062)", - "surface": 2860000, - "canton": null, - "numero_insee": "50571" - } - }, - { - "pk": 6247, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SENOVILLE", - "center": "POINT (301898.0671762574347667 2500132.7534379209391773)", - "surface": 7260000, - "canton": null, - "numero_insee": "50572" - } - }, - { - "pk": 29342, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SERVIGNY", - "center": "POINT (320724.6791574490489438 2461561.6064399047754705)", - "surface": 4020000, - "canton": null, - "numero_insee": "50573" - } - }, - { - "pk": 26356, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SERVON", - "center": "POINT (323571.7484719949425198 2407047.9546425612643361)", - "surface": 9220000, - "canton": null, - "numero_insee": "50574" - } - }, - { - "pk": 20803, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SIDEVILLE", - "center": "POINT (308855.9326166475657374 2518100.5512135485187173)", - "surface": 7710000, - "canton": null, - "numero_insee": "50575" - } - }, - { - "pk": 9143, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SIOUVILLE-HAGUE", - "center": "POINT (298275.4392567565664649 2514912.3931245068088174)", - "surface": 6300000, - "canton": null, - "numero_insee": "50576" - } - }, - { - "pk": 30666, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SORTOSVILLE-EN-BEAUMONT", - "center": "POINT (306307.0531506292172708 2499368.2040421864949167)", - "surface": 10330000, - "canton": null, - "numero_insee": "50577" - } - }, - { - "pk": 12672, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SORTOSVILLE", - "center": "POINT (326876.0389062433387153 2504739.3695562789216638)", - "surface": 2500000, - "canton": null, - "numero_insee": "50578" - } - }, - { - "pk": 21883, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SOTTEVAST", - "center": "POINT (314326.6470642901258543 2509840.0958873759955168)", - "surface": 11020000, - "canton": null, - "numero_insee": "50579" - } - }, - { - "pk": 6925, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SOTTEVILLE", - "center": "POINT (303799.6563341101282276 2512355.8234072094783187)", - "surface": 6190000, - "canton": null, - "numero_insee": "50580" - } - }, - { - "pk": 36753, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SOULLES", - "center": "POINT (342021.5179384680232033 2451428.9754522587172687)", - "surface": 15170000, - "canton": null, - "numero_insee": "50581" - } - }, - { - "pk": 23497, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SOURDEVAL", - "center": "POINT (362312.5047328559448943 2417572.2707958850078285)", - "surface": 36940000, - "canton": null, - "numero_insee": "50582" - } - }, - { - "pk": 29989, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SOURDEVAL-LES-BOIS", - "center": "POINT (335003.2375862148473971 2440864.5315234106965363)", - "surface": 5930000, - "canton": null, - "numero_insee": "50583" - } - }, - { - "pk": 29761, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SUBLIGNY", - "center": "POINT (328140.5354875431512482 2423496.6600608648732305)", - "surface": 7900000, - "canton": null, - "numero_insee": "50584" - } - }, - { - "pk": 19003, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SURTAINVILLE", - "center": "POINT (300374.3937178920605220 2502922.0806525717489421)", - "surface": 14840000, - "canton": null, - "numero_insee": "50585" - } - }, - { - "pk": 24586, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "SURVILLE", - "center": "POINT (310539.9709719582460821 2483392.6230880641378462)", - "surface": 7470000, - "canton": null, - "numero_insee": "50586" - } - }, - { - "pk": 25331, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TAILLEPIED", - "center": "POINT (314872.2424027905217372 2492033.4403946571983397)", - "surface": 2170000, - "canton": null, - "numero_insee": "50587" - } - }, - { - "pk": 3779, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TAMERVILLE", - "center": "POINT (324918.5791781687294133 2511627.6377439806237817)", - "surface": 18180000, - "canton": null, - "numero_insee": "50588" - } - }, - { - "pk": 7540, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TANIS", - "center": "POINT (321085.7035610026796348 2405126.3076976654119790)", - "surface": 7470000, - "canton": null, - "numero_insee": "50589" - } - }, - { - "pk": 24292, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE TEILLEUL", - "center": "POINT (362569.3686192240566015 2398461.0636719739995897)", - "surface": 30920000, - "canton": null, - "numero_insee": "50591" - } - }, - { - "pk": 3500, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TESSY-SUR-VIRE", - "center": "POINT (349370.9522774305660278 2445985.5056334403343499)", - "surface": 16120000, - "canton": null, - "numero_insee": "50592" - } - }, - { - "pk": 16072, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TEURTHEVILLE-BOCAGE", - "center": "POINT (329978.0270574236055836 2516972.2329810811206698)", - "surface": 21790000, - "canton": null, - "numero_insee": "50593" - } - }, - { - "pk": 25063, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "THEVILLE", - "center": "POINT (328625.8023456960800104 2523265.0112847974523902)", - "surface": 7900000, - "canton": null, - "numero_insee": "50596" - } - }, - { - "pk": 18466, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TIREPIED", - "center": "POINT (334273.7809547359938733 2419944.3499816115945578)", - "surface": 19100000, - "canton": null, - "numero_insee": "50597" - } - }, - { - "pk": 35350, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TOCQUEVILLE", - "center": "POINT (334611.0328834812971763 2525515.2719545820727944)", - "surface": 5910000, - "canton": null, - "numero_insee": "50598" - } - }, - { - "pk": 17826, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TOLLEVAST", - "center": "POINT (314574.5471878875978291 2516246.0507712364196777)", - "surface": 12520000, - "canton": null, - "numero_insee": "50599" - } - }, - { - "pk": 26941, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TONNEVILLE", - "center": "POINT (306809.9663914325064979 2523587.2093203547410667)", - "surface": 3810000, - "canton": null, - "numero_insee": "50600" - } - }, - { - "pk": 12722, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TORIGNI-SUR-VIRE", - "center": "POINT (357116.5652909257914871 2453253.7666872516274452)", - "surface": 3060000, - "canton": null, - "numero_insee": "50601" - } - }, - { - "pk": 21461, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TOURLAVILLE", - "center": "POINT (317623.1409639205085114 2522774.8946019699797034)", - "surface": 15000000, - "canton": null, - "numero_insee": "50602" - } - }, - { - "pk": 31613, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TOURVILLE-SUR-SIENNE", - "center": "POINT (317457.8723051666747779 2457232.0971226063556969)", - "surface": 7450000, - "canton": null, - "numero_insee": "50603" - } - }, - { - "pk": 36204, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TREAUVILLE", - "center": "POINT (298696.0417546043172479 2512414.2845718045718968)", - "surface": 12950000, - "canton": null, - "numero_insee": "50604" - } - }, - { - "pk": 17978, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TRELLY", - "center": "POINT (324948.1196154045755975 2446786.3266991116106510)", - "surface": 11900000, - "canton": null, - "numero_insee": "50605" - } - }, - { - "pk": 21581, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA TRINITE", - "center": "POINT (336617.1354723962140270 2427068.3913876628503203)", - "surface": 9160000, - "canton": null, - "numero_insee": "50607" - } - }, - { - "pk": 30606, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TROISGOTS", - "center": "POINT (350522.4826151962624863 2451998.9284305488690734)", - "surface": 7750000, - "canton": null, - "numero_insee": "50608" - } - }, - { - "pk": 10180, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "TURQUEVILLE", - "center": "POINT (338056.6742606891784817 2495725.1135232187807560)", - "surface": 5280000, - "canton": null, - "numero_insee": "50609" - } - }, - { - "pk": 33872, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "URVILLE", - "center": "POINT (325503.8784937107702717 2501225.9795123534277081)", - "surface": 5160000, - "canton": null, - "numero_insee": "50610" - } - }, - { - "pk": 18650, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "URVILLE-NACQUEVILLE", - "center": "POINT (305084.5748900229227729 2526574.9543585795909166)", - "surface": 11520000, - "canton": null, - "numero_insee": "50611" - } - }, - { - "pk": 24810, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VAINS", - "center": "POINT (322905.1279066418064758 2415148.1426198440603912)", - "surface": 8700000, - "canton": null, - "numero_insee": "50612" - } - }, - { - "pk": 36385, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VALCANVILLE", - "center": "POINT (335532.7910916912369430 2522921.2383386804722250)", - "surface": 6600000, - "canton": null, - "numero_insee": "50613" - } - }, - { - "pk": 20559, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE VALDECIE", - "center": "POINT (309912.3308178797597066 2498997.3629906000569463)", - "surface": 3990000, - "canton": null, - "numero_insee": "50614" - } - }, - { - "pk": 29381, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE VAL-SAINT-PERE", - "center": "POINT (326722.2308768079383299 2413378.0963459694758058)", - "surface": 11320000, - "canton": null, - "numero_insee": "50616" - } - }, - { - "pk": 4230, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VARENGUEBEC", - "center": "POINT (321601.3605659333989024 2488986.4286903520114720)", - "surface": 21360000, - "canton": null, - "numero_insee": "50617" - } - }, - { - "pk": 32556, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VAROUVILLE", - "center": "POINT (332008.8196254539652728 2525594.0551223102957010)", - "surface": 4200000, - "canton": null, - "numero_insee": "50618" - } - }, - { - "pk": 11600, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VAUDREVILLE", - "center": "POINT (332149.5217762950924225 2508384.7048746235668659)", - "surface": 3010000, - "canton": null, - "numero_insee": "50621" - } - }, - { - "pk": 29206, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VAUDRIMESNIL", - "center": "POINT (325966.4651223316905089 2469109.3303629448637366)", - "surface": 6060000, - "canton": null, - "numero_insee": "50622" - } - }, - { - "pk": 9705, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VAUVILLE", - "center": "POINT (299105.8107268288731575 2523524.4046658440493047)", - "surface": 16560000, - "canton": null, - "numero_insee": "50623" - } - }, - { - "pk": 32709, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LA VENDELEE", - "center": "POINT (322633.9731402331381105 2460576.5490014059469104)", - "surface": 5130000, - "canton": null, - "numero_insee": "50624" - } - }, - { - "pk": 21481, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VENGEONS", - "center": "POINT (360475.2720914487726986 2421960.2260227329097688)", - "surface": 15860000, - "canton": null, - "numero_insee": "50625" - } - }, - { - "pk": 17304, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VER", - "center": "POINT (326608.7895296005881391 2439495.0082962266169488)", - "surface": 13870000, - "canton": null, - "numero_insee": "50626" - } - }, - { - "pk": 30792, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VERGONCEY", - "center": "POINT (325205.4798850472434424 2403058.5066337957978249)", - "surface": 7810000, - "canton": null, - "numero_insee": "50627" - } - }, - { - "pk": 22372, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VERNIX", - "center": "POINT (337584.8395406808704138 2418870.6860366086475551)", - "surface": 5940000, - "canton": null, - "numero_insee": "50628" - } - }, - { - "pk": 20258, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VESSEY", - "center": "POINT (322037.7929673349717632 2398829.6584184593521059)", - "surface": 12910000, - "canton": null, - "numero_insee": "50630" - } - }, - { - "pk": 36653, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LES VEYS", - "center": "POINT (346743.4264108292991295 2485789.9031280819326639)", - "surface": 18410000, - "canton": null, - "numero_insee": "50631" - } - }, - { - "pk": 11669, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE VICEL", - "center": "POINT (335547.5203644206048921 2521120.2674479647539556)", - "surface": 4790000, - "canton": null, - "numero_insee": "50633" - } - }, - { - "pk": 16830, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VIDECOSVILLE", - "center": "POINT (331502.5644178462680429 2514082.9218826806172729)", - "surface": 2580000, - "canton": null, - "numero_insee": "50634" - } - }, - { - "pk": 33407, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VIDOUVILLE", - "center": "POINT (363564.6071096581872553 2460111.1229550796560943)", - "surface": 4450000, - "canton": null, - "numero_insee": "50635" - } - }, - { - "pk": 12532, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VIERVILLE", - "center": "POINT (340407.9112114813178778 2489640.5102846454828978)", - "surface": 4160000, - "canton": null, - "numero_insee": "50636" - } - }, - { - "pk": 9066, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VILLEBAUDON", - "center": "POINT (343063.0751774085219949 2446434.1775879375636578)", - "surface": 5760000, - "canton": null, - "numero_insee": "50637" - } - }, - { - "pk": 9357, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VILLECHIEN", - "center": "POINT (354832.4652839478803799 2402300.3514592754654586)", - "surface": 10930000, - "canton": null, - "numero_insee": "50638" - } - }, - { - "pk": 3395, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VILLEDIEU-LES-POELES", - "center": "POINT (338577.4188513295957819 2432087.8370788889005780)", - "surface": 7950000, - "canton": null, - "numero_insee": "50639" - } - }, - { - "pk": 25756, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VILLIERS-LE-PRE", - "center": "POINT (324837.1273317352752201 2399152.7508872305043042)", - "surface": 7990000, - "canton": null, - "numero_insee": "50640" - } - }, - { - "pk": 30187, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VILLIERS-FOSSARD", - "center": "POINT (351993.0705124749802053 2467921.4065931253135204)", - "surface": 8800000, - "canton": null, - "numero_insee": "50641" - } - }, - { - "pk": 13912, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VINDEFONTAINE", - "center": "POINT (326203.1491916449740529 2489124.0906392438337207)", - "surface": 8290000, - "canton": null, - "numero_insee": "50642" - } - }, - { - "pk": 21644, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VIRANDEVILLE", - "center": "POINT (306675.1355479053454474 2515581.2354324199259281)", - "surface": 8310000, - "canton": null, - "numero_insee": "50643" - } - }, - { - "pk": 5168, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "VIREY", - "center": "POINT (343212.8092686076997779 2403706.1942612803541124)", - "surface": 17220000, - "canton": null, - "numero_insee": "50644" - } - }, - { - "pk": 3571, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "LE VRETOT", - "center": "POINT (306082.4609559428063221 2502368.2457114136777818)", - "surface": 20940000, - "canton": null, - "numero_insee": "50646" - } - }, - { - "pk": 8789, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "YQUELON", - "center": "POINT (314542.3008090666262433 2434393.0499760787934065)", - "surface": 2170000, - "canton": null, - "numero_insee": "50647" - } - }, - { - "pk": 33875, - "model": "ishtar_common.town", - "fields": { - "departement": 51, - "name": "YVETOT-BOCAGE", - "center": "POINT (321056.4822665331885219 2506693.0647112512961030)", - "surface": 12190000, - "canton": null, - "numero_insee": "50648" - } - }, - { - "pk": 6332, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ABLANCOURT", - "center": "POINT (761217.2952545257285237 2425711.5503811743110418)", - "surface": 7170000, - "canton": null, - "numero_insee": "51001" - } - }, - { - "pk": 24305, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MARTIN-D'ABLOIS", - "center": "POINT (710002.0187258339719847 2446990.7491168165579438)", - "surface": 22310000, - "canton": null, - "numero_insee": "51002" - } - }, - { - "pk": 32782, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AIGNY", - "center": "POINT (737786.1633674368495122 2451029.2317056572064757)", - "surface": 11180000, - "canton": null, - "numero_insee": "51003" - } - }, - { - "pk": 24772, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ALLEMANCHE-LAUNAY-ET-SOYER", - "center": "POINT (707282.8116930080577731 2401836.8981103193946183)", - "surface": 15190000, - "canton": null, - "numero_insee": "51004" - } - }, - { - "pk": 37360, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ALLEMANT", - "center": "POINT (708737.8702252353541553 2419061.1709507638588548)", - "surface": 15630000, - "canton": null, - "numero_insee": "51005" - } - }, - { - "pk": 32121, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AMBONNAY", - "center": "POINT (734143.2116475285729393 2455801.4265145920217037)", - "surface": 11730000, - "canton": null, - "numero_insee": "51007" - } - }, - { - "pk": 34198, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AMBRIERES", - "center": "POINT (783699.2440904933027923 2406189.7255759104155004)", - "surface": 10000000, - "canton": null, - "numero_insee": "51008" - } - }, - { - "pk": 29082, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ANGLURE", - "center": "POINT (709201.8260344020090997 2399751.6970062144100666)", - "surface": 8090000, - "canton": null, - "numero_insee": "51009" - } - }, - { - "pk": 7881, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ANGLUZELLES-ET-COURCELLES", - "center": "POINT (715631.2054711640812457 2408612.3872446874156594)", - "surface": 13860000, - "canton": null, - "numero_insee": "51010" - } - }, - { - "pk": 32616, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ANTHENAY", - "center": "POINT (702077.8237363854423165 2461032.8563572689890862)", - "surface": 6620000, - "canton": null, - "numero_insee": "51012" - } - }, - { - "pk": 24302, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AOUGNY", - "center": "POINT (701232.4166466816095635 2466329.1425692359916866)", - "surface": 7500000, - "canton": null, - "numero_insee": "51013" - } - }, - { - "pk": 24591, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ARCIS-LE-PONSART", - "center": "POINT (698496.1009056464536116 2470408.6100669899024069)", - "surface": 15510000, - "canton": null, - "numero_insee": "51014" - } - }, - { - "pk": 12877, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ARGERS", - "center": "POINT (784282.8267518950160593 2455027.8810118916444480)", - "surface": 6800000, - "canton": null, - "numero_insee": "51015" - } - }, - { - "pk": 18266, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ARRIGNY", - "center": "POINT (773915.3040028265677392 2403504.3929682970046997)", - "surface": 16070000, - "canton": null, - "numero_insee": "51016" - } - }, - { - "pk": 5573, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ARZILLIERES-NEUVILLE", - "center": "POINT (766875.0743834308814257 2407647.2841312922537327)", - "surface": 12230000, - "canton": null, - "numero_insee": "51017" - } - }, - { - "pk": 27875, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ATHIS", - "center": "POINT (730916.9578673214418814 2446868.1150549594312906)", - "surface": 16960000, - "canton": null, - "numero_insee": "51018" - } - }, - { - "pk": 28964, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AUBERIVE", - "center": "POINT (751245.9390829390613362 2468555.1677768221125007)", - "surface": 27660000, - "canton": null, - "numero_insee": "51019" - } - }, - { - "pk": 13023, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AUBILLY", - "center": "POINT (710713.2862321961438283 2469311.4055885490961373)", - "surface": 3190000, - "canton": null, - "numero_insee": "51020" - } - }, - { - "pk": 6913, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AULNAY-L'AITRE", - "center": "POINT (763903.5900718478951603 2427535.6743245241232216)", - "surface": 8330000, - "canton": null, - "numero_insee": "51022" - } - }, - { - "pk": 36088, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AULNAY-SUR-MARNE", - "center": "POINT (736929.0240545987617224 2445918.5558842048048973)", - "surface": 9030000, - "canton": null, - "numero_insee": "51023" - } - }, - { - "pk": 7787, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AUMENANCOURT", - "center": "POINT (725056.7406232078792527 2488845.5556079940870404)", - "surface": 12910000, - "canton": null, - "numero_insee": "51025" - } - }, - { - "pk": 30133, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AUVE", - "center": "POINT (771914.8130558973643929 2450319.2603124845772982)", - "surface": 23290000, - "canton": null, - "numero_insee": "51027" - } - }, - { - "pk": 9886, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AVENAY-VAL-D'OR", - "center": "POINT (724948.8700075722299516 2454422.4431557818315923)", - "surface": 12410000, - "canton": null, - "numero_insee": "51028" - } - }, - { - "pk": 12746, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AVIZE", - "center": "POINT (722244.9345215740613639 2442891.8478891476988792)", - "surface": 7620000, - "canton": null, - "numero_insee": "51029" - } - }, - { - "pk": 33249, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "AY", - "center": "POINT (721359.5007997935172170 2452890.9722005440853536)", - "surface": 10620000, - "canton": null, - "numero_insee": "51030" - } - }, - { - "pk": 5026, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BACONNES", - "center": "POINT (746075.3045602738857269 2464708.6813718560151756)", - "surface": 21200000, - "canton": null, - "numero_insee": "51031" - } - }, - { - "pk": 8633, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BAGNEUX", - "center": "POINT (710327.9788216078886762 2396759.1366169247776270)", - "surface": 13880000, - "canton": null, - "numero_insee": "51032" - } - }, - { - "pk": 31285, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE BAIZIL", - "center": "POINT (706834.9062799726380035 2442861.1593528222292662)", - "surface": 14630000, - "canton": null, - "numero_insee": "51033" - } - }, - { - "pk": 34434, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BANNAY", - "center": "POINT (701646.2236345040146261 2429308.0861839517019689)", - "surface": 7150000, - "canton": null, - "numero_insee": "51034" - } - }, - { - "pk": 3951, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BANNES", - "center": "POINT (716813.1309274218510836 2422632.0761539991945028)", - "surface": 23370000, - "canton": null, - "numero_insee": "51035" - } - }, - { - "pk": 7516, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BARBONNE-FAYEL", - "center": "POINT (699533.8849897043546662 2406974.8535647881217301)", - "surface": 24440000, - "canton": null, - "numero_insee": "51036" - } - }, - { - "pk": 10572, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BASLIEUX-LES-FISMES", - "center": "POINT (700202.1702858065254986 2481630.2471970184706151)", - "surface": 5610000, - "canton": null, - "numero_insee": "51037" - } - }, - { - "pk": 4223, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BASLIEUX-SOUS-CHATILLON", - "center": "POINT (706496.5010731895454228 2459169.0711785033345222)", - "surface": 5890000, - "canton": null, - "numero_insee": "51038" - } - }, - { - "pk": 29682, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BASSU", - "center": "POINT (772999.7408577041933313 2428713.9950085007585585)", - "surface": 10290000, - "canton": null, - "numero_insee": "51039" - } - }, - { - "pk": 13622, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BASSUET", - "center": "POINT (771429.4955973383039236 2425098.1429172181524336)", - "surface": 8360000, - "canton": null, - "numero_insee": "51040" - } - }, - { - "pk": 23142, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BAUDEMENT", - "center": "POINT (705608.0391177267301828 2398720.5232977005653083)", - "surface": 8580000, - "canton": null, - "numero_insee": "51041" - } - }, - { - "pk": 18870, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BAYE", - "center": "POINT (704441.9853661274537444 2430032.2571383402682841)", - "surface": 18010000, - "canton": null, - "numero_insee": "51042" - } - }, - { - "pk": 34366, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BAZANCOURT", - "center": "POINT (733475.0468988639768213 2487316.0799964889883995)", - "surface": 11710000, - "canton": null, - "numero_insee": "51043" - } - }, - { - "pk": 11674, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BEAUMONT-SUR-VESLE", - "center": "POINT (734461.7852407642640173 2465410.4164190371520817)", - "surface": 5710000, - "canton": null, - "numero_insee": "51044" - } - }, - { - "pk": 7099, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BEAUNAY", - "center": "POINT (713631.4332673748722300 2432011.4755616327747703)", - "surface": 3560000, - "canton": null, - "numero_insee": "51045" - } - }, - { - "pk": 37653, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BELVAL-SOUS-CHATILLON", - "center": "POINT (710795.6127108295913786 2459605.7920798677951097)", - "surface": 7170000, - "canton": null, - "numero_insee": "51048" - } - }, - { - "pk": 29408, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BERGERES-LES-VERTUS", - "center": "POINT (722639.4249860958661884 2431787.7304544225335121)", - "surface": 18410000, - "canton": null, - "numero_insee": "51049" - } - }, - { - "pk": 9524, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BERGERES-SOUS-MONTMIRAIL", - "center": "POINT (692550.0211716294288635 2428130.2858100635930896)", - "surface": 10660000, - "canton": null, - "numero_insee": "51050" - } - }, - { - "pk": 31415, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BERMERICOURT", - "center": "POINT (719973.4271869116928428 2486500.9329953957349062)", - "surface": 8100000, - "canton": null, - "numero_insee": "51051" - } - }, - { - "pk": 8661, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BERRU", - "center": "POINT (732966.5676662654150277 2476504.8762455964460969)", - "surface": 13660000, - "canton": null, - "numero_insee": "51052" - } - }, - { - "pk": 24350, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BERZIEUX", - "center": "POINT (779892.3106852720957249 2465297.1448515779338777)", - "surface": 11680000, - "canton": null, - "numero_insee": "51053" - } - }, - { - "pk": 11610, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BETHENIVILLE", - "center": "POINT (747554.4374579619616270 2479030.5029872735030949)", - "surface": 17710000, - "canton": null, - "numero_insee": "51054" - } - }, - { - "pk": 29765, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BETHENY", - "center": "POINT (725441.9006947628222406 2478842.4732004716061056)", - "surface": 20030000, - "canton": null, - "numero_insee": "51055" - } - }, - { - "pk": 3379, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BETHON", - "center": "POINT (694068.5803440127056092 2402425.4180824593640864)", - "surface": 15390000, - "canton": null, - "numero_insee": "51056" - } - }, - { - "pk": 5325, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BETTANCOURT-LA-LONGUE", - "center": "POINT (787007.4002053156727925 2428933.6487997546792030)", - "surface": 6130000, - "canton": null, - "numero_insee": "51057" - } - }, - { - "pk": 24229, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BEZANNES", - "center": "POINT (720511.2735517480177805 2470295.1365188187919557)", - "surface": 8060000, - "canton": null, - "numero_insee": "51058" - } - }, - { - "pk": 28325, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BIGNICOURT-SUR-MARNE", - "center": "POINT (767342.1121346470899880 2411553.9807364298030734)", - "surface": 2840000, - "canton": null, - "numero_insee": "51059" - } - }, - { - "pk": 27069, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BIGNICOURT-SUR-SAULX", - "center": "POINT (780176.6688388027250767 2420269.4277968127280474)", - "surface": 11050000, - "canton": null, - "numero_insee": "51060" - } - }, - { - "pk": 12385, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BILLY-LE-GRAND", - "center": "POINT (738525.3666200363077223 2458240.2644896805286407)", - "surface": 7300000, - "canton": null, - "numero_insee": "51061" - } - }, - { - "pk": 16924, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BINARVILLE", - "center": "POINT (786915.2086904923198745 2474863.2834866335615516)", - "surface": 16630000, - "canton": null, - "numero_insee": "51062" - } - }, - { - "pk": 24877, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BINSON-ET-ORQUIGNY", - "center": "POINT (706120.0216574028600007 2456364.0423485133796930)", - "surface": 3350000, - "canton": null, - "numero_insee": "51063" - } - }, - { - "pk": 25811, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BISSEUIL", - "center": "POINT (727877.7749007968232036 2451245.2102275663055480)", - "surface": 10010000, - "canton": null, - "numero_insee": "51064" - } - }, - { - "pk": 17476, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BLACY", - "center": "POINT (760500.3679135908605531 2415898.7093063374049962)", - "surface": 17430000, - "canton": null, - "numero_insee": "51065" - } - }, - { - "pk": 13167, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BLAISE-SOUS-ARZILLIERES", - "center": "POINT (765650.4389512249035761 2410438.7931811511516571)", - "surface": 6880000, - "canton": null, - "numero_insee": "51066" - } - }, - { - "pk": 21192, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BLESME", - "center": "POINT (779499.3011792339384556 2417561.7850499907508492)", - "surface": 6630000, - "canton": null, - "numero_insee": "51068" - } - }, - { - "pk": 13021, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BLIGNY", - "center": "POINT (711030.4336882941424847 2467312.8005802221596241)", - "surface": 2630000, - "canton": null, - "numero_insee": "51069" - } - }, - { - "pk": 30758, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOISSY-LE-REPOS", - "center": "POINT (695750.2708555331919342 2428357.5232559265568852)", - "surface": 15260000, - "canton": null, - "numero_insee": "51070" - } - }, - { - "pk": 3993, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOUCHY-SAINT-GENEST", - "center": "POINT (684923.0718699382850900 2407051.2860094229690731)", - "surface": 19600000, - "canton": null, - "numero_insee": "51071" - } - }, - { - "pk": 36090, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOUILLY", - "center": "POINT (713727.7451255396008492 2467836.0078988759778440)", - "surface": 5650000, - "canton": null, - "numero_insee": "51072" - } - }, - { - "pk": 10081, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOULEUSE", - "center": "POINT (709598.2271153321489692 2471003.0460868654772639)", - "surface": 4040000, - "canton": null, - "numero_insee": "51073" - } - }, - { - "pk": 25018, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOULT-SUR-SUIPPE", - "center": "POINT (731062.6467617884045467 2488596.3963833069428802)", - "surface": 19720000, - "canton": null, - "numero_insee": "51074" - } - }, - { - "pk": 7419, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOURGOGNE", - "center": "POINT (726086.1991241263458505 2485452.1491427104920149)", - "surface": 14420000, - "canton": null, - "numero_insee": "51075" - } - }, - { - "pk": 24889, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOURSAULT", - "center": "POINT (709764.5601396856363863 2451391.6521058287471533)", - "surface": 16550000, - "canton": null, - "numero_insee": "51076" - } - }, - { - "pk": 33834, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOUVANCOURT", - "center": "POINT (710691.9745462103746831 2483620.3916076314635575)", - "surface": 13070000, - "canton": null, - "numero_insee": "51077" - } - }, - { - "pk": 25059, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOUY", - "center": "POINT (748048.8004554349463433 2456219.9131304300390184)", - "surface": 22630000, - "canton": null, - "numero_insee": "51078" - } - }, - { - "pk": 13880, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BOUZY", - "center": "POINT (731643.4477931972360238 2455580.0468669575639069)", - "surface": 6240000, - "canton": null, - "numero_insee": "51079" - } - }, - { - "pk": 12481, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BRANDONVILLERS", - "center": "POINT (764630.7862790301442146 2400923.4596669399179518)", - "surface": 11720000, - "canton": null, - "numero_insee": "51080" - } - }, - { - "pk": 26791, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BRANSCOURT", - "center": "POINT (708056.6381497167749330 2475793.0606229929253459)", - "surface": 3720000, - "canton": null, - "numero_insee": "51081" - } - }, - { - "pk": 13744, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BRAUX-SAINTE-COHIERE", - "center": "POINT (781556.4635124963242561 2457906.5085693043656647)", - "surface": 6240000, - "canton": null, - "numero_insee": "51082" - } - }, - { - "pk": 8743, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BRAUX-SAINT-REMY", - "center": "POINT (785024.2623079591430724 2450231.0356415291316807)", - "surface": 9760000, - "canton": null, - "numero_insee": "51083" - } - }, - { - "pk": 6357, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BREBAN", - "center": "POINT (751631.1147273277165368 2399812.0109113939106464)", - "surface": 10730000, - "canton": null, - "numero_insee": "51084" - } - }, - { - "pk": 25522, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE BREUIL", - "center": "POINT (696222.6557461734628305 2443471.6914220410399139)", - "surface": 15980000, - "canton": null, - "numero_insee": "51085" - } - }, - { - "pk": 6151, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BREUIL", - "center": "POINT (704025.5213401435175911 2479161.0582339223474264)", - "surface": 6530000, - "canton": null, - "numero_insee": "51086" - } - }, - { - "pk": 11818, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BREUVERY-SUR-COOLE", - "center": "POINT (743967.6366232126019895 2430167.7976574026979506)", - "surface": 10090000, - "canton": null, - "numero_insee": "51087" - } - }, - { - "pk": 30791, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BRIMONT", - "center": "POINT (723600.0903740832582116 2483629.8894022847525775)", - "surface": 12680000, - "canton": null, - "numero_insee": "51088" - } - }, - { - "pk": 12163, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BROUILLET", - "center": "POINT (701994.7171772517031059 2470838.5155051439069211)", - "surface": 4540000, - "canton": null, - "numero_insee": "51089" - } - }, - { - "pk": 26239, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BROUSSY-LE-GRAND", - "center": "POINT (712714.0160502175567672 2422197.0215318663977087)", - "surface": 21160000, - "canton": null, - "numero_insee": "51090" - } - }, - { - "pk": 3844, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BROUSSY-LE-PETIT", - "center": "POINT (709915.6953350040130317 2421773.0117079741321504)", - "surface": 11720000, - "canton": null, - "numero_insee": "51091" - } - }, - { - "pk": 32884, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BROYES", - "center": "POINT (704435.2254805688280612 2419024.6914526498876512)", - "surface": 15250000, - "canton": null, - "numero_insee": "51092" - } - }, - { - "pk": 37993, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BRUGNY-VAUDANCOURT", - "center": "POINT (711530.0685592008521780 2443801.5789423948153853)", - "surface": 19890000, - "canton": null, - "numero_insee": "51093" - } - }, - { - "pk": 6298, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BRUSSON", - "center": "POINT (774287.5548010627971962 2418517.9953376594930887)", - "surface": 4860000, - "canton": null, - "numero_insee": "51094" - } - }, - { - "pk": 36592, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE BUISSON", - "center": "POINT (777575.9240405354648829 2420147.1588900554925203)", - "surface": 6820000, - "canton": null, - "numero_insee": "51095" - } - }, - { - "pk": 29467, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BUSSY-LE-CHATEAU", - "center": "POINT (760480.7921526342397556 2453423.8855326822958887)", - "surface": 23920000, - "canton": null, - "numero_insee": "51097" - } - }, - { - "pk": 37547, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BUSSY-LE-REPOS", - "center": "POINT (776235.1399984492454678 2436546.8897729096934199)", - "surface": 22670000, - "canton": null, - "numero_insee": "51098" - } - }, - { - "pk": 14091, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "BUSSY-LETTREE", - "center": "POINT (740714.1473698687041178 2424436.2370687299408019)", - "surface": 33540000, - "canton": null, - "numero_insee": "51099" - } - }, - { - "pk": 31923, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CAURE", - "center": "POINT (705596.9050949586089700 2435445.6983229359611869)", - "surface": 8610000, - "canton": null, - "numero_insee": "51100" - } - }, - { - "pk": 5953, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CAUREL", - "center": "POINT (731536.0063122244318947 2479994.9569548708386719)", - "surface": 9660000, - "canton": null, - "numero_insee": "51101" - } - }, - { - "pk": 37410, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CAUROY-LES-HERMONVILLE", - "center": "POINT (715679.5062969037098810 2485463.8510835794731975)", - "surface": 10200000, - "canton": null, - "numero_insee": "51102" - } - }, - { - "pk": 32305, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CELLE-SOUS-CHANTEMERLE", - "center": "POINT (699479.6028073661727831 2401570.6210194304585457)", - "surface": 12080000, - "canton": null, - "numero_insee": "51103" - } - }, - { - "pk": 18127, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CERNAY-EN-DORMOIS", - "center": "POINT (777331.0771568742347881 2472279.8224692731164396)", - "surface": 25490000, - "canton": null, - "numero_insee": "51104" - } - }, - { - "pk": 35285, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CERNAY-LES-REIMS", - "center": "POINT (729183.1095823687501252 2474271.3078858852386475)", - "surface": 16470000, - "canton": null, - "numero_insee": "51105" - } - }, - { - "pk": 9361, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CERNON", - "center": "POINT (747188.3129821381298825 2427993.7088227318599820)", - "surface": 16050000, - "canton": null, - "numero_insee": "51106" - } - }, - { - "pk": 37491, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAINTRIX-BIERGES", - "center": "POINT (729522.3443942022277042 2434347.8856613351963460)", - "surface": 10330000, - "canton": null, - "numero_insee": "51107" - } - }, - { - "pk": 16538, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHALONS-EN-CHAMPAGNE", - "center": "POINT (749566.3203936574282125 2442523.7382315923459828)", - "surface": 26020000, - "canton": null, - "numero_insee": "51108" - } - }, - { - "pk": 7305, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHALONS-SUR-VESLE", - "center": "POINT (715246.3042236027540639 2477555.1418975684791803)", - "surface": 4470000, - "canton": null, - "numero_insee": "51109" - } - }, - { - "pk": 13342, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHALTRAIT", - "center": "POINT (714076.5523877162486315 2438519.6343810749240220)", - "surface": 6600000, - "canton": null, - "numero_insee": "51110" - } - }, - { - "pk": 28330, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMBRECY", - "center": "POINT (708640.9301395263755694 2465891.6251061931252480)", - "surface": 6180000, - "canton": null, - "numero_insee": "51111" - } - }, - { - "pk": 13300, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMERY", - "center": "POINT (718156.6085307649336755 2464771.5807616719976068)", - "surface": 5310000, - "canton": null, - "numero_insee": "51112" - } - }, - { - "pk": 28556, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMPAUBERT", - "center": "POINT (704816.7810215073404834 2433037.4652330949902534)", - "surface": 12680000, - "canton": null, - "numero_insee": "51113" - } - }, - { - "pk": 9720, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMPFLEURY", - "center": "POINT (722634.5709392601856962 2467711.4827632051892579)", - "surface": 4000000, - "canton": null, - "numero_insee": "51115" - } - }, - { - "pk": 35009, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMPGUYON", - "center": "POINT (690218.0210206194315106 2419904.9438821682706475)", - "surface": 16780000, - "canton": null, - "numero_insee": "51116" - } - }, - { - "pk": 18622, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMPIGNEUL-CHAMPAGNE", - "center": "POINT (735058.5194978395011276 2442300.2489000102505088)", - "surface": 29700000, - "canton": null, - "numero_insee": "51117" - } - }, - { - "pk": 9687, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMPIGNY", - "center": "POINT (718064.0322963158832863 2475677.8387752152048051)", - "surface": 4430000, - "canton": null, - "numero_insee": "51118" - } - }, - { - "pk": 19127, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMPILLON", - "center": "POINT (719738.1732934537576512 2455278.7892280835658312)", - "surface": 1470000, - "canton": null, - "numero_insee": "51119" - } - }, - { - "pk": 29093, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAMPVOISY", - "center": "POINT (694186.7889861093135551 2459364.9560838467441499)", - "surface": 9180000, - "canton": null, - "numero_insee": "51121" - } - }, - { - "pk": 10648, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHANGY", - "center": "POINT (772151.2632491693366319 2422602.5879914383403957)", - "surface": 6190000, - "canton": null, - "numero_insee": "51122" - } - }, - { - "pk": 22821, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHANTEMERLE", - "center": "POINT (696465.8503679573768750 2402946.0708722416311502)", - "surface": 8360000, - "canton": null, - "numero_insee": "51124" - } - }, - { - "pk": 34036, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAPELAINE", - "center": "POINT (758234.4258151596877724 2399968.3187464815564454)", - "surface": 9190000, - "canton": null, - "numero_insee": "51125" - } - }, - { - "pk": 8467, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CHAPELLE-FELCOURT", - "center": "POINT (776904.9566331470850855 2451862.8368600229732692)", - "surface": 9810000, - "canton": null, - "numero_insee": "51126" - } - }, - { - "pk": 34044, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CHAPELLE-LASSON", - "center": "POINT (709158.5496916769770905 2404854.9020301718264818)", - "surface": 15220000, - "canton": null, - "numero_insee": "51127" - } - }, - { - "pk": 36442, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CHAPELLE-SOUS-ORBAIS", - "center": "POINT (701389.2892120946198702 2436010.4381459406577051)", - "surface": 14710000, - "canton": null, - "numero_insee": "51128" - } - }, - { - "pk": 24780, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHARLEVILLE", - "center": "POINT (697094.2885125171160325 2423265.4324322850443423)", - "surface": 17450000, - "canton": null, - "numero_insee": "51129" - } - }, - { - "pk": 20156, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHARMONT", - "center": "POINT (785871.6881490120431408 2433026.7332395468838513)", - "surface": 22850000, - "canton": null, - "numero_insee": "51130" - } - }, - { - "pk": 16550, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES CHARMONTOIS", - "center": "POINT (794883.9490706135984510 2444011.0918597015552223)", - "surface": 14810000, - "canton": null, - "numero_insee": "51132" - } - }, - { - "pk": 8293, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE CHATELIER", - "center": "POINT (789708.2099622238893062 2440764.7072176826186478)", - "surface": 10720000, - "canton": null, - "numero_insee": "51133" - } - }, - { - "pk": 13430, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHATELRAOULD-SAINT-LOUVENT", - "center": "POINT (760556.6432246845215559 2409294.6121612987481058)", - "surface": 16870000, - "canton": null, - "numero_insee": "51134" - } - }, - { - "pk": 27288, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHATILLON-SUR-BROUE", - "center": "POINT (774572.8823989627417177 2396805.2883758479729295)", - "surface": 6630000, - "canton": null, - "numero_insee": "51135" - } - }, - { - "pk": 24535, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHATILLON-SUR-MARNE", - "center": "POINT (704413.0893907536519691 2457050.0310253109782934)", - "surface": 11550000, - "canton": null, - "numero_insee": "51136" - } - }, - { - "pk": 19788, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHATILLON-SUR-MORIN", - "center": "POINT (692188.6591137235518545 2411715.9753051353618503)", - "surface": 18050000, - "canton": null, - "numero_insee": "51137" - } - }, - { - "pk": 23737, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHATRICES", - "center": "POINT (790811.4429598167771474 2452181.7419999721460044)", - "surface": 19890000, - "canton": null, - "numero_insee": "51138" - } - }, - { - "pk": 19578, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAUDEFONTAINE", - "center": "POINT (785051.6729809793177992 2458736.8854950647801161)", - "surface": 13070000, - "canton": null, - "numero_insee": "51139" - } - }, - { - "pk": 20382, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHAUMUZY", - "center": "POINT (711763.9406465839128941 2463416.4878772594965994)", - "surface": 19950000, - "canton": null, - "numero_insee": "51140" - } - }, - { - "pk": 26444, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CHAUSSEE-SUR-MARNE", - "center": "POINT (761986.2300794096663594 2429420.6252256906591356)", - "surface": 22400000, - "canton": null, - "numero_insee": "51141" - } - }, - { - "pk": 3518, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE CHEMIN", - "center": "POINT (793349.6966485151788220 2447900.5801540017127991)", - "surface": 6250000, - "canton": null, - "numero_insee": "51143" - } - }, - { - "pk": 17475, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHEMINON", - "center": "POINT (789992.9560172881465405 2419152.4425061359070241)", - "surface": 27640000, - "canton": null, - "numero_insee": "51144" - } - }, - { - "pk": 14191, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHENAY", - "center": "POINT (715631.2471384233795106 2479359.5598091636784375)", - "surface": 3920000, - "canton": null, - "numero_insee": "51145" - } - }, - { - "pk": 21948, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHENIERS", - "center": "POINT (739935.4242679692106321 2433635.8676884332671762)", - "surface": 15380000, - "canton": null, - "numero_insee": "51146" - } - }, - { - "pk": 24937, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CHEPPE", - "center": "POINT (757288.2872422696091235 2452295.9555145753547549)", - "surface": 24030000, - "canton": null, - "numero_insee": "51147" - } - }, - { - "pk": 33984, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHEPPES-LA-PRAIRIE", - "center": "POINT (754607.3019793464336544 2426355.7146299504674971)", - "surface": 20020000, - "canton": null, - "numero_insee": "51148" - } - }, - { - "pk": 24540, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHEPY", - "center": "POINT (755223.3548396966652945 2436267.6773000704124570)", - "surface": 8710000, - "canton": null, - "numero_insee": "51149" - } - }, - { - "pk": 35127, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHERVILLE", - "center": "POINT (732821.4865063158795238 2446484.0355075960978866)", - "surface": 3760000, - "canton": null, - "numero_insee": "51150" - } - }, - { - "pk": 33614, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHICHEY", - "center": "POINT (704409.8038970703491941 2410218.3996781725436449)", - "surface": 7470000, - "canton": null, - "numero_insee": "51151" - } - }, - { - "pk": 27691, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CHOUILLY", - "center": "POINT (722002.3345002185087651 2447893.1192353568039834)", - "surface": 16100000, - "canton": null, - "numero_insee": "51153" - } - }, - { - "pk": 36321, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CLAMANGES", - "center": "POINT (728282.7677517014089972 2427132.4710825467482209)", - "surface": 23760000, - "canton": null, - "numero_insee": "51154" - } - }, - { - "pk": 33985, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CLESLES", - "center": "POINT (710053.2475474807433784 2393754.6885801614262164)", - "surface": 13290000, - "canton": null, - "numero_insee": "51155" - } - }, - { - "pk": 4388, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CLOYES-SUR-MARNE", - "center": "POINT (769862.4411016510566697 2409373.9434302602894604)", - "surface": 6220000, - "canton": null, - "numero_insee": "51156" - } - }, - { - "pk": 25253, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COIZARD-JOCHES", - "center": "POINT (712176.3620252766413614 2426595.4650819743983448)", - "surface": 10980000, - "canton": null, - "numero_insee": "51157" - } - }, - { - "pk": 25113, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAL-DES-MARAIS", - "center": "POINT (719780.9909453798318282 2426659.9979080967605114)", - "surface": 39600000, - "canton": null, - "numero_insee": "51158" - } - }, - { - "pk": 7222, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COMPERTRIX", - "center": "POINT (745798.1135734579293057 2438488.9816527175717056)", - "surface": 4830000, - "canton": null, - "numero_insee": "51160" - } - }, - { - "pk": 36095, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CONDE-SUR-MARNE", - "center": "POINT (734780.9915980980731547 2451403.9445730107836425)", - "surface": 12290000, - "canton": null, - "numero_insee": "51161" - } - }, - { - "pk": 6596, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CONFLANS-SUR-SEINE", - "center": "POINT (699433.7975564231164753 2395165.7316052103415132)", - "surface": 6180000, - "canton": null, - "numero_insee": "51162" - } - }, - { - "pk": 37248, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CONGY", - "center": "POINT (708735.2583498632302508 2431169.4034039704129100)", - "surface": 17610000, - "canton": null, - "numero_insee": "51163" - } - }, - { - "pk": 27178, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CONNANTRAY-VAUREFROY", - "center": "POINT (727268.7991822513286024 2416916.8692234903573990)", - "surface": 28730000, - "canton": null, - "numero_insee": "51164" - } - }, - { - "pk": 9264, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CONNANTRE", - "center": "POINT (715863.4646222697338089 2416619.8966644457541406)", - "surface": 28490000, - "canton": null, - "numero_insee": "51165" - } - }, - { - "pk": 24938, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CONTAULT", - "center": "POINT (779725.2874193092575297 2437977.6247393558733165)", - "surface": 9550000, - "canton": null, - "numero_insee": "51166" - } - }, - { - "pk": 28671, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COOLE", - "center": "POINT (751180.1370419613085687 2417520.4961643316783011)", - "surface": 30100000, - "canton": null, - "numero_insee": "51167" - } - }, - { - "pk": 19940, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COOLUS", - "center": "POINT (745513.2604126187507063 2436685.3460308331996202)", - "surface": 13170000, - "canton": null, - "numero_insee": "51168" - } - }, - { - "pk": 25282, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORBEIL", - "center": "POINT (754938.3096223528264090 2399239.7502941968850791)", - "surface": 9590000, - "canton": null, - "numero_insee": "51169" - } - }, - { - "pk": 35689, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORFELIX", - "center": "POINT (699867.1748884943081066 2426691.2434759964235127)", - "surface": 8450000, - "canton": null, - "numero_insee": "51170" - } - }, - { - "pk": 25041, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORMICY", - "center": "POINT (713959.8731736454647034 2487650.6509196022525430)", - "surface": 24320000, - "canton": null, - "numero_insee": "51171" - } - }, - { - "pk": 10751, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORMONTREUIL", - "center": "POINT (725115.6140957783209160 2470134.1079701948910952)", - "surface": 4690000, - "canton": null, - "numero_insee": "51172" - } - }, - { - "pk": 32131, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORMOYEUX", - "center": "POINT (715112.5521064051426947 2457941.3031281251460314)", - "surface": 2160000, - "canton": null, - "numero_insee": "51173" - } - }, - { - "pk": 11000, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORRIBERT", - "center": "POINT (704765.8873295962112024 2439041.0741022643633187)", - "surface": 9750000, - "canton": null, - "numero_insee": "51174" - } - }, - { - "pk": 32473, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORROBERT", - "center": "POINT (693176.7315087210154161 2436841.4737219815142453)", - "surface": 14310000, - "canton": null, - "numero_insee": "51175" - } - }, - { - "pk": 8496, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CORROY", - "center": "POINT (719298.6880630754167214 2412746.3579483567737043)", - "surface": 19850000, - "canton": null, - "numero_insee": "51176" - } - }, - { - "pk": 7786, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COULOMMES-LA-MONTAGNE", - "center": "POINT (714702.0005998716223985 2470946.2797725819982588)", - "surface": 2760000, - "canton": null, - "numero_insee": "51177" - } - }, - { - "pk": 8301, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COUPETZ", - "center": "POINT (747908.3271364129614085 2425698.2690542922355235)", - "surface": 10550000, - "canton": null, - "numero_insee": "51178" - } - }, - { - "pk": 11942, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COUPEVILLE", - "center": "POINT (767630.8174901189049706 2436373.4197529326193035)", - "surface": 30450000, - "canton": null, - "numero_insee": "51179" - } - }, - { - "pk": 8596, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURCELLES-SAPICOURT", - "center": "POINT (709560.0383849103236571 2475505.6183872586116195)", - "surface": 3860000, - "canton": null, - "numero_insee": "51181" - } - }, - { - "pk": 5825, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURCEMAIN", - "center": "POINT (717677.4617142595816404 2403326.0547722694464028)", - "surface": 9990000, - "canton": null, - "numero_insee": "51182" - } - }, - { - "pk": 34824, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURCY", - "center": "POINT (721416.6926017714431509 2481510.0113955698907375)", - "surface": 15320000, - "canton": null, - "numero_insee": "51183" - } - }, - { - "pk": 20864, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURDEMANGES", - "center": "POINT (760040.1318516219034791 2411191.5320277586579323)", - "surface": 19390000, - "canton": null, - "numero_insee": "51184" - } - }, - { - "pk": 3522, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURGIVAUX", - "center": "POINT (684970.6430202048504725 2413255.9893760373815894)", - "surface": 10740000, - "canton": null, - "numero_insee": "51185" - } - }, - { - "pk": 24496, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURJEONNET", - "center": "POINT (709679.0824280208908021 2426073.9426340986974537)", - "surface": 5490000, - "canton": null, - "numero_insee": "51186" - } - }, - { - "pk": 10080, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURLANDON", - "center": "POINT (701710.6495464760810137 2480742.4577723117545247)", - "surface": 3480000, - "canton": null, - "numero_insee": "51187" - } - }, - { - "pk": 11134, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURMAS", - "center": "POINT (714837.7183511035982519 2466744.7129302937537432)", - "surface": 2850000, - "canton": null, - "numero_insee": "51188" - } - }, - { - "pk": 8184, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURTAGNON", - "center": "POINT (717480.8322877474129200 2461863.9546135202981532)", - "surface": 3960000, - "canton": null, - "numero_insee": "51190" - } - }, - { - "pk": 32765, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURTEMONT", - "center": "POINT (778511.1463035573251545 2462983.8520550997927785)", - "surface": 10710000, - "canton": null, - "numero_insee": "51191" - } - }, - { - "pk": 5750, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURTHIEZY", - "center": "POINT (692359.3916815890697762 2450643.7571171461604536)", - "surface": 6020000, - "canton": null, - "numero_insee": "51192" - } - }, - { - "pk": 32154, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURTISOLS", - "center": "POINT (759857.9717187744099647 2444312.5316393584944308)", - "surface": 65850000, - "canton": null, - "numero_insee": "51193" - } - }, - { - "pk": 35532, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COURVILLE", - "center": "POINT (699851.9678687207633629 2475723.5093043562956154)", - "surface": 12030000, - "canton": null, - "numero_insee": "51194" - } - }, - { - "pk": 28619, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "COUVROT", - "center": "POINT (764760.3757399398600683 2420938.4619220769964159)", - "surface": 8040000, - "canton": null, - "numero_insee": "51195" - } - }, - { - "pk": 35855, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CRAMANT", - "center": "POINT (721831.1024861001642421 2444489.4021988706663251)", - "surface": 5380000, - "canton": null, - "numero_insee": "51196" - } - }, - { - "pk": 7252, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA CROIX-EN-CHAMPAGNE", - "center": "POINT (769875.2256210503401235 2454804.8397868899628520)", - "surface": 16570000, - "canton": null, - "numero_insee": "51197" - } - }, - { - "pk": 35776, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CRUGNY", - "center": "POINT (701870.0673147558700293 2473739.3272937186993659)", - "surface": 12620000, - "canton": null, - "numero_insee": "51198" - } - }, - { - "pk": 9713, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CUCHERY", - "center": "POINT (708792.7503888797946274 2459788.9356709662824869)", - "surface": 6910000, - "canton": null, - "numero_insee": "51199" - } - }, - { - "pk": 7827, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CUIS", - "center": "POINT (719318.5732489121146500 2445768.9373214188963175)", - "surface": 8360000, - "canton": null, - "numero_insee": "51200" - } - }, - { - "pk": 30072, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CUISLES", - "center": "POINT (705188.1087992133107036 2460058.5672301943413913)", - "surface": 2930000, - "canton": null, - "numero_insee": "51201" - } - }, - { - "pk": 21036, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CUMIERES", - "center": "POINT (715647.6576773345004767 2453843.1474830405786633)", - "surface": 2940000, - "canton": null, - "numero_insee": "51202" - } - }, - { - "pk": 33823, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "CUPERLY", - "center": "POINT (754372.9437501046340913 2453872.1790785528719425)", - "surface": 20890000, - "canton": null, - "numero_insee": "51203" - } - }, - { - "pk": 32133, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DAMERY", - "center": "POINT (712639.1049271947704256 2454618.1473189061507583)", - "surface": 15430000, - "canton": null, - "numero_insee": "51204" - } - }, - { - "pk": 3672, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DAMPIERRE-AU-TEMPLE", - "center": "POINT (750396.1501251129666343 2450836.3301011710427701)", - "surface": 10240000, - "canton": null, - "numero_insee": "51205" - } - }, - { - "pk": 37315, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DAMPIERRE-LE-CHATEAU", - "center": "POINT (780437.7753295722650364 2448290.6046925834380090)", - "surface": 11130000, - "canton": null, - "numero_insee": "51206" - } - }, - { - "pk": 30633, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DAMPIERRE-SUR-MOIVRE", - "center": "POINT (764152.5943312225863338 2433541.8722546249628067)", - "surface": 11500000, - "canton": null, - "numero_insee": "51208" - } - }, - { - "pk": 9590, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DIZY", - "center": "POINT (719451.5881231324747205 2453675.3020497169345617)", - "surface": 3190000, - "canton": null, - "numero_insee": "51210" - } - }, - { - "pk": 31538, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DOMMARTIN-DAMPIERRE", - "center": "POINT (781883.1263688036706299 2454807.2549030245281756)", - "surface": 8290000, - "canton": null, - "numero_insee": "51211" - } - }, - { - "pk": 24390, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DOMMARTIN-LETTREE", - "center": "POINT (743245.4701621060958132 2420955.3731082584708929)", - "surface": 32560000, - "canton": null, - "numero_insee": "51212" - } - }, - { - "pk": 12641, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DOMMARTIN-SOUS-HANS", - "center": "POINT (779427.0453611646080390 2461190.4933186178095639)", - "surface": 6410000, - "canton": null, - "numero_insee": "51213" - } - }, - { - "pk": 35691, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DOMMARTIN-VARIMONT", - "center": "POINT (778464.7769436787348241 2444971.5604924913495779)", - "surface": 23720000, - "canton": null, - "numero_insee": "51214" - } - }, - { - "pk": 24872, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DOMPREMY", - "center": "POINT (776696.7194001559400931 2417637.9329464291222394)", - "surface": 3660000, - "canton": null, - "numero_insee": "51215" - } - }, - { - "pk": 9410, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DONTRIEN", - "center": "POINT (751405.1579217377584428 2473359.6264975881204009)", - "surface": 12650000, - "canton": null, - "numero_insee": "51216" - } - }, - { - "pk": 33628, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DORMANS", - "center": "POINT (695647.7775428612949327 2452272.6628914573229849)", - "surface": 22580000, - "canton": null, - "numero_insee": "51217" - } - }, - { - "pk": 20303, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAL-DE-VIERE", - "center": "POINT (776914.9222628700081259 2427246.3813312863931060)", - "surface": 19170000, - "canton": null, - "numero_insee": "51218" - } - }, - { - "pk": 4265, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DROSNAY", - "center": "POINT (768345.0633934310171753 2399554.1418489813804626)", - "surface": 18640000, - "canton": null, - "numero_insee": "51219" - } - }, - { - "pk": 11427, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "DROUILLY", - "center": "POINT (759954.8699551376048476 2421197.7110594804398715)", - "surface": 2420000, - "canton": null, - "numero_insee": "51220" - } - }, - { - "pk": 23631, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ECLAIRES", - "center": "POINT (795252.5345070855692029 2447716.7143826577812433)", - "surface": 10930000, - "canton": null, - "numero_insee": "51222" - } - }, - { - "pk": 33242, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ECOLLEMONT", - "center": "POINT (777208.8374002500204369 2404533.1975398622453213)", - "surface": 2810000, - "canton": null, - "numero_insee": "51223" - } - }, - { - "pk": 24672, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ECRIENNES", - "center": "POINT (773034.5584222415927798 2412903.4335676035843790)", - "surface": 6350000, - "canton": null, - "numero_insee": "51224" - } - }, - { - "pk": 25072, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ECUEIL", - "center": "POINT (717646.1278944625519216 2465968.0278942827135324)", - "surface": 7020000, - "canton": null, - "numero_insee": "51225" - } - }, - { - "pk": 29414, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ECURY-LE-REPOS", - "center": "POINT (724201.5160958688938990 2424596.0992521517910063)", - "surface": 9990000, - "canton": null, - "numero_insee": "51226" - } - }, - { - "pk": 34163, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ECURY-SUR-COOLE", - "center": "POINT (747229.6119051678106189 2434898.7387635214254260)", - "surface": 18190000, - "canton": null, - "numero_insee": "51227" - } - }, - { - "pk": 25136, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ELISE-DAUCOURT", - "center": "POINT (784606.0783649306977168 2452328.8564951885491610)", - "surface": 15310000, - "canton": null, - "numero_insee": "51228" - } - }, - { - "pk": 36845, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "EPENSE", - "center": "POINT (782770.7541791147086769 2444608.0577574474737048)", - "surface": 11410000, - "canton": null, - "numero_insee": "51229" - } - }, - { - "pk": 34238, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "EPERNAY", - "center": "POINT (716681.3634175984188914 2449949.3424818823114038)", - "surface": 22830000, - "canton": null, - "numero_insee": "51230" - } - }, - { - "pk": 29257, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "L'EPINE", - "center": "POINT (754640.3877922901883721 2445969.2158095911145210)", - "surface": 30380000, - "canton": null, - "numero_insee": "51231" - } - }, - { - "pk": 37844, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "EPOYE", - "center": "POINT (738055.8555980665842071 2478149.1733104293234646)", - "surface": 15360000, - "canton": null, - "numero_insee": "51232" - } - }, - { - "pk": 12792, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ESCARDES", - "center": "POINT (687693.4870431980816647 2410777.2999453279189765)", - "surface": 14420000, - "canton": null, - "numero_insee": "51233" - } - }, - { - "pk": 28158, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ESCLAVOLLES-LUREY", - "center": "POINT (696926.2794330846518278 2395844.9833353962749243)", - "surface": 9500000, - "canton": null, - "numero_insee": "51234" - } - }, - { - "pk": 7853, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES ESSARTS-LES-SEZANNE", - "center": "POINT (695727.3319720069412142 2419251.1137534980662167)", - "surface": 16800000, - "canton": null, - "numero_insee": "51235" - } - }, - { - "pk": 33473, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES ESSARTS-LE-VICOMTE", - "center": "POINT (689618.3840063377283514 2407991.6480130050331354)", - "surface": 11260000, - "canton": null, - "numero_insee": "51236" - } - }, - { - "pk": 21627, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ESTERNAY", - "center": "POINT (691160.9302077197935432 2414909.4862342560663819)", - "surface": 31720000, - "canton": null, - "numero_insee": "51237" - } - }, - { - "pk": 33506, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ETOGES", - "center": "POINT (711216.4020309785846621 2433592.0700779561884701)", - "surface": 14650000, - "canton": null, - "numero_insee": "51238" - } - }, - { - "pk": 37075, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ETRECHY", - "center": "POINT (718428.3908370191929862 2432752.6566960457712412)", - "surface": 6690000, - "canton": null, - "numero_insee": "51239" - } - }, - { - "pk": 37084, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ETREPY", - "center": "POINT (781770.8178595062345266 2421083.5883075445890427)", - "surface": 7660000, - "canton": null, - "numero_insee": "51240" - } - }, - { - "pk": 32021, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "EUVY", - "center": "POINT (723887.0953632907476276 2414486.4905914864502847)", - "surface": 14380000, - "canton": null, - "numero_insee": "51241" - } - }, - { - "pk": 10373, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FAGNIERES", - "center": "POINT (744580.3653596508083865 2440479.9622544203884900)", - "surface": 19520000, - "canton": null, - "numero_insee": "51242" - } - }, - { - "pk": 10179, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FAUX-FRESNAY", - "center": "POINT (718845.9404245531186461 2407138.6256024204194546)", - "surface": 27060000, - "canton": null, - "numero_insee": "51243" - } - }, - { - "pk": 33492, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FAUX-VESIGNEUL", - "center": "POINT (750138.6320636128075421 2422314.9284532861784101)", - "surface": 39110000, - "canton": null, - "numero_insee": "51244" - } - }, - { - "pk": 12845, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FAVEROLLES-ET-COEMY", - "center": "POINT (705991.9210758932167664 2471472.7869480121880770)", - "surface": 5550000, - "canton": null, - "numero_insee": "51245" - } - }, - { - "pk": 31260, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FAVRESSE", - "center": "POINT (775209.4552505668252707 2416024.1363406451418996)", - "surface": 10330000, - "canton": null, - "numero_insee": "51246" - } - }, - { - "pk": 3422, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FEREBRIANGES", - "center": "POINT (710335.3782934673363343 2431283.0416116495616734)", - "surface": 7040000, - "canton": null, - "numero_insee": "51247" - } - }, - { - "pk": 19880, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FERE-CHAMPENOISE", - "center": "POINT (723536.7765948201995343 2420387.5787219121120870)", - "surface": 65670000, - "canton": null, - "numero_insee": "51248" - } - }, - { - "pk": 25246, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FESTIGNY", - "center": "POINT (704683.6092150476761162 2448746.8473970801569521)", - "surface": 25710000, - "canton": null, - "numero_insee": "51249" - } - }, - { - "pk": 26163, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FISMES", - "center": "POINT (697718.5597265975084156 2479507.8646455747075379)", - "surface": 16700000, - "canton": null, - "numero_insee": "51250" - } - }, - { - "pk": 19796, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FLAVIGNY", - "center": "POINT (726344.8286910256138071 2443226.8683232637122273)", - "surface": 7960000, - "canton": null, - "numero_insee": "51251" - } - }, - { - "pk": 36103, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FLEURY-LA-RIVIERE", - "center": "POINT (713217.3850045754807070 2457224.7632275866344571)", - "surface": 7910000, - "canton": null, - "numero_insee": "51252" - } - }, - { - "pk": 37853, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FLORENT-EN-ARGONNE", - "center": "POINT (790717.3765670201973990 2463188.1792127271182835)", - "surface": 12260000, - "canton": null, - "numero_insee": "51253" - } - }, - { - "pk": 36195, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FONTAINE-DENIS-NUISY", - "center": "POINT (698754.5784569155657664 2404466.5073631857521832)", - "surface": 13180000, - "canton": null, - "numero_insee": "51254" - } - }, - { - "pk": 28899, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FONTAINE-EN-DORMOIS", - "center": "POINT (773713.6451746250968426 2474050.1107252454385161)", - "surface": 5280000, - "canton": null, - "numero_insee": "51255" - } - }, - { - "pk": 24881, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FONTAINE-SUR-AY", - "center": "POINT (726434.4506936271209270 2456236.2470679194666445)", - "surface": 7720000, - "canton": null, - "numero_insee": "51256" - } - }, - { - "pk": 34952, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA FORESTIERE", - "center": "POINT (693424.9908606559038162 2407523.5278224390931427)", - "surface": 22630000, - "canton": null, - "numero_insee": "51258" - } - }, - { - "pk": 26471, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FRANCHEVILLE", - "center": "POINT (761652.7896852232515812 2433320.4295290587469935)", - "surface": 9390000, - "canton": null, - "numero_insee": "51259" - } - }, - { - "pk": 27276, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE FRESNE", - "center": "POINT (770829.3294761657016352 2436800.9688228764571249)", - "surface": 17880000, - "canton": null, - "numero_insee": "51260" - } - }, - { - "pk": 5110, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FRESNE-LES-REIMS", - "center": "POINT (728301.8880041793454438 2483769.8942114682868123)", - "surface": 12540000, - "canton": null, - "numero_insee": "51261" - } - }, - { - "pk": 6759, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FRIGNICOURT", - "center": "POINT (766222.6598408676218241 2413745.9618576085194945)", - "surface": 9730000, - "canton": null, - "numero_insee": "51262" - } - }, - { - "pk": 26330, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "FROMENTIERES", - "center": "POINT (700312.3679045346798375 2433199.4238303136080503)", - "surface": 8900000, - "canton": null, - "numero_insee": "51263" - } - }, - { - "pk": 37136, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE GAULT-SOIGNY", - "center": "POINT (692983.3080530138686299 2424231.2985987588763237)", - "surface": 26240000, - "canton": null, - "numero_insee": "51264" - } - }, - { - "pk": 34266, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GAYE", - "center": "POINT (708213.8647707519121468 2410050.5118801025673747)", - "surface": 21190000, - "canton": null, - "numero_insee": "51265" - } - }, - { - "pk": 32340, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GERMAINE", - "center": "POINT (723808.2851951040793210 2459115.8447286584414542)", - "surface": 14820000, - "canton": null, - "numero_insee": "51266" - } - }, - { - "pk": 33575, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GERMIGNY", - "center": "POINT (710982.9036258140113205 2472916.0158880790695548)", - "surface": 2380000, - "canton": null, - "numero_insee": "51267" - } - }, - { - "pk": 13318, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GERMINON", - "center": "POINT (735132.5265733972191811 2433595.0270608407445252)", - "surface": 19500000, - "canton": null, - "numero_insee": "51268" - } - }, - { - "pk": 4971, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GIFFAUMONT-CHAMPAUBERT", - "center": "POINT (777962.2261659540235996 2398335.2699703401885927)", - "surface": 28130000, - "canton": null, - "numero_insee": "51269" - } - }, - { - "pk": 18265, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GIGNY-BUSSY", - "center": "POINT (766109.5512080865446478 2403537.8907381957396865)", - "surface": 22510000, - "canton": null, - "numero_insee": "51270" - } - }, - { - "pk": 30261, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GIONGES", - "center": "POINT (719274.5736675180960447 2439164.1514269351027906)", - "surface": 10670000, - "canton": null, - "numero_insee": "51271" - } - }, - { - "pk": 19501, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GIVRY-EN-ARGONNE", - "center": "POINT (788297.1126913574989885 2441953.4554468165151775)", - "surface": 7580000, - "canton": null, - "numero_insee": "51272" - } - }, - { - "pk": 27686, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GIVRY-LES-LOISY", - "center": "POINT (715817.4797470915364102 2433831.2413017526268959)", - "surface": 5070000, - "canton": null, - "numero_insee": "51273" - } - }, - { - "pk": 11714, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GIZAUCOURT", - "center": "POINT (778690.6428599781356752 2453679.2706978237256408)", - "surface": 7840000, - "canton": null, - "numero_insee": "51274" - } - }, - { - "pk": 5465, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GLANNES", - "center": "POINT (759215.7628844890277833 2413986.4495179965160787)", - "surface": 13280000, - "canton": null, - "numero_insee": "51275" - } - }, - { - "pk": 27980, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GOURGANCON", - "center": "POINT (724417.9967372168321162 2410888.5063485088758171)", - "surface": 29230000, - "canton": null, - "numero_insee": "51276" - } - }, - { - "pk": 14486, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINTE-MARIE-DU-LAC-NUISEMENT", - "center": "POINT (778823.5068949388805777 2402945.8571420051157475)", - "surface": 17500000, - "canton": null, - "numero_insee": "51277" - } - }, - { - "pk": 26609, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES GRANDES-LOGES", - "center": "POINT (742668.6224044583505020 2453472.3479138193652034)", - "surface": 12750000, - "canton": null, - "numero_insee": "51278" - } - }, - { - "pk": 36655, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GRANGES-SUR-AUBE", - "center": "POINT (712302.9316186571959406 2399878.0690983035601676)", - "surface": 8190000, - "canton": null, - "numero_insee": "51279" - } - }, - { - "pk": 26352, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GRATREUIL", - "center": "POINT (771508.1192632389720529 2474531.6146989609114826)", - "surface": 4780000, - "canton": null, - "numero_insee": "51280" - } - }, - { - "pk": 25252, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "GRAUVES", - "center": "POINT (718847.1545700059505180 2442362.6668961928226054)", - "surface": 7870000, - "canton": null, - "numero_insee": "51281" - } - }, - { - "pk": 14256, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HANS", - "center": "POINT (775835.1970884525217116 2459959.0465767881833017)", - "surface": 19420000, - "canton": null, - "numero_insee": "51283" - } - }, - { - "pk": 10999, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HAUSSIGNEMONT", - "center": "POINT (777913.6867018339689821 2415747.0071805086918175)", - "surface": 2830000, - "canton": null, - "numero_insee": "51284" - } - }, - { - "pk": 25705, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HAUSSIMONT", - "center": "POINT (734666.5596853177994490 2417780.2850729203782976)", - "surface": 17440000, - "canton": null, - "numero_insee": "51285" - } - }, - { - "pk": 13204, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HAUTEVILLE", - "center": "POINT (779490.6349253986263648 2406854.2821018476970494)", - "surface": 10830000, - "canton": null, - "numero_insee": "51286" - } - }, - { - "pk": 31699, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HAUTVILLERS", - "center": "POINT (717435.9759083577664569 2455359.3128169975243509)", - "surface": 11830000, - "canton": null, - "numero_insee": "51287" - } - }, - { - "pk": 23913, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HEILTZ-LE-HUTIER", - "center": "POINT (779439.3852772376267239 2412858.0216322774067521)", - "surface": 10930000, - "canton": null, - "numero_insee": "51288" - } - }, - { - "pk": 22282, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HEILTZ-LE-MAURUPT", - "center": "POINT (783137.4988206577254459 2425098.0012179329060018)", - "surface": 16330000, - "canton": null, - "numero_insee": "51289" - } - }, - { - "pk": 3401, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HEILTZ-L'EVEQUE", - "center": "POINT (776553.1063795270165429 2422740.2153434045612812)", - "surface": 9500000, - "canton": null, - "numero_insee": "51290" - } - }, - { - "pk": 27817, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HERMONVILLE", - "center": "POINT (714702.7181479596765712 2482653.7838243553414941)", - "surface": 13300000, - "canton": null, - "numero_insee": "51291" - } - }, - { - "pk": 37553, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HERPONT", - "center": "POINT (774352.0911171844927594 2446137.2611014330759645)", - "surface": 23040000, - "canton": null, - "numero_insee": "51292" - } - }, - { - "pk": 23479, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HEUTREGIVILLE", - "center": "POINT (740417.2153728927951306 2482872.2586229192093015)", - "surface": 11690000, - "canton": null, - "numero_insee": "51293" - } - }, - { - "pk": 13794, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HOURGES", - "center": "POINT (704345.2004197628702968 2476862.2970295934937894)", - "surface": 4320000, - "canton": null, - "numero_insee": "51294" - } - }, - { - "pk": 3237, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HUIRON", - "center": "POINT (758828.3028478631749749 2412482.1089945100247860)", - "surface": 13340000, - "canton": null, - "numero_insee": "51295" - } - }, - { - "pk": 28202, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "HUMBAUVILLE", - "center": "POINT (751857.1837000238010660 2408520.0249150069430470)", - "surface": 16930000, - "canton": null, - "numero_insee": "51296" - } - }, - { - "pk": 18873, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "IGNY-COMBLIZY", - "center": "POINT (700901.7125203007599339 2446313.1991163697093725)", - "surface": 40910000, - "canton": null, - "numero_insee": "51298" - } - }, - { - "pk": 9942, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ISLES-SUR-SUIPPE", - "center": "POINT (735682.2352505619637668 2486634.4021335970610380)", - "surface": 12460000, - "canton": null, - "numero_insee": "51299" - } - }, - { - "pk": 11386, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ISLE-SUR-MARNE", - "center": "POINT (773179.0107626609969884 2407701.0486817723140121)", - "surface": 5380000, - "canton": null, - "numero_insee": "51300" - } - }, - { - "pk": 11389, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ISSE", - "center": "POINT (737360.4018361578928307 2454027.5938721569254994)", - "surface": 10990000, - "canton": null, - "numero_insee": "51301" - } - }, - { - "pk": 17509, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES ISTRES-ET-BURY", - "center": "POINT (728133.9998000665800646 2444643.0023813834413886)", - "surface": 5020000, - "canton": null, - "numero_insee": "51302" - } - }, - { - "pk": 25437, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JALONS", - "center": "POINT (734619.1519934970419854 2446899.5827755481004715)", - "surface": 10240000, - "canton": null, - "numero_insee": "51303" - } - }, - { - "pk": 26758, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JANVILLIERS", - "center": "POINT (696905.2297311369329691 2433770.9630416738800704)", - "surface": 8820000, - "canton": null, - "numero_insee": "51304" - } - }, - { - "pk": 11488, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JANVRY", - "center": "POINT (712283.6470783485565335 2472927.0503355353139341)", - "surface": 1970000, - "canton": null, - "numero_insee": "51305" - } - }, - { - "pk": 8597, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JOISELLE", - "center": "POINT (685321.7843339717946947 2419062.9561094939708710)", - "surface": 9700000, - "canton": null, - "numero_insee": "51306" - } - }, - { - "pk": 25414, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JONCHERY-SUR-SUIPPE", - "center": "POINT (756002.3445086313877255 2462291.5762300696223974)", - "surface": 24770000, - "canton": null, - "numero_insee": "51307" - } - }, - { - "pk": 9808, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JONCHERY-SUR-VESLE", - "center": "POINT (707842.0997154505457729 2477492.3306994601152837)", - "surface": 3200000, - "canton": null, - "numero_insee": "51308" - } - }, - { - "pk": 12204, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JONQUERY", - "center": "POINT (706074.2108525811927393 2461767.1906358511187136)", - "surface": 4240000, - "canton": null, - "numero_insee": "51309" - } - }, - { - "pk": 11220, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JOUY-LES-REIMS", - "center": "POINT (716015.4834636193700135 2469456.4569037724286318)", - "surface": 1870000, - "canton": null, - "numero_insee": "51310" - } - }, - { - "pk": 36382, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JUSSECOURT-MINECOURT", - "center": "POINT (779642.1934830229729414 2424267.6101733115501702)", - "surface": 9010000, - "canton": null, - "numero_insee": "51311" - } - }, - { - "pk": 23599, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "JUVIGNY", - "center": "POINT (741813.2073374125175178 2448161.5598487164825201)", - "surface": 21620000, - "canton": null, - "numero_insee": "51312" - } - }, - { - "pk": 31163, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LACHY", - "center": "POINT (700325.9208512867335230 2419790.4142375309020281)", - "surface": 16970000, - "canton": null, - "numero_insee": "51313" - } - }, - { - "pk": 35592, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LAGERY", - "center": "POINT (701714.0491674505174160 2468534.6502427649684250)", - "surface": 9350000, - "canton": null, - "numero_insee": "51314" - } - }, - { - "pk": 37959, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LANDRICOURT", - "center": "POINT (782113.6206806935369968 2404374.9262252785265446)", - "surface": 5810000, - "canton": null, - "numero_insee": "51315" - } - }, - { - "pk": 15723, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LARZICOURT", - "center": "POINT (776090.2156252608401701 2406625.1202058182097971)", - "surface": 16850000, - "canton": null, - "numero_insee": "51316" - } - }, - { - "pk": 6920, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LAVAL-SUR-TOURBE", - "center": "POINT (770207.1802772185765207 2462812.9252716284245253)", - "surface": 14650000, - "canton": null, - "numero_insee": "51317" - } - }, - { - "pk": 6962, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LAVANNES", - "center": "POINT (734631.8074049331480637 2480721.7199604841880500)", - "surface": 17810000, - "canton": null, - "numero_insee": "51318" - } - }, - { - "pk": 9994, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LENHARREE", - "center": "POINT (730831.9064409831771627 2421550.3042549183592200)", - "surface": 17690000, - "canton": null, - "numero_insee": "51319" - } - }, - { - "pk": 13175, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LEUVRIGNY", - "center": "POINT (705260.2122512166388333 2451553.5893817669712007)", - "surface": 7940000, - "canton": null, - "numero_insee": "51320" - } - }, - { - "pk": 5944, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LHERY", - "center": "POINT (704313.8486564436461776 2468756.8160687247291207)", - "surface": 5970000, - "canton": null, - "numero_insee": "51321" - } - }, - { - "pk": 27672, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LIGNON", - "center": "POINT (761926.5267473678104579 2401200.6214845804497600)", - "surface": 7460000, - "canton": null, - "numero_insee": "51322" - } - }, - { - "pk": 35716, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LINTHELLES", - "center": "POINT (708982.9662865763530135 2413759.5969092943705618)", - "surface": 11110000, - "canton": null, - "numero_insee": "51323" - } - }, - { - "pk": 35489, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LINTHES", - "center": "POINT (711765.1785495200892910 2416084.7816815772093832)", - "surface": 9340000, - "canton": null, - "numero_insee": "51324" - } - }, - { - "pk": 7129, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LISSE-EN-CHAMPAGNE", - "center": "POINT (769813.1565761523088440 2426885.5856503564864397)", - "surface": 8510000, - "canton": null, - "numero_insee": "51325" - } - }, - { - "pk": 17178, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LIVRY-LOUVERCY", - "center": "POINT (744329.6050518223783001 2458189.5749094681814313)", - "surface": 30710000, - "canton": null, - "numero_insee": "51326" - } - }, - { - "pk": 35377, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LOISY-EN-BRIE", - "center": "POINT (713915.4845104363048449 2433915.1700039193965495)", - "surface": 14950000, - "canton": null, - "numero_insee": "51327" - } - }, - { - "pk": 16314, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LOISY-SUR-MARNE", - "center": "POINT (762074.0677249199943617 2419114.3268858571536839)", - "surface": 14140000, - "canton": null, - "numero_insee": "51328" - } - }, - { - "pk": 31209, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LOIVRE", - "center": "POINT (719091.6094093276187778 2484292.0517370938323438)", - "surface": 10230000, - "canton": null, - "numero_insee": "51329" - } - }, - { - "pk": 35123, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LUDES", - "center": "POINT (727371.2815162966726348 2463749.1155976825393736)", - "surface": 12300000, - "canton": null, - "numero_insee": "51333" - } - }, - { - "pk": 38040, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LUXEMONT-ET-VILLOTTE", - "center": "POINT (769327.1417303371708840 2413472.2261249762959778)", - "surface": 9210000, - "canton": null, - "numero_insee": "51334" - } - }, - { - "pk": 30132, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAFFRECOURT", - "center": "POINT (781336.6954589941306040 2460206.1428085588850081)", - "surface": 6720000, - "canton": null, - "numero_insee": "51336" - } - }, - { - "pk": 29128, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAGNEUX", - "center": "POINT (701125.5735322061227635 2478936.3505982267670333)", - "surface": 3190000, - "canton": null, - "numero_insee": "51337" - } - }, - { - "pk": 31062, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAILLY-CHAMPAGNE", - "center": "POINT (729576.8074181076372042 2463267.5291048195213079)", - "surface": 10200000, - "canton": null, - "numero_insee": "51338" - } - }, - { - "pk": 26229, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAIRY-SUR-MARNE", - "center": "POINT (750958.2516977523919195 2431828.3817491643130779)", - "surface": 20820000, - "canton": null, - "numero_insee": "51339" - } - }, - { - "pk": 14238, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAISONS-EN-CHAMPAGNE", - "center": "POINT (756684.3813872357131913 2417467.3020135709084570)", - "surface": 29210000, - "canton": null, - "numero_insee": "51340" - } - }, - { - "pk": 10204, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MALMY", - "center": "POINT (780373.8048550684470683 2467502.6880168551579118)", - "surface": 4820000, - "canton": null, - "numero_insee": "51341" - } - }, - { - "pk": 34897, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MANCY", - "center": "POINT (717233.4617146260570735 2443849.9720561248250306)", - "surface": 3560000, - "canton": null, - "numero_insee": "51342" - } - }, - { - "pk": 26965, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARCILLY-SUR-SEINE", - "center": "POINT (701428.2821375508792698 2395983.1957009630277753)", - "surface": 10080000, - "canton": null, - "numero_insee": "51343" - } - }, - { - "pk": 9591, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARDEUIL", - "center": "POINT (715963.9674328211694956 2451944.5775651950389147)", - "surface": 9270000, - "canton": null, - "numero_insee": "51344" - } - }, - { - "pk": 14096, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAREUIL-EN-BRIE", - "center": "POINT (703844.1442818043287843 2441534.9355562948621809)", - "surface": 8930000, - "canton": null, - "numero_insee": "51345" - } - }, - { - "pk": 24686, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAREUIL-LE-PORT", - "center": "POINT (702840.1407608385197818 2453734.5270289708860219)", - "surface": 8950000, - "canton": null, - "numero_insee": "51346" - } - }, - { - "pk": 27299, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAREUIL-SUR-AY", - "center": "POINT (724577.5293551088543609 2451017.0436866753734648)", - "surface": 11560000, - "canton": null, - "numero_insee": "51347" - } - }, - { - "pk": 5452, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARFAUX", - "center": "POINT (714055.9346751593984663 2464536.6495958021841943)", - "surface": 6690000, - "canton": null, - "numero_insee": "51348" - } - }, - { - "pk": 14684, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARGERIE-HANCOURT", - "center": "POINT (762960.4169558191206306 2397306.6868064897134900)", - "surface": 22110000, - "canton": null, - "numero_insee": "51349" - } - }, - { - "pk": 26756, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARGNY", - "center": "POINT (696879.8018680202076212 2436772.7691784920170903)", - "surface": 10670000, - "canton": null, - "numero_insee": "51350" - } - }, - { - "pk": 34997, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARIGNY", - "center": "POINT (711332.7683418338419870 2408075.5726028969511390)", - "surface": 11650000, - "canton": null, - "numero_insee": "51351" - } - }, - { - "pk": 12327, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAROLLES", - "center": "POINT (768105.0659027572255582 2415963.5344049190171063)", - "surface": 4470000, - "canton": null, - "numero_insee": "51352" - } - }, - { - "pk": 17825, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARSANGIS", - "center": "POINT (711680.4857734685065225 2402474.6127449939958751)", - "surface": 6720000, - "canton": null, - "numero_insee": "51353" - } - }, - { - "pk": 23355, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MARSON", - "center": "POINT (761706.7996851818170398 2438724.5335815185680985)", - "surface": 30910000, - "canton": null, - "numero_insee": "51354" - } - }, - { - "pk": 37922, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MASSIGES", - "center": "POINT (775158.8492599070305005 2468859.0807837001048028)", - "surface": 8120000, - "canton": null, - "numero_insee": "51355" - } - }, - { - "pk": 10608, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MATIGNICOURT-GONCOURT", - "center": "POINT (772350.3422702718526125 2410996.2773891501128674)", - "surface": 9310000, - "canton": null, - "numero_insee": "51356" - } - }, - { - "pk": 12335, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MATOUGUES", - "center": "POINT (739643.3928186375414953 2444440.6390322041697800)", - "surface": 13710000, - "canton": null, - "numero_insee": "51357" - } - }, - { - "pk": 21329, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAURUPT-LE-MONTOIS", - "center": "POINT (785402.0875678083393723 2417712.2570595443248749)", - "surface": 18010000, - "canton": null, - "numero_insee": "51358" - } - }, - { - "pk": 21926, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MECRINGES", - "center": "POINT (687242.5661389825399965 2428585.6968694496899843)", - "surface": 10880000, - "canton": null, - "numero_insee": "51359" - } - }, - { - "pk": 25514, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE MEIX-SAINT-EPOING", - "center": "POINT (696994.1817984156077728 2411456.4641818697564304)", - "surface": 11340000, - "canton": null, - "numero_insee": "51360" - } - }, - { - "pk": 27482, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE MEIX-TIERCELIN", - "center": "POINT (755075.3722549055237323 2406646.1047999612055719)", - "surface": 19260000, - "canton": null, - "numero_insee": "51361" - } - }, - { - "pk": 6270, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MERFY", - "center": "POINT (717644.2706914199516177 2477975.7498021963983774)", - "surface": 6670000, - "canton": null, - "numero_insee": "51362" - } - }, - { - "pk": 10918, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MERLAUT", - "center": "POINT (770667.4133820415008813 2420588.5574019262567163)", - "surface": 5170000, - "canton": null, - "numero_insee": "51363" - } - }, - { - "pk": 17457, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MERY-PREMECY", - "center": "POINT (711897.8483281238004565 2471222.6815705597400665)", - "surface": 5130000, - "canton": null, - "numero_insee": "51364" - } - }, - { - "pk": 27622, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES MESNEUX", - "center": "POINT (718409.2186506749130785 2470377.3558522770181298)", - "surface": 4210000, - "canton": null, - "numero_insee": "51365" - } - }, - { - "pk": 27688, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE MESNIL-SUR-OGER", - "center": "POINT (723276.9699452444911003 2439198.1334468736313283)", - "surface": 7990000, - "canton": null, - "numero_insee": "51367" - } - }, - { - "pk": 14631, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MINAUCOURT-LE-MESNIL-LES-HURLUS", - "center": "POINT (772071.5762202920159325 2467131.6330996854230762)", - "surface": 23150000, - "canton": null, - "numero_insee": "51368" - } - }, - { - "pk": 7031, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MOEURS-VERDEY", - "center": "POINT (698255.9952308507636189 2416070.3320090351626277)", - "surface": 13260000, - "canton": null, - "numero_insee": "51369" - } - }, - { - "pk": 6647, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MOIREMONT", - "center": "POINT (786915.1697622817009687 2463155.6891158064827323)", - "surface": 17130000, - "canton": null, - "numero_insee": "51370" - } - }, - { - "pk": 14261, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MOIVRE", - "center": "POINT (771497.3148210516665131 2440609.2239516056142747)", - "surface": 22020000, - "canton": null, - "numero_insee": "51371" - } - }, - { - "pk": 23576, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONCETZ-LONGEVAS", - "center": "POINT (754912.0951641079736874 2437565.9022023691795766)", - "surface": 7270000, - "canton": null, - "numero_insee": "51372" - } - }, - { - "pk": 10266, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONCETZ-L'ABBAYE", - "center": "POINT (771374.4719940617214888 2408085.9340317463502288)", - "surface": 6940000, - "canton": null, - "numero_insee": "51373" - } - }, - { - "pk": 22749, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONDEMENT-MONTGIVROUX", - "center": "POINT (704808.3284426021855325 2422230.0484271813184023)", - "surface": 7160000, - "canton": null, - "numero_insee": "51374" - } - }, - { - "pk": 24100, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONTBRE", - "center": "POINT (724539.0650278957327828 2467327.3976922258734703)", - "surface": 3110000, - "canton": null, - "numero_insee": "51375" - } - }, - { - "pk": 25156, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONTEPREUX", - "center": "POINT (731499.4516282721888274 2413650.5363527303561568)", - "surface": 15360000, - "canton": null, - "numero_insee": "51377" - } - }, - { - "pk": 13306, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONTHELON", - "center": "POINT (717119.8146210685372353 2445450.0743039655499160)", - "surface": 2640000, - "canton": null, - "numero_insee": "51378" - } - }, - { - "pk": 6949, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONTIGNY-SUR-VESLE", - "center": "POINT (706515.9091902931686491 2480483.0018119495362043)", - "surface": 9520000, - "canton": null, - "numero_insee": "51379" - } - }, - { - "pk": 19714, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONTMIRAIL", - "center": "POINT (689715.2857781606726348 2432008.9302152707241476)", - "surface": 48350000, - "canton": null, - "numero_insee": "51380" - } - }, - { - "pk": 28113, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONTMORT-LUCY", - "center": "POINT (709173.6146549812983721 2438478.0443062577396631)", - "surface": 29490000, - "canton": null, - "numero_insee": "51381" - } - }, - { - "pk": 37641, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MONT-SUR-COURVILLE", - "center": "POINT (697565.9159778337925673 2473902.9842146793380380)", - "surface": 6040000, - "canton": null, - "numero_insee": "51382" - } - }, - { - "pk": 11388, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MORANGIS", - "center": "POINT (714041.7444680654443800 2442622.0858349283225834)", - "surface": 8610000, - "canton": null, - "numero_insee": "51384" - } - }, - { - "pk": 36213, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MORSAINS", - "center": "POINT (688989.3342706141993403 2423196.8026462350971997)", - "surface": 14400000, - "canton": null, - "numero_insee": "51386" - } - }, - { - "pk": 26423, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MOSLINS", - "center": "POINT (715256.8941615537041798 2440931.2592746661975980)", - "surface": 11730000, - "canton": null, - "numero_insee": "51387" - } - }, - { - "pk": 8698, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MOURMELON-LE-GRAND", - "center": "POINT (749706.3515679700067267 2461337.3701830268837512)", - "surface": 23480000, - "canton": null, - "numero_insee": "51388" - } - }, - { - "pk": 6761, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MOURMELON-LE-PETIT", - "center": "POINT (743803.7716090495232493 2461187.0665303887799382)", - "surface": 12190000, - "canton": null, - "numero_insee": "51389" - } - }, - { - "pk": 26015, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MOUSSY", - "center": "POINT (716102.2377561395987868 2447442.7689286791719496)", - "surface": 2780000, - "canton": null, - "numero_insee": "51390" - } - }, - { - "pk": 33931, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MUIZON", - "center": "POINT (712857.6741671022027731 2476033.9126540734432638)", - "surface": 7150000, - "canton": null, - "numero_insee": "51391" - } - }, - { - "pk": 8073, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MUTIGNY", - "center": "POINT (722948.5459513703826815 2454305.3888904568739235)", - "surface": 3760000, - "canton": null, - "numero_insee": "51392" - } - }, - { - "pk": 5887, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NANTEUIL-LA-FORET", - "center": "POINT (715996.0947885562200099 2459950.1114680017344654)", - "surface": 14550000, - "canton": null, - "numero_insee": "51393" - } - }, - { - "pk": 33224, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NESLE-LA-REPOSTE", - "center": "POINT (689748.9387327401200309 2404390.2441882854327559)", - "surface": 10560000, - "canton": null, - "numero_insee": "51395" - } - }, - { - "pk": 11164, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NESLE-LE-REPONS", - "center": "POINT (700866.9476854505483061 2450415.6245790454559028)", - "surface": 5130000, - "canton": null, - "numero_insee": "51396" - } - }, - { - "pk": 15245, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA NEUVILLE-AUX-BOIS", - "center": "POINT (787278.5632357830181718 2444046.1601586574688554)", - "surface": 14550000, - "canton": null, - "numero_insee": "51397" - } - }, - { - "pk": 29463, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA NEUVILLE-AUX-LARRIS", - "center": "POINT (708975.0466633178293705 2461891.8541968399658799)", - "surface": 1690000, - "canton": null, - "numero_insee": "51398" - } - }, - { - "pk": 35634, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA NEUVILLE-AU-PONT", - "center": "POINT (783622.6538800946436822 2462026.8442005361430347)", - "surface": 15160000, - "canton": null, - "numero_insee": "51399" - } - }, - { - "pk": 26002, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NEUVY", - "center": "POINT (686342.7211019243113697 2416669.9449675609357655)", - "surface": 17050000, - "canton": null, - "numero_insee": "51402" - } - }, - { - "pk": 34823, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NOGENT-L'ABBESSE", - "center": "POINT (732791.1186041244072840 2473601.5211033569648862)", - "surface": 10250000, - "canton": null, - "numero_insee": "51403" - } - }, - { - "pk": 8429, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NOIRLIEU", - "center": "POINT (780902.0872289084363729 2440789.5552114648744464)", - "surface": 13680000, - "canton": null, - "numero_insee": "51404" - } - }, - { - "pk": 11032, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NORROIS", - "center": "POINT (768451.3288492260035127 2410562.7442745123989880)", - "surface": 4150000, - "canton": null, - "numero_insee": "51406" - } - }, - { - "pk": 23835, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA NOUE", - "center": "POINT (694552.0161260303575546 2416239.0962661216035485)", - "surface": 13300000, - "canton": null, - "numero_insee": "51407" - } - }, - { - "pk": 9586, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "NUISEMENT-SUR-COOLE", - "center": "POINT (742950.8558346296194941 2432060.4354540323838592)", - "surface": 15320000, - "canton": null, - "numero_insee": "51409" - } - }, - { - "pk": 31284, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OEUILLY", - "center": "POINT (706751.7634277199395001 2452666.9618872981518507)", - "surface": 9210000, - "canton": null, - "numero_insee": "51410" - } - }, - { - "pk": 9078, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OGER", - "center": "POINT (723862.0337249652948231 2441004.3089277110993862)", - "surface": 15290000, - "canton": null, - "numero_insee": "51411" - } - }, - { - "pk": 30960, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OGNES", - "center": "POINT (715603.1860189693979919 2411914.4403221057727933)", - "surface": 7700000, - "canton": null, - "numero_insee": "51412" - } - }, - { - "pk": 30413, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OIRY", - "center": "POINT (724613.2220257378648967 2446814.5601608091965318)", - "surface": 10750000, - "canton": null, - "numero_insee": "51413" - } - }, - { - "pk": 10752, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OLIZY", - "center": "POINT (703772.0267920601181686 2461847.7388366726227105)", - "surface": 4520000, - "canton": null, - "numero_insee": "51414" - } - }, - { - "pk": 26078, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OMEY", - "center": "POINT (759177.7089386703446507 2430197.2356844944879413)", - "surface": 4010000, - "canton": null, - "numero_insee": "51415" - } - }, - { - "pk": 32033, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ORBAIS-L'ABBAYE", - "center": "POINT (699861.2562840102473274 2439199.6403487115167081)", - "surface": 16120000, - "canton": null, - "numero_insee": "51416" - } - }, - { - "pk": 37226, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ORCONTE", - "center": "POINT (776859.1199973995098844 2410334.2614858690649271)", - "surface": 13780000, - "canton": null, - "numero_insee": "51417" - } - }, - { - "pk": 11344, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ORMES", - "center": "POINT (718092.9093082789331675 2472275.8970097312703729)", - "surface": 6310000, - "canton": null, - "numero_insee": "51418" - } - }, - { - "pk": 21309, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OUTINES", - "center": "POINT (772160.2656511076493189 2398085.6235894979909062)", - "surface": 15400000, - "canton": null, - "numero_insee": "51419" - } - }, - { - "pk": 8465, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OUTREPONT", - "center": "POINT (772865.3507742407964543 2421007.5815865877084434)", - "surface": 3820000, - "canton": null, - "numero_insee": "51420" - } - }, - { - "pk": 34894, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "OYES", - "center": "POINT (705390.0340352487983182 2424436.4835042585618794)", - "surface": 7650000, - "canton": null, - "numero_insee": "51421" - } - }, - { - "pk": 7655, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PARGNY-LES-REIMS", - "center": "POINT (715509.2523119209799916 2470152.6133493343368173)", - "surface": 3630000, - "canton": null, - "numero_insee": "51422" - } - }, - { - "pk": 21180, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PARGNY-SUR-SAULX", - "center": "POINT (785168.6334419269114733 2421612.9483729405328631)", - "surface": 12340000, - "canton": null, - "numero_insee": "51423" - } - }, - { - "pk": 33233, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PASSAVANT-EN-ARGONNE", - "center": "POINT (794930.1143649454461411 2450315.6877673072740436)", - "surface": 7490000, - "canton": null, - "numero_insee": "51424" - } - }, - { - "pk": 22491, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PASSY-GRIGNY", - "center": "POINT (698186.5765774265164509 2459699.0329327601939440)", - "surface": 12010000, - "canton": null, - "numero_insee": "51425" - } - }, - { - "pk": 7756, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PEAS", - "center": "POINT (706160.0241650197422132 2416237.3864695630036294)", - "surface": 7700000, - "canton": null, - "numero_insee": "51426" - } - }, - { - "pk": 28105, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES PETITES-LOGES", - "center": "POINT (738402.3326803003437817 2460940.9873351957648993)", - "surface": 4890000, - "canton": null, - "numero_insee": "51428" - } - }, - { - "pk": 33672, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PEVY", - "center": "POINT (710113.7024666900979355 2481013.8321055010892451)", - "surface": 7260000, - "canton": null, - "numero_insee": "51429" - } - }, - { - "pk": 31068, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PIERRE-MORAINS", - "center": "POINT (723671.4700980557827279 2428093.9833296355791390)", - "surface": 13540000, - "canton": null, - "numero_insee": "51430" - } - }, - { - "pk": 12476, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PIERRY", - "center": "POINT (717999.1168486027745530 2447959.2002041558735073)", - "surface": 5170000, - "canton": null, - "numero_insee": "51431" - } - }, - { - "pk": 25105, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PLEURS", - "center": "POINT (712900.6609796754783019 2411991.5802986351773143)", - "surface": 16740000, - "canton": null, - "numero_insee": "51432" - } - }, - { - "pk": 10396, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PLICHANCOURT", - "center": "POINT (771787.7213392567355186 2418296.5305134397931397)", - "surface": 5970000, - "canton": null, - "numero_insee": "51433" - } - }, - { - "pk": 31476, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PLIVOT", - "center": "POINT (727311.4229196570813656 2447237.7454973910935223)", - "surface": 12690000, - "canton": null, - "numero_insee": "51434" - } - }, - { - "pk": 30094, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POCANCY", - "center": "POINT (732580.8405359438620508 2439477.3110172711312771)", - "surface": 26910000, - "canton": null, - "numero_insee": "51435" - } - }, - { - "pk": 24736, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POGNY", - "center": "POINT (758361.8784108841791749 2431991.5061293183825910)", - "surface": 13910000, - "canton": null, - "numero_insee": "51436" - } - }, - { - "pk": 22192, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POILLY", - "center": "POINT (707608.1104853453580290 2469685.3287859074771404)", - "surface": 4420000, - "canton": null, - "numero_insee": "51437" - } - }, - { - "pk": 28152, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POIX", - "center": "POINT (768174.8602075974922627 2442982.4945364678278565)", - "surface": 14630000, - "canton": null, - "numero_insee": "51438" - } - }, - { - "pk": 27033, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POMACLE", - "center": "POINT (731705.5040570712881163 2483598.6915514031425118)", - "surface": 11150000, - "canton": null, - "numero_insee": "51439" - } - }, - { - "pk": 21954, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PONTFAVERGER-MORONVILLIERS", - "center": "POINT (744062.6689166891155764 2477800.0168742998503149)", - "surface": 31530000, - "canton": null, - "numero_insee": "51440" - } - }, - { - "pk": 29621, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PONTHION", - "center": "POINT (775075.2403981836978346 2420025.7492021811194718)", - "surface": 7190000, - "canton": null, - "numero_insee": "51441" - } - }, - { - "pk": 21163, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POSSESSE", - "center": "POINT (784743.6747924138326198 2436219.2633503638207912)", - "surface": 36230000, - "canton": null, - "numero_insee": "51442" - } - }, - { - "pk": 30136, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POTANGIS", - "center": "POINT (696597.2725897171767429 2399244.5899364151991904)", - "surface": 8870000, - "canton": null, - "numero_insee": "51443" - } - }, - { - "pk": 35775, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POUILLON", - "center": "POINT (717021.0003850093344226 2480672.1845269235782325)", - "surface": 2830000, - "canton": null, - "numero_insee": "51444" - } - }, - { - "pk": 6416, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "POURCY", - "center": "POINT (714574.0536831769859418 2462439.6776630077511072)", - "surface": 8390000, - "canton": null, - "numero_insee": "51445" - } - }, - { - "pk": 36607, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PRINGY", - "center": "POINT (757750.9620697895297781 2421479.1394300512038171)", - "surface": 15340000, - "canton": null, - "numero_insee": "51446" - } - }, - { - "pk": 35428, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PROSNES", - "center": "POINT (743539.8027502058539540 2468689.7036403981037438)", - "surface": 32770000, - "canton": null, - "numero_insee": "51447" - } - }, - { - "pk": 31615, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PROUILLY", - "center": "POINT (709833.0521104149520397 2478709.9835945488885045)", - "surface": 10400000, - "canton": null, - "numero_insee": "51448" - } - }, - { - "pk": 24666, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PRUNAY", - "center": "POINT (734022.4262257089139894 2470009.6649685390293598)", - "surface": 18490000, - "canton": null, - "numero_insee": "51449" - } - }, - { - "pk": 36764, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "PUISIEULX", - "center": "POINT (729732.7100429341662675 2468472.2338662021793425)", - "surface": 9080000, - "canton": null, - "numero_insee": "51450" - } - }, - { - "pk": 36203, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "QUEUDES", - "center": "POINT (704631.9814379106974229 2407618.4758995613083243)", - "surface": 10070000, - "canton": null, - "numero_insee": "51451" - } - }, - { - "pk": 33076, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "RAPSECOURT", - "center": "POINT (779522.7201034105382860 2449983.9224560717120767)", - "surface": 7310000, - "canton": null, - "numero_insee": "51452" - } - }, - { - "pk": 25310, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "RECY", - "center": "POINT (745331.4578966570552438 2446290.2304899105802178)", - "surface": 14340000, - "canton": null, - "numero_insee": "51453" - } - }, - { - "pk": 16516, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "REIMS", - "center": "POINT (724082.7471772835124284 2473927.7858845447190106)", - "surface": 46920000, - "canton": null, - "numero_insee": "51454" - } - }, - { - "pk": 26219, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "REIMS-LA-BRULEE", - "center": "POINT (771505.4607149078510702 2416192.6736617884598672)", - "surface": 6400000, - "canton": null, - "numero_insee": "51455" - } - }, - { - "pk": 9484, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "REMICOURT", - "center": "POINT (784396.4907560348510742 2441720.0000191363506019)", - "surface": 9450000, - "canton": null, - "numero_insee": "51456" - } - }, - { - "pk": 8434, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "REUIL", - "center": "POINT (707832.0467466152040288 2455077.7040063287131488)", - "surface": 5330000, - "canton": null, - "numero_insee": "51457" - } - }, - { - "pk": 27086, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "REUVES", - "center": "POINT (707702.4686220119474456 2423155.2011277494020760)", - "surface": 6470000, - "canton": null, - "numero_insee": "51458" - } - }, - { - "pk": 34784, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "REVEILLON", - "center": "POINT (682334.3287349047604948 2417336.5132274548523128)", - "surface": 6770000, - "canton": null, - "numero_insee": "51459" - } - }, - { - "pk": 32472, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "RIEUX", - "center": "POINT (685854.4165022777160630 2427072.9302407233044505)", - "surface": 11460000, - "canton": null, - "numero_insee": "51460" - } - }, - { - "pk": 3701, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "RILLY-LA-MONTAGNE", - "center": "POINT (724666.3177451889496297 2464126.3985450924374163)", - "surface": 8820000, - "canton": null, - "numero_insee": "51461" - } - }, - { - "pk": 35117, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LES RIVIERES-HENRUEL", - "center": "POINT (762468.9141442636027932 2408010.0028942152857780)", - "surface": 12040000, - "canton": null, - "numero_insee": "51463" - } - }, - { - "pk": 7179, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ROMAIN", - "center": "POINT (703298.8322914120508358 2482256.8743382371030748)", - "surface": 8390000, - "canton": null, - "numero_insee": "51464" - } - }, - { - "pk": 23955, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ROMERY", - "center": "POINT (715124.4391123771201819 2456540.4847587756812572)", - "surface": 2060000, - "canton": null, - "numero_insee": "51465" - } - }, - { - "pk": 28548, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ROMIGNY", - "center": "POINT (704446.9867301000049338 2464855.4148458102717996)", - "surface": 11360000, - "canton": null, - "numero_insee": "51466" - } - }, - { - "pk": 14341, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ROSNAY", - "center": "POINT (710671.6986069161212072 2474214.2124661183916032)", - "surface": 5560000, - "canton": null, - "numero_insee": "51468" - } - }, - { - "pk": 7453, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ROUFFY", - "center": "POINT (728474.9843964070314541 2439842.6885636248625815)", - "surface": 5700000, - "canton": null, - "numero_insee": "51469" - } - }, - { - "pk": 11647, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "ROUVROY-RIPONT", - "center": "POINT (772530.0332879534689710 2472038.7205596892163157)", - "surface": 11690000, - "canton": null, - "numero_insee": "51470" - } - }, - { - "pk": 11008, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SACY", - "center": "POINT (717830.1067290018545464 2467870.8223725976422429)", - "surface": 5530000, - "canton": null, - "numero_insee": "51471" - } - }, - { - "pk": 16475, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-AMAND-SUR-FION", - "center": "POINT (767003.7712694880319759 2427762.2412938405759633)", - "surface": 28320000, - "canton": null, - "numero_insee": "51472" - } - }, - { - "pk": 25119, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-BON", - "center": "POINT (683899.5906007423764095 2409744.5034637660719454)", - "surface": 7960000, - "canton": null, - "numero_insee": "51473" - } - }, - { - "pk": 27220, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-BRICE-COURCELLES", - "center": "POINT (720363.6436313652666286 2475897.4892950118519366)", - "surface": 4120000, - "canton": null, - "numero_insee": "51474" - } - }, - { - "pk": 12503, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-CHERON", - "center": "POINT (762888.7791333738714457 2405711.9757982091978192)", - "surface": 9130000, - "canton": null, - "numero_insee": "51475" - } - }, - { - "pk": 32784, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-ETIENNE-AU-TEMPLE", - "center": "POINT (752314.3122100589098409 2448851.3358512991108000)", - "surface": 12050000, - "canton": null, - "numero_insee": "51476" - } - }, - { - "pk": 22996, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-ETIENNE-SUR-SUIPPE", - "center": "POINT (728158.4740166682749987 2488871.9064018339850008)", - "surface": 7800000, - "canton": null, - "numero_insee": "51477" - } - }, - { - "pk": 13983, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-EULIEN", - "center": "POINT (787248.5020984482252970 2412424.3600880801677704)", - "surface": 8220000, - "canton": null, - "numero_insee": "51478" - } - }, - { - "pk": 7260, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-EUPHRAISE-ET-CLAIRIZET", - "center": "POINT (712814.4932872245553881 2469329.2306285607628524)", - "surface": 4890000, - "canton": null, - "numero_insee": "51479" - } - }, - { - "pk": 28724, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINTE-GEMME", - "center": "POINT (696770.5043618041090667 2461488.2128671999089420)", - "surface": 7170000, - "canton": null, - "numero_insee": "51480" - } - }, - { - "pk": 35924, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-GERMAIN-LA-VILLE", - "center": "POINT (755837.3529138715239242 2434671.8271221364848316)", - "surface": 11880000, - "canton": null, - "numero_insee": "51482" - } - }, - { - "pk": 7457, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-GIBRIEN", - "center": "POINT (743353.2564201316563413 2443571.5966443372890353)", - "surface": 4010000, - "canton": null, - "numero_insee": "51483" - } - }, - { - "pk": 27427, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-GILLES", - "center": "POINT (697541.3335285854991525 2476804.6367868552915752)", - "surface": 6480000, - "canton": null, - "numero_insee": "51484" - } - }, - { - "pk": 3147, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-HILAIRE-AU-TEMPLE", - "center": "POINT (748977.4365672252606601 2452925.6416635741479695)", - "surface": 6180000, - "canton": null, - "numero_insee": "51485" - } - }, - { - "pk": 16447, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-HILAIRE-LE-GRAND", - "center": "POINT (754071.4133725594729185 2465777.4110847618430853)", - "surface": 42350000, - "canton": null, - "numero_insee": "51486" - } - }, - { - "pk": 27278, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-HILAIRE-LE-PETIT", - "center": "POINT (748880.7292671269970015 2476039.8701426936313510)", - "surface": 22890000, - "canton": null, - "numero_insee": "51487" - } - }, - { - "pk": 34203, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-IMOGES", - "center": "POINT (720317.2877360086422414 2457785.3489220417104661)", - "surface": 17230000, - "canton": null, - "numero_insee": "51488" - } - }, - { - "pk": 5551, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-JEAN-DEVANT-POSSESSE", - "center": "POINT (779767.9987384418491274 2432974.6107007809914649)", - "surface": 5300000, - "canton": null, - "numero_insee": "51489" - } - }, - { - "pk": 7445, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-JEAN-SUR-MOIVRE", - "center": "POINT (764835.9565418737474829 2435549.0499071804806590)", - "surface": 15050000, - "canton": null, - "numero_insee": "51490" - } - }, - { - "pk": 19412, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-JEAN-SUR-TOURBE", - "center": "POINT (770524.4250761105213314 2460814.3227564268745482)", - "surface": 17170000, - "canton": null, - "numero_insee": "51491" - } - }, - { - "pk": 14460, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-JUST-SAUVAGE", - "center": "POINT (705937.0704536809353158 2395320.9172481205314398)", - "surface": 17770000, - "canton": null, - "numero_insee": "51492" - } - }, - { - "pk": 28529, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-LEONARD", - "center": "POINT (729206.9157008196925744 2471469.7059992593713105)", - "surface": 3020000, - "canton": null, - "numero_insee": "51493" - } - }, - { - "pk": 13072, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-LOUP", - "center": "POINT (709162.7246073024580255 2416162.7780622937716544)", - "surface": 6860000, - "canton": null, - "numero_insee": "51495" - } - }, - { - "pk": 35442, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-LUMIER-EN-CHAMPAGNE", - "center": "POINT (767836.6820596696343273 2423966.7479805061593652)", - "surface": 8620000, - "canton": null, - "numero_insee": "51496" - } - }, - { - "pk": 27068, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-LUMIER-LA-POPULEUSE", - "center": "POINT (781603.1601316584274173 2417279.5393364327028394)", - "surface": 2470000, - "canton": null, - "numero_insee": "51497" - } - }, - { - "pk": 31748, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MARD-SUR-AUVE", - "center": "POINT (774914.8776746154762805 2450544.9907700740732253)", - "surface": 10130000, - "canton": null, - "numero_insee": "51498" - } - }, - { - "pk": 7744, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MARD-LES-ROUFFY", - "center": "POINT (729466.2307151639834046 2440951.8482488701120019)", - "surface": 6940000, - "canton": null, - "numero_insee": "51499" - } - }, - { - "pk": 37552, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MARD-SUR-LE-MONT", - "center": "POINT (784419.5651699656154960 2439018.3827947387471795)", - "surface": 13610000, - "canton": null, - "numero_insee": "51500" - } - }, - { - "pk": 25016, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINTE-MARIE-A-PY", - "center": "POINT (758108.9901232552947477 2473416.7291396637447178)", - "surface": 26830000, - "canton": null, - "numero_insee": "51501" - } - }, - { - "pk": 36973, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MARTIN-AUX-CHAMPS", - "center": "POINT (757411.5664425888098776 2426079.3964784499257803)", - "surface": 7290000, - "canton": null, - "numero_insee": "51502" - } - }, - { - "pk": 12783, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MARTIN-L'HEUREUX", - "center": "POINT (748601.0011438380461186 2473635.9449768248014152)", - "surface": 13730000, - "canton": null, - "numero_insee": "51503" - } - }, - { - "pk": 26016, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MARTIN-SUR-LE-PRE", - "center": "POINT (747938.9632005344610661 2445611.9560710093937814)", - "surface": 12000000, - "canton": null, - "numero_insee": "51504" - } - }, - { - "pk": 27428, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MASMES", - "center": "POINT (739132.6515408026752993 2480960.1212105131708086)", - "surface": 6710000, - "canton": null, - "numero_insee": "51505" - } - }, - { - "pk": 11262, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-MEMMIE", - "center": "POINT (752476.5713680883636698 2441547.8472588779404759)", - "surface": 12630000, - "canton": null, - "numero_insee": "51506" - } - }, - { - "pk": 21599, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINTE-MENEHOULD", - "center": "POINT (790366.7412196046207100 2457381.3766357707791030)", - "surface": 57160000, - "canton": null, - "numero_insee": "51507" - } - }, - { - "pk": 14842, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-OUEN-DOMPROT", - "center": "POINT (751598.7413195709232241 2403614.4023508527316153)", - "surface": 47500000, - "canton": null, - "numero_insee": "51508" - } - }, - { - "pk": 37238, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-PIERRE", - "center": "POINT (739884.3618670101277530 2439639.4755703778937459)", - "surface": 10170000, - "canton": null, - "numero_insee": "51509" - } - }, - { - "pk": 28201, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-QUENTIN-LE-VERGER", - "center": "POINT (703771.2815989499213174 2402907.9000282548367977)", - "surface": 10630000, - "canton": null, - "numero_insee": "51511" - } - }, - { - "pk": 32349, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-QUENTIN-SUR-COOLE", - "center": "POINT (746072.3164218340534717 2429785.4352355482988060)", - "surface": 8860000, - "canton": null, - "numero_insee": "51512" - } - }, - { - "pk": 20678, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-REMY-EN-BOUZEMONT-SAINT-GENEST-ET-ISSON", - "center": "POINT (770508.0475397354457527 2404075.7482522474601865)", - "surface": 22040000, - "canton": null, - "numero_insee": "51513" - } - }, - { - "pk": 28670, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-REMY-SOUS-BROYES", - "center": "POINT (705787.7709060906199738 2412931.9517575874924660)", - "surface": 7780000, - "canton": null, - "numero_insee": "51514" - } - }, - { - "pk": 31125, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-REMY-SUR-BUSSY", - "center": "POINT (764581.4973636688664556 2453658.9710285589098930)", - "surface": 34670000, - "canton": null, - "numero_insee": "51515" - } - }, - { - "pk": 12952, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-SATURNIN", - "center": "POINT (714577.2139253192581236 2403099.6068315934389830)", - "surface": 8020000, - "canton": null, - "numero_insee": "51516" - } - }, - { - "pk": 15044, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-SOUPLET-SUR-PY", - "center": "POINT (755002.1031847415724769 2473990.6470656935125589)", - "surface": 21310000, - "canton": null, - "numero_insee": "51517" - } - }, - { - "pk": 27255, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-THIERRY", - "center": "POINT (719236.6850565720815212 2478989.9069901914335787)", - "surface": 7550000, - "canton": null, - "numero_insee": "51518" - } - }, - { - "pk": 11165, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-THOMAS-EN-ARGONNE", - "center": "POINT (784465.0604637200012803 2468838.4720065239816904)", - "surface": 4410000, - "canton": null, - "numero_insee": "51519" - } - }, - { - "pk": 24286, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-UTIN", - "center": "POINT (757858.8937746325973421 2397063.0763221946544945)", - "surface": 10250000, - "canton": null, - "numero_insee": "51520" - } - }, - { - "pk": 21311, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAINT-VRAIN", - "center": "POINT (782934.7227449787314981 2413688.4187096748501062)", - "surface": 11600000, - "canton": null, - "numero_insee": "51521" - } - }, - { - "pk": 3805, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAPIGNICOURT", - "center": "POINT (782380.4878300930140540 2408279.9311908208765090)", - "surface": 4790000, - "canton": null, - "numero_insee": "51522" - } - }, - { - "pk": 12103, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SARCY", - "center": "POINT (708921.5860161520540714 2468195.4970370233058929)", - "surface": 6870000, - "canton": null, - "numero_insee": "51523" - } - }, - { - "pk": 29792, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SARON-SUR-AUBE", - "center": "POINT (702802.8794515555491671 2399097.0273259091190994)", - "surface": 16520000, - "canton": null, - "numero_insee": "51524" - } - }, - { - "pk": 32778, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SARRY", - "center": "POINT (752302.8649605350801721 2438444.2869603270664811)", - "surface": 19920000, - "canton": null, - "numero_insee": "51525" - } - }, - { - "pk": 11599, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAUDOY", - "center": "POINT (700208.0389988739043474 2410082.7208937779068947)", - "surface": 12820000, - "canton": null, - "numero_insee": "51526" - } - }, - { - "pk": 31616, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SAVIGNY-SUR-ARDRES", - "center": "POINT (706072.4661831923294812 2473774.9511423557996750)", - "surface": 9030000, - "canton": null, - "numero_insee": "51527" - } - }, - { - "pk": 36536, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SCRUPT", - "center": "POINT (781915.3064763310831040 2415881.2372921612113714)", - "surface": 11560000, - "canton": null, - "numero_insee": "51528" - } - }, - { - "pk": 8033, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SELLES", - "center": "POINT (741547.6287080057663843 2479379.6420613918453455)", - "surface": 11330000, - "canton": null, - "numero_insee": "51529" - } - }, - { - "pk": 24879, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SEPT-SAULX", - "center": "POINT (740686.6481467817211524 2462961.7232497548684478)", - "surface": 18220000, - "canton": null, - "numero_insee": "51530" - } - }, - { - "pk": 17693, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SERMAIZE-LES-BAINS", - "center": "POINT (788959.8523486191406846 2422946.2278452273458242)", - "surface": 17640000, - "canton": null, - "numero_insee": "51531" - } - }, - { - "pk": 30649, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SERMIERS", - "center": "POINT (719877.9789996123872697 2462384.6296300860121846)", - "surface": 18220000, - "canton": null, - "numero_insee": "51532" - } - }, - { - "pk": 3604, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SERVON-MELZICOURT", - "center": "POINT (782947.9600025631953031 2470726.7461142544634640)", - "surface": 25520000, - "canton": null, - "numero_insee": "51533" - } - }, - { - "pk": 9544, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SERZY-ET-PRIN", - "center": "POINT (703976.3558712414233014 2473156.7945878594182432)", - "surface": 7410000, - "canton": null, - "numero_insee": "51534" - } - }, - { - "pk": 33818, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SEZANNE", - "center": "POINT (702069.3652243565302342 2414801.7468520910479128)", - "surface": 22830000, - "canton": null, - "numero_insee": "51535" - } - }, - { - "pk": 25419, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SILLERY", - "center": "POINT (731442.1925608750898391 2467486.1133458926342428)", - "surface": 9200000, - "canton": null, - "numero_insee": "51536" - } - }, - { - "pk": 15040, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SIVRY-ANTE", - "center": "POINT (787045.9604658461175859 2447846.7097840574570000)", - "surface": 21610000, - "canton": null, - "numero_insee": "51537" - } - }, - { - "pk": 11045, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOGNY-AUX-MOULINS", - "center": "POINT (750631.6613674471154809 2434927.6985970353707671)", - "surface": 6700000, - "canton": null, - "numero_insee": "51538" - } - }, - { - "pk": 7486, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOGNY-EN-L'ANGLE", - "center": "POINT (781519.4339508719276637 2427085.5512594347819686)", - "surface": 6720000, - "canton": null, - "numero_insee": "51539" - } - }, - { - "pk": 9849, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOIZY-AUX-BOIS", - "center": "POINT (702288.9887545276433229 2424310.1299435766413808)", - "surface": 7290000, - "canton": null, - "numero_insee": "51542" - } - }, - { - "pk": 33564, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMME-BIONNE", - "center": "POINT (773958.8494182171998546 2457041.1285545988939703)", - "surface": 9310000, - "canton": null, - "numero_insee": "51543" - } - }, - { - "pk": 23173, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMMEPY-TAHURE", - "center": "POINT (764307.4183406013762578 2474069.9457175368443131)", - "surface": 68370000, - "canton": null, - "numero_insee": "51544" - } - }, - { - "pk": 9917, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMMESOUS", - "center": "POINT (738078.0147386345779523 2416708.5316368439234793)", - "surface": 36990000, - "canton": null, - "numero_insee": "51545" - } - }, - { - "pk": 33471, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMME-SUIPPE", - "center": "POINT (764425.9913125853054225 2460161.9229763722978532)", - "surface": 31570000, - "canton": null, - "numero_insee": "51546" - } - }, - { - "pk": 22470, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMME-VESLE", - "center": "POINT (766746.7225511664291844 2446172.4539665374904871)", - "surface": 35590000, - "canton": null, - "numero_insee": "51548" - } - }, - { - "pk": 12509, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMME-YEVRE", - "center": "POINT (776195.8583253308897838 2441149.6500028776936233)", - "surface": 21570000, - "canton": null, - "numero_insee": "51549" - } - }, - { - "pk": 15473, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMPUIS", - "center": "POINT (750129.7165118961129338 2411607.4730123486369848)", - "surface": 43360000, - "canton": null, - "numero_insee": "51550" - } - }, - { - "pk": 18653, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOMSOIS", - "center": "POINT (759309.5433413743739948 2402979.5850902521051466)", - "surface": 21340000, - "canton": null, - "numero_insee": "51551" - } - }, - { - "pk": 13153, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SONGY", - "center": "POINT (756931.7187166269868612 2423673.6682071760296822)", - "surface": 15150000, - "canton": null, - "numero_insee": "51552" - } - }, - { - "pk": 37077, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOUAIN-PERTHES-LES-HURLUS", - "center": "POINT (763160.4682873119600117 2467756.0928470366634429)", - "surface": 52810000, - "canton": null, - "numero_insee": "51553" - } - }, - { - "pk": 17684, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOUDE", - "center": "POINT (744886.4688672702759504 2416266.1006091171875596)", - "surface": 32290000, - "canton": null, - "numero_insee": "51555" - } - }, - { - "pk": 31912, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOUDRON", - "center": "POINT (736784.5393324000760913 2427605.0019324333406985)", - "surface": 43010000, - "canton": null, - "numero_insee": "51556" - } - }, - { - "pk": 32184, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOULANGES", - "center": "POINT (763038.8627632865682244 2423325.4336967729032040)", - "surface": 12550000, - "canton": null, - "numero_insee": "51557" - } - }, - { - "pk": 27495, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SOULIERES", - "center": "POINT (717108.0734869873849675 2435043.0038122632540762)", - "surface": 6050000, - "canton": null, - "numero_insee": "51558" - } - }, - { - "pk": 13468, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SUIPPES", - "center": "POINT (759817.3420721931615844 2460823.0994895407930017)", - "surface": 42390000, - "canton": null, - "numero_insee": "51559" - } - }, - { - "pk": 10747, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "SUIZY-LE-FRANC", - "center": "POINT (702053.2457283036783338 2440318.9529872392304242)", - "surface": 6060000, - "canton": null, - "numero_insee": "51560" - } - }, - { - "pk": 9848, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TAISSY", - "center": "POINT (727228.7208087117178366 2468751.1526073869317770)", - "surface": 11490000, - "canton": null, - "numero_insee": "51562" - } - }, - { - "pk": 21672, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TALUS-SAINT-PRIX", - "center": "POINT (703268.3970634933793917 2426820.1351565103977919)", - "surface": 6260000, - "canton": null, - "numero_insee": "51563" - } - }, - { - "pk": 29420, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TAUXIERES-MUTRY", - "center": "POINT (728536.5302668004296720 2456154.0398698267526925)", - "surface": 10110000, - "canton": null, - "numero_insee": "51564" - } - }, - { - "pk": 9170, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "THAAS", - "center": "POINT (713155.9619879703968763 2405489.2263347175903618)", - "surface": 10450000, - "canton": null, - "numero_insee": "51565" - } - }, - { - "pk": 3421, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "THIBIE", - "center": "POINT (737304.0755787963280454 2437115.8514543874189258)", - "surface": 10550000, - "canton": null, - "numero_insee": "51566" - } - }, - { - "pk": 33241, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "THIEBLEMONT-FAREMONT", - "center": "POINT (776234.8369017145596445 2413130.8786919768899679)", - "surface": 9190000, - "canton": null, - "numero_insee": "51567" - } - }, - { - "pk": 13129, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "THIL", - "center": "POINT (718416.6961958109168336 2481284.4140133941546082)", - "surface": 2120000, - "canton": null, - "numero_insee": "51568" - } - }, - { - "pk": 12699, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "THILLOIS", - "center": "POINT (717172.8613178405212238 2474569.5679883710108697)", - "surface": 6360000, - "canton": null, - "numero_insee": "51569" - } - }, - { - "pk": 30541, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE THOULT-TROSNAY", - "center": "POINT (698836.8947884173830971 2430184.8919346057809889)", - "surface": 15150000, - "canton": null, - "numero_insee": "51570" - } - }, - { - "pk": 22195, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAL-DE-VESLE", - "center": "POINT (737952.7468513901112601 2466740.9445142522454262)", - "surface": 37380000, - "canton": null, - "numero_insee": "51571" - } - }, - { - "pk": 27665, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TILLOY-ET-BELLAY", - "center": "POINT (767812.3909798148088157 2450284.2685060440562665)", - "surface": 19370000, - "canton": null, - "numero_insee": "51572" - } - }, - { - "pk": 37824, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TINQUEUX", - "center": "POINT (720282.2757069279905409 2473695.3847631756216288)", - "surface": 4240000, - "canton": null, - "numero_insee": "51573" - } - }, - { - "pk": 22311, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TOGNY-AUX-BOEUFS", - "center": "POINT (752979.0600455529056489 2429544.0273847016505897)", - "surface": 9990000, - "canton": null, - "numero_insee": "51574" - } - }, - { - "pk": 25793, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TOURS-SUR-MARNE", - "center": "POINT (731073.7087466130033135 2451972.8296975297853351)", - "surface": 23220000, - "canton": null, - "numero_insee": "51576" - } - }, - { - "pk": 5677, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TRAMERY", - "center": "POINT (706701.6546357756014913 2470378.0947592761367559)", - "surface": 3600000, - "canton": null, - "numero_insee": "51577" - } - }, - { - "pk": 22734, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TRECON", - "center": "POINT (728548.0952756402548403 2431237.5107522914186120)", - "surface": 12540000, - "canton": null, - "numero_insee": "51578" - } - }, - { - "pk": 17100, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TREFOLS", - "center": "POINT (685393.0590270966058597 2422465.8889859863556921)", - "surface": 14520000, - "canton": null, - "numero_insee": "51579" - } - }, - { - "pk": 13832, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TREPAIL", - "center": "POINT (734822.3553647020598873 2458308.8431076705455780)", - "surface": 8370000, - "canton": null, - "numero_insee": "51580" - } - }, - { - "pk": 24622, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TRIGNY", - "center": "POINT (713034.0182551703182980 2478837.2016573222354054)", - "surface": 12270000, - "canton": null, - "numero_insee": "51582" - } - }, - { - "pk": 15735, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TROIS-FONTAINES-L'ABBAYE", - "center": "POINT (792625.3456618925556540 2415572.4526389427483082)", - "surface": 43930000, - "canton": null, - "numero_insee": "51583" - } - }, - { - "pk": 38063, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TROIS-PUITS", - "center": "POINT (724126.0873349205357954 2468824.8622771897353232)", - "surface": 2160000, - "canton": null, - "numero_insee": "51584" - } - }, - { - "pk": 12409, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "TROISSY", - "center": "POINT (699840.0746665155747905 2453508.9706817544065416)", - "surface": 15380000, - "canton": null, - "numero_insee": "51585" - } - }, - { - "pk": 31841, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "UNCHAIR", - "center": "POINT (702639.1452080819290131 2477448.2195334080606699)", - "surface": 3740000, - "canton": null, - "numero_insee": "51586" - } - }, - { - "pk": 11663, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VADENAY", - "center": "POINT (751953.6407841925974935 2455952.9604127891361713)", - "surface": 19550000, - "canton": null, - "numero_insee": "51587" - } - }, - { - "pk": 27472, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VALMY", - "center": "POINT (777270.1760033778846264 2455968.6637806980870664)", - "surface": 24270000, - "canton": null, - "numero_insee": "51588" - } - }, - { - "pk": 14470, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VANAULT-LE-CHATEL", - "center": "POINT (773769.4926370745524764 2432323.0086871474049985)", - "surface": 34780000, - "canton": null, - "numero_insee": "51589" - } - }, - { - "pk": 13584, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VANAULT-LES-DAMES", - "center": "POINT (779594.3581756651401520 2429871.0235221870243549)", - "surface": 20110000, - "canton": null, - "numero_insee": "51590" - } - }, - { - "pk": 3881, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VANDEUIL", - "center": "POINT (706045.3187828734517097 2476976.7747830040752888)", - "surface": 5410000, - "canton": null, - "numero_insee": "51591" - } - }, - { - "pk": 27753, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VANDIERES", - "center": "POINT (701402.0078990892507136 2458125.2309006070718169)", - "surface": 13140000, - "canton": null, - "numero_insee": "51592" - } - }, - { - "pk": 35922, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VASSIMONT-ET-CHAPELAINE", - "center": "POINT (732551.6585228552576154 2419363.4093179316259921)", - "surface": 21560000, - "canton": null, - "numero_insee": "51594" - } - }, - { - "pk": 10874, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VATRY", - "center": "POINT (739894.0849032268160954 2426730.8319621952250600)", - "surface": 8510000, - "canton": null, - "numero_insee": "51595" - } - }, - { - "pk": 29584, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAUCHAMPS", - "center": "POINT (694517.3404388283379376 2432149.6568276290781796)", - "surface": 12910000, - "canton": null, - "numero_insee": "51596" - } - }, - { - "pk": 7589, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAUCIENNES", - "center": "POINT (712866.3866205746307969 2451417.9637235114350915)", - "surface": 5150000, - "canton": null, - "numero_insee": "51597" - } - }, - { - "pk": 25242, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAUCLERC", - "center": "POINT (772019.4269586051814258 2414595.9514938271604478)", - "surface": 6190000, - "canton": null, - "numero_insee": "51598" - } - }, - { - "pk": 13825, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAUDEMANGE", - "center": "POINT (739344.5561660244129598 2456045.7856800779700279)", - "surface": 13200000, - "canton": null, - "numero_insee": "51599" - } - }, - { - "pk": 11777, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAUDESINCOURT", - "center": "POINT (749125.9898321750806645 2470738.5426393216475844)", - "surface": 12780000, - "canton": null, - "numero_insee": "51600" - } - }, - { - "pk": 6903, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAVRAY-LE-GRAND", - "center": "POINT (774037.9141102897701785 2424319.8487267917953432)", - "surface": 6970000, - "canton": null, - "numero_insee": "51601" - } - }, - { - "pk": 27283, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VAVRAY-LE-PETIT", - "center": "POINT (774825.5961577650159597 2425827.5955536365509033)", - "surface": 5350000, - "canton": null, - "numero_insee": "51602" - } - }, - { - "pk": 13304, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VELYE", - "center": "POINT (732126.4634900582022965 2434069.8127783862873912)", - "surface": 10700000, - "canton": null, - "numero_insee": "51603" - } - }, - { - "pk": 30277, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VENTELAY", - "center": "POINT (706389.5525695419637486 2483583.9034340707585216)", - "surface": 14780000, - "canton": null, - "numero_insee": "51604" - } - }, - { - "pk": 10249, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VENTEUIL", - "center": "POINT (709929.8831798887113109 2455495.7583889267407358)", - "surface": 6260000, - "canton": null, - "numero_insee": "51605" - } - }, - { - "pk": 6928, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERDON", - "center": "POINT (694052.6984351412393153 2439750.8385932194069028)", - "surface": 11490000, - "canton": null, - "numero_insee": "51607" - } - }, - { - "pk": 8690, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERNANCOURT", - "center": "POINT (783187.1449810652993619 2431002.4476451403461397)", - "surface": 9080000, - "canton": null, - "numero_insee": "51608" - } - }, - { - "pk": 35868, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERNEUIL", - "center": "POINT (697510.7509128208039328 2456791.4066283698193729)", - "surface": 13010000, - "canton": null, - "numero_insee": "51609" - } - }, - { - "pk": 11294, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERRIERES", - "center": "POINT (787489.8351257804315537 2454454.8805862432345748)", - "surface": 5670000, - "canton": null, - "numero_insee": "51610" - } - }, - { - "pk": 26880, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERT-TOULON", - "center": "POINT (715259.5708014270057902 2428823.1201595617458224)", - "surface": 22200000, - "canton": null, - "numero_insee": "51611" - } - }, - { - "pk": 16448, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERTUS", - "center": "POINT (720505.0245614910963923 2435672.2429726812988520)", - "surface": 35670000, - "canton": null, - "numero_insee": "51612" - } - }, - { - "pk": 27475, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERZENAY", - "center": "POINT (731768.7284379246411845 2464386.8736620433628559)", - "surface": 10550000, - "canton": null, - "numero_insee": "51613" - } - }, - { - "pk": 7216, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VERZY", - "center": "POINT (733088.1925286320038140 2462196.6540962331928313)", - "surface": 13330000, - "canton": null, - "numero_insee": "51614" - } - }, - { - "pk": 6449, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VESIGNEUL-SUR-MARNE", - "center": "POINT (756352.1444264182355255 2432975.0623734625987709)", - "surface": 7920000, - "canton": null, - "numero_insee": "51616" - } - }, - { - "pk": 31353, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA VEUVE", - "center": "POINT (746095.3161006196169183 2450599.5879039019346237)", - "surface": 24620000, - "canton": null, - "numero_insee": "51617" - } - }, - { - "pk": 7762, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE VEZIER", - "center": "POINT (681983.3599020999390632 2423337.6575199202634394)", - "surface": 12350000, - "canton": null, - "numero_insee": "51618" - } - }, - { - "pk": 3675, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LE VIEIL-DAMPIERRE", - "center": "POINT (789464.4841996307950467 2445866.0403598877601326)", - "surface": 13890000, - "canton": null, - "numero_insee": "51619" - } - }, - { - "pk": 31938, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VIENNE-LA-VILLE", - "center": "POINT (783691.0920888534747064 2465729.8451449577696621)", - "surface": 7550000, - "canton": null, - "numero_insee": "51620" - } - }, - { - "pk": 18192, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VIENNE-LE-CHATEAU", - "center": "POINT (788761.5527367466129363 2469575.6330760265700519)", - "surface": 51470000, - "canton": null, - "numero_insee": "51621" - } - }, - { - "pk": 6072, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLE-EN-SELVE", - "center": "POINT (727206.0175189814763144 2459645.0330779938958585)", - "surface": 8920000, - "canton": null, - "numero_insee": "51623" - } - }, - { - "pk": 35361, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLE-EN-TARDENOIS", - "center": "POINT (706543.1108916688244790 2465473.5760918557643890)", - "surface": 11350000, - "canton": null, - "numero_insee": "51624" - } - }, - { - "pk": 30414, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA VILLENEUVE-LES-CHARLEVILLE", - "center": "POINT (700799.9431304231984541 2422896.5545686706900597)", - "surface": 11100000, - "canton": null, - "numero_insee": "51626" - } - }, - { - "pk": 26230, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLENEUVE-RENNEVILLE-CHEVIGNY", - "center": "POINT (726498.4362347653368488 2436923.9482430536299944)", - "surface": 17250000, - "canton": null, - "numero_insee": "51627" - } - }, - { - "pk": 26401, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLENEUVE-SAINT-VISTRE-ET-VILLEVOTTE", - "center": "POINT (705052.5885972013929859 2405220.3684397698380053)", - "surface": 9520000, - "canton": null, - "numero_insee": "51628" - } - }, - { - "pk": 7573, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-ALLERAND", - "center": "POINT (722666.0092787411995232 2464009.3453343333676457)", - "surface": 12350000, - "canton": null, - "numero_insee": "51629" - } - }, - { - "pk": 8828, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-AUX-BOIS", - "center": "POINT (716778.1711478427750990 2438542.5595833812840283)", - "surface": 5070000, - "canton": null, - "numero_insee": "51630" - } - }, - { - "pk": 26418, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-AUX-NOEUDS", - "center": "POINT (720837.7815302475355566 2467195.9015386747196317)", - "surface": 6480000, - "canton": null, - "numero_insee": "51631" - } - }, - { - "pk": 3994, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-EN-ARGONNE", - "center": "POINT (790431.7297371078748256 2449776.9041052032262087)", - "surface": 9530000, - "canton": null, - "numero_insee": "51632" - } - }, - { - "pk": 8681, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-FRANQUEUX", - "center": "POINT (717405.9396765170386061 2482476.5985220335423946)", - "surface": 3240000, - "canton": null, - "numero_insee": "51633" - } - }, - { - "pk": 31973, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-LE-CHATEAU", - "center": "POINT (741186.8427197675919160 2439450.4199854573234916)", - "surface": 20820000, - "canton": null, - "numero_insee": "51634" - } - }, - { - "pk": 33521, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-LE-SEC", - "center": "POINT (785018.1488227633526549 2427515.7023057467304170)", - "surface": 5890000, - "canton": null, - "numero_insee": "51635" - } - }, - { - "pk": 6983, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-MARMERY", - "center": "POINT (735902.5797304713632911 2460719.5998094873502851)", - "surface": 10660000, - "canton": null, - "numero_insee": "51636" - } - }, - { - "pk": 31927, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLERS-SOUS-CHATILLON", - "center": "POINT (708115.2524300918448716 2457081.4203545115888119)", - "surface": 4780000, - "canton": null, - "numero_insee": "51637" - } - }, - { - "pk": 28980, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLESENEUX", - "center": "POINT (732671.8391532774548978 2428770.8562896265648305)", - "surface": 25890000, - "canton": null, - "numero_insee": "51638" - } - }, - { - "pk": 38010, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "LA VILLE-SOUS-ORBAIS", - "center": "POINT (698139.8933816720964387 2441586.6634035971947014)", - "surface": 11090000, - "canton": null, - "numero_insee": "51639" - } - }, - { - "pk": 32059, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLE-SUR-TOURBE", - "center": "POINT (778556.5365211588796228 2469388.4064036537893116)", - "surface": 11230000, - "canton": null, - "numero_insee": "51640" - } - }, - { - "pk": 33507, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLEVENARD", - "center": "POINT (707169.9230600406881422 2426953.2780361832119524)", - "surface": 13370000, - "canton": null, - "numero_insee": "51641" - } - }, - { - "pk": 27981, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VILLIERS-AUX-CORNEILLES", - "center": "POINT (698908.0484580942429602 2398163.3914019791409373)", - "surface": 5920000, - "canton": null, - "numero_insee": "51642" - } - }, - { - "pk": 24107, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VINAY", - "center": "POINT (714302.8694282381329685 2447227.3671574653126299)", - "surface": 3160000, - "canton": null, - "numero_insee": "51643" - } - }, - { - "pk": 11604, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VINCELLES", - "center": "POINT (695115.2797049188520759 2456070.6556283137761056)", - "surface": 3560000, - "canton": null, - "numero_insee": "51644" - } - }, - { - "pk": 24342, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VINDEY", - "center": "POINT (700991.5785318241687492 2412090.7466876269318163)", - "surface": 8010000, - "canton": null, - "numero_insee": "51645" - } - }, - { - "pk": 36351, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VIRGINY", - "center": "POINT (776684.4801298734964803 2465970.2167331245727837)", - "surface": 12270000, - "canton": null, - "numero_insee": "51646" - } - }, - { - "pk": 24019, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VITRY-EN-PERTHOIS", - "center": "POINT (767878.4914993897546083 2419063.7404906796291471)", - "surface": 17700000, - "canton": null, - "numero_insee": "51647" - } - }, - { - "pk": 26472, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VITRY-LA-VILLE", - "center": "POINT (753890.6843929919414222 2428250.9064214569516480)", - "surface": 9210000, - "canton": null, - "numero_insee": "51648" - } - }, - { - "pk": 28478, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VITRY-LE-FRANCOIS", - "center": "POINT (765996.9429449391318485 2416746.1118938624858856)", - "surface": 6350000, - "canton": null, - "numero_insee": "51649" - } - }, - { - "pk": 5192, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VOILEMONT", - "center": "POINT (780204.3395315078087151 2452191.2009573061950505)", - "surface": 5860000, - "canton": null, - "numero_insee": "51650" - } - }, - { - "pk": 27680, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VOIPREUX", - "center": "POINT (725417.3224195014918223 2434613.2148109311237931)", - "surface": 4270000, - "canton": null, - "numero_insee": "51651" - } - }, - { - "pk": 26124, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VOUARCES", - "center": "POINT (714599.2875547835137695 2400497.9717501010745764)", - "surface": 5980000, - "canton": null, - "numero_insee": "51652" - } - }, - { - "pk": 7692, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VOUILLERS", - "center": "POINT (784645.1775365921203047 2412602.2626153044402599)", - "surface": 8290000, - "canton": null, - "numero_insee": "51654" - } - }, - { - "pk": 35122, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VOUZY", - "center": "POINT (729801.2695331589784473 2436851.9414044567383826)", - "surface": 9490000, - "canton": null, - "numero_insee": "51655" - } - }, - { - "pk": 9989, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VRAUX", - "center": "POINT (739595.7352028572931886 2450043.9587893141433597)", - "surface": 12860000, - "canton": null, - "numero_insee": "51656" - } - }, - { - "pk": 34594, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VRIGNY", - "center": "POINT (715091.1919387895613909 2472250.4209312372840941)", - "surface": 4450000, - "canton": null, - "numero_insee": "51657" - } - }, - { - "pk": 7013, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "VROIL", - "center": "POINT (788890.6017808235483244 2431051.1667851912789047)", - "surface": 10290000, - "canton": null, - "numero_insee": "51658" - } - }, - { - "pk": 29468, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "WARGEMOULIN-HURLUS", - "center": "POINT (769688.9671220894670114 2464909.8755865227431059)", - "surface": 15010000, - "canton": null, - "numero_insee": "51659" - } - }, - { - "pk": 29349, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "WARMERIVILLE", - "center": "POINT (738197.2532174740917981 2485054.7748014121316373)", - "surface": 23410000, - "canton": null, - "numero_insee": "51660" - } - }, - { - "pk": 31869, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "WITRY-LES-REIMS", - "center": "POINT (729141.4488138083834201 2479174.0959738213568926)", - "surface": 16620000, - "canton": null, - "numero_insee": "51662" - } - }, - { - "pk": 23996, - "model": "ishtar_common.town", - "fields": { - "departement": 52, - "name": "MAGENTA", - "center": "POINT (719165.0021769824670628 2452071.8128884430043399)", - "surface": 1000000, - "canton": null, - "numero_insee": "51663" - } - }, - { - "pk": 4629, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AGEVILLE", - "center": "POINT (823407.4709365307353437 2350088.6862962711602449)", - "surface": 19660000, - "canton": null, - "numero_insee": "52001" - } - }, - { - "pk": 5398, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AIGREMONT", - "center": "POINT (852813.9939161940710619 2340233.4526874530129135)", - "surface": 4870000, - "canton": null, - "numero_insee": "52002" - } - }, - { - "pk": 25864, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AILLIANVILLE", - "center": "POINT (833200.4606404710793868 2375090.9569002841599286)", - "surface": 23780000, - "canton": null, - "numero_insee": "52003" - } - }, - { - "pk": 8025, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AINGOULAINCOURT", - "center": "POINT (817477.1513384141726419 2388165.6830071709118783)", - "surface": 5130000, - "canton": null, - "numero_insee": "52004" - } - }, - { - "pk": 10489, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AIZANVILLE", - "center": "POINT (790393.0152341234497726 2348905.5281096729449928)", - "surface": 3490000, - "canton": null, - "numero_insee": "52005" - } - }, - { - "pk": 34651, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ALLICHAMPS", - "center": "POINT (788162.6931122504174709 2399122.8641600441187620)", - "surface": 2730000, - "canton": null, - "numero_insee": "52006" - } - }, - { - "pk": 11385, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AMBONVILLE", - "center": "POINT (798304.2411399314878508 2371689.8496644953265786)", - "surface": 14440000, - "canton": null, - "numero_insee": "52007" - } - }, - { - "pk": 20047, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ANDELOT-BLANCHEVILLE", - "center": "POINT (819088.0711837821872905 2363661.7352056046947837)", - "surface": 33250000, - "canton": null, - "numero_insee": "52008" - } - }, - { - "pk": 36545, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ANDILLY-EN-BASSIGNY", - "center": "POINT (837788.7327179796993732 2330196.9429702600464225)", - "surface": 8560000, - "canton": null, - "numero_insee": "52009" - } - }, - { - "pk": 5841, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ANNEVILLE-LA-PRAIRIE", - "center": "POINT (804415.1714687641942874 2359232.9628155026584864)", - "surface": 5170000, - "canton": null, - "numero_insee": "52011" - } - }, - { - "pk": 33396, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ANNONVILLE", - "center": "POINT (817243.8136299053439870 2380358.0859376140870154)", - "surface": 6180000, - "canton": null, - "numero_insee": "52012" - } - }, - { - "pk": 33712, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ANROSEY", - "center": "POINT (848672.6490986401913688 2321383.5677091125398874)", - "surface": 11110000, - "canton": null, - "numero_insee": "52013" - } - }, - { - "pk": 14411, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "APREY", - "center": "POINT (814427.6547179556218907 2311882.8217663681134582)", - "surface": 15820000, - "canton": null, - "numero_insee": "52014" - } - }, - { - "pk": 25600, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ARBIGNY-SOUS-VARENNES", - "center": "POINT (844856.2633875188184902 2322952.0248220795765519)", - "surface": 9740000, - "canton": null, - "numero_insee": "52015" - } - }, - { - "pk": 28123, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ARBOT", - "center": "POINT (800549.5256540064001456 2319770.2502198363654315)", - "surface": 13180000, - "canton": null, - "numero_insee": "52016" - } - }, - { - "pk": 5948, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ARC-EN-BARROIS", - "center": "POINT (800553.7588283685036004 2330978.8386987452395260)", - "surface": 50220000, - "canton": null, - "numero_insee": "52017" - } - }, - { - "pk": 37689, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ARNANCOURT", - "center": "POINT (790967.8327583970967680 2375329.8264894862659276)", - "surface": 9350000, - "canton": null, - "numero_insee": "52019" - } - }, - { - "pk": 33007, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ATTANCOURT", - "center": "POINT (792591.9843613638076931 2396058.5215581636875868)", - "surface": 12360000, - "canton": null, - "numero_insee": "52021" - } - }, - { - "pk": 36346, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AUBEPIERRE-SUR-AUBE", - "center": "POINT (795287.7549824132584035 2326530.4724184339866042)", - "surface": 43110000, - "canton": null, - "numero_insee": "52022" - } - }, - { - "pk": 14575, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AUBERIVE", - "center": "POINT (807517.6791556586977094 2312424.1460515270009637)", - "surface": 70730000, - "canton": null, - "numero_insee": "52023" - } - }, - { - "pk": 15684, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AUDELONCOURT", - "center": "POINT (837909.4805262879235670 2351113.7146299858577549)", - "surface": 11700000, - "canton": null, - "numero_insee": "52025" - } - }, - { - "pk": 34268, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AUJEURRES", - "center": "POINT (812658.0864792760694399 2308164.8017356242053211)", - "surface": 12960000, - "canton": null, - "numero_insee": "52027" - } - }, - { - "pk": 6418, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AULNOY-SUR-AUBE", - "center": "POINT (801864.9769609398208559 2318080.1921818624250591)", - "surface": 9390000, - "canton": null, - "numero_insee": "52028" - } - }, - { - "pk": 17869, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AUTIGNY-LE-GRAND", - "center": "POINT (807958.2147051835199818 2389585.2512364978902042)", - "surface": 3570000, - "canton": null, - "numero_insee": "52029" - } - }, - { - "pk": 16279, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AUTIGNY-LE-PETIT", - "center": "POINT (808148.9222266841679811 2390687.6674422160722315)", - "surface": 2510000, - "canton": null, - "numero_insee": "52030" - } - }, - { - "pk": 15774, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AUTREVILLE-SUR-LA-RENNE", - "center": "POINT (796582.6380904006073251 2350659.6893319408409297)", - "surface": 31580000, - "canton": null, - "numero_insee": "52031" - } - }, - { - "pk": 6019, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "AVRECOURT", - "center": "POINT (838752.4963341306429356 2334508.4782806932926178)", - "surface": 7630000, - "canton": null, - "numero_insee": "52033" - } - }, - { - "pk": 33741, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BAILLY-AUX-FORGES", - "center": "POINT (789967.2179058698238805 2387029.6925063696689904)", - "surface": 10670000, - "canton": null, - "numero_insee": "52034" - } - }, - { - "pk": 3516, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BAISSEY", - "center": "POINT (818350.9587588455760852 2309514.5550553388893604)", - "surface": 10000000, - "canton": null, - "numero_insee": "52035" - } - }, - { - "pk": 31975, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BALESMES-SUR-MARNE", - "center": "POINT (827490.5229446070734411 2317398.8982661883346736)", - "surface": 12570000, - "canton": null, - "numero_insee": "52036" - } - }, - { - "pk": 36378, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BANNES", - "center": "POINT (828310.5124010634608567 2326813.1380843441002071)", - "surface": 10090000, - "canton": null, - "numero_insee": "52037" - } - }, - { - "pk": 26726, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BASSONCOURT", - "center": "POINT (839952.0460757343098521 2346327.6596096423454583)", - "surface": 6560000, - "canton": null, - "numero_insee": "52038" - } - }, - { - "pk": 26218, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BAUDRECOURT", - "center": "POINT (794825.8942020502872765 2380566.5521240006200969)", - "surface": 8840000, - "canton": null, - "numero_insee": "52039" - } - }, - { - "pk": 31498, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BAY-SUR-AUBE", - "center": "POINT (803873.2166812182404101 2317296.7518673590384424)", - "surface": 9690000, - "canton": null, - "numero_insee": "52040" - } - }, - { - "pk": 36604, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BEAUCHEMIN", - "center": "POINT (817490.2076643790351227 2328221.5688210581429303)", - "surface": 12140000, - "canton": null, - "numero_insee": "52042" - } - }, - { - "pk": 37916, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BELMONT", - "center": "POINT (841388.6073888920946047 2307210.1201327764429152)", - "surface": 7360000, - "canton": null, - "numero_insee": "52043" - } - }, - { - "pk": 15221, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROCHES-BETTAINCOURT", - "center": "POINT (816628.2076491857878864 2370445.6382870706729591)", - "surface": 41440000, - "canton": null, - "numero_insee": "52044" - } - }, - { - "pk": 12064, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BETTANCOURT-LA-FERREE", - "center": "POINT (794177.5941844705957919 2409581.5537715465761721)", - "surface": 5360000, - "canton": null, - "numero_insee": "52045" - } - }, - { - "pk": 18052, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BEURVILLE", - "center": "POINT (787197.8386193253099918 2371494.8627952504903078)", - "surface": 23020000, - "canton": null, - "numero_insee": "52047" - } - }, - { - "pk": 20549, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BIESLES", - "center": "POINT (819615.2062644083052874 2348855.2997645363211632)", - "surface": 24080000, - "canton": null, - "numero_insee": "52050" - } - }, - { - "pk": 33318, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BIZE", - "center": "POINT (846876.5546475988812745 2320767.6821083864197135)", - "surface": 2080000, - "canton": null, - "numero_insee": "52051" - } - }, - { - "pk": 36844, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BLAISY", - "center": "POINT (798838.8334875790169463 2355982.9084355141967535)", - "surface": 5630000, - "canton": null, - "numero_insee": "52053" - } - }, - { - "pk": 25942, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BLECOURT", - "center": "POINT (803344.2322773793712258 2379138.3125197263434529)", - "surface": 7220000, - "canton": null, - "numero_insee": "52055" - } - }, - { - "pk": 31691, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BLESSONVILLE", - "center": "POINT (799448.6875575896119699 2343178.5930502568371594)", - "surface": 9730000, - "canton": null, - "numero_insee": "52056" - } - }, - { - "pk": 26601, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BLUMERAY", - "center": "POINT (787261.1510714911855757 2375798.5217068428173661)", - "surface": 14740000, - "canton": null, - "numero_insee": "52057" - } - }, - { - "pk": 30423, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BOLOGNE", - "center": "POINT (808517.8932926226407290 2359268.0673762336373329)", - "surface": 31230000, - "canton": null, - "numero_insee": "52058" - } - }, - { - "pk": 4892, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BONNECOURT", - "center": "POINT (834762.6359549872577190 2332973.1097942418418825)", - "surface": 10800000, - "canton": null, - "numero_insee": "52059" - } - }, - { - "pk": 16234, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BOURBONNE-LES-BAINS", - "center": "POINT (854280.2997039165347815 2332640.3004837166517973)", - "surface": 65130000, - "canton": null, - "numero_insee": "52060" - } - }, - { - "pk": 18878, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BOURDONS-SUR-ROGNON", - "center": "POINT (823246.5196358943358064 2357192.5762627325020730)", - "surface": 39820000, - "canton": null, - "numero_insee": "52061" - } - }, - { - "pk": 7572, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BOURG", - "center": "POINT (822908.7511585853062570 2314857.7036100830882788)", - "surface": 7170000, - "canton": null, - "numero_insee": "52062" - } - }, - { - "pk": 12913, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BOURG-SAINTE-MARIE", - "center": "POINT (839143.3679414367070422 2358930.0879243840463459)", - "surface": 9240000, - "canton": null, - "numero_insee": "52063" - } - }, - { - "pk": 15136, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BOURMONT", - "center": "POINT (842626.7955416487529874 2361161.6112219849601388)", - "surface": 16140000, - "canton": null, - "numero_insee": "52064" - } - }, - { - "pk": 36772, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BOUZANCOURT", - "center": "POINT (793800.4436164820799604 2371751.4216003576293588)", - "surface": 11800000, - "canton": null, - "numero_insee": "52065" - } - }, - { - "pk": 7949, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BRACHAY", - "center": "POINT (799941.1731785311130807 2379209.2778541413135827)", - "surface": 7420000, - "canton": null, - "numero_insee": "52066" - } - }, - { - "pk": 11295, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BRAINVILLE-SUR-MEUSE", - "center": "POINT (842054.7452148493612185 2357854.2641906444914639)", - "surface": 6000000, - "canton": null, - "numero_insee": "52067" - } - }, - { - "pk": 27706, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BRAUX-LE-CHATEL", - "center": "POINT (793801.2854572955984622 2348234.1295635523274541)", - "surface": 10780000, - "canton": null, - "numero_insee": "52069" - } - }, - { - "pk": 11425, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BRENNES", - "center": "POINT (820605.4287845259532332 2315038.1250850996002555)", - "surface": 9980000, - "canton": null, - "numero_insee": "52070" - } - }, - { - "pk": 14131, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BRETHENAY", - "center": "POINT (808257.9422960411757231 2354562.3692326899617910)", - "surface": 8960000, - "canton": null, - "numero_insee": "52072" - } - }, - { - "pk": 22235, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BREUVANNES-EN-BASSIGNY", - "center": "POINT (843841.7909649282228202 2347862.1710181073285639)", - "surface": 48590000, - "canton": null, - "numero_insee": "52074" - } - }, - { - "pk": 31279, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BRIAUCOURT", - "center": "POINT (812411.0590780017664656 2360402.2017231290228665)", - "surface": 9570000, - "canton": null, - "numero_insee": "52075" - } - }, - { - "pk": 28391, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BRICON", - "center": "POINT (797320.7478757019853219 2346262.7196925552561879)", - "surface": 9830000, - "canton": null, - "numero_insee": "52076" - } - }, - { - "pk": 36533, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BROUSSEVAL", - "center": "POINT (795134.6285890983417630 2391276.8488433533348143)", - "surface": 5980000, - "canton": null, - "numero_insee": "52079" - } - }, - { - "pk": 37080, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BUGNIERES", - "center": "POINT (805543.4917090786620975 2332622.7296702046878636)", - "surface": 18550000, - "canton": null, - "numero_insee": "52082" - } - }, - { - "pk": 22525, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAMPSEVRAINE", - "center": "POINT (839045.7689642792101949 2311993.7463321811519563)", - "surface": 40910000, - "canton": null, - "numero_insee": "52083" - } - }, - { - "pk": 12290, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BUSSON", - "center": "POINT (822998.0996065571671352 2374503.1197634646669030)", - "surface": 9920000, - "canton": null, - "numero_insee": "52084" - } - }, - { - "pk": 8468, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BUXIERES-LES-CLEFMONT", - "center": "POINT (832632.5303745444398373 2347966.1325757065787911)", - "surface": 5970000, - "canton": null, - "numero_insee": "52085" - } - }, - { - "pk": 24139, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BUXIERES-LES-VILLIERS", - "center": "POINT (800307.3670980331953615 2348089.5990027608349919)", - "surface": 4960000, - "canton": null, - "numero_insee": "52087" - } - }, - { - "pk": 17484, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CEFFONDS", - "center": "POINT (778373.4410436834441498 2385329.5436841193586588)", - "surface": 36580000, - "canton": null, - "numero_insee": "52088" - } - }, - { - "pk": 13208, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CELLES-EN-BASSIGNY", - "center": "POINT (840204.9821505134459585 2328516.3820365979336202)", - "surface": 8930000, - "canton": null, - "numero_insee": "52089" - } - }, - { - "pk": 30130, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CELSOY", - "center": "POINT (836050.1632111674407497 2322876.4502095947973430)", - "surface": 5460000, - "canton": null, - "numero_insee": "52090" - } - }, - { - "pk": 7776, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CERISIERES", - "center": "POINT (803411.0000043890904635 2371333.2333063902333379)", - "surface": 9910000, - "canton": null, - "numero_insee": "52091" - } - }, - { - "pk": 32162, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHALANCEY", - "center": "POINT (810116.2026521834777668 2301137.5849672369658947)", - "surface": 13640000, - "canton": null, - "numero_insee": "52092" - } - }, - { - "pk": 17688, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHALINDREY", - "center": "POINT (832615.5332720815204084 2314940.9091476718895137)", - "surface": 20170000, - "canton": null, - "numero_insee": "52093" - } - }, - { - "pk": 17440, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VALS-DES-TILLES", - "center": "POINT (805997.0283542885445058 2303003.8267214810475707)", - "surface": 37270000, - "canton": null, - "numero_insee": "52094" - } - }, - { - "pk": 28595, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHALVRAINES", - "center": "POINT (835099.5019105285173282 2363698.9246451156213880)", - "surface": 26200000, - "canton": null, - "numero_insee": "52095" - } - }, - { - "pk": 24926, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAMBRONCOURT", - "center": "POINT (826980.1195538499159738 2376938.9910974460653961)", - "surface": 10180000, - "canton": null, - "numero_insee": "52097" - } - }, - { - "pk": 15729, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAMOUILLEY", - "center": "POINT (800125.7758649336174130 2404428.7776582157239318)", - "surface": 7830000, - "canton": null, - "numero_insee": "52099" - } - }, - { - "pk": 24684, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAMPIGNEULLES-EN-BASSIGNY", - "center": "POINT (845000.4971562618156895 2352775.7729129507206380)", - "surface": 6840000, - "canton": null, - "numero_insee": "52101" - } - }, - { - "pk": 18881, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAMPIGNY-LES-LANGRES", - "center": "POINT (825014.2391516515053809 2326084.3499462530016899)", - "surface": 6410000, - "canton": null, - "numero_insee": "52102" - } - }, - { - "pk": 31368, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAMPIGNY-SOUS-VARENNES", - "center": "POINT (846246.0636298898607492 2324264.9543200740590692)", - "surface": 5820000, - "canton": null, - "numero_insee": "52103" - } - }, - { - "pk": 12795, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHANCENAY", - "center": "POINT (794659.9432064384454861 2411687.1386288711801171)", - "surface": 10080000, - "canton": null, - "numero_insee": "52104" - } - }, - { - "pk": 30709, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHANGEY", - "center": "POINT (827686.9375089444220066 2329509.8508524042554200)", - "surface": 6610000, - "canton": null, - "numero_insee": "52105" - } - }, - { - "pk": 14207, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHANOY", - "center": "POINT (820188.6378061174182221 2328644.9863940393552184)", - "surface": 2060000, - "canton": null, - "numero_insee": "52106" - } - }, - { - "pk": 20330, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHANTRAINES", - "center": "POINT (815804.7441039611585438 2361431.9961702125146985)", - "surface": 10420000, - "canton": null, - "numero_insee": "52107" - } - }, - { - "pk": 12094, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHARMES", - "center": "POINT (825490.5704057336552069 2328890.5680316924117506)", - "surface": 6110000, - "canton": null, - "numero_insee": "52108" - } - }, - { - "pk": 26007, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHARMES-EN-L'ANGLE", - "center": "POINT (797161.6021943858359009 2376583.6331594586372375)", - "surface": 7380000, - "canton": null, - "numero_insee": "52109" - } - }, - { - "pk": 25609, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHARMES-LA-GRANDE", - "center": "POINT (796937.5184008050709963 2379383.7390321227721870)", - "surface": 11500000, - "canton": null, - "numero_insee": "52110" - } - }, - { - "pk": 18272, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHASSIGNY", - "center": "POINT (828484.6545176014769822 2306498.9718843083828688)", - "surface": 15990000, - "canton": null, - "numero_insee": "52113" - } - }, - { - "pk": 15126, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHATEAUVILLAIN", - "center": "POINT (793572.9172479808330536 2339825.8887107674963772)", - "surface": 107260000, - "canton": null, - "numero_insee": "52114" - } - }, - { - "pk": 10786, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHATENAY-MACHERON", - "center": "POINT (828353.4051558159990236 2321809.6788783706724644)", - "surface": 6080000, - "canton": null, - "numero_insee": "52115" - } - }, - { - "pk": 32183, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHATENAY-VAUDIN", - "center": "POINT (832859.9601628417149186 2321448.0125057175755501)", - "surface": 3660000, - "canton": null, - "numero_insee": "52116" - } - }, - { - "pk": 25792, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHATONRUPT-SOMMERMONT", - "center": "POINT (804356.7673230688087642 2389454.3624170995317400)", - "surface": 16730000, - "canton": null, - "numero_insee": "52118" - } - }, - { - "pk": 23314, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAUDENAY", - "center": "POINT (836890.2094554812647402 2318280.1212815479375422)", - "surface": 4700000, - "canton": null, - "numero_insee": "52119" - } - }, - { - "pk": 7854, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAUFFOURT", - "center": "POINT (831344.0023046745918691 2334845.2297593820840120)", - "surface": 9660000, - "canton": null, - "numero_insee": "52120" - } - }, - { - "pk": 19560, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAUMONT", - "center": "POINT (808814.7969018496805802 2347962.2275461563840508)", - "surface": 55340000, - "canton": null, - "numero_insee": "52121" - } - }, - { - "pk": 3123, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAUMONT-LA-VILLE", - "center": "POINT (846485.1742077921517193 2354689.9336619479581714)", - "surface": 11290000, - "canton": null, - "numero_insee": "52122" - } - }, - { - "pk": 23853, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHEVILLON", - "center": "POINT (807402.2318160776048899 2396085.1119215646758676)", - "surface": 37360000, - "canton": null, - "numero_insee": "52123" - } - }, - { - "pk": 16661, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHEZEAUX", - "center": "POINT (849339.6147564242128283 2325292.2871239776723087)", - "surface": 10670000, - "canton": null, - "numero_insee": "52124" - } - }, - { - "pk": 31334, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHAMARANDES-CHOIGNES", - "center": "POINT (812412.0791681167902425 2348593.4656068640761077)", - "surface": 18760000, - "canton": null, - "numero_insee": "52125" - } - }, - { - "pk": 29447, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHOILLEY-DARDENAY", - "center": "POINT (827438.7732577129499987 2300085.0032409452833235)", - "surface": 17750000, - "canton": null, - "numero_insee": "52126" - } - }, - { - "pk": 28575, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CHOISEUL", - "center": "POINT (841070.8253613114356995 2344235.6882242853753269)", - "surface": 8650000, - "canton": null, - "numero_insee": "52127" - } - }, - { - "pk": 15192, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CIREY-SUR-BLAISE", - "center": "POINT (792683.4767406894825399 2373643.2552133132703602)", - "surface": 16640000, - "canton": null, - "numero_insee": "52129" - } - }, - { - "pk": 13185, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CIRFONTAINES-EN-AZOIS", - "center": "POINT (788098.3082349319010973 2348085.3293816195800900)", - "surface": 11700000, - "canton": null, - "numero_insee": "52130" - } - }, - { - "pk": 23759, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CIRFONTAINES-EN-ORNOIS", - "center": "POINT (825783.3316956493072212 2388136.7888701567426324)", - "surface": 13960000, - "canton": null, - "numero_insee": "52131" - } - }, - { - "pk": 4333, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CLEFMONT", - "center": "POINT (834810.8343007407383993 2350686.8311886056326330)", - "surface": 19550000, - "canton": null, - "numero_insee": "52132" - } - }, - { - "pk": 31124, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CLINCHAMP", - "center": "POINT (831431.3837623513536528 2359664.5162649876438081)", - "surface": 16200000, - "canton": null, - "numero_insee": "52133" - } - }, - { - "pk": 15931, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COHONS", - "center": "POINT (825118.0074672237969935 2313975.9389348970726132)", - "surface": 12470000, - "canton": null, - "numero_insee": "52134" - } - }, - { - "pk": 14315, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COIFFY-LE-BAS", - "center": "POINT (848311.4214512661565095 2328485.9014295716769993)", - "surface": 11440000, - "canton": null, - "numero_insee": "52135" - } - }, - { - "pk": 37541, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COIFFY-LE-HAUT", - "center": "POINT (850719.9521310415584594 2327705.9785544904880226)", - "surface": 9630000, - "canton": null, - "numero_insee": "52136" - } - }, - { - "pk": 34227, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COLMIER-LE-BAS", - "center": "POINT (795018.3288175016641617 2311216.4114041905850172)", - "surface": 6060000, - "canton": null, - "numero_insee": "52137" - } - }, - { - "pk": 21847, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COLMIER-LE-HAUT", - "center": "POINT (798606.3104461277835071 2312948.3956675562076271)", - "surface": 19630000, - "canton": null, - "numero_insee": "52138" - } - }, - { - "pk": 22587, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COLOMBEY-LES-DEUX-EGLISES", - "center": "POINT (791866.6866227480350062 2363829.1293529062531888)", - "surface": 74040000, - "canton": null, - "numero_insee": "52140" - } - }, - { - "pk": 6218, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CONDES", - "center": "POINT (808772.8345410166075453 2352865.5149380303919315)", - "surface": 5120000, - "canton": null, - "numero_insee": "52141" - } - }, - { - "pk": 8741, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CONSIGNY", - "center": "POINT (828658.6949360645376146 2356238.2279871120117605)", - "surface": 11010000, - "canton": null, - "numero_insee": "52142" - } - }, - { - "pk": 18270, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COUBLANC", - "center": "POINT (833610.5680151559645310 2303940.8932932354509830)", - "surface": 19350000, - "canton": null, - "numero_insee": "52145" - } - }, - { - "pk": 26261, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COUPRAY", - "center": "POINT (794322.9945321105187759 2334027.9238347224891186)", - "surface": 12210000, - "canton": null, - "numero_insee": "52146" - } - }, - { - "pk": 18269, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COURCELLES-EN-MONTAGNE", - "center": "POINT (815361.5238454407081008 2319696.8357922709546983)", - "surface": 15310000, - "canton": null, - "numero_insee": "52147" - } - }, - { - "pk": 30411, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COURCELLES-SUR-BLAISE", - "center": "POINT (792808.3524072438012809 2382450.6745597547851503)", - "surface": 5750000, - "canton": null, - "numero_insee": "52149" - } - }, - { - "pk": 31231, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "COUR-L'EVEQUE", - "center": "POINT (797424.2579788900911808 2334154.5072924392297864)", - "surface": 19430000, - "canton": null, - "numero_insee": "52151" - } - }, - { - "pk": 33561, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CULMONT", - "center": "POINT (832481.1367510252166539 2318942.8418412208557129)", - "surface": 8410000, - "canton": null, - "numero_insee": "52155" - } - }, - { - "pk": 5363, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CUREL", - "center": "POINT (807633.1881125217769295 2392484.5344677492976189)", - "surface": 7820000, - "canton": null, - "numero_insee": "52156" - } - }, - { - "pk": 29469, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CURMONT", - "center": "POINT (794157.9416071607265621 2365049.5893721454776824)", - "surface": 2980000, - "canton": null, - "numero_insee": "52157" - } - }, - { - "pk": 18271, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CUSEY", - "center": "POINT (826573.2975160288624465 2295974.3632360114715993)", - "surface": 23490000, - "canton": null, - "numero_insee": "52158" - } - }, - { - "pk": 28615, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "CUVES", - "center": "POINT (830626.8933038986288011 2348449.3057599812746048)", - "surface": 5420000, - "canton": null, - "numero_insee": "52159" - } - }, - { - "pk": 13829, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DAILLANCOURT", - "center": "POINT (792918.6687648022780195 2369542.2846770812757313)", - "surface": 8020000, - "canton": null, - "numero_insee": "52160" - } - }, - { - "pk": 24936, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DAILLECOURT", - "center": "POINT (836250.4079958219081163 2346195.8211855236440897)", - "surface": 7400000, - "canton": null, - "numero_insee": "52161" - } - }, - { - "pk": 24347, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DAMMARTIN-SUR-MEUSE", - "center": "POINT (842441.2836393621983007 2336141.3490756931714714)", - "surface": 15830000, - "canton": null, - "numero_insee": "52162" - } - }, - { - "pk": 8188, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DAMPIERRE", - "center": "POINT (828755.9515087346080691 2333221.8266514958813787)", - "surface": 16170000, - "canton": null, - "numero_insee": "52163" - } - }, - { - "pk": 35440, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DAMREMONT", - "center": "POINT (846772.5778938159346581 2332876.0348913180641830)", - "surface": 4780000, - "canton": null, - "numero_insee": "52164" - } - }, - { - "pk": 26613, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DANCEVOIR", - "center": "POINT (789961.8751675114035606 2329086.9440383594483137)", - "surface": 25640000, - "canton": null, - "numero_insee": "52165" - } - }, - { - "pk": 29390, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DARMANNES", - "center": "POINT (814650.2193247228860855 2356018.1252179443836212)", - "surface": 18320000, - "canton": null, - "numero_insee": "52167" - } - }, - { - "pk": 30854, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DINTEVILLE", - "center": "POINT (784160.5549481895286590 2340446.0138767478056252)", - "surface": 15730000, - "canton": null, - "numero_insee": "52168" - } - }, - { - "pk": 10366, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOMBLAIN", - "center": "POINT (797059.7960046741645783 2388491.3119416199624538)", - "surface": 5360000, - "canton": null, - "numero_insee": "52169" - } - }, - { - "pk": 5282, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOMMARIEN", - "center": "POINT (826311.4043624649057165 2303177.7683101696893573)", - "surface": 17910000, - "canton": null, - "numero_insee": "52170" - } - }, - { - "pk": 13166, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOMMARTIN-LE-FRANC", - "center": "POINT (793496.8308709167176858 2383857.5635696239769459)", - "surface": 9970000, - "canton": null, - "numero_insee": "52171" - } - }, - { - "pk": 14487, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOMMARTIN-LE-SAINT-PERE", - "center": "POINT (790818.1771160995122045 2381132.7332030413672328)", - "surface": 14900000, - "canton": null, - "numero_insee": "52172" - } - }, - { - "pk": 24611, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOMREMY-LANDEVILLE", - "center": "POINT (816068.7470031928969547 2377345.8554981779307127)", - "surface": 18640000, - "canton": null, - "numero_insee": "52173" - } - }, - { - "pk": 24138, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DONCOURT-SUR-MEUSE", - "center": "POINT (841687.9790991166373715 2353948.2256853589788079)", - "surface": 5970000, - "canton": null, - "numero_insee": "52174" - } - }, - { - "pk": 17106, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DONJEUX", - "center": "POINT (809372.1022494764765725 2376387.8688901574350893)", - "surface": 12880000, - "canton": null, - "numero_insee": "52175" - } - }, - { - "pk": 15864, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOULAINCOURT-SAUCOURT", - "center": "POINT (812709.3745572329498827 2372313.4633741662837565)", - "surface": 43940000, - "canton": null, - "numero_insee": "52177" - } - }, - { - "pk": 20234, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOULEVANT-LE-CHATEAU", - "center": "POINT (791147.4421741014812142 2377733.0963515113107860)", - "surface": 22290000, - "canton": null, - "numero_insee": "52178" - } - }, - { - "pk": 11130, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "DOULEVANT-LE-PETIT", - "center": "POINT (793372.8201882105786353 2386658.5088844727724791)", - "surface": 2980000, - "canton": null, - "numero_insee": "52179" - } - }, - { - "pk": 8258, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ECHENAY", - "center": "POINT (820071.1024019605247304 2389088.5481611276045442)", - "surface": 9540000, - "canton": null, - "numero_insee": "52181" - } - }, - { - "pk": 16903, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ECLARON-BRAUCOURT-SAINTE-LIVIERE", - "center": "POINT (784149.9112906596856192 2400289.4348656088113785)", - "surface": 59180000, - "canton": null, - "numero_insee": "52182" - } - }, - { - "pk": 24683, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ECOT-LA-COMBE", - "center": "POINT (827417.5753463015425950 2360931.0579463578760624)", - "surface": 20840000, - "canton": null, - "numero_insee": "52183" - } - }, - { - "pk": 11480, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "EFFINCOURT", - "center": "POINT (816240.3858659132383764 2392358.0839716568589211)", - "surface": 12280000, - "canton": null, - "numero_insee": "52184" - } - }, - { - "pk": 10535, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ENFONVELLE", - "center": "POINT (863608.1956121136900038 2330218.5885364920832217)", - "surface": 12310000, - "canton": null, - "numero_insee": "52185" - } - }, - { - "pk": 26998, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "EPIZON", - "center": "POINT (821853.6515482317190617 2379597.0029168431647122)", - "surface": 23130000, - "canton": null, - "numero_insee": "52187" - } - }, - { - "pk": 21844, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LE VAL-D'ESNOMS", - "center": "POINT (816105.8939227110240608 2302890.1871260749176145)", - "surface": 33010000, - "canton": null, - "numero_insee": "52189" - } - }, - { - "pk": 21255, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ESNOUVEAUX", - "center": "POINT (824188.2835118703078479 2352397.0890603750012815)", - "surface": 17070000, - "canton": null, - "numero_insee": "52190" - } - }, - { - "pk": 10524, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "EUFFIGNEIX", - "center": "POINT (801482.5002204125048593 2351101.8821643404662609)", - "surface": 8990000, - "canton": null, - "numero_insee": "52193" - } - }, - { - "pk": 27873, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "EURVILLE-BIENVILLE", - "center": "POINT (798753.1342857026029378 2401114.7207885482348502)", - "surface": 20900000, - "canton": null, - "numero_insee": "52194" - } - }, - { - "pk": 30102, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FARINCOURT", - "center": "POINT (850915.0809907413786277 2304990.1198154287412763)", - "surface": 5050000, - "canton": null, - "numero_insee": "52195" - } - }, - { - "pk": 11862, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FAVEROLLES", - "center": "POINT (815755.6188131863018498 2332109.6799533464945853)", - "surface": 17560000, - "canton": null, - "numero_insee": "52196" - } - }, - { - "pk": 21738, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FAYL-BILLOT", - "center": "POINT (844826.6429391856072471 2314745.4542564661242068)", - "surface": 43270000, - "canton": null, - "numero_insee": "52197" - } - }, - { - "pk": 32113, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FAYS", - "center": "POINT (799752.1123901775572449 2389615.1180774429813027)", - "surface": 6020000, - "canton": null, - "numero_insee": "52198" - } - }, - { - "pk": 25941, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FERRIERE-ET-LAFOLIE", - "center": "POINT (802825.9330148642184213 2381235.3918399661779404)", - "surface": 7940000, - "canton": null, - "numero_insee": "52199" - } - }, - { - "pk": 23750, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FLAGEY", - "center": "POINT (817914.6829651714069769 2313714.0735326884314418)", - "surface": 8320000, - "canton": null, - "numero_insee": "52200" - } - }, - { - "pk": 28324, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FLAMMERECOURT", - "center": "POINT (800661.3098273349460214 2376913.7757290443405509)", - "surface": 10620000, - "canton": null, - "numero_insee": "52201" - } - }, - { - "pk": 11041, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FONTAINES-SUR-MARNE", - "center": "POINT (805175.1499508260749280 2399068.1745016928762197)", - "surface": 6420000, - "canton": null, - "numero_insee": "52203" - } - }, - { - "pk": 11043, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FORCEY", - "center": "POINT (825571.2092296546325088 2354510.5007195789366961)", - "surface": 5340000, - "canton": null, - "numero_insee": "52204" - } - }, - { - "pk": 20533, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FOULAIN", - "center": "POINT (811087.3698649717262015 2339675.4577452274970710)", - "surface": 26760000, - "canton": null, - "numero_insee": "52205" - } - }, - { - "pk": 28374, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FRAMPAS", - "center": "POINT (784403.0183390114689246 2394087.2167318142019212)", - "surface": 10300000, - "canton": null, - "numero_insee": "52206" - } - }, - { - "pk": 8593, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FRECOURT", - "center": "POINT (832766.4149817586876452 2332355.5325351068750024)", - "surface": 6230000, - "canton": null, - "numero_insee": "52207" - } - }, - { - "pk": 20496, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FRESNES-SUR-APANCE", - "center": "POINT (861186.7539125346811488 2332499.5159000656567514)", - "surface": 16540000, - "canton": null, - "numero_insee": "52208" - } - }, - { - "pk": 25738, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FRONCLES", - "center": "POINT (807922.5077357235131785 2370371.1062066131271422)", - "surface": 20410000, - "canton": null, - "numero_insee": "52211" - } - }, - { - "pk": 11333, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "FRONVILLE", - "center": "POINT (807125.2874290096806362 2381672.4641726110130548)", - "surface": 11100000, - "canton": null, - "numero_insee": "52212" - } - }, - { - "pk": 22695, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GENEVRIERES", - "center": "POINT (844987.7109063878888264 2307641.3255398445762694)", - "surface": 13060000, - "canton": null, - "numero_insee": "52213" - } - }, - { - "pk": 6941, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LA GENEVROYE", - "center": "POINT (801841.6201293729245663 2367617.1123154931701720)", - "surface": 2790000, - "canton": null, - "numero_insee": "52214" - } - }, - { - "pk": 12627, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GERMAINES", - "center": "POINT (801495.5048851997125894 2314474.2578795067965984)", - "surface": 8680000, - "canton": null, - "numero_insee": "52216" - } - }, - { - "pk": 25851, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GERMAINVILLIERS", - "center": "POINT (845913.9895685398951173 2351282.5006380714476109)", - "surface": 6660000, - "canton": null, - "numero_insee": "52217" - } - }, - { - "pk": 8140, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GERMISAY", - "center": "POINT (824542.5362081966595724 2381121.1288008731789887)", - "surface": 6650000, - "canton": null, - "numero_insee": "52219" - } - }, - { - "pk": 26612, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GIEY-SUR-AUJON", - "center": "POINT (803194.9134191086050123 2326397.9250481934286654)", - "surface": 30400000, - "canton": null, - "numero_insee": "52220" - } - }, - { - "pk": 34706, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GILLANCOURT", - "center": "POINT (797956.1999247435014695 2353873.8073830856010318)", - "surface": 15070000, - "canton": null, - "numero_insee": "52221" - } - }, - { - "pk": 17870, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GILLAUME", - "center": "POINT (822466.6369495745748281 2389809.5750240222550929)", - "surface": 5170000, - "canton": null, - "numero_insee": "52222" - } - }, - { - "pk": 35923, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GILLEY", - "center": "POINT (847320.2677788174478337 2304058.5430936887860298)", - "surface": 10500000, - "canton": null, - "numero_insee": "52223" - } - }, - { - "pk": 13470, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GONCOURT", - "center": "POINT (841791.0456853605573997 2365257.4512836360372603)", - "surface": 18910000, - "canton": null, - "numero_insee": "52225" - } - }, - { - "pk": 5724, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GRAFFIGNY-CHEMIN", - "center": "POINT (846061.7050438956357539 2357388.2980461451224983)", - "surface": 17310000, - "canton": null, - "numero_insee": "52227" - } - }, - { - "pk": 30708, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GRANDCHAMP", - "center": "POINT (833182.8226777081144974 2307139.7217694083228707)", - "surface": 4790000, - "canton": null, - "numero_insee": "52228" - } - }, - { - "pk": 15120, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GRENANT", - "center": "POINT (836899.1684566769981757 2305570.3506199857220054)", - "surface": 13000000, - "canton": null, - "numero_insee": "52229" - } - }, - { - "pk": 28375, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GUDMONT-VILLIERS", - "center": "POINT (806386.4196528070606291 2374460.9411645261570811)", - "surface": 16770000, - "canton": null, - "numero_insee": "52230" - } - }, - { - "pk": 33006, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GUINDRECOURT-AUX-ORMES", - "center": "POINT (799871.0027230181731284 2387414.5645235981792212)", - "surface": 9050000, - "canton": null, - "numero_insee": "52231" - } - }, - { - "pk": 36084, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GUINDRECOURT-SUR-BLAISE", - "center": "POINT (796119.0554993150290102 2369769.7848756015300751)", - "surface": 5530000, - "canton": null, - "numero_insee": "52232" - } - }, - { - "pk": 9233, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "GUYONVELLE", - "center": "POINT (852260.5344349166844040 2323115.6925892112776637)", - "surface": 5340000, - "canton": null, - "numero_insee": "52233" - } - }, - { - "pk": 25293, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HACOURT", - "center": "POINT (841370.5993758492404595 2355946.9849050636403263)", - "surface": 2990000, - "canton": null, - "numero_insee": "52234" - } - }, - { - "pk": 31941, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HALLIGNICOURT", - "center": "POINT (786782.3811680700164288 2408417.5945310713723302)", - "surface": 11780000, - "canton": null, - "numero_insee": "52235" - } - }, - { - "pk": 3058, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HARREVILLE-LES-CHANTEURS", - "center": "POINT (843767.4495335522806272 2368176.5436693313531578)", - "surface": 15870000, - "canton": null, - "numero_insee": "52237" - } - }, - { - "pk": 19432, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HEUILLEY-COTTON", - "center": "POINT (826841.4977286357898265 2311388.6965440111234784)", - "surface": 10040000, - "canton": null, - "numero_insee": "52239" - } - }, - { - "pk": 31123, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HEUILLEY-LE-GRAND", - "center": "POINT (829253.4771252017235383 2310208.4408874041400850)", - "surface": 12200000, - "canton": null, - "numero_insee": "52240" - } - }, - { - "pk": 15773, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HAUTE-AMANCE", - "center": "POINT (839168.6272610296728089 2321001.7476548911072314)", - "surface": 46500000, - "canton": null, - "numero_insee": "52242" - } - }, - { - "pk": 10151, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HUILLIECOURT", - "center": "POINT (837667.2720228314865381 2356015.2756747361272573)", - "surface": 8850000, - "canton": null, - "numero_insee": "52243" - } - }, - { - "pk": 7344, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HUMBECOURT", - "center": "POINT (790748.9453990572365001 2400946.2288073669187725)", - "surface": 20980000, - "canton": null, - "numero_insee": "52244" - } - }, - { - "pk": 10071, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HUMBERVILLE", - "center": "POINT (825836.8096466661663726 2370224.3223430979996920)", - "surface": 6420000, - "canton": null, - "numero_insee": "52245" - } - }, - { - "pk": 21538, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "HUMES-JORQUENAY", - "center": "POINT (821805.1713081869529560 2326857.4628226188942790)", - "surface": 15710000, - "canton": null, - "numero_insee": "52246" - } - }, - { - "pk": 5244, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ILLOUD", - "center": "POINT (838914.8954225076595321 2362230.5600848938338459)", - "surface": 13830000, - "canton": null, - "numero_insee": "52247" - } - }, - { - "pk": 11392, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "IS-EN-BASSIGNY", - "center": "POINT (831885.1988448525080457 2341755.0770387537777424)", - "surface": 19440000, - "canton": null, - "numero_insee": "52248" - } - }, - { - "pk": 26841, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ISOMES", - "center": "POINT (823058.7954110903665423 2297345.3488692184910178)", - "surface": 10720000, - "canton": null, - "numero_insee": "52249" - } - }, - { - "pk": 20296, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "JOINVILLE", - "center": "POINT (806193.8813695242861286 2385267.0787256774492562)", - "surface": 19110000, - "canton": null, - "numero_insee": "52250" - } - }, - { - "pk": 15686, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "JONCHERY", - "center": "POINT (803661.7193182521732524 2353722.4516158392652869)", - "surface": 28920000, - "canton": null, - "numero_insee": "52251" - } - }, - { - "pk": 22459, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "JUZENNECOURT", - "center": "POINT (796818.6811658139340580 2358167.2619222644716501)", - "surface": 12110000, - "canton": null, - "numero_insee": "52253" - } - }, - { - "pk": 20628, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LACHAPELLE-EN-BLAISY", - "center": "POINT (795002.9448662216309458 2359852.9937426061369479)", - "surface": 16790000, - "canton": null, - "numero_insee": "52254" - } - }, - { - "pk": 12421, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAFAUCHE", - "center": "POINT (834027.5931202025385574 2371995.7991288704797626)", - "surface": 5140000, - "canton": null, - "numero_insee": "52256" - } - }, - { - "pk": 13196, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAFERTE-SUR-AMANCE", - "center": "POINT (851383.9807960167527199 2320306.0109139340929687)", - "surface": 7990000, - "canton": null, - "numero_insee": "52257" - } - }, - { - "pk": 22307, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAFERTE-SUR-AUBE", - "center": "POINT (781605.8975279907463118 2346628.8460391522385180)", - "surface": 32910000, - "canton": null, - "numero_insee": "52258" - } - }, - { - "pk": 31976, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAMANCINE", - "center": "POINT (806506.2909817682811990 2360451.7376280874013901)", - "surface": 4520000, - "canton": null, - "numero_insee": "52260" - } - }, - { - "pk": 35190, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAMOTHE-EN-BLAISY", - "center": "POINT (793776.4927201829850674 2362844.7166030211374164)", - "surface": 10230000, - "canton": null, - "numero_insee": "52262" - } - }, - { - "pk": 32547, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LANEUVELLE", - "center": "POINT (848787.7006718753837049 2331292.1249636653810740)", - "surface": 11160000, - "canton": null, - "numero_insee": "52264" - } - }, - { - "pk": 20865, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "BAYARD-SUR-MARNE", - "center": "POINT (801681.4960796004161239 2398037.5801825006492436)", - "surface": 15320000, - "canton": null, - "numero_insee": "52265" - } - }, - { - "pk": 9910, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LANEUVILLE-A-REMY", - "center": "POINT (787849.6296320996480063 2388912.9577122307382524)", - "surface": 5950000, - "canton": null, - "numero_insee": "52266" - } - }, - { - "pk": 37688, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LANEUVILLE-AU-PONT", - "center": "POINT (786305.1458094111876562 2405711.6318136868067086)", - "surface": 4030000, - "canton": null, - "numero_insee": "52267" - } - }, - { - "pk": 14537, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LANGRES", - "center": "POINT (824549.0537844349164516 2321977.2249416629783809)", - "surface": 23150000, - "canton": null, - "numero_insee": "52269" - } - }, - { - "pk": 22586, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LANQUES-SUR-ROGNON", - "center": "POINT (825831.3829819848760962 2347507.5206149965524673)", - "surface": 13150000, - "canton": null, - "numero_insee": "52271" - } - }, - { - "pk": 7731, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LANTY-SUR-AUBE", - "center": "POINT (779871.3037036826135591 2338808.1950674927793443)", - "surface": 22490000, - "canton": null, - "numero_insee": "52272" - } - }, - { - "pk": 23303, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LARIVIERE-ARNONCOURT", - "center": "POINT (852103.2008280586451292 2341428.2494981447234750)", - "surface": 20330000, - "canton": null, - "numero_insee": "52273" - } - }, - { - "pk": 18678, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LATRECEY-ORMOY-SUR-AUBE", - "center": "POINT (787010.3136319483164698 2334866.1296765054576099)", - "surface": 46740000, - "canton": null, - "numero_insee": "52274" - } - }, - { - "pk": 15934, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAVERNOY", - "center": "POINT (842001.9273263638606295 2329032.1859747110866010)", - "surface": 4540000, - "canton": null, - "numero_insee": "52275" - } - }, - { - "pk": 12790, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAVILLE-AUX-BOIS", - "center": "POINT (816225.7747470879694447 2347325.1493647973984480)", - "surface": 13160000, - "canton": null, - "numero_insee": "52276" - } - }, - { - "pk": 36320, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAVILLENEUVE", - "center": "POINT (837084.4327801696490496 2342300.0517976139672101)", - "surface": 5110000, - "canton": null, - "numero_insee": "52277" - } - }, - { - "pk": 30520, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LAVILLENEUVE-AU-ROI", - "center": "POINT (793146.1527771400287747 2354633.2852563490159810)", - "surface": 10420000, - "canton": null, - "numero_insee": "52278" - } - }, - { - "pk": 34029, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LECEY", - "center": "POINT (831547.9024195880629122 2322737.7582804416306317)", - "surface": 7810000, - "canton": null, - "numero_insee": "52280" - } - }, - { - "pk": 20388, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LEFFONDS", - "center": "POINT (809425.6091783746378496 2335057.7643577619455755)", - "surface": 36720000, - "canton": null, - "numero_insee": "52282" - } - }, - { - "pk": 15086, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LESCHERES-SUR-LE-BLAISERON", - "center": "POINT (799782.9735364008229226 2374304.3818596866913140)", - "surface": 14840000, - "canton": null, - "numero_insee": "52284" - } - }, - { - "pk": 13742, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LEUCHEY", - "center": "POINT (815869.7650447569321841 2307091.4416010798886418)", - "surface": 5540000, - "canton": null, - "numero_insee": "52285" - } - }, - { - "pk": 6373, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LEURVILLE", - "center": "POINT (825593.7909817739855498 2375225.8750375108793378)", - "surface": 10390000, - "canton": null, - "numero_insee": "52286" - } - }, - { - "pk": 31977, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LEVECOURT", - "center": "POINT (839891.0693996344925836 2353432.4308974323794246)", - "surface": 6760000, - "canton": null, - "numero_insee": "52287" - } - }, - { - "pk": 21757, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LEZEVILLE", - "center": "POINT (826107.5431067585013807 2385337.5631570019759238)", - "surface": 25800000, - "canton": null, - "numero_insee": "52288" - } - }, - { - "pk": 12071, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LIFFOL-LE-PETIT", - "center": "POINT (837942.1674943484831601 2370628.3662635846994817)", - "surface": 25710000, - "canton": null, - "numero_insee": "52289" - } - }, - { - "pk": 28766, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LONGCHAMP", - "center": "POINT (831097.1950963597046211 2351955.9467250904999673)", - "surface": 6060000, - "canton": null, - "numero_insee": "52291" - } - }, - { - "pk": 20103, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LONGEAU-PERCEY", - "center": "POINT (823442.5410781808895990 2310959.2581479893997312)", - "surface": 7590000, - "canton": null, - "numero_insee": "52292" - } - }, - { - "pk": 15722, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LONGEVILLE-SUR-LA-LAINES", - "center": "POINT (773253.0907438527792692 2387287.2820882620289922)", - "surface": 15610000, - "canton": null, - "numero_insee": "52293" - } - }, - { - "pk": 28151, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LOUVEMONT", - "center": "POINT (788682.6711533608613536 2396825.6828369400463998)", - "surface": 21020000, - "canton": null, - "numero_insee": "52294" - } - }, - { - "pk": 13207, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LOUVIERES", - "center": "POINT (819786.4232461475767195 2340550.5493111284449697)", - "surface": 8710000, - "canton": null, - "numero_insee": "52295" - } - }, - { - "pk": 34233, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LOUZE", - "center": "POINT (775684.5130319299641997 2383805.5227244715206325)", - "surface": 20720000, - "canton": null, - "numero_insee": "52296" - } - }, - { - "pk": 17427, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MAATZ", - "center": "POINT (832298.4921905538067222 2305230.6566733811050653)", - "surface": 10820000, - "canton": null, - "numero_insee": "52298" - } - }, - { - "pk": 13824, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MAGNEUX", - "center": "POINT (797318.0663007721304893 2393397.0077375629916787)", - "surface": 5850000, - "canton": null, - "numero_insee": "52300" - } - }, - { - "pk": 11812, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MAISONCELLES", - "center": "POINT (837894.0244221205357462 2352914.9211370982229710)", - "surface": 4100000, - "canton": null, - "numero_insee": "52301" - } - }, - { - "pk": 24214, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MAIZIERES", - "center": "POINT (801736.2738564091268927 2391633.5122977960854769)", - "surface": 11650000, - "canton": null, - "numero_insee": "52302" - } - }, - { - "pk": 4415, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MAIZIERES-SUR-AMANCE", - "center": "POINT (844880.3194588868645951 2320150.0805058972910047)", - "surface": 8000000, - "canton": null, - "numero_insee": "52303" - } - }, - { - "pk": 29681, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MALAINCOURT-SUR-MEUSE", - "center": "POINT (843074.3109889030456543 2355661.3880629246123135)", - "surface": 3850000, - "canton": null, - "numero_insee": "52304" - } - }, - { - "pk": 3493, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MANDRES-LA-COTE", - "center": "POINT (823248.4969479064457119 2345283.7391694150865078)", - "surface": 11470000, - "canton": null, - "numero_insee": "52305" - } - }, - { - "pk": 30231, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MANOIS", - "center": "POINT (825461.4215409453026950 2367318.9867400513030589)", - "surface": 10300000, - "canton": null, - "numero_insee": "52306" - } - }, - { - "pk": 11404, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MARAC", - "center": "POINT (811772.5783078036038205 2329773.8323864527046680)", - "surface": 22160000, - "canton": null, - "numero_insee": "52307" - } - }, - { - "pk": 7110, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MARANVILLE", - "center": "POINT (788170.1687518937978894 2351388.3985601947642863)", - "surface": 12660000, - "canton": null, - "numero_insee": "52308" - } - }, - { - "pk": 22595, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MARBEVILLE", - "center": "POINT (799353.6678523115115240 2365994.6658412469550967)", - "surface": 17760000, - "canton": null, - "numero_insee": "52310" - } - }, - { - "pk": 20340, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MARCILLY-EN-BASSIGNY", - "center": "POINT (840028.8901892387075350 2325712.7326934752054513)", - "surface": 19570000, - "canton": null, - "numero_insee": "52311" - } - }, - { - "pk": 36159, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MARDOR", - "center": "POINT (814820.9070483110845089 2324395.8103862660937011)", - "surface": 7480000, - "canton": null, - "numero_insee": "52312" - } - }, - { - "pk": 20158, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MAREILLES", - "center": "POINT (817545.2958416166948155 2356843.5101887383498251)", - "surface": 22140000, - "canton": null, - "numero_insee": "52313" - } - }, - { - "pk": 38037, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MARNAY-SUR-MARNE", - "center": "POINT (816000.1250941082835197 2338616.6894398219883442)", - "surface": 10750000, - "canton": null, - "numero_insee": "52315" - } - }, - { - "pk": 25613, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MATHONS", - "center": "POINT (800008.7197609019931406 2383012.5901476014405489)", - "surface": 13430000, - "canton": null, - "numero_insee": "52316" - } - }, - { - "pk": 32175, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MELAY", - "center": "POINT (860330.8759983347263187 2327288.1931966398842633)", - "surface": 13960000, - "canton": null, - "numero_insee": "52318" - } - }, - { - "pk": 37704, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MENNOUVEAUX", - "center": "POINT (828918.8857406093738973 2349235.2574183582328260)", - "surface": 7880000, - "canton": null, - "numero_insee": "52319" - } - }, - { - "pk": 37081, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MERREY", - "center": "POINT (842671.9077291471185163 2344249.4316798849031329)", - "surface": 6840000, - "canton": null, - "numero_insee": "52320" - } - }, - { - "pk": 34428, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MERTRUD", - "center": "POINT (788494.4651330483611673 2383714.7475709374994040)", - "surface": 12140000, - "canton": null, - "numero_insee": "52321" - } - }, - { - "pk": 6562, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MEURES", - "center": "POINT (802525.8927535316906869 2357815.7692185090854764)", - "surface": 8130000, - "canton": null, - "numero_insee": "52322" - } - }, - { - "pk": 28802, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MILLIERES", - "center": "POINT (829681.6704494984587654 2353645.0716996402479708)", - "surface": 14090000, - "canton": null, - "numero_insee": "52325" - } - }, - { - "pk": 37909, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MIRBEL", - "center": "POINT (800628.8508241560775787 2369007.7618190068751574)", - "surface": 6180000, - "canton": null, - "numero_insee": "52326" - } - }, - { - "pk": 13567, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MOESLAINS", - "center": "POINT (788012.1949685786385089 2405025.7239549271762371)", - "surface": 1580000, - "canton": null, - "numero_insee": "52327" - } - }, - { - "pk": 32573, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MONTCHARVOT", - "center": "POINT (853421.8143869513878599 2327729.1911516282707453)", - "surface": 3490000, - "canton": null, - "numero_insee": "52328" - } - }, - { - "pk": 7836, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MONTHERIES", - "center": "POINT (790829.2287048452999443 2356414.8186792437918484)", - "surface": 16670000, - "canton": null, - "numero_insee": "52330" - } - }, - { - "pk": 16910, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MONTIER-EN-DER", - "center": "POINT (781132.5277649682248011 2390356.6636013374663889)", - "surface": 28000000, - "canton": null, - "numero_insee": "52331" - } - }, - { - "pk": 16663, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VAL-DE-MEUSE", - "center": "POINT (838513.7186846762197092 2339009.8312757764942944)", - "surface": 77440000, - "canton": null, - "numero_insee": "52332" - } - }, - { - "pk": 8831, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MONTOT-SUR-ROGNON", - "center": "POINT (819641.3179199653677642 2369170.5003510466776788)", - "surface": 7820000, - "canton": null, - "numero_insee": "52335" - } - }, - { - "pk": 34242, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MONTREUIL-SUR-BLAISE", - "center": "POINT (793648.2104848397430032 2389562.9328908915631473)", - "surface": 1410000, - "canton": null, - "numero_insee": "52336" - } - }, - { - "pk": 22468, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MONTREUIL-SUR-THONNANCE", - "center": "POINT (814272.5288874454563484 2388438.4508964740671217)", - "surface": 8070000, - "canton": null, - "numero_insee": "52337" - } - }, - { - "pk": 31122, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MONTSAUGEON", - "center": "POINT (823232.3585576828336343 2300449.2696814425289631)", - "surface": 6380000, - "canton": null, - "numero_insee": "52340" - } - }, - { - "pk": 31675, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MORANCOURT", - "center": "POINT (797294.1455069269286469 2384490.4544229498133063)", - "surface": 14040000, - "canton": null, - "numero_insee": "52341" - } - }, - { - "pk": 25943, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MORIONVILLIERS", - "center": "POINT (827658.2687011793022975 2379546.6845968165434897)", - "surface": 6830000, - "canton": null, - "numero_insee": "52342" - } - }, - { - "pk": 7126, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MOUILLERON", - "center": "POINT (807899.2298604635288939 2302920.0224777250550687)", - "surface": 5250000, - "canton": null, - "numero_insee": "52344" - } - }, - { - "pk": 28543, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "MUSSEY-SUR-MARNE", - "center": "POINT (806646.3709827314596623 2379166.5648838034830987)", - "surface": 9910000, - "canton": null, - "numero_insee": "52346" - } - }, - { - "pk": 37779, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NARCY", - "center": "POINT (803853.7819460314931348 2401458.5599683336913586)", - "surface": 11130000, - "canton": null, - "numero_insee": "52347" - } - }, - { - "pk": 35853, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NEUILLY-L'EVEQUE", - "center": "POINT (831794.9061509582679719 2328944.6150887198746204)", - "surface": 23950000, - "canton": null, - "numero_insee": "52348" - } - }, - { - "pk": 34253, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NEUILLY-SUR-SUIZE", - "center": "POINT (808171.6988239414058626 2341251.7075577033683658)", - "surface": 14830000, - "canton": null, - "numero_insee": "52349" - } - }, - { - "pk": 5546, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NEUVELLE-LES-VOISEY", - "center": "POINT (857959.3257209365256131 2323765.1258221720345318)", - "surface": 5760000, - "canton": null, - "numero_insee": "52350" - } - }, - { - "pk": 5563, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NIJON", - "center": "POINT (845736.5852404145989567 2360287.6488731438294053)", - "surface": 7710000, - "canton": null, - "numero_insee": "52351" - } - }, - { - "pk": 24536, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NINVILLE", - "center": "POINT (831048.6154716319870204 2345951.0534094115719199)", - "surface": 9040000, - "canton": null, - "numero_insee": "52352" - } - }, - { - "pk": 23253, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NOGENT", - "center": "POINT (825779.3467515844386071 2341902.8786748633719981)", - "surface": 55100000, - "canton": null, - "numero_insee": "52353" - } - }, - { - "pk": 30853, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NOIDANT-CHATENOY", - "center": "POINT (827814.7503676406340674 2314599.5162561256438494)", - "surface": 5260000, - "canton": null, - "numero_insee": "52354" - } - }, - { - "pk": 7412, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NOMECOURT", - "center": "POINT (802388.8692222913959995 2385534.7402905221097171)", - "surface": 10760000, - "canton": null, - "numero_insee": "52356" - } - }, - { - "pk": 8786, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NONCOURT-SUR-LE-RONGEANT", - "center": "POINT (815713.7049423268763348 2383747.4267964358441532)", - "surface": 9280000, - "canton": null, - "numero_insee": "52357" - } - }, - { - "pk": 30404, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NOYERS", - "center": "POINT (834660.4875437719747424 2344881.2078388412483037)", - "surface": 7310000, - "canton": null, - "numero_insee": "52358" - } - }, - { - "pk": 26209, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "NULLY", - "center": "POINT (783544.2193071153014898 2377468.0069649755023420)", - "surface": 17750000, - "canton": null, - "numero_insee": "52359" - } - }, - { - "pk": 8983, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "OCCEY", - "center": "POINT (820590.4436143208295107 2293421.1309079178608954)", - "surface": 16930000, - "canton": null, - "numero_insee": "52360" - } - }, - { - "pk": 8205, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ORBIGNY-AU-MONT", - "center": "POINT (833727.9703800763236359 2325258.3689698483794928)", - "surface": 9200000, - "canton": null, - "numero_insee": "52362" - } - }, - { - "pk": 7250, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ORBIGNY-AU-VAL", - "center": "POINT (830728.4709812249056995 2324932.4167023072950542)", - "surface": 7410000, - "canton": null, - "numero_insee": "52363" - } - }, - { - "pk": 34954, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ORCEVAUX", - "center": "POINT (819828.0130863684462383 2312329.3775413101539016)", - "surface": 4350000, - "canton": null, - "numero_insee": "52364" - } - }, - { - "pk": 34697, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ORGES", - "center": "POINT (793526.7386735288891941 2345229.5435162573121488)", - "surface": 17530000, - "canton": null, - "numero_insee": "52365" - } - }, - { - "pk": 28727, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ORMANCEY", - "center": "POINT (812399.5455901470268145 2326676.8378180353902280)", - "surface": 17140000, - "canton": null, - "numero_insee": "52366" - } - }, - { - "pk": 28156, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ORMOY-LES-SEXFONTAINES", - "center": "POINT (802189.7465711690019816 2362015.9873070446774364)", - "surface": 5560000, - "canton": null, - "numero_insee": "52367" - } - }, - { - "pk": 9482, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ORQUEVAUX", - "center": "POINT (828319.5735329389572144 2372447.2094252593815327)", - "surface": 15600000, - "canton": null, - "numero_insee": "52369" - } - }, - { - "pk": 8899, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "OSNE-LE-VAL", - "center": "POINT (811634.8818300814600661 2392618.8593200515024364)", - "surface": 27030000, - "canton": null, - "numero_insee": "52370" - } - }, - { - "pk": 13459, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "OUDINCOURT", - "center": "POINT (804491.2682651949580759 2362035.6745587992481887)", - "surface": 7550000, - "canton": null, - "numero_insee": "52371" - } - }, - { - "pk": 11889, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "OUTREMECOURT", - "center": "POINT (849218.2789636990055442 2362719.3209499996155500)", - "surface": 9140000, - "canton": null, - "numero_insee": "52372" - } - }, - { - "pk": 27346, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "OZIERES", - "center": "POINT (833156.5454566279659048 2356877.2438304075039923)", - "surface": 9590000, - "canton": null, - "numero_insee": "52373" - } - }, - { - "pk": 29443, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LE PAILLY", - "center": "POINT (830320.7889144890941679 2314120.6136791645549238)", - "surface": 7140000, - "canton": null, - "numero_insee": "52374" - } - }, - { - "pk": 35184, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PALAISEUL", - "center": "POINT (830839.1573752274271101 2312023.4322340749204159)", - "surface": 4990000, - "canton": null, - "numero_insee": "52375" - } - }, - { - "pk": 19503, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PANSEY", - "center": "POINT (817756.7717130013043061 2390569.7911352748051286)", - "surface": 9030000, - "canton": null, - "numero_insee": "52376" - } - }, - { - "pk": 33280, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PARNOY-EN-BASSIGNY", - "center": "POINT (847800.2815049187047407 2341391.2869294225238264)", - "surface": 40690000, - "canton": null, - "numero_insee": "52377" - } - }, - { - "pk": 14068, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PAROY-SUR-SAULX", - "center": "POINT (815019.9104199042776600 2394649.2648954587057233)", - "surface": 7410000, - "canton": null, - "numero_insee": "52378" - } - }, - { - "pk": 33654, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PAUTAINES-AUGEVILLE", - "center": "POINT (820079.9193507300224155 2376379.4918272956274450)", - "surface": 14530000, - "canton": null, - "numero_insee": "52379" - } - }, - { - "pk": 31523, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PEIGNEY", - "center": "POINT (827232.0556030775187537 2324201.9058195366524160)", - "surface": 8280000, - "canton": null, - "numero_insee": "52380" - } - }, - { - "pk": 14415, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PERRANCEY-LES-VIEUX-MOULINS", - "center": "POINT (819749.1535399911226705 2321535.7939711124636233)", - "surface": 17260000, - "canton": null, - "numero_insee": "52383" - } - }, - { - "pk": 9079, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PERROGNEY-LES-FONTAINES", - "center": "POINT (814596.0949726109392941 2315587.1246432899497449)", - "surface": 14940000, - "canton": null, - "numero_insee": "52384" - } - }, - { - "pk": 9622, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PERRUSSE", - "center": "POINT (833926.5389059006702155 2348777.8289013840258121)", - "surface": 5700000, - "canton": null, - "numero_insee": "52385" - } - }, - { - "pk": 27925, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PERTHES", - "center": "POINT (782566.0878169517964125 2409982.7005908200517297)", - "surface": 13140000, - "canton": null, - "numero_insee": "52386" - } - }, - { - "pk": 31244, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PIERREMONT-SUR-AMANCE", - "center": "POINT (848911.4634831201983616 2316882.1528369043953717)", - "surface": 16460000, - "canton": null, - "numero_insee": "52388" - } - }, - { - "pk": 6326, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PISSELOUP", - "center": "POINT (854686.2761133818421513 2320334.3837297600694001)", - "surface": 3240000, - "canton": null, - "numero_insee": "52390" - } - }, - { - "pk": 9716, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PLANRUPT", - "center": "POINT (781207.8178082265658304 2393259.3670147852972150)", - "surface": 8390000, - "canton": null, - "numero_insee": "52391" - } - }, - { - "pk": 10172, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PLESNOY", - "center": "POINT (835821.6959256120026112 2326177.0164054213091731)", - "surface": 9140000, - "canton": null, - "numero_insee": "52392" - } - }, - { - "pk": 23164, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "POINSENOT", - "center": "POINT (800374.2398064909502864 2305157.4552675485610962)", - "surface": 7220000, - "canton": null, - "numero_insee": "52393" - } - }, - { - "pk": 32412, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "POINSON-LES-FAYL", - "center": "POINT (844861.8669237375725061 2310642.5787762445397675)", - "surface": 12330000, - "canton": null, - "numero_insee": "52394" - } - }, - { - "pk": 4751, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "POINSON-LES-GRANCEY", - "center": "POINT (798280.4558584135957062 2304238.8529288228601217)", - "surface": 11620000, - "canton": null, - "numero_insee": "52395" - } - }, - { - "pk": 29254, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "POINSON-LES-NOGENT", - "center": "POINT (827023.9073118717642501 2336809.7036278713494539)", - "surface": 10760000, - "canton": null, - "numero_insee": "52396" - } - }, - { - "pk": 24537, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "POISEUL", - "center": "POINT (835692.4398416951298714 2329578.5012892559170723)", - "surface": 4500000, - "canton": null, - "numero_insee": "52397" - } - }, - { - "pk": 35272, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "POISSONS", - "center": "POINT (813106.0313421880127862 2384425.5987747879698873)", - "surface": 15560000, - "canton": null, - "numero_insee": "52398" - } - }, - { - "pk": 30880, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PONT-LA-VILLE", - "center": "POINT (788821.0034830963704735 2345489.5619758628308773)", - "surface": 10310000, - "canton": null, - "numero_insee": "52399" - } - }, - { - "pk": 4271, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "LE CHATELET-SUR-MEUSE", - "center": "POINT (846549.2394182691350579 2335576.1643943591043353)", - "surface": 21470000, - "canton": null, - "numero_insee": "52400" - } - }, - { - "pk": 9833, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PRASLAY", - "center": "POINT (807558.7765304563799873 2307620.7735806764103472)", - "surface": 11310000, - "canton": null, - "numero_insee": "52403" - } - }, - { - "pk": 14526, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PRAUTHOY", - "center": "POINT (821811.6462387387873605 2302738.8986380696296692)", - "surface": 12420000, - "canton": null, - "numero_insee": "52405" - } - }, - { - "pk": 23709, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PRESSIGNY", - "center": "POINT (849866.2412745298352093 2310585.4741463162936270)", - "surface": 22410000, - "canton": null, - "numero_insee": "52406" - } - }, - { - "pk": 21314, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PREZ-SOUS-LAFAUCHE", - "center": "POINT (834955.6535395886749029 2368801.4269562545232475)", - "surface": 22570000, - "canton": null, - "numero_insee": "52407" - } - }, - { - "pk": 18033, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "PUELLEMONTIER", - "center": "POINT (773726.9474671029020101 2390393.5339362649247050)", - "surface": 16480000, - "canton": null, - "numero_insee": "52411" - } - }, - { - "pk": 31013, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RACHECOURT-SUZEMONT", - "center": "POINT (794768.5868647296447307 2387270.8678483888506889)", - "surface": 3640000, - "canton": null, - "numero_insee": "52413" - } - }, - { - "pk": 5666, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RACHECOURT-SUR-MARNE", - "center": "POINT (803611.8047810195712373 2394651.6867531230673194)", - "surface": 5700000, - "canton": null, - "numero_insee": "52414" - } - }, - { - "pk": 31746, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RANCONNIERES", - "center": "POINT (840677.8437116184504703 2331722.8763460642658174)", - "surface": 8270000, - "canton": null, - "numero_insee": "52415" - } - }, - { - "pk": 34725, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RANGECOURT", - "center": "POINT (834777.7232493131887168 2342880.7130180122330785)", - "surface": 6950000, - "canton": null, - "numero_insee": "52416" - } - }, - { - "pk": 4836, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RENNEPONT", - "center": "POINT (787542.4163598563754931 2354585.4093021396547556)", - "surface": 12150000, - "canton": null, - "numero_insee": "52419" - } - }, - { - "pk": 17994, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "REYNEL", - "center": "POINT (822727.9172081671422347 2370998.2597115682438016)", - "surface": 18680000, - "canton": null, - "numero_insee": "52420" - } - }, - { - "pk": 35077, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RIAUCOURT", - "center": "POINT (810643.2704615197144449 2356484.1907885051332414)", - "surface": 10780000, - "canton": null, - "numero_insee": "52421" - } - }, - { - "pk": 16433, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RICHEBOURG", - "center": "POINT (803196.5536622884683311 2337906.6602454767562449)", - "surface": 21180000, - "canton": null, - "numero_insee": "52422" - } - }, - { - "pk": 13879, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RIMAUCOURT", - "center": "POINT (823678.2465928646270186 2365202.1656492976471782)", - "surface": 20310000, - "canton": null, - "numero_insee": "52423" - } - }, - { - "pk": 22480, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RIVIERES-LE-BOIS", - "center": "POINT (833465.0116526217898354 2309243.7760234507732093)", - "surface": 7120000, - "canton": null, - "numero_insee": "52424" - } - }, - { - "pk": 32321, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RIVIERE-LES-FOSSES", - "center": "POINT (817045.0927492175251245 2298394.7035411084070802)", - "surface": 18190000, - "canton": null, - "numero_insee": "52425" - } - }, - { - "pk": 7477, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RIZAUCOURT-BUCHEY", - "center": "POINT (787937.6153493837919086 2366897.8298722309991717)", - "surface": 15210000, - "canton": null, - "numero_insee": "52426" - } - }, - { - "pk": 18747, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROBERT-MAGNY", - "center": "POINT (785261.6389330000383779 2387289.7107713711448014)", - "surface": 19440000, - "canton": null, - "numero_insee": "52427" - } - }, - { - "pk": 13341, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROCHEFORT-SUR-LA-COTE", - "center": "POINT (813594.7192377831088379 2362413.8070935080759227)", - "surface": 5140000, - "canton": null, - "numero_insee": "52428" - } - }, - { - "pk": 32171, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROCHES-SUR-MARNE", - "center": "POINT (797331.7178585323272273 2403504.2530574104748666)", - "surface": 7890000, - "canton": null, - "numero_insee": "52429" - } - }, - { - "pk": 21724, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROCHETAILLEE", - "center": "POINT (808251.4509464135626331 2320236.4377121459692717)", - "surface": 28190000, - "canton": null, - "numero_insee": "52431" - } - }, - { - "pk": 33500, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROLAMPONT", - "center": "POINT (821960.7260961373103783 2332062.7533574076369405)", - "surface": 49290000, - "canton": null, - "numero_insee": "52432" - } - }, - { - "pk": 34955, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROMAIN-SUR-MEUSE", - "center": "POINT (836141.3735053462442011 2358904.3278675517067313)", - "surface": 16570000, - "canton": null, - "numero_insee": "52433" - } - }, - { - "pk": 25241, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROUECOURT", - "center": "POINT (803092.8283796955365688 2373432.0375817366875708)", - "surface": 7880000, - "canton": null, - "numero_insee": "52436" - } - }, - { - "pk": 25115, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROUELLES", - "center": "POINT (805993.5138940702890977 2315113.1929854713380337)", - "surface": 6600000, - "canton": null, - "numero_insee": "52437" - } - }, - { - "pk": 3843, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROUGEUX", - "center": "POINT (842303.4204320586286485 2317225.7253415817394853)", - "surface": 9870000, - "canton": null, - "numero_insee": "52438" - } - }, - { - "pk": 17635, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROUVRES-SUR-AUBE", - "center": "POINT (798335.1646878980100155 2321252.4687727605924010)", - "surface": 20430000, - "canton": null, - "numero_insee": "52439" - } - }, - { - "pk": 10641, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "ROUVROY-SUR-MARNE", - "center": "POINT (805463.5727547071874142 2377054.9275019010528922)", - "surface": 8490000, - "canton": null, - "numero_insee": "52440" - } - }, - { - "pk": 4346, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "RUPT", - "center": "POINT (806806.2553425844525918 2383871.3149102889001369)", - "surface": 6490000, - "canton": null, - "numero_insee": "52442" - } - }, - { - "pk": 26343, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAILLY", - "center": "POINT (817196.6726224664598703 2385861.6347078839316964)", - "surface": 12440000, - "canton": null, - "numero_insee": "52443" - } - }, - { - "pk": 25102, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-BLIN", - "center": "POINT (828677.2545287542743608 2365745.3842796562239528)", - "surface": 22500000, - "canton": null, - "numero_insee": "52444" - } - }, - { - "pk": 9236, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-BROINGT-LE-BOIS", - "center": "POINT (831076.1932169403880835 2307722.1244682772085071)", - "surface": 4510000, - "canton": null, - "numero_insee": "52445" - } - }, - { - "pk": 34210, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-BROINGT-LES-FOSSES", - "center": "POINT (819885.4426244363421574 2305624.6629553074017167)", - "surface": 12500000, - "canton": null, - "numero_insee": "52446" - } - }, - { - "pk": 16465, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-CIERGUES", - "center": "POINT (818224.9722232768544927 2324224.8076372686773539)", - "surface": 12380000, - "canton": null, - "numero_insee": "52447" - } - }, - { - "pk": 22699, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-DIZIER", - "center": "POINT (792603.9627413315465674 2406365.8695095274597406)", - "surface": 48380000, - "canton": null, - "numero_insee": "52448" - } - }, - { - "pk": 21689, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINTS-GEOSMES", - "center": "POINT (823078.8810265227220953 2318361.8606113796122372)", - "surface": 14880000, - "canton": null, - "numero_insee": "52449" - } - }, - { - "pk": 15127, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-LOUP-SUR-AUJON", - "center": "POINT (805020.1235618604114279 2323611.3980432432144880)", - "surface": 19540000, - "canton": null, - "numero_insee": "52450" - } - }, - { - "pk": 27735, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-MARTIN-LES-LANGRES", - "center": "POINT (818510.6092491179006174 2325928.5535989277996123)", - "surface": 3660000, - "canton": null, - "numero_insee": "52452" - } - }, - { - "pk": 27769, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-MAURICE", - "center": "POINT (830360.7988084817770869 2321126.3515900638885796)", - "surface": 3570000, - "canton": null, - "numero_insee": "52453" - } - }, - { - "pk": 15933, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-THIEBAULT", - "center": "POINT (840729.8301494014449418 2360644.9586935383267701)", - "surface": 600000, - "canton": null, - "numero_insee": "52455" - } - }, - { - "pk": 14698, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-URBAIN-MACONCOURT", - "center": "POINT (811731.6864956152858213 2381311.6040905709378421)", - "surface": 25990000, - "canton": null, - "numero_insee": "52456" - } - }, - { - "pk": 10627, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAINT-VALLIER-SUR-MARNE", - "center": "POINT (829374.6892120918491855 2319416.5903522204607725)", - "surface": 6560000, - "canton": null, - "numero_insee": "52457" - } - }, - { - "pk": 6447, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SARCEY", - "center": "POINT (820658.7435682935174555 2343860.5007117209024727)", - "surface": 7210000, - "canton": null, - "numero_insee": "52459" - } - }, - { - "pk": 34269, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SARREY", - "center": "POINT (830415.0714830135693774 2338139.7587139322422445)", - "surface": 14210000, - "canton": null, - "numero_insee": "52461" - } - }, - { - "pk": 33397, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAUDRON", - "center": "POINT (820541.4139935986604542 2392595.0720986169762909)", - "surface": 9140000, - "canton": null, - "numero_insee": "52463" - } - }, - { - "pk": 20455, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAULLES", - "center": "POINT (839406.0873220945941284 2304991.3909336305223405)", - "surface": 17350000, - "canton": null, - "numero_insee": "52464" - } - }, - { - "pk": 11189, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAULXURES", - "center": "POINT (842165.1297971077729017 2333336.8569906819611788)", - "surface": 8160000, - "canton": null, - "numero_insee": "52465" - } - }, - { - "pk": 10907, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SAVIGNY", - "center": "POINT (848094.1941549957264215 2307167.6092534437775612)", - "surface": 6110000, - "canton": null, - "numero_insee": "52467" - } - }, - { - "pk": 12156, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SEMILLY", - "center": "POINT (832178.7036058061057702 2365875.4842375377193093)", - "surface": 14510000, - "canton": null, - "numero_insee": "52468" - } - }, - { - "pk": 23196, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SEMOUTIERS-MONTSAON", - "center": "POINT (802543.9374815361807123 2344005.6620976985432208)", - "surface": 27370000, - "canton": null, - "numero_insee": "52469" - } - }, - { - "pk": 23216, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SERQUEUX", - "center": "POINT (854729.9051837896695361 2338548.6335418228991330)", - "surface": 25540000, - "canton": null, - "numero_insee": "52470" - } - }, - { - "pk": 24733, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SEXFONTAINES", - "center": "POINT (800004.5494309759233147 2360095.9015000774525106)", - "surface": 20760000, - "canton": null, - "numero_insee": "52472" - } - }, - { - "pk": 14249, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SIGNEVILLE", - "center": "POINT (817458.7301853705430403 2366950.1965751159004867)", - "surface": 8150000, - "canton": null, - "numero_insee": "52473" - } - }, - { - "pk": 10650, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SILVAROUVRES", - "center": "POINT (783136.8095392023678869 2343139.2985959500074387)", - "surface": 19240000, - "canton": null, - "numero_insee": "52474" - } - }, - { - "pk": 25416, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SOMMANCOURT", - "center": "POINT (799623.8092859894968569 2392916.3690700209699571)", - "surface": 5950000, - "canton": null, - "numero_insee": "52475" - } - }, - { - "pk": 37703, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SOMMERECOURT", - "center": "POINT (846209.4179021854652092 2363494.0661525148898363)", - "surface": 7710000, - "canton": null, - "numero_insee": "52476" - } - }, - { - "pk": 4915, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SOMMEVOIRE", - "center": "POINT (784807.4634921910474077 2381881.9634270858950913)", - "surface": 33020000, - "canton": null, - "numero_insee": "52479" - } - }, - { - "pk": 17409, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SONCOURT-SUR-MARNE", - "center": "POINT (804569.0766568897524849 2364638.2482183841057122)", - "surface": 13670000, - "canton": null, - "numero_insee": "52480" - } - }, - { - "pk": 27046, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SOULAUCOURT-SUR-MOUZON", - "center": "POINT (849538.2487026790622622 2360420.3747806614264846)", - "surface": 9290000, - "canton": null, - "numero_insee": "52482" - } - }, - { - "pk": 28144, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SOYERS", - "center": "POINT (851050.2464476911118254 2324206.1386036868207157)", - "surface": 5990000, - "canton": null, - "numero_insee": "52483" - } - }, - { - "pk": 27483, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "SUZANNECOURT", - "center": "POINT (810487.2251604757038876 2386404.6115654474124312)", - "surface": 4530000, - "canton": null, - "numero_insee": "52484" - } - }, - { - "pk": 24538, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "TERNAT", - "center": "POINT (808590.0746339950710535 2327444.8437387417070568)", - "surface": 8000000, - "canton": null, - "numero_insee": "52486" - } - }, - { - "pk": 25802, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "THILLEUX", - "center": "POINT (781583.1863557933829725 2384456.2980069103650749)", - "surface": 9730000, - "canton": null, - "numero_insee": "52487" - } - }, - { - "pk": 36158, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "THIVET", - "center": "POINT (821125.8851349465548992 2336058.6307492470368743)", - "surface": 15500000, - "canton": null, - "numero_insee": "52488" - } - }, - { - "pk": 22931, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "THOL-LES-MILLIERES", - "center": "POINT (833778.4041275739436969 2354380.7255038679577410)", - "surface": 6900000, - "canton": null, - "numero_insee": "52489" - } - }, - { - "pk": 30774, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "THONNANCE-LES-JOINVILLE", - "center": "POINT (810768.5725268281530589 2388608.5928836460225284)", - "surface": 11460000, - "canton": null, - "numero_insee": "52490" - } - }, - { - "pk": 16978, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "THONNANCE-LES-MOULINS", - "center": "POINT (820413.3056156196398661 2384187.9719807533547282)", - "surface": 21530000, - "canton": null, - "numero_insee": "52491" - } - }, - { - "pk": 23500, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "TORCENAY", - "center": "POINT (834495.4038930246606469 2317458.9616191261447966)", - "surface": 8440000, - "canton": null, - "numero_insee": "52492" - } - }, - { - "pk": 8339, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "TORNAY", - "center": "POINT (844714.9903313982067630 2304436.4872835893183947)", - "surface": 7350000, - "canton": null, - "numero_insee": "52493" - } - }, - { - "pk": 6762, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "TREIX", - "center": "POINT (814075.5233376249670982 2353010.9809506013989449)", - "surface": 15600000, - "canton": null, - "numero_insee": "52494" - } - }, - { - "pk": 30058, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "TREMILLY", - "center": "POINT (780635.5035584935685620 2378243.7507895687595010)", - "surface": 10890000, - "canton": null, - "numero_insee": "52495" - } - }, - { - "pk": 18651, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "TROISFONTAINES-LA-VILLE", - "center": "POINT (797186.3474499108269811 2397098.5024040197022259)", - "surface": 38060000, - "canton": null, - "numero_insee": "52497" - } - }, - { - "pk": 5553, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VAILLANT", - "center": "POINT (811380.2963087054667994 2305451.7626745845191181)", - "surface": 7580000, - "canton": null, - "numero_insee": "52499" - } - }, - { - "pk": 25610, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VALCOURT", - "center": "POINT (789918.5166276516392827 2404441.5907108192332089)", - "surface": 3670000, - "canton": null, - "numero_insee": "52500" - } - }, - { - "pk": 26607, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VALLERET", - "center": "POINT (797638.7910619542235509 2390998.0441337605006993)", - "surface": 4800000, - "canton": null, - "numero_insee": "52502" - } - }, - { - "pk": 8591, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VALLEROY", - "center": "POINT (849313.0895697566447780 2305076.4383299848996103)", - "surface": 3440000, - "canton": null, - "numero_insee": "52503" - } - }, - { - "pk": 4188, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VARENNES-SUR-AMANCE", - "center": "POINT (844822.7564799346728250 2326854.7227208879776299)", - "surface": 12680000, - "canton": null, - "numero_insee": "52504" - } - }, - { - "pk": 20309, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VAUDRECOURT", - "center": "POINT (845924.6874358797213063 2361690.2962724645622075)", - "surface": 2630000, - "canton": null, - "numero_insee": "52505" - } - }, - { - "pk": 35927, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VAUDREMONT", - "center": "POINT (791575.0109166670590639 2351117.2636736114509404)", - "surface": 10610000, - "canton": null, - "numero_insee": "52506" - } - }, - { - "pk": 29794, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VAUXBONS", - "center": "POINT (809519.8116353723453358 2324050.2038185722194612)", - "surface": 12540000, - "canton": null, - "numero_insee": "52507" - } - }, - { - "pk": 37910, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VAUX-SUR-BLAISE", - "center": "POINT (794555.6287374751409516 2388770.1185116656124592)", - "surface": 7110000, - "canton": null, - "numero_insee": "52510" - } - }, - { - "pk": 11210, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VAUX-SUR-SAINT-URBAIN", - "center": "POINT (812656.2570844315923750 2378517.5009906282648444)", - "surface": 6500000, - "canton": null, - "numero_insee": "52511" - } - }, - { - "pk": 32696, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VECQUEVILLE", - "center": "POINT (806968.7068356741219759 2388275.8552268315106630)", - "surface": 5270000, - "canton": null, - "numero_insee": "52512" - } - }, - { - "pk": 5430, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VELLES", - "center": "POINT (853485.4414283223450184 2320324.0653537111356854)", - "surface": 4230000, - "canton": null, - "numero_insee": "52513" - } - }, - { - "pk": 31536, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VERSEILLES-LE-BAS", - "center": "POINT (820940.7856859260937199 2310937.8245444390922785)", - "surface": 1570000, - "canton": null, - "numero_insee": "52515" - } - }, - { - "pk": 24935, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VERSEILLES-LE-HAUT", - "center": "POINT (821431.7066072116140276 2312042.8827817407436669)", - "surface": 2820000, - "canton": null, - "numero_insee": "52516" - } - }, - { - "pk": 6776, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VESAIGNES-SOUS-LAFAUCHE", - "center": "POINT (830545.8981000034837052 2369564.1867426745593548)", - "surface": 13900000, - "canton": null, - "numero_insee": "52517" - } - }, - { - "pk": 26469, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VESAIGNES-SUR-MARNE", - "center": "POINT (818311.9750298269791529 2337435.5836182637140155)", - "surface": 8590000, - "canton": null, - "numero_insee": "52518" - } - }, - { - "pk": 5745, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VESVRES-SOUS-CHALANCEY", - "center": "POINT (812700.0593361988430843 2303261.3419763217680156)", - "surface": 7130000, - "canton": null, - "numero_insee": "52519" - } - }, - { - "pk": 6528, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VICQ", - "center": "POINT (844592.5484500771854073 2330355.4154339404776692)", - "surface": 13820000, - "canton": null, - "numero_insee": "52520" - } - }, - { - "pk": 34991, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VIEVILLE", - "center": "POINT (809579.2263727213721722 2363880.5336112524382770)", - "surface": 11240000, - "canton": null, - "numero_insee": "52522" - } - }, - { - "pk": 7529, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VIGNES-LA-COTE", - "center": "POINT (820854.1085907623637468 2367779.8685190738178790)", - "surface": 3130000, - "canton": null, - "numero_insee": "52523" - } - }, - { - "pk": 17640, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VIGNORY", - "center": "POINT (804343.2630660473369062 2367638.5112868235446513)", - "surface": 19690000, - "canton": null, - "numero_insee": "52524" - } - }, - { - "pk": 28624, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLARS-EN-AZOIS", - "center": "POINT (777527.0460554850287735 2343791.9409946557134390)", - "surface": 19650000, - "canton": null, - "numero_insee": "52525" - } - }, - { - "pk": 15137, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLARS-SANTENOGE", - "center": "POINT (799646.3671172996982932 2308353.7221012394875288)", - "surface": 19730000, - "canton": null, - "numero_insee": "52526" - } - }, - { - "pk": 29183, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLE-EN-BLAISOIS", - "center": "POINT (793481.4367088270373642 2385658.7217766875401139)", - "surface": 6940000, - "canton": null, - "numero_insee": "52528" - } - }, - { - "pk": 21776, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLEGUSIEN-LE-LAC", - "center": "POINT (823170.6251612559426576 2307654.3643599743954837)", - "surface": 30140000, - "canton": null, - "numero_insee": "52529" - } - }, - { - "pk": 30841, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLIERS-EN-LIEU", - "center": "POINT (789263.4238711674697697 2410840.4621810335665941)", - "surface": 12720000, - "canton": null, - "numero_insee": "52534" - } - }, - { - "pk": 36070, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLIERS-LE-SEC", - "center": "POINT (803708.7978409925708547 2348218.7646593758836389)", - "surface": 15720000, - "canton": null, - "numero_insee": "52535" - } - }, - { - "pk": 10500, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLIERS-LES-APREY", - "center": "POINT (816047.6277229986153543 2309694.9858180130831897)", - "surface": 7470000, - "canton": null, - "numero_insee": "52536" - } - }, - { - "pk": 36605, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VILLIERS-SUR-SUIZE", - "center": "POINT (813430.9113186874892563 2334791.8214313723146915)", - "surface": 17710000, - "canton": null, - "numero_insee": "52538" - } - }, - { - "pk": 13073, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VIOLOT", - "center": "POINT (832848.2840404717717320 2311139.9625485511496663)", - "surface": 4280000, - "canton": null, - "numero_insee": "52539" - } - }, - { - "pk": 13206, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VITRY-EN-MONTAGNE", - "center": "POINT (806272.3207256110617891 2317617.5052848998457193)", - "surface": 9720000, - "canton": null, - "numero_insee": "52540" - } - }, - { - "pk": 9619, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VITRY-LES-NOGENT", - "center": "POINT (824327.2114399210549891 2336186.1371090491302311)", - "surface": 8110000, - "canton": null, - "numero_insee": "52541" - } - }, - { - "pk": 33077, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VIVEY", - "center": "POINT (804555.8072573133977130 2307695.1617836165241897)", - "surface": 12970000, - "canton": null, - "numero_insee": "52542" - } - }, - { - "pk": 28521, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VOISEY", - "center": "POINT (856243.5269068535417318 2325451.6808484098874032)", - "surface": 31590000, - "canton": null, - "numero_insee": "52544" - } - }, - { - "pk": 37039, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VOISINES", - "center": "POINT (812746.0104835822712630 2321275.6721467003226280)", - "surface": 19090000, - "canton": null, - "numero_insee": "52545" - } - }, - { - "pk": 14654, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VONCOURT", - "center": "POINT (850194.8166847256943583 2307285.7281542019918561)", - "surface": 3490000, - "canton": null, - "numero_insee": "52546" - } - }, - { - "pk": 9443, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VOUECOURT", - "center": "POINT (809458.6053580372827128 2366281.2595565742813051)", - "surface": 13560000, - "canton": null, - "numero_insee": "52547" - } - }, - { - "pk": 30895, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VRAINCOURT", - "center": "POINT (806785.9401013851165771 2362855.8950760909356177)", - "surface": 3440000, - "canton": null, - "numero_insee": "52548" - } - }, - { - "pk": 13074, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "VRONCOURT-LA-COTE", - "center": "POINT (836280.0749252252280712 2354402.1867931829765439)", - "surface": 4240000, - "canton": null, - "numero_insee": "52549" - } - }, - { - "pk": 18003, - "model": "ishtar_common.town", - "fields": { - "departement": 53, - "name": "WASSY", - "center": "POINT (791725.6176468350458890 2392048.2810865277424455)", - "surface": 34330000, - "canton": null, - "numero_insee": "52550" - } - }, - { - "pk": 2002, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "AHUILLE", - "center": "POINT (360639.8802776648662984 2340903.4008333724923432)", - "surface": 30550000, - "canton": null, - "numero_insee": "53001" - } - }, - { - "pk": 2149, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ALEXAIN", - "center": "POINT (369858.9349342791247182 2363795.9717333475127816)", - "surface": 16420000, - "canton": null, - "numero_insee": "53002" - } - }, - { - "pk": 2390, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "AMBRIERES-LES-VALLEES", - "center": "POINT (380796.8638976769289002 2384500.7405819226987660)", - "surface": 38380000, - "canton": null, - "numero_insee": "53003" - } - }, - { - "pk": 1680, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "AMPOIGNE", - "center": "POINT (363342.8129785036435351 2316406.9670503977686167)", - "surface": 21270000, - "canton": null, - "numero_insee": "53004" - } - }, - { - "pk": 2628, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ANDOUILLE", - "center": "POINT (367207.2530016413656995 2357669.7196511258371174)", - "surface": 36990000, - "canton": null, - "numero_insee": "53005" - } - }, - { - "pk": 1528, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ARGENTON-NOTRE-DAME", - "center": "POINT (379981.6080933510675095 2313241.1066955002024770)", - "surface": 6830000, - "canton": null, - "numero_insee": "53006" - } - }, - { - "pk": 2319, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ARGENTRE", - "center": "POINT (378798.0160312021034770 2347657.4513465911149979)", - "surface": 37090000, - "canton": null, - "numero_insee": "53007" - } - }, - { - "pk": 2575, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ARON", - "center": "POINT (385811.1303428547689691 2371032.2394653381779790)", - "surface": 32800000, - "canton": null, - "numero_insee": "53008" - } - }, - { - "pk": 2492, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ARQUENAY", - "center": "POINT (381696.9924806730123237 2335872.4436567360535264)", - "surface": 25360000, - "canton": null, - "numero_insee": "53009" - } - }, - { - "pk": 1621, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ASSE-LE-BERENGER", - "center": "POINT (402462.9361861421493813 2354056.7749318196438253)", - "surface": 11930000, - "canton": null, - "numero_insee": "53010" - } - }, - { - "pk": 1518, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ASTILLE", - "center": "POINT (362298.4580641327193007 2333911.7402281598187983)", - "surface": 20910000, - "canton": null, - "numero_insee": "53011" - } - }, - { - "pk": 2420, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ATHEE", - "center": "POINT (355163.2598616227041930 2325346.7499315105378628)", - "surface": 17360000, - "canton": null, - "numero_insee": "53012" - } - }, - { - "pk": 1523, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "AVERTON", - "center": "POINT (411189.8857873937813565 2375844.5365151073783636)", - "surface": 40540000, - "canton": null, - "numero_insee": "53013" - } - }, - { - "pk": 2341, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "AZE", - "center": "POINT (375834.3143238860648125 2318611.1727293948642910)", - "surface": 29470000, - "canton": null, - "numero_insee": "53014" - } - }, - { - "pk": 2881, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA BACONNIERE", - "center": "POINT (359200.2545999654103070 2357804.1566859632730484)", - "surface": 27730000, - "canton": null, - "numero_insee": "53015" - } - }, - { - "pk": 2249, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BAIS", - "center": "POINT (399871.4319088645279408 2364943.4370680996216834)", - "surface": 26250000, - "canton": null, - "numero_insee": "53016" - } - }, - { - "pk": 1663, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BALLEE", - "center": "POINT (394355.0576939319726080 2329972.0456557292491198)", - "surface": 14250000, - "canton": null, - "numero_insee": "53017" - } - }, - { - "pk": 2086, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BALLOTS", - "center": "POINT (346133.2204925304395147 2328174.9321518442593515)", - "surface": 36090000, - "canton": null, - "numero_insee": "53018" - } - }, - { - "pk": 2947, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BANNES", - "center": "POINT (399316.4764319524401799 2335116.7524227187968791)", - "surface": 8360000, - "canton": null, - "numero_insee": "53019" - } - }, - { - "pk": 1806, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA BAZOGE-MONTPINCON", - "center": "POINT (383137.3263153579318896 2367607.7801700672134757)", - "surface": 8490000, - "canton": null, - "numero_insee": "53021" - } - }, - { - "pk": 2332, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA BAZOUGE-DE-CHEMERE", - "center": "POINT (387984.0252815278945491 2338025.7308526188135147)", - "surface": 25130000, - "canton": null, - "numero_insee": "53022" - } - }, - { - "pk": 2617, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA BAZOUGE-DES-ALLEUX", - "center": "POINT (381513.5300443889573216 2358187.5460437820293009)", - "surface": 18140000, - "canton": null, - "numero_insee": "53023" - } - }, - { - "pk": 2877, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BAZOUGERS", - "center": "POINT (381459.8326641553430818 2340373.8772963555529714)", - "surface": 31950000, - "canton": null, - "numero_insee": "53025" - } - }, - { - "pk": 1950, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BEAULIEU-SUR-OUDON", - "center": "POINT (351859.3015277753584087 2337729.0545697114430368)", - "surface": 20230000, - "canton": null, - "numero_insee": "53026" - } - }, - { - "pk": 2029, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BEAUMONT-PIED-DE-BOEUF", - "center": "POINT (392379.2093650443130173 2326853.4283076752908528)", - "surface": 13610000, - "canton": null, - "numero_insee": "53027" - } - }, - { - "pk": 2973, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BELGEARD", - "center": "POINT (384857.3761908379383385 2365320.2458635601215065)", - "surface": 13100000, - "canton": null, - "numero_insee": "53028" - } - }, - { - "pk": 1853, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BIERNE", - "center": "POINT (385063.7964442767552100 2315884.9013018920086324)", - "surface": 24330000, - "canton": null, - "numero_insee": "53029" - } - }, - { - "pk": 1727, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE BIGNON-DU-MAINE", - "center": "POINT (378725.3676648779655807 2332145.2205733242444694)", - "surface": 14540000, - "canton": null, - "numero_insee": "53030" - } - }, - { - "pk": 2434, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA BIGOTTIERE", - "center": "POINT (367265.4222836154513061 2362773.9449052694253623)", - "surface": 18580000, - "canton": null, - "numero_insee": "53031" - } - }, - { - "pk": 2847, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BLANDOUET", - "center": "POINT (402149.2202688880497590 2343546.3890965683385730)", - "surface": 11240000, - "canton": null, - "numero_insee": "53032" - } - }, - { - "pk": 1785, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA BOISSIERE", - "center": "POINT (351559.1407360326847993 2313307.9868842707946897)", - "surface": 6280000, - "canton": null, - "numero_insee": "53033" - } - }, - { - "pk": 2003, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BONCHAMP-LES-LAVAL", - "center": "POINT (373814.3614844174589962 2345214.7100209211930633)", - "surface": 27500000, - "canton": null, - "numero_insee": "53034" - } - }, - { - "pk": 2044, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BOUCHAMPS-LES-CRAON", - "center": "POINT (351227.7524106483324431 2317108.1984285577200353)", - "surface": 18190000, - "canton": null, - "numero_insee": "53035" - } - }, - { - "pk": 2046, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BOUERE", - "center": "POINT (388919.5993674204801209 2321620.9929234646260738)", - "surface": 43070000, - "canton": null, - "numero_insee": "53036" - } - }, - { - "pk": 1831, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BOUESSAY", - "center": "POINT (395716.0983385776635259 2322677.6964324275031686)", - "surface": 9360000, - "canton": null, - "numero_insee": "53037" - } - }, - { - "pk": 1940, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BOULAY-LES-IFS", - "center": "POINT (416729.1661488913232461 2383695.8162823198363185)", - "surface": 8950000, - "canton": null, - "numero_insee": "53038" - } - }, - { - "pk": 1546, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE BOURGNEUF-LA-FORET", - "center": "POINT (353403.7540497656445950 2356855.9548043152317405)", - "surface": 28910000, - "canton": null, - "numero_insee": "53039" - } - }, - { - "pk": 1553, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BOURGON", - "center": "POINT (348402.0405952304136008 2356614.8083671354688704)", - "surface": 21390000, - "canton": null, - "numero_insee": "53040" - } - }, - { - "pk": 1909, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BRAINS-SUR-LES-MARCHES", - "center": "POINT (337341.8638260748703033 2326301.5531261963769794)", - "surface": 7780000, - "canton": null, - "numero_insee": "53041" - } - }, - { - "pk": 2106, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BRECE", - "center": "POINT (369815.2074817895190790 2381308.3007098445668817)", - "surface": 35280000, - "canton": null, - "numero_insee": "53042" - } - }, - { - "pk": 1837, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "BREE", - "center": "POINT (387547.1726546465652063 2354634.5088021089322865)", - "surface": 16580000, - "canton": null, - "numero_insee": "53043" - } - }, - { - "pk": 3001, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA BRULATTE", - "center": "POINT (353371.7846573435235769 2348549.5411108415573835)", - "surface": 15550000, - "canton": null, - "numero_insee": "53045" - } - }, - { - "pk": 1575, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE BURET", - "center": "POINT (387864.5661630897666328 2328217.3425375288352370)", - "surface": 12860000, - "canton": null, - "numero_insee": "53046" - } - }, - { - "pk": 2227, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CARELLES", - "center": "POINT (360306.5618828766746446 2381530.4759726207703352)", - "surface": 13070000, - "canton": null, - "numero_insee": "53047" - } - }, - { - "pk": 2150, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHAILLAND", - "center": "POINT (361851.1545842925552279 2364030.4594690618105233)", - "surface": 35730000, - "canton": null, - "numero_insee": "53048" - } - }, - { - "pk": 1689, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHALONS-DU-MAINE", - "center": "POINT (378134.2840559901669621 2355357.7052298067137599)", - "surface": 9840000, - "canton": null, - "numero_insee": "53049" - } - }, - { - "pk": 2084, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHAMMES", - "center": "POINT (397233.5324662469793111 2345007.0246115708723664)", - "surface": 20750000, - "canton": null, - "numero_insee": "53050" - } - }, - { - "pk": 2634, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHAMPEON", - "center": "POINT (388766.1839285239111632 2376760.6692213714122772)", - "surface": 20980000, - "canton": null, - "numero_insee": "53051" - } - }, - { - "pk": 2766, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHAMPFREMONT", - "center": "POINT (419325.8949738465016708 2384317.6659872988238931)", - "surface": 13040000, - "canton": null, - "numero_insee": "53052" - } - }, - { - "pk": 1719, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHAMPGENETEUX", - "center": "POINT (398632.7342400694033131 2369536.5878792293369770)", - "surface": 25180000, - "canton": null, - "numero_insee": "53053" - } - }, - { - "pk": 1706, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHANGE", - "center": "POINT (366369.0824841839494184 2350057.2156163910403848)", - "surface": 35700000, - "canton": null, - "numero_insee": "53054" - } - }, - { - "pk": 2277, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHANTRIGNE", - "center": "POINT (385510.6047565033659339 2383238.5642876406200230)", - "surface": 18630000, - "canton": null, - "numero_insee": "53055" - } - }, - { - "pk": 1672, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA CHAPELLE-ANTHENAISE", - "center": "POINT (376958.1483416327973828 2352345.8208910012617707)", - "surface": 20270000, - "canton": null, - "numero_insee": "53056" - } - }, - { - "pk": 1925, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA CHAPELLE-AU-RIBOUL", - "center": "POINT (394508.6181520600803196 2372104.5228927009738982)", - "surface": 13120000, - "canton": null, - "numero_insee": "53057" - } - }, - { - "pk": 1759, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA CHAPELLE-CRAONNAISE", - "center": "POINT (357347.5509519520564936 2327466.2656311858445406)", - "surface": 10410000, - "canton": null, - "numero_insee": "53058" - } - }, - { - "pk": 2479, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA CHAPELLE-RAINSOUIN", - "center": "POINT (386600.8246927045402117 2348021.8315310706384480)", - "surface": 18270000, - "canton": null, - "numero_insee": "53059" - } - }, - { - "pk": 2475, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHARCHIGNE", - "center": "POINT (396820.4011839713202789 2383031.4052754924632609)", - "surface": 14850000, - "canton": null, - "numero_insee": "53061" - } - }, - { - "pk": 2347, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHATEAU-GONTIER", - "center": "POINT (369727.5794045751681551 2318861.2335897004231811)", - "surface": 27930000, - "canton": null, - "numero_insee": "53062" - } - }, - { - "pk": 2009, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHATELAIN", - "center": "POINT (380359.6760149197652936 2315946.2949663694016635)", - "surface": 13980000, - "canton": null, - "numero_insee": "53063" - } - }, - { - "pk": 2197, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHATILLON-SUR-COLMONT", - "center": "POINT (370465.7215898659778759 2375209.2472466412000358)", - "surface": 39990000, - "canton": null, - "numero_insee": "53064" - } - }, - { - "pk": 1545, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHATRES-LA-FORET", - "center": "POINT (394984.2625323664397001 2350792.8210793696343899)", - "surface": 13830000, - "canton": null, - "numero_insee": "53065" - } - }, - { - "pk": 2080, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHEMAZE", - "center": "POINT (367471.1637478661723435 2313338.4711477546952665)", - "surface": 38570000, - "canton": null, - "numero_insee": "53066" - } - }, - { - "pk": 1952, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHEMERE-LE-ROI", - "center": "POINT (392219.0173967937007546 2334157.6405113497748971)", - "surface": 15330000, - "canton": null, - "numero_insee": "53067" - } - }, - { - "pk": 2456, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHERANCE", - "center": "POINT (355538.1570865870453417 2316242.8525126529857516)", - "surface": 8770000, - "canton": null, - "numero_insee": "53068" - } - }, - { - "pk": 1571, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CHEVAIGNE-DU-MAINE", - "center": "POINT (397399.3709753387956880 2385638.0307708065956831)", - "surface": 13260000, - "canton": null, - "numero_insee": "53069" - } - }, - { - "pk": 2291, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COLOMBIERS-DU-PLESSIS", - "center": "POINT (364111.4982230886234902 2381261.4801209773868322)", - "surface": 21500000, - "canton": null, - "numero_insee": "53071" - } - }, - { - "pk": 2950, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COMMER", - "center": "POINT (380267.4878830260131508 2363681.3396307914517820)", - "surface": 23140000, - "canton": null, - "numero_insee": "53072" - } - }, - { - "pk": 2484, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CONGRIER", - "center": "POINT (340719.5602457693312317 2317122.1661430457606912)", - "surface": 24510000, - "canton": null, - "numero_insee": "53073" - } - }, - { - "pk": 2836, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CONTEST", - "center": "POINT (375240.3247687629773282 2366542.1462247399613261)", - "surface": 23310000, - "canton": null, - "numero_insee": "53074" - } - }, - { - "pk": 1790, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COSMES", - "center": "POINT (360335.6725787968607619 2329192.0729966186918318)", - "surface": 13850000, - "canton": null, - "numero_insee": "53075" - } - }, - { - "pk": 1534, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COSSE-EN-CHAMPAGNE", - "center": "POINT (401336.8071235425304621 2332831.6571306004188955)", - "surface": 21210000, - "canton": null, - "numero_insee": "53076" - } - }, - { - "pk": 1966, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COSSE-LE-VIVIEN", - "center": "POINT (355605.3355355302337557 2332455.7702969559468329)", - "surface": 44950000, - "canton": null, - "numero_insee": "53077" - } - }, - { - "pk": 2137, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COUDRAY", - "center": "POINT (377170.5900285710813478 2314318.8480124347843230)", - "surface": 10920000, - "canton": null, - "numero_insee": "53078" - } - }, - { - "pk": 2300, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COUESMES-VAUCE", - "center": "POINT (374567.3655816146638244 2387551.7658927780576050)", - "surface": 19090000, - "canton": null, - "numero_insee": "53079" - } - }, - { - "pk": 1671, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COUPTRAIN", - "center": "POINT (405666.8075956896063872 2390309.3965343092568219)", - "surface": 670000, - "canton": null, - "numero_insee": "53080" - } - }, - { - "pk": 2181, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COURBEVEILLE", - "center": "POINT (359272.5842527607455850 2336789.0998833714984357)", - "surface": 18630000, - "canton": null, - "numero_insee": "53082" - } - }, - { - "pk": 2105, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "COURCITE", - "center": "POINT (407832.1963852516491897 2370412.9524402567185462)", - "surface": 30650000, - "canton": null, - "numero_insee": "53083" - } - }, - { - "pk": 2345, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CRAON", - "center": "POINT (354495.5997102846158668 2321338.2175383577123284)", - "surface": 24300000, - "canton": null, - "numero_insee": "53084" - } - }, - { - "pk": 2191, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CRENNES-SUR-FRAUBEE", - "center": "POINT (407160.0596150025958195 2379113.6980956709012389)", - "surface": 12740000, - "canton": null, - "numero_insee": "53085" - } - }, - { - "pk": 2209, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA CROIXILLE", - "center": "POINT (348868.7528764521703124 2360721.6531271971762180)", - "surface": 20150000, - "canton": null, - "numero_insee": "53086" - } - }, - { - "pk": 2262, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA CROPTE", - "center": "POINT (388733.9023772413493134 2332027.3752195946872234)", - "surface": 14180000, - "canton": null, - "numero_insee": "53087" - } - }, - { - "pk": 1704, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "CUILLE", - "center": "POINT (342272.3881978514255024 2335248.6832965072244406)", - "surface": 21760000, - "canton": null, - "numero_insee": "53088" - } - }, - { - "pk": 2187, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "DAON", - "center": "POINT (377801.4455151748843491 2310621.1763583738356829)", - "surface": 18280000, - "canton": null, - "numero_insee": "53089" - } - }, - { - "pk": 2839, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "DENAZE", - "center": "POINT (359168.5036842635599896 2325079.3760167392902076)", - "surface": 9210000, - "canton": null, - "numero_insee": "53090" - } - }, - { - "pk": 2258, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "DESERTINES", - "center": "POINT (362430.8160140877589583 2390954.6193260801956058)", - "surface": 26010000, - "canton": null, - "numero_insee": "53091" - } - }, - { - "pk": 1786, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "DEUX-EVAILLES", - "center": "POINT (387415.0036778048379347 2358536.2967029074206948)", - "surface": 11980000, - "canton": null, - "numero_insee": "53092" - } - }, - { - "pk": 2021, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA DOREE", - "center": "POINT (355447.6441097607603297 2388295.4915343821048737)", - "surface": 18010000, - "canton": null, - "numero_insee": "53093" - } - }, - { - "pk": 2564, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ENTRAMMES", - "center": "POINT (372179.7875872108852491 2337095.2095032492652535)", - "surface": 26800000, - "canton": null, - "numero_insee": "53094" - } - }, - { - "pk": 1603, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "EPINEUX-LE-SEGUIN", - "center": "POINT (399155.8975565397413447 2330311.8024286385625601)", - "surface": 9670000, - "canton": null, - "numero_insee": "53095" - } - }, - { - "pk": 2625, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ERNEE", - "center": "POINT (357180.7998939667013474 2372198.1232170541770756)", - "surface": 36450000, - "canton": null, - "numero_insee": "53096" - } - }, - { - "pk": 2027, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "EVRON", - "center": "POINT (397161.0274687056662515 2353812.9628376476466656)", - "surface": 35880000, - "canton": null, - "numero_insee": "53097" - } - }, - { - "pk": 2004, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "FONTAINE-COUVERTE", - "center": "POINT (340217.6550326510332525 2329527.5368710779584944)", - "surface": 21700000, - "canton": null, - "numero_insee": "53098" - } - }, - { - "pk": 2781, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "FORCE", - "center": "POINT (373148.4123028919566423 2341006.0968254143372178)", - "surface": 5010000, - "canton": null, - "numero_insee": "53099" - } - }, - { - "pk": 2451, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "FOUGEROLLES-DU-PLESSIS", - "center": "POINT (357317.6874233269481920 2392113.5294920383021235)", - "surface": 33800000, - "canton": null, - "numero_insee": "53100" - } - }, - { - "pk": 2577, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "FROMENTIERES", - "center": "POINT (375194.4241753363749012 2323409.5887297447770834)", - "surface": 22250000, - "canton": null, - "numero_insee": "53101" - } - }, - { - "pk": 3002, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "GASTINES", - "center": "POINT (342396.2274891870329157 2332347.5042588040232658)", - "surface": 8950000, - "canton": null, - "numero_insee": "53102" - } - }, - { - "pk": 2826, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE GENEST-SAINT-ISLE", - "center": "POINT (359265.1067581102252007 2349898.8420394333079457)", - "surface": 18770000, - "canton": null, - "numero_insee": "53103" - } - }, - { - "pk": 2874, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "GENNES-SUR-GLAIZE", - "center": "POINT (381226.5734608715865761 2320056.5699312333017588)", - "surface": 26290000, - "canton": null, - "numero_insee": "53104" - } - }, - { - "pk": 2987, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "GESNES", - "center": "POINT (381946.7051269586663693 2354188.1566658089868724)", - "surface": 11200000, - "canton": null, - "numero_insee": "53105" - } - }, - { - "pk": 2119, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "GESVRES", - "center": "POINT (414673.1927931702230126 2378174.9145619892515242)", - "surface": 21660000, - "canton": null, - "numero_insee": "53106" - } - }, - { - "pk": 2110, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "GORRON", - "center": "POINT (367684.2683584793703631 2384893.3855365780182183)", - "surface": 14850000, - "canton": null, - "numero_insee": "53107" - } - }, - { - "pk": 2823, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA GRAVELLE", - "center": "POINT (349575.7726200583856553 2347717.8266667430289090)", - "surface": 6200000, - "canton": null, - "numero_insee": "53108" - } - }, - { - "pk": 2432, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "GRAZAY", - "center": "POINT (391232.7978778389515355 2368875.2406314569525421)", - "surface": 16820000, - "canton": null, - "numero_insee": "53109" - } - }, - { - "pk": 2246, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "GREZ-EN-BOUERE", - "center": "POINT (384906.1117146270116791 2322888.9699755059555173)", - "surface": 27600000, - "canton": null, - "numero_insee": "53110" - } - }, - { - "pk": 2909, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA HAIE-TRAVERSAINE", - "center": "POINT (381355.5889062953647226 2377400.2348020519129932)", - "surface": 11760000, - "canton": null, - "numero_insee": "53111" - } - }, - { - "pk": 2849, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE HAM", - "center": "POINT (400661.5960327386274002 2378359.6594971586018801)", - "surface": 24990000, - "canton": null, - "numero_insee": "53112" - } - }, - { - "pk": 2802, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "HAMBERS", - "center": "POINT (394864.8244953902903944 2365302.5081079178489745)", - "surface": 26180000, - "canton": null, - "numero_insee": "53113" - } - }, - { - "pk": 2933, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "HARDANGES", - "center": "POINT (396687.8208915384602733 2374824.4153433120809495)", - "surface": 18490000, - "canton": null, - "numero_insee": "53114" - } - }, - { - "pk": 1550, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "HERCE", - "center": "POINT (363278.1328915891353972 2385257.5082875993102789)", - "surface": 10260000, - "canton": null, - "numero_insee": "53115" - } - }, - { - "pk": 2980, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE HORPS", - "center": "POINT (392639.0877600974054076 2380395.1252570273354650)", - "surface": 23180000, - "canton": null, - "numero_insee": "53116" - } - }, - { - "pk": 2904, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "HOUSSAY", - "center": "POINT (369652.7905404811026528 2327967.5693822661414742)", - "surface": 14090000, - "canton": null, - "numero_insee": "53117" - } - }, - { - "pk": 1902, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE HOUSSEAU-BRETIGNOLLES", - "center": "POINT (387460.0514232946443371 2389559.0926801902242005)", - "surface": 9360000, - "canton": null, - "numero_insee": "53118" - } - }, - { - "pk": 1913, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "L'HUISSERIE", - "center": "POINT (368455.0654078230727464 2339766.6491394233889878)", - "surface": 15130000, - "canton": null, - "numero_insee": "53119" - } - }, - { - "pk": 2478, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "IZE", - "center": "POINT (404001.3529748514993116 2361675.0410120859742165)", - "surface": 28420000, - "canton": null, - "numero_insee": "53120" - } - }, - { - "pk": 2922, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "JAVRON-LES-CHAPELLES", - "center": "POINT (402520.7985590591561049 2383478.6322548035532236)", - "surface": 38530000, - "canton": null, - "numero_insee": "53121" - } - }, - { - "pk": 2143, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "JUBLAINS", - "center": "POINT (389367.7670280114980415 2364456.6873290343210101)", - "surface": 36490000, - "canton": null, - "numero_insee": "53122" - } - }, - { - "pk": 2392, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "JUVIGNE", - "center": "POINT (350535.4398773207212798 2364938.3926925109699368)", - "surface": 62570000, - "canton": null, - "numero_insee": "53123" - } - }, - { - "pk": 1596, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LAIGNE", - "center": "POINT (362605.3621646013343707 2320904.3686571749858558)", - "surface": 21540000, - "canton": null, - "numero_insee": "53124" - } - }, - { - "pk": 2567, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LANDIVY", - "center": "POINT (350414.0726761862752028 2391956.8622700991109014)", - "surface": 29070000, - "canton": null, - "numero_insee": "53125" - } - }, - { - "pk": 1657, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LARCHAMP", - "center": "POINT (352434.2297198021551594 2377463.0394733049906790)", - "surface": 41260000, - "canton": null, - "numero_insee": "53126" - } - }, - { - "pk": 2198, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LASSAY-LES-CHATEAUX", - "center": "POINT (390188.9549411297775805 2386279.1894917213357985)", - "surface": 58330000, - "canton": null, - "numero_insee": "53127" - } - }, - { - "pk": 2728, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LAUBRIERES", - "center": "POINT (345491.8078918154351413 2333173.4699903954751790)", - "surface": 8460000, - "canton": null, - "numero_insee": "53128" - } - }, - { - "pk": 2135, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LAUNAY-VILLIERS", - "center": "POINT (350729.8313478837953880 2353431.5206658905372024)", - "surface": 9440000, - "canton": null, - "numero_insee": "53129" - } - }, - { - "pk": 1819, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LAVAL", - "center": "POINT (368715.0067682709777728 2344672.4536855332553387)", - "surface": 34310000, - "canton": null, - "numero_insee": "53130" - } - }, - { - "pk": 1929, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LESBOIS", - "center": "POINT (368457.6767323805252090 2388202.0910189035348594)", - "surface": 6010000, - "canton": null, - "numero_insee": "53131" - } - }, - { - "pk": 2285, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LEVARE", - "center": "POINT (359878.3927840912947431 2384929.4008425367064774)", - "surface": 11750000, - "canton": null, - "numero_insee": "53132" - } - }, - { - "pk": 2292, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LIGNIERES-ORGERES", - "center": "POINT (411630.2390642530517653 2395262.0135688725858927)", - "surface": 41180000, - "canton": null, - "numero_insee": "53133" - } - }, - { - "pk": 2965, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LIVET", - "center": "POINT (391492.6091765584424138 2349463.1181733943521976)", - "surface": 11260000, - "canton": null, - "numero_insee": "53134" - } - }, - { - "pk": 1517, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LIVRE-LA-TOUCHE", - "center": "POINT (351052.2049528028583154 2326313.8025348316878080)", - "surface": 30040000, - "canton": null, - "numero_insee": "53135" - } - }, - { - "pk": 2014, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LOIGNE-SUR-MAYENNE", - "center": "POINT (369991.6261876885546371 2323266.7707610111683607)", - "surface": 20400000, - "canton": null, - "numero_insee": "53136" - } - }, - { - "pk": 2570, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LOIRON", - "center": "POINT (357300.6903337935800664 2345379.3752454826608300)", - "surface": 22800000, - "canton": null, - "numero_insee": "53137" - } - }, - { - "pk": 2211, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LONGUEFUYE", - "center": "POINT (380991.8783810120075941 2324257.8509509703144431)", - "surface": 14560000, - "canton": null, - "numero_insee": "53138" - } - }, - { - "pk": 2028, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LOUPFOUGERES", - "center": "POINT (400599.4391549269785173 2373755.8286424595862627)", - "surface": 18570000, - "canton": null, - "numero_insee": "53139" - } - }, - { - "pk": 2466, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LOUVERNE", - "center": "POINT (373060.4545472378376871 2351713.3523843823932111)", - "surface": 20760000, - "canton": null, - "numero_insee": "53140" - } - }, - { - "pk": 2016, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LOUVIGNE", - "center": "POINT (378530.7115190440090373 2343652.2701899716630578)", - "surface": 12670000, - "canton": null, - "numero_insee": "53141" - } - }, - { - "pk": 2022, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MADRE", - "center": "POINT (399371.8246309998212382 2389156.7649625129997730)", - "surface": 17630000, - "canton": null, - "numero_insee": "53142" - } - }, - { - "pk": 1953, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MAISONCELLES-DU-MAINE", - "center": "POINT (376208.0206818399019539 2334025.9677311833947897)", - "surface": 15840000, - "canton": null, - "numero_insee": "53143" - } - }, - { - "pk": 2205, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MARCILLE-LA-VILLE", - "center": "POINT (390997.2616798737435602 2373176.4231442282907665)", - "surface": 27210000, - "canton": null, - "numero_insee": "53144" - } - }, - { - "pk": 2261, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MARIGNE-PEUTON", - "center": "POINT (365396.6378348188009113 2322228.2756266617216170)", - "surface": 16540000, - "canton": null, - "numero_insee": "53145" - } - }, - { - "pk": 2263, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MARTIGNE-SUR-MAYENNE", - "center": "POINT (377194.2092013825895265 2360153.5149817536585033)", - "surface": 31730000, - "canton": null, - "numero_insee": "53146" - } - }, - { - "pk": 2630, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MAYENNE", - "center": "POINT (381002.2128683702903800 2371693.2079226132482290)", - "surface": 20200000, - "canton": null, - "numero_insee": "53147" - } - }, - { - "pk": 1965, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MEE", - "center": "POINT (360142.2087540278444067 2316180.5462628435343504)", - "surface": 8690000, - "canton": null, - "numero_insee": "53148" - } - }, - { - "pk": 2398, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MENIL", - "center": "POINT (373290.8687290059751831 2311484.8052106415852904)", - "surface": 28410000, - "canton": null, - "numero_insee": "53150" - } - }, - { - "pk": 2244, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MERAL", - "center": "POINT (349593.8143743643886410 2333307.1621860382147133)", - "surface": 29530000, - "canton": null, - "numero_insee": "53151" - } - }, - { - "pk": 2416, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MESLAY-DU-MAINE", - "center": "POINT (383734.5727236468810588 2331485.8745765117928386)", - "surface": 24490000, - "canton": null, - "numero_insee": "53152" - } - }, - { - "pk": 2182, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MEZANGERS", - "center": "POINT (392812.0215854973648675 2359381.2904392974451184)", - "surface": 29480000, - "canton": null, - "numero_insee": "53153" - } - }, - { - "pk": 2612, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTAUDIN", - "center": "POINT (354307.5785783757455647 2380880.8462432539090514)", - "surface": 21900000, - "canton": null, - "numero_insee": "53154" - } - }, - { - "pk": 2238, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTENAY", - "center": "POINT (360306.6474127022083849 2369321.6558874207548797)", - "surface": 37710000, - "canton": null, - "numero_insee": "53155" - } - }, - { - "pk": 2727, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTFLOURS", - "center": "POINT (372118.7516202267142944 2356709.3143432936631143)", - "surface": 7990000, - "canton": null, - "numero_insee": "53156" - } - }, - { - "pk": 2572, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTIGNE-LE-BRILLANT", - "center": "POINT (364754.1791991125210188 2339536.1150545855052769)", - "surface": 17800000, - "canton": null, - "numero_insee": "53157" - } - }, - { - "pk": 2237, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTJEAN", - "center": "POINT (355448.6388904717750847 2339359.6899235867895186)", - "surface": 20130000, - "canton": null, - "numero_insee": "53158" - } - }, - { - "pk": 1630, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTOURTIER", - "center": "POINT (385093.7169890457880683 2360918.9681732174940407)", - "surface": 19200000, - "canton": null, - "numero_insee": "53159" - } - }, - { - "pk": 1602, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTREUIL-POULAY", - "center": "POINT (387237.2206149056437425 2380150.5403577056713402)", - "surface": 16190000, - "canton": null, - "numero_insee": "53160" - } - }, - { - "pk": 2600, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MONTSURS", - "center": "POINT (384965.1784835400758311 2352211.4967737542465329)", - "surface": 10910000, - "canton": null, - "numero_insee": "53161" - } - }, - { - "pk": 2228, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "MOULAY", - "center": "POINT (380340.4106729440391064 2366984.3496023174375296)", - "surface": 8730000, - "canton": null, - "numero_insee": "53162" - } - }, - { - "pk": 2961, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "NEAU", - "center": "POINT (390837.8591700462857261 2356062.6152357636019588)", - "surface": 12770000, - "canton": null, - "numero_insee": "53163" - } - }, - { - "pk": 1686, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "NEUILLY-LE-VENDIN", - "center": "POINT (403156.9596136880572885 2391289.4297257922589779)", - "surface": 14700000, - "canton": null, - "numero_insee": "53164" - } - }, - { - "pk": 1825, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "NIAFLES", - "center": "POINT (350290.2047719069523737 2321603.9657243252731860)", - "surface": 7990000, - "canton": null, - "numero_insee": "53165" - } - }, - { - "pk": 1637, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "NUILLE-SUR-VICOIN", - "center": "POINT (367387.1783130421536043 2335754.8706563524901867)", - "surface": 24110000, - "canton": null, - "numero_insee": "53168" - } - }, - { - "pk": 1814, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "OLIVET", - "center": "POINT (356446.8001147781615146 2351877.2094179587438703)", - "surface": 9860000, - "canton": null, - "numero_insee": "53169" - } - }, - { - "pk": 2276, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "OISSEAU", - "center": "POINT (377348.8642499166890047 2377867.6650531124323606)", - "surface": 30890000, - "canton": null, - "numero_insee": "53170" - } - }, - { - "pk": 2633, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "ORIGNE", - "center": "POINT (370615.6756242611445487 2332578.9659113064408302)", - "surface": 10390000, - "canton": null, - "numero_insee": "53172" - } - }, - { - "pk": 1941, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA PALLU", - "center": "POINT (405346.0045031685731374 2392808.5262236199341714)", - "surface": 6550000, - "canton": null, - "numero_insee": "53173" - } - }, - { - "pk": 2876, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PARIGNE-SUR-BRAYE", - "center": "POINT (378685.8970793857006356 2373475.4740627817809582)", - "surface": 9730000, - "canton": null, - "numero_insee": "53174" - } - }, - { - "pk": 1661, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PARNE-SUR-ROC", - "center": "POINT (375969.2350476088467985 2338727.5464907069690526)", - "surface": 24030000, - "canton": null, - "numero_insee": "53175" - } - }, - { - "pk": 2616, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE PAS", - "center": "POINT (375591.8512781593017280 2384658.1110342754982412)", - "surface": 22060000, - "canton": null, - "numero_insee": "53176" - } - }, - { - "pk": 2700, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA PELLERINE", - "center": "POINT (349958.0164373195148073 2374340.5021796529181302)", - "surface": 8350000, - "canton": null, - "numero_insee": "53177" - } - }, - { - "pk": 1876, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PEUTON", - "center": "POINT (364467.2596476378967054 2325723.3182553341612220)", - "surface": 10640000, - "canton": null, - "numero_insee": "53178" - } - }, - { - "pk": 2394, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PLACE", - "center": "POINT (368928.7581443681265227 2367390.9637939655221999)", - "surface": 25690000, - "canton": null, - "numero_insee": "53179" - } - }, - { - "pk": 2968, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "POMMERIEUX", - "center": "POINT (357715.0740185587201267 2319263.0149016254581511)", - "surface": 23100000, - "canton": null, - "numero_insee": "53180" - } - }, - { - "pk": 2662, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PONTMAIN", - "center": "POINT (348252.8329513050848618 2387035.6621773215010762)", - "surface": 5880000, - "canton": null, - "numero_insee": "53181" - } - }, - { - "pk": 2837, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PORT-BRILLET", - "center": "POINT (354243.6752922415034845 2352059.2907617809250951)", - "surface": 8200000, - "canton": null, - "numero_insee": "53182" - } - }, - { - "pk": 1740, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PREAUX", - "center": "POINT (390650.8568616322008893 2330141.7097395574674010)", - "surface": 9840000, - "canton": null, - "numero_insee": "53184" - } - }, - { - "pk": 2153, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "PRE-EN-PAIL", - "center": "POINT (412506.6480924503412098 2386062.7097603045403957)", - "surface": 44470000, - "canton": null, - "numero_insee": "53185" - } - }, - { - "pk": 2113, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "QUELAINES-SAINT-GAULT", - "center": "POINT (365632.7677275721216574 2330036.1555137620307505)", - "surface": 42630000, - "canton": null, - "numero_insee": "53186" - } - }, - { - "pk": 1868, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "RAVIGNY", - "center": "POINT (422019.3826178308809176 2385340.6046921806409955)", - "surface": 6500000, - "canton": null, - "numero_insee": "53187" - } - }, - { - "pk": 2510, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "RENAZE", - "center": "POINT (346943.5962033703108318 2314771.3100055935792625)", - "surface": 16810000, - "canton": null, - "numero_insee": "53188" - } - }, - { - "pk": 2278, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "RENNES-EN-GRENOUILLES", - "center": "POINT (389743.4211069842567667 2391779.4373057316988707)", - "surface": 8050000, - "canton": null, - "numero_insee": "53189" - } - }, - { - "pk": 2725, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LE RIBAY", - "center": "POINT (396052.8312306677689776 2379022.2158563779667020)", - "surface": 17150000, - "canton": null, - "numero_insee": "53190" - } - }, - { - "pk": 1890, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA ROE", - "center": "POINT (342841.5884276109864004 2326846.9743841867893934)", - "surface": 8730000, - "canton": null, - "numero_insee": "53191" - } - }, - { - "pk": 1549, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA ROUAUDIERE", - "center": "POINT (336382.1306508376146667 2321289.8738763760775328)", - "surface": 19340000, - "canton": null, - "numero_insee": "53192" - } - }, - { - "pk": 2180, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "RUILLE-FROID-FONDS", - "center": "POINT (378566.3561760559678078 2327140.1204295065253973)", - "surface": 23760000, - "canton": null, - "numero_insee": "53193" - } - }, - { - "pk": 1775, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "RUILLE-LE-GRAVELAIS", - "center": "POINT (353805.6966168204671703 2344450.0402007456868887)", - "surface": 17200000, - "canton": null, - "numero_insee": "53194" - } - }, - { - "pk": 1559, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SACE", - "center": "POINT (374211.9376201243139803 2357727.2458405122160912)", - "surface": 12500000, - "canton": null, - "numero_insee": "53195" - } - }, - { - "pk": 1563, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-AIGNAN-DE-COUPTRAIN", - "center": "POINT (404786.8391503214370459 2387800.3688189093954861)", - "surface": 17290000, - "canton": null, - "numero_insee": "53196" - } - }, - { - "pk": 1505, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-AIGNAN-SUR-ROE", - "center": "POINT (339775.4931016149930656 2322418.5016185082495213)", - "surface": 18160000, - "canton": null, - "numero_insee": "53197" - } - }, - { - "pk": 2918, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-AUBIN-DU-DESERT", - "center": "POINT (412928.1250315255019814 2371355.6133138951845467)", - "surface": 12640000, - "canton": null, - "numero_insee": "53198" - } - }, - { - "pk": 2299, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-AUBIN-FOSSE-LOUVAIN", - "center": "POINT (365256.4330764889600687 2388075.7423850749619305)", - "surface": 14460000, - "canton": null, - "numero_insee": "53199" - } - }, - { - "pk": 1707, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-BAUDELLE", - "center": "POINT (378218.4624710216885433 2369468.7299321116879582)", - "surface": 7290000, - "canton": null, - "numero_insee": "53200" - } - }, - { - "pk": 2444, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-BERTHEVIN", - "center": "POINT (362900.3884305415558629 2345925.6916671092621982)", - "surface": 32070000, - "canton": null, - "numero_insee": "53201" - } - }, - { - "pk": 1713, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-BERTHEVIN-LA-TANNIERE", - "center": "POINT (356786.2304442962631583 2383703.1801138706505299)", - "surface": 17770000, - "canton": null, - "numero_insee": "53202" - } - }, - { - "pk": 2912, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-BRICE", - "center": "POINT (392221.8989229892031290 2321648.1683900458738208)", - "surface": 13270000, - "canton": null, - "numero_insee": "53203" - } - }, - { - "pk": 2491, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-CALAIS-DU-DESERT", - "center": "POINT (408662.9610958203556947 2391034.5827543172053993)", - "surface": 17270000, - "canton": null, - "numero_insee": "53204" - } - }, - { - "pk": 2304, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-CENERE", - "center": "POINT (382378.2379276737337932 2350388.8898717826232314)", - "surface": 19000000, - "canton": null, - "numero_insee": "53205" - } - }, - { - "pk": 2519, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-CHARLES-LA-FORET", - "center": "POINT (382859.4610310525167733 2328376.3275846242904663)", - "surface": 10620000, - "canton": null, - "numero_insee": "53206" - } - }, - { - "pk": 2221, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-CHRISTOPHE-DU-LUAT", - "center": "POINT (390371.2822427192004398 2351955.7455247631296515)", - "surface": 19350000, - "canton": null, - "numero_insee": "53207" - } - }, - { - "pk": 1537, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-CYR-EN-PAIL", - "center": "POINT (408314.6582705481559969 2384727.2268022340722382)", - "surface": 20480000, - "canton": null, - "numero_insee": "53208" - } - }, - { - "pk": 1718, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-CYR-LE-GRAVELAIS", - "center": "POINT (350815.9597679967992008 2342924.4063530350103974)", - "surface": 20460000, - "canton": null, - "numero_insee": "53209" - } - }, - { - "pk": 1838, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-DENIS-D'ANJOU", - "center": "POINT (391686.5450839928817004 2313737.6974892248399556)", - "surface": 41800000, - "canton": null, - "numero_insee": "53210" - } - }, - { - "pk": 2337, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-DENIS-DE-GASTINES", - "center": "POINT (362246.3875769088044763 2376843.0069567710161209)", - "surface": 49010000, - "canton": null, - "numero_insee": "53211" - } - }, - { - "pk": 1709, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-DENIS-DU-MAINE", - "center": "POINT (386606.9383966502500698 2335112.2189805591478944)", - "surface": 14580000, - "canton": null, - "numero_insee": "53212" - } - }, - { - "pk": 2855, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-ELLIER-DU-MAINE", - "center": "POINT (349881.7495111131574959 2383646.5776724191382527)", - "surface": 17900000, - "canton": null, - "numero_insee": "53213" - } - }, - { - "pk": 1799, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-ERBLON", - "center": "POINT (338130.8446421611588448 2315499.7339012958109379)", - "surface": 5540000, - "canton": null, - "numero_insee": "53214" - } - }, - { - "pk": 2764, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-FORT", - "center": "POINT (371956.2466694270842709 2315577.0034643681719899)", - "surface": 10810000, - "canton": null, - "numero_insee": "53215" - } - }, - { - "pk": 2631, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-FRAIMBAULT-DE-PRIERES", - "center": "POINT (384168.1141651483485475 2376122.4200252564623952)", - "surface": 16960000, - "canton": null, - "numero_insee": "53216" - } - }, - { - "pk": 2293, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINTE-GEMMES-LE-ROBERT", - "center": "POINT (398514.1752458956325427 2359628.3783571994863451)", - "surface": 35770000, - "canton": null, - "numero_insee": "53218" - } - }, - { - "pk": 2286, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-GEORGES-BUTTAVENT", - "center": "POINT (373900.8294462398625910 2371234.5626726765185595)", - "surface": 37080000, - "canton": null, - "numero_insee": "53219" - } - }, - { - "pk": 2660, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-GEORGES-LE-FLECHARD", - "center": "POINT (387357.2729978798888624 2341222.9767062761820853)", - "surface": 8420000, - "canton": null, - "numero_insee": "53220" - } - }, - { - "pk": 1973, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-GEORGES-SUR-ERVE", - "center": "POINT (404445.3151111082406715 2356374.8038104819133878)", - "surface": 20470000, - "canton": null, - "numero_insee": "53221" - } - }, - { - "pk": 2074, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-GERMAIN-D'ANXURE", - "center": "POINT (371774.1690280886832625 2362110.4550786153413355)", - "surface": 10450000, - "canton": null, - "numero_insee": "53222" - } - }, - { - "pk": 2240, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-GERMAIN-DE-COULAMER", - "center": "POINT (412670.8317472278140485 2366149.7112489757128060)", - "surface": 17780000, - "canton": null, - "numero_insee": "53223" - } - }, - { - "pk": 1967, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-GERMAIN-LE-FOUILLOUX", - "center": "POINT (365639.0383011411176994 2353653.8919806857593358)", - "surface": 15650000, - "canton": null, - "numero_insee": "53224" - } - }, - { - "pk": 2048, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-GERMAIN-LE-GUILLAUME", - "center": "POINT (364776.8998090450186282 2361152.3437823243439198)", - "surface": 13510000, - "canton": null, - "numero_insee": "53225" - } - }, - { - "pk": 2453, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-HILAIRE-DU-MAINE", - "center": "POINT (357154.5961796136107296 2363191.3453603009693325)", - "surface": 30500000, - "canton": null, - "numero_insee": "53226" - } - }, - { - "pk": 2272, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-JEAN-SUR-ERVE", - "center": "POINT (396762.8539922585478052 2341400.4580898969434202)", - "surface": 25240000, - "canton": null, - "numero_insee": "53228" - } - }, - { - "pk": 2139, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-JEAN-SUR-MAYENNE", - "center": "POINT (370042.8191399760544300 2353589.9747976153157651)", - "surface": 18050000, - "canton": null, - "numero_insee": "53229" - } - }, - { - "pk": 2013, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-JULIEN-DU-TERROUX", - "center": "POINT (396957.1004873936763033 2390738.0208523534238338)", - "surface": 11430000, - "canton": null, - "numero_insee": "53230" - } - }, - { - "pk": 1910, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-LAURENT-DES-MORTIERS", - "center": "POINT (384397.0500914753647521 2311776.2567717381753027)", - "surface": 10160000, - "canton": null, - "numero_insee": "53231" - } - }, - { - "pk": 2943, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-LEGER", - "center": "POINT (392616.4113643598975614 2346670.2839859533123672)", - "surface": 17200000, - "canton": null, - "numero_insee": "53232" - } - }, - { - "pk": 1732, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-LOUP-DU-DORAT", - "center": "POINT (393501.3878415836952627 2324260.6850744369439781)", - "surface": 8250000, - "canton": null, - "numero_insee": "53233" - } - }, - { - "pk": 1694, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-LOUP-DU-GAST", - "center": "POINT (383632.4090024551842362 2380421.1119399131275713)", - "surface": 10030000, - "canton": null, - "numero_insee": "53234" - } - }, - { - "pk": 2639, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINTE-MARIE-DU-BOIS", - "center": "POINT (391465.0946620437898673 2389291.8262429144233465)", - "surface": 11390000, - "canton": null, - "numero_insee": "53235" - } - }, - { - "pk": 1946, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-MARS-DU-DESERT", - "center": "POINT (413946.9356647560489364 2369162.4174792706035078)", - "surface": 11890000, - "canton": null, - "numero_insee": "53236" - } - }, - { - "pk": 1982, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-MARS-SUR-COLMONT", - "center": "POINT (374326.3547668491955847 2380344.6316752010025084)", - "surface": 16700000, - "canton": null, - "numero_insee": "53237" - } - }, - { - "pk": 2963, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-MARS-SUR-LA-FUTAIE", - "center": "POINT (352159.4568288527661934 2386567.3211473580449820)", - "surface": 22320000, - "canton": null, - "numero_insee": "53238" - } - }, - { - "pk": 2239, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-MARTIN-DE-CONNEE", - "center": "POINT (408004.0121263426262885 2361708.0238945758901536)", - "surface": 19490000, - "canton": null, - "numero_insee": "53239" - } - }, - { - "pk": 1920, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-MARTIN-DU-LIMET", - "center": "POINT (348016.4841018422739580 2318182.7203200296498835)", - "surface": 12310000, - "canton": null, - "numero_insee": "53240" - } - }, - { - "pk": 1855, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-MICHEL-DE-FEINS", - "center": "POINT (381895.2880098705063574 2311755.6829340974800289)", - "surface": 6780000, - "canton": null, - "numero_insee": "53241" - } - }, - { - "pk": 1896, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-MICHEL-DE-LA-ROE", - "center": "POINT (341156.7996856455574743 2324831.6489660507068038)", - "surface": 13280000, - "canton": null, - "numero_insee": "53242" - } - }, - { - "pk": 2757, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-OUEN-DES-TOITS", - "center": "POINT (359630.0760917761945166 2354205.0246310462243855)", - "surface": 21220000, - "canton": null, - "numero_insee": "53243" - } - }, - { - "pk": 2926, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-OUEN-DES-VALLONS", - "center": "POINT (384528.7014238396077417 2356611.1588487592525780)", - "surface": 7510000, - "canton": null, - "numero_insee": "53244" - } - }, - { - "pk": 2037, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-PIERRE-DES-LANDES", - "center": "POINT (350287.7381778458366171 2370740.5923936953768134)", - "surface": 42230000, - "canton": null, - "numero_insee": "53245" - } - }, - { - "pk": 2159, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-PIERRE-DES-NIDS", - "center": "POINT (418857.7669422244071029 2380411.0110077657736838)", - "surface": 37030000, - "canton": null, - "numero_insee": "53246" - } - }, - { - "pk": 1696, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-PIERRE-LA-COUR", - "center": "POINT (349750.4824211559025571 2350821.5649228212423623)", - "surface": 16060000, - "canton": null, - "numero_insee": "53247" - } - }, - { - "pk": 2995, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-PIERRE-SUR-ERVE", - "center": "POINT (394987.1651143836206757 2338283.5134210749529302)", - "surface": 9660000, - "canton": null, - "numero_insee": "53248" - } - }, - { - "pk": 2241, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-PIERRE-SUR-ORTHE", - "center": "POINT (412006.6706291189184412 2361741.0194098767824471)", - "surface": 31780000, - "canton": null, - "numero_insee": "53249" - } - }, - { - "pk": 1933, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-POIX", - "center": "POINT (347577.6743311840109527 2335091.9985776087269187)", - "surface": 7500000, - "canton": null, - "numero_insee": "53250" - } - }, - { - "pk": 2076, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-QUENTIN-LES-ANGES", - "center": "POINT (359362.9950030772597529 2313572.1487442962825298)", - "surface": 17800000, - "canton": null, - "numero_insee": "53251" - } - }, - { - "pk": 2473, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-SAMSON", - "center": "POINT (413371.7509862782317214 2390372.9024644223973155)", - "surface": 13540000, - "canton": null, - "numero_insee": "53252" - } - }, - { - "pk": 2123, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-SATURNIN-DU-LIMET", - "center": "POINT (343510.0489677845034748 2318546.1006902121007442)", - "surface": 10720000, - "canton": null, - "numero_insee": "53253" - } - }, - { - "pk": 2946, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-SULPICE", - "center": "POINT (371771.5071037897723727 2325883.3735087919048965)", - "surface": 8040000, - "canton": null, - "numero_insee": "53254" - } - }, - { - "pk": 2336, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINTE-SUZANNE", - "center": "POINT (399508.7206889993976802 2348228.1433971240185201)", - "surface": 23130000, - "canton": null, - "numero_insee": "53255" - } - }, - { - "pk": 1555, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAINT-THOMAS-DE-COURCERIERS", - "center": "POINT (406767.7555181189090945 2366000.9789416408166289)", - "surface": 13070000, - "canton": null, - "numero_insee": "53256" - } - }, - { - "pk": 2125, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SAULGES", - "center": "POINT (395220.2542390670278110 2334282.4202284049242735)", - "surface": 21930000, - "canton": null, - "numero_insee": "53257" - } - }, - { - "pk": 2202, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "LA SELLE-CRAONNAISE", - "center": "POINT (345885.4912897322792560 2321768.0179258133284748)", - "surface": 29370000, - "canton": null, - "numero_insee": "53258" - } - }, - { - "pk": 2751, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SENONNES", - "center": "POINT (335409.2836727042449638 2317879.2995046931318939)", - "surface": 13180000, - "canton": null, - "numero_insee": "53259" - } - }, - { - "pk": 2001, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SIMPLE", - "center": "POINT (361269.1425848207436502 2325196.6887836065143347)", - "surface": 9170000, - "canton": null, - "numero_insee": "53260" - } - }, - { - "pk": 1863, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SOUCE", - "center": "POINT (377552.8573417270090431 2389577.7183575374074280)", - "surface": 6640000, - "canton": null, - "numero_insee": "53261" - } - }, - { - "pk": 2395, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "SOULGE-SUR-OUETTE", - "center": "POINT (384229.6492379732662812 2344299.5716208466328681)", - "surface": 23070000, - "canton": null, - "numero_insee": "53262" - } - }, - { - "pk": 1977, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "THUBOEUF", - "center": "POINT (393742.6930169860133901 2392212.6272967332042754)", - "surface": 14170000, - "canton": null, - "numero_insee": "53263" - } - }, - { - "pk": 1641, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "THORIGNE-EN-CHARNIE", - "center": "POINT (398797.1793087299447507 2337414.2075273655354977)", - "surface": 17290000, - "canton": null, - "numero_insee": "53264" - } - }, - { - "pk": 2440, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "TORCE-VIVIERS-EN-CHARNIE", - "center": "POINT (405720.3301525854039937 2347378.6449831062927842)", - "surface": 48830000, - "canton": null, - "numero_insee": "53265" - } - }, - { - "pk": 1606, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "TRANS", - "center": "POINT (403647.5690111490548588 2368176.8729929882101715)", - "surface": 15650000, - "canton": null, - "numero_insee": "53266" - } - }, - { - "pk": 2913, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VAIGES", - "center": "POINT (390647.1704790919902734 2342751.1670833299867809)", - "surface": 36120000, - "canton": null, - "numero_insee": "53267" - } - }, - { - "pk": 1582, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VAUTORTE", - "center": "POINT (365494.4757454811478965 2371265.6082715452648699)", - "surface": 24260000, - "canton": null, - "numero_insee": "53269" - } - }, - { - "pk": 2928, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VIEUVY", - "center": "POINT (362156.0740088727325201 2387850.1582595715299249)", - "surface": 7340000, - "canton": null, - "numero_insee": "53270" - } - }, - { - "pk": 1983, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VILLAINES-LA-JUHEL", - "center": "POINT (405097.4414836905780248 2374393.3143250057473779)", - "surface": 28740000, - "canton": null, - "numero_insee": "53271" - } - }, - { - "pk": 2771, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VILLEPAIL", - "center": "POINT (407341.2236696142936125 2381416.8424997790716588)", - "surface": 15490000, - "canton": null, - "numero_insee": "53272" - } - }, - { - "pk": 1978, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VILLIERS-CHARLEMAGNE", - "center": "POINT (374344.5346926808124408 2329407.1729825614020228)", - "surface": 27590000, - "canton": null, - "numero_insee": "53273" - } - }, - { - "pk": 1743, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VIMARCE", - "center": "POINT (409040.1439630088862032 2357413.4061354831792414)", - "surface": 20710000, - "canton": null, - "numero_insee": "53274" - } - }, - { - "pk": 2284, - "model": "ishtar_common.town", - "fields": { - "departement": 54, - "name": "VOUTRE", - "center": "POINT (404281.4575672016944736 2351970.2033695178106427)", - "surface": 18610000, - "canton": null, - "numero_insee": "53276" - } - }, - { - "pk": 9813, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ABAUCOURT", - "center": "POINT (888081.8123017805628479 2439908.0531010720878839)", - "surface": 7950000, - "canton": null, - "numero_insee": "54001" - } - }, - { - "pk": 34120, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ABBEVILLE-LES-CONFLANS", - "center": "POINT (855679.4428155354689807 2472550.8184306360781193)", - "surface": 7850000, - "canton": null, - "numero_insee": "54002" - } - }, - { - "pk": 32847, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ABONCOURT", - "center": "POINT (870086.6329123720061034 2379811.0936095253564417)", - "surface": 6890000, - "canton": null, - "numero_insee": "54003" - } - }, - { - "pk": 37944, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AFFLEVILLE", - "center": "POINT (848716.1477317381650209 2479395.4156029867008328)", - "surface": 9580000, - "canton": null, - "numero_insee": "54004" - } - }, - { - "pk": 26362, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AFFRACOURT", - "center": "POINT (883097.6944698377046734 2391231.2788388933986425)", - "surface": 5620000, - "canton": null, - "numero_insee": "54005" - } - }, - { - "pk": 30504, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AGINCOURT", - "center": "POINT (886838.8561948287533596 2421584.8249752586707473)", - "surface": 4260000, - "canton": null, - "numero_insee": "54006" - } - }, - { - "pk": 25960, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AINGERAY", - "center": "POINT (870827.2725851442664862 2421647.0111154699698091)", - "surface": 12910000, - "canton": null, - "numero_insee": "54007" - } - }, - { - "pk": 30250, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ALLAIN", - "center": "POINT (864604.1274378340458497 2400578.7853938662447035)", - "surface": 16600000, - "canton": null, - "numero_insee": "54008" - } - }, - { - "pk": 18479, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ALLAMONT", - "center": "POINT (851146.4610769464634359 2464406.5672765295021236)", - "surface": 9300000, - "canton": null, - "numero_insee": "54009" - } - }, - { - "pk": 28258, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ALLAMPS", - "center": "POINT (856703.4324997873045504 2400010.4818134894594550)", - "surface": 7300000, - "canton": null, - "numero_insee": "54010" - } - }, - { - "pk": 25361, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ALLONDRELLE-LA-MALMAISON", - "center": "POINT (834176.1549890135647729 2506287.6009966013953090)", - "surface": 13580000, - "canton": null, - "numero_insee": "54011" - } - }, - { - "pk": 33281, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AMANCE", - "center": "POINT (892115.3655817047692835 2424732.4694047193042934)", - "surface": 13560000, - "canton": null, - "numero_insee": "54012" - } - }, - { - "pk": 29680, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AMENONCOURT", - "center": "POINT (927743.7015931041678414 2412731.7729686647653580)", - "surface": 7270000, - "canton": null, - "numero_insee": "54013" - } - }, - { - "pk": 36836, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ANCERVILLER", - "center": "POINT (932238.2800132718402892 2402163.2127350606024265)", - "surface": 12450000, - "canton": null, - "numero_insee": "54014" - } - }, - { - "pk": 30926, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ANDERNY", - "center": "POINT (857749.8968664359999821 2487778.3931966968812048)", - "surface": 9600000, - "canton": null, - "numero_insee": "54015" - } - }, - { - "pk": 7183, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ANDILLY", - "center": "POINT (861095.4780095489695668 2424565.3298548976890743)", - "surface": 7210000, - "canton": null, - "numero_insee": "54016" - } - }, - { - "pk": 15932, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ANGOMONT", - "center": "POINT (942367.2242809616727754 2399649.0977871557697654)", - "surface": 17470000, - "canton": null, - "numero_insee": "54017" - } - }, - { - "pk": 27609, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ANOUX", - "center": "POINT (856809.5709555565845221 2480765.8299977174028754)", - "surface": 9940000, - "canton": null, - "numero_insee": "54018" - } - }, - { - "pk": 24957, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ANSAUVILLE", - "center": "POINT (856050.2565387033391744 2429425.3001368911936879)", - "surface": 6950000, - "canton": null, - "numero_insee": "54019" - } - }, - { - "pk": 27969, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ANTHELUPT", - "center": "POINT (900763.1190849028062075 2408295.6222868305630982)", - "surface": 7820000, - "canton": null, - "numero_insee": "54020" - } - }, - { - "pk": 4282, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ARMAUCOURT", - "center": "POINT (890959.4518796063493937 2431126.8890628190711141)", - "surface": 3700000, - "canton": null, - "numero_insee": "54021" - } - }, - { - "pk": 32282, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ARNAVILLE", - "center": "POINT (869962.4361189675983042 2452360.3754255748353899)", - "surface": 5290000, - "canton": null, - "numero_insee": "54022" - } - }, - { - "pk": 20375, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ARRACOURT", - "center": "POINT (908748.9054087795084342 2422174.2042055805213749)", - "surface": 17780000, - "canton": null, - "numero_insee": "54023" - } - }, - { - "pk": 13420, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ARRAYE-ET-HAN", - "center": "POINT (890137.3885941349435598 2433621.5044945040717721)", - "surface": 10360000, - "canton": null, - "numero_insee": "54024" - } - }, - { - "pk": 5888, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ART-SUR-MEURTHE", - "center": "POINT (889204.9931202282896265 2414100.0235855695791543)", - "surface": 11560000, - "canton": null, - "numero_insee": "54025" - } - }, - { - "pk": 20807, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ATHIENVILLE", - "center": "POINT (905254.5249021922936663 2421243.3965117121115327)", - "surface": 13140000, - "canton": null, - "numero_insee": "54026" - } - }, - { - "pk": 33657, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AUBOUE", - "center": "POINT (865171.1251479509519413 2474233.5118207512423396)", - "surface": 4500000, - "canton": null, - "numero_insee": "54028" - } - }, - { - "pk": 29538, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AUDUN-LE-ROMAN", - "center": "POINT (858419.3064678465016186 2491386.4376829727552831)", - "surface": 7610000, - "canton": null, - "numero_insee": "54029" - } - }, - { - "pk": 6567, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AUTREPIERRE", - "center": "POINT (928865.1743780525866896 2410339.7968630394898355)", - "surface": 7960000, - "canton": null, - "numero_insee": "54030" - } - }, - { - "pk": 25690, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AUTREVILLE-SUR-MOSELLE", - "center": "POINT (876840.5236385264433920 2432206.0006493036635220)", - "surface": 4590000, - "canton": null, - "numero_insee": "54031" - } - }, - { - "pk": 8913, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AUTREY", - "center": "POINT (879926.7397200238192454 2399209.6478616348467767)", - "surface": 6200000, - "canton": null, - "numero_insee": "54032" - } - }, - { - "pk": 6942, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AVILLERS", - "center": "POINT (847359.5235002988483757 2485887.9197943694889545)", - "surface": 5180000, - "canton": null, - "numero_insee": "54033" - } - }, - { - "pk": 29135, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AVRAINVILLE", - "center": "POINT (865292.0269597878213972 2425301.9155589495785534)", - "surface": 9740000, - "canton": null, - "numero_insee": "54034" - } - }, - { - "pk": 7913, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AVRICOURT", - "center": "POINT (929832.0219161956338212 2414250.8967618108727038)", - "surface": 2230000, - "canton": null, - "numero_insee": "54035" - } - }, - { - "pk": 18456, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AVRIL", - "center": "POINT (864191.3869403800927103 2483431.0051779523491859)", - "surface": 20400000, - "canton": null, - "numero_insee": "54036" - } - }, - { - "pk": 4431, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AZELOT", - "center": "POINT (887178.7435488577466458 2405376.4584485720843077)", - "surface": 4720000, - "canton": null, - "numero_insee": "54037" - } - }, - { - "pk": 4657, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "AZERAILLES", - "center": "POINT (921970.7024057239759713 2397571.1696040099486709)", - "surface": 13740000, - "canton": null, - "numero_insee": "54038" - } - }, - { - "pk": 3618, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BACCARAT", - "center": "POINT (925617.1474981636274606 2392499.0727204787544906)", - "surface": 13670000, - "canton": null, - "numero_insee": "54039" - } - }, - { - "pk": 20499, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BADONVILLER", - "center": "POINT (937876.4972443032311276 2398209.1962347170338035)", - "surface": 22260000, - "canton": null, - "numero_insee": "54040" - } - }, - { - "pk": 28604, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BAGNEUX", - "center": "POINT (861296.0156339326640591 2401250.8221485624089837)", - "surface": 8690000, - "canton": null, - "numero_insee": "54041" - } - }, - { - "pk": 36334, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BAINVILLE-AUX-MIROIRS", - "center": "POINT (891921.4558337378548458 2389205.8493369272910058)", - "surface": 6780000, - "canton": null, - "numero_insee": "54042" - } - }, - { - "pk": 37798, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BAINVILLE-SUR-MADON", - "center": "POINT (876669.5505609202664346 2405586.1053255884908140)", - "surface": 5910000, - "canton": null, - "numero_insee": "54043" - } - }, - { - "pk": 13402, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BARBAS", - "center": "POINT (933001.5333693169523031 2406472.8602123302407563)", - "surface": 7430000, - "canton": null, - "numero_insee": "54044" - } - }, - { - "pk": 6440, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BARISEY-AU-PLAIN", - "center": "POINT (859627.6409061634913087 2397433.7852919418364763)", - "surface": 10880000, - "canton": null, - "numero_insee": "54046" - } - }, - { - "pk": 1497, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BARISEY-LA-COTE", - "center": "POINT (858906.5455512324115261 2399829.2833912447094917)", - "surface": 3920000, - "canton": null, - "numero_insee": "54047" - } - }, - { - "pk": 4959, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LES BAROCHES", - "center": "POINT (858751.1016963990405202 2476079.5017083818092942)", - "surface": 13350000, - "canton": null, - "numero_insee": "54048" - } - }, - { - "pk": 7297, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BASLIEUX", - "center": "POINT (847749.7482864958001301 2498699.3692088029347360)", - "surface": 10220000, - "canton": null, - "numero_insee": "54049" - } - }, - { - "pk": 4004, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BATHELEMONT", - "center": "POINT (908478.9766468084417284 2418669.4472477771341801)", - "surface": 6580000, - "canton": null, - "numero_insee": "54050" - } - }, - { - "pk": 14069, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BATILLY", - "center": "POINT (865003.7341076768934727 2470429.6037198049016297)", - "surface": 6390000, - "canton": null, - "numero_insee": "54051" - } - }, - { - "pk": 31623, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BATTIGNY", - "center": "POINT (869807.2650858297711238 2389015.3099077013321221)", - "surface": 6480000, - "canton": null, - "numero_insee": "54052" - } - }, - { - "pk": 10270, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BAUZEMONT", - "center": "POINT (908899.9721763406414539 2416271.4159257379360497)", - "surface": 6370000, - "canton": null, - "numero_insee": "54053" - } - }, - { - "pk": 6386, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BAYON", - "center": "POINT (894480.8264298182912171 2394131.4297770322300494)", - "surface": 6060000, - "canton": null, - "numero_insee": "54054" - } - }, - { - "pk": 11451, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BAYONVILLE-SUR-MAD", - "center": "POINT (867858.6103294858476147 2452642.4632631004787982)", - "surface": 9510000, - "canton": null, - "numero_insee": "54055" - } - }, - { - "pk": 36684, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BAZAILLES", - "center": "POINT (848976.2102671050233766 2495708.0237132748588920)", - "surface": 4330000, - "canton": null, - "numero_insee": "54056" - } - }, - { - "pk": 6683, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BEAUMONT", - "center": "POINT (853311.6271274038590491 2433704.6871582409366965)", - "surface": 3080000, - "canton": null, - "numero_insee": "54057" - } - }, - { - "pk": 8752, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BECHAMPS", - "center": "POINT (848264.0127910368610173 2473787.9170842515304685)", - "surface": 9390000, - "canton": null, - "numero_insee": "54058" - } - }, - { - "pk": 20162, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BELLEAU", - "center": "POINT (882623.3499722734559327 2434657.4655012413859367)", - "surface": 20730000, - "canton": null, - "numero_insee": "54059" - } - }, - { - "pk": 24235, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BELLEVILLE", - "center": "POINT (875654.4464167838450521 2430494.6232330966740847)", - "surface": 10430000, - "canton": null, - "numero_insee": "54060" - } - }, - { - "pk": 20034, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BENAMENIL", - "center": "POINT (919204.9544488582760096 2404952.4950585947372019)", - "surface": 9390000, - "canton": null, - "numero_insee": "54061" - } - }, - { - "pk": 16946, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BENNEY", - "center": "POINT (887135.6191410473547876 2398771.4242826225236058)", - "surface": 18610000, - "canton": null, - "numero_insee": "54062" - } - }, - { - "pk": 29465, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BERNECOURT", - "center": "POINT (857213.9900048901326954 2433738.2373263323679566)", - "surface": 9520000, - "canton": null, - "numero_insee": "54063" - } - }, - { - "pk": 9296, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BERTRICHAMPS", - "center": "POINT (931032.7350935307331383 2391144.9352767420932651)", - "surface": 19900000, - "canton": null, - "numero_insee": "54065" - } - }, - { - "pk": 25550, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BETTAINVILLERS", - "center": "POINT (859987.2874324357835576 2483594.9585539577528834)", - "surface": 4450000, - "canton": null, - "numero_insee": "54066" - } - }, - { - "pk": 27039, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BEUVEILLE", - "center": "POINT (842249.2828419434372336 2498351.9245440876111388)", - "surface": 11960000, - "canton": null, - "numero_insee": "54067" - } - }, - { - "pk": 29358, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BEUVEZIN", - "center": "POINT (869269.7502793986350298 2381705.4355349512770772)", - "surface": 7630000, - "canton": null, - "numero_insee": "54068" - } - }, - { - "pk": 3815, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BEUVILLERS", - "center": "POINT (860201.3757454456062987 2493603.1605308465659618)", - "surface": 5940000, - "canton": null, - "numero_insee": "54069" - } - }, - { - "pk": 34294, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BEY-SUR-SEILLE", - "center": "POINT (893776.6970557768363506 2429349.9614475392736495)", - "surface": 5550000, - "canton": null, - "numero_insee": "54070" - } - }, - { - "pk": 37224, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BEZANGE-LA-GRANDE", - "center": "POINT (904125.3295826651155949 2424535.9235829990357161)", - "surface": 17080000, - "canton": null, - "numero_insee": "54071" - } - }, - { - "pk": 7983, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BEZAUMONT", - "center": "POINT (876421.3176395924529061 2434403.8878189171664417)", - "surface": 4270000, - "canton": null, - "numero_insee": "54072" - } - }, - { - "pk": 11013, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BICQUELEY", - "center": "POINT (864533.5318610202521086 2408783.9455834645777941)", - "surface": 16920000, - "canton": null, - "numero_insee": "54073" - } - }, - { - "pk": 28908, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BIENVILLE-LA-PETITE", - "center": "POINT (907735.5305672031827271 2412058.4256366658955812)", - "surface": 1770000, - "canton": null, - "numero_insee": "54074" - } - }, - { - "pk": 21834, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BIONVILLE", - "center": "POINT (946177.4473400828428566 2398781.4799362057819963)", - "surface": 12190000, - "canton": null, - "numero_insee": "54075" - } - }, - { - "pk": 34988, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BLAINVILLE-SUR-L'EAU", - "center": "POINT (901014.2098842198029160 2402393.6335863820277154)", - "surface": 11830000, - "canton": null, - "numero_insee": "54076" - } - }, - { - "pk": 14080, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BLAMONT", - "center": "POINT (932282.8997116074897349 2408568.1173203634098172)", - "surface": 7420000, - "canton": null, - "numero_insee": "54077" - } - }, - { - "pk": 33563, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BLEMEREY", - "center": "POINT (924589.3159174865577370 2407200.6171779036521912)", - "surface": 3900000, - "canton": null, - "numero_insee": "54078" - } - }, - { - "pk": 31421, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BLENOD-LES-PONT-A-MOUSSON", - "center": "POINT (873295.3115166901843622 2437178.8644316392019391)", - "surface": 9740000, - "canton": null, - "numero_insee": "54079" - } - }, - { - "pk": 31537, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BLENOD-LES-TOUL", - "center": "POINT (857456.6193124674027786 2405520.8327137338928878)", - "surface": 17640000, - "canton": null, - "numero_insee": "54080" - } - }, - { - "pk": 11770, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOISMONT", - "center": "POINT (847075.1541145234368742 2495691.6866012960672379)", - "surface": 5380000, - "canton": null, - "numero_insee": "54081" - } - }, - { - "pk": 29117, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BONCOURT", - "center": "POINT (854305.3070509304525331 2469436.9880595835857093)", - "surface": 6730000, - "canton": null, - "numero_insee": "54082" - } - }, - { - "pk": 8912, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BONVILLER", - "center": "POINT (906541.6951239893678576 2411247.5536279198713601)", - "surface": 5110000, - "canton": null, - "numero_insee": "54083" - } - }, - { - "pk": 33836, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONT-BONVILLERS", - "center": "POINT (854957.7860787055687979 2486653.6800208976492286)", - "surface": 7030000, - "canton": null, - "numero_insee": "54084" - } - }, - { - "pk": 24629, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BORVILLE", - "center": "POINT (900313.0333013456547633 2390879.4003700320608914)", - "surface": 4800000, - "canton": null, - "numero_insee": "54085" - } - }, - { - "pk": 14022, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOUCQ", - "center": "POINT (851504.2097765081562102 2422781.6958275940269232)", - "surface": 22730000, - "canton": null, - "numero_insee": "54086" - } - }, - { - "pk": 36256, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOUILLONVILLE", - "center": "POINT (857228.0070688773412257 2443745.1170069696381688)", - "surface": 5350000, - "canton": null, - "numero_insee": "54087" - } - }, - { - "pk": 29356, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOUVRON", - "center": "POINT (861021.2373761503258720 2421562.6254979185760021)", - "surface": 10020000, - "canton": null, - "numero_insee": "54088" - } - }, - { - "pk": 17112, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOUXIERES-AUX-CHENES", - "center": "POINT (889197.1886823537060991 2426608.6059933197684586)", - "surface": 19930000, - "canton": null, - "numero_insee": "54089" - } - }, - { - "pk": 6836, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOUXIERES-AUX-DAMES", - "center": "POINT (881308.7342902289237827 2424639.2929783551953733)", - "surface": 3930000, - "canton": null, - "numero_insee": "54090" - } - }, - { - "pk": 30248, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOUXIERES-SOUS-FROIDMONT", - "center": "POINT (875719.2476001423783600 2446205.8105778638273478)", - "surface": 7800000, - "canton": null, - "numero_insee": "54091" - } - }, - { - "pk": 34142, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BOUZANVILLE", - "center": "POINT (879280.5378684075549245 2381291.2740108566358685)", - "surface": 5850000, - "canton": null, - "numero_insee": "54092" - } - }, - { - "pk": 16670, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BRAINVILLE", - "center": "POINT (853452.9590075266314670 2463826.0008550919592381)", - "surface": 10040000, - "canton": null, - "numero_insee": "54093" - } - }, - { - "pk": 10337, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BRALLEVILLE", - "center": "POINT (885345.6797710082028061 2385846.7818678775802255)", - "surface": 4480000, - "canton": null, - "numero_insee": "54094" - } - }, - { - "pk": 24628, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BRATTE", - "center": "POINT (885054.9965603007003665 2431176.0407075090333819)", - "surface": 3340000, - "canton": null, - "numero_insee": "54095" - } - }, - { - "pk": 29539, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BREHAIN-LA-VILLE", - "center": "POINT (857449.9538911778945476 2499383.1431962638162076)", - "surface": 10090000, - "canton": null, - "numero_insee": "54096" - } - }, - { - "pk": 36371, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BREMENIL", - "center": "POINT (938549.2060178678948432 2401417.2974851126782596)", - "surface": 5550000, - "canton": null, - "numero_insee": "54097" - } - }, - { - "pk": 11563, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BREMONCOURT", - "center": "POINT (897269.6621538661420345 2395656.5613866476342082)", - "surface": 5230000, - "canton": null, - "numero_insee": "54098" - } - }, - { - "pk": 14896, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BRIEY", - "center": "POINT (864627.7815500630531460 2479232.0643409718759358)", - "surface": 27140000, - "canton": null, - "numero_insee": "54099" - } - }, - { - "pk": 28492, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BRIN-SUR-SEILLE", - "center": "POINT (895298.3354202730115503 2426961.4445227030664682)", - "surface": 11660000, - "canton": null, - "numero_insee": "54100" - } - }, - { - "pk": 30855, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BROUVILLE", - "center": "POINT (926075.9107603789307177 2397306.4689207552000880)", - "surface": 9820000, - "canton": null, - "numero_insee": "54101" - } - }, - { - "pk": 37845, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BRULEY", - "center": "POINT (859046.6821981833782047 2418443.5008298372849822)", - "surface": 6300000, - "canton": null, - "numero_insee": "54102" - } - }, - { - "pk": 33416, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BRUVILLE", - "center": "POINT (862054.5188045233953744 2464300.2403362723998725)", - "surface": 10770000, - "canton": null, - "numero_insee": "54103" - } - }, - { - "pk": 25866, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BUISSONCOURT", - "center": "POINT (894885.2309794621542096 2416850.9007287747226655)", - "surface": 6980000, - "canton": null, - "numero_insee": "54104" - } - }, - { - "pk": 12664, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BULLIGNY", - "center": "POINT (858780.6686562888789922 2402830.3183211530558765)", - "surface": 10560000, - "canton": null, - "numero_insee": "54105" - } - }, - { - "pk": 25790, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BURES", - "center": "POINT (911574.8443480140995234 2419396.6828677314333618)", - "surface": 5770000, - "canton": null, - "numero_insee": "54106" - } - }, - { - "pk": 28495, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BURIVILLE", - "center": "POINT (921232.1787051192950457 2401967.9056922327727079)", - "surface": 11550000, - "canton": null, - "numero_insee": "54107" - } - }, - { - "pk": 9047, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "BURTHECOURT-AUX-CHENES", - "center": "POINT (888584.8017183644697070 2404788.1595078622922301)", - "surface": 5640000, - "canton": null, - "numero_insee": "54108" - } - }, - { - "pk": 16740, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CEINTREY", - "center": "POINT (883625.6362648094072938 2399641.8055611085146666)", - "surface": 11080000, - "canton": null, - "numero_insee": "54109" - } - }, - { - "pk": 12031, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CERVILLE", - "center": "POINT (892572.5824027794878930 2418131.8512513255700469)", - "surface": 8100000, - "canton": null, - "numero_insee": "54110" - } - }, - { - "pk": 29072, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHALIGNY", - "center": "POINT (876624.7321577260736376 2410789.3649776410311460)", - "surface": 13390000, - "canton": null, - "numero_insee": "54111" - } - }, - { - "pk": 36484, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAMBLEY-BUSSIERES", - "center": "POINT (861623.0953809685306624 2456291.2577525237575173)", - "surface": 19280000, - "canton": null, - "numero_insee": "54112" - } - }, - { - "pk": 32983, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAMPENOUX", - "center": "POINT (895436.3879979082848877 2422559.6052741701714694)", - "surface": 11170000, - "canton": null, - "numero_insee": "54113" - } - }, - { - "pk": 29920, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAMPEY-SUR-MOSELLE", - "center": "POINT (873116.8351296959444880 2446283.4626664631068707)", - "surface": 2490000, - "canton": null, - "numero_insee": "54114" - } - }, - { - "pk": 25978, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAMPIGNEULLES", - "center": "POINT (878544.0851933707017452 2420312.5044856467284262)", - "surface": 23980000, - "canton": null, - "numero_insee": "54115" - } - }, - { - "pk": 6156, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHANTEHEUX", - "center": "POINT (909874.8823324416298419 2407673.8223323305137455)", - "surface": 5690000, - "canton": null, - "numero_insee": "54116" - } - }, - { - "pk": 23731, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAOUILLEY", - "center": "POINT (875912.0426251693861559 2388967.7993110367096961)", - "surface": 5120000, - "canton": null, - "numero_insee": "54117" - } - }, - { - "pk": 6056, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHARENCY-VEZIN", - "center": "POINT (830399.8300849208608270 2503253.3297991934232414)", - "surface": 14770000, - "canton": null, - "numero_insee": "54118" - } - }, - { - "pk": 30796, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAREY", - "center": "POINT (858275.3112717285985127 2449958.2742487057112157)", - "surface": 9460000, - "canton": null, - "numero_insee": "54119" - } - }, - { - "pk": 10459, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHARMES-LA-COTE", - "center": "POINT (857329.8855063201626763 2408621.9166484866291285)", - "surface": 6310000, - "canton": null, - "numero_insee": "54120" - } - }, - { - "pk": 27434, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHARMOIS", - "center": "POINT (899228.6179156457073987 2400576.9470607242546976)", - "surface": 5470000, - "canton": null, - "numero_insee": "54121" - } - }, - { - "pk": 36703, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAUDENEY-SUR-MOSELLE", - "center": "POINT (864303.2745175717864186 2412284.4099429743364453)", - "surface": 8420000, - "canton": null, - "numero_insee": "54122" - } - }, - { - "pk": 32174, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAVIGNY", - "center": "POINT (879830.1801420385017991 2410416.6997910984791815)", - "surface": 6760000, - "canton": null, - "numero_insee": "54123" - } - }, - { - "pk": 36878, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHAZELLES-SUR-ALBE", - "center": "POINT (927084.8277586677577347 2407922.7024953672662377)", - "surface": 3490000, - "canton": null, - "numero_insee": "54124" - } - }, - { - "pk": 29563, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHENEVIERES", - "center": "POINT (917645.4714474240317941 2400135.6149245430715382)", - "surface": 4690000, - "canton": null, - "numero_insee": "54125" - } - }, - { - "pk": 8667, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHENICOURT", - "center": "POINT (889615.5098553261486813 2436118.7043425948359072)", - "surface": 3900000, - "canton": null, - "numero_insee": "54126" - } - }, - { - "pk": 22262, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHENIERES", - "center": "POINT (848715.0450552126858383 2502810.2304070452228189)", - "surface": 8460000, - "canton": null, - "numero_insee": "54127" - } - }, - { - "pk": 16547, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CHOLOY-MENILLOT", - "center": "POINT (855702.2168218777514994 2411710.0884939208626747)", - "surface": 12020000, - "canton": null, - "numero_insee": "54128" - } - }, - { - "pk": 22300, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CIREY-SUR-VEZOUZE", - "center": "POINT (939888.5435201337095350 2408533.9174928199499846)", - "surface": 16530000, - "canton": null, - "numero_insee": "54129" - } - }, - { - "pk": 37079, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CLAYEURES", - "center": "POINT (901091.9517804670613259 2393387.9112978666089475)", - "surface": 9390000, - "canton": null, - "numero_insee": "54130" - } - }, - { - "pk": 32585, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CLEMERY", - "center": "POINT (881890.1546932017663494 2438453.7252772375941277)", - "surface": 9570000, - "canton": null, - "numero_insee": "54131" - } - }, - { - "pk": 24238, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CLEREY-SUR-BRENON", - "center": "POINT (880851.4518283170182258 2396415.6286859912797809)", - "surface": 4410000, - "canton": null, - "numero_insee": "54132" - } - }, - { - "pk": 36631, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "COINCOURT", - "center": "POINT (915071.8212702571181580 2420027.3239102633669972)", - "surface": 8010000, - "canton": null, - "numero_insee": "54133" - } - }, - { - "pk": 35761, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "COLMEY", - "center": "POINT (833221.9762262982549146 2500876.0485285930335522)", - "surface": 9950000, - "canton": null, - "numero_insee": "54134" - } - }, - { - "pk": 35667, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "COLOMBEY-LES-BELLES", - "center": "POINT (862835.6980068939737976 2396760.8809570521116257)", - "surface": 17610000, - "canton": null, - "numero_insee": "54135" - } - }, - { - "pk": 6001, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CONFLANS-EN-JARNISY", - "center": "POINT (856109.7877691509202123 2469052.2434736648574471)", - "surface": 8790000, - "canton": null, - "numero_insee": "54136" - } - }, - { - "pk": 22804, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CONS-LA-GRANDVILLE", - "center": "POINT (843902.9497196262236685 2503869.5680078836157918)", - "surface": 8420000, - "canton": null, - "numero_insee": "54137" - } - }, - { - "pk": 15382, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "COSNES-ET-ROMAIN", - "center": "POINT (844864.8158864241559058 2508380.6269437232986093)", - "surface": 16220000, - "canton": null, - "numero_insee": "54138" - } - }, - { - "pk": 19689, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "COURBESSEAUX", - "center": "POINT (899278.4605400466825813 2417989.5789924594573677)", - "surface": 6440000, - "canton": null, - "numero_insee": "54139" - } - }, - { - "pk": 11042, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "COURCELLES", - "center": "POINT (873680.3542847987264395 2380842.7539785099215806)", - "surface": 4320000, - "canton": null, - "numero_insee": "54140" - } - }, - { - "pk": 35430, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "COYVILLER", - "center": "POINT (891077.7462556851096451 2405810.3623565710149705)", - "surface": 4540000, - "canton": null, - "numero_insee": "54141" - } - }, - { - "pk": 32066, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CRANTENOY", - "center": "POINT (887990.4802847332321107 2392474.3118548183701932)", - "surface": 5220000, - "canton": null, - "numero_insee": "54142" - } - }, - { - "pk": 32283, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CREVECHAMPS", - "center": "POINT (890040.9114142667967826 2398396.1918730628676713)", - "surface": 4880000, - "canton": null, - "numero_insee": "54144" - } - }, - { - "pk": 3508, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CREVIC", - "center": "POINT (899928.0669968856964260 2412291.2157470337115228)", - "surface": 10570000, - "canton": null, - "numero_insee": "54145" - } - }, - { - "pk": 26074, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CREZILLES", - "center": "POINT (862072.4210487313102931 2404059.4739400213584304)", - "surface": 9560000, - "canton": null, - "numero_insee": "54146" - } - }, - { - "pk": 10502, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CRION", - "center": "POINT (910425.9777900921180844 2413382.5783696440048516)", - "surface": 8190000, - "canton": null, - "numero_insee": "54147" - } - }, - { - "pk": 17977, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CROISMARE", - "center": "POINT (912257.3663917604135349 2409895.9539728844538331)", - "surface": 15920000, - "canton": null, - "numero_insee": "54148" - } - }, - { - "pk": 25360, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CRUSNES", - "center": "POINT (860056.5571445466484874 2498805.1899614715948701)", - "surface": 6020000, - "canton": null, - "numero_insee": "54149" - } - }, - { - "pk": 38047, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CUSTINES", - "center": "POINT (879879.4220908968709409 2427929.2427655840292573)", - "surface": 11680000, - "canton": null, - "numero_insee": "54150" - } - }, - { - "pk": 19369, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "CUTRY", - "center": "POINT (846607.8715275491122156 2503492.5586920133791864)", - "surface": 5970000, - "canton": null, - "numero_insee": "54151" - } - }, - { - "pk": 26170, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DAMELEVIERES", - "center": "POINT (899198.3895529016153887 2404079.1598520791158080)", - "surface": 8210000, - "canton": null, - "numero_insee": "54152" - } - }, - { - "pk": 20167, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DAMPVITOUX", - "center": "POINT (855765.2254728327970952 2450937.3556078327819705)", - "surface": 9090000, - "canton": null, - "numero_insee": "54153" - } - }, - { - "pk": 30002, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DENEUVRE", - "center": "POINT (924338.8204740136861801 2389886.1498899236321449)", - "surface": 9220000, - "canton": null, - "numero_insee": "54154" - } - }, - { - "pk": 24734, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DIARVILLE", - "center": "POINT (880965.2589521273039281 2383207.1598743097856641)", - "surface": 11180000, - "canton": null, - "numero_insee": "54156" - } - }, - { - "pk": 20677, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DIEULOUARD", - "center": "POINT (873034.7678391030058265 2432573.4941627820953727)", - "surface": 18050000, - "canton": null, - "numero_insee": "54157" - } - }, - { - "pk": 31215, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOLCOURT", - "center": "POINT (869162.9561878073727712 2394113.4054896971210837)", - "surface": 6080000, - "canton": null, - "numero_insee": "54158" - } - }, - { - "pk": 13768, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMBASLE-SUR-MEURTHE", - "center": "POINT (896646.7307105080690235 2409861.2156196376308799)", - "surface": 11220000, - "canton": null, - "numero_insee": "54159" - } - }, - { - "pk": 24234, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMEVRE-EN-HAYE", - "center": "POINT (864250.9488240909995511 2429996.1772336349822581)", - "surface": 8600000, - "canton": null, - "numero_insee": "54160" - } - }, - { - "pk": 26920, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMEVRE-SUR-VEZOUZE", - "center": "POINT (929410.5241802236996591 2405140.8564945897087455)", - "surface": 15210000, - "canton": null, - "numero_insee": "54161" - } - }, - { - "pk": 3809, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMGERMAIN", - "center": "POINT (856914.1492489749798551 2410419.6007006238214672)", - "surface": 13190000, - "canton": null, - "numero_insee": "54162" - } - }, - { - "pk": 17887, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMJEVIN", - "center": "POINT (921690.0877115800976753 2406875.3264329601079226)", - "surface": 10410000, - "canton": null, - "numero_insee": "54163" - } - }, - { - "pk": 6274, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMMARIE-EULMONT", - "center": "POINT (873432.8384605054743588 2386344.5853975377976894)", - "surface": 5470000, - "canton": null, - "numero_insee": "54164" - } - }, - { - "pk": 12387, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMMARTEMONT", - "center": "POINT (885450.0699855596758425 2420171.8834889363497496)", - "surface": 1330000, - "canton": null, - "numero_insee": "54165" - } - }, - { - "pk": 33936, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMMARTIN-LA-CHAUSSEE", - "center": "POINT (858261.5424940473167226 2451559.2219821130856872)", - "surface": 2750000, - "canton": null, - "numero_insee": "54166" - } - }, - { - "pk": 7245, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMMARTIN-LES-TOUL", - "center": "POINT (864287.7778844472486526 2414085.5304761473089457)", - "surface": 6840000, - "canton": null, - "numero_insee": "54167" - } - }, - { - "pk": 27824, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMMARTIN-SOUS-AMANCE", - "center": "POINT (887933.4945059105521068 2422294.7470289301127195)", - "surface": 4080000, - "canton": null, - "numero_insee": "54168" - } - }, - { - "pk": 5165, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DOMPRIX", - "center": "POINT (849254.5752492027822882 2486604.6513215135782957)", - "surface": 7790000, - "canton": null, - "numero_insee": "54169" - } - }, - { - "pk": 30578, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DONCOURT-LES-CONFLANS", - "center": "POINT (862332.3094112591352314 2466904.3324385983869433)", - "surface": 7400000, - "canton": null, - "numero_insee": "54171" - } - }, - { - "pk": 33681, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "DROUVILLE", - "center": "POINT (900098.8234139506239444 2415695.0614112587645650)", - "surface": 7190000, - "canton": null, - "numero_insee": "54173" - } - }, - { - "pk": 24237, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ECROUVES", - "center": "POINT (858177.9623279672814533 2414733.4638041835278273)", - "surface": 10470000, - "canton": null, - "numero_insee": "54174" - } - }, - { - "pk": 22478, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "EINVAUX", - "center": "POINT (899768.6647623071912676 2395978.3423663768917322)", - "surface": 7430000, - "canton": null, - "numero_insee": "54175" - } - }, - { - "pk": 18480, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "EINVILLE-AU-JARD", - "center": "POINT (905013.9680013273609802 2414336.5250605219043791)", - "surface": 17010000, - "canton": null, - "numero_insee": "54176" - } - }, - { - "pk": 18273, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "EMBERMENIL", - "center": "POINT (920234.6885130607988685 2413167.1597721129655838)", - "surface": 14620000, - "canton": null, - "numero_insee": "54177" - } - }, - { - "pk": 28931, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "EPIEZ-SUR-CHIERS", - "center": "POINT (829284.6338227908127010 2504944.8200724665075541)", - "surface": 5200000, - "canton": null, - "numero_insee": "54178" - } - }, - { - "pk": 12330, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ERBEVILLER-SUR-AMEZULE", - "center": "POINT (898041.4442073651589453 2422181.8107479829341173)", - "surface": 4500000, - "canton": null, - "numero_insee": "54180" - } - }, - { - "pk": 17801, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ERROUVILLE", - "center": "POINT (858472.0245101125910878 2496890.3642831952311099)", - "surface": 5260000, - "canton": null, - "numero_insee": "54181" - } - }, - { - "pk": 14023, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ESSEY-ET-MAIZERAIS", - "center": "POINT (854355.5203726834151894 2440318.1300934785977006)", - "surface": 13090000, - "canton": null, - "numero_insee": "54182" - } - }, - { - "pk": 13743, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ESSEY-LA-COTE", - "center": "POINT (905837.3006063695065677 2388525.3749205255880952)", - "surface": 6650000, - "canton": null, - "numero_insee": "54183" - } - }, - { - "pk": 14295, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ESSEY-LES-NANCY", - "center": "POINT (886759.5001678590197116 2419182.4803344937972724)", - "surface": 5730000, - "canton": null, - "numero_insee": "54184" - } - }, - { - "pk": 25673, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ETREVAL", - "center": "POINT (874796.6876043600495905 2390659.4106249893084168)", - "surface": 2380000, - "canton": null, - "numero_insee": "54185" - } - }, - { - "pk": 6901, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "EULMONT", - "center": "POINT (885718.3368916404433548 2423876.7510477625764906)", - "surface": 8040000, - "canton": null, - "numero_insee": "54186" - } - }, - { - "pk": 12704, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "EUVEZIN", - "center": "POINT (858148.3370443370658904 2441451.4839580422267318)", - "surface": 11310000, - "canton": null, - "numero_insee": "54187" - } - }, - { - "pk": 26359, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FAULX", - "center": "POINT (883777.4933717499952763 2428463.1805797796696424)", - "surface": 17260000, - "canton": null, - "numero_insee": "54188" - } - }, - { - "pk": 20959, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FAVIERES", - "center": "POINT (865993.6332727915141732 2390283.4201857582665980)", - "surface": 29900000, - "canton": null, - "numero_insee": "54189" - } - }, - { - "pk": 32944, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FECOCOURT", - "center": "POINT (871346.9912035753950477 2384525.3335480559617281)", - "surface": 7990000, - "canton": null, - "numero_insee": "54190" - } - }, - { - "pk": 10521, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FERRIERES", - "center": "POINT (892109.4473099634051323 2402216.7227310221642256)", - "surface": 6210000, - "canton": null, - "numero_insee": "54192" - } - }, - { - "pk": 22022, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FEY-EN-HAYE", - "center": "POINT (865964.2106277833227068 2440217.8477067914791405)", - "surface": 7210000, - "canton": null, - "numero_insee": "54193" - } - }, - { - "pk": 23586, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FILLIERES", - "center": "POINT (854475.8264864431694150 2496155.5541508905589581)", - "surface": 14330000, - "canton": null, - "numero_insee": "54194" - } - }, - { - "pk": 31009, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FLAINVAL", - "center": "POINT (899348.4213697593659163 2409884.5327011020854115)", - "surface": 3640000, - "canton": null, - "numero_insee": "54195" - } - }, - { - "pk": 18879, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FLAVIGNY-SUR-MOSELLE", - "center": "POINT (884590.9073979039676487 2403753.0224122218787670)", - "surface": 17720000, - "canton": null, - "numero_insee": "54196" - } - }, - { - "pk": 36027, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FLEVILLE-DEVANT-NANCY", - "center": "POINT (885033.4312991445185617 2410461.5424703233875334)", - "surface": 7500000, - "canton": null, - "numero_insee": "54197" - } - }, - { - "pk": 5829, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FLEVILLE-LIXIERES", - "center": "POINT (853337.6905628251843154 2477233.7235864391550422)", - "surface": 14720000, - "canton": null, - "numero_insee": "54198" - } - }, - { - "pk": 19819, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FLIN", - "center": "POINT (919264.6570125492289662 2398048.1234067189507186)", - "surface": 11460000, - "canton": null, - "numero_insee": "54199" - } - }, - { - "pk": 26716, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FLIREY", - "center": "POINT (857782.5162104958435521 2437445.6364646926522255)", - "surface": 15760000, - "canton": null, - "numero_insee": "54200" - } - }, - { - "pk": 33938, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FONTENOY-LA-JOUTE", - "center": "POINT (919416.6352720832219347 2392045.1564619513228536)", - "surface": 11130000, - "canton": null, - "numero_insee": "54201" - } - }, - { - "pk": 14044, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FONTENOY-SUR-MOSELLE", - "center": "POINT (868954.5256782073993236 2418328.6077600289136171)", - "surface": 5490000, - "canton": null, - "numero_insee": "54202" - } - }, - { - "pk": 29164, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FORCELLES-SAINT-GORGON", - "center": "POINT (878597.3984493758762255 2390892.2888342011719942)", - "surface": 5310000, - "canton": null, - "numero_insee": "54203" - } - }, - { - "pk": 31426, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FORCELLES-SOUS-GUGNEY", - "center": "POINT (877559.6124293983448297 2383578.1096647772938013)", - "surface": 5410000, - "canton": null, - "numero_insee": "54204" - } - }, - { - "pk": 18275, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FOUG", - "center": "POINT (853682.9083441231632605 2413794.1927846916951239)", - "surface": 25680000, - "canton": null, - "numero_insee": "54205" - } - }, - { - "pk": 21304, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FRAIMBOIS", - "center": "POINT (910540.1020827214233577 2400174.2746324213221669)", - "surface": 15160000, - "canton": null, - "numero_insee": "54206" - } - }, - { - "pk": 6732, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FRAISNES-EN-SAINTOIS", - "center": "POINT (875875.7486679496942088 2381562.1643266761675477)", - "surface": 6480000, - "canton": null, - "numero_insee": "54207" - } - }, - { - "pk": 24816, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FRANCHEVILLE", - "center": "POINT (864021.3628137435298413 2421788.5728365187533200)", - "surface": 11050000, - "canton": null, - "numero_insee": "54208" - } - }, - { - "pk": 26564, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FRANCONVILLE", - "center": "POINT (903963.5652845932636410 2396915.1977029689587653)", - "surface": 4560000, - "canton": null, - "numero_insee": "54209" - } - }, - { - "pk": 22345, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FREMENIL", - "center": "POINT (922508.7673379168845713 2404780.9269104194827378)", - "surface": 3080000, - "canton": null, - "numero_insee": "54210" - } - }, - { - "pk": 22648, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FREMONVILLE", - "center": "POINT (936669.1983284566085786 2410507.4358135834336281)", - "surface": 14050000, - "canton": null, - "numero_insee": "54211" - } - }, - { - "pk": 36467, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FRESNOIS-LA-MONTAGNE", - "center": "POINT (840188.8886442907387391 2505238.5386448819190264)", - "surface": 8630000, - "canton": null, - "numero_insee": "54212" - } - }, - { - "pk": 29562, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FRIAUVILLE", - "center": "POINT (855033.2418365040794015 2466241.1589356269687414)", - "surface": 6310000, - "canton": null, - "numero_insee": "54213" - } - }, - { - "pk": 12367, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FROLOIS", - "center": "POINT (879587.7546702566323802 2403709.9068464436568320)", - "surface": 9370000, - "canton": null, - "numero_insee": "54214" - } - }, - { - "pk": 37815, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FROUARD", - "center": "POINT (878416.4370410161791369 2423513.6135489726439118)", - "surface": 13100000, - "canton": null, - "numero_insee": "54215" - } - }, - { - "pk": 12508, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "FROVILLE", - "center": "POINT (897791.5690694310469553 2393159.2827813923358917)", - "surface": 5870000, - "canton": null, - "numero_insee": "54216" - } - }, - { - "pk": 23297, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GELACOURT", - "center": "POINT (924891.5942244571633637 2395394.8681594263762236)", - "surface": 4860000, - "canton": null, - "numero_insee": "54217" - } - }, - { - "pk": 26072, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GELAUCOURT", - "center": "POINT (869993.6124927655328065 2390618.0585070718079805)", - "surface": 2300000, - "canton": null, - "numero_insee": "54218" - } - }, - { - "pk": 7663, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GEMONVILLE", - "center": "POINT (862528.4013932403177023 2385950.5279612140730023)", - "surface": 9130000, - "canton": null, - "numero_insee": "54220" - } - }, - { - "pk": 27228, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GERBECOURT-ET-HAPLEMONT", - "center": "POINT (881968.5350342949386686 2394523.9027394242584705)", - "surface": 5350000, - "canton": null, - "numero_insee": "54221" - } - }, - { - "pk": 14699, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GERBEVILLER", - "center": "POINT (908470.7524564475752413 2396453.7684298017993569)", - "surface": 23670000, - "canton": null, - "numero_insee": "54222" - } - }, - { - "pk": 30063, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GERMINY", - "center": "POINT (870509.5825306206243113 2400429.4665299560874701)", - "surface": 11900000, - "canton": null, - "numero_insee": "54223" - } - }, - { - "pk": 27227, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GERMONVILLE", - "center": "POINT (887245.1796729471534491 2386063.3000390063971281)", - "surface": 5190000, - "canton": null, - "numero_insee": "54224" - } - }, - { - "pk": 36958, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GEZONCOURT", - "center": "POINT (867824.7201282095629722 2433329.1832508300431073)", - "surface": 5340000, - "canton": null, - "numero_insee": "54225" - } - }, - { - "pk": 9551, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GIBEAUMEIX", - "center": "POINT (851261.3222210358362645 2404466.8770956513471901)", - "surface": 8000000, - "canton": null, - "numero_insee": "54226" - } - }, - { - "pk": 27807, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GIRAUMONT", - "center": "POINT (861106.6500721644842997 2469795.6790369832888246)", - "surface": 7700000, - "canton": null, - "numero_insee": "54227" - } - }, - { - "pk": 6094, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GIRIVILLER", - "center": "POINT (907727.2871830411022529 2389842.6309514665044844)", - "surface": 7750000, - "canton": null, - "numero_insee": "54228" - } - }, - { - "pk": 23045, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GLONVILLE", - "center": "POINT (921708.5901765609160066 2393165.7637462210841477)", - "surface": 18930000, - "canton": null, - "numero_insee": "54229" - } - }, - { - "pk": 13081, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GONDRECOURT-AIX", - "center": "POINT (849535.5212572303134948 2477201.0408186297863722)", - "surface": 12300000, - "canton": null, - "numero_insee": "54231" - } - }, - { - "pk": 18855, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GONDREVILLE", - "center": "POINT (868378.2698124097660184 2415521.7050008778460324)", - "surface": 25420000, - "canton": null, - "numero_insee": "54232" - } - }, - { - "pk": 10084, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GONDREXON", - "center": "POINT (926668.1246889255708084 2409820.4321340667083859)", - "surface": 2480000, - "canton": null, - "numero_insee": "54233" - } - }, - { - "pk": 9937, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GORCY", - "center": "POINT (842353.9984509008936584 2509459.7383720483630896)", - "surface": 4120000, - "canton": null, - "numero_insee": "54234" - } - }, - { - "pk": 22131, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GOVILLER", - "center": "POINT (871649.0445272303186357 2395936.0862599159590900)", - "surface": 12240000, - "canton": null, - "numero_insee": "54235" - } - }, - { - "pk": 17728, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GRAND-FAILLY", - "center": "POINT (831061.1120983120054007 2496154.5599091649055481)", - "surface": 22140000, - "canton": null, - "numero_insee": "54236" - } - }, - { - "pk": 4229, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GRIMONVILLER", - "center": "POINT (871868.8499022519681603 2382028.0244431532919407)", - "surface": 4850000, - "canton": null, - "numero_insee": "54237" - } - }, - { - "pk": 31011, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GRIPPORT", - "center": "POINT (889440.5582372414646670 2386782.7317660921253264)", - "surface": 5770000, - "canton": null, - "numero_insee": "54238" - } - }, - { - "pk": 6272, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GRISCOURT", - "center": "POINT (870126.9766640389570966 2433248.9337581973522902)", - "surface": 3720000, - "canton": null, - "numero_insee": "54239" - } - }, - { - "pk": 3032, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GROSROUVRES", - "center": "POINT (857634.8830810647923499 2431340.2225128896534443)", - "surface": 4600000, - "canton": null, - "numero_insee": "54240" - } - }, - { - "pk": 13947, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GUGNEY", - "center": "POINT (875555.7344840047881007 2383861.0673085968010128)", - "surface": 2910000, - "canton": null, - "numero_insee": "54241" - } - }, - { - "pk": 11493, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "GYE", - "center": "POINT (861031.3409618573496118 2408753.8178990497253835)", - "surface": 6510000, - "canton": null, - "numero_insee": "54242" - } - }, - { - "pk": 29193, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HABLAINVILLE", - "center": "POINT (923652.7418505242094398 2399787.2826515329070389)", - "surface": 7540000, - "canton": null, - "numero_insee": "54243" - } - }, - { - "pk": 12298, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAGEVILLE", - "center": "POINT (858040.7712771765654907 2453958.9186366512440145)", - "surface": 8900000, - "canton": null, - "numero_insee": "54244" - } - }, - { - "pk": 6682, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAIGNEVILLE", - "center": "POINT (895976.6039864924969152 2394744.7626699083484709)", - "surface": 2910000, - "canton": null, - "numero_insee": "54245" - } - }, - { - "pk": 34374, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HALLOVILLE", - "center": "POINT (933821.0988473547622561 2404278.4031287617981434)", - "surface": 3970000, - "canton": null, - "numero_insee": "54246" - } - }, - { - "pk": 13269, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAMMEVILLE", - "center": "POINT (875956.9521563919261098 2395372.7542642494663596)", - "surface": 5530000, - "canton": null, - "numero_insee": "54247" - } - }, - { - "pk": 26169, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAMONVILLE", - "center": "POINT (854938.4033694977406412 2430716.6286255917511880)", - "surface": 6720000, - "canton": null, - "numero_insee": "54248" - } - }, - { - "pk": 8530, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HANNONVILLE-SUZEMONT", - "center": "POINT (855675.7481063768500462 2461343.4702509413473308)", - "surface": 8560000, - "canton": null, - "numero_insee": "54249" - } - }, - { - "pk": 14941, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HARAUCOURT", - "center": "POINT (896405.1585101331584156 2414662.4849997572600842)", - "surface": 12430000, - "canton": null, - "numero_insee": "54250" - } - }, - { - "pk": 9175, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HARBOUEY", - "center": "POINT (936202.6832633933518082 2406600.6510120206512511)", - "surface": 10230000, - "canton": null, - "numero_insee": "54251" - } - }, - { - "pk": 29775, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAROUE", - "center": "POINT (884683.1946186339482665 2393046.2292188042774796)", - "surface": 4290000, - "canton": null, - "numero_insee": "54252" - } - }, - { - "pk": 28239, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HATRIZE", - "center": "POINT (859583.4059051893418655 2472384.2652258933521807)", - "surface": 7400000, - "canton": null, - "numero_insee": "54253" - } - }, - { - "pk": 37873, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAUCOURT-MOULAINE", - "center": "POINT (851494.2215627284022048 2505435.7392517141997814)", - "surface": 7470000, - "canton": null, - "numero_insee": "54254" - } - }, - { - "pk": 4187, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAUDONVILLE", - "center": "POINT (906063.1739482319680974 2397133.4713397151790559)", - "surface": 7540000, - "canton": null, - "numero_insee": "54255" - } - }, - { - "pk": 21231, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAUSSONVILLE", - "center": "POINT (894333.2830476588569582 2399634.0666655125096440)", - "surface": 11250000, - "canton": null, - "numero_insee": "54256" - } - }, - { - "pk": 27124, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HEILLECOURT", - "center": "POINT (884513.2804828134831041 2412758.6658043623901904)", - "surface": 3680000, - "canton": null, - "numero_insee": "54257" - } - }, - { - "pk": 8037, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HENAMENIL", - "center": "POINT (911706.9005808819783852 2415695.2515518241561949)", - "surface": 14530000, - "canton": null, - "numero_insee": "54258" - } - }, - { - "pk": 20986, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HERBEVILLER", - "center": "POINT (926017.9026802454609424 2404010.7199898706749082)", - "surface": 8130000, - "canton": null, - "numero_insee": "54259" - } - }, - { - "pk": 17221, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HERIMENIL", - "center": "POINT (907915.9797239655163139 2402753.4451313586905599)", - "surface": 12610000, - "canton": null, - "numero_insee": "54260" - } - }, - { - "pk": 10134, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HERSERANGE", - "center": "POINT (850372.9770266629057005 2507827.5911154556088150)", - "surface": 3610000, - "canton": null, - "numero_insee": "54261" - } - }, - { - "pk": 37469, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HOEVILLE", - "center": "POINT (901354.7090970478020608 2420909.5131108020432293)", - "surface": 8590000, - "canton": null, - "numero_insee": "54262" - } - }, - { - "pk": 5612, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HOMECOURT", - "center": "POINT (866360.6170695039909333 2475544.5915772207081318)", - "surface": 4500000, - "canton": null, - "numero_insee": "54263" - } - }, - { - "pk": 12168, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HOUDELMONT", - "center": "POINT (877420.8449762996751815 2399688.4141198657453060)", - "surface": 3850000, - "canton": null, - "numero_insee": "54264" - } - }, - { - "pk": 12852, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HOUDEMONT", - "center": "POINT (882722.5069764838553965 2411542.3928443584591150)", - "surface": 3630000, - "canton": null, - "numero_insee": "54265" - } - }, - { - "pk": 27652, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HOUDREVILLE", - "center": "POINT (877943.5728776956675574 2397091.0736928787082434)", - "surface": 10390000, - "canton": null, - "numero_insee": "54266" - } - }, - { - "pk": 20134, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HOUSSEVILLE", - "center": "POINT (879745.5173421963118017 2385398.2355382894165814)", - "surface": 5340000, - "canton": null, - "numero_insee": "54268" - } - }, - { - "pk": 3339, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HUDIVILLER", - "center": "POINT (898966.3079315950162709 2407779.7611475079320371)", - "surface": 2980000, - "canton": null, - "numero_insee": "54269" - } - }, - { - "pk": 19224, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HUSSIGNY-GODBRANGE", - "center": "POINT (855096.1948315949412063 2505466.7100828639231622)", - "surface": 15380000, - "canton": null, - "numero_insee": "54270" - } - }, - { - "pk": 6327, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "IGNEY", - "center": "POINT (930341.8618212873116136 2413154.5408679852262139)", - "surface": 4750000, - "canton": null, - "numero_insee": "54271" - } - }, - { - "pk": 30503, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JAILLON", - "center": "POINT (867501.9874538906151429 2424320.2469888413324952)", - "surface": 7460000, - "canton": null, - "numero_insee": "54272" - } - }, - { - "pk": 14702, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JARNY", - "center": "POINT (858628.4442675870377570 2467072.5997552853077650)", - "surface": 15670000, - "canton": null, - "numero_insee": "54273" - } - }, - { - "pk": 22239, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JARVILLE-LA-MALGRANGE", - "center": "POINT (884898.0036681224592030 2414563.2369518196210265)", - "surface": 2400000, - "canton": null, - "numero_insee": "54274" - } - }, - { - "pk": 36024, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JAULNY", - "center": "POINT (860404.0993078219471499 2446774.4457302470691502)", - "surface": 8260000, - "canton": null, - "numero_insee": "54275" - } - }, - { - "pk": 24314, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JEANDELAINCOURT", - "center": "POINT (886725.8344492398900911 2434692.8326583541929722)", - "surface": 4620000, - "canton": null, - "numero_insee": "54276" - } - }, - { - "pk": 10701, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JEANDELIZE", - "center": "POINT (852404.2103903510142118 2469420.6441489662975073)", - "surface": 6740000, - "canton": null, - "numero_insee": "54277" - } - }, - { - "pk": 5236, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JEVONCOURT", - "center": "POINT (883139.9494850209448487 2386328.1307705808430910)", - "surface": 3340000, - "canton": null, - "numero_insee": "54278" - } - }, - { - "pk": 18405, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JEZAINVILLE", - "center": "POINT (870004.5185020243516192 2435849.6469875061884522)", - "surface": 18330000, - "canton": null, - "numero_insee": "54279" - } - }, - { - "pk": 19626, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JOEUF", - "center": "POINT (867751.9435669053345919 2476657.2796121300198138)", - "surface": 3170000, - "canton": null, - "numero_insee": "54280" - } - }, - { - "pk": 12264, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JOLIVET", - "center": "POINT (908258.3177135282894596 2409461.1204720148816705)", - "surface": 7170000, - "canton": null, - "numero_insee": "54281" - } - }, - { - "pk": 31708, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JOPPECOURT", - "center": "POINT (851696.6343435535673052 2493530.0195555780082941)", - "surface": 7050000, - "canton": null, - "numero_insee": "54282" - } - }, - { - "pk": 22516, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JOUAVILLE", - "center": "POINT (864421.4710758915171027 2468323.2241043173708022)", - "surface": 11260000, - "canton": null, - "numero_insee": "54283" - } - }, - { - "pk": 6613, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JOUDREVILLE", - "center": "POINT (850493.9518324753735214 2482112.4280050899833441)", - "surface": 5710000, - "canton": null, - "numero_insee": "54284" - } - }, - { - "pk": 8116, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "JUVRECOURT", - "center": "POINT (910633.6489627723349258 2424091.8015189641155303)", - "surface": 6190000, - "canton": null, - "numero_insee": "54285" - } - }, - { - "pk": 34742, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LABRY", - "center": "POINT (857896.1976843643933535 2470768.7132517718710005)", - "surface": 6210000, - "canton": null, - "numero_insee": "54286" - } - }, - { - "pk": 30916, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LACHAPELLE", - "center": "POINT (927948.0624962819274515 2389116.8025357094593346)", - "surface": 10130000, - "canton": null, - "numero_insee": "54287" - } - }, - { - "pk": 17313, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LAITRE-SOUS-AMANCE", - "center": "POINT (889530.1652479632757604 2422808.8613086743280292)", - "surface": 5160000, - "canton": null, - "numero_insee": "54289" - } - }, - { - "pk": 8652, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LAIX", - "center": "POINT (849737.0952453997451812 2500317.4520636578090489)", - "surface": 7500000, - "canton": null, - "numero_insee": "54290" - } - }, - { - "pk": 29137, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LALOEUF", - "center": "POINT (871485.0976531109772623 2391731.6833111806772649)", - "surface": 10980000, - "canton": null, - "numero_insee": "54291" - } - }, - { - "pk": 20401, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LAMATH", - "center": "POINT (903244.1122018015012145 2399110.5484495321288705)", - "surface": 5590000, - "canton": null, - "numero_insee": "54292" - } - }, - { - "pk": 37312, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANDECOURT", - "center": "POINT (901860.5006320005049929 2397097.1822100784629583)", - "surface": 5880000, - "canton": null, - "numero_insee": "54293" - } - }, - { - "pk": 25022, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANDREMONT", - "center": "POINT (880016.6012070758733898 2435235.4078948427923024)", - "surface": 5560000, - "canton": null, - "numero_insee": "54294" - } - }, - { - "pk": 29333, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANDRES", - "center": "POINT (852464.9795375436078757 2485631.6092435745522380)", - "surface": 8050000, - "canton": null, - "numero_insee": "54295" - } - }, - { - "pk": 24735, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANEUVELOTTE", - "center": "POINT (891544.3433061131509021 2421325.1977797290310264)", - "surface": 9170000, - "canton": null, - "numero_insee": "54296" - } - }, - { - "pk": 4880, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANEUVEVILLE-AUX-BOIS", - "center": "POINT (917548.5758103945991024 2411342.6725735962390900)", - "surface": 19180000, - "canton": null, - "numero_insee": "54297" - } - }, - { - "pk": 19896, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANEUVEVILLE-DERRIERE-FOUG", - "center": "POINT (855350.4167114831507206 2417711.2341600302606821)", - "surface": 1140000, - "canton": null, - "numero_insee": "54298" - } - }, - { - "pk": 12784, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANEUVEVILLE-DEVANT-BAYON", - "center": "POINT (890287.6369403194403276 2392994.4768567648716271)", - "surface": 5780000, - "canton": null, - "numero_insee": "54299" - } - }, - { - "pk": 22186, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANEUVEVILLE-DEVANT-NANCY", - "center": "POINT (887718.7267666377592832 2412386.0214293971657753)", - "surface": 12540000, - "canton": null, - "numero_insee": "54300" - } - }, - { - "pk": 13663, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANFROICOURT", - "center": "POINT (892466.4079778966261074 2430439.4099859655834734)", - "surface": 6250000, - "canton": null, - "numero_insee": "54301" - } - }, - { - "pk": 25549, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LANTEFONTAINE", - "center": "POINT (858528.6105186332715675 2478679.2648945357650518)", - "surface": 8310000, - "canton": null, - "numero_insee": "54302" - } - }, - { - "pk": 7065, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LARONXE", - "center": "POINT (914523.6121351366164163 2402410.2571935565210879)", - "surface": 6800000, - "canton": null, - "numero_insee": "54303" - } - }, - { - "pk": 28040, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LAXOU", - "center": "POINT (878081.7061169308144599 2415905.4705729014240205)", - "surface": 15950000, - "canton": null, - "numero_insee": "54304" - } - }, - { - "pk": 33702, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LAY-SAINT-CHRISTOPHE", - "center": "POINT (883714.5201859957305714 2424159.6837278353050351)", - "surface": 11670000, - "canton": null, - "numero_insee": "54305" - } - }, - { - "pk": 12923, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LAY-SAINT-REMY", - "center": "POINT (852174.2361284832004458 2414681.8516892534680665)", - "surface": 3890000, - "canton": null, - "numero_insee": "54306" - } - }, - { - "pk": 36026, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LEBEUVILLE", - "center": "POINT (888822.0529706982197240 2388878.9059868436306715)", - "surface": 6230000, - "canton": null, - "numero_insee": "54307" - } - }, - { - "pk": 26664, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LEINTREY", - "center": "POINT (924744.4241074735764414 2412405.6099122553132474)", - "surface": 15730000, - "canton": null, - "numero_insee": "54308" - } - }, - { - "pk": 28423, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LEMAINVILLE", - "center": "POINT (884452.8802495535928756 2396546.7363341082818806)", - "surface": 4780000, - "canton": null, - "numero_insee": "54309" - } - }, - { - "pk": 27827, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LEMENIL-MITRY", - "center": "POINT (889804.5750131539534777 2390988.8820599252358079)", - "surface": 3470000, - "canton": null, - "numero_insee": "54310" - } - }, - { - "pk": 15118, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LENONCOURT", - "center": "POINT (891895.4533729264512658 2415424.1337700379081070)", - "surface": 11630000, - "canton": null, - "numero_insee": "54311" - } - }, - { - "pk": 27825, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LESMENILS", - "center": "POINT (876542.1366347963921726 2443611.1526675019413233)", - "surface": 10980000, - "canton": null, - "numero_insee": "54312" - } - }, - { - "pk": 33417, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LETRICOURT", - "center": "POINT (889599.9755779865663499 2437919.7920338399708271)", - "surface": 7280000, - "canton": null, - "numero_insee": "54313" - } - }, - { - "pk": 8520, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LEXY", - "center": "POINT (845886.8540537623921409 2505887.8571640439331532)", - "surface": 5980000, - "canton": null, - "numero_insee": "54314" - } - }, - { - "pk": 7659, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LEYR", - "center": "POINT (888869.3911808365955949 2429807.9733003890141845)", - "surface": 10930000, - "canton": null, - "numero_insee": "54315" - } - }, - { - "pk": 23334, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LIMEY-REMENAUVILLE", - "center": "POINT (861473.5572901922278106 2438778.2627186137251556)", - "surface": 18750000, - "canton": null, - "numero_insee": "54316" - } - }, - { - "pk": 12299, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LIRONVILLE", - "center": "POINT (862299.8638625759631395 2435783.3394458391703665)", - "surface": 8940000, - "canton": null, - "numero_insee": "54317" - } - }, - { - "pk": 31844, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LOISY", - "center": "POINT (876003.8367912657558918 2436401.6503521874547005)", - "surface": 5660000, - "canton": null, - "numero_insee": "54320" - } - }, - { - "pk": 14273, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LONGLAVILLE", - "center": "POINT (851058.7371172833954915 2509534.5391094707883894)", - "surface": 3130000, - "canton": null, - "numero_insee": "54321" - } - }, - { - "pk": 16122, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LONGUYON", - "center": "POINT (836127.0106708331732079 2500500.7325994954444468)", - "surface": 30120000, - "canton": null, - "numero_insee": "54322" - } - }, - { - "pk": 32699, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LONGWY", - "center": "POINT (848470.2195901075610891 2508011.3604351850226521)", - "surface": 5490000, - "canton": null, - "numero_insee": "54323" - } - }, - { - "pk": 30004, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LOREY", - "center": "POINT (893963.2425961276749149 2396128.3890934446826577)", - "surface": 5100000, - "canton": null, - "numero_insee": "54324" - } - }, - { - "pk": 31979, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LOROMONTZEY", - "center": "POINT (898429.0860961687285453 2388861.7070032046176493)", - "surface": 7850000, - "canton": null, - "numero_insee": "54325" - } - }, - { - "pk": 16121, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LUBEY", - "center": "POINT (856237.6253661210648715 2477458.7877097306773067)", - "surface": 3950000, - "canton": null, - "numero_insee": "54326" - } - }, - { - "pk": 37413, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LUCEY", - "center": "POINT (856936.7805597824044526 2419426.0493966504000127)", - "surface": 11010000, - "canton": null, - "numero_insee": "54327" - } - }, - { - "pk": 32285, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LUDRES", - "center": "POINT (882841.5420193164609373 2409341.8796814554370940)", - "surface": 8280000, - "canton": null, - "numero_insee": "54328" - } - }, - { - "pk": 19722, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LUNEVILLE", - "center": "POINT (906875.5903772945748642 2407347.7014238601550460)", - "surface": 16500000, - "canton": null, - "numero_insee": "54329" - } - }, - { - "pk": 25980, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "LUPCOURT", - "center": "POINT (886460.1869498586747795 2407471.7395790480077267)", - "surface": 6900000, - "canton": null, - "numero_insee": "54330" - } - }, - { - "pk": 19586, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAGNIERES", - "center": "POINT (912819.3225762742804363 2391187.5552673847414553)", - "surface": 11660000, - "canton": null, - "numero_insee": "54331" - } - }, - { - "pk": 3338, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAIDIERES", - "center": "POINT (871275.1501236953772604 2439362.9577613859437406)", - "surface": 1800000, - "canton": null, - "numero_insee": "54332" - } - }, - { - "pk": 37415, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAILLY-SUR-SEILLE", - "center": "POINT (886857.7941742870025337 2442599.3210175186395645)", - "surface": 6270000, - "canton": null, - "numero_insee": "54333" - } - }, - { - "pk": 15532, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAIRY-MAINVILLE", - "center": "POINT (855979.0005162695888430 2484260.9297610665671527)", - "surface": 12550000, - "canton": null, - "numero_insee": "54334" - } - }, - { - "pk": 33820, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAIXE", - "center": "POINT (902120.8012045358773321 2413310.8443223969079554)", - "surface": 9360000, - "canton": null, - "numero_insee": "54335" - } - }, - { - "pk": 23168, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAIZIERES", - "center": "POINT (874663.1224269365193322 2406169.2463783677667379)", - "surface": 15870000, - "canton": null, - "numero_insee": "54336" - } - }, - { - "pk": 6943, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MALAVILLERS", - "center": "POINT (856528.5694359869230539 2490169.4141848003491759)", - "surface": 4430000, - "canton": null, - "numero_insee": "54337" - } - }, - { - "pk": 8397, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MALLELOY", - "center": "POINT (881477.8130388755816966 2428243.2224870156496763)", - "surface": 4160000, - "canton": null, - "numero_insee": "54338" - } - }, - { - "pk": 36725, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MALZEVILLE", - "center": "POINT (883545.4467373467050493 2420555.7419133614748716)", - "surface": 7600000, - "canton": null, - "numero_insee": "54339" - } - }, - { - "pk": 13799, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAMEY", - "center": "POINT (865488.8817988054361194 2437311.7959211124107242)", - "surface": 7590000, - "canton": null, - "numero_insee": "54340" - } - }, - { - "pk": 29753, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANCE", - "center": "POINT (860809.2612542761489749 2481100.4275098857469857)", - "surface": 7370000, - "canton": null, - "numero_insee": "54341" - } - }, - { - "pk": 5377, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANCIEULLES", - "center": "POINT (859102.2707601888105273 2481786.1918113371357322)", - "surface": 4390000, - "canton": null, - "numero_insee": "54342" - } - }, - { - "pk": 26447, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANDRES-AUX-QUATRE-TOURS", - "center": "POINT (853635.0322824178729206 2431005.6287946747615933)", - "surface": 10380000, - "canton": null, - "numero_insee": "54343" - } - }, - { - "pk": 32512, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANGONVILLE", - "center": "POINT (892307.0404256278416142 2390910.3925369735807180)", - "surface": 3860000, - "canton": null, - "numero_insee": "54344" - } - }, - { - "pk": 33421, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANONCOURT-EN-VERMOIS", - "center": "POINT (890062.4468588314484805 2407502.8008702956140041)", - "surface": 6770000, - "canton": null, - "numero_insee": "54345" - } - }, - { - "pk": 32719, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANONCOURT-EN-WOEVRE", - "center": "POINT (863281.3315879037836567 2426385.3700449890457094)", - "surface": 10700000, - "canton": null, - "numero_insee": "54346" - } - }, - { - "pk": 34726, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANONVILLE", - "center": "POINT (862734.5398995450232178 2431784.3586579896509647)", - "surface": 9500000, - "canton": null, - "numero_insee": "54348" - } - }, - { - "pk": 3114, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MANONVILLER", - "center": "POINT (919079.7988049163250253 2407853.4558535632677376)", - "surface": 6880000, - "canton": null, - "numero_insee": "54349" - } - }, - { - "pk": 35293, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MARBACHE", - "center": "POINT (875776.9163405499421060 2427893.8988809748552740)", - "surface": 10740000, - "canton": null, - "numero_insee": "54351" - } - }, - { - "pk": 13227, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MARON", - "center": "POINT (874104.2128736374434084 2412969.1924849487841129)", - "surface": 19120000, - "canton": null, - "numero_insee": "54352" - } - }, - { - "pk": 21628, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MARS-LA-TOUR", - "center": "POINT (859179.5126656341599301 2461173.4713376378640532)", - "surface": 12880000, - "canton": null, - "numero_insee": "54353" - } - }, - { - "pk": 10709, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MARTHEMONT", - "center": "POINT (873098.3040944059612229 2401952.8135890355333686)", - "surface": 2130000, - "canton": null, - "numero_insee": "54354" - } - }, - { - "pk": 7580, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MARTINCOURT", - "center": "POINT (865318.8985405822750181 2433807.9573155338875949)", - "surface": 10720000, - "canton": null, - "numero_insee": "54355" - } - }, - { - "pk": 11105, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MATTEXEY", - "center": "POINT (909523.2568766325712204 2390458.5749895004555583)", - "surface": 4970000, - "canton": null, - "numero_insee": "54356" - } - }, - { - "pk": 3337, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAXEVILLE", - "center": "POINT (880556.5288176477188244 2419028.9445056677795947)", - "surface": 5640000, - "canton": null, - "numero_insee": "54357" - } - }, - { - "pk": 9947, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MAZERULLES", - "center": "POINT (897216.7708827004535124 2424976.6245912224985659)", - "surface": 6420000, - "canton": null, - "numero_insee": "54358" - } - }, - { - "pk": 28494, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MEHONCOURT", - "center": "POINT (898649.8280605096369982 2398070.1787397298030555)", - "surface": 7880000, - "canton": null, - "numero_insee": "54359" - } - }, - { - "pk": 16840, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MENIL-LA-TOUR", - "center": "POINT (858087.6148522272706032 2425239.9415281969122589)", - "surface": 8870000, - "canton": null, - "numero_insee": "54360" - } - }, - { - "pk": 8225, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MERCY-LE-BAS", - "center": "POINT (848600.0648272664984688 2492903.0243908418342471)", - "surface": 8180000, - "canton": null, - "numero_insee": "54362" - } - }, - { - "pk": 28989, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MERCY-LE-HAUT", - "center": "POINT (853516.5644798910943791 2491344.2742905458435416)", - "surface": 13400000, - "canton": null, - "numero_insee": "54363" - } - }, - { - "pk": 10969, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MEREVILLE", - "center": "POINT (880369.2911315804813057 2405918.1892285719513893)", - "surface": 8590000, - "canton": null, - "numero_insee": "54364" - } - }, - { - "pk": 23185, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MERVILLER", - "center": "POINT (928394.6954754451289773 2395325.1079838643781841)", - "surface": 12600000, - "canton": null, - "numero_insee": "54365" - } - }, - { - "pk": 28039, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MESSEIN", - "center": "POINT (880551.3106854755897075 2408021.2322871903888881)", - "surface": 5190000, - "canton": null, - "numero_insee": "54366" - } - }, - { - "pk": 7830, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MEXY", - "center": "POINT (849989.0992756937630475 2505923.1117755379527807)", - "surface": 4900000, - "canton": null, - "numero_insee": "54367" - } - }, - { - "pk": 25564, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MIGNEVILLE", - "center": "POINT (928236.6122098956257105 2402028.5041853254660964)", - "surface": 6490000, - "canton": null, - "numero_insee": "54368" - } - }, - { - "pk": 37175, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MILLERY", - "center": "POINT (879254.0525738836731762 2430825.8388062883168459)", - "surface": 7430000, - "canton": null, - "numero_insee": "54369" - } - }, - { - "pk": 25375, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MINORVILLE", - "center": "POINT (860254.5371586689725518 2429261.3183820974081755)", - "surface": 12670000, - "canton": null, - "numero_insee": "54370" - } - }, - { - "pk": 5827, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOINEVILLE", - "center": "POINT (863283.8114788171369582 2472616.2321954499930143)", - "surface": 8320000, - "canton": null, - "numero_insee": "54371" - } - }, - { - "pk": 17314, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOIVRONS", - "center": "POINT (887144.1958077433519065 2432595.0093650966882706)", - "surface": 6070000, - "canton": null, - "numero_insee": "54372" - } - }, - { - "pk": 20766, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONCEL-LES-LUNEVILLE", - "center": "POINT (911803.7459325508680195 2404488.2349585629999638)", - "surface": 22420000, - "canton": null, - "numero_insee": "54373" - } - }, - { - "pk": 4263, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONCEL-SUR-SEILLE", - "center": "POINT (900404.0508882475551218 2426705.3063649274408817)", - "surface": 12580000, - "canton": null, - "numero_insee": "54374" - } - }, - { - "pk": 16544, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONTAUVILLE", - "center": "POINT (868773.6456621503457427 2439341.4213407491333783)", - "surface": 16490000, - "canton": null, - "numero_insee": "54375" - } - }, - { - "pk": 31621, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONTENOY", - "center": "POINT (886478.2801580673549324 2428586.5326926922425628)", - "surface": 4000000, - "canton": null, - "numero_insee": "54376" - } - }, - { - "pk": 13528, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONTIGNY", - "center": "POINT (929856.6798764097038656 2399840.9650480872951448)", - "surface": 6140000, - "canton": null, - "numero_insee": "54377" - } - }, - { - "pk": 27545, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONTIGNY-SUR-CHIERS", - "center": "POINT (841615.4362999043660238 2502248.9211669345386326)", - "surface": 9400000, - "canton": null, - "numero_insee": "54378" - } - }, - { - "pk": 36094, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONT-L'ETROIT", - "center": "POINT (854650.2699496708810329 2394388.8617899622768164)", - "surface": 6460000, - "canton": null, - "numero_insee": "54379" - } - }, - { - "pk": 35544, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONT-LE-VIGNOBLE", - "center": "POINT (859036.1125783277675509 2408036.1681262059137225)", - "surface": 4230000, - "canton": null, - "numero_insee": "54380" - } - }, - { - "pk": 11736, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONTREUX", - "center": "POINT (936036.3545945048099384 2402696.4541784003376961)", - "surface": 3800000, - "canton": null, - "numero_insee": "54381" - } - }, - { - "pk": 13652, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONT-SAINT-MARTIN", - "center": "POINT (849246.5767503451788798 2510819.7655439255759120)", - "surface": 8770000, - "canton": null, - "numero_insee": "54382" - } - }, - { - "pk": 31845, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MONT-SUR-MEURTHE", - "center": "POINT (903015.4743666341528296 2402410.9113878048956394)", - "surface": 9650000, - "canton": null, - "numero_insee": "54383" - } - }, - { - "pk": 34011, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MORFONTAINE", - "center": "POINT (852545.5232403149129823 2499541.0931367226876318)", - "surface": 11530000, - "canton": null, - "numero_insee": "54385" - } - }, - { - "pk": 25761, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MORIVILLER", - "center": "POINT (903281.2629582872614264 2394807.8109692167490721)", - "surface": 7250000, - "canton": null, - "numero_insee": "54386" - } - }, - { - "pk": 6499, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MORVILLE-SUR-SEILLE", - "center": "POINT (879255.8237487078877166 2442233.5904409829527140)", - "surface": 5370000, - "canton": null, - "numero_insee": "54387" - } - }, - { - "pk": 12507, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOUACOURT", - "center": "POINT (916901.4841611364390701 2416740.8488162448629737)", - "surface": 8530000, - "canton": null, - "numero_insee": "54388" - } - }, - { - "pk": 34285, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOUAVILLE", - "center": "POINT (850865.5040748702595010 2473810.2748185847885907)", - "surface": 8530000, - "canton": null, - "numero_insee": "54389" - } - }, - { - "pk": 7982, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOUSSON", - "center": "POINT (875361.2418886900413781 2441299.4305372191593051)", - "surface": 5890000, - "canton": null, - "numero_insee": "54390" - } - }, - { - "pk": 36620, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOUTIERS", - "center": "POINT (863650.4604900878621265 2476521.9124321318231523)", - "surface": 6770000, - "canton": null, - "numero_insee": "54391" - } - }, - { - "pk": 27437, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOUTROT", - "center": "POINT (862553.7991009983234107 2406265.1611182792112231)", - "surface": 7320000, - "canton": null, - "numero_insee": "54392" - } - }, - { - "pk": 23122, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MOYEN", - "center": "POINT (914078.6452417237451300 2396001.8675187313929200)", - "surface": 23700000, - "canton": null, - "numero_insee": "54393" - } - }, - { - "pk": 22837, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "MURVILLE", - "center": "POINT (854041.7934437233489007 2488446.9496482531540096)", - "surface": 5560000, - "canton": null, - "numero_insee": "54394" - } - }, - { - "pk": 27492, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NANCY", - "center": "POINT (882675.0753858073148876 2417045.8148431256413460)", - "surface": 14940000, - "canton": null, - "numero_insee": "54395" - } - }, - { - "pk": 16545, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NEUFMAISONS", - "center": "POINT (935221.5687865524087101 2392782.3474042611196637)", - "surface": 22010000, - "canton": null, - "numero_insee": "54396" - } - }, - { - "pk": 26804, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NEUVES-MAISONS", - "center": "POINT (878146.3576955390162766 2408400.7924834932200611)", - "surface": 4490000, - "canton": null, - "numero_insee": "54397" - } - }, - { - "pk": 29357, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NEUVILLER-LES-BADONVILLER", - "center": "POINT (935250.5789760261541232 2400988.4440708220936358)", - "surface": 5820000, - "canton": null, - "numero_insee": "54398" - } - }, - { - "pk": 29025, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NEUVILLER-SUR-MOSELLE", - "center": "POINT (891569.4813197953626513 2395207.1003090157173574)", - "surface": 6940000, - "canton": null, - "numero_insee": "54399" - } - }, - { - "pk": 15915, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NOMENY", - "center": "POINT (885795.9569029221311212 2438087.1238204920664430)", - "surface": 18160000, - "canton": null, - "numero_insee": "54400" - } - }, - { - "pk": 24630, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NONHIGNY", - "center": "POINT (936124.2854761860799044 2404098.2065425934270024)", - "surface": 5830000, - "canton": null, - "numero_insee": "54401" - } - }, - { - "pk": 12250, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NORROY-LE-SEC", - "center": "POINT (852805.5780944544821978 2480931.5294339256361127)", - "surface": 13720000, - "canton": null, - "numero_insee": "54402" - } - }, - { - "pk": 34230, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NORROY-LES-PONT-A-MOUSSON", - "center": "POINT (869339.5503412673715502 2443348.9903758792206645)", - "surface": 5910000, - "canton": null, - "numero_insee": "54403" - } - }, - { - "pk": 9347, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "NOVIANT-AUX-PRES", - "center": "POINT (860419.3717016682494432 2433365.5322943404316902)", - "surface": 11270000, - "canton": null, - "numero_insee": "54404" - } - }, - { - "pk": 14516, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "OCHEY", - "center": "POINT (866363.0740296705625951 2405497.3732633385807276)", - "surface": 18140000, - "canton": null, - "numero_insee": "54405" - } - }, - { - "pk": 8795, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "OGEVILLER", - "center": "POINT (923418.8568691039690748 2403688.0222632377408445)", - "surface": 3700000, - "canton": null, - "numero_insee": "54406" - } - }, - { - "pk": 14195, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "OGNEVILLE", - "center": "POINT (875182.2945312351221219 2392363.9455558573827147)", - "surface": 4150000, - "canton": null, - "numero_insee": "54407" - } - }, - { - "pk": 33919, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "OLLEY", - "center": "POINT (850303.8583382397191599 2469302.5254883216693997)", - "surface": 9460000, - "canton": null, - "numero_insee": "54408" - } - }, - { - "pk": 28496, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "OMELMONT", - "center": "POINT (879462.6300973537145182 2395002.6671919454820454)", - "surface": 4670000, - "canton": null, - "numero_insee": "54409" - } - }, - { - "pk": 9344, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ONVILLE", - "center": "POINT (865653.0042748327832669 2453123.8115334054455161)", - "surface": 9250000, - "canton": null, - "numero_insee": "54410" - } - }, - { - "pk": 15936, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ORMES-ET-VILLE", - "center": "POINT (885870.1602600421756506 2394657.6012371690012515)", - "surface": 12510000, - "canton": null, - "numero_insee": "54411" - } - }, - { - "pk": 6615, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "OTHE", - "center": "POINT (825492.8484595769550651 2503711.5503594800829887)", - "surface": 2950000, - "canton": null, - "numero_insee": "54412" - } - }, - { - "pk": 30991, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "OZERAILLES", - "center": "POINT (855354.3193595351185650 2475449.9006671616807580)", - "surface": 6400000, - "canton": null, - "numero_insee": "54413" - } - }, - { - "pk": 27629, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PAGNEY-DERRIERE-BARINE", - "center": "POINT (858460.0788432292174548 2416837.3477577115409076)", - "surface": 6200000, - "canton": null, - "numero_insee": "54414" - } - }, - { - "pk": 30857, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PAGNY-SUR-MOSELLE", - "center": "POINT (868985.1027575440239161 2449650.1613163719885051)", - "surface": 11150000, - "canton": null, - "numero_insee": "54415" - } - }, - { - "pk": 3241, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PANNES", - "center": "POINT (853536.9768923495430499 2442412.5081293405964971)", - "surface": 8490000, - "canton": null, - "numero_insee": "54416" - } - }, - { - "pk": 37551, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PAREY-SAINT-CESAIRE", - "center": "POINT (875229.7921029818244278 2398468.6927514644339681)", - "surface": 5570000, - "canton": null, - "numero_insee": "54417" - } - }, - { - "pk": 11713, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PARROY", - "center": "POINT (914604.3798190394882113 2416220.6423335662111640)", - "surface": 17810000, - "canton": null, - "numero_insee": "54418" - } - }, - { - "pk": 33855, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PARUX", - "center": "POINT (938430.9401472390163690 2403517.7610905831679702)", - "surface": 4370000, - "canton": null, - "numero_insee": "54419" - } - }, - { - "pk": 23900, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PETIT-FAILLY", - "center": "POINT (829643.1676847446942702 2498143.6505012162961066)", - "surface": 8080000, - "canton": null, - "numero_insee": "54420" - } - }, - { - "pk": 4818, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PETITMONT", - "center": "POINT (942327.3381022883113474 2404252.0145528563298285)", - "surface": 17750000, - "canton": null, - "numero_insee": "54421" - } - }, - { - "pk": 14193, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PETTONVILLE", - "center": "POINT (925440.0331192575395107 2401403.8799336263909936)", - "surface": 3050000, - "canton": null, - "numero_insee": "54422" - } - }, - { - "pk": 11823, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PEXONNE", - "center": "POINT (936102.2147449054755270 2395091.6185810565948486)", - "surface": 13390000, - "canton": null, - "numero_insee": "54423" - } - }, - { - "pk": 24436, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PHLIN", - "center": "POINT (888758.9336572890169919 2442615.7159141963347793)", - "surface": 3710000, - "canton": null, - "numero_insee": "54424" - } - }, - { - "pk": 23594, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PIENNES", - "center": "POINT (850775.2010928147938102 2484316.2533561596646905)", - "surface": 4830000, - "canton": null, - "numero_insee": "54425" - } - }, - { - "pk": 7700, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PIERRE-LA-TREICHE", - "center": "POINT (867318.9228147678077221 2410709.2428859947249293)", - "surface": 12990000, - "canton": null, - "numero_insee": "54426" - } - }, - { - "pk": 16839, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PIERRE-PERCEE", - "center": "POINT (940205.7028719087829813 2395027.0906299673952162)", - "surface": 9980000, - "canton": null, - "numero_insee": "54427" - } - }, - { - "pk": 29118, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PIERREPONT", - "center": "POINT (844767.8586082037072629 2496372.3028812678530812)", - "surface": 7050000, - "canton": null, - "numero_insee": "54428" - } - }, - { - "pk": 4713, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PIERREVILLE", - "center": "POINT (878609.5369767169468105 2401099.6441785995848477)", - "surface": 3010000, - "canton": null, - "numero_insee": "54429" - } - }, - { - "pk": 25701, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "POMPEY", - "center": "POINT (877394.2722983125131577 2426006.5273596951738000)", - "surface": 8310000, - "canton": null, - "numero_insee": "54430" - } - }, - { - "pk": 23184, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PONT-A-MOUSSON", - "center": "POINT (872450.0226192313712090 2442375.0989961754530668)", - "surface": 21530000, - "canton": null, - "numero_insee": "54431" - } - }, - { - "pk": 6781, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PONT-SAINT-VINCENT", - "center": "POINT (875650.8236732437508181 2407678.8058024970814586)", - "surface": 6600000, - "canton": null, - "numero_insee": "54432" - } - }, - { - "pk": 11224, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PORT-SUR-SEILLE", - "center": "POINT (880273.6691541897598654 2440241.0116765992715955)", - "surface": 6300000, - "canton": null, - "numero_insee": "54433" - } - }, - { - "pk": 35056, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PRAYE", - "center": "POINT (879216.7477181568974629 2388696.0495644574984908)", - "surface": 8740000, - "canton": null, - "numero_insee": "54434" - } - }, - { - "pk": 34691, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PRENY", - "center": "POINT (865500.2480329533573240 2447618.8285810435190797)", - "surface": 15230000, - "canton": null, - "numero_insee": "54435" - } - }, - { - "pk": 13120, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PREUTIN-HIGNY", - "center": "POINT (851737.0606361608952284 2488827.3892467799596488)", - "surface": 7070000, - "canton": null, - "numero_insee": "54436" - } - }, - { - "pk": 34376, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PULLIGNY", - "center": "POINT (881609.7101421384140849 2401325.6350692049600184)", - "surface": 9270000, - "canton": null, - "numero_insee": "54437" - } - }, - { - "pk": 31214, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PULNEY", - "center": "POINT (873659.6764018756803125 2383244.3080167951993644)", - "surface": 4430000, - "canton": null, - "numero_insee": "54438" - } - }, - { - "pk": 13097, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PULNOY", - "center": "POINT (889166.1619217911502346 2418602.8169486038386822)", - "surface": 3730000, - "canton": null, - "numero_insee": "54439" - } - }, - { - "pk": 13132, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PUXE", - "center": "POINT (851725.3081419114023447 2466913.1779887755401433)", - "surface": 5970000, - "canton": null, - "numero_insee": "54440" - } - }, - { - "pk": 13401, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "PUXIEUX", - "center": "POINT (859301.0874729857314378 2458672.8694651015102863)", - "surface": 5620000, - "canton": null, - "numero_insee": "54441" - } - }, - { - "pk": 35782, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "QUEVILLONCOURT", - "center": "POINT (878583.6064961464144289 2392493.3128591449931264)", - "surface": 2900000, - "canton": null, - "numero_insee": "54442" - } - }, - { - "pk": 11222, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "RAON-LES-LEAU", - "center": "POINT (951560.9263917108764872 2401129.7929655024781823)", - "surface": 1340000, - "canton": null, - "numero_insee": "54443" - } - }, - { - "pk": 9045, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "RAUCOURT", - "center": "POINT (884451.1792244603857398 2443178.9754600888118148)", - "surface": 5150000, - "canton": null, - "numero_insee": "54444" - } - }, - { - "pk": 4695, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "RAVILLE-SUR-SANON", - "center": "POINT (907418.9203679051715881 2413957.0181664940901101)", - "surface": 3300000, - "canton": null, - "numero_insee": "54445" - } - }, - { - "pk": 36760, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "RECHICOURT-LA-PETITE", - "center": "POINT (912355.4497546412749216 2421705.0225972877815366)", - "surface": 5510000, - "canton": null, - "numero_insee": "54446" - } - }, - { - "pk": 36936, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "RECLONVILLE", - "center": "POINT (924332.4106119342613965 2402194.8640207690186799)", - "surface": 2920000, - "canton": null, - "numero_insee": "54447" - } - }, - { - "pk": 28907, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REHAINVILLER", - "center": "POINT (904898.5291273238835856 2404528.6544017097912729)", - "surface": 5600000, - "canton": null, - "numero_insee": "54449" - } - }, - { - "pk": 17670, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REHERREY", - "center": "POINT (927960.6685778007376939 2399224.1294707497581840)", - "surface": 5920000, - "canton": null, - "numero_insee": "54450" - } - }, - { - "pk": 23402, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REHON", - "center": "POINT (847890.5288346237502992 2505604.8885082504712045)", - "surface": 3700000, - "canton": null, - "numero_insee": "54451" - } - }, - { - "pk": 27932, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REILLON", - "center": "POINT (924973.1186406621709466 2409105.2741840388625860)", - "surface": 4460000, - "canton": null, - "numero_insee": "54452" - } - }, - { - "pk": 7368, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REMENOVILLE", - "center": "POINT (905898.4777071824064478 2393029.1263393322005868)", - "surface": 8510000, - "canton": null, - "numero_insee": "54455" - } - }, - { - "pk": 11123, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REMEREVILLE", - "center": "POINT (897561.8623523351270705 2419776.0110455383546650)", - "surface": 13420000, - "canton": null, - "numero_insee": "54456" - } - }, - { - "pk": 6897, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REMONCOURT", - "center": "POINT (924418.2652082941494882 2415404.8844643742777407)", - "surface": 6770000, - "canton": null, - "numero_insee": "54457" - } - }, - { - "pk": 29773, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "REPAIX", - "center": "POINT (931261.4815223764162511 2410960.9604378719814122)", - "surface": 4990000, - "canton": null, - "numero_insee": "54458" - } - }, - { - "pk": 25024, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "RICHARDMENIL", - "center": "POINT (883165.8773077133810148 2406542.7105855909176171)", - "surface": 7070000, - "canton": null, - "numero_insee": "54459" - } - }, - { - "pk": 11631, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROGEVILLE", - "center": "POINT (867351.1146861594170332 2430222.9929106021299958)", - "surface": 6990000, - "canton": null, - "numero_insee": "54460" - } - }, - { - "pk": 7423, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROMAIN", - "center": "POINT (896941.8398334089433774 2398856.0067241257056594)", - "surface": 3130000, - "canton": null, - "numero_insee": "54461" - } - }, - { - "pk": 15323, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROSIERES-AUX-SALINES", - "center": "POINT (894872.3672814504243433 2406743.7293647788465023)", - "surface": 27520000, - "canton": null, - "numero_insee": "54462" - } - }, - { - "pk": 25197, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROSIERES-EN-HAYE", - "center": "POINT (868776.9457437698729336 2427333.2811134760268033)", - "surface": 10740000, - "canton": null, - "numero_insee": "54463" - } - }, - { - "pk": 5118, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROUVES", - "center": "POINT (883571.3411311822710559 2440769.7718895496800542)", - "surface": 3660000, - "canton": null, - "numero_insee": "54464" - } - }, - { - "pk": 37416, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROVILLE-DEVANT-BAYON", - "center": "POINT (892591.6967887755017728 2392714.1344585772603750)", - "surface": 4460000, - "canton": null, - "numero_insee": "54465" - } - }, - { - "pk": 21695, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROYAUMEIX", - "center": "POINT (856176.9872912977589294 2426324.2676569395698607)", - "surface": 21800000, - "canton": null, - "numero_insee": "54466" - } - }, - { - "pk": 25865, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "ROZELIEURES", - "center": "POINT (902814.6367031923728064 2390900.9957671854645014)", - "surface": 9480000, - "canton": null, - "numero_insee": "54467" - } - }, - { - "pk": 29565, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAFFAIS", - "center": "POINT (893703.5527957739541307 2403031.0388360600918531)", - "surface": 4060000, - "canton": null, - "numero_insee": "54468" - } - }, - { - "pk": 35898, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-AIL", - "center": "POINT (867311.9512498708209023 2469648.9505063141696155)", - "surface": 7370000, - "canton": null, - "numero_insee": "54469" - } - }, - { - "pk": 35185, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-BAUSSANT", - "center": "POINT (853774.0834705828456208 2438111.6458012862131000)", - "surface": 9070000, - "canton": null, - "numero_insee": "54470" - } - }, - { - "pk": 32411, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-BOINGT", - "center": "POINT (902841.4179484157357365 2387799.0035743718035519)", - "surface": 8210000, - "canton": null, - "numero_insee": "54471" - } - }, - { - "pk": 19405, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-CLEMENT", - "center": "POINT (916425.6792828589677811 2402326.6281373221427202)", - "surface": 16390000, - "canton": null, - "numero_insee": "54472" - } - }, - { - "pk": 6331, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-FIRMIN", - "center": "POINT (881129.1767335317563266 2387411.5938473679125309)", - "surface": 6690000, - "canton": null, - "numero_insee": "54473" - } - }, - { - "pk": 24817, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINTE-GENEVIEVE", - "center": "POINT (878801.2182322121225297 2436926.0895215081982315)", - "surface": 7340000, - "canton": null, - "numero_insee": "54474" - } - }, - { - "pk": 6953, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-GERMAIN", - "center": "POINT (896534.7719729600939900 2388044.7862590770237148)", - "surface": 7530000, - "canton": null, - "numero_insee": "54475" - } - }, - { - "pk": 14231, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-JEAN-LES-LONGUYON", - "center": "POINT (828627.1650613623205572 2499936.0620678500272334)", - "surface": 4210000, - "canton": null, - "numero_insee": "54476" - } - }, - { - "pk": 24349, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-JULIEN-LES-GORZE", - "center": "POINT (860954.5324076756369323 2452583.0511081749573350)", - "surface": 10370000, - "canton": null, - "numero_insee": "54477" - } - }, - { - "pk": 11452, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-MARCEL", - "center": "POINT (865456.4962224988266826 2464329.5152644626796246)", - "surface": 11620000, - "canton": null, - "numero_insee": "54478" - } - }, - { - "pk": 32945, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-MARD", - "center": "POINT (892651.1938985807355493 2397417.9951267316937447)", - "surface": 3080000, - "canton": null, - "numero_insee": "54479" - } - }, - { - "pk": 7855, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-MARTIN", - "center": "POINT (925599.4687146332580596 2406108.5819010762497783)", - "surface": 5050000, - "canton": null, - "numero_insee": "54480" - } - }, - { - "pk": 33419, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-MAURICE-AUX-FORGES", - "center": "POINT (933464.1652655599173158 2399271.7681085770018399)", - "surface": 3310000, - "canton": null, - "numero_insee": "54481" - } - }, - { - "pk": 13068, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-MAX", - "center": "POINT (884761.7137096931692213 2418764.9798976457677782)", - "surface": 1840000, - "canton": null, - "numero_insee": "54482" - } - }, - { - "pk": 28140, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-NICOLAS-DE-PORT", - "center": "POINT (891842.8624536327552050 2409919.8399598659016192)", - "surface": 8340000, - "canton": null, - "numero_insee": "54483" - } - }, - { - "pk": 25284, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINTE-POLE", - "center": "POINT (931964.9440442627528682 2399058.6461904263123870)", - "surface": 5760000, - "canton": null, - "numero_insee": "54484" - } - }, - { - "pk": 11592, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-PANCRE", - "center": "POINT (839162.5658561218297109 2508231.5868524191901088)", - "surface": 6200000, - "canton": null, - "numero_insee": "54485" - } - }, - { - "pk": 29884, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-REMIMONT", - "center": "POINT (889460.3765442615840584 2396089.5517743802629411)", - "surface": 6730000, - "canton": null, - "numero_insee": "54486" - } - }, - { - "pk": 23190, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-REMY-AUX-BOIS", - "center": "POINT (900443.3276421071495861 2387378.0145073896273971)", - "surface": 9590000, - "canton": null, - "numero_insee": "54487" - } - }, - { - "pk": 27454, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAINT-SUPPLET", - "center": "POINT (846508.3496462581679225 2491784.3541277628391981)", - "surface": 7360000, - "canton": null, - "numero_insee": "54489" - } - }, - { - "pk": 12120, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAIZERAIS", - "center": "POINT (872174.7164929462596774 2427862.8762979554012418)", - "surface": 14380000, - "canton": null, - "numero_insee": "54490" - } - }, - { - "pk": 6491, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SANCY", - "center": "POINT (861035.3966314641293138 2489707.8652860419824719)", - "surface": 13380000, - "canton": null, - "numero_insee": "54491" - } - }, - { - "pk": 4157, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SANZEY", - "center": "POINT (856496.0982082313857973 2424125.5006877942942083)", - "surface": 3530000, - "canton": null, - "numero_insee": "54492" - } - }, - { - "pk": 38015, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAULNES", - "center": "POINT (852763.1043183184228837 2509148.9445189759135246)", - "surface": 4010000, - "canton": null, - "numero_insee": "54493" - } - }, - { - "pk": 13530, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAULXEROTTE", - "center": "POINT (865878.9324051190633327 2391983.6473451759666204)", - "surface": 3130000, - "canton": null, - "numero_insee": "54494" - } - }, - { - "pk": 31113, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAULXURES-LES-NANCY", - "center": "POINT (888381.1981743202777579 2416794.7984637524932623)", - "surface": 7250000, - "canton": null, - "numero_insee": "54495" - } - }, - { - "pk": 24820, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAULXURES-LES-VANNES", - "center": "POINT (855831.2499047217424959 2396700.6471242280676961)", - "surface": 18300000, - "canton": null, - "numero_insee": "54496" - } - }, - { - "pk": 12568, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SAXON-SION", - "center": "POINT (877535.4793902563396841 2386379.9165212465450168)", - "surface": 6250000, - "canton": null, - "numero_insee": "54497" - } - }, - { - "pk": 4801, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SEICHAMPS", - "center": "POINT (889552.6022166451439261 2420207.2580173411406577)", - "surface": 4290000, - "canton": null, - "numero_insee": "54498" - } - }, - { - "pk": 36802, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SEICHEPREY", - "center": "POINT (853795.5872532639186829 2435610.1374634155072272)", - "surface": 8500000, - "canton": null, - "numero_insee": "54499" - } - }, - { - "pk": 4466, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SELAINCOURT", - "center": "POINT (866556.1316849447321147 2394691.3980273944325745)", - "surface": 11110000, - "canton": null, - "numero_insee": "54500" - } - }, - { - "pk": 35055, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SERANVILLE", - "center": "POINT (909103.9829210930038244 2392656.5277078421786427)", - "surface": 5350000, - "canton": null, - "numero_insee": "54501" - } - }, - { - "pk": 36528, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SERRES", - "center": "POINT (903079.0877361804014072 2418222.5302362176589668)", - "surface": 15780000, - "canton": null, - "numero_insee": "54502" - } - }, - { - "pk": 28691, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SERROUVILLE", - "center": "POINT (857193.6780459440778941 2494277.7297033327631652)", - "surface": 15590000, - "canton": null, - "numero_insee": "54504" - } - }, - { - "pk": 30415, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SEXEY-AUX-FORGES", - "center": "POINT (871725.1171081748325378 2410346.8915925188921392)", - "surface": 14440000, - "canton": null, - "numero_insee": "54505" - } - }, - { - "pk": 30357, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SEXEY-LES-BOIS", - "center": "POINT (871844.2579276107717305 2419754.4543850342743099)", - "surface": 6860000, - "canton": null, - "numero_insee": "54506" - } - }, - { - "pk": 28038, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SIONVILLER", - "center": "POINT (910338.0196204653475434 2411980.8396552051417530)", - "surface": 6870000, - "canton": null, - "numero_insee": "54507" - } - }, - { - "pk": 10707, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SIVRY", - "center": "POINT (884141.5102258448023349 2432669.1895956560038030)", - "surface": 5850000, - "canton": null, - "numero_insee": "54508" - } - }, - { - "pk": 33307, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SOMMERVILLER", - "center": "POINT (897630.9490206094924361 2411771.0392040503211319)", - "surface": 3850000, - "canton": null, - "numero_insee": "54509" - } - }, - { - "pk": 26001, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SORNEVILLE", - "center": "POINT (900030.5837828905787319 2423599.9473789869807661)", - "surface": 9230000, - "canton": null, - "numero_insee": "54510" - } - }, - { - "pk": 23797, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "SPONVILLE", - "center": "POINT (855399.6625889412825927 2458539.2514892709441483)", - "surface": 7250000, - "canton": null, - "numero_insee": "54511" - } - }, - { - "pk": 6384, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TANCONVILLE", - "center": "POINT (939470.0872814438771456 2410631.7684797332622111)", - "surface": 4200000, - "canton": null, - "numero_insee": "54512" - } - }, - { - "pk": 32284, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TANTONVILLE", - "center": "POINT (880988.5897863113787025 2392113.7472779923118651)", - "surface": 8130000, - "canton": null, - "numero_insee": "54513" - } - }, - { - "pk": 11481, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TELLANCOURT", - "center": "POINT (838679.4755504649365321 2506226.1984951379708946)", - "surface": 3770000, - "canton": null, - "numero_insee": "54514" - } - }, - { - "pk": 16144, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THELOD", - "center": "POINT (874212.7858022858854383 2400361.2797874491661787)", - "surface": 10840000, - "canton": null, - "numero_insee": "54515" - } - }, - { - "pk": 34141, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THEY-SOUS-VAUDEMONT", - "center": "POINT (875046.7944840046111494 2384857.4044671398587525)", - "surface": 1650000, - "canton": null, - "numero_insee": "54516" - } - }, - { - "pk": 9416, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THEZEY-SAINT-MARTIN", - "center": "POINT (890773.0800681915134192 2441132.0761898625642061)", - "surface": 8000000, - "canton": null, - "numero_insee": "54517" - } - }, - { - "pk": 15659, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THIAUCOURT-REGNIEVILLE", - "center": "POINT (859421.5769002557499334 2444664.5865952135063708)", - "surface": 19200000, - "canton": null, - "numero_insee": "54518" - } - }, - { - "pk": 25563, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THIAVILLE-SUR-MEURTHE", - "center": "POINT (930659.3278126642107964 2388039.4760852311737835)", - "surface": 4550000, - "canton": null, - "numero_insee": "54519" - } - }, - { - "pk": 12567, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THIEBAUMENIL", - "center": "POINT (916690.4014927333919331 2406431.8111777426674962)", - "surface": 3810000, - "canton": null, - "numero_insee": "54520" - } - }, - { - "pk": 13011, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THIL", - "center": "POINT (858818.0203109473222867 2503197.2889980254694819)", - "surface": 3300000, - "canton": null, - "numero_insee": "54521" - } - }, - { - "pk": 7127, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THOREY-LYAUTEY", - "center": "POINT (873307.7885910484474152 2389245.5883828089572489)", - "surface": 6230000, - "canton": null, - "numero_insee": "54522" - } - }, - { - "pk": 13665, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THUILLEY-AUX-GROSEILLES", - "center": "POINT (868280.6316507849842310 2403612.5389287080615759)", - "surface": 9220000, - "canton": null, - "numero_insee": "54523" - } - }, - { - "pk": 26778, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "THUMEREVILLE", - "center": "POINT (852875.2530874272342771 2472826.9027214259840548)", - "surface": 8010000, - "canton": null, - "numero_insee": "54524" - } - }, - { - "pk": 7174, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TIERCELET", - "center": "POINT (857230.0493174223229289 2501682.6921219406649470)", - "surface": 7720000, - "canton": null, - "numero_insee": "54525" - } - }, - { - "pk": 14910, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TOMBLAINE", - "center": "POINT (885979.7094067640136927 2416774.0922948899678886)", - "surface": 5530000, - "canton": null, - "numero_insee": "54526" - } - }, - { - "pk": 9853, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TONNOY", - "center": "POINT (889506.9411328113637865 2402294.3479468980804086)", - "surface": 12390000, - "canton": null, - "numero_insee": "54527" - } - }, - { - "pk": 23867, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TOUL", - "center": "POINT (861972.5759328595595434 2415666.7250725445337594)", - "surface": 30950000, - "canton": null, - "numero_insee": "54528" - } - }, - { - "pk": 7914, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TRAMONT-EMY", - "center": "POINT (867335.7986718781758100 2385491.5288277678191662)", - "surface": 3970000, - "canton": null, - "numero_insee": "54529" - } - }, - { - "pk": 35297, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TRAMONT-LASSUS", - "center": "POINT (868748.7578549216268584 2384102.6815544464625418)", - "surface": 5720000, - "canton": null, - "numero_insee": "54530" - } - }, - { - "pk": 3846, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TRAMONT-SAINT-ANDRE", - "center": "POINT (865734.7673683222383261 2385477.7524583949707448)", - "surface": 7010000, - "canton": null, - "numero_insee": "54531" - } - }, - { - "pk": 11582, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TREMBLECOURT", - "center": "POINT (865061.7684785861056298 2428802.3337041079066694)", - "surface": 6030000, - "canton": null, - "numero_insee": "54532" - } - }, - { - "pk": 30948, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TRONDES", - "center": "POINT (852734.1879899676423520 2419389.9215194848366082)", - "surface": 12470000, - "canton": null, - "numero_insee": "54534" - } - }, - { - "pk": 13855, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TRONVILLE", - "center": "POINT (861793.0831181012326851 2459795.0325032346881926)", - "surface": 6960000, - "canton": null, - "numero_insee": "54535" - } - }, - { - "pk": 21074, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "TUCQUEGNIEUX", - "center": "POINT (858777.1407579019432887 2484685.2518522827886045)", - "surface": 9180000, - "canton": null, - "numero_insee": "54536" - } - }, - { - "pk": 35276, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "UGNY", - "center": "POINT (844523.9092065222794190 2501473.4049984174780548)", - "surface": 9100000, - "canton": null, - "numero_insee": "54537" - } - }, - { - "pk": 12266, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "URUFFE", - "center": "POINT (851682.2112733667017892 2402068.8044670429080725)", - "surface": 12950000, - "canton": null, - "numero_insee": "54538" - } - }, - { - "pk": 3506, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VACQUEVILLE", - "center": "POINT (931187.8223705532727763 2396349.9964311742223799)", - "surface": 10090000, - "canton": null, - "numero_insee": "54539" - } - }, - { - "pk": 10298, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VAL-ET-CHATILLON", - "center": "POINT (944720.1826480189338326 2405273.4591262754984200)", - "surface": 18230000, - "canton": null, - "numero_insee": "54540" - } - }, - { - "pk": 32992, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VALHEY", - "center": "POINT (906087.8610711293295026 2417447.9585701483301818)", - "surface": 6170000, - "canton": null, - "numero_insee": "54541" - } - }, - { - "pk": 15977, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VALLEROY", - "center": "POINT (861167.1089877188205719 2474399.1861677360720932)", - "surface": 12290000, - "canton": null, - "numero_insee": "54542" - } - }, - { - "pk": 8818, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VALLOIS", - "center": "POINT (911203.5982601547148079 2392874.8103120983578265)", - "surface": 7380000, - "canton": null, - "numero_insee": "54543" - } - }, - { - "pk": 30358, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VANDELAINVILLE", - "center": "POINT (866544.9236439703963697 2454132.1524495892226696)", - "surface": 1380000, - "canton": null, - "numero_insee": "54544" - } - }, - { - "pk": 36485, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VANDELEVILLE", - "center": "POINT (870425.7383036699611694 2386919.1280812709592283)", - "surface": 10000000, - "canton": null, - "numero_insee": "54545" - } - }, - { - "pk": 4789, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VANDIERES", - "center": "POINT (869814.0059044994413853 2446355.0897314064204693)", - "surface": 12720000, - "canton": null, - "numero_insee": "54546" - } - }, - { - "pk": 8272, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VANDOEUVRE-LES-NANCY", - "center": "POINT (882005.6856183370109648 2413437.5411775182001293)", - "surface": 9350000, - "canton": null, - "numero_insee": "54547" - } - }, - { - "pk": 32605, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VANNES-LE-CHATEL", - "center": "POINT (854480.5376850136090070 2402493.1368690114468336)", - "surface": 17470000, - "canton": null, - "numero_insee": "54548" - } - }, - { - "pk": 4480, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VARANGEVILLE", - "center": "POINT (893624.9976167471613735 2412136.7524285991676152)", - "surface": 12050000, - "canton": null, - "numero_insee": "54549" - } - }, - { - "pk": 20007, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VATHIMENIL", - "center": "POINT (916061.7560259834863245 2398120.5032718554139137)", - "surface": 12180000, - "canton": null, - "numero_insee": "54550" - } - }, - { - "pk": 10780, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VAUCOURT", - "center": "POINT (920307.9239032124169171 2416269.9567794287577271)", - "surface": 6250000, - "canton": null, - "numero_insee": "54551" - } - }, - { - "pk": 8669, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VAUDEMONT", - "center": "POINT (875430.6797454291954637 2386762.0760219134390354)", - "surface": 5770000, - "canton": null, - "numero_insee": "54552" - } - }, - { - "pk": 15468, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VAUDEVILLE", - "center": "POINT (886301.4694048578385264 2391058.7500615194439888)", - "surface": 9110000, - "canton": null, - "numero_insee": "54553" - } - }, - { - "pk": 28195, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VAUDIGNY", - "center": "POINT (886217.7946623221505433 2389156.6685971729457378)", - "surface": 4000000, - "canton": null, - "numero_insee": "54554" - } - }, - { - "pk": 12167, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VAXAINVILLE", - "center": "POINT (926349.2617692279163748 2400411.0376763558015227)", - "surface": 3590000, - "canton": null, - "numero_insee": "54555" - } - }, - { - "pk": 33418, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VEHO", - "center": "POINT (922368.0245410399511456 2409483.0186932086944580)", - "surface": 7710000, - "canton": null, - "numero_insee": "54556" - } - }, - { - "pk": 36700, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VELAINE-EN-HAYE", - "center": "POINT (873164.0168806109577417 2417564.2946306578814983)", - "surface": 18150000, - "canton": null, - "numero_insee": "54557" - } - }, - { - "pk": 10335, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VELAINE-SOUS-AMANCE", - "center": "POINT (893453.2847792473621666 2420441.0429432885721326)", - "surface": 6470000, - "canton": null, - "numero_insee": "54558" - } - }, - { - "pk": 3661, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VELLE-SUR-MOSELLE", - "center": "POINT (891630.7077798614045605 2399710.8246563817374408)", - "surface": 4460000, - "canton": null, - "numero_insee": "54559" - } - }, - { - "pk": 7792, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VENEY", - "center": "POINT (931007.6165451144333929 2394046.7943707001395524)", - "surface": 3490000, - "canton": null, - "numero_insee": "54560" - } - }, - { - "pk": 6385, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VENNEZEY", - "center": "POINT (905119.5683685241965577 2390520.6112591805867851)", - "surface": 3440000, - "canton": null, - "numero_insee": "54561" - } - }, - { - "pk": 5149, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VERDENAL", - "center": "POINT (929485.4707248806953430 2408043.5492949113249779)", - "surface": 6530000, - "canton": null, - "numero_insee": "54562" - } - }, - { - "pk": 11785, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VEZELISE", - "center": "POINT (877672.6879340717568994 2393686.3218514942564070)", - "surface": 5360000, - "canton": null, - "numero_insee": "54563" - } - }, - { - "pk": 23055, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VIEVILLE-EN-HAYE", - "center": "POINT (862431.1164511060342193 2443789.8710078396834433)", - "surface": 8570000, - "canton": null, - "numero_insee": "54564" - } - }, - { - "pk": 11702, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VIGNEULLES", - "center": "POINT (895694.4550710860639811 2404249.0623391149565578)", - "surface": 5640000, - "canton": null, - "numero_insee": "54565" - } - }, - { - "pk": 38064, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILCEY-SUR-TREY", - "center": "POINT (865331.1285927328281105 2444014.9589827954769135)", - "surface": 13530000, - "canton": null, - "numero_insee": "54566" - } - }, - { - "pk": 15444, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLACOURT", - "center": "POINT (895818.7811753103742376 2389839.8995257569476962)", - "surface": 14190000, - "canton": null, - "numero_insee": "54567" - } - }, - { - "pk": 8196, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLE-AU-MONTOIS", - "center": "POINT (851469.8589009426068515 2496630.0243956889025867)", - "surface": 12280000, - "canton": null, - "numero_insee": "54568" - } - }, - { - "pk": 12851, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLE-AU-VAL", - "center": "POINT (878429.4264498730190098 2433620.6434314274229109)", - "surface": 5720000, - "canton": null, - "numero_insee": "54569" - } - }, - { - "pk": 7387, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLECEY-SUR-MAD", - "center": "POINT (864179.6711049048462883 2449909.0011528753675520)", - "surface": 7390000, - "canton": null, - "numero_insee": "54570" - } - }, - { - "pk": 19648, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLE-EN-VERMOIS", - "center": "POINT (888044.7981092731934041 2409386.7346439030952752)", - "surface": 10370000, - "canton": null, - "numero_insee": "54571" - } - }, - { - "pk": 24362, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLE-HOUDLEMONT", - "center": "POINT (840451.2452242770232260 2509643.5196387362666428)", - "surface": 6040000, - "canton": null, - "numero_insee": "54572" - } - }, - { - "pk": 28491, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERS-EN-HAYE", - "center": "POINT (869546.4247909865807742 2430942.3677604007534683)", - "surface": 7360000, - "canton": null, - "numero_insee": "54573" - } - }, - { - "pk": 21984, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERS-LA-CHEVRE", - "center": "POINT (842983.5472368923947215 2506063.0386879844591022)", - "surface": 4020000, - "canton": null, - "numero_insee": "54574" - } - }, - { - "pk": 3773, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERS-LA-MONTAGNE", - "center": "POINT (853420.2118524538818747 2502550.4906175476498902)", - "surface": 18190000, - "canton": null, - "numero_insee": "54575" - } - }, - { - "pk": 33125, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERS-LE-ROND", - "center": "POINT (828114.8735645498381928 2501332.5426608477719128)", - "surface": 4450000, - "canton": null, - "numero_insee": "54576" - } - }, - { - "pk": 26921, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERS-LES-MOIVRONS", - "center": "POINT (887457.3205199914518744 2431096.6853104960173368)", - "surface": 2840000, - "canton": null, - "numero_insee": "54577" - } - }, - { - "pk": 9948, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERS-LES-NANCY", - "center": "POINT (879301.4177233895752579 2413714.4478461774997413)", - "surface": 10000000, - "canton": null, - "numero_insee": "54578" - } - }, - { - "pk": 36483, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERS-SOUS-PRENY", - "center": "POINT (868028.4364890872966498 2444538.5103642661124468)", - "surface": 6270000, - "canton": null, - "numero_insee": "54579" - } - }, - { - "pk": 11591, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLERUPT", - "center": "POINT (860326.5932573254685849 2502309.7055550883524120)", - "surface": 6470000, - "canton": null, - "numero_insee": "54580" - } - }, - { - "pk": 7597, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLE-SUR-YRON", - "center": "POINT (858155.6932067190064117 2463866.4390559848397970)", - "surface": 11260000, - "canton": null, - "numero_insee": "54581" - } - }, - { - "pk": 8260, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLETTE", - "center": "POINT (833306.5752114999340847 2502677.8982633189298213)", - "surface": 4650000, - "canton": null, - "numero_insee": "54582" - } - }, - { - "pk": 34938, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLEY-LE-SEC", - "center": "POINT (868102.1979953835252672 2412717.3799940021708608)", - "surface": 6400000, - "canton": null, - "numero_insee": "54583" - } - }, - { - "pk": 34889, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VILLEY-SAINT-ETIENNE", - "center": "POINT (866834.2816137194167823 2420511.8808022513985634)", - "surface": 17420000, - "canton": null, - "numero_insee": "54584" - } - }, - { - "pk": 31010, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VIRECOURT", - "center": "POINT (894404.0704230648698285 2391428.8394697811454535)", - "surface": 5070000, - "canton": null, - "numero_insee": "54585" - } - }, - { - "pk": 32584, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VITERNE", - "center": "POINT (871170.3991627013310790 2405038.3991230032406747)", - "surface": 23350000, - "canton": null, - "numero_insee": "54586" - } - }, - { - "pk": 7014, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VITREY", - "center": "POINT (873860.7843015720136464 2394754.2759122895076871)", - "surface": 11680000, - "canton": null, - "numero_insee": "54587" - } - }, - { - "pk": 37587, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VITRIMONT", - "center": "POINT (902776.4697191123850644 2406912.0206805034540594)", - "surface": 11860000, - "canton": null, - "numero_insee": "54588" - } - }, - { - "pk": 4056, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VITTONVILLE", - "center": "POINT (872603.6116664439905435 2447780.0477468776516616)", - "surface": 3990000, - "canton": null, - "numero_insee": "54589" - } - }, - { - "pk": 12949, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VIVIERS-SUR-CHIERS", - "center": "POINT (838920.8233012758428231 2501425.2811852633021772)", - "surface": 16140000, - "canton": null, - "numero_insee": "54590" - } - }, - { - "pk": 13664, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VOINEMONT", - "center": "POINT (883441.0327484935987741 2397838.9385069631971419)", - "surface": 4140000, - "canton": null, - "numero_insee": "54591" - } - }, - { - "pk": 6157, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "VRONCOURT", - "center": "POINT (876595.2553967266576365 2390975.1145773115567863)", - "surface": 4180000, - "canton": null, - "numero_insee": "54592" - } - }, - { - "pk": 20947, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "WAVILLE", - "center": "POINT (863361.1164626162499189 2452003.3571290094405413)", - "surface": 11360000, - "canton": null, - "numero_insee": "54593" - } - }, - { - "pk": 34829, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XAMMES", - "center": "POINT (857191.8681646354962140 2447947.6212117061950266)", - "surface": 8300000, - "canton": null, - "numero_insee": "54594" - } - }, - { - "pk": 5004, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XERMAMENIL", - "center": "POINT (905626.6242787041701376 2401332.6812101462855935)", - "surface": 10760000, - "canton": null, - "numero_insee": "54595" - } - }, - { - "pk": 25962, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XEUILLEY", - "center": "POINT (877096.5214768068399280 2402487.5994121544063091)", - "surface": 7420000, - "canton": null, - "numero_insee": "54596" - } - }, - { - "pk": 17691, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XIROCOURT", - "center": "POINT (884022.4187219568993896 2388437.2437127656303346)", - "surface": 11530000, - "canton": null, - "numero_insee": "54597" - } - }, - { - "pk": 9491, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XIVRY-CIRCOURT", - "center": "POINT (849227.9175482623977587 2489706.3935596719384193)", - "surface": 12380000, - "canton": null, - "numero_insee": "54598" - } - }, - { - "pk": 12390, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XONVILLE", - "center": "POINT (857317.1253413796657696 2456654.4844492217525840)", - "surface": 7270000, - "canton": null, - "numero_insee": "54599" - } - }, - { - "pk": 8398, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XOUSSE", - "center": "POINT (922020.2329384353943169 2414983.8604376590810716)", - "surface": 6190000, - "canton": null, - "numero_insee": "54600" - } - }, - { - "pk": 32868, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "XURES", - "center": "POINT (918084.0601414636475965 2418852.5340705793350935)", - "surface": 6980000, - "canton": null, - "numero_insee": "54601" - } - }, - { - "pk": 12020, - "model": "ishtar_common.town", - "fields": { - "departement": 55, - "name": "HAN-DEVANT-PIERREPONT", - "center": "POINT (845088.6557879191823304 2493973.5467159184627235)", - "surface": 5060000, - "canton": null, - "numero_insee": "54602" - } - }, - { - "pk": 16517, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ABAINVILLE", - "center": "POINT (834710.9796407957328483 2397319.8285033968277276)", - "surface": 13600000, - "canton": null, - "numero_insee": "55001" - } - }, - { - "pk": 34315, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AINCREVILLE", - "center": "POINT (802001.4706122252391651 2489301.4070120146498084)", - "surface": 9100000, - "canton": null, - "numero_insee": "55004" - } - }, - { - "pk": 33786, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AMANTY", - "center": "POINT (841329.7705528052756563 2395675.4290058449842036)", - "surface": 11180000, - "canton": null, - "numero_insee": "55005" - } - }, - { - "pk": 26569, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AMBLY-SUR-MEUSE", - "center": "POINT (827941.0495129359187558 2451599.0209103580564260)", - "surface": 6380000, - "canton": null, - "numero_insee": "55007" - } - }, - { - "pk": 30492, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AMEL-SUR-L'ETANG", - "center": "POINT (841120.4160447531612590 2478329.5202400432899594)", - "surface": 15320000, - "canton": null, - "numero_insee": "55008" - } - }, - { - "pk": 4048, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ANCEMONT", - "center": "POINT (822698.5228204916929826 2456157.1186873461119831)", - "surface": 13270000, - "canton": null, - "numero_insee": "55009" - } - }, - { - "pk": 30637, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ANCERVILLE", - "center": "POINT (797994.5101657814811915 2407913.0005613840185106)", - "surface": 21390000, - "canton": null, - "numero_insee": "55010" - } - }, - { - "pk": 14035, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ANDERNAY", - "center": "POINT (792255.0335514304460958 2423774.9353954545222223)", - "surface": 4310000, - "canton": null, - "numero_insee": "55011" - } - }, - { - "pk": 18395, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "APREMONT-LA-FORET", - "center": "POINT (841115.4061768667306751 2432299.0259398748166859)", - "surface": 32850000, - "canton": null, - "numero_insee": "55012" - } - }, - { - "pk": 16807, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ARRANCY-SUR-CRUSNE", - "center": "POINT (840672.4563271597726271 2495536.6222268333658576)", - "surface": 20130000, - "canton": null, - "numero_insee": "55013" - } - }, - { - "pk": 16566, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AUBREVILLE", - "center": "POINT (801204.6431916065048426 2465479.2909321398474276)", - "surface": 28970000, - "canton": null, - "numero_insee": "55014" - } - }, - { - "pk": 6325, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AULNOIS-EN-PERTHOIS", - "center": "POINT (805602.6863712712656707 2407577.8015002412721515)", - "surface": 10770000, - "canton": null, - "numero_insee": "55015" - } - }, - { - "pk": 33948, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AUTRECOURT-SUR-AIRE", - "center": "POINT (805024.9542380457278341 2451702.8991494062356651)", - "surface": 10950000, - "canton": null, - "numero_insee": "55017" - } - }, - { - "pk": 30925, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AUTREVILLE-SAINT-LAMBERT", - "center": "POINT (802517.7823637352557853 2510819.2524182233028114)", - "surface": 3970000, - "canton": null, - "numero_insee": "55018" - } - }, - { - "pk": 11227, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AVILLERS-SAINTE-CROIX", - "center": "POINT (846235.5329326506471261 2453657.3129757833667099)", - "surface": 5460000, - "canton": null, - "numero_insee": "55021" - } - }, - { - "pk": 35275, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AVIOTH", - "center": "POINT (821019.2449700337601826 2511978.3309673648327589)", - "surface": 6490000, - "canton": null, - "numero_insee": "55022" - } - }, - { - "pk": 37398, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AVOCOURT", - "center": "POINT (804560.3731414712965488 2470911.5155585068278015)", - "surface": 14720000, - "canton": null, - "numero_insee": "55023" - } - }, - { - "pk": 33116, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "AZANNES-ET-SOUMAZANNES", - "center": "POINT (827882.0029902916867286 2481818.2150440230034292)", - "surface": 18480000, - "canton": null, - "numero_insee": "55024" - } - }, - { - "pk": 25008, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAALON", - "center": "POINT (811796.4713719505816698 2502293.3601116957142949)", - "surface": 14710000, - "canton": null, - "numero_insee": "55025" - } - }, - { - "pk": 17871, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BADONVILLIERS-GERAUVILLIERS", - "center": "POINT (839301.0143315859604627 2398860.2800329569727182)", - "surface": 21100000, - "canton": null, - "numero_insee": "55026" - } - }, - { - "pk": 36421, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BANTHEVILLE", - "center": "POINT (798915.9962674902053550 2487373.8060029507614672)", - "surface": 14410000, - "canton": null, - "numero_insee": "55028" - } - }, - { - "pk": 17615, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAR-LE-DUC", - "center": "POINT (807880.0040276726940647 2422107.3406747025437653)", - "surface": 23690000, - "canton": null, - "numero_insee": "55029" - } - }, - { - "pk": 29070, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAUDIGNECOURT", - "center": "POINT (830378.2154738883255050 2400785.1342101492919028)", - "surface": 6220000, - "canton": null, - "numero_insee": "55030" - } - }, - { - "pk": 13568, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAUDONVILLIERS", - "center": "POINT (796547.4366870052181184 2413304.3865034310147166)", - "surface": 3020000, - "canton": null, - "numero_insee": "55031" - } - }, - { - "pk": 25965, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAUDREMONT", - "center": "POINT (824416.4292243275558576 2430854.8744133943691850)", - "surface": 6690000, - "canton": null, - "numero_insee": "55032" - } - }, - { - "pk": 29126, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAULNY", - "center": "POINT (795697.9914101787144318 2477540.0263133388943970)", - "surface": 3930000, - "canton": null, - "numero_insee": "55033" - } - }, - { - "pk": 32702, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAZEILLES-SUR-OTHAIN", - "center": "POINT (823983.4459933247417212 2504699.2289784173481166)", - "surface": 7700000, - "canton": null, - "numero_insee": "55034" - } - }, - { - "pk": 35173, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BAZINCOURT-SUR-SAULX", - "center": "POINT (806452.7268581833923236 2413489.1849262937903404)", - "surface": 10240000, - "canton": null, - "numero_insee": "55035" - } - }, - { - "pk": 28837, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEAUCLAIR", - "center": "POINT (801722.5968903600005433 2498504.8122101621702313)", - "surface": 4880000, - "canton": null, - "numero_insee": "55036" - } - }, - { - "pk": 6591, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEAUFORT-EN-ARGONNE", - "center": "POINT (800896.4734144164249301 2501499.6174567956477404)", - "surface": 10970000, - "canton": null, - "numero_insee": "55037" - } - }, - { - "pk": 21568, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEAULIEU-EN-ARGONNE", - "center": "POINT (797710.3773119477555156 2452841.1196197839453816)", - "surface": 29490000, - "canton": null, - "numero_insee": "55038" - } - }, - { - "pk": 37987, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEAUMONT-EN-VERDUNOIS", - "center": "POINT (823810.5629652454517782 2478180.9915091032162309)", - "surface": 7830000, - "canton": null, - "numero_insee": "55039" - } - }, - { - "pk": 3070, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEAUSITE", - "center": "POINT (810587.3144655714277178 2444845.9141968563199043)", - "surface": 25430000, - "canton": null, - "numero_insee": "55040" - } - }, - { - "pk": 37419, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEHONNE", - "center": "POINT (808547.8865393425803632 2425915.6635580426082015)", - "surface": 9180000, - "canton": null, - "numero_insee": "55041" - } - }, - { - "pk": 32654, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BELLERAY", - "center": "POINT (822234.8194155177334324 2463558.0103652123361826)", - "surface": 5100000, - "canton": null, - "numero_insee": "55042" - } - }, - { - "pk": 8654, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BELLEVILLE-SUR-MEUSE", - "center": "POINT (823189.0807327226502821 2468969.7141768215224147)", - "surface": 10160000, - "canton": null, - "numero_insee": "55043" - } - }, - { - "pk": 14197, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BELRAIN", - "center": "POINT (817988.5385203497717157 2433601.6896139718592167)", - "surface": 8290000, - "canton": null, - "numero_insee": "55044" - } - }, - { - "pk": 34834, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BELRUPT-EN-VERDUNOIS", - "center": "POINT (827221.4214575671358034 2465502.0077570802532136)", - "surface": 9360000, - "canton": null, - "numero_insee": "55045" - } - }, - { - "pk": 32848, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BENEY-EN-WOEVRE", - "center": "POINT (854207.2888859173981473 2445920.6205988046713173)", - "surface": 17460000, - "canton": null, - "numero_insee": "55046" - } - }, - { - "pk": 10199, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BETHELAINVILLE", - "center": "POINT (811295.9271353746298701 2467266.7718934910371900)", - "surface": 12000000, - "canton": null, - "numero_insee": "55047" - } - }, - { - "pk": 29754, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BETHINCOURT", - "center": "POINT (810317.4425544734112918 2476364.2864115284755826)", - "surface": 13230000, - "canton": null, - "numero_insee": "55048" - } - }, - { - "pk": 20423, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEUREY-SUR-SAULX", - "center": "POINT (797983.3383184890262783 2420921.9156018490903080)", - "surface": 11530000, - "canton": null, - "numero_insee": "55049" - } - }, - { - "pk": 14288, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BEZONVAUX", - "center": "POINT (828441.5035508361179382 2474918.5774454423226416)", - "surface": 9250000, - "canton": null, - "numero_insee": "55050" - } - }, - { - "pk": 8348, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BIENCOURT-SUR-ORGE", - "center": "POINT (822070.4021494674962014 2401014.1209297925233841)", - "surface": 12420000, - "canton": null, - "numero_insee": "55051" - } - }, - { - "pk": 16123, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BILLY-SOUS-MANGIENNES", - "center": "POINT (834555.7437409919220954 2485377.7101632691919804)", - "surface": 25250000, - "canton": null, - "numero_insee": "55053" - } - }, - { - "pk": 11442, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BISLEE", - "center": "POINT (832784.6178226550109684 2435229.5618899352848530)", - "surface": 5040000, - "canton": null, - "numero_insee": "55054" - } - }, - { - "pk": 35547, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BLANZEE", - "center": "POINT (833411.2782593097072095 2467156.1517433095723391)", - "surface": 3440000, - "canton": null, - "numero_insee": "55055" - } - }, - { - "pk": 30233, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BOINVILLE-EN-WOEVRE", - "center": "POINT (843587.1001538399141282 2470745.7909599291160703)", - "surface": 5630000, - "canton": null, - "numero_insee": "55057" - } - }, - { - "pk": 11106, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BONCOURT-SUR-MEUSE", - "center": "POINT (838649.1055015969322994 2428175.0564884338527918)", - "surface": 10920000, - "canton": null, - "numero_insee": "55058" - } - }, - { - "pk": 4799, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BONNET", - "center": "POINT (828215.4369254028424621 2396263.4062400241382420)", - "surface": 28920000, - "canton": null, - "numero_insee": "55059" - } - }, - { - "pk": 26896, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BONZEE", - "center": "POINT (835878.7929610182764009 2459472.2816277714446187)", - "surface": 21220000, - "canton": null, - "numero_insee": "55060" - } - }, - { - "pk": 28238, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LE BOUCHON-SUR-SAULX", - "center": "POINT (813229.7187016082461923 2405041.2691653929650784)", - "surface": 5330000, - "canton": null, - "numero_insee": "55061" - } - }, - { - "pk": 34293, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BOUCONVILLE-SUR-MADT", - "center": "POINT (847217.3877348544774577 2432551.5688695665448904)", - "surface": 8560000, - "canton": null, - "numero_insee": "55062" - } - }, - { - "pk": 11800, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BOULIGNY", - "center": "POINT (848090.0118777937022969 2482391.9601069195196033)", - "surface": 11060000, - "canton": null, - "numero_insee": "55063" - } - }, - { - "pk": 28045, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BOUQUEMONT", - "center": "POINT (826679.7499355054460466 2446985.1396258356980979)", - "surface": 7430000, - "canton": null, - "numero_insee": "55064" - } - }, - { - "pk": 15533, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BOUREUILLES", - "center": "POINT (795763.8709860084345564 2469835.6186258508823812)", - "surface": 21450000, - "canton": null, - "numero_insee": "55065" - } - }, - { - "pk": 26344, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BOVEE-SUR-BARBOURE", - "center": "POINT (833910.9514667809708044 2408921.1238703937269747)", - "surface": 13270000, - "canton": null, - "numero_insee": "55066" - } - }, - { - "pk": 6419, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BOVIOLLES", - "center": "POINT (826900.5706676949048415 2409561.4861163692548871)", - "surface": 8200000, - "canton": null, - "numero_insee": "55067" - } - }, - { - "pk": 31851, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRABANT-EN-ARGONNE", - "center": "POINT (804939.3253672117134556 2461708.7618152652867138)", - "surface": 7930000, - "canton": null, - "numero_insee": "55068" - } - }, - { - "pk": 25868, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRABANT-LE-ROI", - "center": "POINT (794089.4788427114253864 2431595.9381726817227900)", - "surface": 11190000, - "canton": null, - "numero_insee": "55069" - } - }, - { - "pk": 37630, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRABANT-SUR-MEUSE", - "center": "POINT (817793.4290233487263322 2479730.4448839174583554)", - "surface": 6870000, - "canton": null, - "numero_insee": "55070" - } - }, - { - "pk": 8653, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRANDEVILLE", - "center": "POINT (815584.2278695999411866 2492319.5345254447311163)", - "surface": 12010000, - "canton": null, - "numero_insee": "55071" - } - }, - { - "pk": 9815, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRAQUIS", - "center": "POINT (840217.7898834727238864 2466914.3812675387598574)", - "surface": 4890000, - "canton": null, - "numero_insee": "55072" - } - }, - { - "pk": 29264, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRAS-SUR-MEUSE", - "center": "POINT (822562.1449385536834598 2472066.3518666271120310)", - "surface": 13840000, - "canton": null, - "numero_insee": "55073" - } - }, - { - "pk": 33914, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRAUVILLIERS", - "center": "POINT (807858.8727331892587245 2401192.6206163302995265)", - "surface": 9120000, - "canton": null, - "numero_insee": "55075" - } - }, - { - "pk": 17595, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BREHEVILLE", - "center": "POINT (817692.2583848059875891 2491537.0913684768602252)", - "surface": 18440000, - "canton": null, - "numero_insee": "55076" - } - }, - { - "pk": 13121, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BREUX", - "center": "POINT (821195.3371455426095054 2514781.5609175316058099)", - "surface": 13050000, - "canton": null, - "numero_insee": "55077" - } - }, - { - "pk": 15970, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRIEULLES-SUR-MEUSE", - "center": "POINT (805742.9374239591415972 2484730.5042109219357371)", - "surface": 24000000, - "canton": null, - "numero_insee": "55078" - } - }, - { - "pk": 36914, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRILLON-EN-BARROIS", - "center": "POINT (803924.6350650978274643 2416569.7002190928906202)", - "surface": 11260000, - "canton": null, - "numero_insee": "55079" - } - }, - { - "pk": 18452, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRIXEY-AUX-CHANOINES", - "center": "POINT (849873.0033729227725416 2391345.6710216528736055)", - "surface": 7680000, - "canton": null, - "numero_insee": "55080" - } - }, - { - "pk": 14217, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BRIZEAUX", - "center": "POINT (799046.2310491900425404 2448749.8217328325845301)", - "surface": 8300000, - "canton": null, - "numero_insee": "55081" - } - }, - { - "pk": 35786, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BROCOURT-EN-ARGONNE", - "center": "POINT (807047.3997898546513170 2460926.2797141480259597)", - "surface": 6710000, - "canton": null, - "numero_insee": "55082" - } - }, - { - "pk": 30380, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BROUENNES", - "center": "POINT (811359.4045605615247041 2506592.2884979303926229)", - "surface": 12180000, - "canton": null, - "numero_insee": "55083" - } - }, - { - "pk": 30562, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BROUSSEY-EN-BLOIS", - "center": "POINT (836914.5442934769671410 2408746.7572230584919453)", - "surface": 11050000, - "canton": null, - "numero_insee": "55084" - } - }, - { - "pk": 33075, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BURE", - "center": "POINT (822428.0474894773215055 2394312.4471348109655082)", - "surface": 18420000, - "canton": null, - "numero_insee": "55087" - } - }, - { - "pk": 12691, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BUREY-EN-VAUX", - "center": "POINT (844688.9660985168302432 2400707.8108445438556373)", - "surface": 6500000, - "canton": null, - "numero_insee": "55088" - } - }, - { - "pk": 37626, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BUREY-LA-COTE", - "center": "POINT (847446.5423384836176410 2394226.8911007321439683)", - "surface": 4260000, - "canton": null, - "numero_insee": "55089" - } - }, - { - "pk": 20370, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BUXIERES-SOUS-LES-COTES", - "center": "POINT (844956.7515564281493425 2439436.8255109079182148)", - "surface": 26750000, - "canton": null, - "numero_insee": "55093" - } - }, - { - "pk": 15411, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "BUZY-DARMONT", - "center": "POINT (845800.4015064613195136 2469363.8931405269540846)", - "surface": 13940000, - "canton": null, - "numero_insee": "55094" - } - }, - { - "pk": 20721, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CESSE", - "center": "POINT (803468.7906345387455076 2504923.7432371987961233)", - "surface": 5300000, - "canton": null, - "numero_insee": "55095" - } - }, - { - "pk": 10104, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAILLON", - "center": "POINT (842214.7445753730135038 2444116.4390266221016645)", - "surface": 11490000, - "canton": null, - "numero_insee": "55096" - } - }, - { - "pk": 30773, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHALAINES", - "center": "POINT (847857.4642846682108939 2404637.7721484219655395)", - "surface": 8430000, - "canton": null, - "numero_insee": "55097" - } - }, - { - "pk": 8508, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAMPNEUVILLE", - "center": "POINT (818033.8395516856107861 2475029.4810057636350393)", - "surface": 11850000, - "canton": null, - "numero_insee": "55099" - } - }, - { - "pk": 7173, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAMPOUGNY", - "center": "POINT (848502.5426476678112522 2399439.6488970578648150)", - "surface": 5870000, - "canton": null, - "numero_insee": "55100" - } - }, - { - "pk": 34943, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHARDOGNE", - "center": "POINT (805219.3266893096733838 2428989.2931705191731453)", - "surface": 12740000, - "canton": null, - "numero_insee": "55101" - } - }, - { - "pk": 33446, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHARNY-SUR-MEUSE", - "center": "POINT (819065.2797535966383293 2471435.9913683501072228)", - "surface": 12620000, - "canton": null, - "numero_insee": "55102" - } - }, - { - "pk": 23114, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHARPENTRY", - "center": "POINT (797006.4327088462887332 2476650.6368495207279921)", - "surface": 4380000, - "canton": null, - "numero_insee": "55103" - } - }, - { - "pk": 31721, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHASSEY-BEAUPRE", - "center": "POINT (829390.7894088397733867 2387567.2897459953092039)", - "surface": 14170000, - "canton": null, - "numero_insee": "55104" - } - }, - { - "pk": 22423, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHATILLON-SOUS-LES-COTES", - "center": "POINT (831830.9558617566945031 2464741.0245465412735939)", - "surface": 10660000, - "canton": null, - "numero_insee": "55105" - } - }, - { - "pk": 23053, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHATTANCOURT", - "center": "POINT (813451.7775732225272804 2472588.6756532709114254)", - "surface": 10250000, - "canton": null, - "numero_insee": "55106" - } - }, - { - "pk": 37161, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAUMONT-DEVANT-DAMVILLERS", - "center": "POINT (825165.8878466163296252 2483496.0088740424253047)", - "surface": 5280000, - "canton": null, - "numero_insee": "55107" - } - }, - { - "pk": 34046, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAUMONT-SUR-AIRE", - "center": "POINT (815029.3613481463398784 2440280.8674397375434637)", - "surface": 9940000, - "canton": null, - "numero_insee": "55108" - } - }, - { - "pk": 24216, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAUVENCY-LE-CHATEAU", - "center": "POINT (815258.9630257993703708 2506925.8779466045089066)", - "surface": 9160000, - "canton": null, - "numero_insee": "55109" - } - }, - { - "pk": 19108, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAUVENCY-SAINT-HUBERT", - "center": "POINT (814443.0973296773154289 2508720.0018588136881590)", - "surface": 10800000, - "canton": null, - "numero_insee": "55110" - } - }, - { - "pk": 33198, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHAUVONCOURT", - "center": "POINT (831866.0478050482925028 2437323.1028127786703408)", - "surface": 10050000, - "canton": null, - "numero_insee": "55111" - } - }, - { - "pk": 32308, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHEPPY", - "center": "POINT (799439.4683636882109568 2472969.0607912330888212)", - "surface": 14840000, - "canton": null, - "numero_insee": "55113" - } - }, - { - "pk": 20361, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHONVILLE-MALAUMONT", - "center": "POINT (831892.1692624003626406 2422613.3027090765535831)", - "surface": 18750000, - "canton": null, - "numero_insee": "55114" - } - }, - { - "pk": 10446, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CIERGES-SOUS-MONTFAUCON", - "center": "POINT (800567.3978776347357780 2481484.1740678502246737)", - "surface": 9330000, - "canton": null, - "numero_insee": "55115" - } - }, - { - "pk": 21046, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LE CLAON", - "center": "POINT (793712.2757227253168821 2464014.3018896807916462)", - "surface": 7260000, - "canton": null, - "numero_insee": "55116" - } - }, - { - "pk": 22109, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CLERMONT-EN-ARGONNE", - "center": "POINT (800449.5444653813028708 2460169.3624754180200398)", - "surface": 67190000, - "canton": null, - "numero_insee": "55117" - } - }, - { - "pk": 37783, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CLERY-LE-GRAND", - "center": "POINT (804012.0095686939312145 2488217.9144624350592494)", - "surface": 7220000, - "canton": null, - "numero_insee": "55118" - } - }, - { - "pk": 7531, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CLERY-LE-PETIT", - "center": "POINT (806306.4478854126064107 2489038.0594100970774889)", - "surface": 4610000, - "canton": null, - "numero_insee": "55119" - } - }, - { - "pk": 25216, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COMBLES-EN-BARROIS", - "center": "POINT (804298.3415552010992542 2419675.0378568740561604)", - "surface": 10310000, - "canton": null, - "numero_insee": "55120" - } - }, - { - "pk": 6388, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COMBRES-SOUS-LES-COTES", - "center": "POINT (840208.7992560805287212 2456307.3408344164490700)", - "surface": 5090000, - "canton": null, - "numero_insee": "55121" - } - }, - { - "pk": 15039, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COMMERCY", - "center": "POINT (836807.2013172524748370 2421254.5115141444839537)", - "surface": 35600000, - "canton": null, - "numero_insee": "55122" - } - }, - { - "pk": 16658, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES HAUTS-DE-CHEE", - "center": "POINT (807580.5340478041907772 2433712.6966202417388558)", - "surface": 50290000, - "canton": null, - "numero_insee": "55123" - } - }, - { - "pk": 26936, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CONSENVOYE", - "center": "POINT (816476.4025838372763246 2481620.3775202985852957)", - "surface": 16140000, - "canton": null, - "numero_insee": "55124" - } - }, - { - "pk": 19395, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CONTRISSON", - "center": "POINT (792437.1963518420234323 2425877.9300661515444517)", - "surface": 11920000, - "canton": null, - "numero_insee": "55125" - } - }, - { - "pk": 29777, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COURCELLES-EN-BARROIS", - "center": "POINT (826927.3855851171538234 2429775.6529619013890624)", - "surface": 7160000, - "canton": null, - "numero_insee": "55127" - } - }, - { - "pk": 7313, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COURCELLES-SUR-AIRE", - "center": "POINT (812213.9730702907545492 2441857.8312696856446564)", - "surface": 11850000, - "canton": null, - "numero_insee": "55128" - } - }, - { - "pk": 37157, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COUSANCES-LES-FORGES", - "center": "POINT (802617.9297809810377657 2405550.8653347566723824)", - "surface": 18160000, - "canton": null, - "numero_insee": "55132" - } - }, - { - "pk": 10402, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COUVERTPUIS", - "center": "POINT (819158.2843571985140443 2402190.0125259635969996)", - "surface": 8860000, - "canton": null, - "numero_insee": "55133" - } - }, - { - "pk": 9887, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COUVONGES", - "center": "POINT (798464.8203300671884790 2423127.5445555658079684)", - "surface": 4600000, - "canton": null, - "numero_insee": "55134" - } - }, - { - "pk": 25740, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CUISY", - "center": "POINT (807600.4843471040949225 2478142.1825058786198497)", - "surface": 5550000, - "canton": null, - "numero_insee": "55137" - } - }, - { - "pk": 33956, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CUMIERES-LE-MORT-HOMME", - "center": "POINT (813533.8376659172354266 2474690.7356134625151753)", - "surface": 6130000, - "canton": null, - "numero_insee": "55139" - } - }, - { - "pk": 6827, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CUNEL", - "center": "POINT (802237.5400201004231349 2485100.7602806305512786)", - "surface": 4650000, - "canton": null, - "numero_insee": "55140" - } - }, - { - "pk": 31427, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DAGONVILLE", - "center": "POINT (823961.5859941559610888 2425547.3551802909933031)", - "surface": 12950000, - "canton": null, - "numero_insee": "55141" - } - }, - { - "pk": 22261, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DAINVILLE-BERTHELEVILLE", - "center": "POINT (834588.9768011301057413 2388212.3059380906634033)", - "surface": 40260000, - "canton": null, - "numero_insee": "55142" - } - }, - { - "pk": 38026, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DAMLOUP", - "center": "POINT (830072.4609290662920102 2471430.3023717207834125)", - "surface": 5310000, - "canton": null, - "numero_insee": "55143" - } - }, - { - "pk": 16720, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DAMVILLERS", - "center": "POINT (823833.4119809428229928 2487186.9414020208641887)", - "surface": 18410000, - "canton": null, - "numero_insee": "55145" - } - }, - { - "pk": 34695, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DANNEVOUX", - "center": "POINT (810266.0367386279394850 2482367.6953195594251156)", - "surface": 14430000, - "canton": null, - "numero_insee": "55146" - } - }, - { - "pk": 37780, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DELOUZE-ROSIERES", - "center": "POINT (835679.8453310311306268 2401030.7559390957467258)", - "surface": 15070000, - "canton": null, - "numero_insee": "55148" - } - }, - { - "pk": 12693, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DELUT", - "center": "POINT (824468.6023258910281584 2494797.1958058886229992)", - "surface": 9450000, - "canton": null, - "numero_insee": "55149" - } - }, - { - "pk": 19543, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DEMANGE-AUX-EAUX", - "center": "POINT (831253.8940513876732439 2403694.6863225242123008)", - "surface": 24940000, - "canton": null, - "numero_insee": "55150" - } - }, - { - "pk": 4929, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DIEPPE-SOUS-DOUAUMONT", - "center": "POINT (831953.8080683015286922 2473747.9326876276172698)", - "surface": 15080000, - "canton": null, - "numero_insee": "55153" - } - }, - { - "pk": 32950, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DIEUE-SUR-MEUSE", - "center": "POINT (825985.8746662818593904 2457886.4244662206619978)", - "surface": 15870000, - "canton": null, - "numero_insee": "55154" - } - }, - { - "pk": 8040, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOMBASLE-EN-ARGONNE", - "center": "POINT (808618.3516432708129287 2464442.0195306721143425)", - "surface": 11610000, - "canton": null, - "numero_insee": "55155" - } - }, - { - "pk": 28470, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOMBRAS", - "center": "POINT (825997.7523613350931555 2491508.2265010979026556)", - "surface": 11220000, - "canton": null, - "numero_insee": "55156" - } - }, - { - "pk": 10164, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOMMARTIN-LA-MONTAGNE", - "center": "POINT (838842.3369026134023443 2452292.9580907686613500)", - "surface": 6730000, - "canton": null, - "numero_insee": "55157" - } - }, - { - "pk": 16949, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOMMARY-BARONCOURT", - "center": "POINT (845895.6424966915510595 2481572.5925527447834611)", - "surface": 12620000, - "canton": null, - "numero_insee": "55158" - } - }, - { - "pk": 11314, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOMPCEVRIN", - "center": "POINT (829431.9901296532480046 2441104.7867210684344172)", - "surface": 10950000, - "canton": null, - "numero_insee": "55159" - } - }, - { - "pk": 15560, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOMPIERRE-AUX-BOIS", - "center": "POINT (838165.9737356395926327 2449485.2885716427117586)", - "surface": 8020000, - "canton": null, - "numero_insee": "55160" - } - }, - { - "pk": 26757, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOMREMY-LA-CANNE", - "center": "POINT (844182.6452283624093980 2482958.7731543751433492)", - "surface": 3050000, - "canton": null, - "numero_insee": "55162" - } - }, - { - "pk": 32064, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DONCOURT-AUX-TEMPLIERS", - "center": "POINT (847411.3095054482109845 2456569.3354244930669665)", - "surface": 6160000, - "canton": null, - "numero_insee": "55163" - } - }, - { - "pk": 35521, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOUAUMONT", - "center": "POINT (825548.4242566783213988 2473893.1200859299860895)", - "surface": 6010000, - "canton": null, - "numero_insee": "55164" - } - }, - { - "pk": 7646, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DOULCON", - "center": "POINT (804686.7121404110221192 2491225.5876189498230815)", - "surface": 8630000, - "canton": null, - "numero_insee": "55165" - } - }, - { - "pk": 14697, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DUGNY-SUR-MEUSE", - "center": "POINT (821863.7472224672092125 2460152.5991688277572393)", - "surface": 19390000, - "canton": null, - "numero_insee": "55166" - } - }, - { - "pk": 13389, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DUN-SUR-MEUSE", - "center": "POINT (807690.1006970646558329 2491051.1696315039880574)", - "surface": 6480000, - "canton": null, - "numero_insee": "55167" - } - }, - { - "pk": 28469, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "DUZEY", - "center": "POINT (838423.5808004756690934 2489413.4562276005744934)", - "surface": 5840000, - "canton": null, - "numero_insee": "55168" - } - }, - { - "pk": 5864, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ECOUVIEZ", - "center": "POINT (825652.6290817492408678 2508415.8370644710958004)", - "surface": 4300000, - "canton": null, - "numero_insee": "55169" - } - }, - { - "pk": 36006, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ECUREY-EN-VERDUNOIS", - "center": "POINT (818319.1739166802726686 2488440.5005889115855098)", - "surface": 6910000, - "canton": null, - "numero_insee": "55170" - } - }, - { - "pk": 13630, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "EIX", - "center": "POINT (829291.7412079167552292 2469122.1113357404246926)", - "surface": 12020000, - "canton": null, - "numero_insee": "55171" - } - }, - { - "pk": 6974, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES EPARGES", - "center": "POINT (837303.6603982438100502 2456682.6647499999962747)", - "surface": 9580000, - "canton": null, - "numero_insee": "55172" - } - }, - { - "pk": 10325, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "EPIEZ-SUR-MEUSE", - "center": "POINT (842904.1532497159205377 2398791.1421734169125557)", - "surface": 8120000, - "canton": null, - "numero_insee": "55173" - } - }, - { - "pk": 25739, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "EPINONVILLE", - "center": "POINT (799892.6792944286717102 2478476.4800522914156318)", - "surface": 14110000, - "canton": null, - "numero_insee": "55174" - } - }, - { - "pk": 27831, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ERIZE-LA-BRULEE", - "center": "POINT (815704.2888897893717512 2431580.7626237622462213)", - "surface": 10760000, - "canton": null, - "numero_insee": "55175" - } - }, - { - "pk": 19078, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ERIZE-LA-PETITE", - "center": "POINT (812639.0615411789622158 2438959.5201566107571125)", - "surface": 7300000, - "canton": null, - "numero_insee": "55177" - } - }, - { - "pk": 7186, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ERIZE-SAINT-DIZIER", - "center": "POINT (816539.0603804880520329 2427585.1867020768113434)", - "surface": 12460000, - "canton": null, - "numero_insee": "55178" - } - }, - { - "pk": 24049, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ERNEVILLE-AUX-BOIS", - "center": "POINT (826308.4624698010738939 2420263.8322820495814085)", - "surface": 28100000, - "canton": null, - "numero_insee": "55179" - } - }, - { - "pk": 31405, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ESNES-EN-ARGONNE", - "center": "POINT (809056.1067986941197887 2471750.5161593249067664)", - "surface": 14850000, - "canton": null, - "numero_insee": "55180" - } - }, - { - "pk": 21942, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ETAIN", - "center": "POINT (840558.7378903178032488 2473821.7930733226239681)", - "surface": 20020000, - "canton": null, - "numero_insee": "55181" - } - }, - { - "pk": 9960, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ETON", - "center": "POINT (844015.1924162772484124 2479154.8972952109761536)", - "surface": 11200000, - "canton": null, - "numero_insee": "55182" - } - }, - { - "pk": 35955, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ETRAYE", - "center": "POINT (819547.2879354497417808 2485248.9909133980982006)", - "surface": 8110000, - "canton": null, - "numero_insee": "55183" - } - }, - { - "pk": 22073, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "EUVILLE", - "center": "POINT (843311.2013993443688378 2421310.3474412532523274)", - "surface": 29770000, - "canton": null, - "numero_insee": "55184" - } - }, - { - "pk": 35299, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "EVRES", - "center": "POINT (804170.6581257628276944 2446291.9937776275910437)", - "surface": 11680000, - "canton": null, - "numero_insee": "55185" - } - }, - { - "pk": 18197, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FAINS-VEEL", - "center": "POINT (804063.9725782900350168 2423675.7827054760418832)", - "surface": 18390000, - "canton": null, - "numero_insee": "55186" - } - }, - { - "pk": 4686, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FLASSIGNY", - "center": "POINT (824807.0500964489765465 2502004.6100616981275380)", - "surface": 6650000, - "canton": null, - "numero_insee": "55188" - } - }, - { - "pk": 14309, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FLEURY-DEVANT-DOUAUMONT", - "center": "POINT (825775.9946284331381321 2470692.9986308063380420)", - "surface": 10360000, - "canton": null, - "numero_insee": "55189" - } - }, - { - "pk": 9799, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FOAMEIX-ORNEL", - "center": "POINT (838337.7193413637578487 2476104.2093259207904339)", - "surface": 10890000, - "canton": null, - "numero_insee": "55191" - } - }, - { - "pk": 26694, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FONTAINES-SAINT-CLAIR", - "center": "POINT (811407.5915755564346910 2489281.8615633668377995)", - "surface": 6260000, - "canton": null, - "numero_insee": "55192" - } - }, - { - "pk": 15973, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FORGES-SUR-MEUSE", - "center": "POINT (814109.3259607861982659 2477597.5332492240704596)", - "surface": 15930000, - "canton": null, - "numero_insee": "55193" - } - }, - { - "pk": 27131, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FOUCAUCOURT-SUR-THABAS", - "center": "POINT (802049.7207155463984236 2448575.3807028550654650)", - "surface": 9890000, - "canton": null, - "numero_insee": "55194" - } - }, - { - "pk": 27843, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FOUCHERES-AUX-BOIS", - "center": "POINT (814809.2988390788668767 2407556.5465099830180407)", - "surface": 5490000, - "canton": null, - "numero_insee": "55195" - } - }, - { - "pk": 8090, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FREMEREVILLE-SOUS-LES-COTES", - "center": "POINT (843854.8550312274601310 2427919.5480546811595559)", - "surface": 6760000, - "canton": null, - "numero_insee": "55196" - } - }, - { - "pk": 30009, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FRESNES-AU-MONT", - "center": "POINT (827158.0686519981827587 2437883.1281297295354307)", - "surface": 15870000, - "canton": null, - "numero_insee": "55197" - } - }, - { - "pk": 24751, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FRESNES-EN-WOEVRE", - "center": "POINT (840769.6299749515019357 2460915.1892621987499297)", - "surface": 9060000, - "canton": null, - "numero_insee": "55198" - } - }, - { - "pk": 11354, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FROIDOS", - "center": "POINT (803296.5540889520198107 2454890.2282401281408966)", - "surface": 8730000, - "canton": null, - "numero_insee": "55199" - } - }, - { - "pk": 4895, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FROMEREVILLE-LES-VALLONS", - "center": "POINT (815701.8987079097423702 2466904.2484291498549283)", - "surface": 20310000, - "canton": null, - "numero_insee": "55200" - } - }, - { - "pk": 6492, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FROMEZEY", - "center": "POINT (836563.3157037878409028 2472986.9731290852651000)", - "surface": 5830000, - "canton": null, - "numero_insee": "55201" - } - }, - { - "pk": 34728, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "FUTEAU", - "center": "POINT (795178.1063853789819404 2456421.8455835436470807)", - "surface": 1730000, - "canton": null, - "numero_insee": "55202" - } - }, - { - "pk": 13623, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GENICOURT-SUR-MEUSE", - "center": "POINT (827122.5576359860133380 2453693.3952504727058113)", - "surface": 8020000, - "canton": null, - "numero_insee": "55204" - } - }, - { - "pk": 35760, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GERCOURT-ET-DRILLANCOURT", - "center": "POINT (810887.7965329708531499 2479871.4192006392404437)", - "surface": 13540000, - "canton": null, - "numero_insee": "55206" - } - }, - { - "pk": 9497, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GERY", - "center": "POINT (817761.2233183414209634 2425093.9459790028631687)", - "surface": 4800000, - "canton": null, - "numero_insee": "55207" - } - }, - { - "pk": 35034, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GESNES-EN-ARGONNE", - "center": "POINT (797860.7345271145459265 2482061.4050197293981910)", - "surface": 7040000, - "canton": null, - "numero_insee": "55208" - } - }, - { - "pk": 32951, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GIMECOURT", - "center": "POINT (823004.4290997220668942 2432143.6550675439648330)", - "surface": 10230000, - "canton": null, - "numero_insee": "55210" - } - }, - { - "pk": 32091, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GINCREY", - "center": "POINT (835116.1394232942257077 2478378.0370103963650763)", - "surface": 9670000, - "canton": null, - "numero_insee": "55211" - } - }, - { - "pk": 7425, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GIRAUVOISIN", - "center": "POINT (842052.8975163379218429 2428004.1423505614511669)", - "surface": 4860000, - "canton": null, - "numero_insee": "55212" - } - }, - { - "pk": 8808, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GIVRAUVAL", - "center": "POINT (819685.7868979151826352 2410700.4838900603353977)", - "surface": 9600000, - "canton": null, - "numero_insee": "55214" - } - }, - { - "pk": 37627, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GONDRECOURT-LE-CHATEAU", - "center": "POINT (836043.5735934558324516 2393628.6374107366427779)", - "surface": 51420000, - "canton": null, - "numero_insee": "55215" - } - }, - { - "pk": 29541, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GOURAINCOURT", - "center": "POINT (842381.6263712097425014 2482943.3033925895579159)", - "surface": 5490000, - "canton": null, - "numero_insee": "55216" - } - }, - { - "pk": 23997, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GOUSSAINCOURT", - "center": "POINT (846563.1581387160113081 2392217.8798065530136228)", - "surface": 10270000, - "canton": null, - "numero_insee": "55217" - } - }, - { - "pk": 25878, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GREMILLY", - "center": "POINT (830994.9190695165889338 2480544.0854139090515673)", - "surface": 17770000, - "canton": null, - "numero_insee": "55218" - } - }, - { - "pk": 18932, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GRIMAUCOURT-EN-WOEVRE", - "center": "POINT (835509.0580779298907146 2467574.4153967471793294)", - "surface": 5710000, - "canton": null, - "numero_insee": "55219" - } - }, - { - "pk": 35059, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GRIMAUCOURT-PRES-SAMPIGNY", - "center": "POINT (829869.4858126395847648 2425097.6697878702543676)", - "surface": 9280000, - "canton": null, - "numero_insee": "55220" - } - }, - { - "pk": 31560, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GUERPONT", - "center": "POINT (814822.8058261746773496 2417663.6830471791327000)", - "surface": 6030000, - "canton": null, - "numero_insee": "55221" - } - }, - { - "pk": 10995, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GUSSAINVILLE", - "center": "POINT (842607.1484820042969659 2468335.8127229968085885)", - "surface": 10510000, - "canton": null, - "numero_insee": "55222" - } - }, - { - "pk": 9681, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HAIRONVILLE", - "center": "POINT (802750.4298312985338271 2413457.5066398275084794)", - "surface": 9760000, - "canton": null, - "numero_insee": "55224" - } - }, - { - "pk": 37698, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HALLES-SOUS-LES-COTES", - "center": "POINT (802528.1759535492165014 2497911.3297006818465889)", - "surface": 5380000, - "canton": null, - "numero_insee": "55225" - } - }, - { - "pk": 4208, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HAN-LES-JUVIGNY", - "center": "POINT (817298.6372981707099825 2502440.5587515151128173)", - "surface": 5480000, - "canton": null, - "numero_insee": "55226" - } - }, - { - "pk": 22827, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HANNONVILLE-SOUS-LES-COTES", - "center": "POINT (842535.9291936454828829 2453325.3366606668569148)", - "surface": 15810000, - "canton": null, - "numero_insee": "55228" - } - }, - { - "pk": 28036, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HARVILLE", - "center": "POINT (847777.1552558244438842 2460575.1173787186853588)", - "surface": 5610000, - "canton": null, - "numero_insee": "55232" - } - }, - { - "pk": 24899, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HAUDAINVILLE", - "center": "POINT (825642.8010592651553452 2462886.7694163178093731)", - "surface": 11120000, - "canton": null, - "numero_insee": "55236" - } - }, - { - "pk": 31850, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HAUDIOMONT", - "center": "POINT (834153.7569818177726120 2462259.3176707290112972)", - "surface": 9430000, - "canton": null, - "numero_insee": "55237" - } - }, - { - "pk": 37979, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HAUMONT-PRES-SAMOGNEUX", - "center": "POINT (820796.8483303294051439 2479556.0559491165913641)", - "surface": 10910000, - "canton": null, - "numero_insee": "55239" - } - }, - { - "pk": 25765, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HEIPPES", - "center": "POINT (815058.2842126179020852 2448586.6739820400252938)", - "surface": 10550000, - "canton": null, - "numero_insee": "55241" - } - }, - { - "pk": 29064, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HENNEMONT", - "center": "POINT (842933.9619772087316960 2465236.5957114566117525)", - "surface": 10790000, - "canton": null, - "numero_insee": "55242" - } - }, - { - "pk": 37420, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HERBEUVILLE", - "center": "POINT (841521.5919230200815946 2454917.6868271240964532)", - "surface": 6720000, - "canton": null, - "numero_insee": "55243" - } - }, - { - "pk": 30338, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HERMEVILLE-EN-WOEVRE", - "center": "POINT (838196.0165723287500441 2469298.5869260877370834)", - "surface": 14520000, - "canton": null, - "numero_insee": "55244" - } - }, - { - "pk": 35780, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HEUDICOURT-SOUS-LES-COTES", - "center": "POINT (846326.6485677300952375 2443051.0172735741361976)", - "surface": 13670000, - "canton": null, - "numero_insee": "55245" - } - }, - { - "pk": 22394, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HEVILLIERS", - "center": "POINT (820539.4459076452767476 2404503.4628077470697463)", - "surface": 10510000, - "canton": null, - "numero_insee": "55246" - } - }, - { - "pk": 6025, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HORVILLE-EN-ORNOIS", - "center": "POINT (831452.6578278066590428 2392188.2560900258831680)", - "surface": 7600000, - "canton": null, - "numero_insee": "55247" - } - }, - { - "pk": 8703, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "HOUDELAINCOURT", - "center": "POINT (830291.0250916399527341 2399283.3278778549283743)", - "surface": 16130000, - "canton": null, - "numero_insee": "55248" - } - }, - { - "pk": 29353, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "INOR", - "center": "POINT (804725.8270388722885400 2510037.6564819556660950)", - "surface": 6400000, - "canton": null, - "numero_insee": "55250" - } - }, - { - "pk": 27025, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "IPPECOURT", - "center": "POINT (810220.3134984120260924 2452647.9676469657570124)", - "surface": 10470000, - "canton": null, - "numero_insee": "55251" - } - }, - { - "pk": 6217, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES ISLETTES", - "center": "POINT (794944.6251218374818563 2460322.4150450541637838)", - "surface": 5510000, - "canton": null, - "numero_insee": "55253" - } - }, - { - "pk": 5279, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES TROIS-DOMAINES", - "center": "POINT (815686.0680149444378912 2445389.9148842156864703)", - "surface": 16560000, - "canton": null, - "numero_insee": "55254" - } - }, - { - "pk": 35359, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "JAMETZ", - "center": "POINT (821654.1798279774375260 2496274.0096376389265060)", - "surface": 17340000, - "canton": null, - "numero_insee": "55255" - } - }, - { - "pk": 24140, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "JONVILLE-EN-WOEVRE", - "center": "POINT (851406.7789717286359519 2457404.1993037839420140)", - "surface": 10860000, - "canton": null, - "numero_insee": "55256" - } - }, - { - "pk": 13404, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "JOUY-EN-ARGONNE", - "center": "POINT (810828.1956511043244973 2463460.2860463107936084)", - "surface": 6360000, - "canton": null, - "numero_insee": "55257" - } - }, - { - "pk": 4180, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "GEVILLE", - "center": "POINT (847478.5423514712601900 2425448.9610486701130867)", - "surface": 34200000, - "canton": null, - "numero_insee": "55258" - } - }, - { - "pk": 30798, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "JULVECOURT", - "center": "POINT (808598.8123622651910409 2455035.6742203398607671)", - "surface": 8730000, - "canton": null, - "numero_insee": "55260" - } - }, - { - "pk": 32913, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "JUVIGNY-EN-PERTHOIS", - "center": "POINT (808539.6155819997657090 2403500.0641188402660191)", - "surface": 6330000, - "canton": null, - "numero_insee": "55261" - } - }, - { - "pk": 20406, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "JUVIGNY-SUR-LOISON", - "center": "POINT (817219.1592270015971735 2500038.3798323143273592)", - "surface": 16500000, - "canton": null, - "numero_insee": "55262" - } - }, - { - "pk": 34419, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "KOEUR-LA-GRANDE", - "center": "POINT (829789.6714802780188620 2434403.3279623999260366)", - "surface": 12210000, - "canton": null, - "numero_insee": "55263" - } - }, - { - "pk": 17080, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "KOEUR-LA-PETITE", - "center": "POINT (828804.5134309352142736 2432593.6563962302170694)", - "surface": 20520000, - "canton": null, - "numero_insee": "55264" - } - }, - { - "pk": 25294, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LABEUVILLE", - "center": "POINT (851180.8615046428749338 2460404.2361042872071266)", - "surface": 9540000, - "canton": null, - "numero_insee": "55265" - } - }, - { - "pk": 18632, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LACHALADE", - "center": "POINT (793783.2498674783855677 2467417.1252284096553922)", - "surface": 19170000, - "canton": null, - "numero_insee": "55266" - } - }, - { - "pk": 5038, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LACHAUSSEE", - "center": "POINT (853237.9407541302498430 2453917.6220032325945795)", - "surface": 30850000, - "canton": null, - "numero_insee": "55267" - } - }, - { - "pk": 16608, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LACROIX-SUR-MEUSE", - "center": "POINT (833679.6191736293258145 2447545.5170174548402429)", - "surface": 21240000, - "canton": null, - "numero_insee": "55268" - } - }, - { - "pk": 37594, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAHAYMEIX", - "center": "POINT (825723.7674143533222377 2441773.4575770390219986)", - "surface": 12550000, - "canton": null, - "numero_insee": "55269" - } - }, - { - "pk": 11712, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAHAYVILLE", - "center": "POINT (851772.8788800145266578 2438094.4443282126449049)", - "surface": 4020000, - "canton": null, - "numero_insee": "55270" - } - }, - { - "pk": 4468, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAHEYCOURT", - "center": "POINT (797546.2509972515981644 2436929.0825741235166788)", - "surface": 17740000, - "canton": null, - "numero_insee": "55271" - } - }, - { - "pk": 20185, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAMORVILLE", - "center": "POINT (838399.5912100700661540 2445584.6883461363613605)", - "surface": 35110000, - "canton": null, - "numero_insee": "55274" - } - }, - { - "pk": 37397, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAMOUILLY", - "center": "POINT (810534.1190904036629945 2509487.0139618068933487)", - "surface": 4810000, - "canton": null, - "numero_insee": "55275" - } - }, - { - "pk": 15558, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LANDRECOURT-LEMPIRE", - "center": "POINT (818664.4511714908294380 2459824.9832500522024930)", - "surface": 14630000, - "canton": null, - "numero_insee": "55276" - } - }, - { - "pk": 25114, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LANEUVILLE-AU-RUPT", - "center": "POINT (838445.1176698203198612 2416965.5990738752298057)", - "surface": 13280000, - "canton": null, - "numero_insee": "55278" - } - }, - { - "pk": 28240, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LANHERES", - "center": "POINT (845968.7110473541542888 2473067.7419674475677311)", - "surface": 4570000, - "canton": null, - "numero_insee": "55280" - } - }, - { - "pk": 25760, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LATOUR-EN-WOEVRE", - "center": "POINT (853383.0073768247384578 2460323.0997432339936495)", - "surface": 6790000, - "canton": null, - "numero_insee": "55281" - } - }, - { - "pk": 9976, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAVALLEE", - "center": "POINT (820143.8281224088277668 2427315.8663500151596963)", - "surface": 12620000, - "canton": null, - "numero_insee": "55282" - } - }, - { - "pk": 26542, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAVINCOURT", - "center": "POINT (807081.3593502170406282 2410192.2697597020305693)", - "surface": 4780000, - "canton": null, - "numero_insee": "55284" - } - }, - { - "pk": 8621, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LAVOYE", - "center": "POINT (804908.6259846739703789 2453603.1629572184756398)", - "surface": 10020000, - "canton": null, - "numero_insee": "55285" - } - }, - { - "pk": 25569, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LEMMES", - "center": "POINT (816092.9341078908182681 2456300.6447395393624902)", - "surface": 10990000, - "canton": null, - "numero_insee": "55286" - } - }, - { - "pk": 32288, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LEROUVILLE", - "center": "POINT (835176.1647374781314284 2424742.9212196832522750)", - "surface": 14320000, - "canton": null, - "numero_insee": "55288" - } - }, - { - "pk": 26467, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LEVONCOURT", - "center": "POINT (821025.5119385252473876 2429524.9240022520534694)", - "surface": 7850000, - "canton": null, - "numero_insee": "55289" - } - }, - { - "pk": 16148, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LIGNIERES-SUR-AIRE", - "center": "POINT (824442.1628133433405310 2427853.0486241835169494)", - "surface": 9320000, - "canton": null, - "numero_insee": "55290" - } - }, - { - "pk": 21085, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LIGNY-EN-BARROIS", - "center": "POINT (817981.2983081472339109 2411086.1590996352024376)", - "surface": 32580000, - "canton": null, - "numero_insee": "55291" - } - }, - { - "pk": 23239, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LINY-DEVANT-DUN", - "center": "POINT (808618.8729073915164918 2487757.0311182308942080)", - "surface": 11320000, - "canton": null, - "numero_insee": "55292" - } - }, - { - "pk": 17946, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LION-DEVANT-DUN", - "center": "POINT (811758.9716731115477160 2494988.4690411770716310)", - "surface": 15680000, - "canton": null, - "numero_insee": "55293" - } - }, - { - "pk": 17039, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LISLE-EN-BARROIS", - "center": "POINT (801328.8514419298153371 2439262.9856933890841901)", - "surface": 29040000, - "canton": null, - "numero_insee": "55295" - } - }, - { - "pk": 30056, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LISLE-EN-RIGAULT", - "center": "POINT (798527.2860759261529893 2415823.0482585192658007)", - "surface": 10580000, - "canton": null, - "numero_insee": "55296" - } - }, - { - "pk": 30992, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LISSEY", - "center": "POINT (820100.4594232342205942 2490757.2239095736294985)", - "surface": 9930000, - "canton": null, - "numero_insee": "55297" - } - }, - { - "pk": 22881, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LOISEY-CULEY", - "center": "POINT (816580.2035062058130279 2422782.2503048577345908)", - "surface": 24480000, - "canton": null, - "numero_insee": "55298" - } - }, - { - "pk": 17298, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LOISON", - "center": "POINT (836874.2190016692038625 2483396.3337370925582945)", - "surface": 14170000, - "canton": null, - "numero_insee": "55299" - } - }, - { - "pk": 6675, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LONGEAUX", - "center": "POINT (820503.4341383670689538 2408706.0947179906070232)", - "surface": 7480000, - "canton": null, - "numero_insee": "55300" - } - }, - { - "pk": 5711, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LONGCHAMPS-SUR-AIRE", - "center": "POINT (817742.1249683024361730 2439003.2306829658336937)", - "surface": 15760000, - "canton": null, - "numero_insee": "55301" - } - }, - { - "pk": 29700, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LOUPMONT", - "center": "POINT (845295.6080942562548444 2434936.6910921898670495)", - "surface": 10350000, - "canton": null, - "numero_insee": "55303" - } - }, - { - "pk": 21835, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LOUPPY-LE-CHATEAU", - "center": "POINT (801180.9437780815642327 2433157.5978347533382475)", - "surface": 19020000, - "canton": null, - "numero_insee": "55304" - } - }, - { - "pk": 24217, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LOUPPY-SUR-LOISON", - "center": "POINT (817741.7276113482657820 2497441.2298229145817459)", - "surface": 14410000, - "canton": null, - "numero_insee": "55306" - } - }, - { - "pk": 38012, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LOUVEMONT-COTE-DU-POIVRE", - "center": "POINT (823230.8085314093623310 2475774.4756692890077829)", - "surface": 8360000, - "canton": null, - "numero_insee": "55307" - } - }, - { - "pk": 27214, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LUZY-SAINT-MARTIN", - "center": "POINT (803451.6652743410086259 2506924.8363393447361887)", - "surface": 7230000, - "canton": null, - "numero_insee": "55310" - } - }, - { - "pk": 9738, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MAIZERAY", - "center": "POINT (845767.3912487030029297 2461558.5080435094423592)", - "surface": 3850000, - "canton": null, - "numero_insee": "55311" - } - }, - { - "pk": 30779, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MALANCOURT", - "center": "POINT (806830.8622758117271587 2474533.2765393271110952)", - "surface": 16520000, - "canton": null, - "numero_insee": "55313" - } - }, - { - "pk": 7372, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MANDRES-EN-BARROIS", - "center": "POINT (825842.2209018816938624 2392940.7164272563531995)", - "surface": 17720000, - "canton": null, - "numero_insee": "55315" - } - }, - { - "pk": 15971, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MANGIENNES", - "center": "POINT (832032.8708111087325960 2487857.6513808462768793)", - "surface": 18530000, - "canton": null, - "numero_insee": "55316" - } - }, - { - "pk": 9739, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MANHEULLES", - "center": "POINT (837849.8995759431272745 2462991.5005752216093242)", - "surface": 10550000, - "canton": null, - "numero_insee": "55317" - } - }, - { - "pk": 27734, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MARCHEVILLE-EN-WOEVRE", - "center": "POINT (844383.7638452068204060 2459545.3065717890858650)", - "surface": 5620000, - "canton": null, - "numero_insee": "55320" - } - }, - { - "pk": 34358, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MARRE", - "center": "POINT (815966.0698256188770756 2471109.2417699103243649)", - "surface": 10140000, - "canton": null, - "numero_insee": "55321" - } - }, - { - "pk": 9282, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MARTINCOURT-SUR-MEUSE", - "center": "POINT (805845.2668660450726748 2507845.8800051412545145)", - "surface": 5960000, - "canton": null, - "numero_insee": "55323" - } - }, - { - "pk": 24804, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MAUCOURT-SUR-ORNE", - "center": "POINT (831621.8725647449027747 2477447.4724551253020763)", - "surface": 6420000, - "canton": null, - "numero_insee": "55325" - } - }, - { - "pk": 9536, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MAULAN", - "center": "POINT (814775.8768742076354101 2411458.9809245727956295)", - "surface": 4130000, - "canton": null, - "numero_insee": "55326" - } - }, - { - "pk": 21654, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MAUVAGES", - "center": "POINT (836951.4696340716909617 2404444.0609606117941439)", - "surface": 21110000, - "canton": null, - "numero_insee": "55327" - } - }, - { - "pk": 33655, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MAXEY-SUR-VAISE", - "center": "POINT (845217.6411737151211128 2397410.0179197997786105)", - "surface": 10850000, - "canton": null, - "numero_insee": "55328" - } - }, - { - "pk": 30799, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MECRIN", - "center": "POINT (835829.3653193486388773 2430252.2887684078887105)", - "surface": 10190000, - "canton": null, - "numero_insee": "55329" - } - }, - { - "pk": 35429, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MELIGNY-LE-GRAND", - "center": "POINT (832470.5905744850169867 2413511.9727163445204496)", - "surface": 11550000, - "canton": null, - "numero_insee": "55330" - } - }, - { - "pk": 25357, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MELIGNY-LE-PETIT", - "center": "POINT (830991.9734722420107573 2410897.4794308589771390)", - "surface": 8420000, - "canton": null, - "numero_insee": "55331" - } - }, - { - "pk": 32494, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MENAUCOURT", - "center": "POINT (822889.4969293875619769 2410527.7989691589027643)", - "surface": 6320000, - "canton": null, - "numero_insee": "55332" - } - }, - { - "pk": 33683, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MENIL-AUX-BOIS", - "center": "POINT (827750.1814936781302094 2427180.9327486916445196)", - "surface": 6630000, - "canton": null, - "numero_insee": "55333" - } - }, - { - "pk": 31071, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MENIL-LA-HORGNE", - "center": "POINT (835149.9446207623695955 2416136.7652875757776201)", - "surface": 16490000, - "canton": null, - "numero_insee": "55334" - } - }, - { - "pk": 35519, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MENIL-SUR-SAULX", - "center": "POINT (811518.3711543483659625 2406227.4567203768528998)", - "surface": 11910000, - "canton": null, - "numero_insee": "55335" - } - }, - { - "pk": 34357, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MERLES-SUR-LOISON", - "center": "POINT (828014.3177137065213174 2489724.3822260196320713)", - "surface": 11480000, - "canton": null, - "numero_insee": "55336" - } - }, - { - "pk": 37160, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MILLY-SUR-BRADON", - "center": "POINT (809078.8891193936578929 2492463.9438960771076381)", - "surface": 10590000, - "canton": null, - "numero_insee": "55338" - } - }, - { - "pk": 14070, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOGEVILLE", - "center": "POINT (833331.4280192232690752 2476461.4971174467355013)", - "surface": 6330000, - "canton": null, - "numero_insee": "55339" - } - }, - { - "pk": 17925, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOGNEVILLE", - "center": "POINT (795164.5083796994294971 2422899.1882064188830554)", - "surface": 18450000, - "canton": null, - "numero_insee": "55340" - } - }, - { - "pk": 32628, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOIREY-FLABAS-CREPION", - "center": "POINT (822275.3995916547719389 2482170.3957561529241502)", - "surface": 14580000, - "canton": null, - "numero_insee": "55341" - } - }, - { - "pk": 31411, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTBLAINVILLE", - "center": "POINT (793619.0366312193218619 2474920.5779366157948971)", - "surface": 12180000, - "canton": null, - "numero_insee": "55343" - } - }, - { - "pk": 8024, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTBRAS", - "center": "POINT (848531.7699740042444319 2396037.4920329381711781)", - "surface": 5460000, - "canton": null, - "numero_insee": "55344" - } - }, - { - "pk": 36685, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONT-DEVANT-SASSEY", - "center": "POINT (804862.8458989314967766 2494028.8608459103852510)", - "surface": 8290000, - "canton": null, - "numero_insee": "55345" - } - }, - { - "pk": 22116, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTFAUCON-D'ARGONNE", - "center": "POINT (803809.4530937967356294 2476808.8992407764308155)", - "surface": 23680000, - "canton": null, - "numero_insee": "55346" - } - }, - { - "pk": 30458, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES MONTHAIRONS", - "center": "POINT (823420.3778722302522510 2453661.6525749368593097)", - "surface": 12360000, - "canton": null, - "numero_insee": "55347" - } - }, - { - "pk": 19510, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTIERS-SUR-SAULX", - "center": "POINT (816493.4378532331902534 2397864.1514741005375981)", - "surface": 44640000, - "canton": null, - "numero_insee": "55348" - } - }, - { - "pk": 25005, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTIGNY-DEVANT-SASSEY", - "center": "POINT (803347.4556179689243436 2495716.9607488666661084)", - "surface": 9800000, - "canton": null, - "numero_insee": "55349" - } - }, - { - "pk": 27414, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTIGNY-LES-VAUCOULEURS", - "center": "POINT (841169.5734975312370807 2402679.0012513976544142)", - "surface": 11960000, - "canton": null, - "numero_insee": "55350" - } - }, - { - "pk": 15381, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTMEDY", - "center": "POINT (819967.5325343423755839 2506265.7940487456507981)", - "surface": 23550000, - "canton": null, - "numero_insee": "55351" - } - }, - { - "pk": 15930, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTPLONNE", - "center": "POINT (808543.7528284570435062 2414707.9138464047573507)", - "surface": 20750000, - "canton": null, - "numero_insee": "55352" - } - }, - { - "pk": 5433, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTSEC", - "center": "POINT (848372.5507027859566733 2437865.0887110605835915)", - "surface": 5850000, - "canton": null, - "numero_insee": "55353" - } - }, - { - "pk": 37631, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MONTZEVILLE", - "center": "POINT (809977.1848642285913229 2469356.8457421213388443)", - "surface": 17730000, - "canton": null, - "numero_insee": "55355" - } - }, - { - "pk": 27416, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MORANVILLE", - "center": "POINT (833693.4207374609541148 2469259.9406871898099780)", - "surface": 6670000, - "canton": null, - "numero_insee": "55356" - } - }, - { - "pk": 35762, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MORGEMOULIN", - "center": "POINT (835745.6805635227356106 2474981.2486383216455579)", - "surface": 6830000, - "canton": null, - "numero_insee": "55357" - } - }, - { - "pk": 14891, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "CHANTERAINE", - "center": "POINT (824967.6461048786295578 2413247.4915928551927209)", - "surface": 22380000, - "canton": null, - "numero_insee": "55358" - } - }, - { - "pk": 19941, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MORLEY", - "center": "POINT (813062.1523508066311479 2401237.1643906957469881)", - "surface": 24790000, - "canton": null, - "numero_insee": "55359" - } - }, - { - "pk": 5964, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOUILLY", - "center": "POINT (834112.9441934227943420 2455354.4208744014613330)", - "surface": 11150000, - "canton": null, - "numero_insee": "55360" - } - }, - { - "pk": 26546, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOULAINVILLE", - "center": "POINT (830109.3693176439264789 2467127.8224469958804548)", - "surface": 11290000, - "canton": null, - "numero_insee": "55361" - } - }, - { - "pk": 4259, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOULINS-SAINT-HUBERT", - "center": "POINT (802002.9563302571186796 2512515.8926892164163291)", - "surface": 8060000, - "canton": null, - "numero_insee": "55362" - } - }, - { - "pk": 10208, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOULOTTE", - "center": "POINT (849471.2693746278528124 2461390.2011196846142411)", - "surface": 5480000, - "canton": null, - "numero_insee": "55363" - } - }, - { - "pk": 18912, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MOUZAY", - "center": "POINT (810627.5147017076378688 2498581.0382257374003530)", - "surface": 36020000, - "canton": null, - "numero_insee": "55364" - } - }, - { - "pk": 13518, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MURVAUX", - "center": "POINT (812881.0078703344333917 2492496.5040982072241604)", - "surface": 14250000, - "canton": null, - "numero_insee": "55365" - } - }, - { - "pk": 21403, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAL-D'ORNAIN", - "center": "POINT (801937.0065406857756898 2426659.6397568341344595)", - "surface": 24190000, - "canton": null, - "numero_insee": "55366" - } - }, - { - "pk": 6142, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "MUZERAY", - "center": "POINT (838841.8458969569765031 2487315.7132251630537212)", - "surface": 8230000, - "canton": null, - "numero_insee": "55367" - } - }, - { - "pk": 10566, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NAIVES-EN-BLOIS", - "center": "POINT (836583.4430714605841786 2412346.4270510845817626)", - "surface": 15740000, - "canton": null, - "numero_insee": "55368" - } - }, - { - "pk": 37571, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NAIVES-ROSIERES", - "center": "POINT (812547.7600595528492704 2426250.1136395181529224)", - "surface": 16040000, - "canton": null, - "numero_insee": "55369" - } - }, - { - "pk": 24800, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NAIX-AUX-FORGES", - "center": "POINT (823710.5801535364007577 2408133.1612784885801375)", - "surface": 6330000, - "canton": null, - "numero_insee": "55370" - } - }, - { - "pk": 31604, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NANCOIS-LE-GRAND", - "center": "POINT (824934.1920886631123722 2417149.9092119340784848)", - "surface": 9260000, - "canton": null, - "numero_insee": "55371" - } - }, - { - "pk": 35331, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NANCOIS-SUR-ORNAIN", - "center": "POINT (819425.6473683197982609 2417703.1131843184120953)", - "surface": 8060000, - "canton": null, - "numero_insee": "55372" - } - }, - { - "pk": 26997, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NANT-LE-GRAND", - "center": "POINT (813061.1089435757603496 2413045.4086682274937630)", - "surface": 11190000, - "canton": null, - "numero_insee": "55373" - } - }, - { - "pk": 26148, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NANT-LE-PETIT", - "center": "POINT (812889.2598956018919125 2409741.6401977972127497)", - "surface": 9230000, - "canton": null, - "numero_insee": "55374" - } - }, - { - "pk": 25006, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NANTILLOIS", - "center": "POINT (803368.1271414648508653 2481608.2014063987880945)", - "surface": 7680000, - "canton": null, - "numero_insee": "55375" - } - }, - { - "pk": 28138, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NANTOIS", - "center": "POINT (821616.1267765496158972 2407314.6511218845844269)", - "surface": 5880000, - "canton": null, - "numero_insee": "55376" - } - }, - { - "pk": 8868, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NEPVANT", - "center": "POINT (808844.3318834019592032 2508171.7410957785323262)", - "surface": 5110000, - "canton": null, - "numero_insee": "55377" - } - }, - { - "pk": 18278, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NETTANCOURT", - "center": "POINT (790668.6059003483969718 2433768.1918853130191565)", - "surface": 11460000, - "canton": null, - "numero_insee": "55378" - } - }, - { - "pk": 13741, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LE NEUFOUR", - "center": "POINT (793226.5267095422605053 2462309.0375574706122279)", - "surface": 930000, - "canton": null, - "numero_insee": "55379" - } - }, - { - "pk": 24421, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NEUVILLE-LES-VAUCOULEURS", - "center": "POINT (844872.7648567639989778 2402610.7287294925190508)", - "surface": 8400000, - "canton": null, - "numero_insee": "55381" - } - }, - { - "pk": 12901, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NEUVILLE-SUR-ORNAIN", - "center": "POINT (799322.5832908966112882 2428138.3013266054913402)", - "surface": 11730000, - "canton": null, - "numero_insee": "55382" - } - }, - { - "pk": 21001, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NEUVILLY-EN-ARGONNE", - "center": "POINT (797695.7705695820041001 2466249.7987755709327757)", - "surface": 18230000, - "canton": null, - "numero_insee": "55383" - } - }, - { - "pk": 3236, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NICEY-SUR-AIRE", - "center": "POINT (821363.1539493117015809 2436832.7740467004477978)", - "surface": 10950000, - "canton": null, - "numero_insee": "55384" - } - }, - { - "pk": 35201, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NOUILLONPONT", - "center": "POINT (841525.3190393197583035 2489440.0908473427407444)", - "surface": 10130000, - "canton": null, - "numero_insee": "55387" - } - }, - { - "pk": 21629, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NOYERS-AUZECOURT", - "center": "POINT (793859.4202728618402034 2435096.3441340285353363)", - "surface": 17380000, - "canton": null, - "numero_insee": "55388" - } - }, - { - "pk": 18928, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "NUBECOURT", - "center": "POINT (807850.5891600979957730 2448925.2221369156613946)", - "surface": 27590000, - "canton": null, - "numero_insee": "55389" - } - }, - { - "pk": 4868, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "OLIZY-SUR-CHIERS", - "center": "POINT (807923.2822424209443852 2510565.3363071973435581)", - "surface": 8960000, - "canton": null, - "numero_insee": "55391" - } - }, - { - "pk": 19055, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ORNES", - "center": "POINT (828417.4734491541748866 2477720.1763017997145653)", - "surface": 18640000, - "canton": null, - "numero_insee": "55394" - } - }, - { - "pk": 11580, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "OSCHES", - "center": "POINT (812913.3363295983290300 2453671.6907568741589785)", - "surface": 9150000, - "canton": null, - "numero_insee": "55395" - } - }, - { - "pk": 18898, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "OURCHES-SUR-MEUSE", - "center": "POINT (847188.3227584797423333 2412637.6201354074291885)", - "surface": 10240000, - "canton": null, - "numero_insee": "55396" - } - }, - { - "pk": 17295, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PAGNY-LA-BLANCHE-COTE", - "center": "POINT (851211.9904195799026638 2398562.2917280388064682)", - "surface": 12390000, - "canton": null, - "numero_insee": "55397" - } - }, - { - "pk": 37459, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PAGNY-SUR-MEUSE", - "center": "POINT (850066.0537596783833578 2415464.2907346943393350)", - "surface": 18880000, - "canton": null, - "numero_insee": "55398" - } - }, - { - "pk": 23134, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PAREID", - "center": "POINT (846049.5146174260880798 2463662.3100347993895411)", - "surface": 7140000, - "canton": null, - "numero_insee": "55399" - } - }, - { - "pk": 8739, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PARFONDRUPT", - "center": "POINT (847227.0006197385955602 2466374.1934287426993251)", - "surface": 8510000, - "canton": null, - "numero_insee": "55400" - } - }, - { - "pk": 11496, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES PAROCHES", - "center": "POINT (830948.3390822093933821 2439316.5807135305367410)", - "surface": 10250000, - "canton": null, - "numero_insee": "55401" - } - }, - { - "pk": 28018, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PEUVILLERS", - "center": "POINT (822410.3231921979459003 2489776.3907683389261365)", - "surface": 4850000, - "canton": null, - "numero_insee": "55403" - } - }, - { - "pk": 4528, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PIERREFITTE-SUR-AIRE", - "center": "POINT (820848.2748529700329527 2438529.5095166782848537)", - "surface": 17600000, - "canton": null, - "numero_insee": "55404" - } - }, - { - "pk": 28468, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PILLON", - "center": "POINT (835609.1284617816563696 2490890.2459048544988036)", - "surface": 15560000, - "canton": null, - "numero_insee": "55405" - } - }, - { - "pk": 7665, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PINTHEVILLE", - "center": "POINT (843356.5381457129260525 2462638.5216856976039708)", - "surface": 5210000, - "canton": null, - "numero_insee": "55406" - } - }, - { - "pk": 10673, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PONT-SUR-MEUSE", - "center": "POINT (836148.4396250456338748 2428053.5250226603820920)", - "surface": 3610000, - "canton": null, - "numero_insee": "55407" - } - }, - { - "pk": 26067, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "PRETZ-EN-ARGONNE", - "center": "POINT (805891.3646897650323808 2444005.1806101533584297)", - "surface": 9830000, - "canton": null, - "numero_insee": "55409" - } - }, - { - "pk": 9538, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "QUINCY-LANDZECOURT", - "center": "POINT (814489.3839376936666667 2503317.0496111521497369)", - "surface": 12590000, - "canton": null, - "numero_insee": "55410" - } - }, - { - "pk": 20729, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RAMBLUZIN-ET-BENOITE-VAUX", - "center": "POINT (819368.5509660254465416 2447723.0017418526113033)", - "surface": 18400000, - "canton": null, - "numero_insee": "55411" - } - }, - { - "pk": 5728, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RAMBUCOURT", - "center": "POINT (851127.4928974159993231 2431684.5535877333022654)", - "surface": 14780000, - "canton": null, - "numero_insee": "55412" - } - }, - { - "pk": 20435, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RANCOURT-SUR-ORNAIN", - "center": "POINT (789419.9746157898334786 2427653.3748673014342785)", - "surface": 9850000, - "canton": null, - "numero_insee": "55414" - } - }, - { - "pk": 12033, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RANZIERES", - "center": "POINT (831538.0262493190821260 2452230.2728250324726105)", - "surface": 13940000, - "canton": null, - "numero_insee": "55415" - } - }, - { - "pk": 5875, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RARECOURT", - "center": "POINT (801781.9761135932058096 2456478.3261439180932939)", - "surface": 15340000, - "canton": null, - "numero_insee": "55416" - } - }, - { - "pk": 24732, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RECICOURT", - "center": "POINT (806108.3374489241978154 2465421.1868136813864112)", - "surface": 13500000, - "canton": null, - "numero_insee": "55419" - } - }, - { - "pk": 17318, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RECOURT-LE-CREUX", - "center": "POINT (822261.6963811998721212 2448748.4638143386691809)", - "surface": 14400000, - "canton": null, - "numero_insee": "55420" - } - }, - { - "pk": 26777, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "REFFROY", - "center": "POINT (831020.2961714357370511 2407595.4176411982625723)", - "surface": 9530000, - "canton": null, - "numero_insee": "55421" - } - }, - { - "pk": 11053, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "REGNEVILLE-SUR-MEUSE", - "center": "POINT (817018.6936884823953733 2476721.8785288911312819)", - "surface": 3800000, - "canton": null, - "numero_insee": "55422" - } - }, - { - "pk": 20261, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "REMBERCOURT-SOMMAISNE", - "center": "POINT (808331.3398230636958033 2439523.0425808411091566)", - "surface": 22330000, - "canton": null, - "numero_insee": "55423" - } - }, - { - "pk": 29383, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "REMENNECOURT", - "center": "POINT (789639.7614739693235606 2425353.6815015538595617)", - "surface": 2750000, - "canton": null, - "numero_insee": "55424" - } - }, - { - "pk": 5449, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "REMOIVILLE", - "center": "POINT (819739.4047896910924464 2497858.6009778501465917)", - "surface": 9770000, - "canton": null, - "numero_insee": "55425" - } - }, - { - "pk": 12854, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RESSON", - "center": "POINT (812775.3012292362982407 2423049.8686200976371765)", - "surface": 8320000, - "canton": null, - "numero_insee": "55426" - } - }, - { - "pk": 15941, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "REVIGNY-SUR-ORNAIN", - "center": "POINT (793915.0180732774315402 2428592.4053596351295710)", - "surface": 19320000, - "canton": null, - "numero_insee": "55427" - } - }, - { - "pk": 30778, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "REVILLE-AUX-BOIS", - "center": "POINT (818433.8064602724043652 2486740.4031364810653031)", - "surface": 11130000, - "canton": null, - "numero_insee": "55428" - } - }, - { - "pk": 9049, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RIAVILLE", - "center": "POINT (843173.6089948927983642 2460635.6365369320847094)", - "surface": 3420000, - "canton": null, - "numero_insee": "55429" - } - }, - { - "pk": 37158, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RIBEAUCOURT", - "center": "POINT (822994.9830400806386024 2398220.0687417699955404)", - "surface": 12490000, - "canton": null, - "numero_insee": "55430" - } - }, - { - "pk": 29034, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RICHECOURT", - "center": "POINT (850472.0959393356461078 2438083.2650877335108817)", - "surface": 6180000, - "canton": null, - "numero_insee": "55431" - } - }, - { - "pk": 26466, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RIGNY-LA-SALLE", - "center": "POINT (849424.9412388725904748 2408553.9733157730661333)", - "surface": 10330000, - "canton": null, - "numero_insee": "55433" - } - }, - { - "pk": 25183, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RIGNY-SAINT-MARTIN", - "center": "POINT (851540.8736027532722801 2406870.9642748818732798)", - "surface": 15990000, - "canton": null, - "numero_insee": "55434" - } - }, - { - "pk": 6535, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ROBERT-ESPAGNE", - "center": "POINT (797706.2559425903018564 2418217.6858949540182948)", - "surface": 7350000, - "canton": null, - "numero_insee": "55435" - } - }, - { - "pk": 34355, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES ROISES", - "center": "POINT (843885.4925005224067718 2389392.8860024563036859)", - "surface": 3820000, - "canton": null, - "numero_insee": "55436" - } - }, - { - "pk": 37159, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ROMAGNE-SOUS-LES-COTES", - "center": "POINT (827549.2227121831383556 2485617.7876635547727346)", - "surface": 14310000, - "canton": null, - "numero_insee": "55437" - } - }, - { - "pk": 31834, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ROMAGNE-SOUS-MONTFAUCON", - "center": "POINT (798940.8162311802152544 2484472.1743841227144003)", - "surface": 15520000, - "canton": null, - "numero_insee": "55438" - } - }, - { - "pk": 27229, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RONVAUX", - "center": "POINT (835339.8573206318542361 2463970.6110481768846512)", - "surface": 2590000, - "canton": null, - "numero_insee": "55439" - } - }, - { - "pk": 25689, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RAIVAL", - "center": "POINT (813766.2877234098268673 2435867.0802321466617286)", - "surface": 19120000, - "canton": null, - "numero_insee": "55442" - } - }, - { - "pk": 6733, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ROUVROIS-SUR-MEUSE", - "center": "POINT (833612.1849654556717724 2443742.3944726432673633)", - "surface": 6190000, - "canton": null, - "numero_insee": "55444" - } - }, - { - "pk": 37984, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "ROUVROIS-SUR-OTHAIN", - "center": "POINT (838995.5666625346057117 2492720.4566962555982172)", - "surface": 12230000, - "canton": null, - "numero_insee": "55445" - } - }, - { - "pk": 8466, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RUMONT", - "center": "POINT (815620.5128395042847842 2429678.7515131295658648)", - "surface": 6390000, - "canton": null, - "numero_insee": "55446" - } - }, - { - "pk": 17296, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RUPT-AUX-NONAINS", - "center": "POINT (803174.6476209779502824 2410659.1893764426931739)", - "surface": 20530000, - "canton": null, - "numero_insee": "55447" - } - }, - { - "pk": 26958, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RUPT-DEVANT-SAINT-MIHIEL", - "center": "POINT (824771.2074489588849247 2436161.5136348041705787)", - "surface": 6320000, - "canton": null, - "numero_insee": "55448" - } - }, - { - "pk": 33338, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RUPT-EN-WOEVRE", - "center": "POINT (830904.1957684477092698 2456127.4191408255137503)", - "surface": 17120000, - "canton": null, - "numero_insee": "55449" - } - }, - { - "pk": 25044, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "RUPT-SUR-OTHAIN", - "center": "POINT (828165.5101918354630470 2495429.2787153404206038)", - "surface": 5590000, - "canton": null, - "numero_insee": "55450" - } - }, - { - "pk": 11620, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-AMAND-SUR-ORNAIN", - "center": "POINT (825416.7903869479196146 2407547.3675324041396379)", - "surface": 6070000, - "canton": null, - "numero_insee": "55452" - } - }, - { - "pk": 26175, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-ANDRE-EN-BARROIS", - "center": "POINT (811947.8777418327517807 2449560.7009167824871838)", - "surface": 9320000, - "canton": null, - "numero_insee": "55453" - } - }, - { - "pk": 16541, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-AUBIN-SUR-AIRE", - "center": "POINT (828934.0911764110205695 2417484.4130149390548468)", - "surface": 14230000, - "canton": null, - "numero_insee": "55454" - } - }, - { - "pk": 12837, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-GERMAIN-SUR-MEUSE", - "center": "POINT (849505.2298436457058415 2410856.2702792994678020)", - "surface": 7710000, - "canton": null, - "numero_insee": "55456" - } - }, - { - "pk": 18186, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-HILAIRE-EN-WOEVRE", - "center": "POINT (846296.9097106959670782 2458160.8180217430926859)", - "surface": 11080000, - "canton": null, - "numero_insee": "55457" - } - }, - { - "pk": 36155, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-JEAN-LES-BUZY", - "center": "POINT (848402.7616793604101986 2469286.1876982813701034)", - "surface": 10450000, - "canton": null, - "numero_insee": "55458" - } - }, - { - "pk": 27570, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-JOIRE", - "center": "POINT (826661.2947983063058928 2402454.4587941472418606)", - "surface": 18210000, - "canton": null, - "numero_insee": "55459" - } - }, - { - "pk": 3743, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-JULIEN-SOUS-LES-COTES", - "center": "POINT (840739.2181030753999949 2429493.8877693759277463)", - "surface": 5020000, - "canton": null, - "numero_insee": "55460" - } - }, - { - "pk": 4215, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-LAURENT-SUR-OTHAIN", - "center": "POINT (831786.3980925844516605 2493258.9562810342758894)", - "surface": 16890000, - "canton": null, - "numero_insee": "55461" - } - }, - { - "pk": 30701, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-MAURICE-SOUS-LES-COTES", - "center": "POINT (843557.1439684764482081 2450932.5120003116317093)", - "surface": 9360000, - "canton": null, - "numero_insee": "55462" - } - }, - { - "pk": 3398, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-MIHIEL", - "center": "POINT (838069.7829173536738381 2437376.3389653083868325)", - "surface": 32980000, - "canton": null, - "numero_insee": "55463" - } - }, - { - "pk": 6614, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-PIERREVILLERS", - "center": "POINT (843407.4763330859132111 2491657.6509491321630776)", - "surface": 11190000, - "canton": null, - "numero_insee": "55464" - } - }, - { - "pk": 30936, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAINT-REMY-LA-CALONNE", - "center": "POINT (837727.0858438849681988 2453984.5124302920885384)", - "surface": 8120000, - "canton": null, - "numero_insee": "55465" - } - }, - { - "pk": 32726, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SALMAGNE", - "center": "POINT (820392.8248453217092901 2421614.0905243316665292)", - "surface": 16640000, - "canton": null, - "numero_insee": "55466" - } - }, - { - "pk": 16147, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAMPIGNY", - "center": "POINT (831336.0706269730580971 2429112.9860461931675673)", - "surface": 20480000, - "canton": null, - "numero_insee": "55467" - } - }, - { - "pk": 25223, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAMOGNEUX", - "center": "POINT (819213.0888089968357235 2477541.1971861966885626)", - "surface": 6180000, - "canton": null, - "numero_insee": "55468" - } - }, - { - "pk": 12692, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SASSEY-SUR-MEUSE", - "center": "POINT (806962.3008634761208668 2494246.9573462116532028)", - "surface": 4400000, - "canton": null, - "numero_insee": "55469" - } - }, - { - "pk": 33991, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAUDRUPT", - "center": "POINT (800342.9491437781834975 2414137.3987515806220472)", - "surface": 7680000, - "canton": null, - "numero_insee": "55470" - } - }, - { - "pk": 10828, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAULMORY-ET-VILLEFRANCHE", - "center": "POINT (805736.7970904245739803 2497138.2887640269473195)", - "surface": 6940000, - "canton": null, - "numero_insee": "55471" - } - }, - { - "pk": 23154, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAULVAUX", - "center": "POINT (829958.7388128722086549 2414691.2605332862585783)", - "surface": 22320000, - "canton": null, - "numero_insee": "55472" - } - }, - { - "pk": 9176, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAULX-LES-CHAMPLON", - "center": "POINT (842396.3428459074348211 2457927.1821870445273817)", - "surface": 7820000, - "canton": null, - "numero_insee": "55473" - } - }, - { - "pk": 35033, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAUVIGNY", - "center": "POINT (851145.4604782408569008 2394658.9540764801204205)", - "surface": 17420000, - "canton": null, - "numero_insee": "55474" - } - }, - { - "pk": 9279, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAUVOY", - "center": "POINT (840510.7823713733814657 2409478.1143340440467000)", - "surface": 7830000, - "canton": null, - "numero_insee": "55475" - } - }, - { - "pk": 31534, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAVONNIERES-DEVANT-BAR", - "center": "POINT (808795.1174703030847013 2420414.0040301736444235)", - "surface": 5140000, - "canton": null, - "numero_insee": "55476" - } - }, - { - "pk": 12370, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SAVONNIERES-EN-PERTHOIS", - "center": "POINT (806329.6692839690949768 2404481.8522881744429469)", - "surface": 9950000, - "canton": null, - "numero_insee": "55477" - } - }, - { - "pk": 11635, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SEIGNEULLES", - "center": "POINT (812398.0030328031862155 2432052.7860623672604561)", - "surface": 11650000, - "canton": null, - "numero_insee": "55479" - } - }, - { - "pk": 32727, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SENONCOURT-LES-MAUJOUY", - "center": "POINT (819803.6801765703130513 2455331.7785946736112237)", - "surface": 14850000, - "canton": null, - "numero_insee": "55482" - } - }, - { - "pk": 38048, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SEPTSARGES", - "center": "POINT (806581.9295291901798919 2480234.8107296316884458)", - "surface": 8890000, - "canton": null, - "numero_insee": "55484" - } - }, - { - "pk": 9936, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SEPVIGNY", - "center": "POINT (847784.9080162856262177 2401434.8961021248251200)", - "surface": 6440000, - "canton": null, - "numero_insee": "55485" - } - }, - { - "pk": 26807, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SEUZEY", - "center": "POINT (835975.8334520926000550 2448165.6226759837009013)", - "surface": 4620000, - "canton": null, - "numero_insee": "55487" - } - }, - { - "pk": 6742, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SILMONT", - "center": "POINT (814006.0299874016782269 2419557.9995442372746766)", - "surface": 3440000, - "canton": null, - "numero_insee": "55488" - } - }, - { - "pk": 28194, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SIVRY-LA-PERCHE", - "center": "POINT (813424.5642667582724243 2464082.9133044728077948)", - "surface": 12210000, - "canton": null, - "numero_insee": "55489" - } - }, - { - "pk": 26545, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SIVRY-SUR-MEUSE", - "center": "POINT (814245.1581990488339216 2485103.4971844097599387)", - "surface": 22160000, - "canton": null, - "numero_insee": "55490" - } - }, - { - "pk": 25379, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SOMMEDIEUE", - "center": "POINT (829366.4100420336471871 2460417.0624322928488255)", - "surface": 33470000, - "canton": null, - "numero_insee": "55492" - } - }, - { - "pk": 3243, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SOMMEILLES", - "center": "POINT (792929.7975882226601243 2438490.6930414768867195)", - "surface": 18620000, - "canton": null, - "numero_insee": "55493" - } - }, - { - "pk": 32114, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SOMMELONNE", - "center": "POINT (798861.7002027150010690 2411823.1335912169888616)", - "surface": 10230000, - "canton": null, - "numero_insee": "55494" - } - }, - { - "pk": 25043, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SORBEY", - "center": "POINT (835979.2918433831073344 2494395.6344439191743731)", - "surface": 12440000, - "canton": null, - "numero_insee": "55495" - } - }, - { - "pk": 5566, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SORCY-SAINT-MARTIN", - "center": "POINT (844636.0640087290666997 2418519.7921420577913523)", - "surface": 21640000, - "canton": null, - "numero_insee": "55496" - } - }, - { - "pk": 20176, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "LES SOUHESMES-RAMPONT", - "center": "POINT (811873.3327584003563970 2458265.8222082504071295)", - "surface": 21720000, - "canton": null, - "numero_insee": "55497" - } - }, - { - "pk": 17319, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SOUILLY", - "center": "POINT (816731.0040780388517305 2451903.1980943400412798)", - "surface": 26650000, - "canton": null, - "numero_insee": "55498" - } - }, - { - "pk": 18824, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SPINCOURT", - "center": "POINT (844348.3774783681146801 2486962.7500097979791462)", - "surface": 27340000, - "canton": null, - "numero_insee": "55500" - } - }, - { - "pk": 14890, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "STAINVILLE", - "center": "POINT (809396.4980848181294277 2408610.9694914873689413)", - "surface": 21090000, - "canton": null, - "numero_insee": "55501" - } - }, - { - "pk": 17225, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "STENAY", - "center": "POINT (807378.6346156505169347 2504056.6507893842644989)", - "surface": 27420000, - "canton": null, - "numero_insee": "55502" - } - }, - { - "pk": 22759, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TAILLANCOURT", - "center": "POINT (845635.0828713553491980 2395412.1847403319552541)", - "surface": 11190000, - "canton": null, - "numero_insee": "55503" - } - }, - { - "pk": 30023, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TANNOIS", - "center": "POINT (812229.7677297085756436 2416640.7858447022736073)", - "surface": 13790000, - "canton": null, - "numero_insee": "55504" - } - }, - { - "pk": 35763, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "THIERVILLE-SUR-MEUSE", - "center": "POINT (818995.2327450615121052 2467933.1174298706464469)", - "surface": 11530000, - "canton": null, - "numero_insee": "55505" - } - }, - { - "pk": 32408, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "THILLOMBOIS", - "center": "POINT (823303.4606210438068956 2443954.1849424042738974)", - "surface": 13110000, - "canton": null, - "numero_insee": "55506" - } - }, - { - "pk": 34977, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "THILLOT", - "center": "POINT (843543.3940258752554655 2452533.4578487575054169)", - "surface": 3660000, - "canton": null, - "numero_insee": "55507" - } - }, - { - "pk": 29334, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "THONNE-LA-LONG", - "center": "POINT (823620.6542678419500589 2512000.6340069007128477)", - "surface": 9580000, - "canton": null, - "numero_insee": "55508" - } - }, - { - "pk": 29805, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "THONNE-LE-THIL", - "center": "POINT (817413.0067562530748546 2512447.7297745407558978)", - "surface": 11340000, - "canton": null, - "numero_insee": "55509" - } - }, - { - "pk": 25007, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "THONNE-LES-PRES", - "center": "POINT (817750.8962971409782767 2508047.9112653140909970)", - "surface": 5410000, - "canton": null, - "numero_insee": "55510" - } - }, - { - "pk": 27001, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "THONNELLE", - "center": "POINT (818832.6304836242925376 2510258.5408772188238800)", - "surface": 6090000, - "canton": null, - "numero_insee": "55511" - } - }, - { - "pk": 20877, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TILLY-SUR-MEUSE", - "center": "POINT (825266.9070694845868275 2448373.9598508095368743)", - "surface": 13760000, - "canton": null, - "numero_insee": "55512" - } - }, - { - "pk": 24640, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TREMONT-SUR-SAULX", - "center": "POINT (800997.1651591288391501 2419546.7273928495123982)", - "surface": 11880000, - "canton": null, - "numero_insee": "55514" - } - }, - { - "pk": 10085, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TRESAUVAUX", - "center": "POINT (839390.2892467854544520 2458401.6999090891331434)", - "surface": 3940000, - "canton": null, - "numero_insee": "55515" - } - }, - { - "pk": 16867, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "SEUIL-D'ARGONNE", - "center": "POINT (799177.0991771261906251 2445148.5392202679067850)", - "surface": 25600000, - "canton": null, - "numero_insee": "55517" - } - }, - { - "pk": 22741, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "COUSANCES-LES-TRICONVILLE", - "center": "POINT (825181.1922872145660222 2423356.3010837174952030)", - "surface": 18440000, - "canton": null, - "numero_insee": "55518" - } - }, - { - "pk": 23845, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TRONVILLE-EN-BARROIS", - "center": "POINT (816525.5701820332324132 2417478.1295240875333548)", - "surface": 12660000, - "canton": null, - "numero_insee": "55519" - } - }, - { - "pk": 18849, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TROUSSEY", - "center": "POINT (847053.8782601879211143 2416639.2441469458863139)", - "surface": 17260000, - "canton": null, - "numero_insee": "55520" - } - }, - { - "pk": 14761, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "TROYON", - "center": "POINT (830462.2680219589965418 2449319.1151702185161412)", - "surface": 12990000, - "canton": null, - "numero_insee": "55521" - } - }, - { - "pk": 10274, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "UGNY-SUR-MEUSE", - "center": "POINT (847114.0469984968658537 2409634.8895339649170637)", - "surface": 4250000, - "canton": null, - "numero_insee": "55522" - } - }, - { - "pk": 25741, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VACHERAUVILLE", - "center": "POINT (820440.3573345863260329 2474449.7171315611340106)", - "surface": 7280000, - "canton": null, - "numero_insee": "55523" - } - }, - { - "pk": 4451, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VADELAINCOURT", - "center": "POINT (813590.6101487347623333 2456379.2764346795156598)", - "surface": 5420000, - "canton": null, - "numero_insee": "55525" - } - }, - { - "pk": 30725, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VADONVILLE", - "center": "POINT (833456.2364977530669421 2426929.6711840061470866)", - "surface": 5260000, - "canton": null, - "numero_insee": "55526" - } - }, - { - "pk": 31412, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VARENNES-EN-ARGONNE", - "center": "POINT (795234.4950113088125363 2473233.2929781447164714)", - "surface": 11780000, - "canton": null, - "numero_insee": "55527" - } - }, - { - "pk": 33074, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VARNEVILLE", - "center": "POINT (843684.3286261961329728 2436123.6656033387407660)", - "surface": 6490000, - "canton": null, - "numero_insee": "55528" - } - }, - { - "pk": 18342, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VALBOIS", - "center": "POINT (840334.2280866302317008 2441698.6792671303264797)", - "surface": 17050000, - "canton": null, - "numero_insee": "55530" - } - }, - { - "pk": 12386, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VASSINCOURT", - "center": "POINT (797640.3720838942099363 2425922.4125000787898898)", - "surface": 7940000, - "canton": null, - "numero_insee": "55531" - } - }, - { - "pk": 18123, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAUBECOURT", - "center": "POINT (803008.4692690367810428 2441779.0361682926304638)", - "surface": 22620000, - "canton": null, - "numero_insee": "55532" - } - }, - { - "pk": 14893, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAUCOULEURS", - "center": "POINT (843634.2010150456335396 2407003.1830850238911808)", - "surface": 39470000, - "canton": null, - "numero_insee": "55533" - } - }, - { - "pk": 33915, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAUDEVILLE-LE-HAUT", - "center": "POINT (840592.8264990790048614 2388263.8300926508381963)", - "surface": 9700000, - "canton": null, - "numero_insee": "55534" - } - }, - { - "pk": 3284, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAUDONCOURT", - "center": "POINT (840663.4797048601321876 2484929.8258499307557940)", - "surface": 6000000, - "canton": null, - "numero_insee": "55535" - } - }, - { - "pk": 34121, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAUQUOIS", - "center": "POINT (800263.0371631467714906 2470274.3577780793420970)", - "surface": 8160000, - "canton": null, - "numero_insee": "55536" - } - }, - { - "pk": 36468, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAUX-DEVANT-DAMLOUP", - "center": "POINT (827965.2463272929890081 2472112.6813192181289196)", - "surface": 6560000, - "canton": null, - "numero_insee": "55537" - } - }, - { - "pk": 29568, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAUX-LES-PALAMEIX", - "center": "POINT (835041.8102620791178197 2452060.2039478775113821)", - "surface": 10540000, - "canton": null, - "numero_insee": "55540" - } - }, - { - "pk": 20858, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VAVINCOURT", - "center": "POINT (809924.7564389444887638 2428729.3631887398660183)", - "surface": 16050000, - "canton": null, - "numero_insee": "55541" - } - }, - { - "pk": 13789, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VELAINES", - "center": "POINT (817947.8661908784415573 2414988.5828208979219198)", - "surface": 10840000, - "canton": null, - "numero_insee": "55543" - } - }, - { - "pk": 21922, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VELOSNES", - "center": "POINT (826385.6193190577905625 2504619.7667439319193363)", - "surface": 4420000, - "canton": null, - "numero_insee": "55544" - } - }, - { - "pk": 23135, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VERDUN", - "center": "POINT (820721.0842014054069296 2465046.0166997029446065)", - "surface": 31820000, - "canton": null, - "numero_insee": "55545" - } - }, - { - "pk": 29983, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VERNEUIL-GRAND", - "center": "POINT (823754.1673389344941825 2508099.3716477830894291)", - "surface": 6270000, - "canton": null, - "numero_insee": "55546" - } - }, - { - "pk": 7647, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VERNEUIL-PETIT", - "center": "POINT (823140.1143033322878182 2509695.0956298043020070)", - "surface": 3930000, - "canton": null, - "numero_insee": "55547" - } - }, - { - "pk": 36046, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VERY", - "center": "POINT (800723.9496928020380437 2474881.2752884225919843)", - "surface": 11830000, - "canton": null, - "numero_insee": "55549" - } - }, - { - "pk": 17819, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VIGNEULLES-LES-HATTONCHATEL", - "center": "POINT (847982.1007081245770678 2448368.7904293956235051)", - "surface": 63920000, - "canton": null, - "numero_insee": "55551" - } - }, - { - "pk": 26412, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VIGNEUL-SOUS-MONTMEDY", - "center": "POINT (816874.4116264634067193 2505238.6651855995878577)", - "surface": 4660000, - "canton": null, - "numero_insee": "55552" - } - }, - { - "pk": 33684, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VIGNOT", - "center": "POINT (840776.1587772436905652 2425191.2621984388679266)", - "surface": 16110000, - "canton": null, - "numero_insee": "55553" - } - }, - { - "pk": 12979, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLECLOYE", - "center": "POINT (822273.0787584643112496 2505785.2476741098798811)", - "surface": 7080000, - "canton": null, - "numero_insee": "55554" - } - }, - { - "pk": 34976, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLE-DEVANT-BELRAIN", - "center": "POINT (821377.7324180300347507 2435131.7485586279071867)", - "surface": 6190000, - "canton": null, - "numero_insee": "55555" - } - }, - { - "pk": 8027, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLE-DEVANT-CHAUMONT", - "center": "POINT (824984.6498086837818846 2481293.0476518105715513)", - "surface": 4220000, - "canton": null, - "numero_insee": "55556" - } - }, - { - "pk": 21114, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLE-EN-WOEVRE", - "center": "POINT (839233.5331863425672054 2465004.6889501432888210)", - "surface": 14280000, - "canton": null, - "numero_insee": "55557" - } - }, - { - "pk": 8462, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLEROY-SUR-MEHOLLE", - "center": "POINT (838531.8631160380318761 2406859.3083525607362390)", - "surface": 6450000, - "canton": null, - "numero_insee": "55559" - } - }, - { - "pk": 10710, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLERS-AUX-VENTS", - "center": "POINT (796985.2475324752740562 2432321.1713077728636563)", - "surface": 6090000, - "canton": null, - "numero_insee": "55560" - } - }, - { - "pk": 28890, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLERS-DEVANT-DUN", - "center": "POINT (801572.9958102395758033 2492599.8260714262723923)", - "surface": 8000000, - "canton": null, - "numero_insee": "55561" - } - }, - { - "pk": 33439, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLERS-LE-SEC", - "center": "POINT (818417.5524086633231491 2406886.9643413438461721)", - "surface": 6990000, - "canton": null, - "numero_insee": "55562" - } - }, - { - "pk": 25009, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLERS-LES-MANGIENNES", - "center": "POINT (830121.5028366059996188 2489042.0141924866475165)", - "surface": 8550000, - "canton": null, - "numero_insee": "55563" - } - }, - { - "pk": 7727, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLERS-SOUS-PAREID", - "center": "POINT (848547.5295290504582226 2464084.0352390822954476)", - "surface": 6160000, - "canton": null, - "numero_insee": "55565" - } - }, - { - "pk": 31624, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLERS-SUR-MEUSE", - "center": "POINT (824338.9225422128802165 2451568.1338142240419984)", - "surface": 7370000, - "canton": null, - "numero_insee": "55566" - } - }, - { - "pk": 24441, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLE-SUR-COUSANCES", - "center": "POINT (807680.2968711932189763 2457129.1977037554606795)", - "surface": 9640000, - "canton": null, - "numero_insee": "55567" - } - }, - { - "pk": 27034, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLE-SUR-SAULX", - "center": "POINT (801121.1919767278013751 2416745.8555733086541295)", - "surface": 4070000, - "canton": null, - "numero_insee": "55568" - } - }, - { - "pk": 36259, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLOTTE-DEVANT-LOUPPY", - "center": "POINT (800855.9407515283674002 2436056.7813500654883683)", - "surface": 11340000, - "canton": null, - "numero_insee": "55569" - } - }, - { - "pk": 17642, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILLOTTE-SUR-AIRE", - "center": "POINT (821495.8016084256814793 2433031.3361420901492238)", - "surface": 13990000, - "canton": null, - "numero_insee": "55570" - } - }, - { - "pk": 14740, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VILOSNES-HARAUMONT", - "center": "POINT (810340.3899615679401904 2485370.2456569569185376)", - "surface": 15450000, - "canton": null, - "numero_insee": "55571" - } - }, - { - "pk": 37311, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VITTARVILLE", - "center": "POINT (823190.1832562299678102 2492184.5949097424745560)", - "surface": 8260000, - "canton": null, - "numero_insee": "55572" - } - }, - { - "pk": 4159, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VOID-VACON", - "center": "POINT (841878.1508299461565912 2413392.5722913374193013)", - "surface": 35560000, - "canton": null, - "numero_insee": "55573" - } - }, - { - "pk": 12498, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VOUTHON-BAS", - "center": "POINT (842155.1934551915619522 2392780.4543879530392587)", - "surface": 7120000, - "canton": null, - "numero_insee": "55574" - } - }, - { - "pk": 30775, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "VOUTHON-HAUT", - "center": "POINT (841469.3506604089634493 2391073.3548445543274283)", - "surface": 13380000, - "canton": null, - "numero_insee": "55575" - } - }, - { - "pk": 24822, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WALY", - "center": "POINT (802030.0318321868544444 2450876.7418598122894764)", - "surface": 6180000, - "canton": null, - "numero_insee": "55577" - } - }, - { - "pk": 7906, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WARCQ", - "center": "POINT (841083.9420972544467077 2470924.4230331964790821)", - "surface": 4960000, - "canton": null, - "numero_insee": "55578" - } - }, - { - "pk": 7793, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WATRONVILLE", - "center": "POINT (834331.5482495883479714 2464862.5466855964623392)", - "surface": 6530000, - "canton": null, - "numero_insee": "55579" - } - }, - { - "pk": 9938, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WAVRILLE", - "center": "POINT (821055.8521360866725445 2484361.3470632974058390)", - "surface": 5380000, - "canton": null, - "numero_insee": "55580" - } - }, - { - "pk": 11884, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WILLERONCOURT", - "center": "POINT (822232.5226630653487518 2417126.7515655960887671)", - "surface": 8030000, - "canton": null, - "numero_insee": "55581" - } - }, - { - "pk": 8545, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WISEPPE", - "center": "POINT (805115.9115927725797519 2499534.4768557259812951)", - "surface": 5710000, - "canton": null, - "numero_insee": "55582" - } - }, - { - "pk": 12131, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WOEL", - "center": "POINT (848931.9662407881114632 2454280.8785722381435335)", - "surface": 13390000, - "canton": null, - "numero_insee": "55583" - } - }, - { - "pk": 17432, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "WOIMBEY", - "center": "POINT (828195.2298876349814236 2445296.9987132879905403)", - "surface": 15310000, - "canton": null, - "numero_insee": "55584" - } - }, - { - "pk": 21387, - "model": "ishtar_common.town", - "fields": { - "departement": 56, - "name": "XIVRAY-ET-MARVOISIN", - "center": "POINT (848996.1258241627365351 2435168.6177879199385643)", - "surface": 14500000, - "canton": null, - "numero_insee": "55586" - } - }, - { - "pk": 4568, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ALLAIRE", - "center": "POINT (260973.1582675122190267 2302960.9949651821516454)", - "surface": 42390000, - "canton": null, - "numero_insee": "56001" - } - }, - { - "pk": 14871, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "AMBON", - "center": "POINT (233111.5387841017800383 2295529.1489554718136787)", - "surface": 38060000, - "canton": null, - "numero_insee": "56002" - } - }, - { - "pk": 3211, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ARRADON", - "center": "POINT (212515.7037686507683247 2305370.2107441718690097)", - "surface": 19110000, - "canton": null, - "numero_insee": "56003" - } - }, - { - "pk": 14655, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ARZAL", - "center": "POINT (243057.6894024880020879 2290806.0243095457553864)", - "surface": 25410000, - "canton": null, - "numero_insee": "56004" - } - }, - { - "pk": 15458, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ARZON", - "center": "POINT (206986.9426430681487545 2296018.1669173976406455)", - "surface": 9390000, - "canton": null, - "numero_insee": "56005" - } - }, - { - "pk": 15232, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "AUGAN", - "center": "POINT (255920.1286878460086882 2333643.6174010392278433)", - "surface": 41000000, - "canton": null, - "numero_insee": "56006" - } - }, - { - "pk": 28449, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "AURAY", - "center": "POINT (200168.8587071371148340 2309974.0512800072319806)", - "surface": 7120000, - "canton": null, - "numero_insee": "56007" - } - }, - { - "pk": 18816, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BADEN", - "center": "POINT (206324.1976887666969560 2303718.8761291895061731)", - "surface": 23260000, - "canton": null, - "numero_insee": "56008" - } - }, - { - "pk": 3525, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BANGOR", - "center": "POINT (182363.5199175991001539 2271699.9484804496169090)", - "surface": 25650000, - "canton": null, - "numero_insee": "56009" - } - }, - { - "pk": 24004, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BAUD", - "center": "POINT (198680.3586697626742534 2333179.9239433412440121)", - "surface": 48690000, - "canton": null, - "numero_insee": "56010" - } - }, - { - "pk": 15084, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BEGANNE", - "center": "POINT (255699.4391620765672997 2299215.2327970024198294)", - "surface": 35390000, - "canton": null, - "numero_insee": "56011" - } - }, - { - "pk": 3340, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BEIGNON", - "center": "POINT (262780.1743388781906106 2339203.5257863169535995)", - "surface": 24980000, - "canton": null, - "numero_insee": "56012" - } - }, - { - "pk": 3018, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BELZ", - "center": "POINT (187347.5837845007772557 2311371.6782704759389162)", - "surface": 16040000, - "canton": null, - "numero_insee": "56013" - } - }, - { - "pk": 21268, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BERNE", - "center": "POINT (174048.7422525252914056 2347191.9424569243565202)", - "surface": 35230000, - "canton": null, - "numero_insee": "56014" - } - }, - { - "pk": 23043, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BERRIC", - "center": "POINT (234640.4816222437657416 2304448.5476068570278585)", - "surface": 21520000, - "canton": null, - "numero_insee": "56015" - } - }, - { - "pk": 14873, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BIEUZY", - "center": "POINT (199369.3531043546972796 2346995.9372098362073302)", - "surface": 18780000, - "canton": null, - "numero_insee": "56016" - } - }, - { - "pk": 20005, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BIGNAN", - "center": "POINT (219005.0271268073702231 2332043.2880138354375958)", - "surface": 46040000, - "canton": null, - "numero_insee": "56017" - } - }, - { - "pk": 3047, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BILLIERS", - "center": "POINT (237447.9319926914176904 2291461.0670479130931199)", - "surface": 6040000, - "canton": null, - "numero_insee": "56018" - } - }, - { - "pk": 5095, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BILLIO", - "center": "POINT (227223.7093720640987158 2330508.6201585098169744)", - "surface": 11990000, - "canton": null, - "numero_insee": "56019" - } - }, - { - "pk": 19349, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BOHAL", - "center": "POINT (241717.3650406349916011 2320318.2198315383866429)", - "surface": 8460000, - "canton": null, - "numero_insee": "56020" - } - }, - { - "pk": 12011, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BRANDERION", - "center": "POINT (185938.4471379246097058 2324770.6902332878671587)", - "surface": 6010000, - "canton": null, - "numero_insee": "56021" - } - }, - { - "pk": 18098, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BRANDIVY", - "center": "POINT (206171.2727426292840391 2322632.3393113096244633)", - "surface": 26020000, - "canton": null, - "numero_insee": "56022" - } - }, - { - "pk": 22013, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BRECH", - "center": "POINT (197928.4778878740034997 2314759.6870807283557951)", - "surface": 39790000, - "canton": null, - "numero_insee": "56023" - } - }, - { - "pk": 15994, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BREHAN", - "center": "POINT (225739.6321192892501131 2353113.6488493396900594)", - "surface": 51540000, - "canton": null, - "numero_insee": "56024" - } - }, - { - "pk": 36112, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BRIGNAC", - "center": "POINT (247729.3983393803937361 2356394.2301250668242574)", - "surface": 13150000, - "canton": null, - "numero_insee": "56025" - } - }, - { - "pk": 22072, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BUBRY", - "center": "POINT (188682.1946974419406615 2344407.7650691717863083)", - "surface": 69180000, - "canton": null, - "numero_insee": "56026" - } - }, - { - "pk": 28754, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BULEON", - "center": "POINT (225573.9621143748518080 2336499.8224379820749164)", - "surface": 12310000, - "canton": null, - "numero_insee": "56027" - } - }, - { - "pk": 3890, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CADEN", - "center": "POINT (251760.8684949791058898 2303586.6926459427922964)", - "surface": 38180000, - "canton": null, - "numero_insee": "56028" - } - }, - { - "pk": 4116, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CALAN", - "center": "POINT (177748.0241720594349317 2335212.6713241189718246)", - "surface": 12230000, - "canton": null, - "numero_insee": "56029" - } - }, - { - "pk": 29743, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CAMOEL", - "center": "POINT (243295.1939055116963573 2286204.2932590274140239)", - "surface": 14710000, - "canton": null, - "numero_insee": "56030" - } - }, - { - "pk": 18737, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CAMORS", - "center": "POINT (200723.7994069780688733 2327992.4586104038171470)", - "surface": 37080000, - "canton": null, - "numero_insee": "56031" - } - }, - { - "pk": 20486, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CAMPENEAC", - "center": "POINT (255573.5880898463656195 2339345.1190894939936697)", - "surface": 60880000, - "canton": null, - "numero_insee": "56032" - } - }, - { - "pk": 16028, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CARENTOIR", - "center": "POINT (264413.0051258840248920 2323004.4681155043654144)", - "surface": 59140000, - "canton": null, - "numero_insee": "56033" - } - }, - { - "pk": 20723, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CARNAC", - "center": "POINT (193813.5800115378806368 2303817.9323158091865480)", - "surface": 33640000, - "canton": null, - "numero_insee": "56034" - } - }, - { - "pk": 21507, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CARO", - "center": "POINT (251159.0509668107843027 2328400.9892558674328029)", - "surface": 38170000, - "canton": null, - "numero_insee": "56035" - } - }, - { - "pk": 18047, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CAUDAN", - "center": "POINT (175104.2159398543881252 2327985.8521993588656187)", - "surface": 42260000, - "canton": null, - "numero_insee": "56036" - } - }, - { - "pk": 5120, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA CHAPELLE-CARO", - "center": "POINT (245346.8815333523089066 2329354.5724418438039720)", - "surface": 16560000, - "canton": null, - "numero_insee": "56037" - } - }, - { - "pk": 7872, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA CHAPELLE-GACELINE", - "center": "POINT (267644.5486631305539049 2319427.9784341673366725)", - "surface": 7740000, - "canton": null, - "numero_insee": "56038" - } - }, - { - "pk": 4476, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA CHAPELLE-NEUVE", - "center": "POINT (205807.9581498162006028 2330435.3872510846704245)", - "surface": 21770000, - "canton": null, - "numero_insee": "56039" - } - }, - { - "pk": 14872, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CLEGUEREC", - "center": "POINT (198252.2780898752389476 2361397.6562528354115784)", - "surface": 63090000, - "canton": null, - "numero_insee": "56041" - } - }, - { - "pk": 32386, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "COURNON", - "center": "POINT (267581.9172646256629378 2314823.9178332374431193)", - "surface": 10900000, - "canton": null, - "numero_insee": "56044" - } - }, - { - "pk": 5058, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE COURS", - "center": "POINT (236843.1247107362723909 2316675.9052259749732912)", - "surface": 15680000, - "canton": null, - "numero_insee": "56045" - } - }, - { - "pk": 3048, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CRACH", - "center": "POINT (199101.2245800549862906 2305862.2171641322784126)", - "surface": 31680000, - "canton": null, - "numero_insee": "56046" - } - }, - { - "pk": 3867, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CREDIN", - "center": "POINT (219760.6601204861653969 2349962.9252936793491244)", - "surface": 33560000, - "canton": null, - "numero_insee": "56047" - } - }, - { - "pk": 17854, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE CROISTY", - "center": "POINT (174681.4842871896107681 2355603.3365594707429409)", - "surface": 15940000, - "canton": null, - "numero_insee": "56048" - } - }, - { - "pk": 12914, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CROIXANVEC", - "center": "POINT (212764.4872047928511165 2361214.7264833650551736)", - "surface": 6170000, - "canton": null, - "numero_insee": "56049" - } - }, - { - "pk": 27723, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA CROIX-HELLEAN", - "center": "POINT (238151.0406341932248324 2340504.7010471597313881)", - "surface": 14500000, - "canton": null, - "numero_insee": "56050" - } - }, - { - "pk": 21726, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "CRUGUEL", - "center": "POINT (231620.2898833547369577 2331344.8544979738071561)", - "surface": 17290000, - "canton": null, - "numero_insee": "56051" - } - }, - { - "pk": 17847, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "DAMGAN", - "center": "POINT (229438.0553593573276885 2291896.5212002778425813)", - "surface": 12210000, - "canton": null, - "numero_insee": "56052" - } - }, - { - "pk": 20613, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ELVEN", - "center": "POINT (230449.9474607424344867 2315222.9933015564456582)", - "surface": 64320000, - "canton": null, - "numero_insee": "56053" - } - }, - { - "pk": 35482, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ERDEVEN", - "center": "POINT (187479.1550139399478212 2307469.6919016358442605)", - "surface": 30520000, - "canton": null, - "numero_insee": "56054" - } - }, - { - "pk": 34963, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ETEL", - "center": "POINT (184457.6219831336638890 2309847.1857302249409258)", - "surface": 2030000, - "canton": null, - "numero_insee": "56055" - } - }, - { - "pk": 24124, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "EVRIGUET", - "center": "POINT (246853.9638300407677889 2353284.8214757316745818)", - "surface": 4920000, - "canton": null, - "numero_insee": "56056" - } - }, - { - "pk": 22020, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE FAOUET", - "center": "POINT (164478.5612452179193497 2355020.7844383097253740)", - "surface": 35100000, - "canton": null, - "numero_insee": "56057" - } - }, - { - "pk": 24599, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "FEREL", - "center": "POINT (247693.5354728841921315 2286840.4745131763629615)", - "surface": 30100000, - "canton": null, - "numero_insee": "56058" - } - }, - { - "pk": 22251, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LES FORGES", - "center": "POINT (233085.1439301238278858 2348169.4230396193452179)", - "surface": 52930000, - "canton": null, - "numero_insee": "56059" - } - }, - { - "pk": 19664, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LES FOUGERETS", - "center": "POINT (260173.4262326151947491 2315163.9934044568799436)", - "surface": 20060000, - "canton": null, - "numero_insee": "56060" - } - }, - { - "pk": 20516, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA GACILLY", - "center": "POINT (263355.3514215647010133 2317691.7902000555768609)", - "surface": 16510000, - "canton": null, - "numero_insee": "56061" - } - }, - { - "pk": 12970, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GAVRES", - "center": "POINT (174610.2659521483583376 2314771.6681919200345874)", - "surface": 1970000, - "canton": null, - "numero_insee": "56062" - } - }, - { - "pk": 28226, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GESTEL", - "center": "POINT (167799.0843232572660781 2327926.9909381880424917)", - "surface": 6220000, - "canton": null, - "numero_insee": "56063" - } - }, - { - "pk": 21392, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GLENAC", - "center": "POINT (264187.6475624327431433 2313795.5413807835429907)", - "surface": 13650000, - "canton": null, - "numero_insee": "56064" - } - }, - { - "pk": 36537, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GOURHEL", - "center": "POINT (249387.1867490457952954 2337093.2197623704560101)", - "surface": 2810000, - "canton": null, - "numero_insee": "56065" - } - }, - { - "pk": 16703, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GOURIN", - "center": "POINT (158191.4078055582940578 2365277.8429403090849519)", - "surface": 75100000, - "canton": null, - "numero_insee": "56066" - } - }, - { - "pk": 29015, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GRAND-CHAMP", - "center": "POINT (211600.1728225033730268 2319573.8521314626559615)", - "surface": 67370000, - "canton": null, - "numero_insee": "56067" - } - }, - { - "pk": 26730, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA GREE-SAINT-LAURENT", - "center": "POINT (239018.3884801394888200 2344614.8230371102690697)", - "surface": 7860000, - "canton": null, - "numero_insee": "56068" - } - }, - { - "pk": 3952, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GROIX", - "center": "POINT (164448.1182180036557838 2309085.4209167375229299)", - "surface": 15360000, - "canton": null, - "numero_insee": "56069" - } - }, - { - "pk": 19181, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUEGON", - "center": "POINT (232277.7923713561613113 2336654.2127399179153144)", - "surface": 53520000, - "canton": null, - "numero_insee": "56070" - } - }, - { - "pk": 21558, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUEHENNO", - "center": "POINT (227201.8217022259486839 2333210.5007204213179648)", - "surface": 23260000, - "canton": null, - "numero_insee": "56071" - } - }, - { - "pk": 21448, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUELTAS", - "center": "POINT (216808.4775220146984793 2356143.6587530765682459)", - "surface": 20770000, - "canton": null, - "numero_insee": "56072" - } - }, - { - "pk": 25805, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUEMENE-SUR-SCORFF", - "center": "POINT (187193.2220216738060117 2355303.9246395491063595)", - "surface": 1160000, - "canton": null, - "numero_insee": "56073" - } - }, - { - "pk": 18695, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUENIN", - "center": "POINT (203759.6491837408975698 2336223.2502057272940874)", - "surface": 28860000, - "canton": null, - "numero_insee": "56074" - } - }, - { - "pk": 16150, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUER", - "center": "POINT (266237.0327861341065727 2332526.5549000198952854)", - "surface": 52020000, - "canton": null, - "numero_insee": "56075" - } - }, - { - "pk": 16916, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUERN", - "center": "POINT (194631.3828332921257243 2351260.8971470985561609)", - "surface": 46930000, - "canton": null, - "numero_insee": "56076" - } - }, - { - "pk": 3588, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE GUERNO", - "center": "POINT (243894.9951126872911118 2298618.9852136946283281)", - "surface": 9670000, - "canton": null, - "numero_insee": "56077" - } - }, - { - "pk": 21621, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUIDEL", - "center": "POINT (163706.6748347151442431 2326593.0348637891001999)", - "surface": 52340000, - "canton": null, - "numero_insee": "56078" - } - }, - { - "pk": 14618, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUILLAC", - "center": "POINT (240189.7538022816879675 2335917.7542525501921773)", - "surface": 22010000, - "canton": null, - "numero_insee": "56079" - } - }, - { - "pk": 35354, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUILLIERS", - "center": "POINT (245981.7735732357832603 2349775.1330693638883531)", - "surface": 35020000, - "canton": null, - "numero_insee": "56080" - } - }, - { - "pk": 23916, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "GUISCRIFF", - "center": "POINT (155872.6913282970781438 2354951.5323171517811716)", - "surface": 84230000, - "canton": null, - "numero_insee": "56081" - } - }, - { - "pk": 30902, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "HELLEAN", - "center": "POINT (240349.3099346733652055 2340922.8306382377631962)", - "surface": 7960000, - "canton": null, - "numero_insee": "56082" - } - }, - { - "pk": 20530, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "HENNEBONT", - "center": "POINT (180416.8164966350886971 2326927.8401148505508900)", - "surface": 18790000, - "canton": null, - "numero_insee": "56083" - } - }, - { - "pk": 7766, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE HEZO", - "center": "POINT (221875.8655013843090273 2298840.7909234538674355)", - "surface": 5460000, - "canton": null, - "numero_insee": "56084" - } - }, - { - "pk": 6822, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "HOEDIC", - "center": "POINT (206372.5013571705203503 2272994.7961055608466268)", - "surface": 2380000, - "canton": null, - "numero_insee": "56085" - } - }, - { - "pk": 18442, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ILE-D'HOUAT", - "center": "POINT (199919.2096865537459962 2278947.4617986935190856)", - "surface": 3630000, - "canton": null, - "numero_insee": "56086" - } - }, - { - "pk": 29627, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ILE-AUX-MOINES", - "center": "POINT (209855.0477456734515727 2300244.6796210808679461)", - "surface": 3260000, - "canton": null, - "numero_insee": "56087" - } - }, - { - "pk": 21014, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ILE-D'ARZ", - "center": "POINT (213854.6967385871103033 2300677.3539793486706913)", - "surface": 3100000, - "canton": null, - "numero_insee": "56088" - } - }, - { - "pk": 19038, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "INGUINIEL", - "center": "POINT (182285.8543949073646218 2343355.4073542985133827)", - "surface": 51440000, - "canton": null, - "numero_insee": "56089" - } - }, - { - "pk": 20663, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "INZINZAC-LOCHRIST", - "center": "POINT (182075.2334196227020584 2332245.2760774996131659)", - "surface": 44950000, - "canton": null, - "numero_insee": "56090" - } - }, - { - "pk": 32831, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "JOSSELIN", - "center": "POINT (235255.5319214132032357 2339680.6202575596980751)", - "surface": 4450000, - "canton": null, - "numero_insee": "56091" - } - }, - { - "pk": 10480, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "KERGRIST", - "center": "POINT (208447.8340128895360976 2362881.0775024225004017)", - "surface": 29800000, - "canton": null, - "numero_insee": "56093" - } - }, - { - "pk": 19836, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "KERVIGNAC", - "center": "POINT (181653.1741826258949004 2322534.4236753396689892)", - "surface": 39310000, - "canton": null, - "numero_insee": "56094" - } - }, - { - "pk": 3887, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANDAUL", - "center": "POINT (192692.4547538500046358 2318720.4988718489184976)", - "surface": 18020000, - "canton": null, - "numero_insee": "56096" - } - }, - { - "pk": 17276, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANESTER", - "center": "POINT (175845.0416041068383493 2322987.9754838021472096)", - "surface": 16230000, - "canton": null, - "numero_insee": "56098" - } - }, - { - "pk": 4558, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANGOELAN", - "center": "POINT (185542.0849659737432376 2361495.2126804306171834)", - "surface": 22660000, - "canton": null, - "numero_insee": "56099" - } - }, - { - "pk": 18965, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANGONNET", - "center": "POINT (167207.9509063419536687 2364049.4508348917588592)", - "surface": 86020000, - "canton": null, - "numero_insee": "56100" - } - }, - { - "pk": 16321, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANGUIDIC", - "center": "POINT (189703.1595267777447589 2329504.6812396477907896)", - "surface": 105460000, - "canton": null, - "numero_insee": "56101" - } - }, - { - "pk": 16505, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANOUEE", - "center": "POINT (233524.3485105347936042 2343369.3780359108932316)", - "surface": 44490000, - "canton": null, - "numero_insee": "56102" - } - }, - { - "pk": 36798, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANTILLAC", - "center": "POINT (226848.1134018070297316 2339812.6418387717567384)", - "surface": 7770000, - "canton": null, - "numero_insee": "56103" - } - }, - { - "pk": 23897, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANVAUDAN", - "center": "POINT (183533.4990866447333246 2337561.0766525981016457)", - "surface": 18230000, - "canton": null, - "numero_insee": "56104" - } - }, - { - "pk": 29058, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LANVENEGEN", - "center": "POINT (162415.7898511248640716 2350200.5840832805261016)", - "surface": 30350000, - "canton": null, - "numero_insee": "56105" - } - }, - { - "pk": 3677, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LARMOR-BADEN", - "center": "POINT (206544.5719592756940983 2301218.6928640096448362)", - "surface": 4200000, - "canton": null, - "numero_insee": "56106" - } - }, - { - "pk": 24603, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LARMOR-PLAGE", - "center": "POINT (170585.6423321823822334 2317441.3316146032884717)", - "surface": 8370000, - "canton": null, - "numero_insee": "56107" - } - }, - { - "pk": 14869, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LARRE", - "center": "POINT (237674.5305288237868808 2312879.7022436582483351)", - "surface": 17120000, - "canton": null, - "numero_insee": "56108" - } - }, - { - "pk": 35740, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LAUZACH", - "center": "POINT (232361.5454604390542954 2301627.8752430872991681)", - "surface": 10870000, - "canton": null, - "numero_insee": "56109" - } - }, - { - "pk": 17215, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LIGNOL", - "center": "POINT (181921.0861502454499714 2351358.4831850663758814)", - "surface": 38580000, - "canton": null, - "numero_insee": "56110" - } - }, - { - "pk": 19035, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LIMERZEL", - "center": "POINT (247158.3811410357593559 2303449.2435483187437057)", - "surface": 25170000, - "canton": null, - "numero_insee": "56111" - } - }, - { - "pk": 5980, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LIZIO", - "center": "POINT (236839.3284034496173263 2329485.7127915048040450)", - "surface": 16840000, - "canton": null, - "numero_insee": "56112" - } - }, - { - "pk": 32562, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCMALO", - "center": "POINT (188799.1558006243431009 2354716.4352430081926286)", - "surface": 24180000, - "canton": null, - "numero_insee": "56113" - } - }, - { - "pk": 32143, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCMARIA", - "center": "POINT (188782.0294125821092166 2270050.3773794015869498)", - "surface": 20890000, - "canton": null, - "numero_insee": "56114" - } - }, - { - "pk": 15310, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCMARIA-GRAND-CHAMP", - "center": "POINT (215906.4517010849085636 2319208.3853649254888296)", - "surface": 14100000, - "canton": null, - "numero_insee": "56115" - } - }, - { - "pk": 4205, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCMARIAQUER", - "center": "POINT (201551.4779351103352383 2299877.3022721917368472)", - "surface": 11080000, - "canton": null, - "numero_insee": "56116" - } - }, - { - "pk": 11156, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCMINE", - "center": "POINT (213195.3176020901300944 2332696.8083851542323828)", - "surface": 4870000, - "canton": null, - "numero_insee": "56117" - } - }, - { - "pk": 13114, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCMIQUELIC", - "center": "POINT (175379.3751149569870904 2318680.8964566541835666)", - "surface": 3720000, - "canton": null, - "numero_insee": "56118" - } - }, - { - "pk": 18377, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCOAL-MENDON", - "center": "POINT (191526.3462480859016068 2314407.7474127537570894)", - "surface": 44790000, - "canton": null, - "numero_insee": "56119" - } - }, - { - "pk": 20630, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOCQUELTAS", - "center": "POINT (218305.7182997053023428 2319528.0359232849441469)", - "surface": 19490000, - "canton": null, - "numero_insee": "56120" - } - }, - { - "pk": 19037, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LORIENT", - "center": "POINT (171756.6589671042747796 2321153.6339655406773090)", - "surface": 14830000, - "canton": null, - "numero_insee": "56121" - } - }, - { - "pk": 35355, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LOYAT", - "center": "POINT (247837.4164380570873618 2343085.1685800580307841)", - "surface": 41680000, - "canton": null, - "numero_insee": "56122" - } - }, - { - "pk": 20642, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MALANSAC", - "center": "POINT (252119.7053343505249359 2308693.5911604729481041)", - "surface": 36350000, - "canton": null, - "numero_insee": "56123" - } - }, - { - "pk": 8180, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MALESTROIT", - "center": "POINT (246301.9251827131374739 2322657.1915196091867983)", - "surface": 5890000, - "canton": null, - "numero_insee": "56124" - } - }, - { - "pk": 17277, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MALGUENAC", - "center": "POINT (198305.6211448034155183 2354793.1836612303741276)", - "surface": 38420000, - "canton": null, - "numero_insee": "56125" - } - }, - { - "pk": 15278, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MARZAN", - "center": "POINT (247043.5384163287235424 2292940.0412417193874717)", - "surface": 34140000, - "canton": null, - "numero_insee": "56126" - } - }, - { - "pk": 27490, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MAURON", - "center": "POINT (254364.7399827073095366 2352645.2742352541536093)", - "surface": 67030000, - "canton": null, - "numero_insee": "56127" - } - }, - { - "pk": 19172, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MELRAND", - "center": "POINT (194384.5047705005854368 2344653.9464958547614515)", - "surface": 40760000, - "canton": null, - "numero_insee": "56128" - } - }, - { - "pk": 21748, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MENEAC", - "center": "POINT (243607.1428437017020769 2358762.5605679838918149)", - "surface": 68840000, - "canton": null, - "numero_insee": "56129" - } - }, - { - "pk": 19389, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MERLEVENEZ", - "center": "POINT (181785.5316998594207689 2318532.3983702934347093)", - "surface": 17700000, - "canton": null, - "numero_insee": "56130" - } - }, - { - "pk": 19173, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MESLAN", - "center": "POINT (168538.5108901668572798 2347948.1527767260558903)", - "surface": 38660000, - "canton": null, - "numero_insee": "56131" - } - }, - { - "pk": 13599, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MEUCON", - "center": "POINT (216840.2950578851741739 2315112.7690345090813935)", - "surface": 5740000, - "canton": null, - "numero_insee": "56132" - } - }, - { - "pk": 36826, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MISSIRIAC", - "center": "POINT (248790.6832537106238306 2324278.6219178056344390)", - "surface": 13410000, - "canton": null, - "numero_insee": "56133" - } - }, - { - "pk": 20529, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MOHON", - "center": "POINT (239963.0763755850493908 2351527.6516311988234520)", - "surface": 38710000, - "canton": null, - "numero_insee": "56134" - } - }, - { - "pk": 19858, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MOLAC", - "center": "POINT (241961.3478577838395722 2314916.0268091880716383)", - "surface": 28550000, - "canton": null, - "numero_insee": "56135" - } - }, - { - "pk": 19879, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MONTENEUF", - "center": "POINT (261257.1494084336445667 2329583.8630877188406885)", - "surface": 29630000, - "canton": null, - "numero_insee": "56136" - } - }, - { - "pk": 20186, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MONTERBLANC", - "center": "POINT (222641.1714085547137074 2315560.0426533245481551)", - "surface": 25500000, - "canton": null, - "numero_insee": "56137" - } - }, - { - "pk": 24524, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MONTERREIN", - "center": "POINT (249137.3455585751216859 2330886.4823763342574239)", - "surface": 7080000, - "canton": null, - "numero_insee": "56138" - } - }, - { - "pk": 8585, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MONTERTELOT", - "center": "POINT (244930.3615514774573967 2331352.7175130499526858)", - "surface": 2650000, - "canton": null, - "numero_insee": "56139" - } - }, - { - "pk": 14620, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MOREAC", - "center": "POINT (216051.1812508166185580 2338424.2459324402734637)", - "surface": 60080000, - "canton": null, - "numero_insee": "56140" - } - }, - { - "pk": 32144, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MOUSTOIR-AC", - "center": "POINT (211326.3705277518602088 2328678.6348422965966165)", - "surface": 33880000, - "canton": null, - "numero_insee": "56141" - } - }, - { - "pk": 24495, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MOUSTOIR-REMUNGOL", - "center": "POINT (208997.7852486724150367 2344371.7239541211165488)", - "surface": 12340000, - "canton": null, - "numero_insee": "56142" - } - }, - { - "pk": 17848, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "MUZILLAC", - "center": "POINT (238220.1032297912170179 2294970.1018611923791468)", - "surface": 37970000, - "canton": null, - "numero_insee": "56143" - } - }, - { - "pk": 23787, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NAIZIN", - "center": "POINT (213489.5464568625902757 2345809.1055195676162839)", - "surface": 41280000, - "canton": null, - "numero_insee": "56144" - } - }, - { - "pk": 20810, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NEANT-SUR-YVEL", - "center": "POINT (251814.9741611641948111 2346219.7869030307047069)", - "surface": 32530000, - "canton": null, - "numero_insee": "56145" - } - }, - { - "pk": 29879, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NEULLIAC", - "center": "POINT (204966.5042251525446773 2360251.0135826379992068)", - "surface": 31180000, - "canton": null, - "numero_insee": "56146" - } - }, - { - "pk": 17533, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NIVILLAC", - "center": "POINT (254954.9611238388461061 2292303.7388697126880288)", - "surface": 55850000, - "canton": null, - "numero_insee": "56147" - } - }, - { - "pk": 22820, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NOSTANG", - "center": "POINT (187073.1400370982591994 2320576.6072344058193266)", - "surface": 17240000, - "canton": null, - "numero_insee": "56148" - } - }, - { - "pk": 4270, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NOYAL-MUZILLAC", - "center": "POINT (239481.2665864000446163 2299884.1960529666393995)", - "surface": 49270000, - "canton": null, - "numero_insee": "56149" - } - }, - { - "pk": 8130, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NOYALO", - "center": "POINT (222656.9919259190792218 2301249.0064439186826348)", - "surface": 6970000, - "canton": null, - "numero_insee": "56150" - } - }, - { - "pk": 24040, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "NOYAL-PONTIVY", - "center": "POINT (210527.6716074682772160 2353190.6925636110827327)", - "surface": 53430000, - "canton": null, - "numero_insee": "56151" - } - }, - { - "pk": 37675, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE PALAIS", - "center": "POINT (184139.8253299513016827 2274816.7937919632531703)", - "surface": 17700000, - "canton": null, - "numero_insee": "56152" - } - }, - { - "pk": 23730, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PEAULE", - "center": "POINT (248709.0203524101525545 2297357.0388798294588923)", - "surface": 39170000, - "canton": null, - "numero_insee": "56153" - } - }, - { - "pk": 20199, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PEILLAC", - "center": "POINT (258300.5430012340075336 2311646.0594105990603566)", - "surface": 24560000, - "canton": null, - "numero_insee": "56154" - } - }, - { - "pk": 15505, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PENESTIN", - "center": "POINT (238294.7843492736574262 2285763.4019988267682493)", - "surface": 21250000, - "canton": null, - "numero_insee": "56155" - } - }, - { - "pk": 20011, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PERSQUEN", - "center": "POINT (185837.4771533033344895 2349688.7981908684596419)", - "surface": 20060000, - "canton": null, - "numero_insee": "56156" - } - }, - { - "pk": 20716, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLAUDREN", - "center": "POINT (223098.5742258961545303 2320867.8439724338240921)", - "surface": 41110000, - "canton": null, - "numero_insee": "56157" - } - }, - { - "pk": 31501, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLESCOP", - "center": "POINT (212358.1481795288273133 2312474.4796357634477317)", - "surface": 23440000, - "canton": null, - "numero_insee": "56158" - } - }, - { - "pk": 21854, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLEUCADEUC", - "center": "POINT (246136.7091446691774763 2318352.5385648650117218)", - "surface": 35040000, - "canton": null, - "numero_insee": "56159" - } - }, - { - "pk": 32395, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLEUGRIFFET", - "center": "POINT (224907.0914275816176087 2344700.6158713051117957)", - "surface": 38570000, - "canton": null, - "numero_insee": "56160" - } - }, - { - "pk": 17128, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOEMEL", - "center": "POINT (194067.7276375676156022 2309524.4504447160288692)", - "surface": 25350000, - "canton": null, - "numero_insee": "56161" - } - }, - { - "pk": 5511, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOEMEUR", - "center": "POINT (166866.0838317538728006 2319512.9955854765139520)", - "surface": 39920000, - "canton": null, - "numero_insee": "56162" - } - }, - { - "pk": 20793, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOERDUT", - "center": "POINT (181261.7710634641698562 2358658.6139169945381582)", - "surface": 76190000, - "canton": null, - "numero_insee": "56163" - } - }, - { - "pk": 4927, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOEREN", - "center": "POINT (211188.8646762669086456 2308561.9798340247943997)", - "surface": 20470000, - "canton": null, - "numero_insee": "56164" - } - }, - { - "pk": 14676, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOERMEL", - "center": "POINT (247400.4241512894514017 2335275.7285190667025745)", - "surface": 51340000, - "canton": null, - "numero_insee": "56165" - } - }, - { - "pk": 16106, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOUAY", - "center": "POINT (176303.4901910144253634 2340605.1298060943372548)", - "surface": 67100000, - "canton": null, - "numero_insee": "56166" - } - }, - { - "pk": 6022, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOUGOUMELEN", - "center": "POINT (207084.3116489633102901 2308728.9384164586663246)", - "surface": 21930000, - "canton": null, - "numero_insee": "56167" - } - }, - { - "pk": 21108, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOUHARNEL", - "center": "POINT (189716.2812269700225443 2303084.2973715667612851)", - "surface": 18840000, - "canton": null, - "numero_insee": "56168" - } - }, - { - "pk": 16483, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOUHINEC", - "center": "POINT (182222.1410174138145521 2314032.4258658788166940)", - "surface": 36940000, - "canton": null, - "numero_insee": "56169" - } - }, - { - "pk": 16704, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLOURAY", - "center": "POINT (175116.5063315731822513 2363712.8596845772117376)", - "surface": 39240000, - "canton": null, - "numero_insee": "56170" - } - }, - { - "pk": 4988, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLUHERLIN", - "center": "POINT (246986.8237013988546096 2312254.7156735900789499)", - "surface": 35380000, - "canton": null, - "numero_insee": "56171" - } - }, - { - "pk": 14544, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLUMELEC", - "center": "POINT (228763.6738084006356075 2325717.4241441492922604)", - "surface": 58470000, - "canton": null, - "numero_insee": "56172" - } - }, - { - "pk": 34014, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLUMELIAU", - "center": "POINT (203105.0480527227628045 2342923.0333089348860085)", - "surface": 68560000, - "canton": null, - "numero_insee": "56173" - } - }, - { - "pk": 21920, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLUMELIN", - "center": "POINT (209487.8839781060814857 2333267.2782997796311975)", - "surface": 31400000, - "canton": null, - "numero_insee": "56174" - } - }, - { - "pk": 19827, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLUMERGAT", - "center": "POINT (205621.8191535022342578 2316323.0280492799356580)", - "surface": 42060000, - "canton": null, - "numero_insee": "56175" - } - }, - { - "pk": 20224, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLUNERET", - "center": "POINT (203664.0809517733287066 2310903.0027497848495841)", - "surface": 27170000, - "canton": null, - "numero_insee": "56176" - } - }, - { - "pk": 21015, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PLUVIGNER", - "center": "POINT (199164.7194817349663936 2322775.8650370440445840)", - "surface": 82890000, - "canton": null, - "numero_insee": "56177" - } - }, - { - "pk": 20773, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PONTIVY", - "center": "POINT (204709.9732541634002700 2354844.9278108775615692)", - "surface": 25090000, - "canton": null, - "numero_insee": "56178" - } - }, - { - "pk": 19316, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PONT-SCORFF", - "center": "POINT (169373.6065586800104938 2331242.2045510862953961)", - "surface": 23190000, - "canton": null, - "numero_insee": "56179" - } - }, - { - "pk": 15562, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PORCARO", - "center": "POINT (261519.9445810312754475 2334189.4981701429933310)", - "surface": 15560000, - "canton": null, - "numero_insee": "56180" - } - }, - { - "pk": 36907, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PORT-LOUIS", - "center": "POINT (173695.1058588235755451 2316565.6910257362760603)", - "surface": 1270000, - "canton": null, - "numero_insee": "56181" - } - }, - { - "pk": 19039, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "PRIZIAC", - "center": "POINT (170079.9625130519852974 2355366.1145548052154481)", - "surface": 45700000, - "canton": null, - "numero_insee": "56182" - } - }, - { - "pk": 3178, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "QUELNEUC", - "center": "POINT (270507.5132419125875458 2324254.9538117460906506)", - "surface": 13960000, - "canton": null, - "numero_insee": "56183" - } - }, - { - "pk": 17268, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "QUESTEMBERT", - "center": "POINT (241626.0160532115260139 2306907.0827706377021968)", - "surface": 65590000, - "canton": null, - "numero_insee": "56184" - } - }, - { - "pk": 17056, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "QUEVEN", - "center": "POINT (169022.4999734918819740 2325134.6919961473904550)", - "surface": 23800000, - "canton": null, - "numero_insee": "56185" - } - }, - { - "pk": 13063, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "QUILY", - "center": "POINT (241125.2815393667551689 2331622.0742759597487748)", - "surface": 5230000, - "canton": null, - "numero_insee": "56187" - } - }, - { - "pk": 20369, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "QUISTINIC", - "center": "POINT (191740.0009060900774784 2337527.2240675706416368)", - "surface": 42800000, - "canton": null, - "numero_insee": "56188" - } - }, - { - "pk": 21447, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "RADENAC", - "center": "POINT (222945.4208427632693201 2339781.0351746389642358)", - "surface": 21690000, - "canton": null, - "numero_insee": "56189" - } - }, - { - "pk": 4954, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "REGUINY", - "center": "POINT (218907.0205831611528993 2344151.6624387213960290)", - "surface": 28050000, - "canton": null, - "numero_insee": "56190" - } - }, - { - "pk": 25147, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "REMINIAC", - "center": "POINT (256764.5839131285902113 2328246.3647228870540857)", - "surface": 12150000, - "canton": null, - "numero_insee": "56191" - } - }, - { - "pk": 3750, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "REMUNGOL", - "center": "POINT (209537.7803636181051843 2339472.3904540389776230)", - "surface": 27030000, - "canton": null, - "numero_insee": "56192" - } - }, - { - "pk": 5230, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "RIANTEC", - "center": "POINT (177192.7553636138909496 2317194.3524143295362592)", - "surface": 14430000, - "canton": null, - "numero_insee": "56193" - } - }, - { - "pk": 25068, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "RIEUX", - "center": "POINT (264608.2895113546983339 2298987.4100495860911906)", - "surface": 27610000, - "canton": null, - "numero_insee": "56194" - } - }, - { - "pk": 11668, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA ROCHE-BERNARD", - "center": "POINT (250768.1665786977973767 2290268.1443484877236187)", - "surface": 470000, - "canton": null, - "numero_insee": "56195" - } - }, - { - "pk": 9529, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ROCHEFORT-EN-TERRE", - "center": "POINT (248804.3519873826298863 2310267.9157614698633552)", - "surface": 1250000, - "canton": null, - "numero_insee": "56196" - } - }, - { - "pk": 3163, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE ROC-SAINT-ANDRE", - "center": "POINT (241540.9837457899702713 2329723.9977454971522093)", - "surface": 9970000, - "canton": null, - "numero_insee": "56197" - } - }, - { - "pk": 20862, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ROHAN", - "center": "POINT (221716.6596661712974310 2355582.9365099263377488)", - "surface": 23430000, - "canton": null, - "numero_insee": "56198" - } - }, - { - "pk": 19464, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "ROUDOUALLEC", - "center": "POINT (151397.2773261186084710 2363922.2405928489752114)", - "surface": 24870000, - "canton": null, - "numero_insee": "56199" - } - }, - { - "pk": 21605, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "RUFFIAC", - "center": "POINT (254006.5206120856455527 2322819.8243134645745158)", - "surface": 36850000, - "canton": null, - "numero_insee": "56200" - } - }, - { - "pk": 22220, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE SAINT", - "center": "POINT (160730.9406148154521361 2360594.7926544072106481)", - "surface": 31300000, - "canton": null, - "numero_insee": "56201" - } - }, - { - "pk": 36143, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-ABRAHAM", - "center": "POINT (245164.6077899971278384 2327151.4119935873895884)", - "surface": 6710000, - "canton": null, - "numero_insee": "56202" - } - }, - { - "pk": 16640, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-AIGNAN", - "center": "POINT (199705.6006985850399360 2367313.7488553686998785)", - "surface": 27560000, - "canton": null, - "numero_insee": "56203" - } - }, - { - "pk": 21099, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-ALLOUESTRE", - "center": "POINT (220979.6854567003319971 2335361.7846830720081925)", - "surface": 16670000, - "canton": null, - "numero_insee": "56204" - } - }, - { - "pk": 20491, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-ARMEL", - "center": "POINT (220290.1052203973522410 2296926.4505408047698438)", - "surface": 7960000, - "canton": null, - "numero_insee": "56205" - } - }, - { - "pk": 27904, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-AVE", - "center": "POINT (219065.3508412195369601 2312228.5272039575502276)", - "surface": 26190000, - "canton": null, - "numero_insee": "56206" - } - }, - { - "pk": 33037, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-BARTHELEMY", - "center": "POINT (198433.3332914306083694 2338982.3376598595641553)", - "surface": 22140000, - "canton": null, - "numero_insee": "56207" - } - }, - { - "pk": 18661, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-BRIEUC-DE-MAURON", - "center": "POINT (250152.1410981426015496 2353811.9632826484739780)", - "surface": 15000000, - "canton": null, - "numero_insee": "56208" - } - }, - { - "pk": 25692, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINTE-BRIGITTE", - "center": "POINT (195104.1324056855519302 2367076.4420036091469228)", - "surface": 17700000, - "canton": null, - "numero_insee": "56209" - } - }, - { - "pk": 20964, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-CARADEC-TREGOMEL", - "center": "POINT (176109.0526790691656061 2352312.3751491634175181)", - "surface": 16110000, - "canton": null, - "numero_insee": "56210" - } - }, - { - "pk": 19918, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-CONGARD", - "center": "POINT (250442.9944685923983343 2317987.1884964983910322)", - "surface": 21750000, - "canton": null, - "numero_insee": "56211" - } - }, - { - "pk": 18083, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-DOLAY", - "center": "POINT (260755.9158422126783989 2292751.1983885811641812)", - "surface": 48830000, - "canton": null, - "numero_insee": "56212" - } - }, - { - "pk": 17198, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-GERAND", - "center": "POINT (211286.1343645970337093 2358400.6956713143736124)", - "surface": 18230000, - "canton": null, - "numero_insee": "56213" - } - }, - { - "pk": 17849, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-GILDAS-DE-RHUYS", - "center": "POINT (210822.8930221387417987 2291945.9447594652883708)", - "surface": 15380000, - "canton": null, - "numero_insee": "56214" - } - }, - { - "pk": 21703, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-GONNERY", - "center": "POINT (216177.3045068093342707 2359941.3718618694692850)", - "surface": 16570000, - "canton": null, - "numero_insee": "56215" - } - }, - { - "pk": 25062, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-GORGON", - "center": "POINT (256364.9800306409597397 2303524.0147874690592289)", - "surface": 5750000, - "canton": null, - "numero_insee": "56216" - } - }, - { - "pk": 22463, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-GRAVE", - "center": "POINT (253187.1648528024670668 2312805.4490112829953432)", - "surface": 15870000, - "canton": null, - "numero_insee": "56218" - } - }, - { - "pk": 21158, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-GUYOMARD", - "center": "POINT (237516.8393942398251966 2319983.9173047807998955)", - "surface": 19790000, - "canton": null, - "numero_insee": "56219" - } - }, - { - "pk": 13902, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINTE-HELENE", - "center": "POINT (186005.4695571124320850 2316464.8156354622915387)", - "surface": 10650000, - "canton": null, - "numero_insee": "56220" - } - }, - { - "pk": 19792, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-JACUT-LES-PINS", - "center": "POINT (258534.8405579067766666 2307444.6945621245540679)", - "surface": 22670000, - "canton": null, - "numero_insee": "56221" - } - }, - { - "pk": 19883, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-JEAN-BREVELAY", - "center": "POINT (221048.5502200687187724 2326855.8563373251818120)", - "surface": 41700000, - "canton": null, - "numero_insee": "56222" - } - }, - { - "pk": 11129, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-JEAN-LA-POTERIE", - "center": "POINT (265072.8431605004589073 2303394.6397605133242905)", - "surface": 8330000, - "canton": null, - "numero_insee": "56223" - } - }, - { - "pk": 12708, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-LAURENT-SUR-OUST", - "center": "POINT (251723.5961773299495690 2320499.5147786694578826)", - "surface": 3880000, - "canton": null, - "numero_insee": "56224" - } - }, - { - "pk": 5846, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-LERY", - "center": "POINT (257459.5273406989290379 2353571.0810273448005319)", - "surface": 1610000, - "canton": null, - "numero_insee": "56225" - } - }, - { - "pk": 5277, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-MALO-DE-BEIGNON", - "center": "POINT (265491.7971464104484767 2338024.6635627332143486)", - "surface": 3500000, - "canton": null, - "numero_insee": "56226" - } - }, - { - "pk": 30697, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-MALO-DES-TROIS-FONTAINES", - "center": "POINT (241707.2525244696880691 2346237.8326457054354250)", - "surface": 16110000, - "canton": null, - "numero_insee": "56227" - } - }, - { - "pk": 21198, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-MARCEL", - "center": "POINT (244196.3894105026847683 2323140.4883234957233071)", - "surface": 12980000, - "canton": null, - "numero_insee": "56228" - } - }, - { - "pk": 13297, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-MARTIN-SUR-OUST", - "center": "POINT (255254.5119660222553648 2317025.4937136610969901)", - "surface": 28060000, - "canton": null, - "numero_insee": "56229" - } - }, - { - "pk": 34462, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-NICOLAS-DU-TERTRE", - "center": "POINT (258928.6633615540922619 2320558.0448094685561955)", - "surface": 13200000, - "canton": null, - "numero_insee": "56230" - } - }, - { - "pk": 4089, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-NOLFF", - "center": "POINT (224773.4627617726218887 2311774.3613476846367121)", - "surface": 25960000, - "canton": null, - "numero_insee": "56231" - } - }, - { - "pk": 31466, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-PERREUX", - "center": "POINT (265248.5732218617340550 2306398.4137385636568069)", - "surface": 6170000, - "canton": null, - "numero_insee": "56232" - } - }, - { - "pk": 4278, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-PIERRE-QUIBERON", - "center": "POINT (187982.8372834265464917 2294663.6697413390502334)", - "surface": 7840000, - "canton": null, - "numero_insee": "56234" - } - }, - { - "pk": 15309, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-SERVANT", - "center": "POINT (237609.0506748214247636 2333294.8502589501440525)", - "surface": 22480000, - "canton": null, - "numero_insee": "56236" - } - }, - { - "pk": 35376, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-THURIAU", - "center": "POINT (206362.8304825496161357 2348453.5026241312734783)", - "surface": 21520000, - "canton": null, - "numero_insee": "56237" - } - }, - { - "pk": 36676, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-TUGDUAL", - "center": "POINT (175450.5779942006920464 2359512.4381386432796717)", - "surface": 20190000, - "canton": null, - "numero_insee": "56238" - } - }, - { - "pk": 28957, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINT-VINCENT-SUR-OUST", - "center": "POINT (263518.8820265715476125 2309887.0764655307866633)", - "surface": 16000000, - "canton": null, - "numero_insee": "56239" - } - }, - { - "pk": 21080, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SARZEAU", - "center": "POINT (217121.0009508106159046 2292797.5479149417951703)", - "surface": 59660000, - "canton": null, - "numero_insee": "56240" - } - }, - { - "pk": 21698, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAUZON", - "center": "POINT (179723.6365810877177864 2276382.4540492729283869)", - "surface": 22640000, - "canton": null, - "numero_insee": "56241" - } - }, - { - "pk": 22173, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SEGLIEN", - "center": "POINT (191466.2627741307369433 2359041.1606074818409979)", - "surface": 38310000, - "canton": null, - "numero_insee": "56242" - } - }, - { - "pk": 22883, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SENE", - "center": "POINT (219834.7176339377183467 2303728.1158435516990721)", - "surface": 21720000, - "canton": null, - "numero_insee": "56243" - } - }, - { - "pk": 32374, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SERENT", - "center": "POINT (238176.7546547845122404 2324993.1142247975803912)", - "surface": 60280000, - "canton": null, - "numero_insee": "56244" - } - }, - { - "pk": 15995, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SILFIAC", - "center": "POINT (190226.6862866109586321 2363834.7115496248006821)", - "surface": 22490000, - "canton": null, - "numero_insee": "56245" - } - }, - { - "pk": 21690, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE SOURN", - "center": "POINT (202638.4637606753967702 2351125.4244727916084230)", - "surface": 16090000, - "canton": null, - "numero_insee": "56246" - } - }, - { - "pk": 20643, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SULNIAC", - "center": "POINT (232217.6684351225849241 2307030.9396881465800107)", - "surface": 28070000, - "canton": null, - "numero_insee": "56247" - } - }, - { - "pk": 15701, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SURZUR", - "center": "POINT (226692.3059823917574249 2297278.5438541835173965)", - "surface": 59010000, - "canton": null, - "numero_insee": "56248" - } - }, - { - "pk": 10386, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "TAUPONT", - "center": "POINT (243258.6134655096684583 2340045.7513266927562654)", - "surface": 30520000, - "canton": null, - "numero_insee": "56249" - } - }, - { - "pk": 22304, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "THEHILLAC", - "center": "POINT (264856.4470447907224298 2293084.7754078456200659)", - "surface": 14440000, - "canton": null, - "numero_insee": "56250" - } - }, - { - "pk": 14870, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "THEIX", - "center": "POINT (225730.8508961902698502 2304776.6518060411326587)", - "surface": 47510000, - "canton": null, - "numero_insee": "56251" - } - }, - { - "pk": 4865, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LE TOUR-DU-PARC", - "center": "POINT (224425.4996060054982081 2292956.7782401996664703)", - "surface": 9860000, - "canton": null, - "numero_insee": "56252" - } - }, - { - "pk": 18485, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "TREAL", - "center": "POINT (258294.0893862663651817 2324756.1140544321388006)", - "surface": 19140000, - "canton": null, - "numero_insee": "56253" - } - }, - { - "pk": 19302, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "TREDION", - "center": "POINT (231406.0482263960875571 2320734.9928394518792629)", - "surface": 25800000, - "canton": null, - "numero_insee": "56254" - } - }, - { - "pk": 35300, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "TREHORENTEUC", - "center": "POINT (254535.5128926888573915 2343940.1527499863877892)", - "surface": 5390000, - "canton": null, - "numero_insee": "56256" - } - }, - { - "pk": 28319, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA TRINITE-PORHOET", - "center": "POINT (238029.3284348159213550 2355514.9493530415929854)", - "surface": 12720000, - "canton": null, - "numero_insee": "56257" - } - }, - { - "pk": 16424, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA TRINITE-SUR-MER", - "center": "POINT (196133.0215055888984352 2301634.9369321898557246)", - "surface": 6420000, - "canton": null, - "numero_insee": "56258" - } - }, - { - "pk": 11612, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA TRINITE-SURZUR", - "center": "POINT (229564.3958757733344100 2301004.7317313468083739)", - "surface": 2410000, - "canton": null, - "numero_insee": "56259" - } - }, - { - "pk": 17850, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "VANNES", - "center": "POINT (217599.1135736669530161 2307913.3055033907294273)", - "surface": 33230000, - "canton": null, - "numero_insee": "56260" - } - }, - { - "pk": 23650, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "LA VRAIE-CROIX", - "center": "POINT (235594.9463463691645302 2310160.7385699502192438)", - "surface": 16670000, - "canton": null, - "numero_insee": "56261" - } - }, - { - "pk": 6132, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "BONO", - "center": "POINT (203801.3646359115373343 2306300.5178468748927116)", - "surface": 6240000, - "canton": null, - "numero_insee": "56262" - } - }, - { - "pk": 10558, - "model": "ishtar_common.town", - "fields": { - "departement": 57, - "name": "SAINTE-ANNE-D'AURAY", - "center": "POINT (203242.7638713338528760 2313501.6215847614221275)", - "surface": 4970000, - "canton": null, - "numero_insee": "56263" - } - }, - { - "pk": 3324, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ABONCOURT", - "center": "POINT (892533.3224541586823761 2480673.3201253167353570)", - "surface": 5930000, - "canton": null, - "numero_insee": "57001" - } - }, - { - "pk": 25374, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ABONCOURT-SUR-SEILLE", - "center": "POINT (895155.1023947361391038 2431963.6335364147089422)", - "surface": 3620000, - "canton": null, - "numero_insee": "57002" - } - }, - { - "pk": 15913, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ABRESCHVILLER", - "center": "POINT (955276.5261782683664933 2411169.0883031785488129)", - "surface": 41240000, - "canton": null, - "numero_insee": "57003" - } - }, - { - "pk": 22952, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ACHAIN", - "center": "POINT (911764.9516385341994464 2443714.9497432033531368)", - "surface": 4780000, - "canton": null, - "numero_insee": "57004" - } - }, - { - "pk": 5014, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ACHEN", - "center": "POINT (954346.4539678740547970 2460694.8194342684000731)", - "surface": 11970000, - "canton": null, - "numero_insee": "57006" - } - }, - { - "pk": 9575, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ADAINCOURT", - "center": "POINT (900576.2235678484430537 2453124.6630067038349807)", - "surface": 3410000, - "canton": null, - "numero_insee": "57007" - } - }, - { - "pk": 6532, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ADELANGE", - "center": "POINT (912377.1536279350984842 2453927.0787490997463465)", - "surface": 5920000, - "canton": null, - "numero_insee": "57008" - } - }, - { - "pk": 8271, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AJONCOURT", - "center": "POINT (891128.5011830087751150 2434730.8026096099056304)", - "surface": 3460000, - "canton": null, - "numero_insee": "57009" - } - }, - { - "pk": 15754, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ALAINCOURT-LA-COTE", - "center": "POINT (893579.0797053466085345 2440655.9460874651558697)", - "surface": 4140000, - "canton": null, - "numero_insee": "57010" - } - }, - { - "pk": 27282, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ALBESTROFF", - "center": "POINT (932055.4696111150551587 2446392.1691589448601007)", - "surface": 18990000, - "canton": null, - "numero_insee": "57011" - } - }, - { - "pk": 37781, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ALGRANGE", - "center": "POINT (869725.6318281898275018 2491483.7455695983953774)", - "surface": 6870000, - "canton": null, - "numero_insee": "57012" - } - }, - { - "pk": 6411, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ALTRIPPE", - "center": "POINT (927561.0303310435265303 2456960.3486882057040930)", - "surface": 4870000, - "canton": null, - "numero_insee": "57014" - } - }, - { - "pk": 32555, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ALTVILLER", - "center": "POINT (921120.0359087870456278 2461207.4604852772317827)", - "surface": 4850000, - "canton": null, - "numero_insee": "57015" - } - }, - { - "pk": 11211, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ALZING", - "center": "POINT (906917.3159969827393070 2483599.3243271126411855)", - "surface": 4570000, - "canton": null, - "numero_insee": "57016" - } - }, - { - "pk": 13005, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AMANVILLERS", - "center": "POINT (870621.6111689521931112 2468776.8586544240824878)", - "surface": 9850000, - "canton": null, - "numero_insee": "57017" - } - }, - { - "pk": 3928, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AMELECOURT", - "center": "POINT (904735.8827710334444419 2434948.3227916662581265)", - "surface": 7620000, - "canton": null, - "numero_insee": "57018" - } - }, - { - "pk": 38003, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AMNEVILLE", - "center": "POINT (876530.2511479135137051 2479834.8820272786542773)", - "surface": 10090000, - "canton": null, - "numero_insee": "57019" - } - }, - { - "pk": 23596, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ANCERVILLE", - "center": "POINT (897049.9699401645921171 2455896.0832880423404276)", - "surface": 5210000, - "canton": null, - "numero_insee": "57020" - } - }, - { - "pk": 31920, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ANCY-SUR-MOSELLE", - "center": "POINT (871012.2530916577670723 2458273.3276664786972106)", - "surface": 9170000, - "canton": null, - "numero_insee": "57021" - } - }, - { - "pk": 7585, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ANGEVILLERS", - "center": "POINT (869202.9515603020554408 2494080.8907426185905933)", - "surface": 8770000, - "canton": null, - "numero_insee": "57022" - } - }, - { - "pk": 5109, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ANTILLY", - "center": "POINT (885188.6424636448500678 2473705.5047690058127046)", - "surface": 4740000, - "canton": null, - "numero_insee": "57024" - } - }, - { - "pk": 14184, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ANZELING", - "center": "POINT (900323.9396618702448905 2482341.5995222972705960)", - "surface": 5780000, - "canton": null, - "numero_insee": "57025" - } - }, - { - "pk": 30951, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "APACH", - "center": "POINT (893638.0418465021066368 2503397.2619768800213933)", - "surface": 3380000, - "canton": null, - "numero_insee": "57026" - } - }, - { - "pk": 11382, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ARRAINCOURT", - "center": "POINT (907005.9448542506434023 2450178.1926105734892190)", - "surface": 4770000, - "canton": null, - "numero_insee": "57027" - } - }, - { - "pk": 18946, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ARGANCY", - "center": "POINT (882387.0334061107132584 2473681.3501198822632432)", - "surface": 11390000, - "canton": null, - "numero_insee": "57028" - } - }, - { - "pk": 18031, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ARRIANCE", - "center": "POINT (904864.9395569227635860 2454762.7660648599267006)", - "surface": 7020000, - "canton": null, - "numero_insee": "57029" - } - }, - { - "pk": 14259, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ARRY", - "center": "POINT (872281.0297797897364944 2450379.0073420982807875)", - "surface": 6940000, - "canton": null, - "numero_insee": "57030" - } - }, - { - "pk": 37313, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ARS-LAQUENEXY", - "center": "POINT (887295.0686966190114617 2461515.6899172733537853)", - "surface": 6300000, - "canton": null, - "numero_insee": "57031" - } - }, - { - "pk": 15550, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ARZVILLER", - "center": "POINT (955060.1287679292727262 2424576.5541053619235754)", - "surface": 5160000, - "canton": null, - "numero_insee": "57033" - } - }, - { - "pk": 5328, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ASPACH", - "center": "POINT (941024.2708803482819349 2416049.0146953756920993)", - "surface": 4130000, - "canton": null, - "numero_insee": "57034" - } - }, - { - "pk": 28257, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ATTILLONCOURT", - "center": "POINT (897482.4106095422757789 2428981.6655617821961641)", - "surface": 3320000, - "canton": null, - "numero_insee": "57036" - } - }, - { - "pk": 34600, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AUBE", - "center": "POINT (892555.9510658432263881 2454856.6364418873563409)", - "surface": 5320000, - "canton": null, - "numero_insee": "57037" - } - }, - { - "pk": 17872, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AUDUN-LE-TICHE", - "center": "POINT (862633.8876432540128008 2501629.1216362332925200)", - "surface": 15480000, - "canton": null, - "numero_insee": "57038" - } - }, - { - "pk": 22080, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AUGNY", - "center": "POINT (876223.0621019114041701 2457417.6128717772662640)", - "surface": 14930000, - "canton": null, - "numero_insee": "57039" - } - }, - { - "pk": 34919, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AULNOIS-SUR-SEILLE", - "center": "POINT (891811.6617200684268028 2436738.0554484436288476)", - "surface": 5060000, - "canton": null, - "numero_insee": "57040" - } - }, - { - "pk": 25214, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AUMETZ", - "center": "POINT (862071.4404050596058369 2497221.5211053285747766)", - "surface": 10420000, - "canton": null, - "numero_insee": "57041" - } - }, - { - "pk": 23204, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AVRICOURT", - "center": "POINT (929119.4600004225503653 2415645.7065033172257245)", - "surface": 10450000, - "canton": null, - "numero_insee": "57042" - } - }, - { - "pk": 28017, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AY-SUR-MOSELLE", - "center": "POINT (881039.7138148695230484 2479073.2287872545421124)", - "surface": 4720000, - "canton": null, - "numero_insee": "57043" - } - }, - { - "pk": 18573, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "AZOUDANGE", - "center": "POINT (929847.1999937939690426 2424057.8381917332299054)", - "surface": 15920000, - "canton": null, - "numero_insee": "57044" - } - }, - { - "pk": 33729, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BACOURT", - "center": "POINT (898249.9490758521715179 2444398.7526270225644112)", - "surface": 3980000, - "canton": null, - "numero_insee": "57045" - } - }, - { - "pk": 16737, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BAERENTHAL", - "center": "POINT (979625.6766902413219213 2453509.5039656772278249)", - "surface": 39120000, - "canton": null, - "numero_insee": "57046" - } - }, - { - "pk": 8829, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BAMBIDERSTROFF", - "center": "POINT (911086.5032688133651391 2464322.8085866514593363)", - "surface": 11140000, - "canton": null, - "numero_insee": "57047" - } - }, - { - "pk": 10360, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BANNAY", - "center": "POINT (901365.2954778006533161 2466040.0059194508939981)", - "surface": 4120000, - "canton": null, - "numero_insee": "57048" - } - }, - { - "pk": 8215, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LE BAN-SAINT-MARTIN", - "center": "POINT (877757.6169357553590089 2465135.9064056919887662)", - "surface": 1570000, - "canton": null, - "numero_insee": "57049" - } - }, - { - "pk": 30831, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BARCHAIN", - "center": "POINT (939970.7628725783433765 2422144.1289038914255798)", - "surface": 1700000, - "canton": null, - "numero_insee": "57050" - } - }, - { - "pk": 31459, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BARONVILLE", - "center": "POINT (913343.4226392591372132 2446330.3442659038119018)", - "surface": 6180000, - "canton": null, - "numero_insee": "57051" - } - }, - { - "pk": 30840, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BARST", - "center": "POINT (928124.1384835052303970 2461268.0736816371791065)", - "surface": 5720000, - "canton": null, - "numero_insee": "57052" - } - }, - { - "pk": 12731, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BASSING", - "center": "POINT (927409.8178470908896998 2439747.4901505806483328)", - "surface": 6330000, - "canton": null, - "numero_insee": "57053" - } - }, - { - "pk": 8936, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BAUDRECOURT", - "center": "POINT (901820.1354529805248603 2448132.0620163436979055)", - "surface": 5030000, - "canton": null, - "numero_insee": "57054" - } - }, - { - "pk": 35327, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BAZONCOURT", - "center": "POINT (895926.0047426184173673 2458588.1717669866047800)", - "surface": 13130000, - "canton": null, - "numero_insee": "57055" - } - }, - { - "pk": 26000, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BEBING", - "center": "POINT (942358.3711653649806976 2423765.9265229669399559)", - "surface": 9730000, - "canton": null, - "numero_insee": "57056" - } - }, - { - "pk": 6412, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BECHY", - "center": "POINT (896397.9195073102600873 2450286.7246185978874564)", - "surface": 9600000, - "canton": null, - "numero_insee": "57057" - } - }, - { - "pk": 10800, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BEHREN-LES-FORBACH", - "center": "POINT (935926.4835746705066413 2473143.3915191218256950)", - "surface": 5580000, - "canton": null, - "numero_insee": "57058" - } - }, - { - "pk": 7817, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BELLANGE", - "center": "POINT (910678.9922651315573603 2442004.4167860024608672)", - "surface": 3810000, - "canton": null, - "numero_insee": "57059" - } - }, - { - "pk": 7816, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BENESTROFF", - "center": "POINT (923974.8668737721163779 2443520.3360117580741644)", - "surface": 9520000, - "canton": null, - "numero_insee": "57060" - } - }, - { - "pk": 11891, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BENING-LES-SAINT-AVOLD", - "center": "POINT (928458.5396407898515463 2468875.9705602489411831)", - "surface": 3670000, - "canton": null, - "numero_insee": "57061" - } - }, - { - "pk": 9537, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BERG-SUR-MOSELLE", - "center": "POINT (888461.9339541989611462 2500250.6562012839131057)", - "surface": 2950000, - "canton": null, - "numero_insee": "57062" - } - }, - { - "pk": 5093, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BERIG-VINTRANGE", - "center": "POINT (919012.2132038206327707 2450382.0439152261242270)", - "surface": 8540000, - "canton": null, - "numero_insee": "57063" - } - }, - { - "pk": 11783, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BERLING", - "center": "POINT (960385.2813394317636266 2433628.9668485731817782)", - "surface": 3150000, - "canton": null, - "numero_insee": "57064" - } - }, - { - "pk": 12876, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BERMERING", - "center": "POINT (920650.3825741873588413 2446093.3271913737989962)", - "surface": 5750000, - "canton": null, - "numero_insee": "57065" - } - }, - { - "pk": 7089, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BERTHELMING", - "center": "POINT (941062.2502258075401187 2434762.2563418149948120)", - "surface": 10760000, - "canton": null, - "numero_insee": "57066" - } - }, - { - "pk": 30232, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BERTRANGE", - "center": "POINT (880475.6088088955730200 2486473.1143776257522404)", - "surface": 6770000, - "canton": null, - "numero_insee": "57067" - } - }, - { - "pk": 7051, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BERVILLER-EN-MOSELLE", - "center": "POINT (914125.7281952279154211 2483161.3096659695729613)", - "surface": 5540000, - "canton": null, - "numero_insee": "57069" - } - }, - { - "pk": 4135, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BETTANGE", - "center": "POINT (902452.7871454055421054 2479157.9230673806741834)", - "surface": 3740000, - "canton": null, - "numero_insee": "57070" - } - }, - { - "pk": 29826, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BETTBORN", - "center": "POINT (944575.6541869852226228 2433491.8192081670276821)", - "surface": 6570000, - "canton": null, - "numero_insee": "57071" - } - }, - { - "pk": 35089, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BETTELAINVILLE", - "center": "POINT (889643.7557069347240031 2479247.4873577118851244)", - "surface": 13590000, - "canton": null, - "numero_insee": "57072" - } - }, - { - "pk": 25235, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BETTING", - "center": "POINT (926661.8259890300687402 2468360.0894212527200580)", - "surface": 4470000, - "canton": null, - "numero_insee": "57073" - } - }, - { - "pk": 15875, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BETTVILLER", - "center": "POINT (961918.7720988418441266 2464463.0022053588181734)", - "surface": 18360000, - "canton": null, - "numero_insee": "57074" - } - }, - { - "pk": 11726, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BEUX", - "center": "POINT (890879.1167219677008688 2452040.3060664683580399)", - "surface": 5010000, - "canton": null, - "numero_insee": "57075" - } - }, - { - "pk": 24803, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BEYREN-LES-SIERCK", - "center": "POINT (887029.2274574786424637 2503940.6151837208308280)", - "surface": 9260000, - "canton": null, - "numero_insee": "57076" - } - }, - { - "pk": 9322, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BEZANGE-LA-PETITE", - "center": "POINT (914442.9068402848206460 2423324.1714016208425164)", - "surface": 7870000, - "canton": null, - "numero_insee": "57077" - } - }, - { - "pk": 34172, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BIBICHE", - "center": "POINT (901063.0431716213934124 2489452.5265170997008681)", - "surface": 12580000, - "canton": null, - "numero_insee": "57079" - } - }, - { - "pk": 19073, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BICKENHOLTZ", - "center": "POINT (954978.5171962529420853 2433982.3148810039274395)", - "surface": 2500000, - "canton": null, - "numero_insee": "57080" - } - }, - { - "pk": 32763, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BIDESTROFF", - "center": "POINT (926737.9729777013417333 2436439.4324930072762072)", - "surface": 7980000, - "canton": null, - "numero_insee": "57081" - } - }, - { - "pk": 12258, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BIDING", - "center": "POINT (925525.2124199515674263 2460945.3797418205067515)", - "surface": 6660000, - "canton": null, - "numero_insee": "57082" - } - }, - { - "pk": 11223, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BINING", - "center": "POINT (959067.4583046967163682 2458634.4013425507582724)", - "surface": 15710000, - "canton": null, - "numero_insee": "57083" - } - }, - { - "pk": 23017, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BIONCOURT", - "center": "POINT (896272.1787531636655331 2430071.9742492148652673)", - "surface": 8220000, - "canton": null, - "numero_insee": "57084" - } - }, - { - "pk": 12325, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BIONVILLE-SUR-NIED", - "center": "POINT (902474.5764361071633175 2465048.9291482507251203)", - "surface": 8480000, - "canton": null, - "numero_insee": "57085" - } - }, - { - "pk": 31403, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BISTEN-EN-LORRAINE", - "center": "POINT (910925.9068462571594864 2471326.0059705008752644)", - "surface": 4510000, - "canton": null, - "numero_insee": "57087" - } - }, - { - "pk": 28792, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BISTROFF", - "center": "POINT (919482.2194423798937351 2453888.4472982706502080)", - "surface": 19310000, - "canton": null, - "numero_insee": "57088" - } - }, - { - "pk": 16556, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BITCHE", - "center": "POINT (974447.8349214468616992 2462070.2121225651353598)", - "surface": 41150000, - "canton": null, - "numero_insee": "57089" - } - }, - { - "pk": 33728, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BLANCHE-EGLISE", - "center": "POINT (918888.5681349865626544 2429967.1516291843727231)", - "surface": 6820000, - "canton": null, - "numero_insee": "57090" - } - }, - { - "pk": 37115, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BLIESBRUCK", - "center": "POINT (953484.3393362103961408 2467792.0257208766415715)", - "surface": 10900000, - "canton": null, - "numero_insee": "57091" - } - }, - { - "pk": 22582, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BLIES-EBERSING", - "center": "POINT (950781.0321089993230999 2467968.7024143110029399)", - "surface": 5230000, - "canton": null, - "numero_insee": "57092" - } - }, - { - "pk": 20795, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BLIES-GUERSVILLER", - "center": "POINT (947151.1703577487496659 2471139.3156302594579756)", - "surface": 3660000, - "canton": null, - "numero_insee": "57093" - } - }, - { - "pk": 35581, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOUCHEPORN", - "center": "POINT (912440.6124387556919828 2469738.0543753784149885)", - "surface": 6620000, - "canton": null, - "numero_insee": "57095" - } - }, - { - "pk": 31297, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOULANGE", - "center": "POINT (862606.1588527677813545 2493223.5994166466407478)", - "surface": 12780000, - "canton": null, - "numero_insee": "57096" - } - }, - { - "pk": 29834, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOULAY-MOSELLE", - "center": "POINT (903511.2632952682906762 2472462.7220082166604698)", - "surface": 19590000, - "canton": null, - "numero_insee": "57097" - } - }, - { - "pk": 37309, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOURGALTROFF", - "center": "POINT (924708.1888039351906627 2439724.1098360624164343)", - "surface": 9850000, - "canton": null, - "numero_insee": "57098" - } - }, - { - "pk": 18353, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOURDONNAY", - "center": "POINT (923652.0382226821966469 2423003.5340584283694625)", - "surface": 17490000, - "canton": null, - "numero_insee": "57099" - } - }, - { - "pk": 20078, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOURSCHEID", - "center": "POINT (957214.5929744995664805 2429998.9746662206016481)", - "surface": 4110000, - "canton": null, - "numero_insee": "57100" - } - }, - { - "pk": 25998, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOUSBACH", - "center": "POINT (936448.4443639342207462 2470646.2809083918109536)", - "surface": 5940000, - "canton": null, - "numero_insee": "57101" - } - }, - { - "pk": 13934, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOUSSE", - "center": "POINT (881513.2612486457219347 2482179.3051860607229173)", - "surface": 8860000, - "canton": null, - "numero_insee": "57102" - } - }, - { - "pk": 34070, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOUSSEVILLER", - "center": "POINT (974075.4575980827212334 2470372.4507078193128109)", - "surface": 3980000, - "canton": null, - "numero_insee": "57103" - } - }, - { - "pk": 29752, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOUST", - "center": "POINT (879858.9004885493777692 2499976.3463812186382711)", - "surface": 7030000, - "canton": null, - "numero_insee": "57104" - } - }, - { - "pk": 33004, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOUSTROFF", - "center": "POINT (914183.4085960556985810 2453342.2930656750686467)", - "surface": 3470000, - "canton": null, - "numero_insee": "57105" - } - }, - { - "pk": 34585, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BOUZONVILLE", - "center": "POINT (905895.1364445018116385 2486092.0952407633885741)", - "surface": 13820000, - "canton": null, - "numero_insee": "57106" - } - }, - { - "pk": 23666, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BREHAIN", - "center": "POINT (908472.4829320448916405 2442585.7553788535296917)", - "surface": 3570000, - "canton": null, - "numero_insee": "57107" - } - }, - { - "pk": 24373, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BREIDENBACH", - "center": "POINT (970864.9027779779862612 2471345.1980400364845991)", - "surface": 10970000, - "canton": null, - "numero_insee": "57108" - } - }, - { - "pk": 18723, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BREISTROFF-LA-GRANDE", - "center": "POINT (882043.7282649071421474 2501896.3718981859274209)", - "surface": 10630000, - "canton": null, - "numero_insee": "57109" - } - }, - { - "pk": 19594, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BRETTNACH", - "center": "POINT (907534.9486150662414730 2481603.3752233590930700)", - "surface": 5970000, - "canton": null, - "numero_insee": "57110" - } - }, - { - "pk": 30434, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BRONVAUX", - "center": "POINT (873190.3659670697525144 2472601.4544590534642339)", - "surface": 1520000, - "canton": null, - "numero_insee": "57111" - } - }, - { - "pk": 31045, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BROUCK", - "center": "POINT (904557.6486460466403514 2467168.2989122439175844)", - "surface": 3030000, - "canton": null, - "numero_insee": "57112" - } - }, - { - "pk": 21289, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BROUDERDORFF", - "center": "POINT (950586.8606428519124165 2421135.3930180710740387)", - "surface": 4810000, - "canton": null, - "numero_insee": "57113" - } - }, - { - "pk": 36349, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BROUVILLER", - "center": "POINT (955027.1372200166806579 2428378.8914203168824315)", - "surface": 10120000, - "canton": null, - "numero_insee": "57114" - } - }, - { - "pk": 35112, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BRULANGE", - "center": "POINT (908521.5340254977345467 2448490.1486910236999393)", - "surface": 5840000, - "canton": null, - "numero_insee": "57115" - } - }, - { - "pk": 13662, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BUCHY", - "center": "POINT (888998.7036939645186067 2449622.4836691804230213)", - "surface": 3570000, - "canton": null, - "numero_insee": "57116" - } - }, - { - "pk": 24215, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BUDING", - "center": "POINT (889864.5132087704259902 2488455.2905061240307987)", - "surface": 6350000, - "canton": null, - "numero_insee": "57117" - } - }, - { - "pk": 16224, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BUDLING", - "center": "POINT (891246.3083707205951214 2490668.6128466813825071)", - "surface": 5720000, - "canton": null, - "numero_insee": "57118" - } - }, - { - "pk": 33821, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BUHL-LORRAINE", - "center": "POINT (948562.1954258361365646 2423819.7068152045831084)", - "surface": 11610000, - "canton": null, - "numero_insee": "57119" - } - }, - { - "pk": 6863, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BURLIONCOURT", - "center": "POINT (911316.5374748141039163 2437707.0134682399220765)", - "surface": 7390000, - "canton": null, - "numero_insee": "57120" - } - }, - { - "pk": 9280, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BURTONCOURT", - "center": "POINT (896565.8298513439949602 2477205.8642476839013398)", - "surface": 5090000, - "canton": null, - "numero_insee": "57121" - } - }, - { - "pk": 8761, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CAPPEL", - "center": "POINT (929314.4465465121902525 2462479.1713815154507756)", - "surface": 5930000, - "canton": null, - "numero_insee": "57122" - } - }, - { - "pk": 4559, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CARLING", - "center": "POINT (919325.5656223366968334 2471999.0274138576351106)", - "surface": 2660000, - "canton": null, - "numero_insee": "57123" - } - }, - { - "pk": 8026, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHAILLY-LES-ENNERY", - "center": "POINT (885574.2045194517122582 2475409.9318212070502341)", - "surface": 7370000, - "canton": null, - "numero_insee": "57125" - } - }, - { - "pk": 27699, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHAMBREY", - "center": "POINT (902478.5534437284804881 2429825.3450463316403329)", - "surface": 14320000, - "canton": null, - "numero_insee": "57126" - } - }, - { - "pk": 28534, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHANVILLE", - "center": "POINT (899941.3123898536432534 2457121.8399807754904032)", - "surface": 3900000, - "canton": null, - "numero_insee": "57127" - } - }, - { - "pk": 32495, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHARLEVILLE-SOUS-BOIS", - "center": "POINT (896692.6620764050167054 2474104.9500274378806353)", - "surface": 12780000, - "canton": null, - "numero_insee": "57128" - } - }, - { - "pk": 25782, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHARLY-ORADOUR", - "center": "POINT (885109.2914226268185303 2471303.2603607866913080)", - "surface": 6870000, - "canton": null, - "numero_insee": "57129" - } - }, - { - "pk": 26858, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHATEAU-BREHAIN", - "center": "POINT (906780.1062776849139482 2441570.4585129139013588)", - "surface": 6100000, - "canton": null, - "numero_insee": "57130" - } - }, - { - "pk": 29176, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHATEAU-ROUGE", - "center": "POINT (910010.4271518597379327 2484626.6967600611969829)", - "surface": 4310000, - "canton": null, - "numero_insee": "57131" - } - }, - { - "pk": 33450, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHATEAU-SALINS", - "center": "POINT (905256.9280726378783584 2432551.1862090728245676)", - "surface": 11000000, - "canton": null, - "numero_insee": "57132" - } - }, - { - "pk": 8931, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHATEAU-VOUE", - "center": "POINT (914931.6892021028324962 2436237.2419958151876926)", - "surface": 7520000, - "canton": null, - "numero_insee": "57133" - } - }, - { - "pk": 12257, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHATEL-SAINT-GERMAIN", - "center": "POINT (872248.3878616363508627 2465788.9067412456497550)", - "surface": 12950000, - "canton": null, - "numero_insee": "57134" - } - }, - { - "pk": 33965, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHEMERY-LES-DEUX", - "center": "POINT (898792.8504835532512516 2485830.6239025350660086)", - "surface": 10000000, - "canton": null, - "numero_insee": "57136" - } - }, - { - "pk": 21974, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHEMINOT", - "center": "POINT (878419.1338582455646247 2446429.2049855301156640)", - "surface": 11460000, - "canton": null, - "numero_insee": "57137" - } - }, - { - "pk": 7565, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHENOIS", - "center": "POINT (904123.2342209687922150 2447951.8176133013330400)", - "surface": 3570000, - "canton": null, - "numero_insee": "57138" - } - }, - { - "pk": 7309, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHERISEY", - "center": "POINT (885968.4499146982561797 2452898.5532082067802548)", - "surface": 5130000, - "canton": null, - "numero_insee": "57139" - } - }, - { - "pk": 31008, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHESNY", - "center": "POINT (885628.5856786055956036 2457498.6770562138408422)", - "surface": 4350000, - "canton": null, - "numero_insee": "57140" - } - }, - { - "pk": 13563, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHICOURT", - "center": "POINT (905460.3101033162092790 2443760.5425905035808682)", - "surface": 5540000, - "canton": null, - "numero_insee": "57141" - } - }, - { - "pk": 32915, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CHIEULLES", - "center": "POINT (883326.3684984357096255 2469186.5192626547068357)", - "surface": 2590000, - "canton": null, - "numero_insee": "57142" - } - }, - { - "pk": 5969, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CLOUANGE", - "center": "POINT (873122.2822133798617870 2480505.9736498375423253)", - "surface": 2990000, - "canton": null, - "numero_insee": "57143" - } - }, - { - "pk": 33731, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COCHEREN", - "center": "POINT (929548.7818053306546062 2470086.1952814068645239)", - "surface": 5620000, - "canton": null, - "numero_insee": "57144" - } - }, - { - "pk": 6801, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COINCY", - "center": "POINT (887176.8892640362028033 2463616.0528517691418529)", - "surface": 7170000, - "canton": null, - "numero_insee": "57145" - } - }, - { - "pk": 33937, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COIN-LES-CUVRY", - "center": "POINT (877952.5115181936416775 2454130.3248402262106538)", - "surface": 6650000, - "canton": null, - "numero_insee": "57146" - } - }, - { - "pk": 12850, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COIN-SUR-SEILLE", - "center": "POINT (879667.3112100549042225 2452544.0368876801803708)", - "surface": 3310000, - "canton": null, - "numero_insee": "57147" - } - }, - { - "pk": 34830, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COLLIGNY", - "center": "POINT (892087.5153257261263207 2462757.8198610758408904)", - "surface": 3590000, - "canton": null, - "numero_insee": "57148" - } - }, - { - "pk": 7448, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COLMEN", - "center": "POINT (905046.2759863648097962 2491688.3332862625829875)", - "surface": 4880000, - "canton": null, - "numero_insee": "57149" - } - }, - { - "pk": 23519, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CONDE-NORTHEN", - "center": "POINT (898431.6480016913264990 2469717.0971855157986283)", - "surface": 10880000, - "canton": null, - "numero_insee": "57150" - } - }, - { - "pk": 35587, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CONTHIL", - "center": "POINT (917289.8812965175602585 2441261.0242959647439420)", - "surface": 9270000, - "canton": null, - "numero_insee": "57151" - } - }, - { - "pk": 11212, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CONTZ-LES-BAINS", - "center": "POINT (891140.9811214271467179 2502875.3999730064533651)", - "surface": 3200000, - "canton": null, - "numero_insee": "57152" - } - }, - { - "pk": 32720, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CORNY-SUR-MOSELLE", - "center": "POINT (873247.1526060181204230 2454389.9902957687154412)", - "surface": 8210000, - "canton": null, - "numero_insee": "57153" - } - }, - { - "pk": 22396, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COUME", - "center": "POINT (909493.9680219794390723 2474915.9726440464146435)", - "surface": 14820000, - "canton": null, - "numero_insee": "57154" - } - }, - { - "pk": 18354, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COURCELLES-CHAUSSY", - "center": "POINT (896666.8815957964397967 2465499.1135399956256151)", - "surface": 16200000, - "canton": null, - "numero_insee": "57155" - } - }, - { - "pk": 10457, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "COURCELLES-SUR-NIED", - "center": "POINT (890224.3844411665340886 2458338.8426500912755728)", - "surface": 5100000, - "canton": null, - "numero_insee": "57156" - } - }, - { - "pk": 37672, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CRAINCOURT", - "center": "POINT (893098.6349099259823561 2438350.2439399785362184)", - "surface": 9060000, - "canton": null, - "numero_insee": "57158" - } - }, - { - "pk": 10736, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CREHANGE", - "center": "POINT (909835.0340369725599885 2458608.2298146607354283)", - "surface": 10350000, - "canton": null, - "numero_insee": "57159" - } - }, - { - "pk": 32049, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CREUTZWALD", - "center": "POINT (916584.2030336426105350 2476578.3079068958759308)", - "surface": 26780000, - "canton": null, - "numero_insee": "57160" - } - }, - { - "pk": 8298, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "CUTTING", - "center": "POINT (930137.4348252934869379 2436769.0622204304672778)", - "surface": 5490000, - "canton": null, - "numero_insee": "57161" - } - }, - { - "pk": 16775, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DABO", - "center": "POINT (961137.6645982976770028 2416123.3883355264551938)", - "surface": 48720000, - "canton": null, - "numero_insee": "57163" - } - }, - { - "pk": 10567, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DALEM", - "center": "POINT (911451.8718682094477117 2479936.1320483246818185)", - "surface": 7290000, - "canton": null, - "numero_insee": "57165" - } - }, - { - "pk": 13978, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DALHAIN", - "center": "POINT (909991.5414641220122576 2440497.4616000005044043)", - "surface": 4830000, - "canton": null, - "numero_insee": "57166" - } - }, - { - "pk": 7077, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DALSTEIN", - "center": "POINT (895686.7795913994777948 2486304.1289999363943934)", - "surface": 4000000, - "canton": null, - "numero_insee": "57167" - } - }, - { - "pk": 10083, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DANNE-ET-QUATRE-VENTS", - "center": "POINT (964123.1636788523755968 2429558.6058925339020789)", - "surface": 7170000, - "canton": null, - "numero_insee": "57168" - } - }, - { - "pk": 31007, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DANNELBOURG", - "center": "POINT (960440.0058578164316714 2427325.1105065797455609)", - "surface": 2930000, - "canton": null, - "numero_insee": "57169" - } - }, - { - "pk": 9127, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DELME", - "center": "POINT (896893.1552149297203869 2439283.5978169557638466)", - "surface": 5110000, - "canton": null, - "numero_insee": "57171" - } - }, - { - "pk": 27805, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DENTING", - "center": "POINT (906606.1339943690691143 2473289.9784360905177891)", - "surface": 9630000, - "canton": null, - "numero_insee": "57172" - } - }, - { - "pk": 31358, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DESSELING", - "center": "POINT (931195.2179745025932789 2430173.7086517531424761)", - "surface": 5040000, - "canton": null, - "numero_insee": "57173" - } - }, - { - "pk": 10357, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DESTRY", - "center": "POINT (911136.9193422684911638 2446911.6758144232444465)", - "surface": 6890000, - "canton": null, - "numero_insee": "57174" - } - }, - { - "pk": 12922, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DIANE-CAPELLE", - "center": "POINT (938151.4470324704889208 2424229.8203280465677381)", - "surface": 7350000, - "canton": null, - "numero_insee": "57175" - } - }, - { - "pk": 13292, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DIEBLING", - "center": "POINT (935787.0461973969358951 2466137.5993450353853405)", - "surface": 7820000, - "canton": null, - "numero_insee": "57176" - } - }, - { - "pk": 3107, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DIEUZE", - "center": "POINT (921771.2974136970005929 2432193.5917795989662409)", - "surface": 9440000, - "canton": null, - "numero_insee": "57177" - } - }, - { - "pk": 26406, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DIFFEMBACH-LES-HELLIMER", - "center": "POINT (930580.9928943956037983 2454885.0957604185678065)", - "surface": 5760000, - "canton": null, - "numero_insee": "57178" - } - }, - { - "pk": 25944, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DISTROFF", - "center": "POINT (885455.9964400765020400 2489117.7111942861229181)", - "surface": 7980000, - "canton": null, - "numero_insee": "57179" - } - }, - { - "pk": 27661, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DOMNOM-LES-DIEUZE", - "center": "POINT (929221.2982540437951684 2438562.3555330540984869)", - "surface": 6680000, - "canton": null, - "numero_insee": "57181" - } - }, - { - "pk": 30050, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DONJEUX", - "center": "POINT (898798.6191416759975255 2438799.7062794766388834)", - "surface": 3250000, - "canton": null, - "numero_insee": "57182" - } - }, - { - "pk": 34644, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DONNELAY", - "center": "POINT (920026.4527966023888439 2425674.0363231319934130)", - "surface": 13010000, - "canton": null, - "numero_insee": "57183" - } - }, - { - "pk": 9946, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DORNOT", - "center": "POINT (871530.6406536597060040 2456176.4019130673259497)", - "surface": 1150000, - "canton": null, - "numero_insee": "57184" - } - }, - { - "pk": 27415, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "EBERSVILLER", - "center": "POINT (895711.8257812839001417 2483402.4873460107482970)", - "surface": 14030000, - "canton": null, - "numero_insee": "57186" - } - }, - { - "pk": 3323, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "EBLANGE", - "center": "POINT (902369.1493915806058794 2477255.9727178197354078)", - "surface": 3280000, - "canton": null, - "numero_insee": "57187" - } - }, - { - "pk": 12703, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "EGUELSHARDT", - "center": "POINT (979070.5537061819341034 2459808.8823558669537306)", - "surface": 16780000, - "canton": null, - "numero_insee": "57188" - } - }, - { - "pk": 29620, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "EINCHEVILLE", - "center": "POINT (912098.5978575143963099 2451423.0028308136388659)", - "surface": 6800000, - "canton": null, - "numero_insee": "57189" - } - }, - { - "pk": 26216, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ELVANGE", - "center": "POINT (907535.4115543041843921 2458388.2261313097551465)", - "surface": 7260000, - "canton": null, - "numero_insee": "57190" - } - }, - { - "pk": 24463, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ELZANGE", - "center": "POINT (887432.9566565765999258 2491936.5412574522197247)", - "surface": 3970000, - "canton": null, - "numero_insee": "57191" - } - }, - { - "pk": 23140, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ENCHENBERG", - "center": "POINT (965072.7344441814348102 2458486.4170300932601094)", - "surface": 9690000, - "canton": null, - "numero_insee": "57192" - } - }, - { - "pk": 36916, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ENNERY", - "center": "POINT (882858.8549946369603276 2476987.5549796125851572)", - "surface": 7330000, - "canton": null, - "numero_insee": "57193" - } - }, - { - "pk": 33964, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ENTRANGE", - "center": "POINT (873978.0469231023453176 2497324.0358159104362130)", - "surface": 4010000, - "canton": null, - "numero_insee": "57194" - } - }, - { - "pk": 7505, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ERCHING", - "center": "POINT (959781.0563709819689393 2468647.2065583914518356)", - "surface": 6790000, - "canton": null, - "numero_insee": "57196" - } - }, - { - "pk": 25240, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ERNESTVILLER", - "center": "POINT (938927.8700078038964421 2461661.8442791188135743)", - "surface": 4420000, - "canton": null, - "numero_insee": "57197" - } - }, - { - "pk": 22585, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ERSTROFF", - "center": "POINT (924906.1969429695745930 2451533.7710031759925187)", - "surface": 5020000, - "canton": null, - "numero_insee": "57198" - } - }, - { - "pk": 28466, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ESCHERANGE", - "center": "POINT (870775.4083681080956012 2497396.5131006524898112)", - "surface": 13050000, - "canton": null, - "numero_insee": "57199" - } - }, - { - "pk": 29413, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LES ETANGS", - "center": "POINT (894640.6762984052766114 2468383.5250247363001108)", - "surface": 6070000, - "canton": null, - "numero_insee": "57200" - } - }, - { - "pk": 9174, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ETTING", - "center": "POINT (954666.6012752815149724 2458396.0704468041658401)", - "surface": 7190000, - "canton": null, - "numero_insee": "57201" - } - }, - { - "pk": 33918, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ETZLING", - "center": "POINT (937014.9809902689885348 2474553.7344467602670193)", - "surface": 4920000, - "canton": null, - "numero_insee": "57202" - } - }, - { - "pk": 9032, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "EVRANGE", - "center": "POINT (879495.7780025140382349 2507277.7770832218229771)", - "surface": 2230000, - "canton": null, - "numero_insee": "57203" - } - }, - { - "pk": 28467, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FAILLY", - "center": "POINT (887022.4678843891015276 2469918.8461815644986928)", - "surface": 6700000, - "canton": null, - "numero_insee": "57204" - } - }, - { - "pk": 31605, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FALCK", - "center": "POINT (913366.7970388133544475 2478351.6527796592563391)", - "surface": 6130000, - "canton": null, - "numero_insee": "57205" - } - }, - { - "pk": 25359, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FAMECK", - "center": "POINT (874289.3495659891050309 2484418.5287330523133278)", - "surface": 12730000, - "canton": null, - "numero_insee": "57206" - } - }, - { - "pk": 8564, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FAREBERSVILLER", - "center": "POINT (930775.4695365780498832 2467094.8505569528788328)", - "surface": 6800000, - "canton": null, - "numero_insee": "57207" - } - }, - { - "pk": 32107, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FARSCHVILLER", - "center": "POINT (932200.5465850032633170 2464305.3493601325899363)", - "surface": 11310000, - "canton": null, - "numero_insee": "57208" - } - }, - { - "pk": 15043, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FAULQUEMONT", - "center": "POINT (911349.7527594100683928 2457020.2599567659199238)", - "surface": 18830000, - "canton": null, - "numero_insee": "57209" - } - }, - { - "pk": 33238, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FENETRANGE", - "center": "POINT (942933.9179605662357062 2438180.7955015115439892)", - "surface": 14740000, - "canton": null, - "numero_insee": "57210" - } - }, - { - "pk": 33658, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FEVES", - "center": "POINT (875288.9880250243004411 2472919.7267971355468035)", - "surface": 4820000, - "canton": null, - "numero_insee": "57211" - } - }, - { - "pk": 13484, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FEY", - "center": "POINT (875247.4704099961090833 2454507.2860819171182811)", - "surface": 5740000, - "canton": null, - "numero_insee": "57212" - } - }, - { - "pk": 10198, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FILSTROFF", - "center": "POINT (904970.4238476241007447 2488885.8951797788031399)", - "surface": 16820000, - "canton": null, - "numero_insee": "57213" - } - }, - { - "pk": 15531, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FIXEM", - "center": "POINT (885553.4260278567671776 2501026.0712881130166352)", - "surface": 3540000, - "canton": null, - "numero_insee": "57214" - } - }, - { - "pk": 19400, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FLASTROFF", - "center": "POINT (905022.0715908403508365 2494489.9006362026557326)", - "surface": 8440000, - "canton": null, - "numero_insee": "57215" - } - }, - { - "pk": 36022, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FLEISHEIM", - "center": "POINT (954592.1646017348393798 2432377.8664936018176377)", - "surface": 4140000, - "canton": null, - "numero_insee": "57216" - } - }, - { - "pk": 33979, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FLETRANGE", - "center": "POINT (908913.7538320596795529 2461001.8558134962804615)", - "surface": 6070000, - "canton": null, - "numero_insee": "57217" - } - }, - { - "pk": 30249, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FLEURY", - "center": "POINT (882941.6621394010726362 2455774.3851817422546446)", - "surface": 9690000, - "canton": null, - "numero_insee": "57218" - } - }, - { - "pk": 29982, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FLEVY", - "center": "POINT (886048.6054084394127131 2478415.9624863518401980)", - "surface": 11520000, - "canton": null, - "numero_insee": "57219" - } - }, - { - "pk": 8563, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FLOCOURT", - "center": "POINT (898307.6854230670724064 2449302.5401706271804869)", - "surface": 4510000, - "canton": null, - "numero_insee": "57220" - } - }, - { - "pk": 4021, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FLORANGE", - "center": "POINT (875361.5249737340491265 2487729.8731703413650393)", - "surface": 13180000, - "canton": null, - "numero_insee": "57221" - } - }, - { - "pk": 25409, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FOLKLING", - "center": "POINT (933342.3164722977671772 2471119.7005927753634751)", - "surface": 11860000, - "canton": null, - "numero_insee": "57222" - } - }, - { - "pk": 7599, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FOLSCHVILLER", - "center": "POINT (917718.9091114423936233 2461077.9753916026093066)", - "surface": 9540000, - "canton": null, - "numero_insee": "57224" - } - }, - { - "pk": 24754, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FONTENY", - "center": "POINT (903801.6351409773342311 2438842.9040627549402416)", - "surface": 15610000, - "canton": null, - "numero_insee": "57225" - } - }, - { - "pk": 14897, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FONTOY", - "center": "POINT (866030.4506851113401353 2490651.4242166006006300)", - "surface": 17050000, - "canton": null, - "numero_insee": "57226" - } - }, - { - "pk": 33593, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FORBACH", - "center": "POINT (932103.4940706223715097 2475511.8389341733418405)", - "surface": 16460000, - "canton": null, - "numero_insee": "57227" - } - }, - { - "pk": 29136, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FOSSIEUX", - "center": "POINT (893124.5337558947503567 2435348.4303730325773358)", - "surface": 5100000, - "canton": null, - "numero_insee": "57228" - } - }, - { - "pk": 13276, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FOULIGNY", - "center": "POINT (905090.7842053947970271 2463370.4083785228431225)", - "surface": 6020000, - "canton": null, - "numero_insee": "57230" - } - }, - { - "pk": 36934, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FOVILLE", - "center": "POINT (892358.5031660669483244 2442946.9677787688560784)", - "surface": 3410000, - "canton": null, - "numero_insee": "57231" - } - }, - { - "pk": 4130, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FRANCALTROFF", - "center": "POINT (926523.6014553324785084 2449646.4963322686962783)", - "surface": 12470000, - "canton": null, - "numero_insee": "57232" - } - }, - { - "pk": 26663, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FRAQUELFING", - "center": "POINT (942841.8684214591048658 2414163.4377983575686812)", - "surface": 4570000, - "canton": null, - "numero_insee": "57233" - } - }, - { - "pk": 3682, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FRAUENBERG", - "center": "POINT (948760.7755913597065955 2470152.6211643056012690)", - "surface": 2720000, - "canton": null, - "numero_insee": "57234" - } - }, - { - "pk": 29116, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FREISTROFF", - "center": "POINT (901703.1316870573209599 2484855.1149168396368623)", - "surface": 14730000, - "canton": null, - "numero_insee": "57235" - } - }, - { - "pk": 34878, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FREMERY", - "center": "POINT (903155.4750864066882059 2444140.9053644067607820)", - "surface": 4420000, - "canton": null, - "numero_insee": "57236" - } - }, - { - "pk": 6643, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FREMESTROFF", - "center": "POINT (925472.7814704617485404 2455441.2766208616085351)", - "surface": 5570000, - "canton": null, - "numero_insee": "57237" - } - }, - { - "pk": 33738, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FRESNES-EN-SAULNOIS", - "center": "POINT (901237.2162458787206560 2434517.8374957889318466)", - "surface": 12890000, - "canton": null, - "numero_insee": "57238" - } - }, - { - "pk": 26404, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FREYBOUSE", - "center": "POINT (924988.0724142817780375 2453635.8823000751435757)", - "surface": 5930000, - "canton": null, - "numero_insee": "57239" - } - }, - { - "pk": 34189, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FREYMING-MERLEBACH", - "center": "POINT (925439.4794592229882255 2470851.1454287609085441)", - "surface": 9210000, - "canton": null, - "numero_insee": "57240" - } - }, - { - "pk": 19820, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "FRIBOURG", - "center": "POINT (933310.3651468027383089 2428590.9239195706322789)", - "surface": 17600000, - "canton": null, - "numero_insee": "57241" - } - }, - { - "pk": 12716, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GANDRANGE", - "center": "POINT (876413.8143828853499144 2481735.1005423297174275)", - "surface": 4110000, - "canton": null, - "numero_insee": "57242" - } - }, - { - "pk": 33680, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GARREBOURG", - "center": "POINT (960573.9440180130768567 2423423.5760011314414442)", - "surface": 8290000, - "canton": null, - "numero_insee": "57244" - } - }, - { - "pk": 30601, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GAVISSE", - "center": "POINT (886761.8561960475053638 2500135.9288393259048462)", - "surface": 4170000, - "canton": null, - "numero_insee": "57245" - } - }, - { - "pk": 29615, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GELUCOURT", - "center": "POINT (923516.4836012447485700 2427105.1898457747884095)", - "surface": 13560000, - "canton": null, - "numero_insee": "57246" - } - }, - { - "pk": 4386, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GERBECOURT", - "center": "POINT (906726.7231035865843296 2436166.3359370068646967)", - "surface": 3000000, - "canton": null, - "numero_insee": "57247" - } - }, - { - "pk": 29617, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GIVRYCOURT", - "center": "POINT (935656.7567984047345817 2446523.4260976598598063)", - "surface": 2860000, - "canton": null, - "numero_insee": "57248" - } - }, - { - "pk": 11213, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GLATIGNY", - "center": "POINT (892743.8925428969087079 2467866.8298452808521688)", - "surface": 6210000, - "canton": null, - "numero_insee": "57249" - } - }, - { - "pk": 12991, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GOIN", - "center": "POINT (884489.9917377626989037 2450284.0721092442981899)", - "surface": 8970000, - "canton": null, - "numero_insee": "57251" - } - }, - { - "pk": 34057, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GOMELANGE", - "center": "POINT (900452.5094534230884165 2479040.5838696598075330)", - "surface": 9470000, - "canton": null, - "numero_insee": "57252" - } - }, - { - "pk": 22039, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GONDREXANGE", - "center": "POINT (936485.9343383249361068 2420112.5522389723919332)", - "surface": 29490000, - "canton": null, - "numero_insee": "57253" - } - }, - { - "pk": 17349, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GORZE", - "center": "POINT (867118.5780818284256384 2457239.1446919837035239)", - "surface": 17970000, - "canton": null, - "numero_insee": "57254" - } - }, - { - "pk": 11253, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GOSSELMING", - "center": "POINT (941491.9762611028272659 2431363.6533022751100361)", - "surface": 10230000, - "canton": null, - "numero_insee": "57255" - } - }, - { - "pk": 23617, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GRAVELOTTE", - "center": "POINT (869268.1827350610401481 2463261.6049048523418605)", - "surface": 5700000, - "canton": null, - "numero_insee": "57256" - } - }, - { - "pk": 18343, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GREMECEY", - "center": "POINT (899263.6437355075031519 2431298.6151554780080914)", - "surface": 9010000, - "canton": null, - "numero_insee": "57257" - } - }, - { - "pk": 22503, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GRENING", - "center": "POINT (929812.5723959245951846 2451175.9715235731564462)", - "surface": 2730000, - "canton": null, - "numero_insee": "57258" - } - }, - { - "pk": 33029, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GRINDORFF-BIZING", - "center": "POINT (903415.1276084468699992 2495176.4613435734063387)", - "surface": 6820000, - "canton": null, - "numero_insee": "57259" - } - }, - { - "pk": 28966, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GROSBLIEDERSTROFF", - "center": "POINT (941839.4287990268785506 2472093.9146459219045937)", - "surface": 13080000, - "canton": null, - "numero_insee": "57260" - } - }, - { - "pk": 15946, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GROS-REDERCHING", - "center": "POINT (956725.2840093568665907 2463317.1861075661145151)", - "surface": 15670000, - "canton": null, - "numero_insee": "57261" - } - }, - { - "pk": 35348, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GRUNDVILLER", - "center": "POINT (939742.2128679952584207 2460067.8417856926098466)", - "surface": 6290000, - "canton": null, - "numero_insee": "57263" - } - }, - { - "pk": 5307, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUEBENHOUSE", - "center": "POINT (937114.6780006670160219 2463047.0586131894960999)", - "surface": 4480000, - "canton": null, - "numero_insee": "57264" - } - }, - { - "pk": 10362, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUEBESTROFF", - "center": "POINT (921238.9680873684119433 2435891.5126801365986466)", - "surface": 3810000, - "canton": null, - "numero_insee": "57265" - } - }, - { - "pk": 27059, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUEBLANGE-LES-DIEUZE", - "center": "POINT (920700.0534333349205554 2428781.9951244248077273)", - "surface": 4830000, - "canton": null, - "numero_insee": "57266" - } - }, - { - "pk": 32993, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUEBLING", - "center": "POINT (922813.9679852398112416 2438907.1776455286890268)", - "surface": 6840000, - "canton": null, - "numero_insee": "57268" - } - }, - { - "pk": 36004, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUENANGE", - "center": "POINT (881390.7793378040660173 2484779.9161732690408826)", - "surface": 8460000, - "canton": null, - "numero_insee": "57269" - } - }, - { - "pk": 36297, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VAL-DE-BRIDE", - "center": "POINT (919650.1138576236553490 2434476.8156069829128683)", - "surface": 11430000, - "canton": null, - "numero_insee": "57270" - } - }, - { - "pk": 8059, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUENVILLER", - "center": "POINT (926285.8434107461944222 2465554.9967054203152657)", - "surface": 4730000, - "canton": null, - "numero_insee": "57271" - } - }, - { - "pk": 32768, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUERMANGE", - "center": "POINT (929278.4658618657849729 2431958.3489226936362684)", - "surface": 18700000, - "canton": null, - "numero_insee": "57272" - } - }, - { - "pk": 25004, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUERSTLING", - "center": "POINT (908271.4176644159015268 2489014.4818416461348534)", - "surface": 4470000, - "canton": null, - "numero_insee": "57273" - } - }, - { - "pk": 27213, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUERTING", - "center": "POINT (912198.1142628109082580 2474639.1510658594779670)", - "surface": 5590000, - "canton": null, - "numero_insee": "57274" - } - }, - { - "pk": 10607, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUESSLING-HEMERING", - "center": "POINT (916764.1819844841957092 2455766.2055278774350882)", - "surface": 10100000, - "canton": null, - "numero_insee": "57275" - } - }, - { - "pk": 26301, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUINGLANGE", - "center": "POINT (905515.2200851738452911 2460572.2283169035799801)", - "surface": 10450000, - "canton": null, - "numero_insee": "57276" - } - }, - { - "pk": 9312, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUINKIRCHEN", - "center": "POINT (899482.1764365057460964 2475529.9409321635030210)", - "surface": 5170000, - "canton": null, - "numero_insee": "57277" - } - }, - { - "pk": 12197, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "GUINZELING", - "center": "POINT (930603.0858211466111243 2440775.8108114167116582)", - "surface": 4880000, - "canton": null, - "numero_insee": "57278" - } - }, - { - "pk": 28322, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HABOUDANGE", - "center": "POINT (912895.0176214753882959 2440322.4195256424136460)", - "surface": 10430000, - "canton": null, - "numero_insee": "57281" - } - }, - { - "pk": 7905, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAGEN", - "center": "POINT (877499.8567696559475735 2506660.2015877934172750)", - "surface": 3480000, - "canton": null, - "numero_insee": "57282" - } - }, - { - "pk": 11334, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAGONDANGE", - "center": "POINT (878339.8987261657603085 2478849.8311965963803232)", - "surface": 5530000, - "canton": null, - "numero_insee": "57283" - } - }, - { - "pk": 9235, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HALLERING", - "center": "POINT (907963.9457763629034162 2466697.3997697378508747)", - "surface": 3550000, - "canton": null, - "numero_insee": "57284" - } - }, - { - "pk": 28015, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HALSTROFF", - "center": "POINT (900709.3005780183011666 2495653.4065458448603749)", - "surface": 10900000, - "canton": null, - "numero_insee": "57286" - } - }, - { - "pk": 38043, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BASSE-HAM", - "center": "POINT (883416.9133640984073281 2493502.9219473209232092)", - "surface": 10020000, - "canton": null, - "numero_insee": "57287" - } - }, - { - "pk": 30564, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAM-SOUS-VARSBERG", - "center": "POINT (914408.8954618740826845 2473557.5490757091902196)", - "surface": 6520000, - "canton": null, - "numero_insee": "57288" - } - }, - { - "pk": 14450, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAMBACH", - "center": "POINT (943637.5653590119909495 2460902.1351495045237243)", - "surface": 17480000, - "canton": null, - "numero_insee": "57289" - } - }, - { - "pk": 28533, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAMPONT", - "center": "POINT (911946.3031923342496157 2434310.1422992725856602)", - "surface": 11200000, - "canton": null, - "numero_insee": "57290" - } - }, - { - "pk": 13151, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HANGVILLER", - "center": "POINT (959469.9667781104799360 2435322.1844043429009616)", - "surface": 4530000, - "canton": null, - "numero_insee": "57291" - } - }, - { - "pk": 15059, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HANNOCOURT", - "center": "POINT (901664.9446101123467088 2442927.2250723917968571)", - "surface": 4220000, - "canton": null, - "numero_insee": "57292" - } - }, - { - "pk": 19791, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HARAUCOURT-SUR-SEILLE", - "center": "POINT (913568.8975806562229991 2431822.4593845587223768)", - "surface": 8090000, - "canton": null, - "numero_insee": "57295" - } - }, - { - "pk": 33399, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HARGARTEN-AUX-MINES", - "center": "POINT (910971.4785856856033206 2477630.4931183187291026)", - "surface": 5520000, - "canton": null, - "numero_insee": "57296" - } - }, - { - "pk": 23912, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HARPRICH", - "center": "POINT (916217.4700142873916775 2449557.3396227350458503)", - "surface": 8740000, - "canton": null, - "numero_insee": "57297" - } - }, - { - "pk": 17882, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HARREBERG", - "center": "POINT (956217.2444919615518302 2418082.0797268738970160)", - "surface": 5770000, - "canton": null, - "numero_insee": "57298" - } - }, - { - "pk": 37692, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HARTZVILLER", - "center": "POINT (949808.9269423708319664 2418526.8382687554694712)", - "surface": 4200000, - "canton": null, - "numero_insee": "57299" - } - }, - { - "pk": 19943, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HASELBOURG", - "center": "POINT (959492.3723101540235803 2421212.6607109536416829)", - "surface": 6180000, - "canton": null, - "numero_insee": "57300" - } - }, - { - "pk": 4831, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HASPELSCHIEDT", - "center": "POINT (976819.6615051755215973 2465493.0851197228766978)", - "surface": 25180000, - "canton": null, - "numero_insee": "57301" - } - }, - { - "pk": 17194, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HATTIGNY", - "center": "POINT (940849.2899021748453379 2413145.4711076938547194)", - "surface": 13370000, - "canton": null, - "numero_insee": "57302" - } - }, - { - "pk": 36466, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAUCONCOURT", - "center": "POINT (880374.6730754032032564 2474964.8469608593732119)", - "surface": 7900000, - "canton": null, - "numero_insee": "57303" - } - }, - { - "pk": 32267, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAVANGE", - "center": "POINT (866101.2225464663933963 2494054.1864593708887696)", - "surface": 9560000, - "canton": null, - "numero_insee": "57305" - } - }, - { - "pk": 21137, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAYANGE", - "center": "POINT (871157.4368014016654342 2487893.7875585560686886)", - "surface": 12220000, - "canton": null, - "numero_insee": "57306" - } - }, - { - "pk": 32124, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAYES", - "center": "POINT (894817.4765475763706490 2471086.8132874690927565)", - "surface": 12010000, - "canton": null, - "numero_insee": "57307" - } - }, - { - "pk": 10237, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAZEMBOURG", - "center": "POINT (937225.6400977090233937 2450239.5032532894983888)", - "surface": 1700000, - "canton": null, - "numero_insee": "57308" - } - }, - { - "pk": 7904, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HEINING-LES-BOUZONVILLE", - "center": "POINT (909889.6150535438209772 2487027.1898599606938660)", - "surface": 6120000, - "canton": null, - "numero_insee": "57309" - } - }, - { - "pk": 4416, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HELLERING-LES-FENETRANGE", - "center": "POINT (947275.5635208145249635 2433715.3635209235362709)", - "surface": 4080000, - "canton": null, - "numero_insee": "57310" - } - }, - { - "pk": 13426, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HELSTROFF", - "center": "POINT (902435.6898877291241661 2469551.5411235275678337)", - "surface": 7890000, - "canton": null, - "numero_insee": "57312" - } - }, - { - "pk": 34641, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HEMING", - "center": "POINT (941080.1132630107458681 2421153.0478038080036640)", - "surface": 3680000, - "canton": null, - "numero_insee": "57314" - } - }, - { - "pk": 21182, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HENRIDORFF", - "center": "POINT (958450.0668168171541765 2426006.9398592300713062)", - "surface": 7300000, - "canton": null, - "numero_insee": "57315" - } - }, - { - "pk": 6064, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HENRIVILLE", - "center": "POINT (930091.5232486136956140 2465187.6793102850206196)", - "surface": 3920000, - "canton": null, - "numero_insee": "57316" - } - }, - { - "pk": 11732, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HERANGE", - "center": "POINT (955406.5448543650563806 2430783.8345995256677270)", - "surface": 2810000, - "canton": null, - "numero_insee": "57317" - } - }, - { - "pk": 31465, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HERNY", - "center": "POINT (903179.4904630273813382 2452947.0099389390088618)", - "surface": 9750000, - "canton": null, - "numero_insee": "57319" - } - }, - { - "pk": 37470, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HERTZING", - "center": "POINT (939887.1735025756061077 2420242.0864234268665314)", - "surface": 1640000, - "canton": null, - "numero_insee": "57320" - } - }, - { - "pk": 34875, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HESSE", - "center": "POINT (947091.6341985410545021 2420304.5286534931510687)", - "surface": 13010000, - "canton": null, - "numero_insee": "57321" - } - }, - { - "pk": 6490, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HESTROFF", - "center": "POINT (897927.7589303667191416 2481720.5241637537255883)", - "surface": 7520000, - "canton": null, - "numero_insee": "57322" - } - }, - { - "pk": 28465, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HETTANGE-GRANDE", - "center": "POINT (876976.2641848128987476 2497750.1200264953076839)", - "surface": 16260000, - "canton": null, - "numero_insee": "57323" - } - }, - { - "pk": 17437, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HILBESHEIM", - "center": "POINT (950003.2424591078888625 2430736.9610053249634802)", - "surface": 7570000, - "canton": null, - "numero_insee": "57324" - } - }, - { - "pk": 26704, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HILSPRICH", - "center": "POINT (934682.5512087167007849 2455020.6822666027583182)", - "surface": 10270000, - "canton": null, - "numero_insee": "57325" - } - }, - { - "pk": 7687, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HINCKANGE", - "center": "POINT (899801.3555779512971640 2473331.2686172937974334)", - "surface": 6100000, - "canton": null, - "numero_insee": "57326" - } - }, - { - "pk": 12466, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOLACOURT", - "center": "POINT (905404.9939944446086884 2450164.3624188452959061)", - "surface": 2920000, - "canton": null, - "numero_insee": "57328" - } - }, - { - "pk": 26200, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOLLING", - "center": "POINT (903135.0376171177485958 2481265.1697304374538362)", - "surface": 4860000, - "canton": null, - "numero_insee": "57329" - } - }, - { - "pk": 4152, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOLVING", - "center": "POINT (938775.4392346926033497 2456156.8733871886506677)", - "surface": 10800000, - "canton": null, - "numero_insee": "57330" - } - }, - { - "pk": 35759, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOMBOURG-BUDANGE", - "center": "POINT (892503.9669495932757854 2484075.2512519895099103)", - "surface": 15510000, - "canton": null, - "numero_insee": "57331" - } - }, - { - "pk": 9843, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOMBOURG-HAUT", - "center": "POINT (923863.6643418164458126 2467935.6097462791949511)", - "surface": 12250000, - "canton": null, - "numero_insee": "57332" - } - }, - { - "pk": 26797, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOMMARTING", - "center": "POINT (953543.5785767403431237 2426364.6406166306696832)", - "surface": 10270000, - "canton": null, - "numero_insee": "57333" - } - }, - { - "pk": 9548, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOMMERT", - "center": "POINT (956403.4764321141410619 2419684.8101545283570886)", - "surface": 3640000, - "canton": null, - "numero_insee": "57334" - } - }, - { - "pk": 11125, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HONSKIRCH", - "center": "POINT (938946.5933580297278240 2447952.8695611474104226)", - "surface": 6490000, - "canton": null, - "numero_insee": "57335" - } - }, - { - "pk": 27480, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "L'HOPITAL", - "center": "POINT (920634.1066549419192597 2471109.7599223577417433)", - "surface": 4190000, - "canton": null, - "numero_insee": "57336" - } - }, - { - "pk": 18646, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HOSTE", - "center": "POINT (930731.7274221502011642 2460590.1865750406868756)", - "surface": 9420000, - "canton": null, - "numero_insee": "57337" - } - }, - { - "pk": 33679, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HULTEHOUSE", - "center": "POINT (962365.4994904695777223 2424539.8916718494147062)", - "surface": 4630000, - "canton": null, - "numero_insee": "57339" - } - }, - { - "pk": 7207, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HUNDLING", - "center": "POINT (939490.9361820975318551 2465969.5605258862487972)", - "surface": 6610000, - "canton": null, - "numero_insee": "57340" - } - }, - { - "pk": 28016, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HUNTING", - "center": "POINT (889881.7000093779060990 2498061.5212298193946481)", - "surface": 3760000, - "canton": null, - "numero_insee": "57341" - } - }, - { - "pk": 26800, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "IBIGNY", - "center": "POINT (936030.6902961602900177 2414904.9872133880853653)", - "surface": 4760000, - "canton": null, - "numero_insee": "57342" - } - }, - { - "pk": 5588, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ILLANGE", - "center": "POINT (879461.2467741754371673 2488065.3921679868362844)", - "surface": 5700000, - "canton": null, - "numero_insee": "57343" - } - }, - { - "pk": 25801, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "IMLING", - "center": "POINT (944469.2071083933115005 2422683.4600307228974998)", - "surface": 6480000, - "canton": null, - "numero_insee": "57344" - } - }, - { - "pk": 22021, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "INGLANGE", - "center": "POINT (888147.1578912393888459 2490341.6853584689088166)", - "surface": 5780000, - "canton": null, - "numero_insee": "57345" - } - }, - { - "pk": 8566, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "INSMING", - "center": "POINT (933131.8647354461718351 2449203.3726274687796831)", - "surface": 7270000, - "canton": null, - "numero_insee": "57346" - } - }, - { - "pk": 11945, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "INSVILLER", - "center": "POINT (935293.7852428988553584 2442217.3791763619519770)", - "surface": 9440000, - "canton": null, - "numero_insee": "57347" - } - }, - { - "pk": 10740, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "IPPLING", - "center": "POINT (940787.3578274004394189 2466481.1250444212928414)", - "surface": 3390000, - "canton": null, - "numero_insee": "57348" - } - }, - { - "pk": 26563, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "JOUY-AUX-ARCHES", - "center": "POINT (874014.8750001108273864 2458199.1203655865974724)", - "surface": 6070000, - "canton": null, - "numero_insee": "57350" - } - }, - { - "pk": 37310, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "JURY", - "center": "POINT (886408.3479580063140020 2459906.9877442768774927)", - "surface": 3120000, - "canton": null, - "numero_insee": "57351" - } - }, - { - "pk": 29919, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "JUSSY", - "center": "POINT (873379.1895474597113207 2462296.3486905852332711)", - "surface": 2890000, - "canton": null, - "numero_insee": "57352" - } - }, - { - "pk": 8565, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "JUVELIZE", - "center": "POINT (917509.3432724005542696 2427453.5081479512155056)", - "surface": 7790000, - "canton": null, - "numero_insee": "57353" - } - }, - { - "pk": 14079, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "JUVILLE", - "center": "POINT (894746.9905583902727813 2444468.5868163509294391)", - "surface": 6130000, - "canton": null, - "numero_insee": "57354" - } - }, - { - "pk": 30675, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KALHAUSEN", - "center": "POINT (951568.2460540909087285 2457968.9211503323167562)", - "surface": 13400000, - "canton": null, - "numero_insee": "57355" - } - }, - { - "pk": 27806, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KANFEN", - "center": "POINT (874158.3327136484440416 2499627.0348537126556039)", - "surface": 8500000, - "canton": null, - "numero_insee": "57356" - } - }, - { - "pk": 28540, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KAPPELKINGER", - "center": "POINT (934812.0777588291093707 2451619.5333246379159391)", - "surface": 8500000, - "canton": null, - "numero_insee": "57357" - } - }, - { - "pk": 9162, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KEDANGE-SUR-CANNER", - "center": "POINT (891480.9539390862919390 2486668.0880260863341391)", - "surface": 3920000, - "canton": null, - "numero_insee": "57358" - } - }, - { - "pk": 11239, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KEMPLICH", - "center": "POINT (895169.2245865525910631 2488300.9389692842960358)", - "surface": 5540000, - "canton": null, - "numero_insee": "57359" - } - }, - { - "pk": 32266, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KERBACH", - "center": "POINT (938232.1458609488327056 2472663.0427070348523557)", - "surface": 4420000, - "canton": null, - "numero_insee": "57360" - } - }, - { - "pk": 19655, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KERLING-LES-SIERCK", - "center": "POINT (893104.2006517142290249 2495687.8138280916027725)", - "surface": 18040000, - "canton": null, - "numero_insee": "57361" - } - }, - { - "pk": 27662, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KERPRICH-AUX-BOIS", - "center": "POINT (940043.9478656795108691 2425246.9076565313152969)", - "surface": 8050000, - "canton": null, - "numero_insee": "57362" - } - }, - { - "pk": 24612, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KIRSCH-LES-SIERCK", - "center": "POINT (895560.6815596097148955 2500912.2907472820952535)", - "surface": 8900000, - "canton": null, - "numero_insee": "57364" - } - }, - { - "pk": 24745, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KIRSCHNAUMEN", - "center": "POINT (897492.8312366725876927 2497326.7059206985868514)", - "surface": 20020000, - "canton": null, - "numero_insee": "57365" - } - }, - { - "pk": 13826, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KIRVILLER", - "center": "POINT (940129.9681288582505658 2449964.4671880090609193)", - "surface": 2490000, - "canton": null, - "numero_insee": "57366" - } - }, - { - "pk": 31930, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KLANG", - "center": "POINT (893374.2551304323133081 2487585.0004613082855940)", - "surface": 4190000, - "canton": null, - "numero_insee": "57367" - } - }, - { - "pk": 14185, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KNUTANGE", - "center": "POINT (868750.9170677624642849 2488473.4467884087935090)", - "surface": 2430000, - "canton": null, - "numero_insee": "57368" - } - }, - { - "pk": 15390, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KOENIGSMACKER", - "center": "POINT (886805.8684125398285687 2495033.0956801590509713)", - "surface": 18400000, - "canton": null, - "numero_insee": "57370" - } - }, - { - "pk": 12838, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAUTE-KONTZ", - "center": "POINT (888742.2473847125656903 2502554.5163740692660213)", - "surface": 6430000, - "canton": null, - "numero_insee": "57371" - } - }, - { - "pk": 35758, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "KUNTZIG", - "center": "POINT (883443.6569310248596594 2490401.1860700161196291)", - "surface": 4420000, - "canton": null, - "numero_insee": "57372" - } - }, - { - "pk": 18155, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LACHAMBRE", - "center": "POINT (922710.5844816947355866 2462422.0141351399943233)", - "surface": 7750000, - "canton": null, - "numero_insee": "57373" - } - }, - { - "pk": 24723, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LAFRIMBOLLE", - "center": "POINT (945573.0455249045044184 2410784.7266511209309101)", - "surface": 10650000, - "canton": null, - "numero_insee": "57374" - } - }, - { - "pk": 20184, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LAGARDE", - "center": "POINT (922087.4047820901032537 2418787.0874599390663207)", - "surface": 22550000, - "canton": null, - "numero_insee": "57375" - } - }, - { - "pk": 7487, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LAMBACH", - "center": "POINT (967563.7772943080635741 2459708.8553389199078083)", - "surface": 5660000, - "canton": null, - "numero_insee": "57376" - } - }, - { - "pk": 14150, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LANDANGE", - "center": "POINT (940509.2204206699971110 2417745.7372171552851796)", - "surface": 4880000, - "canton": null, - "numero_insee": "57377" - } - }, - { - "pk": 11664, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LANDROFF", - "center": "POINT (913418.3986411815276369 2449232.9389862730167806)", - "surface": 7650000, - "canton": null, - "numero_insee": "57379" - } - }, - { - "pk": 7660, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LANEUVEVILLE-LES-LORQUIN", - "center": "POINT (943926.9444251972017810 2415974.0999215538613498)", - "surface": 2290000, - "canton": null, - "numero_insee": "57380" - } - }, - { - "pk": 34425, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LANEUVEVILLE-EN-SAULNOIS", - "center": "POINT (901410.5549239919055253 2437621.4421889702789485)", - "surface": 6480000, - "canton": null, - "numero_insee": "57381" - } - }, - { - "pk": 13291, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LANGATTE", - "center": "POINT (939718.6208372777327895 2428146.0881581986322999)", - "surface": 13120000, - "canton": null, - "numero_insee": "57382" - } - }, - { - "pk": 16308, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LANGUIMBERG", - "center": "POINT (934048.0544387931004167 2424294.3480507130734622)", - "surface": 18670000, - "canton": null, - "numero_insee": "57383" - } - }, - { - "pk": 14232, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LANING", - "center": "POINT (924359.1436987868510187 2456932.6368797873146832)", - "surface": 6710000, - "canton": null, - "numero_insee": "57384" - } - }, - { - "pk": 34749, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LAQUENEXY", - "center": "POINT (890603.0400968729518354 2460843.7608226775191724)", - "surface": 9080000, - "canton": null, - "numero_insee": "57385" - } - }, - { - "pk": 25999, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LAUDREFANG", - "center": "POINT (914504.9228919643210247 2462451.1077957702800632)", - "surface": 4630000, - "canton": null, - "numero_insee": "57386" - } - }, - { - "pk": 26345, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LAUMESFELD", - "center": "POINT (898427.0244357306510210 2493432.3059055572375655)", - "surface": 8210000, - "canton": null, - "numero_insee": "57387" - } - }, - { - "pk": 8259, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LAUNSTROFF", - "center": "POINT (902164.3326521771959960 2500969.3128633056767285)", - "surface": 7860000, - "canton": null, - "numero_insee": "57388" - } - }, - { - "pk": 26303, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LELLING", - "center": "POINT (919845.2395596060669050 2458194.4465999864041805)", - "surface": 4920000, - "canton": null, - "numero_insee": "57389" - } - }, - { - "pk": 29560, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LEMBERG", - "center": "POINT (969082.9194661120418459 2457620.6574181895703077)", - "surface": 10910000, - "canton": null, - "numero_insee": "57390" - } - }, - { - "pk": 31552, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LEMONCOURT", - "center": "POINT (897212.3357980086002499 2437084.8607712374068797)", - "surface": 5410000, - "canton": null, - "numero_insee": "57391" - } - }, - { - "pk": 13945, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LEMUD", - "center": "POINT (894448.4376196593511850 2455873.6305047827772796)", - "surface": 4210000, - "canton": null, - "numero_insee": "57392" - } - }, - { - "pk": 11349, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LENGELSHEIM", - "center": "POINT (970290.6429035882465541 2468338.2370941252447665)", - "surface": 5240000, - "canton": null, - "numero_insee": "57393" - } - }, - { - "pk": 28951, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LENING", - "center": "POINT (928228.0783388341078535 2449260.9814215181395411)", - "surface": 6510000, - "canton": null, - "numero_insee": "57394" - } - }, - { - "pk": 32549, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LESSE", - "center": "POINT (906129.6124944027978927 2447368.7456838986836374)", - "surface": 8470000, - "canton": null, - "numero_insee": "57395" - } - }, - { - "pk": 14323, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LESSY", - "center": "POINT (874654.0910454581025988 2465309.2997230947948992)", - "surface": 2870000, - "canton": null, - "numero_insee": "57396" - } - }, - { - "pk": 8821, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LEY", - "center": "POINT (917638.8218111165333539 2424052.2850147592835128)", - "surface": 6110000, - "canton": null, - "numero_insee": "57397" - } - }, - { - "pk": 9450, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LEYVILLER", - "center": "POINT (929459.5518415807746351 2457276.9833349352702498)", - "surface": 7090000, - "canton": null, - "numero_insee": "57398" - } - }, - { - "pk": 35588, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LEZEY", - "center": "POINT (915018.1913684566970915 2426231.1444692313671112)", - "surface": 7520000, - "canton": null, - "numero_insee": "57399" - } - }, - { - "pk": 33469, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LIDREZING", - "center": "POINT (920999.8980243979021907 2440392.5016720127314329)", - "surface": 10040000, - "canton": null, - "numero_insee": "57401" - } - }, - { - "pk": 24571, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LIEDERSCHIEDT", - "center": "POINT (976576.0395452996017411 2470494.2590021290816367)", - "surface": 5980000, - "canton": null, - "numero_insee": "57402" - } - }, - { - "pk": 9295, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LIEHON", - "center": "POINT (887184.6912900357274339 2451107.8411242729052901)", - "surface": 5330000, - "canton": null, - "numero_insee": "57403" - } - }, - { - "pk": 28953, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LINDRE-BASSE", - "center": "POINT (924079.6246851193718612 2431413.0142441317439079)", - "surface": 10980000, - "canton": null, - "numero_insee": "57404" - } - }, - { - "pk": 13024, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LINDRE-HAUTE", - "center": "POINT (924560.8822234092513099 2433618.6830564602278173)", - "surface": 2410000, - "canton": null, - "numero_insee": "57405" - } - }, - { - "pk": 29134, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LIOCOURT", - "center": "POINT (893565.2661570491036400 2442256.9074544273316860)", - "surface": 3190000, - "canton": null, - "numero_insee": "57406" - } - }, - { - "pk": 35539, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LIXHEIM", - "center": "POINT (953296.5796785370912403 2431766.2144081601873040)", - "surface": 4150000, - "canton": null, - "numero_insee": "57407" - } - }, - { - "pk": 33398, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LIXING-LES-ROUHLING", - "center": "POINT (939543.3022559781093150 2471473.6213255301117897)", - "surface": 4310000, - "canton": null, - "numero_insee": "57408" - } - }, - { - "pk": 6649, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LIXING-LES-SAINT-AVOLD", - "center": "POINT (922053.4594638464041054 2457413.0187280285172164)", - "surface": 6200000, - "canton": null, - "numero_insee": "57409" - } - }, - { - "pk": 11815, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LHOR", - "center": "POINT (932597.3595331194810569 2441593.6204635575413704)", - "surface": 5350000, - "canton": null, - "numero_insee": "57410" - } - }, - { - "pk": 32701, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LOMMERANGE", - "center": "POINT (864258.7206080314936116 2487234.0122079858556390)", - "surface": 8160000, - "canton": null, - "numero_insee": "57411" - } - }, - { - "pk": 5554, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LONGEVILLE-LES-METZ", - "center": "POINT (878166.4713349317898974 2464138.7733047977089882)", - "surface": 2680000, - "canton": null, - "numero_insee": "57412" - } - }, - { - "pk": 7336, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LONGEVILLE-LES-SAINT-AVOLD", - "center": "POINT (914770.4932846127776429 2466456.0357507630251348)", - "surface": 24670000, - "canton": null, - "numero_insee": "57413" - } - }, - { - "pk": 4646, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LORQUIN", - "center": "POINT (943511.9521186151541770 2417671.6888253791257739)", - "surface": 8700000, - "canton": null, - "numero_insee": "57414" - } - }, - { - "pk": 13146, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LORRY-LES-METZ", - "center": "POINT (875338.1205100072547793 2467216.4360006474889815)", - "surface": 6020000, - "canton": null, - "numero_insee": "57415" - } - }, - { - "pk": 27709, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LORRY-MARDIGNY", - "center": "POINT (875092.1711704903282225 2449302.4843478235416114)", - "surface": 11560000, - "canton": null, - "numero_insee": "57416" - } - }, - { - "pk": 9448, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LOSTROFF", - "center": "POINT (932117.8526464917231351 2439187.8408492179587483)", - "surface": 5000000, - "canton": null, - "numero_insee": "57417" - } - }, - { - "pk": 22493, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LOUDREFING", - "center": "POINT (934330.4472742518410087 2437906.1180056841112673)", - "surface": 23070000, - "canton": null, - "numero_insee": "57418" - } - }, - { - "pk": 33232, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LOUPERSHOUSE", - "center": "POINT (934510.5567155876196921 2463324.6970983440987766)", - "surface": 7760000, - "canton": null, - "numero_insee": "57419" - } - }, - { - "pk": 26949, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LOUTZVILLER", - "center": "POINT (968252.9619088723557070 2472523.2848898330703378)", - "surface": 3200000, - "canton": null, - "numero_insee": "57421" - } - }, - { - "pk": 17998, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LUBECOURT", - "center": "POINT (906333.3956814920529723 2435362.3938125465065241)", - "surface": 3430000, - "canton": null, - "numero_insee": "57423" - } - }, - { - "pk": 31901, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LUCY", - "center": "POINT (903339.1762115561868995 2446043.7703426056541502)", - "surface": 7430000, - "canton": null, - "numero_insee": "57424" - } - }, - { - "pk": 5668, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LUPPY", - "center": "POINT (893098.5499186278320849 2449958.0519458740018308)", - "surface": 16260000, - "canton": null, - "numero_insee": "57425" - } - }, - { - "pk": 23577, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LUTTANGE", - "center": "POINT (888216.2027533265063539 2482337.1682354947552085)", - "surface": 12790000, - "canton": null, - "numero_insee": "57426" - } - }, - { - "pk": 36931, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LUTZELBOURG", - "center": "POINT (962048.8081063954159617 2426438.4560964615084231)", - "surface": 5790000, - "canton": null, - "numero_insee": "57427" - } - }, - { - "pk": 37731, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MACHEREN", - "center": "POINT (923694.7186493000481278 2464331.7823341335169971)", - "surface": 17080000, - "canton": null, - "numero_insee": "57428" - } - }, - { - "pk": 33990, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MAINVILLERS", - "center": "POINT (907663.1351578074973077 2455187.2056825254112482)", - "surface": 6790000, - "canton": null, - "numero_insee": "57430" - } - }, - { - "pk": 24348, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MAIZEROY", - "center": "POINT (895998.4281271301442757 2461790.9103347286581993)", - "surface": 8730000, - "canton": null, - "numero_insee": "57431" - } - }, - { - "pk": 11225, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MAIZERY", - "center": "POINT (892473.9355039775837213 2464362.2060845419764519)", - "surface": 3160000, - "canton": null, - "numero_insee": "57432" - } - }, - { - "pk": 6264, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MAIZIERES-LES-METZ", - "center": "POINT (878376.9749952824786305 2474547.3711963556706905)", - "surface": 8830000, - "canton": null, - "numero_insee": "57433" - } - }, - { - "pk": 21805, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MAIZIERES-LES-VIC", - "center": "POINT (927267.2477483119582757 2421533.7778320270590484)", - "surface": 26010000, - "canton": null, - "numero_insee": "57434" - } - }, - { - "pk": 9690, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MALAUCOURT-SUR-SEILLE", - "center": "POINT (895230.9865381726995111 2434766.1976336538791656)", - "surface": 7170000, - "canton": null, - "numero_insee": "57436" - } - }, - { - "pk": 8385, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MALLING", - "center": "POINT (888180.7561741368845105 2498046.8473819401115179)", - "surface": 4550000, - "canton": null, - "numero_insee": "57437" - } - }, - { - "pk": 37782, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MALROY", - "center": "POINT (883010.6683460026979446 2470984.9710625363513827)", - "surface": 3510000, - "canton": null, - "numero_insee": "57438" - } - }, - { - "pk": 31874, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MANDEREN", - "center": "POINT (898344.9516839829739183 2502937.5824286383576691)", - "surface": 9010000, - "canton": null, - "numero_insee": "57439" - } - }, - { - "pk": 28386, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MANHOUE", - "center": "POINT (894046.6628923160023987 2432854.6834524101577699)", - "surface": 4050000, - "canton": null, - "numero_insee": "57440" - } - }, - { - "pk": 34119, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MANOM", - "center": "POINT (878811.7566693224944174 2493763.4138632775284350)", - "surface": 10400000, - "canton": null, - "numero_insee": "57441" - } - }, - { - "pk": 35335, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MANY", - "center": "POINT (906682.4269254580140114 2452877.2010355023667216)", - "surface": 8260000, - "canton": null, - "numero_insee": "57442" - } - }, - { - "pk": 32796, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARANGE-SILVANGE", - "center": "POINT (875169.1051014969125390 2475220.1852755141444504)", - "surface": 15230000, - "canton": null, - "numero_insee": "57443" - } - }, - { - "pk": 13560, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARANGE-ZONDRANGE", - "center": "POINT (906071.4860621527768672 2465680.3926295419223607)", - "surface": 8310000, - "canton": null, - "numero_insee": "57444" - } - }, - { - "pk": 6731, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARIEULLES", - "center": "POINT (876171.2749655861407518 2451813.4481833591125906)", - "surface": 8220000, - "canton": null, - "numero_insee": "57445" - } - }, - { - "pk": 11888, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARIMONT-LES-BENESTROFF", - "center": "POINT (926493.6872309362515807 2441540.7808558973483741)", - "surface": 3970000, - "canton": null, - "numero_insee": "57446" - } - }, - { - "pk": 30731, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARLY", - "center": "POINT (878913.4395024888217449 2458741.6531845824792981)", - "surface": 10820000, - "canton": null, - "numero_insee": "57447" - } - }, - { - "pk": 26217, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARSAL", - "center": "POINT (914394.4691291407216340 2428927.6087276213802397)", - "surface": 11090000, - "canton": null, - "numero_insee": "57448" - } - }, - { - "pk": 35542, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARSILLY", - "center": "POINT (889988.0158299477770925 2462539.5756308995187283)", - "surface": 3190000, - "canton": null, - "numero_insee": "57449" - } - }, - { - "pk": 8295, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MARTHILLE", - "center": "POINT (909351.4078920660540462 2445095.0352810272015631)", - "surface": 10270000, - "canton": null, - "numero_insee": "57451" - } - }, - { - "pk": 13517, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "LA MAXE", - "center": "POINT (881222.5668420856818557 2469468.5795653131790459)", - "surface": 7570000, - "canton": null, - "numero_insee": "57452" - } - }, - { - "pk": 5851, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MAXSTADT", - "center": "POINT (926542.2537678540684283 2459052.9242766881361604)", - "surface": 7840000, - "canton": null, - "numero_insee": "57453" - } - }, - { - "pk": 27158, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MECLEUVES", - "center": "POINT (888130.0550820589996874 2457520.2486219913698733)", - "surface": 12880000, - "canton": null, - "numero_insee": "57454" - } - }, - { - "pk": 24802, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MEGANGE", - "center": "POINT (898666.1677734521217644 2477324.0610697129741311)", - "surface": 4930000, - "canton": null, - "numero_insee": "57455" - } - }, - { - "pk": 29354, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MEISENTHAL", - "center": "POINT (966721.4872507266700268 2452997.0671380665153265)", - "surface": 6300000, - "canton": null, - "numero_insee": "57456" - } - }, - { - "pk": 6141, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MENSKIRCH", - "center": "POINT (897674.0881781519856304 2487922.3068438041955233)", - "surface": 4470000, - "canton": null, - "numero_insee": "57457" - } - }, - { - "pk": 11533, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MERSCHWEILLER", - "center": "POINT (895837.5267112904693931 2503616.3724070494063199)", - "surface": 5810000, - "canton": null, - "numero_insee": "57459" - } - }, - { - "pk": 32698, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MERTEN", - "center": "POINT (915047.0044948463328183 2480767.7304405733011663)", - "surface": 5270000, - "canton": null, - "numero_insee": "57460" - } - }, - { - "pk": 23711, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "METAIRIES-SAINT-QUIRIN", - "center": "POINT (946337.1142777188215405 2414994.2932460079900920)", - "surface": 9570000, - "canton": null, - "numero_insee": "57461" - } - }, - { - "pk": 6271, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "METTING", - "center": "POINT (957473.9610220325412229 2434704.4492112300358713)", - "surface": 5220000, - "canton": null, - "numero_insee": "57462" - } - }, - { - "pk": 15350, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "METZ", - "center": "POINT (881773.7421286182943732 2463569.4676381684839725)", - "surface": 41710000, - "canton": null, - "numero_insee": "57463" - } - }, - { - "pk": 12157, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "METZERESCHE", - "center": "POINT (888895.8856125171296299 2484744.5703868595883250)", - "surface": 9520000, - "canton": null, - "numero_insee": "57464" - } - }, - { - "pk": 34356, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "METZERVISSE", - "center": "POINT (887474.3812560029327869 2487133.8434651512652636)", - "surface": 8990000, - "canton": null, - "numero_insee": "57465" - } - }, - { - "pk": 7688, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "METZING", - "center": "POINT (937693.3549670136999339 2465553.7205855022184551)", - "surface": 6480000, - "canton": null, - "numero_insee": "57466" - } - }, - { - "pk": 6155, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MEY", - "center": "POINT (884947.1368005403783172 2466898.9898369843140244)", - "surface": 1910000, - "canton": null, - "numero_insee": "57467" - } - }, - { - "pk": 25959, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MITTELBRONN", - "center": "POINT (959319.3531921145040542 2429616.9674919866956770)", - "surface": 7820000, - "canton": null, - "numero_insee": "57468" - } - }, - { - "pk": 12058, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MITTERSHEIM", - "center": "POINT (938028.3520083453040570 2438438.4898916115052998)", - "surface": 18050000, - "canton": null, - "numero_insee": "57469" - } - }, - { - "pk": 12198, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOLRING", - "center": "POINT (928993.4597747738007456 2441762.5532201495952904)", - "surface": 3250000, - "canton": null, - "numero_insee": "57470" - } - }, - { - "pk": 34417, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOMERSTROFF", - "center": "POINT (906134.3731382659170777 2469983.7516635390929878)", - "surface": 6100000, - "canton": null, - "numero_insee": "57471" - } - }, - { - "pk": 37414, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONCHEUX", - "center": "POINT (892931.2371167617384344 2446154.0621900409460068)", - "surface": 7330000, - "canton": null, - "numero_insee": "57472" - } - }, - { - "pk": 6021, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONCOURT", - "center": "POINT (916657.2390286433510482 2421842.2771964282728732)", - "surface": 6680000, - "canton": null, - "numero_insee": "57473" - } - }, - { - "pk": 12019, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONDELANGE", - "center": "POINT (879224.8903065476333722 2480658.6171008339151740)", - "surface": 4090000, - "canton": null, - "numero_insee": "57474" - } - }, - { - "pk": 12045, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONDORFF", - "center": "POINT (883996.5161190649960190 2507516.7039679251611233)", - "surface": 3880000, - "canton": null, - "numero_insee": "57475" - } - }, - { - "pk": 29332, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONNEREN", - "center": "POINT (896244.7962277190526947 2491212.0696269199252129)", - "surface": 11000000, - "canton": null, - "numero_insee": "57476" - } - }, - { - "pk": 30000, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONTBRONN", - "center": "POINT (963594.4438611262012273 2455871.8445283779874444)", - "surface": 14940000, - "canton": null, - "numero_insee": "57477" - } - }, - { - "pk": 22439, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONTDIDIER", - "center": "POINT (928152.2705273048486561 2446458.4438176946714520)", - "surface": 1900000, - "canton": null, - "numero_insee": "57478" - } - }, - { - "pk": 7777, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONTENACH", - "center": "POINT (893982.2494928220985457 2498297.0317635876126587)", - "surface": 9200000, - "canton": null, - "numero_insee": "57479" - } - }, - { - "pk": 33588, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONTIGNY-LES-METZ", - "center": "POINT (878885.8480938358698040 2461943.5260020871646702)", - "surface": 6700000, - "canton": null, - "numero_insee": "57480" - } - }, - { - "pk": 37628, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONTOIS-LA-MONTAGNE", - "center": "POINT (868962.1060101042967290 2475566.9873075331561267)", - "surface": 7050000, - "canton": null, - "numero_insee": "57481" - } - }, - { - "pk": 25961, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MONTOY-FLANVILLE", - "center": "POINT (888563.8969738278537989 2465229.0659760986454785)", - "surface": 6290000, - "canton": null, - "numero_insee": "57482" - } - }, - { - "pk": 15353, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MORHANGE", - "center": "POINT (915455.0590276485309005 2445147.7920666863210499)", - "surface": 15550000, - "canton": null, - "numero_insee": "57483" - } - }, - { - "pk": 31402, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MORSBACH", - "center": "POINT (930425.9100379822775722 2472795.5535351610742509)", - "surface": 5110000, - "canton": null, - "numero_insee": "57484" - } - }, - { - "pk": 27471, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MORVILLE-LES-VIC", - "center": "POINT (909161.0299450623570010 2432384.7763412231579423)", - "surface": 8140000, - "canton": null, - "numero_insee": "57485" - } - }, - { - "pk": 6405, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MORVILLE-SUR-NIED", - "center": "POINT (899730.1145638746675104 2446813.1440489827655256)", - "surface": 5770000, - "canton": null, - "numero_insee": "57486" - } - }, - { - "pk": 35948, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOULINS-LES-METZ", - "center": "POINT (876287.7780057312920690 2461520.8769751535728574)", - "surface": 7050000, - "canton": null, - "numero_insee": "57487" - } - }, - { - "pk": 21168, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOUSSEY", - "center": "POINT (927103.4938180331373587 2417329.4435833855532110)", - "surface": 7760000, - "canton": null, - "numero_insee": "57488" - } - }, - { - "pk": 19516, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOUTERHOUSE", - "center": "POINT (973302.7967615858651698 2455655.9979483275674284)", - "surface": 42310000, - "canton": null, - "numero_insee": "57489" - } - }, - { - "pk": 23751, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOYENVIC", - "center": "POINT (911092.4511559725506231 2428899.0691663920879364)", - "surface": 14520000, - "canton": null, - "numero_insee": "57490" - } - }, - { - "pk": 26398, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOYEUVRE-GRANDE", - "center": "POINT (869431.3775154133327305 2479173.3514075372368097)", - "surface": 9630000, - "canton": null, - "numero_insee": "57491" - } - }, - { - "pk": 25548, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MOYEUVRE-PETITE", - "center": "POINT (868106.5168522110907361 2481963.7445073318667710)", - "surface": 5470000, - "canton": null, - "numero_insee": "57492" - } - }, - { - "pk": 35830, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "MULCEY", - "center": "POINT (917770.5912892158376053 2431958.8536388915963471)", - "surface": 8290000, - "canton": null, - "numero_insee": "57493" - } - }, - { - "pk": 12733, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NARBEFONTAINE", - "center": "POINT (907251.4355742152547464 2468092.1606120723299682)", - "surface": 3640000, - "canton": null, - "numero_insee": "57495" - } - }, - { - "pk": 4589, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NEBING", - "center": "POINT (928174.7898117745062336 2443856.8861251450143754)", - "surface": 7360000, - "canton": null, - "numero_insee": "57496" - } - }, - { - "pk": 33735, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NELLING", - "center": "POINT (931517.0484859157586470 2450790.4616267886012793)", - "surface": 7330000, - "canton": null, - "numero_insee": "57497" - } - }, - { - "pk": 15591, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NEUFCHEF", - "center": "POINT (867469.1367548622656614 2486261.0089890267699957)", - "surface": 16640000, - "canton": null, - "numero_insee": "57498" - } - }, - { - "pk": 9070, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NEUFGRANGE", - "center": "POINT (945617.9174132486805320 2463320.8921836027875543)", - "surface": 7260000, - "canton": null, - "numero_insee": "57499" - } - }, - { - "pk": 12730, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NEUFMOULINS", - "center": "POINT (941298.4456422040238976 2419053.4807723714038730)", - "surface": 1950000, - "canton": null, - "numero_insee": "57500" - } - }, - { - "pk": 10107, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NEUFVILLAGE", - "center": "POINT (925449.7899820486782119 2446535.1210181121714413)", - "surface": 630000, - "canton": null, - "numero_insee": "57501" - } - }, - { - "pk": 35347, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NEUNKIRCHEN-LES-BOUZONVILLE", - "center": "POINT (907046.5332019941415638 2491805.6797639620490372)", - "surface": 3750000, - "canton": null, - "numero_insee": "57502" - } - }, - { - "pk": 7661, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NIDERHOFF", - "center": "POINT (944248.8135984521359205 2413475.1417617085389793)", - "surface": 5300000, - "canton": null, - "numero_insee": "57504" - } - }, - { - "pk": 9945, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NIDERVILLER", - "center": "POINT (951770.2452140115201473 2423147.0442516179755330)", - "surface": 10950000, - "canton": null, - "numero_insee": "57505" - } - }, - { - "pk": 25800, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NIEDERSTINZEL", - "center": "POINT (943013.1634827755624428 2440583.1131115867756307)", - "surface": 12960000, - "canton": null, - "numero_insee": "57506" - } - }, - { - "pk": 7338, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NIEDERVISSE", - "center": "POINT (908427.9217839560005814 2470904.1564480541273952)", - "surface": 5700000, - "canton": null, - "numero_insee": "57507" - } - }, - { - "pk": 8519, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NILVANGE", - "center": "POINT (869944.6990494040073827 2489284.2349890172481537)", - "surface": 2830000, - "canton": null, - "numero_insee": "57508" - } - }, - { - "pk": 20453, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NITTING", - "center": "POINT (947016.7305319624720141 2417401.8607110679149628)", - "surface": 8810000, - "canton": null, - "numero_insee": "57509" - } - }, - { - "pk": 4663, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NOISSEVILLE", - "center": "POINT (887250.1970850352663547 2466718.7188641969114542)", - "surface": 2690000, - "canton": null, - "numero_insee": "57510" - } - }, - { - "pk": 36244, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NORROY-LE-VENEUR", - "center": "POINT (875203.5840150164440274 2471217.8860957119613886)", - "surface": 8410000, - "canton": null, - "numero_insee": "57511" - } - }, - { - "pk": 36933, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NOUILLY", - "center": "POINT (886049.5006460743024945 2466708.3643789687193930)", - "surface": 2520000, - "canton": null, - "numero_insee": "57512" - } - }, - { - "pk": 38034, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NOUSSEVILLER-LES-BITCHE", - "center": "POINT (967796.1425620480440557 2467516.0337315602228045)", - "surface": 4780000, - "canton": null, - "numero_insee": "57513" - } - }, - { - "pk": 31249, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NOUSSEVILLER-SAINT-NABOR", - "center": "POINT (938264.2260990811046213 2468960.9006325849331915)", - "surface": 6080000, - "canton": null, - "numero_insee": "57514" - } - }, - { - "pk": 34893, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "NOVEANT-SUR-MOSELLE", - "center": "POINT (870743.9549620298203081 2454568.5667543243616819)", - "surface": 12960000, - "canton": null, - "numero_insee": "57515" - } - }, - { - "pk": 25184, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OBERDORFF", - "center": "POINT (908920.1804290976142511 2483416.5036343815736473)", - "surface": 4270000, - "canton": null, - "numero_insee": "57516" - } - }, - { - "pk": 30735, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OBERGAILBACH", - "center": "POINT (956781.0489351046271622 2468421.0312698879279196)", - "surface": 9010000, - "canton": null, - "numero_insee": "57517" - } - }, - { - "pk": 7090, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OBERSTINZEL", - "center": "POINT (945190.7660578682553023 2431795.9871026976034045)", - "surface": 5120000, - "canton": null, - "numero_insee": "57518" - } - }, - { - "pk": 8562, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OBERVISSE", - "center": "POINT (909538.9340038038790226 2469712.9740316756069660)", - "surface": 4390000, - "canton": null, - "numero_insee": "57519" - } - }, - { - "pk": 36303, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OBRECK", - "center": "POINT (912727.7620655522914603 2436518.3948142183944583)", - "surface": 3270000, - "canton": null, - "numero_insee": "57520" - } - }, - { - "pk": 23510, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OETING", - "center": "POINT (933422.4413178460672498 2473421.8956676875241101)", - "surface": 4280000, - "canton": null, - "numero_insee": "57521" - } - }, - { - "pk": 27226, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OGY", - "center": "POINT (890573.6920887052547187 2464245.7459462461993098)", - "surface": 3740000, - "canton": null, - "numero_insee": "57523" - } - }, - { - "pk": 32999, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OMMERAY", - "center": "POINT (920057.6071720934705809 2422071.8194218901917338)", - "surface": 10180000, - "canton": null, - "numero_insee": "57524" - } - }, - { - "pk": 34188, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ORIOCOURT", - "center": "POINT (899117.8031746031483635 2436600.9686950743198395)", - "surface": 4500000, - "canton": null, - "numero_insee": "57525" - } - }, - { - "pk": 28390, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ORMERSVILLER", - "center": "POINT (964763.1046876916661859 2471092.0481181312352419)", - "surface": 7370000, - "canton": null, - "numero_insee": "57526" - } - }, - { - "pk": 31213, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ORNY", - "center": "POINT (886149.5867368041072041 2455101.5780288316309452)", - "surface": 7240000, - "canton": null, - "numero_insee": "57527" - } - }, - { - "pk": 28751, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ORON", - "center": "POINT (904176.8148871464654803 2441748.1069472827948630)", - "surface": 5340000, - "canton": null, - "numero_insee": "57528" - } - }, - { - "pk": 9033, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OTTANGE", - "center": "POINT (866354.0164972955826670 2499559.8257289715111256)", - "surface": 15560000, - "canton": null, - "numero_insee": "57529" - } - }, - { - "pk": 24456, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OTTONVILLE", - "center": "POINT (904974.9596686506411061 2476778.1575774038210511)", - "surface": 15780000, - "canton": null, - "numero_insee": "57530" - } - }, - { - "pk": 18457, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "OUDRENNE", - "center": "POINT (891423.9737339972052723 2493271.7960421917960048)", - "surface": 20350000, - "canton": null, - "numero_insee": "57531" - } - }, - { - "pk": 22808, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PAGNY-LES-GOIN", - "center": "POINT (884309.7135186740197241 2447980.9796794541180134)", - "surface": 5180000, - "canton": null, - "numero_insee": "57532" - } - }, - { - "pk": 6234, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PANGE", - "center": "POINT (893602.2055926411412656 2461169.8351568453945220)", - "surface": 8870000, - "canton": null, - "numero_insee": "57533" - } - }, - { - "pk": 34831, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PELTRE", - "center": "POINT (884108.7259270627982914 2459687.0275474181398749)", - "surface": 8360000, - "canton": null, - "numero_insee": "57534" - } - }, - { - "pk": 9499, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PETIT-REDERCHING", - "center": "POINT (963939.9306078128283843 2462179.0341484318487346)", - "surface": 10830000, - "canton": null, - "numero_insee": "57535" - } - }, - { - "pk": 3819, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PETIT-TENQUIN", - "center": "POINT (931698.9722873352002352 2452893.4416588284075260)", - "surface": 4880000, - "canton": null, - "numero_insee": "57536" - } - }, - { - "pk": 13476, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PETITE-ROSSELLE", - "center": "POINT (929585.5960730724036694 2477391.2682535434141755)", - "surface": 5080000, - "canton": null, - "numero_insee": "57537" - } - }, - { - "pk": 33775, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PETTONCOURT", - "center": "POINT (899385.2989630876109004 2428797.9535259855911136)", - "surface": 4930000, - "canton": null, - "numero_insee": "57538" - } - }, - { - "pk": 16735, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PHILIPPSBOURG", - "center": "POINT (982591.7689140691654757 2457638.0473048612475395)", - "surface": 23940000, - "canton": null, - "numero_insee": "57541" - } - }, - { - "pk": 22686, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PIBLANGE", - "center": "POINT (896844.4081978787435219 2479709.8835904472507536)", - "surface": 9530000, - "canton": null, - "numero_insee": "57542" - } - }, - { - "pk": 29160, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PIERREVILLERS", - "center": "POINT (873859.7412655343068764 2476209.5530006838962436)", - "surface": 5870000, - "canton": null, - "numero_insee": "57543" - } - }, - { - "pk": 29559, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PLAINE-DE-WALSCH", - "center": "POINT (955189.7090323686134070 2421175.3212474640458822)", - "surface": 4800000, - "canton": null, - "numero_insee": "57544" - } - }, - { - "pk": 7578, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PLAPPEVILLE", - "center": "POINT (876450.8268405712442473 2465825.1058180597610772)", - "surface": 2510000, - "canton": null, - "numero_insee": "57545" - } - }, - { - "pk": 9682, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PLESNOIS", - "center": "POINT (875412.3191228148061782 2470219.0332354828715324)", - "surface": 3110000, - "canton": null, - "numero_insee": "57546" - } - }, - { - "pk": 6802, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "POMMERIEUX", - "center": "POINT (881482.1745579319540411 2450958.6114738811738789)", - "surface": 4360000, - "canton": null, - "numero_insee": "57547" - } - }, - { - "pk": 6951, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PONTOY", - "center": "POINT (889463.6156158237718046 2453729.2282137619331479)", - "surface": 10130000, - "canton": null, - "numero_insee": "57548" - } - }, - { - "pk": 34196, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PONTPIERRE", - "center": "POINT (914437.7375448629027233 2458648.0148448389954865)", - "surface": 8520000, - "canton": null, - "numero_insee": "57549" - } - }, - { - "pk": 7268, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PORCELETTE", - "center": "POINT (915730.4095461566466838 2471167.4120135889388621)", - "surface": 13390000, - "canton": null, - "numero_insee": "57550" - } - }, - { - "pk": 5048, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "POSTROFF", - "center": "POINT (947630.6893551612738520 2438921.9900670466013253)", - "surface": 5050000, - "canton": null, - "numero_insee": "57551" - } - }, - { - "pk": 30001, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "POUILLY", - "center": "POINT (882024.7450642141047865 2457667.7403323752805591)", - "surface": 5120000, - "canton": null, - "numero_insee": "57552" - } - }, - { - "pk": 37176, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "POURNOY-LA-CHETIVE", - "center": "POINT (879259.3144648305606097 2453441.1199238002300262)", - "surface": 2580000, - "canton": null, - "numero_insee": "57553" - } - }, - { - "pk": 7791, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "POURNOY-LA-GRASSE", - "center": "POINT (883962.0914145021233708 2453481.6540099354460835)", - "surface": 7120000, - "canton": null, - "numero_insee": "57554" - } - }, - { - "pk": 28750, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PREVOCOURT", - "center": "POINT (900252.0102936099283397 2444315.9689642735756934)", - "surface": 6790000, - "canton": null, - "numero_insee": "57555" - } - }, - { - "pk": 20885, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PUTTELANGE-AUX-LACS", - "center": "POINT (934936.7925766098778695 2460326.4059176957234740)", - "surface": 16830000, - "canton": null, - "numero_insee": "57556" - } - }, - { - "pk": 37886, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PUTTELANGE-LES-THIONVILLE", - "center": "POINT (884211.2932906972710043 2505817.4978050705976784)", - "surface": 10620000, - "canton": null, - "numero_insee": "57557" - } - }, - { - "pk": 34642, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PUTTIGNY", - "center": "POINT (909134.2283990657888353 2435486.6592540866695344)", - "surface": 7440000, - "canton": null, - "numero_insee": "57558" - } - }, - { - "pk": 11492, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "PUZIEUX", - "center": "POINT (895186.0864027260104194 2439969.3393527031876147)", - "surface": 6270000, - "canton": null, - "numero_insee": "57559" - } - }, - { - "pk": 19239, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RACRANGE", - "center": "POINT (918157.5407723740208894 2445071.0930666890926659)", - "surface": 7240000, - "canton": null, - "numero_insee": "57560" - } - }, - { - "pk": 25196, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RAHLING", - "center": "POINT (958695.0182109340094030 2455429.0361482892185450)", - "surface": 21310000, - "canton": null, - "numero_insee": "57561" - } - }, - { - "pk": 31241, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RANGUEVAUX", - "center": "POINT (870591.5647017997689545 2483886.3597367703914642)", - "surface": 10330000, - "canton": null, - "numero_insee": "57562" - } - }, - { - "pk": 24838, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RAVILLE", - "center": "POINT (902495.3157014087773860 2462647.5294394479133189)", - "surface": 7100000, - "canton": null, - "numero_insee": "57563" - } - }, - { - "pk": 33604, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REDANGE", - "center": "POINT (859500.3285847418010235 2505304.4679021472111344)", - "surface": 5550000, - "canton": null, - "numero_insee": "57565" - } - }, - { - "pk": 7943, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REDING", - "center": "POINT (950533.0550407120026648 2427339.2164648608304560)", - "surface": 11730000, - "canton": null, - "numero_insee": "57566" - } - }, - { - "pk": 7333, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REMELFANG", - "center": "POINT (904024.3137245761463419 2482573.6876435438171029)", - "surface": 3300000, - "canton": null, - "numero_insee": "57567" - } - }, - { - "pk": 10106, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REMELFING", - "center": "POINT (946903.9272970916936174 2465033.1654270580038428)", - "surface": 2620000, - "canton": null, - "numero_insee": "57568" - } - }, - { - "pk": 27804, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REMELING", - "center": "POINT (900884.3525246458593756 2498556.7482736026868224)", - "surface": 6440000, - "canton": null, - "numero_insee": "57569" - } - }, - { - "pk": 10445, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REMERING", - "center": "POINT (912534.3344163189176470 2482046.8431184953078628)", - "surface": 4920000, - "canton": null, - "numero_insee": "57570" - } - }, - { - "pk": 19199, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REMERING-LES-PUTTELANGE", - "center": "POINT (935957.3162737636594102 2458033.7207719194702804)", - "surface": 9180000, - "canton": null, - "numero_insee": "57571" - } - }, - { - "pk": 17439, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REMILLY", - "center": "POINT (896474.6613238280406222 2452989.1887862100265920)", - "surface": 18930000, - "canton": null, - "numero_insee": "57572" - } - }, - { - "pk": 8172, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RENING", - "center": "POINT (930036.0811719712801278 2448476.0963943940587342)", - "surface": 4110000, - "canton": null, - "numero_insee": "57573" - } - }, - { - "pk": 34613, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "BASSE-RENTGEN", - "center": "POINT (880207.3734729315619916 2505983.1018731766380370)", - "surface": 10480000, - "canton": null, - "numero_insee": "57574" - } - }, - { - "pk": 36701, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RETONFEY", - "center": "POINT (890452.0544345715316013 2466746.3364855078980327)", - "surface": 9810000, - "canton": null, - "numero_insee": "57575" - } - }, - { - "pk": 32700, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RETTEL", - "center": "POINT (890262.9301234068116173 2500266.1938289646059275)", - "surface": 6780000, - "canton": null, - "numero_insee": "57576" - } - }, - { - "pk": 13798, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REYERSVILLER", - "center": "POINT (969855.5674019445432350 2460829.4998300252482295)", - "surface": 8350000, - "canton": null, - "numero_insee": "57577" - } - }, - { - "pk": 37726, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "REZONVILLE", - "center": "POINT (866387.1628398942993954 2460835.2252971376292408)", - "surface": 13600000, - "canton": null, - "numero_insee": "57578" - } - }, - { - "pk": 5292, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RHODES", - "center": "POINT (936024.1526931170374155 2427213.4631837490014732)", - "surface": 15390000, - "canton": null, - "numero_insee": "57579" - } - }, - { - "pk": 10108, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RICHE", - "center": "POINT (914991.0923877824097872 2440940.9452750091440976)", - "surface": 6340000, - "canton": null, - "numero_insee": "57580" - } - }, - { - "pk": 12199, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RICHELING", - "center": "POINT (939057.4084888665238395 2458260.7132324483245611)", - "surface": 4210000, - "canton": null, - "numero_insee": "57581" - } - }, - { - "pk": 31404, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RICHEMONT", - "center": "POINT (878403.7409593514166772 2483053.0818604924716055)", - "surface": 8510000, - "canton": null, - "numero_insee": "57582" - } - }, - { - "pk": 9046, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RICHEVAL", - "center": "POINT (937142.6436096250545233 2413613.7093987893313169)", - "surface": 5020000, - "canton": null, - "numero_insee": "57583" - } - }, - { - "pk": 4770, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RIMLING", - "center": "POINT (959401.6729678458068520 2466242.3335904539562762)", - "surface": 13390000, - "canton": null, - "numero_insee": "57584" - } - }, - { - "pk": 31647, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RITZING", - "center": "POINT (899461.1108383239479735 2501146.0920059159398079)", - "surface": 6200000, - "canton": null, - "numero_insee": "57585" - } - }, - { - "pk": 36683, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROCHONVILLERS", - "center": "POINT (867981.6072059763828292 2496471.8890069276094437)", - "surface": 5680000, - "canton": null, - "numero_insee": "57586" - } - }, - { - "pk": 36988, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RODALBE", - "center": "POINT (920872.1407159755472094 2443593.5605347026139498)", - "surface": 10560000, - "canton": null, - "numero_insee": "57587" - } - }, - { - "pk": 36398, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RODEMACK", - "center": "POINT (883632.5328280582325533 2503310.9466811642050743)", - "surface": 9890000, - "canton": null, - "numero_insee": "57588" - } - }, - { - "pk": 30942, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROHRBACH-LES-BITCHE", - "center": "POINT (961153.0575538689736277 2460453.7048758142627776)", - "surface": 13250000, - "canton": null, - "numero_insee": "57589" - } - }, - { - "pk": 19366, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROLBING", - "center": "POINT (970826.6376089827390388 2475747.7416930631734431)", - "surface": 6000000, - "canton": null, - "numero_insee": "57590" - } - }, - { - "pk": 25185, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROMBAS", - "center": "POINT (873241.2994554308243096 2478305.5820204485207796)", - "surface": 11770000, - "canton": null, - "numero_insee": "57591" - } - }, - { - "pk": 11905, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROMELFING", - "center": "POINT (942750.2748672529123724 2436277.9095359737984836)", - "surface": 10790000, - "canton": null, - "numero_insee": "57592" - } - }, - { - "pk": 35274, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RONCOURT", - "center": "POINT (870782.9541990940924734 2473281.1757572507485747)", - "surface": 6810000, - "canton": null, - "numero_insee": "57593" - } - }, - { - "pk": 35473, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROPPEVILLER", - "center": "POINT (978706.8485225922195241 2467110.5534060490317643)", - "surface": 13900000, - "canton": null, - "numero_insee": "57594" - } - }, - { - "pk": 9198, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RORBACH-LES-DIEUZE", - "center": "POINT (930552.4039669858757406 2435071.4961022255010903)", - "surface": 4310000, - "canton": null, - "numero_insee": "57595" - } - }, - { - "pk": 34969, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROSBRUCK", - "center": "POINT (929634.1118980706669390 2471788.0450740018859506)", - "surface": 1400000, - "canton": null, - "numero_insee": "57596" - } - }, - { - "pk": 27000, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROSSELANGE", - "center": "POINT (871119.4212288153357804 2480688.8524344805628061)", - "surface": 5300000, - "canton": null, - "numero_insee": "57597" - } - }, - { - "pk": 7562, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROUHLING", - "center": "POINT (940562.9594845222309232 2469281.0184994679875672)", - "surface": 6010000, - "canton": null, - "numero_insee": "57598" - } - }, - { - "pk": 8869, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROUPELDANGE", - "center": "POINT (901382.4024341559270397 2475646.4145148554816842)", - "surface": 2630000, - "canton": null, - "numero_insee": "57599" - } - }, - { - "pk": 11621, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROUSSY-LE-VILLAGE", - "center": "POINT (878634.9533329298719764 2502667.4888338199816644)", - "surface": 12560000, - "canton": null, - "numero_insee": "57600" - } - }, - { - "pk": 31439, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ROZERIEULLES", - "center": "POINT (871360.7898766384460032 2464280.2797499136067927)", - "surface": 6640000, - "canton": null, - "numero_insee": "57601" - } - }, - { - "pk": 26544, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RUSSANGE", - "center": "POINT (861605.7851863886462525 2504822.2721950896084309)", - "surface": 3430000, - "canton": null, - "numero_insee": "57603" - } - }, - { - "pk": 12977, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "RUSTROFF", - "center": "POINT (893055.8448658398119733 2501290.9218190545216203)", - "surface": 3300000, - "canton": null, - "numero_insee": "57604" - } - }, - { - "pk": 12372, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAILLY-ACHATEL", - "center": "POINT (890535.8460807790979743 2445432.9269348280504346)", - "surface": 8180000, - "canton": null, - "numero_insee": "57605" - } - }, - { - "pk": 21164, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-AVOLD", - "center": "POINT (919361.9171016955515370 2467796.5958108431659639)", - "surface": 35290000, - "canton": null, - "numero_insee": "57606" - } - }, - { - "pk": 25116, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINTE-BARBE", - "center": "POINT (890423.5693709786282852 2470048.2476955824531615)", - "surface": 14230000, - "canton": null, - "numero_insee": "57607" - } - }, - { - "pk": 31896, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-EPVRE", - "center": "POINT (899909.5008789184503257 2449216.3017403823323548)", - "surface": 4650000, - "canton": null, - "numero_insee": "57609" - } - }, - { - "pk": 8384, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-FRANCOIS-LACROIX", - "center": "POINT (898848.8466269979253411 2490934.3609060319140553)", - "surface": 7370000, - "canton": null, - "numero_insee": "57610" - } - }, - { - "pk": 36781, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-GEORGES", - "center": "POINT (938119.8644465773832053 2416324.0606551123782992)", - "surface": 8100000, - "canton": null, - "numero_insee": "57611" - } - }, - { - "pk": 37629, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-HUBERT", - "center": "POINT (893258.7609064630232751 2477777.7095170100219548)", - "surface": 15990000, - "canton": null, - "numero_insee": "57612" - } - }, - { - "pk": 12196, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-JEAN-DE-BASSEL", - "center": "POINT (939372.4875770804937929 2433446.7256197165697813)", - "surface": 9940000, - "canton": null, - "numero_insee": "57613" - } - }, - { - "pk": 27019, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-JEAN-KOURTZERODE", - "center": "POINT (957026.6276551033370197 2428596.3798254961147904)", - "surface": 2810000, - "canton": null, - "numero_insee": "57614" - } - }, - { - "pk": 4299, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-JEAN-ROHRBACH", - "center": "POINT (932262.9353957958519459 2457101.1242747567594051)", - "surface": 12220000, - "canton": null, - "numero_insee": "57615" - } - }, - { - "pk": 10576, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-JULIEN-LES-METZ", - "center": "POINT (882544.0193928553489968 2467078.4024593830108643)", - "surface": 4560000, - "canton": null, - "numero_insee": "57616" - } - }, - { - "pk": 7581, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-JURE", - "center": "POINT (885432.7988794331904501 2445388.9184044389985502)", - "surface": 10650000, - "canton": null, - "numero_insee": "57617" - } - }, - { - "pk": 9811, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-LOUIS", - "center": "POINT (957471.1608548352960497 2423496.7141767819412053)", - "surface": 9170000, - "canton": null, - "numero_insee": "57618" - } - }, - { - "pk": 12522, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-LOUIS-LES-BITCHE", - "center": "POINT (967002.5416085997130722 2455200.9806611323729157)", - "surface": 4520000, - "canton": null, - "numero_insee": "57619" - } - }, - { - "pk": 31833, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINTE-MARIE-AUX-CHENES", - "center": "POINT (867590.5905786626972258 2472152.9756040889769793)", - "surface": 10150000, - "canton": null, - "numero_insee": "57620" - } - }, - { - "pk": 6859, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-MEDARD", - "center": "POINT (915864.2431764492066577 2432542.7807727218605578)", - "surface": 9880000, - "canton": null, - "numero_insee": "57621" - } - }, - { - "pk": 33174, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-PRIVAT-LA-MONTAGNE", - "center": "POINT (870096.3369594041723758 2471674.2242408362217247)", - "surface": 5710000, - "canton": null, - "numero_insee": "57622" - } - }, - { - "pk": 21061, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINT-QUIRIN", - "center": "POINT (952392.9336037540342659 2409042.5963513087481260)", - "surface": 53530000, - "canton": null, - "numero_insee": "57623" - } - }, - { - "pk": 5360, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAINTE-RUFFINE", - "center": "POINT (874473.7982257404364645 2463006.2371967644430697)", - "surface": 680000, - "canton": null, - "numero_insee": "57624" - } - }, - { - "pk": 36993, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SALONNES", - "center": "POINT (905385.5092901843599975 2429250.0385084873996675)", - "surface": 12620000, - "canton": null, - "numero_insee": "57625" - } - }, - { - "pk": 17733, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SANRY-LES-VIGY", - "center": "POINT (887501.1828483808785677 2472424.6029216349124908)", - "surface": 5570000, - "canton": null, - "numero_insee": "57626" - } - }, - { - "pk": 31772, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SANRY-SUR-NIED", - "center": "POINT (892828.5012856048997492 2458061.1106146508827806)", - "surface": 4840000, - "canton": null, - "numero_insee": "57627" - } - }, - { - "pk": 17438, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SARRALBE", - "center": "POINT (942093.8670255569741130 2454284.3653316879644990)", - "surface": 27360000, - "canton": null, - "numero_insee": "57628" - } - }, - { - "pk": 32104, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SARRALTROFF", - "center": "POINT (947307.6648121871985495 2430013.1047674138098955)", - "surface": 12120000, - "canton": null, - "numero_insee": "57629" - } - }, - { - "pk": 22797, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SARREBOURG", - "center": "POINT (946343.4882986329030246 2425801.8521111281588674)", - "surface": 16670000, - "canton": null, - "numero_insee": "57630" - } - }, - { - "pk": 14701, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SARREGUEMINES", - "center": "POINT (945584.9485580839682370 2467123.1103191585280001)", - "surface": 29960000, - "canton": null, - "numero_insee": "57631" - } - }, - { - "pk": 30129, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SARREINSMING", - "center": "POINT (949300.9892736531328410 2465554.2845615372061729)", - "surface": 7240000, - "canton": null, - "numero_insee": "57633" - } - }, - { - "pk": 34614, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SAULNY", - "center": "POINT (874221.9691110700368881 2469007.9968321705237031)", - "surface": 9840000, - "canton": null, - "numero_insee": "57634" - } - }, - { - "pk": 16297, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCHALBACH", - "center": "POINT (953763.8962285004090518 2435572.8702335744164884)", - "surface": 12680000, - "canton": null, - "numero_insee": "57635" - } - }, - { - "pk": 9293, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCHMITTVILLER", - "center": "POINT (954784.8946288614533842 2456295.6988908373750746)", - "surface": 2330000, - "canton": null, - "numero_insee": "57636" - } - }, - { - "pk": 11250, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCHNECKENBUSCH", - "center": "POINT (949184.2584616948151961 2421323.3681015190668404)", - "surface": 2150000, - "canton": null, - "numero_insee": "57637" - } - }, - { - "pk": 27803, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCHOENECK", - "center": "POINT (933982.9185722274705768 2478029.7399277309887111)", - "surface": 4110000, - "canton": null, - "numero_insee": "57638" - } - }, - { - "pk": 33343, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCHORBACH", - "center": "POINT (970314.9914325132267550 2465536.6036196313798428)", - "surface": 13460000, - "canton": null, - "numero_insee": "57639" - } - }, - { - "pk": 27608, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCHWERDORFF", - "center": "POINT (907725.3092929902486503 2494313.1318758064880967)", - "surface": 9440000, - "canton": null, - "numero_insee": "57640" - } - }, - { - "pk": 15433, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCHWEYEN", - "center": "POINT (969037.7736332842614502 2474331.2813576851040125)", - "surface": 11380000, - "canton": null, - "numero_insee": "57641" - } - }, - { - "pk": 8531, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SCY-CHAZELLES", - "center": "POINT (876267.0893251404631883 2463922.2768110185861588)", - "surface": 4420000, - "canton": null, - "numero_insee": "57642" - } - }, - { - "pk": 3067, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SECOURT", - "center": "POINT (888228.4312374450964853 2446113.4954355680383742)", - "surface": 7280000, - "canton": null, - "numero_insee": "57643" - } - }, - { - "pk": 36762, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SEINGBOUSE", - "center": "POINT (928283.5439769566291943 2465972.5524023766629398)", - "surface": 8000000, - "canton": null, - "numero_insee": "57644" - } - }, - { - "pk": 36005, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SEMECOURT", - "center": "POINT (877087.4367235228419304 2473235.4162299009039998)", - "surface": 2330000, - "canton": null, - "numero_insee": "57645" - } - }, - { - "pk": 33755, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SEREMANGE-ERZANGE", - "center": "POINT (873165.4573434655321762 2487110.5724517619237304)", - "surface": 3750000, - "canton": null, - "numero_insee": "57647" - } - }, - { - "pk": 4518, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SERVIGNY-LES-RAVILLE", - "center": "POINT (899805.8333714781329036 2461223.3822569292970002)", - "surface": 14190000, - "canton": null, - "numero_insee": "57648" - } - }, - { - "pk": 22601, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SERVIGNY-LES-SAINTE-BARBE", - "center": "POINT (887336.4482071637175977 2468320.5094045791774988)", - "surface": 3070000, - "canton": null, - "numero_insee": "57649" - } - }, - { - "pk": 6826, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SIERCK-LES-BAINS", - "center": "POINT (891860.3620605114847422 2500680.2285932144150138)", - "surface": 4770000, - "canton": null, - "numero_insee": "57650" - } - }, - { - "pk": 4510, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SIERSTHAL", - "center": "POINT (966843.3713676477782428 2462004.1228188462555408)", - "surface": 10600000, - "canton": null, - "numero_insee": "57651" - } - }, - { - "pk": 6586, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SILLEGNY", - "center": "POINT (878989.3146060704020783 2449936.4605476008728147)", - "surface": 10520000, - "canton": null, - "numero_insee": "57652" - } - }, - { - "pk": 11350, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SILLY-EN-SAULNOIS", - "center": "POINT (888587.2473361787851900 2450919.8034349773079157)", - "surface": 2320000, - "canton": null, - "numero_insee": "57653" - } - }, - { - "pk": 30577, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SILLY-SUR-NIED", - "center": "POINT (894162.8370810074266046 2465777.6986439991742373)", - "surface": 4510000, - "canton": null, - "numero_insee": "57654" - } - }, - { - "pk": 36177, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SOLGNE", - "center": "POINT (890109.7144028606126085 2448431.2636179672554135)", - "surface": 7280000, - "canton": null, - "numero_insee": "57655" - } - }, - { - "pk": 32511, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SORBEY", - "center": "POINT (891041.2549286917783320 2456444.6307640410959721)", - "surface": 5590000, - "canton": null, - "numero_insee": "57656" - } - }, - { - "pk": 11128, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SOTZELING", - "center": "POINT (915511.2905506904935464 2438643.8839108147658408)", - "surface": 3640000, - "canton": null, - "numero_insee": "57657" - } - }, - { - "pk": 12849, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SOUCHT", - "center": "POINT (964829.9179704745765775 2451879.8987291231751442)", - "surface": 10780000, - "canton": null, - "numero_insee": "57658" - } - }, - { - "pk": 6612, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SPICHEREN", - "center": "POINT (937800.7024170947261155 2476261.6481798375025392)", - "surface": 8160000, - "canton": null, - "numero_insee": "57659" - } - }, - { - "pk": 13933, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "STIRING-WENDEL", - "center": "POINT (934993.0263146776705980 2476937.7767274379730225)", - "surface": 3570000, - "canton": null, - "numero_insee": "57660" - } - }, - { - "pk": 24073, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "STURZELBRONN", - "center": "POINT (984243.1454770773416385 2463356.2057734676636755)", - "surface": 32560000, - "canton": null, - "numero_insee": "57661" - } - }, - { - "pk": 28848, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "SUISSE", - "center": "POINT (910615.8671977701596916 2449308.7827330408617854)", - "surface": 5040000, - "canton": null, - "numero_insee": "57662" - } - }, - { - "pk": 13261, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TALANGE", - "center": "POINT (879352.5416010465705767 2477457.6547091831453145)", - "surface": 3730000, - "canton": null, - "numero_insee": "57663" - } - }, - { - "pk": 7072, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TARQUIMPOL", - "center": "POINT (925197.6122912809951231 2429421.3164179306477308)", - "surface": 6450000, - "canton": null, - "numero_insee": "57664" - } - }, - { - "pk": 11813, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TENTELING", - "center": "POINT (935167.6276544588617980 2468333.6783094364218414)", - "surface": 7190000, - "canton": null, - "numero_insee": "57665" - } - }, - { - "pk": 30777, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TERVILLE", - "center": "POINT (875943.7591023878194392 2489836.2262911945581436)", - "surface": 3800000, - "canton": null, - "numero_insee": "57666" - } - }, - { - "pk": 35757, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TETERCHEN", - "center": "POINT (908162.0941587756387889 2478506.7948144506663084)", - "surface": 8740000, - "canton": null, - "numero_insee": "57667" - } - }, - { - "pk": 36081, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TETING-SUR-NIED", - "center": "POINT (916733.8979547383496538 2459268.2663071546703577)", - "surface": 9920000, - "canton": null, - "numero_insee": "57668" - } - }, - { - "pk": 28314, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "THEDING", - "center": "POINT (932364.2684642911190167 2468509.5278553897514939)", - "surface": 8190000, - "canton": null, - "numero_insee": "57669" - } - }, - { - "pk": 9328, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "THICOURT", - "center": "POINT (909091.6297673793742433 2451997.4164498038589954)", - "surface": 5490000, - "canton": null, - "numero_insee": "57670" - } - }, - { - "pk": 30625, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "THIMONVILLE", - "center": "POINT (897234.6683535672491416 2446091.1322345123626292)", - "surface": 7390000, - "canton": null, - "numero_insee": "57671" - } - }, - { - "pk": 18918, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "THIONVILLE", - "center": "POINT (874618.8937509623356164 2492626.5886271810159087)", - "surface": 49860000, - "canton": null, - "numero_insee": "57672" - } - }, - { - "pk": 12738, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "THONVILLE", - "center": "POINT (909601.4375291310716420 2450901.0869331993162632)", - "surface": 2510000, - "canton": null, - "numero_insee": "57673" - } - }, - { - "pk": 4441, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TINCRY", - "center": "POINT (898269.8148117386735976 2442097.3736007749103010)", - "surface": 8440000, - "canton": null, - "numero_insee": "57674" - } - }, - { - "pk": 32770, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TORCHEVILLE", - "center": "POINT (930678.8892100000521168 2443578.3615744998678565)", - "surface": 6190000, - "canton": null, - "numero_insee": "57675" - } - }, - { - "pk": 28704, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TRAGNY", - "center": "POINT (895622.4869172113249078 2447378.0904968823306262)", - "surface": 5390000, - "canton": null, - "numero_insee": "57676" - } - }, - { - "pk": 30273, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TREMERY", - "center": "POINT (884434.7509004253661260 2479903.0131728686392307)", - "surface": 7670000, - "canton": null, - "numero_insee": "57677" - } - }, - { - "pk": 5699, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TRESSANGE", - "center": "POINT (864680.6343380375765264 2496343.4095739200711250)", - "surface": 9360000, - "canton": null, - "numero_insee": "57678" - } - }, - { - "pk": 30284, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TRITTELING-REDLACH", - "center": "POINT (912709.9250636373180896 2461735.1278859879821539)", - "surface": 6000000, - "canton": null, - "numero_insee": "57679" - } - }, - { - "pk": 25194, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TROISFONTAINES", - "center": "POINT (952708.9925509373424575 2418752.1305906679481268)", - "surface": 12870000, - "canton": null, - "numero_insee": "57680" - } - }, - { - "pk": 30337, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TROMBORN", - "center": "POINT (910136.4283575292211026 2481625.8576425570063293)", - "surface": 6220000, - "canton": null, - "numero_insee": "57681" - } - }, - { - "pk": 18760, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "TURQUESTEIN-BLANCRUPT", - "center": "POINT (950516.0361962046008557 2406224.3436633641831577)", - "surface": 30370000, - "canton": null, - "numero_insee": "57682" - } - }, - { - "pk": 34806, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "UCKANGE", - "center": "POINT (877383.3437718752538785 2485345.7615013835020363)", - "surface": 5470000, - "canton": null, - "numero_insee": "57683" - } - }, - { - "pk": 26945, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VAHL-EBERSING", - "center": "POINT (922535.5737458944786340 2459518.5825545215047896)", - "surface": 6420000, - "canton": null, - "numero_insee": "57684" - } - }, - { - "pk": 34415, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VAHL-LES-BENESTROFF", - "center": "POINT (926164.9299666094593704 2444840.1649751658551395)", - "surface": 8970000, - "canton": null, - "numero_insee": "57685" - } - }, - { - "pk": 7210, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VAHL-LES-FAULQUEMONT", - "center": "POINT (914063.4536424309480935 2455642.7876138533465564)", - "surface": 6140000, - "canton": null, - "numero_insee": "57686" - } - }, - { - "pk": 5214, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VALLERANGE", - "center": "POINT (918633.6098174422513694 2447877.0933698280714452)", - "surface": 6620000, - "canton": null, - "numero_insee": "57687" - } - }, - { - "pk": 29540, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VALMESTROFF", - "center": "POINT (885234.3130560267018154 2491617.3887554449029267)", - "surface": 3800000, - "canton": null, - "numero_insee": "57689" - } - }, - { - "pk": 36079, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VALMONT", - "center": "POINT (918904.0342199570732191 2462889.4136679903604090)", - "surface": 9220000, - "canton": null, - "numero_insee": "57690" - } - }, - { - "pk": 31449, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VALMUNSTER", - "center": "POINT (904444.4211354184662923 2480275.8359673302620649)", - "surface": 3090000, - "canton": null, - "numero_insee": "57691" - } - }, - { - "pk": 11665, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VANNECOURT", - "center": "POINT (907900.6508312264923006 2439278.5824653455056250)", - "surface": 9570000, - "canton": null, - "numero_insee": "57692" - } - }, - { - "pk": 33106, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VANTOUX", - "center": "POINT (884451.1602071062661707 2466394.3860648348927498)", - "surface": 2440000, - "canton": null, - "numero_insee": "57693" - } - }, - { - "pk": 12654, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VANY", - "center": "POINT (884931.6074806244578212 2468700.0328600406646729)", - "surface": 3050000, - "canton": null, - "numero_insee": "57694" - } - }, - { - "pk": 20402, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VARIZE", - "center": "POINT (900261.2000965230399743 2466430.7343066902831197)", - "surface": 13940000, - "canton": null, - "numero_insee": "57695" - } - }, - { - "pk": 8870, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VARSBERG", - "center": "POINT (912316.3358950117835775 2472538.8069891743361950)", - "surface": 4200000, - "canton": null, - "numero_insee": "57696" - } - }, - { - "pk": 22634, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VASPERVILLER", - "center": "POINT (948843.0123029387323186 2414515.6701298430562019)", - "surface": 1580000, - "canton": null, - "numero_insee": "57697" - } - }, - { - "pk": 27872, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VATIMONT", - "center": "POINT (902903.5084175320807844 2450142.7568523250520229)", - "surface": 7970000, - "canton": null, - "numero_insee": "57698" - } - }, - { - "pk": 26596, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VAUDRECHING", - "center": "POINT (904816.9887730939080939 2483481.1135781244374812)", - "surface": 4600000, - "canton": null, - "numero_insee": "57700" - } - }, - { - "pk": 29561, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VAUX", - "center": "POINT (872685.6750010967953131 2461489.8492694771848619)", - "surface": 6480000, - "canton": null, - "numero_insee": "57701" - } - }, - { - "pk": 5706, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VAXY", - "center": "POINT (907419.3670266007538885 2437072.9314610990695655)", - "surface": 5300000, - "canton": null, - "numero_insee": "57702" - } - }, - { - "pk": 32790, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VECKERSVILLER", - "center": "POINT (955956.5502664603991434 2436592.5785618536174297)", - "surface": 4910000, - "canton": null, - "numero_insee": "57703" - } - }, - { - "pk": 31649, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VECKRING", - "center": "POINT (892757.5115478588268161 2489480.8894550744444132)", - "surface": 6660000, - "canton": null, - "numero_insee": "57704" - } - }, - { - "pk": 21002, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VELVING", - "center": "POINT (906050.5201302226632833 2479689.3243856211192906)", - "surface": 4690000, - "canton": null, - "numero_insee": "57705" - } - }, - { - "pk": 19616, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VERGAVILLE", - "center": "POINT (923639.5574240684509277 2436012.3485319451428950)", - "surface": 13230000, - "canton": null, - "numero_insee": "57706" - } - }, - { - "pk": 30650, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VERNEVILLE", - "center": "POINT (867842.3877372720744461 2466151.2312797242775559)", - "surface": 9180000, - "canton": null, - "numero_insee": "57707" - } - }, - { - "pk": 29772, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VERNY", - "center": "POINT (882769.1450229927431792 2452570.7710732552222908)", - "surface": 3920000, - "canton": null, - "numero_insee": "57708" - } - }, - { - "pk": 9689, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VESCHEIM", - "center": "POINT (959090.5687532301526517 2432917.2481358856894076)", - "surface": 1850000, - "canton": null, - "numero_insee": "57709" - } - }, - { - "pk": 15415, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VIBERSVILLER", - "center": "POINT (937780.5525381455663592 2443940.0707306899130344)", - "surface": 12940000, - "canton": null, - "numero_insee": "57711" - } - }, - { - "pk": 27224, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VIEUX-LIXHEIM", - "center": "POINT (951903.5363342678174376 2430853.5120626320131123)", - "surface": 6500000, - "canton": null, - "numero_insee": "57713" - } - }, - { - "pk": 31255, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "HAUTE-VIGNEULLES", - "center": "POINT (908191.7291136782150716 2463497.2652571364305913)", - "surface": 9660000, - "canton": null, - "numero_insee": "57714" - } - }, - { - "pk": 28256, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VIGNY", - "center": "POINT (886809.4762314509134740 2448202.6669067270122468)", - "surface": 5850000, - "canton": null, - "numero_insee": "57715" - } - }, - { - "pk": 32210, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VIGY", - "center": "POINT (889379.8358767686877400 2475042.4951680563390255)", - "surface": 17050000, - "canton": null, - "numero_insee": "57716" - } - }, - { - "pk": 13428, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VILLER", - "center": "POINT (915396.2308928677812219 2451951.8443878153339028)", - "surface": 7190000, - "canton": null, - "numero_insee": "57717" - } - }, - { - "pk": 34890, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VILLERS-STONCOURT", - "center": "POINT (900026.6846112104831263 2458823.7032255050726235)", - "surface": 10600000, - "canton": null, - "numero_insee": "57718" - } - }, - { - "pk": 5482, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VILLERS-SUR-NIED", - "center": "POINT (907154.4135696708690375 2444575.7162460885010660)", - "surface": 4310000, - "canton": null, - "numero_insee": "57719" - } - }, - { - "pk": 26150, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VILLING", - "center": "POINT (912513.5741416328819469 2484448.2062397054396570)", - "surface": 4920000, - "canton": null, - "numero_insee": "57720" - } - }, - { - "pk": 27018, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VILSBERG", - "center": "POINT (961695.6301452972693369 2432539.5889278785325587)", - "surface": 4940000, - "canton": null, - "numero_insee": "57721" - } - }, - { - "pk": 32524, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VIONVILLE", - "center": "POINT (863786.5043275535572320 2460712.7776251761242747)", - "surface": 9490000, - "canton": null, - "numero_insee": "57722" - } - }, - { - "pk": 37279, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VIRMING", - "center": "POINT (923441.6682186067337170 2447318.2823580047115684)", - "surface": 10810000, - "canton": null, - "numero_insee": "57723" - } - }, - { - "pk": 7778, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VITRY-SUR-ORNE", - "center": "POINT (873610.5004476063186303 2481911.0785339623689651)", - "surface": 7670000, - "canton": null, - "numero_insee": "57724" - } - }, - { - "pk": 28956, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VITTERSBOURG", - "center": "POINT (936438.1658729972550645 2448731.6745910421013832)", - "surface": 7200000, - "canton": null, - "numero_insee": "57725" - } - }, - { - "pk": 5792, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VITTONCOURT", - "center": "POINT (901261.0856951680034399 2454931.7747065233998001)", - "surface": 9480000, - "canton": null, - "numero_insee": "57726" - } - }, - { - "pk": 10105, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VOIMHAUT", - "center": "POINT (898656.0957998107187450 2455309.5492673087865114)", - "surface": 4030000, - "canton": null, - "numero_insee": "57728" - } - }, - { - "pk": 13388, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VOLMERANGE-LES-BOULAY", - "center": "POINT (900017.8860366269946098 2471431.9016234939917922)", - "surface": 5930000, - "canton": null, - "numero_insee": "57730" - } - }, - { - "pk": 12579, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VOLMERANGE-LES-MINES", - "center": "POINT (870647.7788830306380987 2500597.4238104666583240)", - "surface": 12990000, - "canton": null, - "numero_insee": "57731" - } - }, - { - "pk": 14766, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VOLMUNSTER", - "center": "POINT (967076.6091468606609851 2469711.2283698725514114)", - "surface": 14850000, - "canton": null, - "numero_insee": "57732" - } - }, - { - "pk": 24312, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VOLSTROFF", - "center": "POINT (884789.2515958331059664 2485209.4723569173365831)", - "surface": 12270000, - "canton": null, - "numero_insee": "57733" - } - }, - { - "pk": 35536, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VOYER", - "center": "POINT (950026.4064207752235234 2416527.3297737189568579)", - "surface": 4510000, - "canton": null, - "numero_insee": "57734" - } - }, - { - "pk": 21138, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VRY", - "center": "POINT (893095.7736198884667829 2473473.5169000467285514)", - "surface": 15100000, - "canton": null, - "numero_insee": "57736" - } - }, - { - "pk": 28650, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VULMONT", - "center": "POINT (890851.5618423192063347 2443634.4393762564286590)", - "surface": 3060000, - "canton": null, - "numero_insee": "57737" - } - }, - { - "pk": 24570, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WALDHOUSE", - "center": "POINT (973558.6396552707301453 2472269.2032913342118263)", - "surface": 6510000, - "canton": null, - "numero_insee": "57738" - } - }, - { - "pk": 16430, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WALDWEISTROFF", - "center": "POINT (902238.6561370340641588 2492364.5245473482646048)", - "surface": 7790000, - "canton": null, - "numero_insee": "57739" - } - }, - { - "pk": 10351, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WALDWISSE", - "center": "POINT (903884.2894838819047436 2498782.7867509564384818)", - "surface": 11750000, - "canton": null, - "numero_insee": "57740" - } - }, - { - "pk": 24374, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WALSCHBRONN", - "center": "POINT (974744.5451875285943970 2473980.6260063606314361)", - "surface": 10120000, - "canton": null, - "numero_insee": "57741" - } - }, - { - "pk": 21760, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WALSCHEID", - "center": "POINT (957558.8654500230913982 2413390.4362058248370886)", - "surface": 38150000, - "canton": null, - "numero_insee": "57742" - } - }, - { - "pk": 30664, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WALTEMBOURG", - "center": "POINT (957234.5657654798123986 2427697.5641138129867613)", - "surface": 1320000, - "canton": null, - "numero_insee": "57743" - } - }, - { - "pk": 29355, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WIESVILLER", - "center": "POINT (952416.6888845327775925 2463980.2583389268256724)", - "surface": 8880000, - "canton": null, - "numero_insee": "57745" - } - }, - { - "pk": 37986, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WILLERWALD", - "center": "POINT (943766.2492295789998025 2457601.0607509268447757)", - "surface": 6370000, - "canton": null, - "numero_insee": "57746" - } - }, - { - "pk": 13660, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WINTERSBOURG", - "center": "POINT (956592.5170072758337483 2432495.2928627231158316)", - "surface": 4000000, - "canton": null, - "numero_insee": "57747" - } - }, - { - "pk": 10865, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WITTRING", - "center": "POINT (950339.7636629609623924 2461160.3881790498271585)", - "surface": 8290000, - "canton": null, - "numero_insee": "57748" - } - }, - { - "pk": 15122, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "VOELFLING-LES-BOUZONVILLE", - "center": "POINT (910602.1185680697672069 2485632.4521680525504053)", - "surface": 2900000, - "canton": null, - "numero_insee": "57749" - } - }, - { - "pk": 12553, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WOIPPY", - "center": "POINT (878719.3974786468315870 2469647.1364907110109925)", - "surface": 14580000, - "canton": null, - "numero_insee": "57751" - } - }, - { - "pk": 34187, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WOUSTVILLER", - "center": "POINT (941113.5497594728367403 2463481.9755459632724524)", - "surface": 10800000, - "canton": null, - "numero_insee": "57752" - } - }, - { - "pk": 35344, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "WUISSE", - "center": "POINT (917825.6585419307230040 2437162.8763309083878994)", - "surface": 14500000, - "canton": null, - "numero_insee": "57753" - } - }, - { - "pk": 13566, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "XANREY", - "center": "POINT (912524.4403992351144552 2425308.9691554522141814)", - "surface": 7770000, - "canton": null, - "numero_insee": "57754" - } - }, - { - "pk": 30917, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "XOCOURT", - "center": "POINT (896167.6903088032267988 2442179.2971935570240021)", - "surface": 4950000, - "canton": null, - "numero_insee": "57755" - } - }, - { - "pk": 13425, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "XOUAXANGE", - "center": "POINT (942687.1736376532353461 2420466.4884944315999746)", - "surface": 5180000, - "canton": null, - "numero_insee": "57756" - } - }, - { - "pk": 14895, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "YUTZ", - "center": "POINT (880939.6665541003458202 2490679.7896106825210154)", - "surface": 13910000, - "canton": null, - "numero_insee": "57757" - } - }, - { - "pk": 23033, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ZARBELING", - "center": "POINT (919091.8299857910024002 2441176.5397619162686169)", - "surface": 3980000, - "canton": null, - "numero_insee": "57759" - } - }, - { - "pk": 29181, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ZETTING", - "center": "POINT (949919.5662597515620291 2463458.2647213111631572)", - "surface": 6910000, - "canton": null, - "numero_insee": "57760" - } - }, - { - "pk": 12029, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ZILLING", - "center": "POINT (957997.7137932556215674 2432007.1452002031728625)", - "surface": 3580000, - "canton": null, - "numero_insee": "57761" - } - }, - { - "pk": 29275, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ZIMMING", - "center": "POINT (910258.3641969074960798 2467517.7520531704649329)", - "surface": 7900000, - "canton": null, - "numero_insee": "57762" - } - }, - { - "pk": 32769, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ZOMMANGE", - "center": "POINT (927758.4982920952606946 2434146.6966420551761985)", - "surface": 7440000, - "canton": null, - "numero_insee": "57763" - } - }, - { - "pk": 16183, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "ZOUFFTGEN", - "center": "POINT (875428.8794073668541387 2503140.1734622516669333)", - "surface": 16730000, - "canton": null, - "numero_insee": "57764" - } - }, - { - "pk": 10921, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "DIESEN", - "center": "POINT (917715.9881631238386035 2472985.7569780405610800)", - "surface": 5510000, - "canton": null, - "numero_insee": "57765" - } - }, - { - "pk": 35520, - "model": "ishtar_common.town", - "fields": { - "departement": 58, - "name": "STUCKANGE", - "center": "POINT (883266.8368447457905859 2487697.9425007076933980)", - "surface": 4530000, - "canton": null, - "numero_insee": "57767" - } - }, - { - "pk": 36519, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ACHUN", - "center": "POINT (700669.8312009614892304 2237455.1664939355105162)", - "surface": 24510000, - "canton": null, - "numero_insee": "58001" - } - }, - { - "pk": 5381, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ALLIGNY-COSNE", - "center": "POINT (655542.9079629549523816 2271801.9683423070237041)", - "surface": 34660000, - "canton": null, - "numero_insee": "58002" - } - }, - { - "pk": 16115, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ALLIGNY-EN-MORVAN", - "center": "POINT (739119.8823606753721833 2247089.1523915077559650)", - "surface": 48860000, - "canton": null, - "numero_insee": "58003" - } - }, - { - "pk": 4505, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ALLUY", - "center": "POINT (698458.7826583473943174 2226727.5171934557147324)", - "surface": 27610000, - "canton": null, - "numero_insee": "58004" - } - }, - { - "pk": 9567, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "AMAZY", - "center": "POINT (692425.7162089792545885 2265508.3552078683860600)", - "surface": 13840000, - "canton": null, - "numero_insee": "58005" - } - }, - { - "pk": 3276, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ANLEZY", - "center": "POINT (688414.5581655370770022 2219136.1808330900967121)", - "surface": 21510000, - "canton": null, - "numero_insee": "58006" - } - }, - { - "pk": 10770, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ANNAY", - "center": "POINT (645454.6210361063713208 2281324.5602934318594635)", - "surface": 26540000, - "canton": null, - "numero_insee": "58007" - } - }, - { - "pk": 4776, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ANTHIEN", - "center": "POINT (704903.5397873345063999 2257507.4764267620630562)", - "surface": 19600000, - "canton": null, - "numero_insee": "58008" - } - }, - { - "pk": 8815, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ARBOURSE", - "center": "POINT (667134.6460459928493947 2250182.2243783907033503)", - "surface": 9260000, - "canton": null, - "numero_insee": "58009" - } - }, - { - "pk": 23691, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ARLEUF", - "center": "POINT (727571.7249446373898536 2228075.3413264504633844)", - "surface": 60050000, - "canton": null, - "numero_insee": "58010" - } - }, - { - "pk": 29273, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ARMES", - "center": "POINT (692350.3189786244183779 2274414.8743169610388577)", - "surface": 8550000, - "canton": null, - "numero_insee": "58011" - } - }, - { - "pk": 14647, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ARQUIAN", - "center": "POINT (649753.5130442698718980 2281861.1999208997003734)", - "surface": 33820000, - "canton": null, - "numero_insee": "58012" - } - }, - { - "pk": 4961, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ARTHEL", - "center": "POINT (680948.3497521884273738 2249898.6357549591921270)", - "surface": 7750000, - "canton": null, - "numero_insee": "58013" - } - }, - { - "pk": 27761, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ARZEMBOUY", - "center": "POINT (677443.1937214862555265 2250169.2456415439955890)", - "surface": 12910000, - "canton": null, - "numero_insee": "58014" - } - }, - { - "pk": 12524, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ASNAN", - "center": "POINT (691893.8909819307737052 2257397.2856725528836250)", - "surface": 4820000, - "canton": null, - "numero_insee": "58015" - } - }, - { - "pk": 11733, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ASNOIS", - "center": "POINT (694413.6309977620840073 2267126.4764961143955588)", - "surface": 5740000, - "canton": null, - "numero_insee": "58016" - } - }, - { - "pk": 26993, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "AUNAY-EN-BAZOIS", - "center": "POINT (704878.1023189376574010 2236890.3255880670621991)", - "surface": 45350000, - "canton": null, - "numero_insee": "58017" - } - }, - { - "pk": 11879, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "AUTHIOU", - "center": "POINT (681829.5572850125608966 2252207.9708535200916231)", - "surface": 7350000, - "canton": null, - "numero_insee": "58018" - } - }, - { - "pk": 22126, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "AVREE", - "center": "POINT (717670.3228771572466940 2203670.7231722800061107)", - "surface": 13070000, - "canton": null, - "numero_insee": "58019" - } - }, - { - "pk": 23472, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "AVRIL-SUR-LOIRE", - "center": "POINT (678255.5112644314067438 2201435.2934746784158051)", - "surface": 25030000, - "canton": null, - "numero_insee": "58020" - } - }, - { - "pk": 15484, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "AZY-LE-VIF", - "center": "POINT (668167.0193027657223865 2199048.0736081819050014)", - "surface": 46990000, - "canton": null, - "numero_insee": "58021" - } - }, - { - "pk": 30444, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BALLERAY", - "center": "POINT (671388.2136185900308192 2232403.4508097069337964)", - "surface": 16460000, - "canton": null, - "numero_insee": "58022" - } - }, - { - "pk": 21830, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BAZOCHES", - "center": "POINT (710050.5477247467497364 2264256.5449720406904817)", - "surface": 14730000, - "canton": null, - "numero_insee": "58023" - } - }, - { - "pk": 5129, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BAZOLLES", - "center": "POINT (696352.1662466182606295 2239120.0058818189427257)", - "surface": 28640000, - "canton": null, - "numero_insee": "58024" - } - }, - { - "pk": 25040, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BEARD", - "center": "POINT (675396.6416341757867485 2208116.8526002406142652)", - "surface": 7560000, - "canton": null, - "numero_insee": "58025" - } - }, - { - "pk": 22626, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BEAULIEU", - "center": "POINT (689847.3842971355188638 2250874.6568878344260156)", - "surface": 5040000, - "canton": null, - "numero_insee": "58026" - } - }, - { - "pk": 19987, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BEAUMONT-LA-FERRIERE", - "center": "POINT (668096.1780936679570004 2242984.4273098148405552)", - "surface": 28530000, - "canton": null, - "numero_insee": "58027" - } - }, - { - "pk": 23864, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BEUVRON", - "center": "POINT (687652.6680934373289347 2261865.0459490879438818)", - "surface": 9640000, - "canton": null, - "numero_insee": "58029" - } - }, - { - "pk": 21659, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BICHES", - "center": "POINT (700197.3855305025354028 2222338.5496809985488653)", - "surface": 24590000, - "canton": null, - "numero_insee": "58030" - } - }, - { - "pk": 18958, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BILLY-CHEVANNES", - "center": "POINT (685469.9894991809269413 2224115.4755880623124540)", - "surface": 23870000, - "canton": null, - "numero_insee": "58031" - } - }, - { - "pk": 21367, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BILLY-SUR-OISY", - "center": "POINT (680222.0349524182965979 2276614.0999128096736968)", - "surface": 26790000, - "canton": null, - "numero_insee": "58032" - } - }, - { - "pk": 16006, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BITRY", - "center": "POINT (656297.0533103918423876 2277312.7315234588459134)", - "surface": 17670000, - "canton": null, - "numero_insee": "58033" - } - }, - { - "pk": 21955, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BLISMES", - "center": "POINT (712583.9403523184591904 2236955.6531837894581258)", - "surface": 26860000, - "canton": null, - "numero_insee": "58034" - } - }, - { - "pk": 18957, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BONA", - "center": "POINT (682717.9785591132240370 2229997.1378048458136618)", - "surface": 23470000, - "canton": null, - "numero_insee": "58035" - } - }, - { - "pk": 3544, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BOUHY", - "center": "POINT (663808.4177004030207172 2276675.5709473541937768)", - "surface": 36670000, - "canton": null, - "numero_insee": "58036" - } - }, - { - "pk": 19263, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BRASSY", - "center": "POINT (720856.9596061768243089 2252738.7804514877498150)", - "surface": 56620000, - "canton": null, - "numero_insee": "58037" - } - }, - { - "pk": 29870, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BREUGNON", - "center": "POINT (684579.3413414715323597 2270245.8240227503702044)", - "surface": 13460000, - "canton": null, - "numero_insee": "58038" - } - }, - { - "pk": 20501, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BREVES", - "center": "POINT (697184.3293369554448873 2270852.9174383804202080)", - "surface": 16620000, - "canton": null, - "numero_insee": "58039" - } - }, - { - "pk": 3277, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BRINAY", - "center": "POINT (704180.9579683509655297 2224674.2331923046149313)", - "surface": 16120000, - "canton": null, - "numero_insee": "58040" - } - }, - { - "pk": 7504, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BRINON-SUR-BEUVRON", - "center": "POINT (687214.9582733988063410 2254455.3239739988930523)", - "surface": 8090000, - "canton": null, - "numero_insee": "58041" - } - }, - { - "pk": 8451, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BULCY", - "center": "POINT (652330.3308284570230171 2249256.6222779564559460)", - "surface": 8380000, - "canton": null, - "numero_insee": "58042" - } - }, - { - "pk": 14040, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "BUSSY-LA-PESLE", - "center": "POINT (686042.0046300065005198 2251142.7023749034851789)", - "surface": 5160000, - "canton": null, - "numero_insee": "58043" - } - }, - { - "pk": 7043, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA CELLE-SUR-LOIRE", - "center": "POINT (644996.4326940504834056 2276316.7152080438099802)", - "surface": 21640000, - "canton": null, - "numero_insee": "58044" - } - }, - { - "pk": 22753, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CERCY-LA-TOUR", - "center": "POINT (699832.6336328070610762 2206321.9013988957740366)", - "surface": 45430000, - "canton": null, - "numero_insee": "58046" - } - }, - { - "pk": 19895, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CERVON", - "center": "POINT (707170.4915453662397340 2249820.3989065391942859)", - "surface": 54010000, - "canton": null, - "numero_insee": "58047" - } - }, - { - "pk": 20572, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CESSY-LES-BOIS", - "center": "POINT (666455.5990210934542120 2259484.0742010241374373)", - "surface": 17670000, - "canton": null, - "numero_insee": "58048" - } - }, - { - "pk": 22201, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHALAUX", - "center": "POINT (719090.3006944711087272 2260430.0639032945036888)", - "surface": 10200000, - "canton": null, - "numero_insee": "58049" - } - }, - { - "pk": 27496, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHALLUY", - "center": "POINT (661117.1380830119596794 2216103.1189148691482842)", - "surface": 18880000, - "canton": null, - "numero_insee": "58051" - } - }, - { - "pk": 15658, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHAMPALLEMENT", - "center": "POINT (686667.0073576548602432 2248245.6126810135319829)", - "surface": 8150000, - "canton": null, - "numero_insee": "58052" - } - }, - { - "pk": 4962, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHAMPLEMY", - "center": "POINT (675506.2474651641678065 2254356.3071801397018135)", - "surface": 37010000, - "canton": null, - "numero_insee": "58053" - } - }, - { - "pk": 8624, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHAMPLIN", - "center": "POINT (684249.9716392721747980 2250026.6414955873042345)", - "surface": 7920000, - "canton": null, - "numero_insee": "58054" - } - }, - { - "pk": 16837, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHAMPVERT", - "center": "POINT (690422.7441388259176165 2206542.4855636274442077)", - "surface": 46370000, - "canton": null, - "numero_insee": "58055" - } - }, - { - "pk": 6110, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHAMPVOUX", - "center": "POINT (655824.0613734521903098 2238477.1955021130852401)", - "surface": 10720000, - "canton": null, - "numero_insee": "58056" - } - }, - { - "pk": 19404, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHANTENAY-SAINT-IMBERT", - "center": "POINT (663709.1024569321889430 2193605.7817202461883426)", - "surface": 42150000, - "canton": null, - "numero_insee": "58057" - } - }, - { - "pk": 15009, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA CHAPELLE-SAINT-ANDRE", - "center": "POINT (674496.4730286498088390 2267258.2350882343016565)", - "surface": 27250000, - "canton": null, - "numero_insee": "58058" - } - }, - { - "pk": 27963, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA CHARITE-SUR-LOIRE", - "center": "POINT (652384.3498526004841551 2242851.8159760027192533)", - "surface": 15790000, - "canton": null, - "numero_insee": "58059" - } - }, - { - "pk": 22805, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHARRIN", - "center": "POINT (696077.9655603885184973 2200585.2254723566584289)", - "surface": 26240000, - "canton": null, - "numero_insee": "58060" - } - }, - { - "pk": 6029, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHASNAY", - "center": "POINT (663140.9486595254857093 2249047.5998134450055659)", - "surface": 11800000, - "canton": null, - "numero_insee": "58061" - } - }, - { - "pk": 32836, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHATEAU-CHINON (VILLE)", - "center": "POINT (720746.1378104425966740 2230419.4029032089747488)", - "surface": 4140000, - "canton": null, - "numero_insee": "58062" - } - }, - { - "pk": 16523, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHATEAU-CHINON (CAMPAGNE)", - "center": "POINT (721853.7728010041173548 2229628.1351482449099422)", - "surface": 28440000, - "canton": null, - "numero_insee": "58063" - } - }, - { - "pk": 34686, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHATEAUNEUF-VAL-DE-BARGIS", - "center": "POINT (666501.2367221819004044 2254080.0638275826349854)", - "surface": 47930000, - "canton": null, - "numero_insee": "58064" - } - }, - { - "pk": 27654, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHATILLON-EN-BAZOIS", - "center": "POINT (700339.0441436975961551 2229245.5358417988754809)", - "surface": 19330000, - "canton": null, - "numero_insee": "58065" - } - }, - { - "pk": 24854, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHATIN", - "center": "POINT (717306.1834239409072325 2234793.8810990708880126)", - "surface": 13050000, - "canton": null, - "numero_insee": "58066" - } - }, - { - "pk": 20075, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHAUMARD", - "center": "POINT (719567.1671490255976096 2239617.0504820235073566)", - "surface": 19820000, - "canton": null, - "numero_insee": "58068" - } - }, - { - "pk": 5676, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHAUMOT", - "center": "POINT (698853.2620814437977970 2251050.9889663276262581)", - "surface": 7890000, - "canton": null, - "numero_insee": "58069" - } - }, - { - "pk": 15006, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHEVANNES-CHANGY", - "center": "POINT (684406.9479412100045010 2255132.1389456097967923)", - "surface": 19000000, - "canton": null, - "numero_insee": "58071" - } - }, - { - "pk": 9520, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHEVENON", - "center": "POINT (668048.6823631345760077 2213059.0199605789966881)", - "surface": 32890000, - "canton": null, - "numero_insee": "58072" - } - }, - { - "pk": 18656, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHEVROCHES", - "center": "POINT (691067.1594947560224682 2272302.3292483002878726)", - "surface": 3280000, - "canton": null, - "numero_insee": "58073" - } - }, - { - "pk": 19312, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHIDDES", - "center": "POINT (721435.9294264261843637 2208106.4354987931437790)", - "surface": 26050000, - "canton": null, - "numero_insee": "58074" - } - }, - { - "pk": 5498, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHITRY-LES-MINES", - "center": "POINT (700236.5051409490406513 2253164.4242885829880834)", - "surface": 5800000, - "canton": null, - "numero_insee": "58075" - } - }, - { - "pk": 19262, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CHOUGNY", - "center": "POINT (707812.5378626359160990 2233112.0373206618241966)", - "surface": 14810000, - "canton": null, - "numero_insee": "58076" - } - }, - { - "pk": 23175, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CIEZ", - "center": "POINT (662251.1845146046252921 2271458.2609982634894550)", - "surface": 28240000, - "canton": null, - "numero_insee": "58077" - } - }, - { - "pk": 31779, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CIZELY", - "center": "POINT (686097.5431846093852073 2220918.0938318474218249)", - "surface": 7130000, - "canton": null, - "numero_insee": "58078" - } - }, - { - "pk": 17966, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CLAMECY", - "center": "POINT (688450.0164364337688312 2274081.6223058556206524)", - "surface": 30860000, - "canton": null, - "numero_insee": "58079" - } - }, - { - "pk": 18449, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA COLLANCELLE", - "center": "POINT (699220.4527295782463625 2243147.6048257714137435)", - "surface": 23460000, - "canton": null, - "numero_insee": "58080" - } - }, - { - "pk": 14417, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "COLMERY", - "center": "POINT (668741.2411857966799289 2261404.9201442259363830)", - "surface": 24200000, - "canton": null, - "numero_insee": "58081" - } - }, - { - "pk": 12659, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CORVOL-D'EMBERNARD", - "center": "POINT (680300.5128207001835108 2255497.7351144170388579)", - "surface": 9820000, - "canton": null, - "numero_insee": "58084" - } - }, - { - "pk": 19307, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CORVOL-L'ORGUEILLEUX", - "center": "POINT (677769.2860743314959109 2270788.7156841810792685)", - "surface": 30320000, - "canton": null, - "numero_insee": "58085" - } - }, - { - "pk": 21809, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "COSNE-COURS-SUR-LOIRE", - "center": "POINT (645674.4731472377898172 2267115.0504248207435012)", - "surface": 53730000, - "canton": null, - "numero_insee": "58086" - } - }, - { - "pk": 21078, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "COSSAYE", - "center": "POINT (689613.5074673398630694 2195726.3772422894835472)", - "surface": 51830000, - "canton": null, - "numero_insee": "58087" - } - }, - { - "pk": 36184, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "COULOUTRE", - "center": "POINT (666696.6598143705632538 2266491.7745382799766958)", - "surface": 21230000, - "canton": null, - "numero_insee": "58089" - } - }, - { - "pk": 8558, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "COURCELLES", - "center": "POINT (679798.6735149666201323 2267503.2185651534236968)", - "surface": 9690000, - "canton": null, - "numero_insee": "58090" - } - }, - { - "pk": 3761, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CRUX-LA-VILLE", - "center": "POINT (690139.8536620908416808 2239968.1591432285495102)", - "surface": 45890000, - "canton": null, - "numero_insee": "58092" - } - }, - { - "pk": 36344, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "CUNCY-LES-VARZY", - "center": "POINT (684740.3669802839867771 2263041.3783198143355548)", - "surface": 15260000, - "canton": null, - "numero_insee": "58093" - } - }, - { - "pk": 23263, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DAMPIERRE-SOUS-BOUHY", - "center": "POINT (659686.8547121923184022 2278842.5330934678204358)", - "surface": 27130000, - "canton": null, - "numero_insee": "58094" - } - }, - { - "pk": 23802, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DECIZE", - "center": "POINT (686160.8694079439155757 2201602.2335084858350456)", - "surface": 48170000, - "canton": null, - "numero_insee": "58095" - } - }, - { - "pk": 32028, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DEVAY", - "center": "POINT (691968.8126453980803490 2201251.0380848869681358)", - "surface": 12530000, - "canton": null, - "numero_insee": "58096" - } - }, - { - "pk": 15482, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DIENNES-AUBIGNY", - "center": "POINT (694369.1018908135592937 2213281.5900975046679378)", - "surface": 37380000, - "canton": null, - "numero_insee": "58097" - } - }, - { - "pk": 21189, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DIROL", - "center": "POINT (698690.4616364128887653 2258455.6493797656148672)", - "surface": 9630000, - "canton": null, - "numero_insee": "58098" - } - }, - { - "pk": 31153, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DOMPIERRE-SUR-HERY", - "center": "POINT (692144.0202378282556310 2251494.5871356879360974)", - "surface": 6130000, - "canton": null, - "numero_insee": "58100" - } - }, - { - "pk": 16778, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DONZY", - "center": "POINT (658605.0623613399220631 2264722.0911682453006506)", - "surface": 63360000, - "canton": null, - "numero_insee": "58102" - } - }, - { - "pk": 20726, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DORNECY", - "center": "POINT (694471.3382909920765087 2272130.9875786062330008)", - "surface": 17380000, - "canton": null, - "numero_insee": "58103" - } - }, - { - "pk": 23940, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DORNES", - "center": "POINT (676537.8423330971272662 2191512.2521526152268052)", - "surface": 40050000, - "canton": null, - "numero_insee": "58104" - } - }, - { - "pk": 8316, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DRUY-PARIGNY", - "center": "POINT (678888.3733675937401131 2209447.4749333974905312)", - "surface": 25050000, - "canton": null, - "numero_insee": "58105" - } - }, - { - "pk": 26845, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DUN-LES-PLACES", - "center": "POINT (727236.2384137274930254 2255795.3901230827905238)", - "surface": 45130000, - "canton": null, - "numero_insee": "58106" - } - }, - { - "pk": 17864, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "DUN-SUR-GRANDRY", - "center": "POINT (711014.1248858707258478 2233239.2641747696325183)", - "surface": 11880000, - "canton": null, - "numero_insee": "58107" - } - }, - { - "pk": 4829, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "EMPURY", - "center": "POINT (712172.4640679277945310 2261872.5947409700602293)", - "surface": 11730000, - "canton": null, - "numero_insee": "58108" - } - }, - { - "pk": 14651, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ENTRAINS-SUR-NOHAIN", - "center": "POINT (670537.8079138856846839 2273830.0871664215810597)", - "surface": 59720000, - "canton": null, - "numero_insee": "58109" - } - }, - { - "pk": 14423, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "FACHIN", - "center": "POINT (723905.4255133230471984 2223740.6043587555177510)", - "surface": 13920000, - "canton": null, - "numero_insee": "58111" - } - }, - { - "pk": 23939, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA FERMETE", - "center": "POINT (675414.6740685522090644 2217825.2311093411408365)", - "surface": 35560000, - "canton": null, - "numero_insee": "58112" - } - }, - { - "pk": 16085, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "FERTREVE", - "center": "POINT (695223.1959548734594136 2218793.4744527577422559)", - "surface": 24780000, - "canton": null, - "numero_insee": "58113" - } - }, - { - "pk": 5749, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "FLEURY-SUR-LOIRE", - "center": "POINT (674632.3852885029045865 2203806.7237915270961821)", - "surface": 19860000, - "canton": null, - "numero_insee": "58115" - } - }, - { - "pk": 6060, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "FLEZ-CUZY", - "center": "POINT (697952.6486852391390130 2262852.9709559851326048)", - "surface": 5990000, - "canton": null, - "numero_insee": "58116" - } - }, - { - "pk": 7745, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "FOURCHAMBAULT", - "center": "POINT (657244.1087378064403310 2224377.4238538756035268)", - "surface": 4440000, - "canton": null, - "numero_insee": "58117" - } - }, - { - "pk": 20842, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "FOURS", - "center": "POINT (705575.2561462325975299 2201866.7074131583794951)", - "surface": 25810000, - "canton": null, - "numero_insee": "58118" - } - }, - { - "pk": 16423, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "FRASNAY-REUGNY", - "center": "POINT (690591.6931385989300907 2222057.0480959904380143)", - "surface": 13900000, - "canton": null, - "numero_insee": "58119" - } - }, - { - "pk": 32215, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GARCHIZY", - "center": "POINT (657519.8500359808094800 2227282.1803924059495330)", - "surface": 16500000, - "canton": null, - "numero_insee": "58121" - } - }, - { - "pk": 10924, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GARCHY", - "center": "POINT (654197.9852955858223140 2253275.6482730535790324)", - "surface": 21300000, - "canton": null, - "numero_insee": "58122" - } - }, - { - "pk": 30038, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GERMENAY", - "center": "POINT (695516.0530972162960097 2255126.0776782287284732)", - "surface": 12870000, - "canton": null, - "numero_insee": "58123" - } - }, - { - "pk": 36061, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GERMIGNY-SUR-LOIRE", - "center": "POINT (653985.0921033469494432 2231055.5328897535800934)", - "surface": 18830000, - "canton": null, - "numero_insee": "58124" - } - }, - { - "pk": 3596, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GIEN-SUR-CURE", - "center": "POINT (732976.4497947460040450 2239830.9952615089714527)", - "surface": 10990000, - "canton": null, - "numero_insee": "58125" - } - }, - { - "pk": 34634, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GIMOUILLE", - "center": "POINT (657915.5053611075272784 2215976.0142223583534360)", - "surface": 14260000, - "canton": null, - "numero_insee": "58126" - } - }, - { - "pk": 18367, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GIRY", - "center": "POINT (675772.3734792619943619 2246552.1677184980362654)", - "surface": 23780000, - "canton": null, - "numero_insee": "58127" - } - }, - { - "pk": 35725, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GLUX-EN-GLENNE", - "center": "POINT (728151.9979356906842440 2218672.3637915472500026)", - "surface": 21900000, - "canton": null, - "numero_insee": "58128" - } - }, - { - "pk": 4008, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GOULOUX", - "center": "POINT (732295.2229514893842861 2249333.0420832526870072)", - "surface": 21900000, - "canton": null, - "numero_insee": "58129" - } - }, - { - "pk": 5090, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GRENOIS", - "center": "POINT (689481.9464748699683696 2258577.8472702470608056)", - "surface": 14460000, - "canton": null, - "numero_insee": "58130" - } - }, - { - "pk": 32445, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GUERIGNY", - "center": "POINT (666480.2563250376842916 2232862.4103069039992988)", - "surface": 7440000, - "canton": null, - "numero_insee": "58131" - } - }, - { - "pk": 17201, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "GUIPY", - "center": "POINT (694071.7048795899609104 2248408.3651730692945421)", - "surface": 18310000, - "canton": null, - "numero_insee": "58132" - } - }, - { - "pk": 12941, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "HERY", - "center": "POINT (694941.0271934269694611 2252118.7578584649600089)", - "surface": 7810000, - "canton": null, - "numero_insee": "58133" - } - }, - { - "pk": 21549, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "IMPHY", - "center": "POINT (671832.1851851626997814 2215392.9292419613339007)", - "surface": 16630000, - "canton": null, - "numero_insee": "58134" - } - }, - { - "pk": 4331, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ISENAY", - "center": "POINT (704571.9322751293657348 2213968.5193442613817751)", - "surface": 20390000, - "canton": null, - "numero_insee": "58135" - } - }, - { - "pk": 6588, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "JAILLY", - "center": "POINT (686001.0248699738876894 2232326.8269137172028422)", - "surface": 11000000, - "canton": null, - "numero_insee": "58136" - } - }, - { - "pk": 26750, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LAMENAY-SUR-LOIRE", - "center": "POINT (694622.5405166910495609 2195168.2585721970535815)", - "surface": 12010000, - "canton": null, - "numero_insee": "58137" - } - }, - { - "pk": 16365, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LANGERON", - "center": "POINT (656931.1807570141972974 2202155.9674510699696839)", - "surface": 20460000, - "canton": null, - "numero_insee": "58138" - } - }, - { - "pk": 4796, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LANTY", - "center": "POINT (713886.8660966185852885 2201336.6587380678392947)", - "surface": 12090000, - "canton": null, - "numero_insee": "58139" - } - }, - { - "pk": 35875, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LAROCHEMILLAY", - "center": "POINT (725612.0173914205515757 2211344.6096563618630171)", - "surface": 40390000, - "canton": null, - "numero_insee": "58140" - } - }, - { - "pk": 20902, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LAVAULT-DE-FRETOY", - "center": "POINT (727810.7628228575922549 2235283.3802620861679316)", - "surface": 15290000, - "canton": null, - "numero_insee": "58141" - } - }, - { - "pk": 20734, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LIMANTON", - "center": "POINT (706815.1873829858377576 2220893.3625057749450207)", - "surface": 46810000, - "canton": null, - "numero_insee": "58142" - } - }, - { - "pk": 13490, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LIMON", - "center": "POINT (679709.5354705136269331 2218862.3812950784340501)", - "surface": 8130000, - "canton": null, - "numero_insee": "58143" - } - }, - { - "pk": 16366, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LIVRY", - "center": "POINT (656176.1474387983325869 2196744.9628645651973784)", - "surface": 26860000, - "canton": null, - "numero_insee": "58144" - } - }, - { - "pk": 19296, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LORMES", - "center": "POINT (712527.0036103471647948 2255470.3960738931782544)", - "surface": 51780000, - "canton": null, - "numero_insee": "58145" - } - }, - { - "pk": 28305, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LUCENAY-LES-AIX", - "center": "POINT (688266.5974287289427593 2189309.4501910414546728)", - "surface": 55940000, - "canton": null, - "numero_insee": "58146" - } - }, - { - "pk": 21571, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LURCY-LE-BOURG", - "center": "POINT (680321.4465510689187795 2241186.1748604569584131)", - "surface": 22740000, - "canton": null, - "numero_insee": "58147" - } - }, - { - "pk": 20440, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LUTHENAY-UXELOUP", - "center": "POINT (671008.4271000872831792 2206278.2379093687050045)", - "surface": 38970000, - "canton": null, - "numero_insee": "58148" - } - }, - { - "pk": 16082, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LUZY", - "center": "POINT (726901.3288341291481629 2200946.6728244577534497)", - "surface": 41700000, - "canton": null, - "numero_insee": "58149" - } - }, - { - "pk": 8584, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LYS", - "center": "POINT (695373.6092924701515585 2260128.9407135834917426)", - "surface": 10720000, - "canton": null, - "numero_insee": "58150" - } - }, - { - "pk": 33143, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA MACHINE", - "center": "POINT (685682.6662508577574044 2210806.0395754566416144)", - "surface": 18100000, - "canton": null, - "numero_insee": "58151" - } - }, - { - "pk": 24007, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MAGNY-COURS", - "center": "POINT (662266.9887298517860472 2210307.9084382578730583)", - "surface": 32120000, - "canton": null, - "numero_insee": "58152" - } - }, - { - "pk": 14574, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MAGNY-LORMES", - "center": "POINT (706721.8410852031083778 2255521.2579489955678582)", - "surface": 8520000, - "canton": null, - "numero_insee": "58153" - } - }, - { - "pk": 26842, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA MAISON-DIEU", - "center": "POINT (700395.1488924068398774 2269879.3102993345819414)", - "surface": 13760000, - "canton": null, - "numero_insee": "58154" - } - }, - { - "pk": 25144, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA MARCHE", - "center": "POINT (653317.9486641612602398 2238956.4683523750863969)", - "surface": 10810000, - "canton": null, - "numero_insee": "58155" - } - }, - { - "pk": 18582, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MARCY", - "center": "POINT (680579.5799625560175627 2258002.1305734235793352)", - "surface": 14510000, - "canton": null, - "numero_insee": "58156" - } - }, - { - "pk": 16714, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MARIGNY-L'EGLISE", - "center": "POINT (721180.8126566177234054 2261748.8608671003021300)", - "surface": 39680000, - "canton": null, - "numero_insee": "58157" - } - }, - { - "pk": 16261, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MARS-SUR-ALLIER", - "center": "POINT (657192.5726593597792089 2206762.1029861262068152)", - "surface": 21130000, - "canton": null, - "numero_insee": "58158" - } - }, - { - "pk": 36752, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MARIGNY-SUR-YONNE", - "center": "POINT (698720.1291996140498668 2254953.0495161120779812)", - "surface": 11220000, - "canton": null, - "numero_insee": "58159" - } - }, - { - "pk": 36287, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MARZY", - "center": "POINT (657475.5066940686665475 2220676.2667581657879055)", - "surface": 21570000, - "canton": null, - "numero_insee": "58160" - } - }, - { - "pk": 14886, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MAUX", - "center": "POINT (709161.8882728622993454 2227418.7152392603456974)", - "surface": 22700000, - "canton": null, - "numero_insee": "58161" - } - }, - { - "pk": 20431, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MENESTREAU", - "center": "POINT (669785.4121643074322492 2268119.1534141935408115)", - "surface": 19410000, - "canton": null, - "numero_insee": "58162" - } - }, - { - "pk": 5708, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MENOU", - "center": "POINT (671425.4805140985408798 2263529.2968963976018131)", - "surface": 17540000, - "canton": null, - "numero_insee": "58163" - } - }, - { - "pk": 26948, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MESVES-SUR-LOIRE", - "center": "POINT (650539.1104179068934172 2248040.5319504388608038)", - "surface": 18920000, - "canton": null, - "numero_insee": "58164" - } - }, - { - "pk": 3694, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MHERE", - "center": "POINT (715418.2244249104987830 2244986.3098600003868341)", - "surface": 25190000, - "canton": null, - "numero_insee": "58166" - } - }, - { - "pk": 12809, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MICHAUGUES", - "center": "POINT (689631.1430016829399392 2252774.3814679216593504)", - "surface": 4410000, - "canton": null, - "numero_insee": "58167" - } - }, - { - "pk": 28866, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MILLAY", - "center": "POINT (726065.0115673466352746 2205143.1695856628939509)", - "surface": 37410000, - "canton": null, - "numero_insee": "58168" - } - }, - { - "pk": 7294, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MOISSY-MOULINOT", - "center": "POINT (703485.5403466612333432 2259497.0863258535973728)", - "surface": 2910000, - "canton": null, - "numero_insee": "58169" - } - }, - { - "pk": 13454, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONCEAUX-LE-COMTE", - "center": "POINT (700379.8532076656119898 2259871.0977334473282099)", - "surface": 3360000, - "canton": null, - "numero_insee": "58170" - } - }, - { - "pk": 23687, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONTAPAS", - "center": "POINT (694711.8875661934725940 2231900.1338396701030433)", - "surface": 23890000, - "canton": null, - "numero_insee": "58171" - } - }, - { - "pk": 19986, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONTAMBERT", - "center": "POINT (702809.5185550290625542 2197539.5787264024838805)", - "surface": 26320000, - "canton": null, - "numero_insee": "58172" - } - }, - { - "pk": 4407, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONTARON", - "center": "POINT (707513.2041083001531661 2209389.5394410421140492)", - "surface": 33930000, - "canton": null, - "numero_insee": "58173" - } - }, - { - "pk": 23245, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONT-ET-MARRE", - "center": "POINT (699306.9159297251608223 2232939.8805206981487572)", - "surface": 18160000, - "canton": null, - "numero_insee": "58175" - } - }, - { - "pk": 19110, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONTIGNY-EN-MORVAN", - "center": "POINT (715665.9159628367051482 2239383.7843370623886585)", - "surface": 21290000, - "canton": null, - "numero_insee": "58177" - } - }, - { - "pk": 17407, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONTIGNY-SUR-CANNE", - "center": "POINT (700545.0912524278974161 2216736.7720346716232598)", - "surface": 30730000, - "canton": null, - "numero_insee": "58178" - } - }, - { - "pk": 3777, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONTREUILLON", - "center": "POINT (710237.2244130767649040 2242240.1425540247000754)", - "surface": 35540000, - "canton": null, - "numero_insee": "58179" - } - }, - { - "pk": 20903, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MONTSAUCHE-LES-SETTONS", - "center": "POINT (728508.5267345664324239 2247399.3143035997636616)", - "surface": 46290000, - "canton": null, - "numero_insee": "58180" - } - }, - { - "pk": 8232, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MORACHES", - "center": "POINT (691317.1636012000963092 2254590.1217699926346540)", - "surface": 15070000, - "canton": null, - "numero_insee": "58181" - } - }, - { - "pk": 19258, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MOULINS-ENGILBERT", - "center": "POINT (712225.2890893485164270 2220238.6397994174621999)", - "surface": 41340000, - "canton": null, - "numero_insee": "58182" - } - }, - { - "pk": 19051, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MOURON-SUR-YONNE", - "center": "POINT (706308.8366593222599477 2245209.3145798016339540)", - "surface": 11150000, - "canton": null, - "numero_insee": "58183" - } - }, - { - "pk": 22509, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MOUSSY", - "center": "POINT (684996.2102579135680571 2244628.5171515299007297)", - "surface": 11880000, - "canton": null, - "numero_insee": "58184" - } - }, - { - "pk": 16616, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MOUX-EN-MORVAN", - "center": "POINT (735955.7541010660352185 2242558.5462170434184372)", - "surface": 44550000, - "canton": null, - "numero_insee": "58185" - } - }, - { - "pk": 7146, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "MYENNES", - "center": "POINT (645725.6218268873635679 2272920.1417763321660459)", - "surface": 7140000, - "canton": null, - "numero_insee": "58187" - } - }, - { - "pk": 29284, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NANNAY", - "center": "POINT (662620.2980922070564702 2251445.1700539123266935)", - "surface": 11480000, - "canton": null, - "numero_insee": "58188" - } - }, - { - "pk": 20376, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NARCY", - "center": "POINT (658243.1917696513701230 2248305.6855811928398907)", - "surface": 29520000, - "canton": null, - "numero_insee": "58189" - } - }, - { - "pk": 21126, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NEUFFONTAINES", - "center": "POINT (706066.2605604826239869 2262020.9866580069065094)", - "surface": 14610000, - "canton": null, - "numero_insee": "58190" - } - }, - { - "pk": 35824, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NEUILLY", - "center": "POINT (689157.8709066290175542 2249567.7562444391660392)", - "surface": 14040000, - "canton": null, - "numero_insee": "58191" - } - }, - { - "pk": 18420, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NEUVILLE-LES-DECIZE", - "center": "POINT (673583.9556400848086923 2197592.5475487615913153)", - "surface": 27020000, - "canton": null, - "numero_insee": "58192" - } - }, - { - "pk": 34343, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NEUVY-SUR-LOIRE", - "center": "POINT (641650.1850445535965264 2281492.6574200182221830)", - "surface": 20780000, - "canton": null, - "numero_insee": "58193" - } - }, - { - "pk": 19147, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NEVERS", - "center": "POINT (662375.0583763968897983 2221218.0390155483037233)", - "surface": 17350000, - "canton": null, - "numero_insee": "58194" - } - }, - { - "pk": 26526, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "LA NOCLE-MAULAIX", - "center": "POINT (708920.2673300013411790 2196890.7646330329589546)", - "surface": 32610000, - "canton": null, - "numero_insee": "58195" - } - }, - { - "pk": 4262, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NOLAY", - "center": "POINT (675463.4232628849567845 2235740.6324998317286372)", - "surface": 42880000, - "canton": null, - "numero_insee": "58196" - } - }, - { - "pk": 12017, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "NUARS", - "center": "POINT (703628.0222584176808596 2266303.8009892730042338)", - "surface": 15830000, - "canton": null, - "numero_insee": "58197" - } - }, - { - "pk": 4244, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "OISY", - "center": "POINT (683936.5767728766659275 2275244.3962910855188966)", - "surface": 17370000, - "canton": null, - "numero_insee": "58198" - } - }, - { - "pk": 4543, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ONLAY", - "center": "POINT (718535.2419623498572037 2219691.6584830959327519)", - "surface": 19660000, - "canton": null, - "numero_insee": "58199" - } - }, - { - "pk": 31362, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "OUAGNE", - "center": "POINT (687604.4011986430268735 2267569.2442527757957578)", - "surface": 11870000, - "canton": null, - "numero_insee": "58200" - } - }, - { - "pk": 34176, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "OUDAN", - "center": "POINT (674952.5896209747297689 2260656.7533735269680619)", - "surface": 20030000, - "canton": null, - "numero_insee": "58201" - } - }, - { - "pk": 20818, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "OUGNY", - "center": "POINT (704321.7468385477550328 2231681.2838992588222027)", - "surface": 8160000, - "canton": null, - "numero_insee": "58202" - } - }, - { - "pk": 14421, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "OULON", - "center": "POINT (680591.2084891845006496 2244791.4257118706591427)", - "surface": 11080000, - "canton": null, - "numero_insee": "58203" - } - }, - { - "pk": 16631, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "OUROUER", - "center": "POINT (673214.9541814188705757 2229416.3832994485273957)", - "surface": 22260000, - "canton": null, - "numero_insee": "58204" - } - }, - { - "pk": 23502, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "OUROUX-EN-MORVAN", - "center": "POINT (722428.5852243539411575 2244445.3028559973463416)", - "surface": 60600000, - "canton": null, - "numero_insee": "58205" - } - }, - { - "pk": 6463, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "PARIGNY-LA-ROSE", - "center": "POINT (684469.7745280328672379 2259536.2514700535684824)", - "surface": 8820000, - "canton": null, - "numero_insee": "58206" - } - }, - { - "pk": 21824, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "PARIGNY-LES-VAUX", - "center": "POINT (661368.7715421293396503 2233720.0029873247258365)", - "surface": 31390000, - "canton": null, - "numero_insee": "58207" - } - }, - { - "pk": 16263, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "PAZY", - "center": "POINT (697977.1695399871096015 2248141.1902370196767151)", - "surface": 22080000, - "canton": null, - "numero_insee": "58208" - } - }, - { - "pk": 20081, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "PERROY", - "center": "POINT (662484.2791950959945098 2267557.0928507843054831)", - "surface": 21740000, - "canton": null, - "numero_insee": "58209" - } - }, - { - "pk": 16114, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "PLANCHEZ", - "center": "POINT (728076.1444403468631208 2239389.0378884249366820)", - "surface": 43770000, - "canton": null, - "numero_insee": "58210" - } - }, - { - "pk": 22941, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "POIL", - "center": "POINT (730932.2930898793274537 2209488.1745409527793527)", - "surface": 27050000, - "canton": null, - "numero_insee": "58211" - } - }, - { - "pk": 22466, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "POUGNY", - "center": "POINT (651887.4677234769333154 2266166.6289762747474015)", - "surface": 19260000, - "canton": null, - "numero_insee": "58213" - } - }, - { - "pk": 4439, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "POUGUES-LES-EAUX", - "center": "POINT (657689.6024931374704465 2230886.6201157104223967)", - "surface": 13070000, - "canton": null, - "numero_insee": "58214" - } - }, - { - "pk": 14414, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "POUILLY-SUR-LOIRE", - "center": "POINT (648791.4289232633309439 2253530.2969626612029970)", - "surface": 19880000, - "canton": null, - "numero_insee": "58215" - } - }, - { - "pk": 19298, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "POUSSEAUX", - "center": "POINT (690716.1182660909835249 2278304.1580304726958275)", - "surface": 11030000, - "canton": null, - "numero_insee": "58217" - } - }, - { - "pk": 18368, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "PREMERY", - "center": "POINT (674510.3027751211775467 2241937.7111242078244686)", - "surface": 45670000, - "canton": null, - "numero_insee": "58218" - } - }, - { - "pk": 23439, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "PREPORCHE", - "center": "POINT (716262.3326199640287086 2216269.5020862417295575)", - "surface": 29700000, - "canton": null, - "numero_insee": "58219" - } - }, - { - "pk": 16425, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "RAVEAU", - "center": "POINT (658993.5452385495882481 2242407.1633296972140670)", - "surface": 35990000, - "canton": null, - "numero_insee": "58220" - } - }, - { - "pk": 12188, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "REMILLY", - "center": "POINT (711060.9062821263214573 2204115.0927098295651376)", - "surface": 36310000, - "canton": null, - "numero_insee": "58221" - } - }, - { - "pk": 37947, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "RIX", - "center": "POINT (687579.8443938551936299 2270471.3705265549942851)", - "surface": 3980000, - "canton": null, - "numero_insee": "58222" - } - }, - { - "pk": 17202, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "ROUY", - "center": "POINT (691449.1851978501072153 2227168.5863282959908247)", - "surface": 35910000, - "canton": null, - "numero_insee": "58223" - } - }, - { - "pk": 21764, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "RUAGES", - "center": "POINT (701699.4689630677457899 2257680.4887953307479620)", - "surface": 10450000, - "canton": null, - "numero_insee": "58224" - } - }, - { - "pk": 27584, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINCAIZE-MEAUCE", - "center": "POINT (657146.9738902706885710 2212166.3109551556408405)", - "surface": 21520000, - "canton": null, - "numero_insee": "58225" - } - }, - { - "pk": 19545, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-AGNAN", - "center": "POINT (732608.7941246085101739 2259544.0403208085335791)", - "surface": 24230000, - "canton": null, - "numero_insee": "58226" - } - }, - { - "pk": 3674, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-AMAND-EN-PUISAYE", - "center": "POINT (655745.1870637651300058 2283412.9281907193362713)", - "surface": 41510000, - "canton": null, - "numero_insee": "58227" - } - }, - { - "pk": 17971, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-ANDELAIN", - "center": "POINT (648562.5922907751519233 2256931.1386046670377254)", - "surface": 20460000, - "canton": null, - "numero_insee": "58228" - } - }, - { - "pk": 18348, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-ANDRE-EN-MORVAN", - "center": "POINT (714625.9245968667091802 2267598.0135250128805637)", - "surface": 22890000, - "canton": null, - "numero_insee": "58229" - } - }, - { - "pk": 20626, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-AUBIN-DES-CHAUMES", - "center": "POINT (707228.9729447506833822 2266534.4822560059837997)", - "surface": 10840000, - "canton": null, - "numero_insee": "58230" - } - }, - { - "pk": 24017, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-AUBIN-LES-FORGES", - "center": "POINT (664531.4905285908607766 2238450.6046553822234273)", - "surface": 26580000, - "canton": null, - "numero_insee": "58231" - } - }, - { - "pk": 23207, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-BENIN-D'AZY", - "center": "POINT (681181.9201203999109566 2222277.6949929157271981)", - "surface": 36170000, - "canton": null, - "numero_insee": "58232" - } - }, - { - "pk": 14768, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-BENIN-DES-BOIS", - "center": "POINT (680965.9049643031321466 2235987.3169635571539402)", - "surface": 19560000, - "canton": null, - "numero_insee": "58233" - } - }, - { - "pk": 11063, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-BONNOT", - "center": "POINT (673441.0482096858322620 2250035.3373684766702354)", - "surface": 16110000, - "canton": null, - "numero_insee": "58234" - } - }, - { - "pk": 27655, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-BRISSON", - "center": "POINT (732960.8847783636301756 2253442.0574781419709325)", - "surface": 29900000, - "canton": null, - "numero_insee": "58235" - } - }, - { - "pk": 4617, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINTE-COLOMBE-DES-BOIS", - "center": "POINT (661663.0263386365259066 2258142.5529592125676572)", - "surface": 29450000, - "canton": null, - "numero_insee": "58236" - } - }, - { - "pk": 34983, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-DIDIER", - "center": "POINT (696962.0808065595338121 2261643.6092442558147013)", - "surface": 3580000, - "canton": null, - "numero_insee": "58237" - } - }, - { - "pk": 20979, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-ELOI", - "center": "POINT (667277.1417294170241803 2221459.5986271551810205)", - "surface": 16440000, - "canton": null, - "numero_insee": "58238" - } - }, - { - "pk": 22012, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-FIRMIN", - "center": "POINT (680340.6864411316346377 2227074.6092791510745883)", - "surface": 10560000, - "canton": null, - "numero_insee": "58239" - } - }, - { - "pk": 4014, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-FRANCHY", - "center": "POINT (684738.3123233593069017 2239622.2071301960386336)", - "surface": 18820000, - "canton": null, - "numero_insee": "58240" - } - }, - { - "pk": 19015, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-GERMAIN-CHASSENAY", - "center": "POINT (680983.0194900601636618 2198455.7796743265353143)", - "surface": 24140000, - "canton": null, - "numero_insee": "58241" - } - }, - { - "pk": 27369, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-GERMAIN-DES-BOIS", - "center": "POINT (689236.9118222966790199 2263880.0715177431702614)", - "surface": 12510000, - "canton": null, - "numero_insee": "58242" - } - }, - { - "pk": 21234, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-HILAIRE-EN-MORVAN", - "center": "POINT (717739.6024003725033253 2230894.3079016949050128)", - "surface": 21320000, - "canton": null, - "numero_insee": "58244" - } - }, - { - "pk": 30802, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-HILAIRE-FONTAINE", - "center": "POINT (699202.4415960095357150 2198009.4523920165374875)", - "surface": 23490000, - "canton": null, - "numero_insee": "58245" - } - }, - { - "pk": 5824, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-HONORE-LES-BAINS", - "center": "POINT (715596.5965691502206028 2212160.3786830175668001)", - "surface": 25020000, - "canton": null, - "numero_insee": "58246" - } - }, - { - "pk": 37574, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-JEAN-AUX-AMOGNES", - "center": "POINT (676366.3844030363252386 2223638.1591397020965815)", - "surface": 18260000, - "canton": null, - "numero_insee": "58247" - } - }, - { - "pk": 10295, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-LAURENT-L'ABBAYE", - "center": "POINT (649638.9378294956404716 2259842.5704477080143988)", - "surface": 1400000, - "canton": null, - "numero_insee": "58248" - } - }, - { - "pk": 20336, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-LEGER-DE-FOUGERET", - "center": "POINT (719396.8719927385682240 2224302.8423365051858127)", - "surface": 32300000, - "canton": null, - "numero_insee": "58249" - } - }, - { - "pk": 35005, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-LEGER-DES-VIGNES", - "center": "POINT (685022.7566113983048126 2205996.3688930221833289)", - "surface": 9130000, - "canton": null, - "numero_insee": "58250" - } - }, - { - "pk": 28284, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-LOUP", - "center": "POINT (650531.6579352278495207 2272660.4210484493523836)", - "surface": 17320000, - "canton": null, - "numero_insee": "58251" - } - }, - { - "pk": 18764, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-MALO-EN-DONZIOIS", - "center": "POINT (671078.4519403676968068 2257221.2536187944933772)", - "surface": 14810000, - "canton": null, - "numero_insee": "58252" - } - }, - { - "pk": 20314, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINTE-MARIE", - "center": "POINT (684175.1051314270589501 2235213.7940197689458728)", - "surface": 15620000, - "canton": null, - "numero_insee": "58253" - } - }, - { - "pk": 11541, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-MARTIN-D'HEUILLE", - "center": "POINT (668023.6609910898841918 2227871.2726752753369510)", - "surface": 13490000, - "canton": null, - "numero_insee": "58254" - } - }, - { - "pk": 36810, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-MARTIN-DU-PUY", - "center": "POINT (716290.7756374106975272 2260106.0664596236310899)", - "surface": 30770000, - "canton": null, - "numero_insee": "58255" - } - }, - { - "pk": 32320, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-MARTIN-SUR-NOHAIN", - "center": "POINT (649218.3904578830115497 2262240.9696327797137201)", - "surface": 24210000, - "canton": null, - "numero_insee": "58256" - } - }, - { - "pk": 3921, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-MAURICE", - "center": "POINT (693481.3201155159622431 2235392.6288412003777921)", - "surface": 10460000, - "canton": null, - "numero_insee": "58257" - } - }, - { - "pk": 19589, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-OUEN-SUR-LOIRE", - "center": "POINT (674868.3405513663310558 2211415.1943879765458405)", - "surface": 23960000, - "canton": null, - "numero_insee": "58258" - } - }, - { - "pk": 31379, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-PARIZE-EN-VIRY", - "center": "POINT (678707.4360763530712575 2195333.8721343963406980)", - "surface": 15760000, - "canton": null, - "numero_insee": "58259" - } - }, - { - "pk": 4741, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-PARIZE-LE-CHATEL", - "center": "POINT (664605.9591412956360728 2205923.9079515370540321)", - "surface": 49690000, - "canton": null, - "numero_insee": "58260" - } - }, - { - "pk": 7163, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-PERE", - "center": "POINT (648275.5394056196091697 2267237.0581734306178987)", - "surface": 17240000, - "canton": null, - "numero_insee": "58261" - } - }, - { - "pk": 3054, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-PEREUSE", - "center": "POINT (711743.5113383914576843 2229842.6123417816124856)", - "surface": 16400000, - "canton": null, - "numero_insee": "58262" - } - }, - { - "pk": 3853, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-PIERRE-DU-MONT", - "center": "POINT (683606.5428042639978230 2266934.9382661618292332)", - "surface": 17620000, - "canton": null, - "numero_insee": "58263" - } - }, - { - "pk": 23208, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-PIERRE-LE-MOUTIER", - "center": "POINT (661358.2868794782552868 2199390.9280618568882346)", - "surface": 47810000, - "canton": null, - "numero_insee": "58264" - } - }, - { - "pk": 27106, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-QUENTIN-SUR-NOHAIN", - "center": "POINT (651752.3083534587640315 2258459.2555470224469900)", - "surface": 16100000, - "canton": null, - "numero_insee": "58265" - } - }, - { - "pk": 18583, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-REVERIEN", - "center": "POINT (688692.2181219742633402 2245460.4472277909517288)", - "surface": 18690000, - "canton": null, - "numero_insee": "58266" - } - }, - { - "pk": 16472, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-SAULGE", - "center": "POINT (689788.6740543271880597 2234160.3749011177569628)", - "surface": 26180000, - "canton": null, - "numero_insee": "58267" - } - }, - { - "pk": 4973, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-SEINE", - "center": "POINT (713059.9972176725277677 2192622.1553411940112710)", - "surface": 17830000, - "canton": null, - "numero_insee": "58268" - } - }, - { - "pk": 15254, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-SULPICE", - "center": "POINT (677716.6994322694372386 2229654.5986254545859993)", - "surface": 25780000, - "canton": null, - "numero_insee": "58269" - } - }, - { - "pk": 19033, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAINT-VERAIN", - "center": "POINT (652500.2002984550781548 2276580.1429155822843313)", - "surface": 24980000, - "canton": null, - "numero_insee": "58270" - } - }, - { - "pk": 3190, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAIZY", - "center": "POINT (702857.9608952619601041 2262694.3645444256253541)", - "surface": 13360000, - "canton": null, - "numero_insee": "58271" - } - }, - { - "pk": 4566, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SARDY-LES-EPIRY", - "center": "POINT (702509.3717190071474761 2244776.7867438993416727)", - "surface": 15520000, - "canton": null, - "numero_insee": "58272" - } - }, - { - "pk": 16084, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAUVIGNY-LES-BOIS", - "center": "POINT (670691.5961485442239791 2220087.2611937168985605)", - "surface": 29720000, - "canton": null, - "numero_insee": "58273" - } - }, - { - "pk": 23581, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAVIGNY-POIL-FOL", - "center": "POINT (714405.9330399378668517 2199139.1723687811754644)", - "surface": 17560000, - "canton": null, - "numero_insee": "58274" - } - }, - { - "pk": 17116, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SAXI-BOURDON", - "center": "POINT (687329.9577754037454724 2229035.3163675470277667)", - "surface": 18640000, - "canton": null, - "numero_insee": "58275" - } - }, - { - "pk": 24006, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SEMELAY", - "center": "POINT (716233.5686877219704911 2207862.1225310401059687)", - "surface": 33360000, - "canton": null, - "numero_insee": "58276" - } - }, - { - "pk": 20917, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SERMAGES", - "center": "POINT (714287.0133071159943938 2224960.0793004324659705)", - "surface": 22360000, - "canton": null, - "numero_insee": "58277" - } - }, - { - "pk": 4190, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SERMOISE-SUR-LOIRE", - "center": "POINT (664415.4677261650795117 2216631.3860284034162760)", - "surface": 25070000, - "canton": null, - "numero_insee": "58278" - } - }, - { - "pk": 27159, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SICHAMPS", - "center": "POINT (671224.7241738793672994 2239908.2952028606086969)", - "surface": 5840000, - "canton": null, - "numero_insee": "58279" - } - }, - { - "pk": 19736, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SOUGY-SUR-LOIRE", - "center": "POINT (681509.0179467137204483 2207267.7597204903140664)", - "surface": 32590000, - "canton": null, - "numero_insee": "58280" - } - }, - { - "pk": 5819, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SUILLY-LA-TOUR", - "center": "POINT (655546.6824500295333564 2259492.0740655530244112)", - "surface": 37060000, - "canton": null, - "numero_insee": "58281" - } - }, - { - "pk": 3274, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "SURGY", - "center": "POINT (688000.6090039624832571 2279882.4515611678361893)", - "surface": 16310000, - "canton": null, - "numero_insee": "58282" - } - }, - { - "pk": 16630, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TACONNAY", - "center": "POINT (687088.6347738024778664 2257556.7814883962273598)", - "surface": 7950000, - "canton": null, - "numero_insee": "58283" - } - }, - { - "pk": 35952, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TALON", - "center": "POINT (692071.1668804020155221 2260100.9811574029736221)", - "surface": 6250000, - "canton": null, - "numero_insee": "58284" - } - }, - { - "pk": 21806, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TANNAY", - "center": "POINT (693947.1547670227009803 2263119.2949867132119834)", - "surface": 15450000, - "canton": null, - "numero_insee": "58286" - } - }, - { - "pk": 22496, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TAZILLY", - "center": "POINT (720432.7386419652029872 2196588.0657782321795821)", - "surface": 25800000, - "canton": null, - "numero_insee": "58287" - } - }, - { - "pk": 8382, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TEIGNY", - "center": "POINT (700526.5904120235936716 2266177.4421845013275743)", - "surface": 7410000, - "canton": null, - "numero_insee": "58288" - } - }, - { - "pk": 22901, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TERNANT", - "center": "POINT (715435.5830010914942250 2195744.9794198279269040)", - "surface": 19390000, - "canton": null, - "numero_insee": "58289" - } - }, - { - "pk": 19482, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "THAIX", - "center": "POINT (704936.6205512712476775 2206365.1444311612285674)", - "surface": 20220000, - "canton": null, - "numero_insee": "58290" - } - }, - { - "pk": 25882, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TINTURY", - "center": "POINT (695086.6827439359622076 2223095.9401642954908311)", - "surface": 23490000, - "canton": null, - "numero_insee": "58292" - } - }, - { - "pk": 22903, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TOURY-LURCY", - "center": "POINT (683026.0689251704607159 2193568.8370888675563037)", - "surface": 26010000, - "canton": null, - "numero_insee": "58293" - } - }, - { - "pk": 12677, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TOURY-SUR-JOUR", - "center": "POINT (670124.3125050233211368 2192458.9223911263979971)", - "surface": 24510000, - "canton": null, - "numero_insee": "58294" - } - }, - { - "pk": 23871, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TRACY-SUR-LOIRE", - "center": "POINT (643542.0122929939534515 2258890.4443746316246688)", - "surface": 22710000, - "canton": null, - "numero_insee": "58295" - } - }, - { - "pk": 34333, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TRESNAY", - "center": "POINT (665547.7098565509077162 2189217.5018219742923975)", - "surface": 17870000, - "canton": null, - "numero_insee": "58296" - } - }, - { - "pk": 30968, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TROIS-VEVRES", - "center": "POINT (682662.5573977017775178 2212882.2771647498011589)", - "surface": 7550000, - "canton": null, - "numero_insee": "58297" - } - }, - { - "pk": 36414, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TRONSANGES", - "center": "POINT (654148.1003253686940297 2235460.5691686063073575)", - "surface": 8750000, - "canton": null, - "numero_insee": "58298" - } - }, - { - "pk": 18933, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "TRUCY-L'ORGUEILLEUX", - "center": "POINT (680153.2719225351465866 2272910.5574935572221875)", - "surface": 13600000, - "canton": null, - "numero_insee": "58299" - } - }, - { - "pk": 37038, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "URZY", - "center": "POINT (665610.8389344578608871 2229151.9826107607223094)", - "surface": 23840000, - "canton": null, - "numero_insee": "58300" - } - }, - { - "pk": 34555, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VANDENESSE", - "center": "POINT (709780.2092640055343509 2213512.2416408308781683)", - "surface": 32940000, - "canton": null, - "numero_insee": "58301" - } - }, - { - "pk": 16014, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VARENNES-LES-NARCY", - "center": "POINT (655160.2872353808488697 2245977.7843608022667468)", - "surface": 18490000, - "canton": null, - "numero_insee": "58302" - } - }, - { - "pk": 3106, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VARENNES-VAUZELLES", - "center": "POINT (661228.5954297325806692 2226612.8942318148910999)", - "surface": 33900000, - "canton": null, - "numero_insee": "58303" - } - }, - { - "pk": 18939, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VARZY", - "center": "POINT (679341.4595769874285907 2262395.2324310620315373)", - "surface": 41340000, - "canton": null, - "numero_insee": "58304" - } - }, - { - "pk": 20004, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VAUCLAIX", - "center": "POINT (712185.2653861043509096 2248561.8501589242368937)", - "surface": 14540000, - "canton": null, - "numero_insee": "58305" - } - }, - { - "pk": 4847, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VERNEUIL", - "center": "POINT (694919.4824150875210762 2207381.2325414349325001)", - "surface": 26920000, - "canton": null, - "numero_insee": "58306" - } - }, - { - "pk": 29059, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VIELMANAY", - "center": "POINT (658501.1902849525213242 2253311.9555943147279322)", - "surface": 21470000, - "canton": null, - "numero_insee": "58307" - } - }, - { - "pk": 6527, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VIGNOL", - "center": "POINT (700054.1985186056699604 2262870.7720452756620944)", - "surface": 9120000, - "canton": null, - "numero_insee": "58308" - } - }, - { - "pk": 19847, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VILLAPOURCON", - "center": "POINT (723266.0529329583514482 2216529.1042817314155400)", - "surface": 50900000, - "canton": null, - "numero_insee": "58309" - } - }, - { - "pk": 14342, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VILLIERS-LE-SEC", - "center": "POINT (683125.6434650239534676 2264629.0138680986128747)", - "surface": 1390000, - "canton": null, - "numero_insee": "58310" - } - }, - { - "pk": 4873, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VILLE-LANGY", - "center": "POINT (688641.8116589349228889 2215935.4006476039066911)", - "surface": 27220000, - "canton": null, - "numero_insee": "58311" - } - }, - { - "pk": 20977, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VILLIERS-SUR-YONNE", - "center": "POINT (691396.1794688929803669 2268902.3817230872809887)", - "surface": 15840000, - "canton": null, - "numero_insee": "58312" - } - }, - { - "pk": 22029, - "model": "ishtar_common.town", - "fields": { - "departement": 59, - "name": "VITRY-LACHE", - "center": "POINT (693306.6887338501401246 2244198.4335471522063017)", - "surface": 22400000, - "canton": null, - "numero_insee": "58313" - } - }, - { - "pk": 34184, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ABANCOURT", - "center": "POINT (662225.3702823683852330 2582669.2964887679554522)", - "surface": 5710000, - "canton": null, - "numero_insee": "59001" - } - }, - { - "pk": 28948, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ABSCON", - "center": "POINT (668542.2313067048089579 2592928.2598329586908221)", - "surface": 7300000, - "canton": null, - "numero_insee": "59002" - } - }, - { - "pk": 31907, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AIBES", - "center": "POINT (725754.2954848033841699 2583407.5176349012181163)", - "surface": 9280000, - "canton": null, - "numero_insee": "59003" - } - }, - { - "pk": 29184, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AIX", - "center": "POINT (668781.7987848090706393 2611940.4979627090506256)", - "surface": 6510000, - "canton": null, - "numero_insee": "59004" - } - }, - { - "pk": 5401, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ALLENNES-LES-MARAIS", - "center": "POINT (643430.5679999445565045 2616429.0283526922576129)", - "surface": 5640000, - "canton": null, - "numero_insee": "59005" - } - }, - { - "pk": 10448, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AMFROIPRET", - "center": "POINT (699902.8525080579565838 2587790.6872353386133909)", - "surface": 1560000, - "canton": null, - "numero_insee": "59006" - } - }, - { - "pk": 26223, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ANHIERS", - "center": "POINT (658165.5667309691198170 2601345.2318593105301261)", - "surface": 1670000, - "canton": null, - "numero_insee": "59007" - } - }, - { - "pk": 31455, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ANICHE", - "center": "POINT (665538.2741027796873823 2593203.0451570306904614)", - "surface": 6550000, - "canton": null, - "numero_insee": "59008" - } - }, - { - "pk": 15008, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLENEUVE-D'ASCQ", - "center": "POINT (657851.0219264336628839 2626755.9834961406886578)", - "surface": 27550000, - "canton": null, - "numero_insee": "59009" - } - }, - { - "pk": 29295, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ANNEUX", - "center": "POINT (656397.6711420395877212 2573715.1395237101241946)", - "surface": 5410000, - "canton": null, - "numero_insee": "59010" - } - }, - { - "pk": 32892, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ANNOEULLIN", - "center": "POINT (641944.2197943649953231 2614715.6060628192499280)", - "surface": 8940000, - "canton": null, - "numero_insee": "59011" - } - }, - { - "pk": 35452, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ANSTAING", - "center": "POINT (660480.0562703061150387 2623476.4662049352191389)", - "surface": 2290000, - "canton": null, - "numero_insee": "59013" - } - }, - { - "pk": 7942, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ANZIN", - "center": "POINT (683704.5649941657902673 2598359.3485426614060998)", - "surface": 3640000, - "canton": null, - "numero_insee": "59014" - } - }, - { - "pk": 25396, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ARLEUX", - "center": "POINT (655379.8764283505734056 2587614.2689738487824798)", - "surface": 11140000, - "canton": null, - "numero_insee": "59015" - } - }, - { - "pk": 29732, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ARMBOUTS-CAPPEL", - "center": "POINT (600797.3771564068738371 2665395.3290317654609680)", - "surface": 10190000, - "canton": null, - "numero_insee": "59016" - } - }, - { - "pk": 11077, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ARMENTIERES", - "center": "POINT (638387.5817553056403995 2633095.1945525263436139)", - "surface": 6230000, - "canton": null, - "numero_insee": "59017" - } - }, - { - "pk": 26734, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ARNEKE", - "center": "POINT (605731.2647782373242080 2649729.0412026005797088)", - "surface": 13510000, - "canton": null, - "numero_insee": "59018" - } - }, - { - "pk": 27653, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ARTRES", - "center": "POINT (685780.0195947125321254 2589572.1183694666251540)", - "surface": 6520000, - "canton": null, - "numero_insee": "59019" - } - }, - { - "pk": 10738, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ASSEVENT", - "center": "POINT (720100.6201744248392060 2589362.8056777645833790)", - "surface": 1870000, - "canton": null, - "numero_insee": "59021" - } - }, - { - "pk": 35579, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ATTICHES", - "center": "POINT (651560.4122358298627660 2613395.9481566040776670)", - "surface": 6800000, - "canton": null, - "numero_insee": "59022" - } - }, - { - "pk": 35841, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUBENCHEUL-AU-BAC", - "center": "POINT (658909.4208813627483323 2584342.2404875559732318)", - "surface": 3200000, - "canton": null, - "numero_insee": "59023" - } - }, - { - "pk": 8932, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUBERCHICOURT", - "center": "POINT (663538.1715811818139628 2593086.0973410727456212)", - "surface": 7030000, - "canton": null, - "numero_insee": "59024" - } - }, - { - "pk": 33624, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUBERS", - "center": "POINT (634275.0370289559941739 2622455.0822651525959373)", - "surface": 10080000, - "canton": null, - "numero_insee": "59025" - } - }, - { - "pk": 29185, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUBIGNY-AU-BAC", - "center": "POINT (659396.9924014449352399 2585847.1839904305525124)", - "surface": 5190000, - "canton": null, - "numero_insee": "59026" - } - }, - { - "pk": 8167, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUBRY-DU-HAINAUT", - "center": "POINT (679501.7466967100044712 2598423.8454989790916443)", - "surface": 4280000, - "canton": null, - "numero_insee": "59027" - } - }, - { - "pk": 10228, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUBY", - "center": "POINT (651554.0447728531435132 2602289.9796534976921976)", - "surface": 7170000, - "canton": null, - "numero_insee": "59028" - } - }, - { - "pk": 10993, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUCHY-LEZ-ORCHIES", - "center": "POINT (660995.9633767630439252 2609773.6195383407175541)", - "surface": 7820000, - "canton": null, - "numero_insee": "59029" - } - }, - { - "pk": 12556, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AUDIGNIES", - "center": "POINT (706205.0174088568892330 2587944.1709360573440790)", - "surface": 3580000, - "canton": null, - "numero_insee": "59031" - } - }, - { - "pk": 11374, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AULNOY-LEZ-VALENCIENNES", - "center": "POINT (685651.1820736337685958 2592972.8879278437234461)", - "surface": 6070000, - "canton": null, - "numero_insee": "59032" - } - }, - { - "pk": 27671, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AVELIN", - "center": "POINT (653236.7105848601786420 2616311.6185746891424060)", - "surface": 13920000, - "canton": null, - "numero_insee": "59034" - } - }, - { - "pk": 34643, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AVESNELLES", - "center": "POINT (715671.6642892486415803 2568913.8275755406357348)", - "surface": 12750000, - "canton": null, - "numero_insee": "59035" - } - }, - { - "pk": 3418, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AVESNES-SUR-HELPE", - "center": "POINT (713853.7939867511158809 2570899.5293707107193768)", - "surface": 2320000, - "canton": null, - "numero_insee": "59036" - } - }, - { - "pk": 6753, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AVESNES-LES-AUBERT", - "center": "POINT (674373.4980428188573569 2577769.1591961183585227)", - "surface": 9100000, - "canton": null, - "numero_insee": "59037" - } - }, - { - "pk": 25994, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AVESNES-LE-SEC", - "center": "POINT (673920.0184993740404025 2584068.8242795285768807)", - "surface": 10610000, - "canton": null, - "numero_insee": "59038" - } - }, - { - "pk": 35481, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "AWOINGT", - "center": "POINT (667906.6838288051076233 2573412.0983134056441486)", - "surface": 6300000, - "canton": null, - "numero_insee": "59039" - } - }, - { - "pk": 32054, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BACHANT", - "center": "POINT (709972.9894868690753356 2580171.8137805317528546)", - "surface": 9500000, - "canton": null, - "numero_insee": "59041" - } - }, - { - "pk": 35309, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BACHY", - "center": "POINT (666138.3493183474056423 2616920.8022471284493804)", - "surface": 6440000, - "canton": null, - "numero_insee": "59042" - } - }, - { - "pk": 15660, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAILLEUL", - "center": "POINT (628348.6502831428078935 2637112.7509150127880275)", - "surface": 43740000, - "canton": null, - "numero_insee": "59043" - } - }, - { - "pk": 36437, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAISIEUX", - "center": "POINT (664174.1115750665776432 2624408.1289098635315895)", - "surface": 8680000, - "canton": null, - "numero_insee": "59044" - } - }, - { - "pk": 9802, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAIVES", - "center": "POINT (733814.6324261813424528 2565065.6862636688165367)", - "surface": 7970000, - "canton": null, - "numero_insee": "59045" - } - }, - { - "pk": 4354, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAMBECQUE", - "center": "POINT (615773.3461109389318153 2657217.0747833177447319)", - "surface": 11850000, - "canton": null, - "numero_insee": "59046" - } - }, - { - "pk": 32330, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BANTEUX", - "center": "POINT (660986.0367575808195397 2563548.1058349735103548)", - "surface": 6170000, - "canton": null, - "numero_insee": "59047" - } - }, - { - "pk": 13424, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BANTIGNY", - "center": "POINT (664228.8700237964512780 2582386.0499903620220721)", - "surface": 3170000, - "canton": null, - "numero_insee": "59048" - } - }, - { - "pk": 22900, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BANTOUZELLE", - "center": "POINT (663694.1411073764320463 2562770.5177479442209005)", - "surface": 7720000, - "canton": null, - "numero_insee": "59049" - } - }, - { - "pk": 28894, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAS-LIEU", - "center": "POINT (715535.0992218598257750 2573215.0947378748096526)", - "surface": 7600000, - "canton": null, - "numero_insee": "59050" - } - }, - { - "pk": 27784, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA BASSEE", - "center": "POINT (633527.7521995786810294 2616145.4932156233116984)", - "surface": 3550000, - "canton": null, - "numero_insee": "59051" - } - }, - { - "pk": 8616, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAUVIN", - "center": "POINT (639552.3979433847125620 2613594.8705310369841754)", - "surface": 3890000, - "canton": null, - "numero_insee": "59052" - } - }, - { - "pk": 26012, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAVAY", - "center": "POINT (704589.8308734140591696 2589631.4086554897949100)", - "surface": 10400000, - "canton": null, - "numero_insee": "59053" - } - }, - { - "pk": 8687, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAVINCHOVE", - "center": "POINT (607394.1286765398690477 2642339.3009120896458626)", - "surface": 8420000, - "canton": null, - "numero_insee": "59054" - } - }, - { - "pk": 8689, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BAZUEL", - "center": "POINT (690183.6358301845612004 2565796.1098276036791503)", - "surface": 11890000, - "canton": null, - "numero_insee": "59055" - } - }, - { - "pk": 11197, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAUCAMPS-LIGNY", - "center": "POINT (640968.7753775246674195 2623612.0437814882025123)", - "surface": 5050000, - "canton": null, - "numero_insee": "59056" - } - }, - { - "pk": 30046, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAUDIGNIES", - "center": "POINT (689244.3222549142083153 2582197.3625678950920701)", - "surface": 7870000, - "canton": null, - "numero_insee": "59057" - } - }, - { - "pk": 36010, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAUFORT", - "center": "POINT (716465.9482583035714924 2581427.5809839512221515)", - "surface": 12870000, - "canton": null, - "numero_insee": "59058" - } - }, - { - "pk": 27054, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAUMONT-EN-CAMBRESIS", - "center": "POINT (679837.0563001260161400 2570611.3223007200285792)", - "surface": 3370000, - "canton": null, - "numero_insee": "59059" - } - }, - { - "pk": 12725, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAURAIN", - "center": "POINT (686791.3853204707847908 2576473.4231626079417765)", - "surface": 1000000, - "canton": null, - "numero_insee": "59060" - } - }, - { - "pk": 27476, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAUREPAIRE-SUR-SAMBRE", - "center": "POINT (704610.2933806035434827 2563617.0362962144427001)", - "surface": 7890000, - "canton": null, - "numero_insee": "59061" - } - }, - { - "pk": 6299, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAURIEUX", - "center": "POINT (728808.4602246758295223 2577230.0176915689371526)", - "surface": 7430000, - "canton": null, - "numero_insee": "59062" - } - }, - { - "pk": 29937, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEAUVOIS-EN-CAMBRESIS", - "center": "POINT (675022.0049414285458624 2572071.4482331085018814)", - "surface": 3540000, - "canton": null, - "numero_insee": "59063" - } - }, - { - "pk": 29603, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BELLAING", - "center": "POINT (677611.0079067770857364 2597207.2041613357141614)", - "surface": 3390000, - "canton": null, - "numero_insee": "59064" - } - }, - { - "pk": 3835, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BELLIGNIES", - "center": "POINT (701661.3095980912912637 2592808.3326477347873151)", - "surface": 5270000, - "canton": null, - "numero_insee": "59065" - } - }, - { - "pk": 33921, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERELLES", - "center": "POINT (726373.2869476669002324 2581211.5553734381683171)", - "surface": 5720000, - "canton": null, - "numero_insee": "59066" - } - }, - { - "pk": 11076, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERGUES", - "center": "POINT (606712.4234089424135163 2663944.2647170731797814)", - "surface": 1370000, - "canton": null, - "numero_insee": "59067" - } - }, - { - "pk": 27289, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERLAIMONT", - "center": "POINT (704172.7233976447023451 2579822.4545876970514655)", - "surface": 13170000, - "canton": null, - "numero_insee": "59068" - } - }, - { - "pk": 4111, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERMERAIN", - "center": "POINT (685916.4787086870055646 2585270.9073471962474287)", - "surface": 6580000, - "canton": null, - "numero_insee": "59069" - } - }, - { - "pk": 9836, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERSEE", - "center": "POINT (657894.5371607620036229 2609747.4368341127410531)", - "surface": 11260000, - "canton": null, - "numero_insee": "59071" - } - }, - { - "pk": 10174, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERSILLIES", - "center": "POINT (718265.7835081947268918 2593349.4165421426296234)", - "surface": 2870000, - "canton": null, - "numero_insee": "59072" - } - }, - { - "pk": 30201, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERTHEN", - "center": "POINT (624799.9820782906608656 2642685.7223780504427850)", - "surface": 5160000, - "canton": null, - "numero_insee": "59073" - } - }, - { - "pk": 6646, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BERTRY", - "center": "POINT (679078.1266753240488470 2565702.1300704544410110)", - "surface": 8560000, - "canton": null, - "numero_insee": "59074" - } - }, - { - "pk": 8561, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BETHENCOURT", - "center": "POINT (677820.8416943319607526 2572395.2833612510003150)", - "surface": 5160000, - "canton": null, - "numero_insee": "59075" - } - }, - { - "pk": 12425, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BETTIGNIES", - "center": "POINT (716358.0888381304685026 2594133.6574408211745322)", - "surface": 4630000, - "canton": null, - "numero_insee": "59076" - } - }, - { - "pk": 13263, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BETTRECHIES", - "center": "POINT (700061.3988327378174290 2592694.7170408689416945)", - "surface": 3280000, - "canton": null, - "numero_insee": "59077" - } - }, - { - "pk": 30997, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEUGNIES", - "center": "POINT (718618.7808684705523774 2575342.4520174041390419)", - "surface": 8940000, - "canton": null, - "numero_insee": "59078" - } - }, - { - "pk": 7810, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEUVRAGES", - "center": "POINT (683291.6786569298710674 2599856.6655952632427216)", - "surface": 3020000, - "canton": null, - "numero_insee": "59079" - } - }, - { - "pk": 17435, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEUVRY-LA-FORET", - "center": "POINT (667326.7549729079473764 2606525.3313739607110620)", - "surface": 12610000, - "canton": null, - "numero_insee": "59080" - } - }, - { - "pk": 3637, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BEVILLERS", - "center": "POINT (675405.2831524889916182 2574075.8124191830866039)", - "surface": 4800000, - "canton": null, - "numero_insee": "59081" - } - }, - { - "pk": 33226, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BIERNE", - "center": "POINT (604609.0311511111212894 2664226.7467204621061683)", - "surface": 11170000, - "canton": null, - "numero_insee": "59082" - } - }, - { - "pk": 12538, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BISSEZEELE", - "center": "POINT (604863.7177718811435625 2657725.7110916338860989)", - "surface": 3610000, - "canton": null, - "numero_insee": "59083" - } - }, - { - "pk": 17252, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BLARINGHEM", - "center": "POINT (605172.1013298055622727 2632915.8667188365943730)", - "surface": 18360000, - "canton": null, - "numero_insee": "59084" - } - }, - { - "pk": 28946, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BLECOURT", - "center": "POINT (662644.1502471108688042 2580471.6126071303151548)", - "surface": 3580000, - "canton": null, - "numero_insee": "59085" - } - }, - { - "pk": 33838, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOESCHEPE", - "center": "POINT (625580.9671441116370261 2644993.4499056912027299)", - "surface": 13750000, - "canton": null, - "numero_insee": "59086" - } - }, - { - "pk": 3534, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOESEGHEM", - "center": "POINT (607493.2829687056364492 2630534.1303185936994851)", - "surface": 7110000, - "canton": null, - "numero_insee": "59087" - } - }, - { - "pk": 7520, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOIS-GRENIER", - "center": "POINT (637926.9738741300534457 2628388.8993996512144804)", - "surface": 7470000, - "canton": null, - "numero_insee": "59088" - } - }, - { - "pk": 18419, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOLLEZEELE", - "center": "POINT (600306.2864480977877975 2652384.8363639605231583)", - "surface": 17640000, - "canton": null, - "numero_insee": "59089" - } - }, - { - "pk": 34453, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BONDUES", - "center": "POINT (653676.5980815116781741 2635325.1725907372310758)", - "surface": 13050000, - "canton": null, - "numero_insee": "59090" - } - }, - { - "pk": 9710, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BORRE", - "center": "POINT (617239.5879302809480578 2637519.5560322534292936)", - "surface": 5990000, - "canton": null, - "numero_insee": "59091" - } - }, - { - "pk": 22505, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUCHAIN", - "center": "POINT (669587.5133207110920921 2587634.1901592281647027)", - "surface": 12520000, - "canton": null, - "numero_insee": "59092" - } - }, - { - "pk": 5558, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOULOGNE-SUR-HELPE", - "center": "POINT (711495.0557759752264246 2565876.6825086930766702)", - "surface": 8680000, - "canton": null, - "numero_insee": "59093" - } - }, - { - "pk": 35575, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOURBOURG", - "center": "POINT (590629.2234972063452005 2661007.9322039866819978)", - "surface": 38640000, - "canton": null, - "numero_insee": "59094" - } - }, - { - "pk": 30196, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOURGHELLES", - "center": "POINT (664619.0773597259540111 2619109.1230336269363761)", - "surface": 6560000, - "canton": null, - "numero_insee": "59096" - } - }, - { - "pk": 8067, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOURSIES", - "center": "POINT (650610.0203472641296685 2571865.2979635195806623)", - "surface": 7630000, - "canton": null, - "numero_insee": "59097" - } - }, - { - "pk": 10813, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUSBECQUE", - "center": "POINT (652225.3431317060021684 2641315.9743537465110421)", - "surface": 6460000, - "canton": null, - "numero_insee": "59098" - } - }, - { - "pk": 11807, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUSIES", - "center": "POINT (691519.0936863650567830 2573511.7676729522645473)", - "surface": 9820000, - "canton": null, - "numero_insee": "59099" - } - }, - { - "pk": 21603, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUSIGNIES", - "center": "POINT (672447.7197736552916467 2604367.4300117800012231)", - "surface": 3180000, - "canton": null, - "numero_insee": "59100" - } - }, - { - "pk": 29987, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUSIGNIES-SUR-ROC", - "center": "POINT (732128.4615395115688443 2586863.5723110521212220)", - "surface": 12260000, - "canton": null, - "numero_insee": "59101" - } - }, - { - "pk": 5568, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUSSIERES-EN-CAMBRESIS", - "center": "POINT (674099.5720217314083129 2574665.1098130140453577)", - "surface": 4840000, - "canton": null, - "numero_insee": "59102" - } - }, - { - "pk": 22499, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUSSIERES-SUR-SAMBRE", - "center": "POINT (710141.6819998788414523 2583875.2989192795939744)", - "surface": 3300000, - "canton": null, - "numero_insee": "59103" - } - }, - { - "pk": 28959, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUSSOIS", - "center": "POINT (722095.6262382861459628 2590080.1329907444305718)", - "surface": 6300000, - "canton": null, - "numero_insee": "59104" - } - }, - { - "pk": 9717, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUVIGNIES", - "center": "POINT (664042.1275087785907090 2604496.5152813256718218)", - "surface": 8760000, - "canton": null, - "numero_insee": "59105" - } - }, - { - "pk": 25710, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BOUVINES", - "center": "POINT (660799.6193403446814045 2621177.9659993681125343)", - "surface": 2730000, - "canton": null, - "numero_insee": "59106" - } - }, - { - "pk": 11158, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BRAY-DUNES", - "center": "POINT (613417.7179022412747145 2675606.1786555089056492)", - "surface": 8450000, - "canton": null, - "numero_insee": "59107" - } - }, - { - "pk": 37464, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BRIASTRE", - "center": "POINT (682311.1997851433698088 2573834.0529482937417924)", - "surface": 6970000, - "canton": null, - "numero_insee": "59108" - } - }, - { - "pk": 11515, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BRILLON", - "center": "POINT (671043.6871753138257191 2604755.7771220984868705)", - "surface": 2870000, - "canton": null, - "numero_insee": "59109" - } - }, - { - "pk": 35662, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BROUCKERQUE", - "center": "POINT (596424.0927504047285765 2661956.9764657854102552)", - "surface": 12000000, - "canton": null, - "numero_insee": "59110" - } - }, - { - "pk": 7402, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BROXEELE", - "center": "POINT (598840.9106405371567234 2648170.4496158380061388)", - "surface": 3780000, - "canton": null, - "numero_insee": "59111" - } - }, - { - "pk": 32103, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BRUAY-SUR-L'ESCAUT", - "center": "POINT (685584.2881435150047764 2600876.6067348071373999)", - "surface": 6670000, - "canton": null, - "numero_insee": "59112" - } - }, - { - "pk": 31043, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BRUILLE-LEZ-MARCHIENNES", - "center": "POINT (664614.1869284387212247 2595996.7628200822509825)", - "surface": 4340000, - "canton": null, - "numero_insee": "59113" - } - }, - { - "pk": 11805, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BRUILLE-SAINT-AMAND", - "center": "POINT (683119.6743423484731466 2608359.7698702029883862)", - "surface": 7930000, - "canton": null, - "numero_insee": "59114" - } - }, - { - "pk": 28308, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BRUNEMONT", - "center": "POINT (657687.7321999400155619 2586833.3063964215107262)", - "surface": 2070000, - "canton": null, - "numero_insee": "59115" - } - }, - { - "pk": 34179, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BUGNICOURT", - "center": "POINT (658372.8662025574594736 2588640.0786219057627022)", - "surface": 6260000, - "canton": null, - "numero_insee": "59117" - } - }, - { - "pk": 25407, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BUSIGNY", - "center": "POINT (681021.3880225090542808 2560715.7175431898795068)", - "surface": 16500000, - "canton": null, - "numero_insee": "59118" - } - }, - { - "pk": 4290, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "BUYSSCHEURE", - "center": "POINT (599860.6511164249386638 2645877.8579630744643509)", - "surface": 6220000, - "canton": null, - "numero_insee": "59119" - } - }, - { - "pk": 26733, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAESTRE", - "center": "POINT (618916.7763855294324458 2640335.0768900536932051)", - "surface": 10240000, - "canton": null, - "numero_insee": "59120" - } - }, - { - "pk": 34177, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAGNONCLES", - "center": "POINT (670177.3733791405102238 2577033.3009606190025806)", - "surface": 6180000, - "canton": null, - "numero_insee": "59121" - } - }, - { - "pk": 23977, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAMBRAI", - "center": "POINT (664789.1090542277088389 2575286.8276543784886599)", - "surface": 18210000, - "canton": null, - "numero_insee": "59122" - } - }, - { - "pk": 35508, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAMPHIN-EN-CAREMBAULT", - "center": "POINT (646560.6574134388938546 2613053.6237067738547921)", - "surface": 7460000, - "canton": null, - "numero_insee": "59123" - } - }, - { - "pk": 35244, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAMPHIN-EN-PEVELE", - "center": "POINT (665292.3511640245560557 2622316.4817848792299628)", - "surface": 6520000, - "canton": null, - "numero_insee": "59124" - } - }, - { - "pk": 24770, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CANTAING-SUR-ESCAUT", - "center": "POINT (658709.7765427604317665 2572433.9244359321892262)", - "surface": 6470000, - "canton": null, - "numero_insee": "59125" - } - }, - { - "pk": 14283, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CANTIN", - "center": "POINT (656154.0847622250439599 2590722.5022510769777000)", - "surface": 9310000, - "canton": null, - "numero_insee": "59126" - } - }, - { - "pk": 9522, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAPINGHEM", - "center": "POINT (644531.5953476867871359 2628244.4547362392768264)", - "surface": 1840000, - "canton": null, - "numero_insee": "59128" - } - }, - { - "pk": 20291, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAPPELLE-EN-PEVELE", - "center": "POINT (659472.4689008108107373 2612462.1887224786914885)", - "surface": 8130000, - "canton": null, - "numero_insee": "59129" - } - }, - { - "pk": 26173, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAPPELLE-BROUCK", - "center": "POINT (591875.8686355384998024 2655515.6883144960738719)", - "surface": 17760000, - "canton": null, - "numero_insee": "59130" - } - }, - { - "pk": 27391, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAPPELLE-LA-GRANDE", - "center": "POINT (602284.5609125216724351 2667008.5872370731085539)", - "surface": 5480000, - "canton": null, - "numero_insee": "59131" - } - }, - { - "pk": 30396, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CARNIERES", - "center": "POINT (672197.7973115936620161 2574749.0899124485440552)", - "surface": 8150000, - "canton": null, - "numero_insee": "59132" - } - }, - { - "pk": 12547, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CARNIN", - "center": "POINT (644251.1719855284318328 2614034.6814744290895760)", - "surface": 2340000, - "canton": null, - "numero_insee": "59133" - } - }, - { - "pk": 4736, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CARTIGNIES", - "center": "POINT (707894.9659646778600290 2565646.0293890759348869)", - "surface": 26620000, - "canton": null, - "numero_insee": "59134" - } - }, - { - "pk": 37329, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CASSEL", - "center": "POINT (611076.3981521311216056 2644671.3912854702211916)", - "surface": 13150000, - "canton": null, - "numero_insee": "59135" - } - }, - { - "pk": 32193, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LE CATEAU-CAMBRESIS", - "center": "POINT (686172.3358833761885762 2566862.7770827421918511)", - "surface": 27310000, - "canton": null, - "numero_insee": "59136" - } - }, - { - "pk": 6698, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CATILLON-SUR-SAMBRE", - "center": "POINT (693796.4389073289930820 2564525.9655274553224444)", - "surface": 13370000, - "canton": null, - "numero_insee": "59137" - } - }, - { - "pk": 13558, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CATTENIERES", - "center": "POINT (671527.0507823285879567 2571241.4543150700628757)", - "surface": 5380000, - "canton": null, - "numero_insee": "59138" - } - }, - { - "pk": 29271, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAUDRY", - "center": "POINT (677543.5387257516849786 2569691.4167383257299662)", - "surface": 13010000, - "canton": null, - "numero_insee": "59139" - } - }, - { - "pk": 22659, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAULLERY", - "center": "POINT (674276.5900258824694902 2565561.4718068656511605)", - "surface": 2510000, - "canton": null, - "numero_insee": "59140" - } - }, - { - "pk": 24168, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CAUROIR", - "center": "POINT (668789.3720652366755530 2575520.7335083433426917)", - "surface": 5670000, - "canton": null, - "numero_insee": "59141" - } - }, - { - "pk": 23511, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CERFONTAINE", - "center": "POINT (720528.8486383004346862 2586064.6248844233341515)", - "surface": 3860000, - "canton": null, - "numero_insee": "59142" - } - }, - { - "pk": 32240, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA CHAPELLE-D'ARMENTIERES", - "center": "POINT (639611.7135573582490906 2630304.0719810738228261)", - "surface": 10740000, - "canton": null, - "numero_insee": "59143" - } - }, - { - "pk": 8165, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CHATEAU-L'ABBAYE", - "center": "POINT (680899.1928901220671833 2610642.2064216695725918)", - "surface": 4420000, - "canton": null, - "numero_insee": "59144" - } - }, - { - "pk": 11758, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CHEMY", - "center": "POINT (646741.3471265365369618 2615356.3605732438154519)", - "surface": 3460000, - "canton": null, - "numero_insee": "59145" - } - }, - { - "pk": 30965, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CHERENG", - "center": "POINT (661873.0812412594677880 2624388.6962038292549551)", - "surface": 4190000, - "canton": null, - "numero_insee": "59146" - } - }, - { - "pk": 31408, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CHOISIES", - "center": "POINT (722373.0507680247537792 2580977.4611832462251186)", - "surface": 2510000, - "canton": null, - "numero_insee": "59147" - } - }, - { - "pk": 32270, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CLAIRFAYTS", - "center": "POINT (727928.4270107666961849 2574821.1936186593957245)", - "surface": 7650000, - "canton": null, - "numero_insee": "59148" - } - }, - { - "pk": 28698, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CLARY", - "center": "POINT (675890.0735393912764266 2564074.2603186490014195)", - "surface": 9980000, - "canton": null, - "numero_insee": "59149" - } - }, - { - "pk": 6250, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COBRIEUX", - "center": "POINT (664141.6659444663673639 2616403.6735627986490726)", - "surface": 2840000, - "canton": null, - "numero_insee": "59150" - } - }, - { - "pk": 20779, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COLLERET", - "center": "POINT (724829.2122427064459771 2586301.2622690466232598)", - "surface": 18950000, - "canton": null, - "numero_insee": "59151" - } - }, - { - "pk": 31801, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COMINES", - "center": "POINT (648037.0190171694848686 2639679.8379981014877558)", - "surface": 16060000, - "canton": null, - "numero_insee": "59152" - } - }, - { - "pk": 30059, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CONDE-SUR-L'ESCAUT", - "center": "POINT (690219.5607771555660293 2608820.0806992333382368)", - "surface": 18490000, - "canton": null, - "numero_insee": "59153" - } - }, - { - "pk": 34088, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COUDEKERQUE-VILLAGE", - "center": "POINT (605987.7683735419996083 2666839.5843893368728459)", - "surface": 12030000, - "canton": null, - "numero_insee": "59154" - } - }, - { - "pk": 5968, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COUDEKERQUE-BRANCHE", - "center": "POINT (604165.1852854446042329 2669425.5338978688232601)", - "surface": 9210000, - "canton": null, - "numero_insee": "59155" - } - }, - { - "pk": 7330, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COURCHELETTES", - "center": "POINT (651521.5139278949936852 2594285.3792915856465697)", - "surface": 1650000, - "canton": null, - "numero_insee": "59156" - } - }, - { - "pk": 26549, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COUSOLRE", - "center": "POINT (729752.8224995074560866 2583841.7190227499231696)", - "surface": 21000000, - "canton": null, - "numero_insee": "59157" - } - }, - { - "pk": 16586, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "COUTICHES", - "center": "POINT (660923.7932692137546837 2606471.2520542228594422)", - "surface": 16360000, - "canton": null, - "numero_insee": "59158" - } - }, - { - "pk": 22906, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CRAYWICK", - "center": "POINT (591802.0389716392382979 2664319.3737316150218248)", - "surface": 7760000, - "canton": null, - "numero_insee": "59159" - } - }, - { - "pk": 31042, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CRESPIN", - "center": "POINT (693664.3465915054548532 2603746.5268072905018926)", - "surface": 9970000, - "canton": null, - "numero_insee": "59160" - } - }, - { - "pk": 24474, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CREVECOEUR-SUR-L'ESCAUT", - "center": "POINT (666782.1638229758245870 2564397.5119922035373747)", - "surface": 19050000, - "canton": null, - "numero_insee": "59161" - } - }, - { - "pk": 30536, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CROCHTE", - "center": "POINT (604153.3434111101087183 2658920.3348992457613349)", - "surface": 7880000, - "canton": null, - "numero_insee": "59162" - } - }, - { - "pk": 23293, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CROIX", - "center": "POINT (657912.2204982569674030 2631358.8709588735364377)", - "surface": 4470000, - "canton": null, - "numero_insee": "59163" - } - }, - { - "pk": 31248, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CROIX-CALUYAU", - "center": "POINT (689317.1686549691949040 2573593.1795383929274976)", - "surface": 4000000, - "canton": null, - "numero_insee": "59164" - } - }, - { - "pk": 32991, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CUINCY", - "center": "POINT (649690.2860003574751318 2597871.8864860874600708)", - "surface": 7020000, - "canton": null, - "numero_insee": "59165" - } - }, - { - "pk": 23244, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CURGIES", - "center": "POINT (690554.3516650799429044 2592914.3416335121728480)", - "surface": 6070000, - "canton": null, - "numero_insee": "59166" - } - }, - { - "pk": 26850, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CUVILLERS", - "center": "POINT (664440.7967159943655133 2580987.0635008933022618)", - "surface": 2860000, - "canton": null, - "numero_insee": "59167" - } - }, - { - "pk": 3414, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "CYSOING", - "center": "POINT (662217.9917045759502798 2619088.8446563575416803)", - "surface": 13650000, - "canton": null, - "numero_insee": "59168" - } - }, - { - "pk": 34810, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DAMOUSIES", - "center": "POINT (719465.7001966958632693 2581653.1599699496291578)", - "surface": 5030000, - "canton": null, - "numero_insee": "59169" - } - }, - { - "pk": 26222, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DECHY", - "center": "POINT (656517.1230876266490668 2595127.9650880102999508)", - "surface": 9340000, - "canton": null, - "numero_insee": "59170" - } - }, - { - "pk": 31001, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DEHERIES", - "center": "POINT (672205.1450717030093074 2562041.9688175106421113)", - "surface": 1910000, - "canton": null, - "numero_insee": "59171" - } - }, - { - "pk": 13044, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DENAIN", - "center": "POINT (675043.6201426851330325 2593183.3198424717411399)", - "surface": 11600000, - "canton": null, - "numero_insee": "59172" - } - }, - { - "pk": 32237, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DEULEMONT", - "center": "POINT (644755.8237013993784785 2637250.9545760992914438)", - "surface": 9960000, - "canton": null, - "numero_insee": "59173" - } - }, - { - "pk": 16723, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DIMECHAUX", - "center": "POINT (722288.2980725412489846 2579175.7386937192641199)", - "surface": 4840000, - "canton": null, - "numero_insee": "59174" - } - }, - { - "pk": 14899, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DIMONT", - "center": "POINT (720500.1682596324244514 2577659.7150207525119185)", - "surface": 7530000, - "canton": null, - "numero_insee": "59175" - } - }, - { - "pk": 30325, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DOIGNIES", - "center": "POINT (648417.3765435277018696 2570846.2429511500522494)", - "surface": 7380000, - "canton": null, - "numero_insee": "59176" - } - }, - { - "pk": 35104, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DOMPIERRE-SUR-HELPE", - "center": "POINT (709034.4576805442338809 2572859.7667802921496332)", - "surface": 13380000, - "canton": null, - "numero_insee": "59177" - } - }, - { - "pk": 21966, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DOUAI", - "center": "POINT (653784.6152009575162083 2598806.9117234782315791)", - "surface": 16920000, - "canton": null, - "numero_insee": "59178" - } - }, - { - "pk": 37210, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DOUCHY-LES-MINES", - "center": "POINT (675072.3803124211262912 2589781.7042347327806056)", - "surface": 9250000, - "canton": null, - "numero_insee": "59179" - } - }, - { - "pk": 9017, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LE DOULIEU", - "center": "POINT (625692.0846130391582847 2631787.6886748364195228)", - "surface": 11870000, - "canton": null, - "numero_insee": "59180" - } - }, - { - "pk": 29547, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DOURLERS", - "center": "POINT (715106.8804687631782144 2576513.3118933979421854)", - "surface": 8740000, - "canton": null, - "numero_insee": "59181" - } - }, - { - "pk": 34334, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DRINCHAM", - "center": "POINT (598763.6711467168061063 2657374.3566966238431633)", - "surface": 3400000, - "canton": null, - "numero_insee": "59182" - } - }, - { - "pk": 15985, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DUNKERQUE", - "center": "POINT (601348.9195029542315751 2671202.7554625547491014)", - "surface": 42970000, - "canton": null, - "numero_insee": "59183" - } - }, - { - "pk": 37368, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "EBBLINGHEM", - "center": "POINT (605731.1985886626644060 2637823.0590007686987519)", - "surface": 9280000, - "canton": null, - "numero_insee": "59184" - } - }, - { - "pk": 10733, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ECAILLON", - "center": "POINT (662620.8478454202413559 2595079.4392570722848177)", - "surface": 4020000, - "canton": null, - "numero_insee": "59185" - } - }, - { - "pk": 14227, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ECCLES", - "center": "POINT (725887.4959604953182861 2579506.4810739150270820)", - "surface": 3550000, - "canton": null, - "numero_insee": "59186" - } - }, - { - "pk": 28693, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ECLAIBES", - "center": "POINT (714481.9633549225982279 2579409.6279132040217519)", - "surface": 4900000, - "canton": null, - "numero_insee": "59187" - } - }, - { - "pk": 16284, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ECUELIN", - "center": "POINT (711488.1473179562017322 2578483.7208623602055013)", - "surface": 3380000, - "canton": null, - "numero_insee": "59188" - } - }, - { - "pk": 37753, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "EECKE", - "center": "POINT (618394.6878298711962998 2642931.9986839154735208)", - "surface": 10500000, - "canton": null, - "numero_insee": "59189" - } - }, - { - "pk": 29338, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ELESMES", - "center": "POINT (719485.0421068168943748 2591158.5658916486427188)", - "surface": 6320000, - "canton": null, - "numero_insee": "59190" - } - }, - { - "pk": 32657, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ELINCOURT", - "center": "POINT (674110.3227715725079179 2561557.7878016619943082)", - "surface": 8350000, - "canton": null, - "numero_insee": "59191" - } - }, - { - "pk": 34186, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "EMERCHICOURT", - "center": "POINT (665556.8664088109508157 2591002.0009286887943745)", - "surface": 5180000, - "canton": null, - "numero_insee": "59192" - } - }, - { - "pk": 24777, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "EMMERIN", - "center": "POINT (647385.9877561280736700 2621965.2537113907746971)", - "surface": 4980000, - "canton": null, - "numero_insee": "59193" - } - }, - { - "pk": 27856, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ENGLEFONTAINE", - "center": "POINT (693280.1488024728605524 2578229.3131416048854589)", - "surface": 4730000, - "canton": null, - "numero_insee": "59194" - } - }, - { - "pk": 19016, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ENGLOS", - "center": "POINT (644050.7695042281411588 2625939.2127278419211507)", - "surface": 1300000, - "canton": null, - "numero_insee": "59195" - } - }, - { - "pk": 37133, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ENNETIERES-EN-WEPPES", - "center": "POINT (642237.3177296548383310 2627424.7033141297288239)", - "surface": 10560000, - "canton": null, - "numero_insee": "59196" - } - }, - { - "pk": 26697, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ENNEVELIN", - "center": "POINT (656138.8733918657526374 2616236.0552063276991248)", - "surface": 9990000, - "canton": null, - "numero_insee": "59197" - } - }, - { - "pk": 19472, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "EPPE-SAUVAGE", - "center": "POINT (730965.6141673475503922 2570644.6419238462112844)", - "surface": 16860000, - "canton": null, - "numero_insee": "59198" - } - }, - { - "pk": 24081, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ERCHIN", - "center": "POINT (659648.9929245166713372 2591552.4392440314404666)", - "surface": 5260000, - "canton": null, - "numero_insee": "59199" - } - }, - { - "pk": 23071, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ERINGHEM", - "center": "POINT (598282.7695195099804550 2655069.1888551767915487)", - "surface": 11670000, - "canton": null, - "numero_insee": "59200" - } - }, - { - "pk": 9521, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ERQUINGHEM-LE-SEC", - "center": "POINT (642365.1875062598846853 2624124.0718568610027432)", - "surface": 1780000, - "canton": null, - "numero_insee": "59201" - } - }, - { - "pk": 32470, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ERQUINGHEM-LYS", - "center": "POINT (635705.7722206850303337 2630771.4242879291996360)", - "surface": 9200000, - "canton": null, - "numero_insee": "59202" - } - }, - { - "pk": 27659, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ERRE", - "center": "POINT (669803.9564074759837240 2597541.4216329851187766)", - "surface": 5850000, - "canton": null, - "numero_insee": "59203" - } - }, - { - "pk": 25788, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESCARMAIN", - "center": "POINT (686648.9946994902566075 2581475.0038290666416287)", - "surface": 6350000, - "canton": null, - "numero_insee": "59204" - } - }, - { - "pk": 31456, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESCAUDAIN", - "center": "POINT (671638.6269057705067098 2593554.7539102435112000)", - "surface": 10270000, - "canton": null, - "numero_insee": "59205" - } - }, - { - "pk": 34639, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESCAUDOEUVRES", - "center": "POINT (666969.0531190213514492 2577806.6390994563698769)", - "surface": 6630000, - "canton": null, - "numero_insee": "59206" - } - }, - { - "pk": 33980, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESCAUTPONT", - "center": "POINT (686560.1972529304912314 2603786.4269359055906534)", - "surface": 5770000, - "canton": null, - "numero_insee": "59207" - } - }, - { - "pk": 19590, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESCOBECQUES", - "center": "POINT (642255.0245082118781283 2625323.7659484371542931)", - "surface": 1840000, - "canton": null, - "numero_insee": "59208" - } - }, - { - "pk": 12057, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESNES", - "center": "POINT (669561.5752502278191969 2567022.4712893464602530)", - "surface": 14590000, - "canton": null, - "numero_insee": "59209" - } - }, - { - "pk": 9665, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESQUELBECQ", - "center": "POINT (606486.2356217680498958 2655138.0570395481772721)", - "surface": 12310000, - "canton": null, - "numero_insee": "59210" - } - }, - { - "pk": 11882, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESQUERCHIN", - "center": "POINT (647678.3789904908044264 2599155.6223405995406210)", - "surface": 5340000, - "canton": null, - "numero_insee": "59211" - } - }, - { - "pk": 27990, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESTAIRES", - "center": "POINT (627217.1635205546626821 2628899.0316608618013561)", - "surface": 13510000, - "canton": null, - "numero_insee": "59212" - } - }, - { - "pk": 13976, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESTOURMEL", - "center": "POINT (670408.7542902806308120 2573333.1842702683061361)", - "surface": 5480000, - "canton": null, - "numero_insee": "59213" - } - }, - { - "pk": 10225, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESTREES", - "center": "POINT (652663.3921308245044202 2589392.3364418768323958)", - "surface": 5830000, - "canton": null, - "numero_insee": "59214" - } - }, - { - "pk": 13159, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESTREUX", - "center": "POINT (690128.7481494059320539 2595912.3715241174213588)", - "surface": 5310000, - "canton": null, - "numero_insee": "59215" - } - }, - { - "pk": 11947, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESWARS", - "center": "POINT (666345.0965400594286621 2580602.9266439205966890)", - "surface": 2840000, - "canton": null, - "numero_insee": "59216" - } - }, - { - "pk": 9974, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ETH", - "center": "POINT (694856.3900292498292401 2592950.7772621940821409)", - "surface": 2870000, - "canton": null, - "numero_insee": "59217" - } - }, - { - "pk": 4970, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ETROEUNGT", - "center": "POINT (715213.0265701956814155 2564007.1514782155863941)", - "surface": 25300000, - "canton": null, - "numero_insee": "59218" - } - }, - { - "pk": 12871, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ESTRUN", - "center": "POINT (668420.7528915951261297 2583622.1255824160762131)", - "surface": 2820000, - "canton": null, - "numero_insee": "59219" - } - }, - { - "pk": 27182, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FACHES-THUMESNIL", - "center": "POINT (652185.6155915911076590 2622305.8912944174371660)", - "surface": 4590000, - "canton": null, - "numero_insee": "59220" - } - }, - { - "pk": 5772, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FAMARS", - "center": "POINT (684564.2074129014508799 2591362.8146282448433340)", - "surface": 4810000, - "canton": null, - "numero_insee": "59221" - } - }, - { - "pk": 12604, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FAUMONT", - "center": "POINT (656819.3626347754616290 2606736.7640711464919150)", - "surface": 9620000, - "canton": null, - "numero_insee": "59222" - } - }, - { - "pk": 32496, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LE FAVRIL", - "center": "POINT (699076.1830060594948009 2567272.2299371045082808)", - "surface": 11490000, - "canton": null, - "numero_insee": "59223" - } - }, - { - "pk": 9968, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FECHAIN", - "center": "POINT (662495.9450998016400263 2586173.5143848340958357)", - "surface": 5130000, - "canton": null, - "numero_insee": "59224" - } - }, - { - "pk": 15396, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FEIGNIES", - "center": "POINT (712191.7568958941847086 2589895.9997908333316445)", - "surface": 18780000, - "canton": null, - "numero_insee": "59225" - } - }, - { - "pk": 17300, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FELLERIES", - "center": "POINT (722741.1795049837091938 2572976.1113865324296057)", - "surface": 19540000, - "canton": null, - "numero_insee": "59226" - } - }, - { - "pk": 22268, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FENAIN", - "center": "POINT (668604.2375699174590409 2597431.2297300444915891)", - "surface": 5790000, - "canton": null, - "numero_insee": "59227" - } - }, - { - "pk": 10102, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FERIN", - "center": "POINT (653032.3520553946727887 2593097.4714752980507910)", - "surface": 5550000, - "canton": null, - "numero_insee": "59228" - } - }, - { - "pk": 27811, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FERON", - "center": "POINT (720628.4596145974937826 2562552.2706085587851703)", - "surface": 13400000, - "canton": null, - "numero_insee": "59229" - } - }, - { - "pk": 13027, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FERRIERE-LA-GRANDE", - "center": "POINT (718140.4382962324889377 2584543.5155046540312469)", - "surface": 10050000, - "canton": null, - "numero_insee": "59230" - } - }, - { - "pk": 6945, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FERRIERE-LA-PETITE", - "center": "POINT (720745.9374135662801564 2584065.3626819066703320)", - "surface": 5370000, - "canton": null, - "numero_insee": "59231" - } - }, - { - "pk": 26154, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA FLAMENGRIE", - "center": "POINT (698875.2430950000416487 2590983.7347946446388960)", - "surface": 2030000, - "canton": null, - "numero_insee": "59232" - } - }, - { - "pk": 22454, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLAUMONT-WAUDRECHIES", - "center": "POINT (716948.5255307963816449 2571726.2478215806186199)", - "surface": 5740000, - "canton": null, - "numero_insee": "59233" - } - }, - { - "pk": 20901, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLERS-EN-ESCREBIEUX", - "center": "POINT (650865.5329398540779948 2600883.4186189435422421)", - "surface": 7040000, - "canton": null, - "numero_insee": "59234" - } - }, - { - "pk": 10426, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLESQUIERES", - "center": "POINT (656028.7150996257551014 2570009.9444742514751852)", - "surface": 6330000, - "canton": null, - "numero_insee": "59236" - } - }, - { - "pk": 35007, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLETRE", - "center": "POINT (621517.0655221387278289 2640456.9954242776148021)", - "surface": 8990000, - "canton": null, - "numero_insee": "59237" - } - }, - { - "pk": 20083, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLINES-LES-MORTAGNE", - "center": "POINT (681574.1214912389405072 2613649.5057356371544302)", - "surface": 14590000, - "canton": null, - "numero_insee": "59238" - } - }, - { - "pk": 30621, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLINES-LEZ-RACHES", - "center": "POINT (660155.5201345724053681 2602662.7298838859423995)", - "surface": 19120000, - "canton": null, - "numero_insee": "59239" - } - }, - { - "pk": 11773, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLOURSIES", - "center": "POINT (716895.8678601440042257 2577929.2802661908790469)", - "surface": 4670000, - "canton": null, - "numero_insee": "59240" - } - }, - { - "pk": 9540, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FLOYON", - "center": "POINT (710931.2570185497170314 2561569.4473946392536163)", - "surface": 17300000, - "canton": null, - "numero_insee": "59241" - } - }, - { - "pk": 29385, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FONTAINE-AU-BOIS", - "center": "POINT (693433.5828805880155414 2571927.0815174560993910)", - "surface": 7680000, - "canton": null, - "numero_insee": "59242" - } - }, - { - "pk": 34640, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FONTAINE-AU-PIRE", - "center": "POINT (673734.0530928209191188 2570559.7148801749572158)", - "surface": 7640000, - "canton": null, - "numero_insee": "59243" - } - }, - { - "pk": 13019, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FONTAINE-NOTRE-DAME", - "center": "POINT (659488.2094051982276142 2575041.9543296769261360)", - "surface": 10540000, - "canton": null, - "numero_insee": "59244" - } - }, - { - "pk": 27277, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FOREST-EN-CAMBRESIS", - "center": "POINT (688327.6893554419511929 2572284.0718235522508621)", - "surface": 8830000, - "canton": null, - "numero_insee": "59246" - } - }, - { - "pk": 33880, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FOREST-SUR-MARQUE", - "center": "POINT (660452.1815454543102533 2626777.9425722896121442)", - "surface": 1050000, - "canton": null, - "numero_insee": "59247" - } - }, - { - "pk": 32271, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FOURMIES", - "center": "POINT (723468.1000558716477826 2558073.8081875266507268)", - "surface": 23040000, - "canton": null, - "numero_insee": "59249" - } - }, - { - "pk": 32471, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FOURNES-EN-WEPPES", - "center": "POINT (639481.5896345876390114 2621998.6796625293791294)", - "surface": 8360000, - "canton": null, - "numero_insee": "59250" - } - }, - { - "pk": 6522, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FRASNOY", - "center": "POINT (694803.8031542769167572 2587347.2621413734741509)", - "surface": 5870000, - "canton": null, - "numero_insee": "59251" - } - }, - { - "pk": 31381, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FRELINGHIEN", - "center": "POINT (643478.8669895417988300 2634438.7634123498573899)", - "surface": 11280000, - "canton": null, - "numero_insee": "59252" - } - }, - { - "pk": 28744, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FRESNES-SUR-ESCAUT", - "center": "POINT (688452.6109144231304526 2604802.9830381227657199)", - "surface": 11730000, - "canton": null, - "numero_insee": "59253" - } - }, - { - "pk": 22778, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FRESSAIN", - "center": "POINT (661081.7579878770047799 2587762.4534447523765266)", - "surface": 6440000, - "canton": null, - "numero_insee": "59254" - } - }, - { - "pk": 3947, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FRESSIES", - "center": "POINT (660812.8689273343188688 2584058.1442364784888923)", - "surface": 4780000, - "canton": null, - "numero_insee": "59255" - } - }, - { - "pk": 7035, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FRETIN", - "center": "POINT (656413.6791826843982562 2619239.9487201478332281)", - "surface": 13330000, - "canton": null, - "numero_insee": "59256" - } - }, - { - "pk": 7188, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "FROMELLES", - "center": "POINT (636661.7898456897819415 2624176.0682900198735297)", - "surface": 8690000, - "canton": null, - "numero_insee": "59257" - } - }, - { - "pk": 28311, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GENECH", - "center": "POINT (662851.2135953338583931 2615192.1432378711178899)", - "surface": 7500000, - "canton": null, - "numero_insee": "59258" - } - }, - { - "pk": 35332, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GHISSIGNIES", - "center": "POINT (691447.0789770083501935 2582015.9030721820890903)", - "surface": 4530000, - "canton": null, - "numero_insee": "59259" - } - }, - { - "pk": 8788, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GLAGEON", - "center": "POINT (723826.6575079064350575 2562979.6619308777153492)", - "surface": 11820000, - "canton": null, - "numero_insee": "59261" - } - }, - { - "pk": 26527, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GODEWAERSVELDE", - "center": "POINT (621782.6953264526091516 2644561.2953597847372293)", - "surface": 11930000, - "canton": null, - "numero_insee": "59262" - } - }, - { - "pk": 7450, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GOEULZIN", - "center": "POINT (654344.7865502778440714 2591707.7809938704594970)", - "surface": 4770000, - "canton": null, - "numero_insee": "59263" - } - }, - { - "pk": 31409, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GOGNIES-CHAUSSEE", - "center": "POINT (714462.2845176951959729 2593517.2383704539388418)", - "surface": 8010000, - "canton": null, - "numero_insee": "59264" - } - }, - { - "pk": 9840, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GOMMEGNIES", - "center": "POINT (697914.6123593406518921 2586273.0118740932084620)", - "surface": 15790000, - "canton": null, - "numero_insee": "59265" - } - }, - { - "pk": 6927, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GONDECOURT", - "center": "POINT (645625.6638066617306322 2617147.9005089341662824)", - "surface": 8210000, - "canton": null, - "numero_insee": "59266" - } - }, - { - "pk": 3151, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA GORGUE", - "center": "POINT (628539.6342350533232093 2626308.8195081483572721)", - "surface": 15070000, - "canton": null, - "numero_insee": "59268" - } - }, - { - "pk": 6150, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GOUZEAUCOURT", - "center": "POINT (655892.7839440772077069 2562404.4869560156948864)", - "surface": 12210000, - "canton": null, - "numero_insee": "59269" - } - }, - { - "pk": 15069, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GRAND-FAYT", - "center": "POINT (704461.0426691058091819 2569419.0637450423091650)", - "surface": 8860000, - "canton": null, - "numero_insee": "59270" - } - }, - { - "pk": 14839, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GRANDE-SYNTHE", - "center": "POINT (596762.9847397869452834 2669263.3561842874623835)", - "surface": 21080000, - "canton": null, - "numero_insee": "59271" - } - }, - { - "pk": 4684, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GRAND-FORT-PHILIPPE", - "center": "POINT (583372.5652881719870493 2667350.2133432449772954)", - "surface": 2270000, - "canton": null, - "numero_insee": "59272" - } - }, - { - "pk": 17238, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GRAVELINES", - "center": "POINT (586375.4802404821384698 2667175.2823551716282964)", - "surface": 19680000, - "canton": null, - "numero_insee": "59273" - } - }, - { - "pk": 31250, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA GROISE", - "center": "POINT (696391.7986575386021286 2565248.3490399946458638)", - "surface": 9470000, - "canton": null, - "numero_insee": "59274" - } - }, - { - "pk": 25711, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GRUSON", - "center": "POINT (662291.0020471721654758 2622291.1328767226077616)", - "surface": 3130000, - "canton": null, - "numero_insee": "59275" - } - }, - { - "pk": 13423, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GUESNAIN", - "center": "POINT (657818.5813247227342799 2595038.8952663228847086)", - "surface": 4050000, - "canton": null, - "numero_insee": "59276" - } - }, - { - "pk": 14355, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "GUSSIGNIES", - "center": "POINT (700743.9227611494716257 2594801.6470648143440485)", - "surface": 3390000, - "canton": null, - "numero_insee": "59277" - } - }, - { - "pk": 34783, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HALLENNES-LEZ-HAUBOURDIN", - "center": "POINT (643764.1283778108190745 2624335.9669581395573914)", - "surface": 4420000, - "canton": null, - "numero_insee": "59278" - } - }, - { - "pk": 33099, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HALLUIN", - "center": "POINT (655816.7736304216086864 2642546.8840556875802577)", - "surface": 12670000, - "canton": null, - "numero_insee": "59279" - } - }, - { - "pk": 6521, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAMEL", - "center": "POINT (652178.3457763727055863 2587587.2566080978140235)", - "surface": 3590000, - "canton": null, - "numero_insee": "59280" - } - }, - { - "pk": 6606, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HANTAY", - "center": "POINT (637731.3480249067069963 2615980.7929095695726573)", - "surface": 2110000, - "canton": null, - "numero_insee": "59281" - } - }, - { - "pk": 33623, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HARDIFORT", - "center": "POINT (610154.9972233219305053 2647164.9020891613326967)", - "surface": 6150000, - "canton": null, - "numero_insee": "59282" - } - }, - { - "pk": 8142, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HARGNIES", - "center": "POINT (707425.1078470404027030 2585653.2507578469812870)", - "surface": 5180000, - "canton": null, - "numero_insee": "59283" - } - }, - { - "pk": 29915, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HASNON", - "center": "POINT (674765.7055165481287986 2602385.9519883561879396)", - "surface": 12930000, - "canton": null, - "numero_insee": "59284" - } - }, - { - "pk": 14307, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HASPRES", - "center": "POINT (676705.2915819527115673 2585993.4225833257660270)", - "surface": 12240000, - "canton": null, - "numero_insee": "59285" - } - }, - { - "pk": 6359, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAUBOURDIN", - "center": "POINT (646072.7502974652452394 2623454.9616247052326798)", - "surface": 5470000, - "canton": null, - "numero_insee": "59286" - } - }, - { - "pk": 9570, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAUCOURT-EN-CAMBRESIS", - "center": "POINT (672151.8694736324250698 2568345.0983664011582732)", - "surface": 3580000, - "canton": null, - "numero_insee": "59287" - } - }, - { - "pk": 10477, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAULCHIN", - "center": "POINT (677459.9866791258100420 2591402.7693737787194550)", - "surface": 5140000, - "canton": null, - "numero_insee": "59288" - } - }, - { - "pk": 38004, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAUSSY", - "center": "POINT (681647.4239447779254988 2581332.6239180243574083)", - "surface": 16170000, - "canton": null, - "numero_insee": "59289" - } - }, - { - "pk": 19057, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAUT-LIEU", - "center": "POINT (712472.6305836824467406 2568586.5088503248989582)", - "surface": 9060000, - "canton": null, - "numero_insee": "59290" - } - }, - { - "pk": 30879, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAUTMONT", - "center": "POINT (713036.2865952164866030 2584700.3016861737705767)", - "surface": 12340000, - "canton": null, - "numero_insee": "59291" - } - }, - { - "pk": 8425, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAVELUY", - "center": "POINT (676021.2527534213149920 2595893.0553098516538739)", - "surface": 4750000, - "canton": null, - "numero_insee": "59292" - } - }, - { - "pk": 22079, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAVERSKERQUE", - "center": "POINT (614824.2668630756670609 2627294.0278868204914033)", - "surface": 9290000, - "canton": null, - "numero_insee": "59293" - } - }, - { - "pk": 4059, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAYNECOURT", - "center": "POINT (658549.7657708097249269 2579536.5439127008430660)", - "surface": 5960000, - "canton": null, - "numero_insee": "59294" - } - }, - { - "pk": 15486, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HAZEBROUCK", - "center": "POINT (614243.3213787039276212 2636894.0641804966144264)", - "surface": 27490000, - "canton": null, - "numero_insee": "59295" - } - }, - { - "pk": 13692, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HECQ", - "center": "POINT (693993.2006493097869679 2576734.5148596395738423)", - "surface": 1340000, - "canton": null, - "numero_insee": "59296" - } - }, - { - "pk": 36546, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HELESMES", - "center": "POINT (672807.0582707243738696 2597366.6949772005900741)", - "surface": 7310000, - "canton": null, - "numero_insee": "59297" - } - }, - { - "pk": 31377, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HEM", - "center": "POINT (660631.9978636405430734 2629180.7000158587470651)", - "surface": 9670000, - "canton": null, - "numero_insee": "59299" - } - }, - { - "pk": 13157, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HEM-LENGLET", - "center": "POINT (663610.8366011236794293 2584481.9919005925767124)", - "surface": 4860000, - "canton": null, - "numero_insee": "59300" - } - }, - { - "pk": 16056, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HERGNIES", - "center": "POINT (684905.2639350825920701 2610175.8382268263958395)", - "surface": 10780000, - "canton": null, - "numero_insee": "59301" - } - }, - { - "pk": 28077, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HERIN", - "center": "POINT (679217.6842476278543472 2596520.4132740804925561)", - "surface": 4530000, - "canton": null, - "numero_insee": "59302" - } - }, - { - "pk": 20418, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HERLIES", - "center": "POINT (636589.5545063894242048 2620873.7420093733817339)", - "surface": 7080000, - "canton": null, - "numero_insee": "59303" - } - }, - { - "pk": 30199, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HERRIN", - "center": "POINT (644423.4323077978333458 2617337.8703537732362747)", - "surface": 2160000, - "canton": null, - "numero_insee": "59304" - } - }, - { - "pk": 29955, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HERZEELE", - "center": "POINT (613597.6438640907872468 2654197.3090656273998320)", - "surface": 17340000, - "canton": null, - "numero_insee": "59305" - } - }, - { - "pk": 20983, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HESTRUD", - "center": "POINT (728884.7004494473803788 2580032.2290677246637642)", - "surface": 6120000, - "canton": null, - "numero_insee": "59306" - } - }, - { - "pk": 4828, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HOLQUE", - "center": "POINT (590709.7559457279276103 2651403.8819656167179346)", - "surface": 3820000, - "canton": null, - "numero_insee": "59307" - } - }, - { - "pk": 16087, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HONDEGHEM", - "center": "POINT (612615.7179499709745869 2640082.0082263150252402)", - "surface": 12710000, - "canton": null, - "numero_insee": "59308" - } - }, - { - "pk": 37103, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HONDSCHOOTE", - "center": "POINT (617715.3085800430271775 2664236.8212484936229885)", - "surface": 23710000, - "canton": null, - "numero_insee": "59309" - } - }, - { - "pk": 26781, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HON-HERGIES", - "center": "POINT (705751.3759837826946750 2594243.7738247206434608)", - "surface": 11130000, - "canton": null, - "numero_insee": "59310" - } - }, - { - "pk": 5767, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HONNECHY", - "center": "POINT (681993.1092013682937250 2564125.8783930898644030)", - "surface": 6510000, - "canton": null, - "numero_insee": "59311" - } - }, - { - "pk": 13127, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HONNECOURT-SUR-ESCAUT", - "center": "POINT (662016.1031919140368700 2560054.8052257918752730)", - "surface": 15610000, - "canton": null, - "numero_insee": "59312" - } - }, - { - "pk": 13972, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HORDAIN", - "center": "POINT (670707.4865948576480150 2585342.3881310587748885)", - "surface": 5630000, - "canton": null, - "numero_insee": "59313" - } - }, - { - "pk": 11243, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HORNAING", - "center": "POINT (671204.6146257526706904 2597553.2588268243707716)", - "surface": 8980000, - "canton": null, - "numero_insee": "59314" - } - }, - { - "pk": 16322, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HOUDAIN-LEZ-BAVAY", - "center": "POINT (703355.3299895053496584 2593623.1302564125508070)", - "surface": 12140000, - "canton": null, - "numero_insee": "59315" - } - }, - { - "pk": 4611, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HOUPLIN-ANCOISNE", - "center": "POINT (646705.0743936892831698 2619658.3114557773806155)", - "surface": 6480000, - "canton": null, - "numero_insee": "59316" - } - }, - { - "pk": 35977, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HOUPLINES", - "center": "POINT (641695.7813601478701457 2632322.6605186113156378)", - "surface": 11410000, - "canton": null, - "numero_insee": "59317" - } - }, - { - "pk": 3041, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HOUTKERQUE", - "center": "POINT (617298.3691395302303135 2654328.4663188699632883)", - "surface": 13300000, - "canton": null, - "numero_insee": "59318" - } - }, - { - "pk": 31804, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "HOYMILLE", - "center": "POINT (608309.7264943111222237 2664357.8751884284429252)", - "surface": 5600000, - "canton": null, - "numero_insee": "59319" - } - }, - { - "pk": 14166, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ILLIES", - "center": "POINT (634906.4819828291656449 2618758.4682658794336021)", - "surface": 8020000, - "canton": null, - "numero_insee": "59320" - } - }, - { - "pk": 31055, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "INCHY", - "center": "POINT (681241.9774830344831571 2570122.9246648652479053)", - "surface": 3860000, - "canton": null, - "numero_insee": "59321" - } - }, - { - "pk": 37819, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "IWUY", - "center": "POINT (671432.3447369340574369 2582446.9109479212202132)", - "surface": 12670000, - "canton": null, - "numero_insee": "59322" - } - }, - { - "pk": 23736, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "JENLAIN", - "center": "POINT (692369.6092342252377421 2591228.7848173379898071)", - "surface": 5910000, - "canton": null, - "numero_insee": "59323" - } - }, - { - "pk": 7782, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "JEUMONT", - "center": "POINT (726100.0829378140624613 2589813.9867955539375544)", - "surface": 10270000, - "canton": null, - "numero_insee": "59324" - } - }, - { - "pk": 27273, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "JOLIMETZ", - "center": "POINT (695847.5090095517225564 2582253.2857813183218241)", - "surface": 4000000, - "canton": null, - "numero_insee": "59325" - } - }, - { - "pk": 29306, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "KILLEM", - "center": "POINT (615727.0930076647782698 2662719.3769060559570789)", - "surface": 12000000, - "canton": null, - "numero_insee": "59326" - } - }, - { - "pk": 12191, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LALLAING", - "center": "POINT (659283.8168071764521301 2599253.5392639888450503)", - "surface": 6010000, - "canton": null, - "numero_insee": "59327" - } - }, - { - "pk": 37239, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LAMBERSART", - "center": "POINT (648729.2448190840659663 2628780.1058216546662152)", - "surface": 6060000, - "canton": null, - "numero_insee": "59328" - } - }, - { - "pk": 16371, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LAMBRES-LEZ-DOUAI", - "center": "POINT (651109.5099600616376847 2595682.6647408064454794)", - "surface": 8840000, - "canton": null, - "numero_insee": "59329" - } - }, - { - "pk": 15058, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LANDRECIES", - "center": "POINT (696750.4620304472045973 2570154.1641236236318946)", - "surface": 21740000, - "canton": null, - "numero_insee": "59331" - } - }, - { - "pk": 3725, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LANNOY", - "center": "POINT (661821.5482475406024605 2630491.4135690024122596)", - "surface": 170000, - "canton": null, - "numero_insee": "59332" - } - }, - { - "pk": 4930, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LAROUILLIES", - "center": "POINT (714435.5539765887660906 2561299.0109318359754980)", - "surface": 5390000, - "canton": null, - "numero_insee": "59333" - } - }, - { - "pk": 11803, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LAUWIN-PLANQUE", - "center": "POINT (649272.3789761860389262 2599969.4963257494382560)", - "surface": 3680000, - "canton": null, - "numero_insee": "59334" - } - }, - { - "pk": 35105, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LECELLES", - "center": "POINT (675506.8633035137318075 2609395.9623181810602546)", - "surface": 16340000, - "canton": null, - "numero_insee": "59335" - } - }, - { - "pk": 13289, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LECLUSE", - "center": "POINT (649482.1169260571477935 2586964.1843012943863869)", - "surface": 4950000, - "canton": null, - "numero_insee": "59336" - } - }, - { - "pk": 35728, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEDERZEELE", - "center": "POINT (596853.4840545709012076 2646552.9732100055553019)", - "surface": 8710000, - "canton": null, - "numero_insee": "59337" - } - }, - { - "pk": 10550, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEDRINGHEM", - "center": "POINT (607612.7495352068217471 2652045.9855382610112429)", - "surface": 7050000, - "canton": null, - "numero_insee": "59338" - } - }, - { - "pk": 36208, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEERS", - "center": "POINT (663908.1138003766536713 2632209.9080056091770530)", - "surface": 5490000, - "canton": null, - "numero_insee": "59339" - } - }, - { - "pk": 12976, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEFFRINCKOUCKE", - "center": "POINT (608239.1382273737108335 2672761.3313981434330344)", - "surface": 7120000, - "canton": null, - "numero_insee": "59340" - } - }, - { - "pk": 7331, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LESDAIN", - "center": "POINT (667262.9719296981347725 2566702.8799430401995778)", - "surface": 8470000, - "canton": null, - "numero_insee": "59341" - } - }, - { - "pk": 7564, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEZ-FONTAINE", - "center": "POINT (723510.9771102784434333 2576584.6711165951564908)", - "surface": 4500000, - "canton": null, - "numero_insee": "59342" - } - }, - { - "pk": 29087, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LESQUIN", - "center": "POINT (654991.0959006174234673 2621829.3016774854622781)", - "surface": 8510000, - "canton": null, - "numero_insee": "59343" - } - }, - { - "pk": 10486, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEVAL", - "center": "POINT (707097.8879331991774961 2577045.6970577440224588)", - "surface": 5880000, - "canton": null, - "numero_insee": "59344" - } - }, - { - "pk": 3927, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEWARDE", - "center": "POINT (659330.2693345149746165 2593750.9486474371515214)", - "surface": 3890000, - "canton": null, - "numero_insee": "59345" - } - }, - { - "pk": 13240, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LEZENNES", - "center": "POINT (655370.1692467068787664 2624333.8013719366863370)", - "surface": 2130000, - "canton": null, - "numero_insee": "59346" - } - }, - { - "pk": 23481, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LIGNY-EN-CAMBRESIS", - "center": "POINT (674657.3340825415216386 2567865.9948184611275792)", - "surface": 8930000, - "canton": null, - "numero_insee": "59349" - } - }, - { - "pk": 23920, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LILLE", - "center": "POINT (650348.5204579939600080 2626592.6267738011665642)", - "surface": 34990000, - "canton": null, - "numero_insee": "59350" - } - }, - { - "pk": 13791, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LIMONT-FONTAINE", - "center": "POINT (713366.9959984503220767 2581101.1119395182467997)", - "surface": 6810000, - "canton": null, - "numero_insee": "59351" - } - }, - { - "pk": 8618, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LINSELLES", - "center": "POINT (652151.4636849676026031 2638213.7810789286158979)", - "surface": 11850000, - "canton": null, - "numero_insee": "59352" - } - }, - { - "pk": 31349, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOCQUIGNOL", - "center": "POINT (699873.1821510875597596 2579485.8408567355945706)", - "surface": 97980000, - "canton": null, - "numero_insee": "59353" - } - }, - { - "pk": 3786, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOFFRE", - "center": "POINT (659514.3164159442530945 2595653.5356061756610870)", - "surface": 2600000, - "canton": null, - "numero_insee": "59354" - } - }, - { - "pk": 33879, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOMPRET", - "center": "POINT (646617.3456352039938793 2630062.9665946401655674)", - "surface": 3120000, - "canton": null, - "numero_insee": "59356" - } - }, - { - "pk": 20280, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA LONGUEVILLE", - "center": "POINT (709489.6211762218736112 2589973.1290357010439038)", - "surface": 17670000, - "canton": null, - "numero_insee": "59357" - } - }, - { - "pk": 12537, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOOBERGHE", - "center": "POINT (595659.8486015604576096 2657648.4608029015362263)", - "surface": 19390000, - "canton": null, - "numero_insee": "59358" - } - }, - { - "pk": 15220, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOON-PLAGE", - "center": "POINT (591975.2746289470233023 2667522.3758134986273944)", - "surface": 36070000, - "canton": null, - "numero_insee": "59359" - } - }, - { - "pk": 25911, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOOS", - "center": "POINT (648469.6088093633297831 2623975.4322168501093984)", - "surface": 6900000, - "canton": null, - "numero_insee": "59360" - } - }, - { - "pk": 30401, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOUVIGNIES-QUESNOY", - "center": "POINT (693158.0685383562231436 2580829.7269678032025695)", - "surface": 8510000, - "canton": null, - "numero_insee": "59363" - } - }, - { - "pk": 6044, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOUVIL", - "center": "POINT (660523.9802195576485246 2618274.1215104358270764)", - "surface": 2490000, - "canton": null, - "numero_insee": "59364" - } - }, - { - "pk": 25553, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LOUVROIL", - "center": "POINT (715528.1476313023595139 2585822.0579891772940755)", - "surface": 5970000, - "canton": null, - "numero_insee": "59365" - } - }, - { - "pk": 36897, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LYNDE", - "center": "POINT (606946.8474863619776443 2636032.3533665495924652)", - "surface": 9100000, - "canton": null, - "numero_insee": "59366" - } - }, - { - "pk": 14245, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LYS-LEZ-LANNOY", - "center": "POINT (662315.8558107978897169 2631195.9475330971181393)", - "surface": 3260000, - "canton": null, - "numero_insee": "59367" - } - }, - { - "pk": 13373, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA MADELEINE", - "center": "POINT (651928.1347317774780095 2629107.2422571163624525)", - "surface": 2690000, - "canton": null, - "numero_insee": "59368" - } - }, - { - "pk": 25228, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MAING", - "center": "POINT (682171.5314262533793226 2590342.0212026513181627)", - "surface": 11650000, - "canton": null, - "numero_insee": "59369" - } - }, - { - "pk": 10246, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MAIRIEUX", - "center": "POINT (716775.2645386902149767 2592136.1065391935408115)", - "surface": 6560000, - "canton": null, - "numero_insee": "59370" - } - }, - { - "pk": 29090, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LE MAISNIL", - "center": "POINT (638355.8088694503530860 2624990.7539751506410539)", - "surface": 3540000, - "canton": null, - "numero_insee": "59371" - } - }, - { - "pk": 6149, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MALINCOURT", - "center": "POINT (670818.8200627850601450 2560329.2805145224556327)", - "surface": 10300000, - "canton": null, - "numero_insee": "59372" - } - }, - { - "pk": 19822, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARBAIX", - "center": "POINT (707347.2000694738235325 2571244.5545045700855553)", - "surface": 6670000, - "canton": null, - "numero_insee": "59374" - } - }, - { - "pk": 17735, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARCHIENNES", - "center": "POINT (665959.9126843926496804 2602511.6409340291284025)", - "surface": 21610000, - "canton": null, - "numero_insee": "59375" - } - }, - { - "pk": 21222, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARCOING", - "center": "POINT (659939.0832735446747392 2569042.3860794771462679)", - "surface": 15130000, - "canton": null, - "numero_insee": "59377" - } - }, - { - "pk": 19734, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARCQ-EN-BAROEUL", - "center": "POINT (654109.6959165754960850 2631426.8310274593532085)", - "surface": 14010000, - "canton": null, - "numero_insee": "59378" - } - }, - { - "pk": 7442, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARCQ-EN-OSTREVENT", - "center": "POINT (664078.1226484568323940 2588388.0860263626091182)", - "surface": 6260000, - "canton": null, - "numero_insee": "59379" - } - }, - { - "pk": 24657, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARESCHES", - "center": "POINT (688483.0008457634830847 2589394.8887531231157482)", - "surface": 4840000, - "canton": null, - "numero_insee": "59381" - } - }, - { - "pk": 26553, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARETZ", - "center": "POINT (677712.9678208879195154 2561488.1919928411953151)", - "surface": 11200000, - "canton": null, - "numero_insee": "59382" - } - }, - { - "pk": 16291, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARLY", - "center": "POINT (686533.8251426047645509 2595081.5026548090390861)", - "surface": 8050000, - "canton": null, - "numero_insee": "59383" - } - }, - { - "pk": 31500, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MAROILLES", - "center": "POINT (701741.0528928971616551 2571597.2464567665010691)", - "surface": 22110000, - "canton": null, - "numero_insee": "59384" - } - }, - { - "pk": 11484, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARPENT", - "center": "POINT (724099.1292165110353380 2589796.9867352545261383)", - "surface": 4880000, - "canton": null, - "numero_insee": "59385" - } - }, - { - "pk": 31169, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARQUETTE-LEZ-LILLE", - "center": "POINT (651109.2133578842040151 2631301.4656708571128547)", - "surface": 4800000, - "canton": null, - "numero_insee": "59386" - } - }, - { - "pk": 4981, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARQUETTE-EN-OSTREVANT", - "center": "POINT (666675.1386233110679314 2588910.2971186651848257)", - "surface": 7400000, - "canton": null, - "numero_insee": "59387" - } - }, - { - "pk": 26490, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MARQUILLIES", - "center": "POINT (637718.7059021147433668 2617481.4744408433325589)", - "surface": 6820000, - "canton": null, - "numero_insee": "59388" - } - }, - { - "pk": 36987, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MASNIERES", - "center": "POINT (661949.3632621387951076 2567958.7371369064785540)", - "surface": 11060000, - "canton": null, - "numero_insee": "59389" - } - }, - { - "pk": 6180, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MASNY", - "center": "POINT (661226.9447850615251809 2594267.2339389510452747)", - "surface": 7220000, - "canton": null, - "numero_insee": "59390" - } - }, - { - "pk": 13559, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MASTAING", - "center": "POINT (668562.5197558195795864 2590527.1199232456274331)", - "surface": 6280000, - "canton": null, - "numero_insee": "59391" - } - }, - { - "pk": 19058, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MAUBEUGE", - "center": "POINT (716103.8070611329749227 2588728.5421426198445261)", - "surface": 18970000, - "canton": null, - "numero_insee": "59392" - } - }, - { - "pk": 28528, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MAULDE", - "center": "POINT (677389.1241625607945025 2611613.0473640798591077)", - "surface": 5160000, - "canton": null, - "numero_insee": "59393" - } - }, - { - "pk": 21402, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MAUROIS", - "center": "POINT (680388.0813917589839548 2564612.5850055748596787)", - "surface": 2150000, - "canton": null, - "numero_insee": "59394" - } - }, - { - "pk": 35046, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MAZINGHIEN", - "center": "POINT (690414.2319914916297421 2562196.0120062194764614)", - "surface": 9050000, - "canton": null, - "numero_insee": "59395" - } - }, - { - "pk": 8521, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MECQUIGNIES", - "center": "POINT (704611.8870900026522577 2587030.1660736463963985)", - "surface": 4710000, - "canton": null, - "numero_insee": "59396" - } - }, - { - "pk": 26232, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MERCKEGHEM", - "center": "POINT (595800.1773535587126389 2652847.2713845404796302)", - "surface": 10760000, - "canton": null, - "numero_insee": "59397" - } - }, - { - "pk": 7332, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MERIGNIES", - "center": "POINT (655768.2419527032179758 2612731.0812943405471742)", - "surface": 8720000, - "canton": null, - "numero_insee": "59398" - } - }, - { - "pk": 12003, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MERRIS", - "center": "POINT (622655.4134890929562971 2635964.2871640021912754)", - "surface": 10240000, - "canton": null, - "numero_insee": "59399" - } - }, - { - "pk": 15007, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MERVILLE", - "center": "POINT (621122.8673504986800253 2627847.2442824076861143)", - "surface": 27100000, - "canton": null, - "numero_insee": "59400" - } - }, - { - "pk": 29956, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "METEREN", - "center": "POINT (624027.4106532208388671 2639377.5557127925567329)", - "surface": 18560000, - "canton": null, - "numero_insee": "59401" - } - }, - { - "pk": 26364, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MILLAM", - "center": "POINT (593911.9578235431108624 2651330.6880456553772092)", - "surface": 12370000, - "canton": null, - "numero_insee": "59402" - } - }, - { - "pk": 24861, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MILLONFOSSE", - "center": "POINT (674049.3088371227495372 2604280.9154178025200963)", - "surface": 3440000, - "canton": null, - "numero_insee": "59403" - } - }, - { - "pk": 11173, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LES MOERES", - "center": "POINT (614764.4931036536581814 2670114.8662708690389991)", - "surface": 19670000, - "canton": null, - "numero_insee": "59404" - } - }, - { - "pk": 34199, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MOEUVRES", - "center": "POINT (652293.1311316107166931 2573980.6748950006440282)", - "surface": 7400000, - "canton": null, - "numero_insee": "59405" - } - }, - { - "pk": 12983, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONCEAU-SAINT-WAAST", - "center": "POINT (708806.3540236967382953 2576159.6841465542092919)", - "surface": 5910000, - "canton": null, - "numero_insee": "59406" - } - }, - { - "pk": 33971, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONCHAUX-SUR-ECAILLON", - "center": "POINT (679989.1023649031994864 2588122.3512888657860458)", - "surface": 4490000, - "canton": null, - "numero_insee": "59407" - } - }, - { - "pk": 13822, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONCHEAUX", - "center": "POINT (653414.4134510217700154 2607108.2446772288531065)", - "surface": 4950000, - "canton": null, - "numero_insee": "59408" - } - }, - { - "pk": 27267, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONCHECOURT", - "center": "POINT (662360.4137161460239440 2590374.6762781352736056)", - "surface": 6870000, - "canton": null, - "numero_insee": "59409" - } - }, - { - "pk": 26749, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONS-EN-BAROEUL", - "center": "POINT (654739.5086652142927051 2627930.3435110766440630)", - "surface": 2890000, - "canton": null, - "numero_insee": "59410" - } - }, - { - "pk": 10532, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONS-EN-PEVELE", - "center": "POINT (654491.2844603571575135 2609918.8214548924006522)", - "surface": 12410000, - "canton": null, - "numero_insee": "59411" - } - }, - { - "pk": 19372, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONTAY", - "center": "POINT (685744.1947029322618619 2570161.0204497934319079)", - "surface": 5560000, - "canton": null, - "numero_insee": "59412" - } - }, - { - "pk": 36757, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONTIGNY-EN-CAMBRESIS", - "center": "POINT (677169.5691428482532501 2566586.4999618614092469)", - "surface": 5850000, - "canton": null, - "numero_insee": "59413" - } - }, - { - "pk": 11699, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONTIGNY-EN-OSTREVENT", - "center": "POINT (660101.0849181019002572 2597259.3570967847481370)", - "surface": 5450000, - "canton": null, - "numero_insee": "59414" - } - }, - { - "pk": 13555, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MONTRECOURT", - "center": "POINT (679243.7247872791485861 2581612.4570946046151221)", - "surface": 3520000, - "canton": null, - "numero_insee": "59415" - } - }, - { - "pk": 15193, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MORBECQUE", - "center": "POINT (614089.4801107412204146 2631389.9622368412092328)", - "surface": 44550000, - "canton": null, - "numero_insee": "59416" - } - }, - { - "pk": 13354, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MORTAGNE-DU-NORD", - "center": "POINT (679384.9637960527325049 2612230.2457250920124352)", - "surface": 2160000, - "canton": null, - "numero_insee": "59418" - } - }, - { - "pk": 10503, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MOUCHIN", - "center": "POINT (667464.2976827194215730 2613930.4237495074048638)", - "surface": 9260000, - "canton": null, - "numero_insee": "59419" - } - }, - { - "pk": 8476, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MOUSTIER-EN-FAGNE", - "center": "POINT (733191.3667046676855534 2567761.9219062407501042)", - "surface": 7190000, - "canton": null, - "numero_insee": "59420" - } - }, - { - "pk": 33878, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "MOUVAUX", - "center": "POINT (656583.7814713640836999 2634649.3482963470742106)", - "surface": 4200000, - "canton": null, - "numero_insee": "59421" - } - }, - { - "pk": 10311, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NEUF-BERQUIN", - "center": "POINT (623204.4453913094475865 2630165.9378977972082794)", - "surface": 6430000, - "canton": null, - "numero_insee": "59423" - } - }, - { - "pk": 11948, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NEUF-MESNIL", - "center": "POINT (712319.8198975198902190 2586595.2711895029060543)", - "surface": 1270000, - "canton": null, - "numero_insee": "59424" - } - }, - { - "pk": 11172, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NEUVILLE-EN-AVESNOIS", - "center": "POINT (688772.0321444213623181 2578891.5294827623292804)", - "surface": 3160000, - "canton": null, - "numero_insee": "59425" - } - }, - { - "pk": 35723, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NEUVILLE-EN-FERRAIN", - "center": "POINT (658138.0372210233472288 2640165.2638302063569427)", - "surface": 6190000, - "canton": null, - "numero_insee": "59426" - } - }, - { - "pk": 28310, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA NEUVILLE", - "center": "POINT (650976.1721560729201883 2611490.0146275903098285)", - "surface": 4040000, - "canton": null, - "numero_insee": "59427" - } - }, - { - "pk": 33637, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NEUVILLE-SAINT-REMY", - "center": "POINT (663072.2255791985662654 2577173.3897788957692683)", - "surface": 2360000, - "canton": null, - "numero_insee": "59428" - } - }, - { - "pk": 19640, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NEUVILLE-SUR-ESCAUT", - "center": "POINT (672379.5502462580334395 2588758.3912562457844615)", - "surface": 4760000, - "canton": null, - "numero_insee": "59429" - } - }, - { - "pk": 30402, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NEUVILLY", - "center": "POINT (684030.6578247550642118 2571647.3649327680468559)", - "surface": 12550000, - "canton": null, - "numero_insee": "59430" - } - }, - { - "pk": 6123, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NIEPPE", - "center": "POINT (635078.5438471955712885 2633967.7811523228883743)", - "surface": 17150000, - "canton": null, - "numero_insee": "59431" - } - }, - { - "pk": 32545, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NIERGNIES", - "center": "POINT (665816.6414472693577409 2572093.7111898050643504)", - "surface": 4390000, - "canton": null, - "numero_insee": "59432" - } - }, - { - "pk": 24400, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NIEURLET", - "center": "POINT (595969.8837771033868194 2644544.5574831846170127)", - "surface": 10290000, - "canton": null, - "numero_insee": "59433" - } - }, - { - "pk": 36293, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NIVELLE", - "center": "POINT (679915.6593560342444107 2608632.8226186577230692)", - "surface": 5860000, - "canton": null, - "numero_insee": "59434" - } - }, - { - "pk": 15837, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NOMAIN", - "center": "POINT (664077.1098497625207528 2612200.9119437430053949)", - "surface": 19120000, - "canton": null, - "numero_insee": "59435" - } - }, - { - "pk": 29957, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NOORDPEENE", - "center": "POINT (602173.3988119310233742 2644496.5688589541241527)", - "surface": 17290000, - "canton": null, - "numero_insee": "59436" - } - }, - { - "pk": 3038, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NOYELLES-LES-SECLIN", - "center": "POINT (648603.4018604963785037 2619974.4759339122101665)", - "surface": 2420000, - "canton": null, - "numero_insee": "59437" - } - }, - { - "pk": 24616, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NOYELLES-SUR-SAMBRE", - "center": "POINT (704314.3377574719488621 2574920.9169747293926775)", - "surface": 6490000, - "canton": null, - "numero_insee": "59439" - } - }, - { - "pk": 24653, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "NOYELLES-SUR-SELLE", - "center": "POINT (674591.5965224326355383 2587476.3765859561972320)", - "surface": 5070000, - "canton": null, - "numero_insee": "59440" - } - }, - { - "pk": 3600, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OBIES", - "center": "POINT (702711.8252121903933585 2586914.0016525392420590)", - "surface": 5440000, - "canton": null, - "numero_insee": "59441" - } - }, - { - "pk": 33403, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OBRECHIES", - "center": "POINT (721463.2684277731459588 2582070.3456020220182836)", - "surface": 5440000, - "canton": null, - "numero_insee": "59442" - } - }, - { - "pk": 35247, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OCHTEZEELE", - "center": "POINT (604451.7102890147361904 2647217.0495605366304517)", - "surface": 5640000, - "canton": null, - "numero_insee": "59443" - } - }, - { - "pk": 37214, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ODOMEZ", - "center": "POINT (685536.8697624133201316 2606479.2116829031147063)", - "surface": 4870000, - "canton": null, - "numero_insee": "59444" - } - }, - { - "pk": 33231, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OHAIN", - "center": "POINT (728341.6560057176975533 2561517.1652037641033530)", - "surface": 11860000, - "canton": null, - "numero_insee": "59445" - } - }, - { - "pk": 4356, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OISY", - "center": "POINT (678123.9352440567454323 2595710.7281263582408428)", - "surface": 2570000, - "canton": null, - "numero_insee": "59446" - } - }, - { - "pk": 28947, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ONNAING", - "center": "POINT (689696.3698609888087958 2599710.7691669613122940)", - "surface": 12990000, - "canton": null, - "numero_insee": "59447" - } - }, - { - "pk": 13105, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OOST-CAPPEL", - "center": "POINT (617754.0005469081224874 2659634.9034325825050473)", - "surface": 4010000, - "canton": null, - "numero_insee": "59448" - } - }, - { - "pk": 11658, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ORCHIES", - "center": "POINT (664108.3743745351675898 2608499.2114051678217947)", - "surface": 10920000, - "canton": null, - "numero_insee": "59449" - } - }, - { - "pk": 36749, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ORSINVAL", - "center": "POINT (692505.2442306453594938 2587027.6279557724483311)", - "surface": 3350000, - "canton": null, - "numero_insee": "59451" - } - }, - { - "pk": 29387, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OSTRICOURT", - "center": "POINT (649512.6105840886011720 2607075.3308389051817358)", - "surface": 7620000, - "canton": null, - "numero_insee": "59452" - } - }, - { - "pk": 9664, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "OUDEZEELE", - "center": "POINT (612235.7222500058123842 2649583.5823512300848961)", - "surface": 9560000, - "canton": null, - "numero_insee": "59453" - } - }, - { - "pk": 29172, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PAILLENCOURT", - "center": "POINT (666216.3127034469507635 2584003.7226871242746711)", - "surface": 7610000, - "canton": null, - "numero_insee": "59455" - } - }, - { - "pk": 27658, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PECQUENCOURT", - "center": "POINT (662794.7510080025531352 2598182.5888444199226797)", - "surface": 9550000, - "canton": null, - "numero_insee": "59456" - } - }, - { - "pk": 13916, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PERENCHIES", - "center": "POINT (644710.5996972949942574 2630747.2509241718798876)", - "surface": 3040000, - "canton": null, - "numero_insee": "59457" - } - }, - { - "pk": 12272, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PERONNE-EN-MELANTOIS", - "center": "POINT (659215.7900011511519551 2619163.5486223995685577)", - "surface": 1140000, - "canton": null, - "numero_insee": "59458" - } - }, - { - "pk": 28532, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PETITE-FORET", - "center": "POINT (681204.2375621106475592 2598238.1391199645586312)", - "surface": 4570000, - "canton": null, - "numero_insee": "59459" - } - }, - { - "pk": 27275, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PETIT-FAYT", - "center": "POINT (706671.4613862190162763 2568337.1848551481962204)", - "surface": 8130000, - "canton": null, - "numero_insee": "59461" - } - }, - { - "pk": 27401, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PHALEMPIN", - "center": "POINT (648659.9304180109174922 2613271.4313054899685085)", - "surface": 8050000, - "canton": null, - "numero_insee": "59462" - } - }, - { - "pk": 36980, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PITGAM", - "center": "POINT (600245.8295134272193536 2659587.8747313572093844)", - "surface": 23580000, - "canton": null, - "numero_insee": "59463" - } - }, - { - "pk": 22030, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "POIX-DU-NORD", - "center": "POINT (691586.9475454700877890 2577314.4710094658657908)", - "surface": 8620000, - "canton": null, - "numero_insee": "59464" - } - }, - { - "pk": 12595, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "POMMEREUIL", - "center": "POINT (689550.3023253527935594 2569692.9566959524527192)", - "surface": 6430000, - "canton": null, - "numero_insee": "59465" - } - }, - { - "pk": 13025, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PONT-A-MARCQ", - "center": "POINT (655254.5050177124794573 2614327.5910612824372947)", - "surface": 2260000, - "canton": null, - "numero_insee": "59466" - } - }, - { - "pk": 15771, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PONT-SUR-SAMBRE", - "center": "POINT (707749.8604378066956997 2582754.4005754715763032)", - "surface": 11370000, - "canton": null, - "numero_insee": "59467" - } - }, - { - "pk": 36518, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "POTELLE", - "center": "POINT (694937.7517509930767119 2583346.1884250296279788)", - "surface": 3960000, - "canton": null, - "numero_insee": "59468" - } - }, - { - "pk": 26972, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PRADELLES", - "center": "POINT (618738.5612706665415317 2637732.2609303789213300)", - "surface": 3260000, - "canton": null, - "numero_insee": "59469" - } - }, - { - "pk": 36859, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PREMESQUES", - "center": "POINT (643318.4125586915761232 2629735.0012071095407009)", - "surface": 5070000, - "canton": null, - "numero_insee": "59470" - } - }, - { - "pk": 10103, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PRESEAU", - "center": "POINT (688266.8129468968836591 2591294.0995005508884788)", - "surface": 6350000, - "canton": null, - "numero_insee": "59471" - } - }, - { - "pk": 24082, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PREUX-AU-BOIS", - "center": "POINT (694307.7537122315261513 2575036.2274835077114403)", - "surface": 4000000, - "canton": null, - "numero_insee": "59472" - } - }, - { - "pk": 36288, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PREUX-AU-SART", - "center": "POINT (697191.3885820716386661 2588968.3695478006266057)", - "surface": 5150000, - "canton": null, - "numero_insee": "59473" - } - }, - { - "pk": 6294, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PRISCHES", - "center": "POINT (701892.8348190498072654 2565495.0802895296365023)", - "surface": 23190000, - "canton": null, - "numero_insee": "59474" - } - }, - { - "pk": 30622, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PROUVY", - "center": "POINT (679850.9718389039626345 2592623.6474815746769309)", - "surface": 4430000, - "canton": null, - "numero_insee": "59475" - } - }, - { - "pk": 6051, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PROVILLE", - "center": "POINT (662001.2583523032953963 2573662.3871182519942522)", - "surface": 6320000, - "canton": null, - "numero_insee": "59476" - } - }, - { - "pk": 28685, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "PROVIN", - "center": "POINT (640755.4754220762988552 2613304.8495301213115454)", - "surface": 3330000, - "canton": null, - "numero_insee": "59477" - } - }, - { - "pk": 9781, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "QUAEDYPRE", - "center": "POINT (608642.6254155216738582 2660458.7715901434421539)", - "surface": 18910000, - "canton": null, - "numero_insee": "59478" - } - }, - { - "pk": 18655, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "QUAROUBLE", - "center": "POINT (691881.3021597344195470 2601630.2958468892611563)", - "surface": 12350000, - "canton": null, - "numero_insee": "59479" - } - }, - { - "pk": 5646, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "QUERENAING", - "center": "POINT (683589.9763378875795752 2588252.8709201170131564)", - "surface": 4330000, - "canton": null, - "numero_insee": "59480" - } - }, - { - "pk": 28941, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LE QUESNOY", - "center": "POINT (692025.3394967912463471 2584622.2396934190765023)", - "surface": 14220000, - "canton": null, - "numero_insee": "59481" - } - }, - { - "pk": 27751, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "QUESNOY-SUR-DEULE", - "center": "POINT (647571.3897033062530681 2635573.8279913067817688)", - "surface": 14480000, - "canton": null, - "numero_insee": "59482" - } - }, - { - "pk": 7343, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "QUIEVELON", - "center": "POINT (723652.4331486339215189 2583489.7165995747782290)", - "surface": 4370000, - "canton": null, - "numero_insee": "59483" - } - }, - { - "pk": 10731, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "QUIEVRECHAIN", - "center": "POINT (694192.5455561911221594 2600449.2245425763539970)", - "surface": 4660000, - "canton": null, - "numero_insee": "59484" - } - }, - { - "pk": 5955, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "QUIEVY", - "center": "POINT (677602.1295024185674265 2574594.6690828949213028)", - "surface": 6840000, - "canton": null, - "numero_insee": "59485" - } - }, - { - "pk": 30041, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RACHES", - "center": "POINT (656950.6515468128491193 2603035.8912566900253296)", - "surface": 4900000, - "canton": null, - "numero_insee": "59486" - } - }, - { - "pk": 27991, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RADINGHEM-EN-WEPPES", - "center": "POINT (639847.2073096650419757 2626103.8895332776010036)", - "surface": 6760000, - "canton": null, - "numero_insee": "59487" - } - }, - { - "pk": 34413, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RAILLENCOURT-SAINTE-OLLE", - "center": "POINT (660169.9688873653067276 2577248.9398316266015172)", - "surface": 7150000, - "canton": null, - "numero_insee": "59488" - } - }, - { - "pk": 11881, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RAIMBEAUCOURT", - "center": "POINT (654534.3384676193818450 2604816.4649351714178920)", - "surface": 11100000, - "canton": null, - "numero_insee": "59489" - } - }, - { - "pk": 26782, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RAINSARS", - "center": "POINT (719006.4239565106108785 2565039.9233224084600806)", - "surface": 6180000, - "canton": null, - "numero_insee": "59490" - } - }, - { - "pk": 20109, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RAISMES", - "center": "POINT (682070.8014519924763590 2602247.6289498293772340)", - "surface": 33310000, - "canton": null, - "numero_insee": "59491" - } - }, - { - "pk": 15683, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RAMILLIES", - "center": "POINT (665254.7049869828624651 2579393.0487597291357815)", - "surface": 5090000, - "canton": null, - "numero_insee": "59492" - } - }, - { - "pk": 23300, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RAMOUSIES", - "center": "POINT (721563.5324553697137162 2570264.5866559715941548)", - "surface": 9560000, - "canton": null, - "numero_insee": "59493" - } - }, - { - "pk": 5394, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RAUCOURT-AU-BOIS", - "center": "POINT (694267.9230035629589111 2579738.5156397125683725)", - "surface": 1020000, - "canton": null, - "numero_insee": "59494" - } - }, - { - "pk": 29757, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RECQUIGNIES", - "center": "POINT (722212.6691837196704000 2588080.0278576943092048)", - "surface": 6150000, - "canton": null, - "numero_insee": "59495" - } - }, - { - "pk": 13359, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "REJET-DE-BEAULIEU", - "center": "POINT (693119.8167607483919710 2561718.6379386247135699)", - "surface": 6320000, - "canton": null, - "numero_insee": "59496" - } - }, - { - "pk": 3424, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RENESCURE", - "center": "POINT (602929.1349302892340347 2637899.5818292903713882)", - "surface": 19010000, - "canton": null, - "numero_insee": "59497" - } - }, - { - "pk": 10231, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "REUMONT", - "center": "POINT (681776.9274813823867589 2566025.1295852074399590)", - "surface": 2780000, - "canton": null, - "numero_insee": "59498" - } - }, - { - "pk": 5928, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "REXPOEDE", - "center": "POINT (614647.6569131669821218 2660209.0834992290474474)", - "surface": 13420000, - "canton": null, - "numero_insee": "59499" - } - }, - { - "pk": 36069, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RIBECOURT-LA-TOUR", - "center": "POINT (656947.7353068495867774 2567816.4575916919857264)", - "surface": 8800000, - "canton": null, - "numero_insee": "59500" - } - }, - { - "pk": 21249, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RIEULAY", - "center": "POINT (666186.2057802431518212 2599411.8824383695609868)", - "surface": 7330000, - "canton": null, - "numero_insee": "59501" - } - }, - { - "pk": 5680, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RIEUX-EN-CAMBRESIS", - "center": "POINT (672560.7829533099429682 2579154.6158666103146970)", - "surface": 7650000, - "canton": null, - "numero_insee": "59502" - } - }, - { - "pk": 10101, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROBERSART", - "center": "POINT (693715.0871777423890308 2574130.7026307582855225)", - "surface": 2300000, - "canton": null, - "numero_insee": "59503" - } - }, - { - "pk": 9573, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROEULX", - "center": "POINT (670757.6480581570649520 2591246.0526291285641491)", - "surface": 4060000, - "canton": null, - "numero_insee": "59504" - } - }, - { - "pk": 22866, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROMBIES-ET-MARCHIPONT", - "center": "POINT (692814.7690504528582096 2597736.0945452568121254)", - "surface": 4790000, - "canton": null, - "numero_insee": "59505" - } - }, - { - "pk": 6969, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROMERIES", - "center": "POINT (686273.3586498670047149 2578570.2110915039665997)", - "surface": 6030000, - "canton": null, - "numero_insee": "59506" - } - }, - { - "pk": 37748, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RONCHIN", - "center": "POINT (653576.1157406728016213 2623518.2472053323872387)", - "surface": 5470000, - "canton": null, - "numero_insee": "59507" - } - }, - { - "pk": 34317, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROOST-WARENDIN", - "center": "POINT (654554.5992420603288338 2602415.3485560240224004)", - "surface": 7160000, - "canton": null, - "numero_insee": "59509" - } - }, - { - "pk": 4842, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROSULT", - "center": "POINT (672927.6548510065767914 2606772.7710471088066697)", - "surface": 8190000, - "canton": null, - "numero_insee": "59511" - } - }, - { - "pk": 29644, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROUBAIX", - "center": "POINT (659900.4352492651669309 2632876.4245425439439714)", - "surface": 13230000, - "canton": null, - "numero_insee": "59512" - } - }, - { - "pk": 34181, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROUCOURT", - "center": "POINT (657737.9567142893793061 2592736.9625014141201973)", - "surface": 3230000, - "canton": null, - "numero_insee": "59513" - } - }, - { - "pk": 35037, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROUSIES", - "center": "POINT (718716.0921762306243181 2587450.0040549510158598)", - "surface": 5790000, - "canton": null, - "numero_insee": "59514" - } - }, - { - "pk": 5238, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ROUVIGNIES", - "center": "POINT (678641.0947388858767226 2593714.0138757000677288)", - "surface": 3260000, - "canton": null, - "numero_insee": "59515" - } - }, - { - "pk": 12959, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RUBROUCK", - "center": "POINT (601837.1571514399256557 2648795.8972938791848719)", - "surface": 15020000, - "canton": null, - "numero_insee": "59516" - } - }, - { - "pk": 31134, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LES RUES-DES-VIGNES", - "center": "POINT (663970.6314744938863441 2565574.4458443727344275)", - "surface": 17660000, - "canton": null, - "numero_insee": "59517" - } - }, - { - "pk": 8171, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RUESNES", - "center": "POINT (688911.9904447402805090 2585996.6504131304100156)", - "surface": 6800000, - "canton": null, - "numero_insee": "59518" - } - }, - { - "pk": 25405, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RUMEGIES", - "center": "POINT (672189.2764992016600445 2611268.9244748530909419)", - "surface": 7630000, - "canton": null, - "numero_insee": "59519" - } - }, - { - "pk": 27860, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "RUMILLY-EN-CAMBRESIS", - "center": "POINT (663825.7988245339365676 2570876.2204365395009518)", - "surface": 6730000, - "canton": null, - "numero_insee": "59520" - } - }, - { - "pk": 6645, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAILLY-LEZ-CAMBRAI", - "center": "POINT (660259.8815392759861425 2578450.3681283420883119)", - "surface": 3320000, - "canton": null, - "numero_insee": "59521" - } - }, - { - "pk": 24589, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAILLY-LEZ-LANNOY", - "center": "POINT (663140.7120572520652786 2628301.4202250521630049)", - "surface": 4450000, - "canton": null, - "numero_insee": "59522" - } - }, - { - "pk": 32890, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINGHIN-EN-MELANTOIS", - "center": "POINT (658593.5607271634507924 2621759.6545027340762317)", - "surface": 10580000, - "canton": null, - "numero_insee": "59523" - } - }, - { - "pk": 24779, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINGHIN-EN-WEPPES", - "center": "POINT (639812.9148369502509013 2618299.5379273723810911)", - "surface": 7810000, - "canton": null, - "numero_insee": "59524" - } - }, - { - "pk": 21413, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINS-DU-NORD", - "center": "POINT (721493.2221444013994187 2566762.0068364697508514)", - "surface": 16030000, - "canton": null, - "numero_insee": "59525" - } - }, - { - "pk": 15463, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-AMAND-LES-EAUX", - "center": "POINT (678841.3844937712419778 2605522.0806315275840461)", - "surface": 34100000, - "canton": null, - "numero_insee": "59526" - } - }, - { - "pk": 37749, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-ANDRE-LEZ-LILLE", - "center": "POINT (650222.3167603918118402 2629693.1620806721039116)", - "surface": 3190000, - "canton": null, - "numero_insee": "59527" - } - }, - { - "pk": 16317, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-AUBERT", - "center": "POINT (677259.6794948910828680 2579594.5658980975858867)", - "surface": 8110000, - "canton": null, - "numero_insee": "59528" - } - }, - { - "pk": 17449, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-AUBIN", - "center": "POINT (712709.1059150844812393 2576092.7390376646071672)", - "surface": 10260000, - "canton": null, - "numero_insee": "59529" - } - }, - { - "pk": 29389, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-AYBERT", - "center": "POINT (693436.2890886481618509 2607046.3624851289205253)", - "surface": 4170000, - "canton": null, - "numero_insee": "59530" - } - }, - { - "pk": 27770, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-BENIN", - "center": "POINT (685687.3296855083899572 2565057.6501206266693771)", - "surface": 4670000, - "canton": null, - "numero_insee": "59531" - } - }, - { - "pk": 9735, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-GEORGES-SUR-L'AA", - "center": "POINT (587304.3637562216026708 2663781.4209921555593610)", - "surface": 8140000, - "canton": null, - "numero_insee": "59532" - } - }, - { - "pk": 29608, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-HILAIRE-LEZ-CAMBRAI", - "center": "POINT (677284.2153936657123268 2576693.1560680633410811)", - "surface": 6550000, - "canton": null, - "numero_insee": "59533" - } - }, - { - "pk": 14406, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-HILAIRE-SUR-HELPE", - "center": "POINT (711940.9739647742826492 2572284.0870804670266807)", - "surface": 15380000, - "canton": null, - "numero_insee": "59534" - } - }, - { - "pk": 13375, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-JANS-CAPPEL", - "center": "POINT (627210.2821547096827999 2641605.4495749133639038)", - "surface": 7970000, - "canton": null, - "numero_insee": "59535" - } - }, - { - "pk": 8639, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINTE-MARIE-CAPPEL", - "center": "POINT (612592.1779180428711697 2642883.2233231286518276)", - "surface": 7540000, - "canton": null, - "numero_insee": "59536" - } - }, - { - "pk": 7440, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-MARTIN-SUR-ECAILLON", - "center": "POINT (684331.7965045291930437 2583356.4458384579047561)", - "surface": 5340000, - "canton": null, - "numero_insee": "59537" - } - }, - { - "pk": 28043, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-MOMELIN", - "center": "POINT (593251.9364772874396294 2646522.7600853792391717)", - "surface": 6010000, - "canton": null, - "numero_insee": "59538" - } - }, - { - "pk": 31847, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-PIERRE-BROUCK", - "center": "POINT (589673.2616214577574283 2655697.3172355298884213)", - "surface": 8880000, - "canton": null, - "numero_insee": "59539" - } - }, - { - "pk": 24860, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-PYTHON", - "center": "POINT (681374.3637416210258380 2578128.5331251532770693)", - "surface": 7470000, - "canton": null, - "numero_insee": "59541" - } - }, - { - "pk": 6467, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-REMY-CHAUSSEE", - "center": "POINT (710299.4469323351513594 2577072.8536760965362191)", - "surface": 5150000, - "canton": null, - "numero_insee": "59542" - } - }, - { - "pk": 10959, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-REMY-DU-NORD", - "center": "POINT (711854.3854331416077912 2582489.0540889254771173)", - "surface": 5950000, - "canton": null, - "numero_insee": "59543" - } - }, - { - "pk": 32537, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-SAULVE", - "center": "POINT (687606.3961292840540409 2598392.3722723978571594)", - "surface": 12080000, - "canton": null, - "numero_insee": "59544" - } - }, - { - "pk": 13906, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-SOUPLET", - "center": "POINT (684508.7463882083538920 2562446.1949606542475522)", - "surface": 12700000, - "canton": null, - "numero_insee": "59545" - } - }, - { - "pk": 12960, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-SYLVESTRE-CAPPEL", - "center": "POINT (615097.4644384528510273 2642404.0272708977572620)", - "surface": 8130000, - "canton": null, - "numero_insee": "59546" - } - }, - { - "pk": 10600, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-VAAST-EN-CAMBRESIS", - "center": "POINT (678573.0024915868416429 2578104.8370830649510026)", - "surface": 4450000, - "canton": null, - "numero_insee": "59547" - } - }, - { - "pk": 8902, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAINT-WAAST", - "center": "POINT (700681.1872834441019222 2590398.7118052579462528)", - "surface": 5920000, - "canton": null, - "numero_insee": "59548" - } - }, - { - "pk": 27056, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SALESCHES", - "center": "POINT (690064.1922054333845153 2579903.0264700870029628)", - "surface": 4630000, - "canton": null, - "numero_insee": "59549" - } - }, - { - "pk": 7616, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SALOME", - "center": "POINT (635532.0323523404076695 2615762.1620990009978414)", - "surface": 5330000, - "canton": null, - "numero_insee": "59550" - } - }, - { - "pk": 17233, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAMEON", - "center": "POINT (670803.0083064280916005 2609556.3048346028663218)", - "surface": 8840000, - "canton": null, - "numero_insee": "59551" - } - }, - { - "pk": 36985, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SANCOURT", - "center": "POINT (661045.9097360670566559 2580157.9505195766687393)", - "surface": 3940000, - "canton": null, - "numero_insee": "59552" - } - }, - { - "pk": 7157, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SANTES", - "center": "POINT (644284.5927553747314960 2621939.1058991989120841)", - "surface": 7510000, - "canton": null, - "numero_insee": "59553" - } - }, - { - "pk": 7485, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SARS-ET-ROSIERES", - "center": "POINT (670631.6641176645644009 2606153.0440695397555828)", - "surface": 2610000, - "canton": null, - "numero_insee": "59554" - } - }, - { - "pk": 9286, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SARS-POTERIES", - "center": "POINT (722121.3410016380948946 2575272.1391597585752606)", - "surface": 7820000, - "canton": null, - "numero_insee": "59555" - } - }, - { - "pk": 12333, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SASSEGNIES", - "center": "POINT (704598.3665838439483196 2576824.3893428356386721)", - "surface": 4200000, - "canton": null, - "numero_insee": "59556" - } - }, - { - "pk": 3840, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAULTAIN", - "center": "POINT (688644.1339089617831632 2593998.7679925733245909)", - "surface": 6440000, - "canton": null, - "numero_insee": "59557" - } - }, - { - "pk": 6860, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SAULZOIR", - "center": "POINT (678727.4055891283787787 2583509.1428568093106151)", - "surface": 10130000, - "canton": null, - "numero_insee": "59558" - } - }, - { - "pk": 10862, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SEBOURG", - "center": "POINT (693237.8364787460304797 2595038.2117411992512643)", - "surface": 14160000, - "canton": null, - "numero_insee": "59559" - } - }, - { - "pk": 3575, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SECLIN", - "center": "POINT (649529.1218096739612520 2616980.7109780791215599)", - "surface": 17430000, - "canton": null, - "numero_insee": "59560" - } - }, - { - "pk": 17436, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SEMERIES", - "center": "POINT (718273.7979188049212098 2568835.8603958724997938)", - "surface": 13520000, - "canton": null, - "numero_insee": "59562" - } - }, - { - "pk": 5121, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SEMOUSIES", - "center": "POINT (716717.0030818108934909 2575426.3626842806115746)", - "surface": 3110000, - "canton": null, - "numero_insee": "59563" - } - }, - { - "pk": 7683, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "LA SENTINELLE", - "center": "POINT (681128.7358467105077580 2595335.9273177441209555)", - "surface": 3850000, - "canton": null, - "numero_insee": "59564" - } - }, - { - "pk": 19450, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SEPMERIES", - "center": "POINT (687398.5673384844558313 2587484.6646618219092488)", - "surface": 5970000, - "canton": null, - "numero_insee": "59565" - } - }, - { - "pk": 16370, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SEQUEDIN", - "center": "POINT (645753.2158273827517405 2625753.4611673452891409)", - "surface": 3970000, - "canton": null, - "numero_insee": "59566" - } - }, - { - "pk": 12053, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SERANVILLERS-FORENVILLE", - "center": "POINT (667331.7472566731739789 2570405.5529559869319201)", - "surface": 7310000, - "canton": null, - "numero_insee": "59567" - } - }, - { - "pk": 10185, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SERCUS", - "center": "POINT (608157.4578863834030926 2634841.9101524744182825)", - "surface": 4970000, - "canton": null, - "numero_insee": "59568" - } - }, - { - "pk": 27274, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SIN-LE-NOBLE", - "center": "POINT (655799.0622248911531642 2597223.0444726394489408)", - "surface": 11570000, - "canton": null, - "numero_insee": "59569" - } - }, - { - "pk": 28867, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SOCX", - "center": "POINT (606143.2602311940863729 2660237.6812043879181147)", - "surface": 8030000, - "canton": null, - "numero_insee": "59570" - } - }, - { - "pk": 30830, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SOLESMES", - "center": "POINT (684596.2393941759364679 2575754.4530405844561756)", - "surface": 23300000, - "canton": null, - "numero_insee": "59571" - } - }, - { - "pk": 22801, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SOLRE-LE-CHATEAU", - "center": "POINT (725912.9976684827124700 2576505.0213290280662477)", - "surface": 13800000, - "canton": null, - "numero_insee": "59572" - } - }, - { - "pk": 13654, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SOLRINNES", - "center": "POINT (724183.2712306074099615 2579892.2253581732511520)", - "surface": 5420000, - "canton": null, - "numero_insee": "59573" - } - }, - { - "pk": 9193, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SOMAIN", - "center": "POINT (666911.8903158863540739 2596416.3891593357548118)", - "surface": 12350000, - "canton": null, - "numero_insee": "59574" - } - }, - { - "pk": 9068, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SOMMAING", - "center": "POINT (682705.6300486915279180 2586344.3425281862728298)", - "surface": 3540000, - "canton": null, - "numero_insee": "59575" - } - }, - { - "pk": 25508, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "SPYCKER", - "center": "POINT (598302.2183256769785658 2664674.0486197974532843)", - "surface": 9460000, - "canton": null, - "numero_insee": "59576" - } - }, - { - "pk": 29730, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "STAPLE", - "center": "POINT (607916.1937746251933277 2639742.3730898257344961)", - "surface": 10000000, - "canton": null, - "numero_insee": "59577" - } - }, - { - "pk": 31578, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "STEENBECQUE", - "center": "POINT (610687.1356222566682845 2631461.4225283735431731)", - "surface": 12050000, - "canton": null, - "numero_insee": "59578" - } - }, - { - "pk": 12822, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "STEENE", - "center": "POINT (602424.9149860965553671 2662207.4360660524107516)", - "surface": 10360000, - "canton": null, - "numero_insee": "59579" - } - }, - { - "pk": 16086, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "STEENVOORDE", - "center": "POINT (617555.6498629807028919 2647527.2511716359294951)", - "surface": 30250000, - "canton": null, - "numero_insee": "59580" - } - }, - { - "pk": 23908, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "STEENWERCK", - "center": "POINT (630588.3543771281838417 2632529.2562666172161698)", - "surface": 27490000, - "canton": null, - "numero_insee": "59581" - } - }, - { - "pk": 13554, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "STRAZEELE", - "center": "POINT (619948.3402859456837177 2636641.8750221692025661)", - "surface": 4740000, - "canton": null, - "numero_insee": "59582" - } - }, - { - "pk": 27612, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TAISNIERES-EN-THIERACHE", - "center": "POINT (705530.1953173587098718 2573130.2155612567439675)", - "surface": 8570000, - "canton": null, - "numero_insee": "59583" - } - }, - { - "pk": 32705, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TAISNIERES-SUR-HON", - "center": "POINT (707965.1456157983047888 2592761.7304278258234262)", - "surface": 16180000, - "canton": null, - "numero_insee": "59584" - } - }, - { - "pk": 27782, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TEMPLEMARS", - "center": "POINT (651306.3091007164912298 2619797.1686988053843379)", - "surface": 4600000, - "canton": null, - "numero_insee": "59585" - } - }, - { - "pk": 10940, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TERDEGHEM", - "center": "POINT (615377.4117006032029167 2644807.5873089600354433)", - "surface": 8940000, - "canton": null, - "numero_insee": "59587" - } - }, - { - "pk": 16257, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TETEGHEM", - "center": "POINT (608169.3491255334811285 2669159.0170461600646377)", - "surface": 18960000, - "canton": null, - "numero_insee": "59588" - } - }, - { - "pk": 33977, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "THIANT", - "center": "POINT (678674.9420852194307372 2589712.1138765956275165)", - "surface": 8490000, - "canton": null, - "numero_insee": "59589" - } - }, - { - "pk": 12143, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "THIENNES", - "center": "POINT (609811.9522882732562721 2628452.5271596512757242)", - "surface": 7620000, - "canton": null, - "numero_insee": "59590" - } - }, - { - "pk": 5848, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "THIVENCELLE", - "center": "POINT (691841.4801615615142509 2606332.4811080638319254)", - "surface": 4010000, - "canton": null, - "numero_insee": "59591" - } - }, - { - "pk": 6858, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "THUMERIES", - "center": "POINT (651698.4362385208951309 2608894.7268601828254759)", - "surface": 7090000, - "canton": null, - "numero_insee": "59592" - } - }, - { - "pk": 31454, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "THUN-L'EVEQUE", - "center": "POINT (667438.0217009715270251 2581512.6593537442386150)", - "surface": 5640000, - "canton": null, - "numero_insee": "59593" - } - }, - { - "pk": 11660, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "THUN-SAINT-AMAND", - "center": "POINT (678999.1662690171506256 2610526.0808446719311178)", - "surface": 3730000, - "canton": null, - "numero_insee": "59594" - } - }, - { - "pk": 4909, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "THUN-SAINT-MARTIN", - "center": "POINT (669045.5581624367041513 2580725.7976008914411068)", - "surface": 6060000, - "canton": null, - "numero_insee": "59595" - } - }, - { - "pk": 30282, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TILLOY-LEZ-MARCHIENNES", - "center": "POINT (670151.7242382942931727 2603747.7027673097327352)", - "surface": 5480000, - "canton": null, - "numero_insee": "59596" - } - }, - { - "pk": 5587, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TILLOY-LEZ-CAMBRAI", - "center": "POINT (662759.4063906837254763 2578671.5845709303393960)", - "surface": 3340000, - "canton": null, - "numero_insee": "59597" - } - }, - { - "pk": 7629, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TOUFFLERS", - "center": "POINT (663527.3708634384674951 2629905.5104803987778723)", - "surface": 2420000, - "canton": null, - "numero_insee": "59598" - } - }, - { - "pk": 12056, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TOURMIGNIES", - "center": "POINT (653169.5843826563796028 2612408.9949607979506254)", - "surface": 2060000, - "canton": null, - "numero_insee": "59600" - } - }, - { - "pk": 24475, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TRELON", - "center": "POINT (727904.8970196916488931 2565815.9072449612431228)", - "surface": 39370000, - "canton": null, - "numero_insee": "59601" - } - }, - { - "pk": 25160, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TRESSIN", - "center": "POINT (660466.5412435539765283 2625077.1831458644010127)", - "surface": 1910000, - "canton": null, - "numero_insee": "59602" - } - }, - { - "pk": 31886, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TRITH-SAINT-LEGER", - "center": "POINT (681946.0425421164836735 2593341.7529928479343653)", - "surface": 6920000, - "canton": null, - "numero_insee": "59603" - } - }, - { - "pk": 11937, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "TROISVILLES", - "center": "POINT (681360.6474908115342259 2567922.6850427147001028)", - "surface": 8460000, - "canton": null, - "numero_insee": "59604" - } - }, - { - "pk": 30230, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "UXEM", - "center": "POINT (610962.9346481217071414 2670082.9189692423678935)", - "surface": 8080000, - "canton": null, - "numero_insee": "59605" - } - }, - { - "pk": 36986, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VALENCIENNES", - "center": "POINT (684019.9451309230644256 2596561.0418685404583812)", - "surface": 13930000, - "canton": null, - "numero_insee": "59606" - } - }, - { - "pk": 32539, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VENDEGIES-AU-BOIS", - "center": "POINT (688792.3603878691792488 2576490.3617278314195573)", - "surface": 9980000, - "canton": null, - "numero_insee": "59607" - } - }, - { - "pk": 32881, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VENDEGIES-SUR-ECAILLON", - "center": "POINT (683612.8342283630045131 2585551.5776879140175879)", - "surface": 6660000, - "canton": null, - "numero_insee": "59608" - } - }, - { - "pk": 6360, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VENDEVILLE", - "center": "POINT (652805.2986478286329657 2620009.9189298218116164)", - "surface": 2570000, - "canton": null, - "numero_insee": "59609" - } - }, - { - "pk": 32984, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VERCHAIN-MAUGRE", - "center": "POINT (680406.2200447377981618 2586124.7789632501080632)", - "surface": 9640000, - "canton": null, - "numero_insee": "59610" - } - }, - { - "pk": 31657, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VERLINGHEM", - "center": "POINT (646999.8079006929183379 2632167.2699239701032639)", - "surface": 10140000, - "canton": null, - "numero_insee": "59611" - } - }, - { - "pk": 31888, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VERTAIN", - "center": "POINT (684758.2363481824286282 2580258.3346806638874114)", - "surface": 5810000, - "canton": null, - "numero_insee": "59612" - } - }, - { - "pk": 9711, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VICQ", - "center": "POINT (690470.4826040852349252 2602818.9944530064240098)", - "surface": 3940000, - "canton": null, - "numero_insee": "59613" - } - }, - { - "pk": 31479, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VIESLY", - "center": "POINT (680108.4298798879608512 2574015.5303549300879240)", - "surface": 10670000, - "canton": null, - "numero_insee": "59614" - } - }, - { - "pk": 26491, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VIEUX-CONDE", - "center": "POINT (687413.1886902067344636 2609396.6403416772373021)", - "surface": 11100000, - "canton": null, - "numero_insee": "59616" - } - }, - { - "pk": 15924, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VIEUX-MESNIL", - "center": "POINT (709523.5699422261677682 2585971.2160463617183268)", - "surface": 5940000, - "canton": null, - "numero_insee": "59617" - } - }, - { - "pk": 32497, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VIEUX-RENG", - "center": "POINT (721970.0861243100371212 2593080.7094043539837003)", - "surface": 11680000, - "canton": null, - "numero_insee": "59618" - } - }, - { - "pk": 13818, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLEREAU", - "center": "POINT (696029.8057876694947481 2584355.9931658352725208)", - "surface": 5770000, - "canton": null, - "numero_insee": "59619" - } - }, - { - "pk": 12872, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLERS-AU-TERTRE", - "center": "POINT (659862.6021211787592620 2589953.3672927347943187)", - "surface": 4640000, - "canton": null, - "numero_insee": "59620" - } - }, - { - "pk": 5504, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLERS-EN-CAUCHIES", - "center": "POINT (675541.0906726842513308 2581681.2005952978506684)", - "surface": 8930000, - "canton": null, - "numero_insee": "59622" - } - }, - { - "pk": 5898, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLERS-GUISLAIN", - "center": "POINT (658512.6608588746748865 2560225.3420101855881512)", - "surface": 11330000, - "canton": null, - "numero_insee": "59623" - } - }, - { - "pk": 13525, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLERS-OUTREAUX", - "center": "POINT (668522.7404693231219426 2559709.5348491580225527)", - "surface": 7080000, - "canton": null, - "numero_insee": "59624" - } - }, - { - "pk": 32928, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLERS-PLOUICH", - "center": "POINT (657271.5275069755734876 2565017.6027657445520163)", - "surface": 11010000, - "canton": null, - "numero_insee": "59625" - } - }, - { - "pk": 25789, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLERS-POL", - "center": "POINT (691188.5246091991430148 2588917.5219371244311333)", - "surface": 12150000, - "canton": null, - "numero_insee": "59626" - } - }, - { - "pk": 25747, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VILLERS-SIRE-NICOLE", - "center": "POINT (719551.9571779345860705 2595061.2644534194841981)", - "surface": 8600000, - "canton": null, - "numero_insee": "59627" - } - }, - { - "pk": 30535, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VOLCKERINCKHOVE", - "center": "POINT (597328.5157106558326632 2649558.4561803052201867)", - "surface": 9950000, - "canton": null, - "numero_insee": "59628" - } - }, - { - "pk": 33228, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "VRED", - "center": "POINT (663778.3214125366648659 2600191.9756628954783082)", - "surface": 3420000, - "canton": null, - "numero_insee": "59629" - } - }, - { - "pk": 8559, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WAHAGNIES", - "center": "POINT (649287.2051496048225090 2610075.0264990366995335)", - "surface": 5710000, - "canton": null, - "numero_insee": "59630" - } - }, - { - "pk": 32102, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WALINCOURT-SELVIGNY", - "center": "POINT (671783.8050316099543124 2564539.8320811544544995)", - "surface": 15160000, - "canton": null, - "numero_insee": "59631" - } - }, - { - "pk": 19144, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WALLERS", - "center": "POINT (675295.5453926890622824 2598888.5446891542524099)", - "surface": 21030000, - "canton": null, - "numero_insee": "59632" - } - }, - { - "pk": 28895, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WALLERS-EN-FAGNE", - "center": "POINT (731219.2929273971822113 2564343.2227605176158249)", - "surface": 7820000, - "canton": null, - "numero_insee": "59633" - } - }, - { - "pk": 30969, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WALLON-CAPPEL", - "center": "POINT (610239.8892551194876432 2637060.5241895969957113)", - "surface": 5500000, - "canton": null, - "numero_insee": "59634" - } - }, - { - "pk": 11248, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WAMBAIX", - "center": "POINT (669631.1890159292379394 2570625.0943104471080005)", - "surface": 6270000, - "canton": null, - "numero_insee": "59635" - } - }, - { - "pk": 26293, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WAMBRECHIES", - "center": "POINT (650288.6072445281315595 2633695.7737029702402651)", - "surface": 15510000, - "canton": null, - "numero_insee": "59636" - } - }, - { - "pk": 25594, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WANDIGNIES-HAMAGE", - "center": "POINT (670277.9810909768566489 2600647.1025996031239629)", - "surface": 6340000, - "canton": null, - "numero_insee": "59637" - } - }, - { - "pk": 8637, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WANNEHAIN", - "center": "POINT (666213.0398004666203633 2619923.0062215668149292)", - "surface": 3730000, - "canton": null, - "numero_insee": "59638" - } - }, - { - "pk": 29820, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WARGNIES-LE-GRAND", - "center": "POINT (694272.2075005010701716 2591044.7901177043095231)", - "surface": 5720000, - "canton": null, - "numero_insee": "59639" - } - }, - { - "pk": 30042, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WARGNIES-LE-PETIT", - "center": "POINT (696081.5397423518588766 2590059.5698494114913046)", - "surface": 5290000, - "canton": null, - "numero_insee": "59640" - } - }, - { - "pk": 35729, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WARHEM", - "center": "POINT (611706.9340814814204350 2664886.6590050570666790)", - "surface": 27740000, - "canton": null, - "numero_insee": "59641" - } - }, - { - "pk": 19599, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WARLAING", - "center": "POINT (670266.9896488534286618 2601947.7098083337768912)", - "surface": 3960000, - "canton": null, - "numero_insee": "59642" - } - }, - { - "pk": 34089, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WARNETON", - "center": "POINT (644539.7122349473647773 2639150.0972793209366500)", - "surface": 4150000, - "canton": null, - "numero_insee": "59643" - } - }, - { - "pk": 26201, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WASNES-AU-BAC", - "center": "POINT (665495.6933862610021606 2586398.9595645726658404)", - "surface": 5250000, - "canton": null, - "numero_insee": "59645" - } - }, - { - "pk": 28208, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WASQUEHAL", - "center": "POINT (656110.5801946360152215 2631443.7159292898140848)", - "surface": 6900000, - "canton": null, - "numero_insee": "59646" - } - }, - { - "pk": 10970, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WATTEN", - "center": "POINT (592131.3273157570511103 2648914.5599276698194444)", - "surface": 7780000, - "canton": null, - "numero_insee": "59647" - } - }, - { - "pk": 29516, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WATTIGNIES", - "center": "POINT (649991.3768029672792181 2621486.9651727401651442)", - "surface": 6300000, - "canton": null, - "numero_insee": "59648" - } - }, - { - "pk": 36248, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WATTIGNIES-LA-VICTOIRE", - "center": "POINT (719083.3462751600891352 2579548.7446950492449105)", - "surface": 6350000, - "canton": null, - "numero_insee": "59649" - } - }, - { - "pk": 10992, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WAVRECHAIN-SOUS-DENAIN", - "center": "POINT (677340.4794010400073603 2593703.0141942081972957)", - "surface": 2400000, - "canton": null, - "numero_insee": "59651" - } - }, - { - "pk": 7462, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WAVRECHAIN-SOUS-FAULX", - "center": "POINT (667495.8067553346045315 2586515.9111339626833797)", - "surface": 3840000, - "canton": null, - "numero_insee": "59652" - } - }, - { - "pk": 29091, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WAVRIN", - "center": "POINT (642300.5564078451134264 2619921.3388096219860017)", - "surface": 13570000, - "canton": null, - "numero_insee": "59653" - } - }, - { - "pk": 5497, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WAZIERS", - "center": "POINT (655183.5834358754800633 2599018.8242474677972496)", - "surface": 4350000, - "canton": null, - "numero_insee": "59654" - } - }, - { - "pk": 14334, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WEMAERS-CAPPEL", - "center": "POINT (607356.3161219713510945 2646841.2422927850857377)", - "surface": 4210000, - "canton": null, - "numero_insee": "59655" - } - }, - { - "pk": 8500, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WERVICQ-SUD", - "center": "POINT (650426.2497335886582732 2641100.6967901876196265)", - "surface": 5020000, - "canton": null, - "numero_insee": "59656" - } - }, - { - "pk": 30200, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WEST-CAPPEL", - "center": "POINT (612055.8163761172909290 2659086.7628510105423629)", - "surface": 7690000, - "canton": null, - "numero_insee": "59657" - } - }, - { - "pk": 7037, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WICRES", - "center": "POINT (637701.8497724233893678 2619482.3802541261538863)", - "surface": 2780000, - "canton": null, - "numero_insee": "59658" - } - }, - { - "pk": 31202, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WIGNEHIES", - "center": "POINT (719862.0420284841675311 2558543.4706643396057189)", - "surface": 13980000, - "canton": null, - "numero_insee": "59659" - } - }, - { - "pk": 5274, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WILLEMS", - "center": "POINT (663255.1201572442660108 2626601.5078550945036113)", - "surface": 5860000, - "canton": null, - "numero_insee": "59660" - } - }, - { - "pk": 33664, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WILLIES", - "center": "POINT (726660.9454544235486537 2570908.2272888026200235)", - "surface": 4130000, - "canton": null, - "numero_insee": "59661" - } - }, - { - "pk": 36210, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WINNEZEELE", - "center": "POINT (616028.0946283754892647 2650716.0035783220082521)", - "surface": 15730000, - "canton": null, - "numero_insee": "59662" - } - }, - { - "pk": 14850, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WORMHOUT", - "center": "POINT (609999.4816113281995058 2653766.8765848097391427)", - "surface": 27410000, - "canton": null, - "numero_insee": "59663" - } - }, - { - "pk": 18481, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WULVERDINGHE", - "center": "POINT (594038.0145297594135627 2648230.2028396199457347)", - "surface": 2970000, - "canton": null, - "numero_insee": "59664" - } - }, - { - "pk": 12319, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "WYLDER", - "center": "POINT (610568.6359503025887534 2657473.4818933373317122)", - "surface": 2560000, - "canton": null, - "numero_insee": "59665" - } - }, - { - "pk": 12823, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ZEGERSCAPPEL", - "center": "POINT (603390.8049623573897406 2654411.7188313258811831)", - "surface": 17570000, - "canton": null, - "numero_insee": "59666" - } - }, - { - "pk": 10815, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ZERMEZEELE", - "center": "POINT (608641.7476112206932157 2648652.9383860537782311)", - "surface": 4960000, - "canton": null, - "numero_insee": "59667" - } - }, - { - "pk": 12132, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ZUYDCOOTE", - "center": "POINT (610625.8282080102944747 2674482.1939823622815311)", - "surface": 2550000, - "canton": null, - "numero_insee": "59668" - } - }, - { - "pk": 22709, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "ZUYTPEENE", - "center": "POINT (606077.6021306642796844 2644229.1997277364134789)", - "surface": 11910000, - "canton": null, - "numero_insee": "59669" - } - }, - { - "pk": 6599, - "model": "ishtar_common.town", - "fields": { - "departement": 60, - "name": "DON", - "center": "POINT (641126.9931915724882856 2616709.7714488171041012)", - "surface": 2290000, - "canton": null, - "numero_insee": "59670" - } - }, - { - "pk": 14142, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ABANCOURT", - "center": "POINT (558976.2732383065158501 2521867.1767518292181194)", - "surface": 5950000, - "canton": null, - "numero_insee": "60001" - } - }, - { - "pk": 26994, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ABBECOURT", - "center": "POINT (586803.7524170755641535 2484777.0857995860278606)", - "surface": 7470000, - "canton": null, - "numero_insee": "60002" - } - }, - { - "pk": 4210, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ABBEVILLE-SAINT-LUCIEN", - "center": "POINT (587655.8474677489139140 2502495.3026632484979928)", - "surface": 5310000, - "canton": null, - "numero_insee": "60003" - } - }, - { - "pk": 30229, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ACHY", - "center": "POINT (573512.9362655576551333 2506579.4107942404225469)", - "surface": 12880000, - "canton": null, - "numero_insee": "60004" - } - }, - { - "pk": 32638, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ACY-EN-MULTIEN", - "center": "POINT (645175.9450789234833792 2456849.4741269438527524)", - "surface": 11420000, - "canton": null, - "numero_insee": "60005" - } - }, - { - "pk": 11067, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LES AGEUX", - "center": "POINT (618363.5267356174299493 2480038.8672362393699586)", - "surface": 5020000, - "canton": null, - "numero_insee": "60006" - } - }, - { - "pk": 35393, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AGNETZ", - "center": "POINT (603281.1086238218704239 2488717.7173623489215970)", - "surface": 13280000, - "canton": null, - "numero_insee": "60007" - } - }, - { - "pk": 6238, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AIRION", - "center": "POINT (605858.1945576490834355 2491641.1797302393242717)", - "surface": 6860000, - "canton": null, - "numero_insee": "60008" - } - }, - { - "pk": 3321, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ALLONNE", - "center": "POINT (584168.7491542439674959 2488757.5251529999077320)", - "surface": 15380000, - "canton": null, - "numero_insee": "60009" - } - }, - { - "pk": 35891, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AMBLAINVILLE", - "center": "POINT (584245.6222224577795714 2467644.7055648728273809)", - "surface": 21040000, - "canton": null, - "numero_insee": "60010" - } - }, - { - "pk": 27607, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANDEVILLE", - "center": "POINT (587700.6652114148018882 2473277.2740352968685329)", - "surface": 4220000, - "canton": null, - "numero_insee": "60012" - } - }, - { - "pk": 3873, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANGICOURT", - "center": "POINT (612062.4826908290851861 2479685.7124794004485011)", - "surface": 5000000, - "canton": null, - "numero_insee": "60013" - } - }, - { - "pk": 11772, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANGIVILLERS", - "center": "POINT (611800.1603389316005632 2498995.6526161897927523)", - "surface": 6200000, - "canton": null, - "numero_insee": "60014" - } - }, - { - "pk": 24613, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANGY", - "center": "POINT (599336.8141502105863765 2481780.2435445422306657)", - "surface": 3510000, - "canton": null, - "numero_insee": "60015" - } - }, - { - "pk": 27610, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANSACQ", - "center": "POINT (601923.1633106623776257 2483603.0949639300815761)", - "surface": 8390000, - "canton": null, - "numero_insee": "60016" - } - }, - { - "pk": 24423, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANSAUVILLERS", - "center": "POINT (603521.7172607098473236 2507731.5555576686747372)", - "surface": 7060000, - "canton": null, - "numero_insee": "60017" - } - }, - { - "pk": 14265, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANSERVILLE", - "center": "POINT (590427.3799541722983122 2470298.2062533162534237)", - "surface": 6830000, - "canton": null, - "numero_insee": "60018" - } - }, - { - "pk": 28891, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANTHEUIL-PORTES", - "center": "POINT (628799.4161951439455152 2500339.3559409393928945)", - "surface": 10720000, - "canton": null, - "numero_insee": "60019" - } - }, - { - "pk": 12825, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ANTILLY", - "center": "POINT (647533.4787530446192250 2462072.7484552701935172)", - "surface": 3690000, - "canton": null, - "numero_insee": "60020" - } - }, - { - "pk": 10837, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "APPILLY", - "center": "POINT (656737.9621503330999985 2509680.4321356345899403)", - "surface": 4470000, - "canton": null, - "numero_insee": "60021" - } - }, - { - "pk": 36247, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "APREMONT", - "center": "POINT (612843.5996619660872966 2470086.1236451789736748)", - "surface": 13740000, - "canton": null, - "numero_insee": "60022" - } - }, - { - "pk": 12981, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ARMANCOURT", - "center": "POINT (631021.8608741016360000 2485949.0441954662092030)", - "surface": 2040000, - "canton": null, - "numero_insee": "60023" - } - }, - { - "pk": 5075, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ARSY", - "center": "POINT (625585.9974049304146320 2489805.7545279590412974)", - "surface": 7340000, - "canton": null, - "numero_insee": "60024" - } - }, - { - "pk": 7493, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ATTICHY", - "center": "POINT (651281.7712567673297599 2492223.6056424435228109)", - "surface": 14820000, - "canton": null, - "numero_insee": "60025" - } - }, - { - "pk": 37858, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AUCHY-LA-MONTAGNE", - "center": "POINT (584203.6735067568952218 2508470.0633622915484011)", - "surface": 7960000, - "canton": null, - "numero_insee": "60026" - } - }, - { - "pk": 10568, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AUGER-SAINT-VINCENT", - "center": "POINT (634672.1217800347367302 2468368.5275244680233300)", - "surface": 14180000, - "canton": null, - "numero_insee": "60027" - } - }, - { - "pk": 11483, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AUMONT-EN-HALATTE", - "center": "POINT (615741.9002045077504590 2470510.7411094047129154)", - "surface": 6780000, - "canton": null, - "numero_insee": "60028" - } - }, - { - "pk": 36189, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AUTEUIL", - "center": "POINT (582215.4170329869957641 2483037.5550933228805661)", - "surface": 12180000, - "canton": null, - "numero_insee": "60030" - } - }, - { - "pk": 27994, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AUTHEUIL-EN-VALOIS", - "center": "POINT (653013.8807462916010991 2464820.7249819925054908)", - "surface": 9290000, - "canton": null, - "numero_insee": "60031" - } - }, - { - "pk": 5303, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AUTRECHES", - "center": "POINT (657363.2081265579909086 2494876.5440398072823882)", - "surface": 13060000, - "canton": null, - "numero_insee": "60032" - } - }, - { - "pk": 24046, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AVILLY-SAINT-LEONARD", - "center": "POINT (613886.2202022897545248 2465091.6518582063727081)", - "surface": 12200000, - "canton": null, - "numero_insee": "60033" - } - }, - { - "pk": 35933, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AVRECHY", - "center": "POINT (606337.4653053536312655 2494146.7705689049325883)", - "surface": 12510000, - "canton": null, - "numero_insee": "60034" - } - }, - { - "pk": 10171, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AVRICOURT", - "center": "POINT (638064.6652443510247394 2517027.5610226821154356)", - "surface": 7000000, - "canton": null, - "numero_insee": "60035" - } - }, - { - "pk": 14350, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AVRIGNY", - "center": "POINT (617396.5619741553673521 2487935.7428502030670643)", - "surface": 6120000, - "canton": null, - "numero_insee": "60036" - } - }, - { - "pk": 31417, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BABOEUF", - "center": "POINT (654636.8240108818281442 2509662.7019455526024103)", - "surface": 7300000, - "canton": null, - "numero_insee": "60037" - } - }, - { - "pk": 30989, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BACHIVILLERS", - "center": "POINT (573163.8932493301108479 2476557.6705518183298409)", - "surface": 5920000, - "canton": null, - "numero_insee": "60038" - } - }, - { - "pk": 37350, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BACOUEL", - "center": "POINT (603270.3657876114593819 2513833.1773629249073565)", - "surface": 5500000, - "canton": null, - "numero_insee": "60039" - } - }, - { - "pk": 34359, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BAILLEUL-LE-SOC", - "center": "POINT (617867.3984206463210285 2491441.9029344553127885)", - "surface": 14440000, - "canton": null, - "numero_insee": "60040" - } - }, - { - "pk": 11929, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BAILLEUL-SUR-THERAIN", - "center": "POINT (592284.1880359560018405 2487524.7438698573969305)", - "surface": 9510000, - "canton": null, - "numero_insee": "60041" - } - }, - { - "pk": 30782, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BAILLEVAL", - "center": "POINT (609429.0686643930384889 2483466.0016327947378159)", - "surface": 8010000, - "canton": null, - "numero_insee": "60042" - } - }, - { - "pk": 32872, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BAILLY", - "center": "POINT (646810.1507983683841303 2500391.0134414485655725)", - "surface": 4220000, - "canton": null, - "numero_insee": "60043" - } - }, - { - "pk": 28464, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BALAGNY-SUR-THERAIN", - "center": "POINT (598870.9598766214912757 2477673.7224258598871529)", - "surface": 6820000, - "canton": null, - "numero_insee": "60044" - } - }, - { - "pk": 34125, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BARBERY", - "center": "POINT (624456.9927019915776327 2469383.2564353430643678)", - "surface": 7750000, - "canton": null, - "numero_insee": "60045" - } - }, - { - "pk": 13221, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BARGNY", - "center": "POINT (645311.1152508697705343 2464555.6389544229023159)", - "surface": 7610000, - "canton": null, - "numero_insee": "60046" - } - }, - { - "pk": 4313, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BARON", - "center": "POINT (629003.3699281207518652 2464218.1460243184119463)", - "surface": 21700000, - "canton": null, - "numero_insee": "60047" - } - }, - { - "pk": 18461, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BAUGY", - "center": "POINT (630341.5104257335187867 2495449.2858797861263156)", - "surface": 7240000, - "canton": null, - "numero_insee": "60048" - } - }, - { - "pk": 6755, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BAZANCOURT", - "center": "POINT (556707.9592053048545495 2505938.5299864271655679)", - "surface": 3180000, - "canton": null, - "numero_insee": "60049" - } - }, - { - "pk": 9801, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BAZICOURT", - "center": "POINT (620741.3238916255068034 2482860.6421291353181005)", - "surface": 3820000, - "canton": null, - "numero_insee": "60050" - } - }, - { - "pk": 29478, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAUDEDUIT", - "center": "POINT (579902.4900283778551966 2520241.2094352329149842)", - "surface": 3730000, - "canton": null, - "numero_insee": "60051" - } - }, - { - "pk": 7785, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAUGIES-SOUS-BOIS", - "center": "POINT (655185.6495752369519323 2515771.0584066938608885)", - "surface": 3880000, - "canton": null, - "numero_insee": "60052" - } - }, - { - "pk": 17548, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAULIEU-LES-FONTAINES", - "center": "POINT (641551.3646358171245083 2518858.0297281886450946)", - "surface": 12640000, - "canton": null, - "numero_insee": "60053" - } - }, - { - "pk": 31197, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAUMONT-LES-NONAINS", - "center": "POINT (575729.3458190370583907 2480881.8921660264022648)", - "surface": 9580000, - "canton": null, - "numero_insee": "60054" - } - }, - { - "pk": 26719, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAURAINS-LES-NOYON", - "center": "POINT (646209.4958976933266968 2512293.2775852615013719)", - "surface": 3860000, - "canton": null, - "numero_insee": "60055" - } - }, - { - "pk": 6617, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAUREPAIRE", - "center": "POINT (616887.0714237499050796 2477124.6038307738490403)", - "surface": 5230000, - "canton": null, - "numero_insee": "60056" - } - }, - { - "pk": 16667, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAUVAIS", - "center": "POINT (581729.6825109635246918 2493239.9119620611891150)", - "surface": 33060000, - "canton": null, - "numero_insee": "60057" - } - }, - { - "pk": 31830, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEAUVOIR", - "center": "POINT (599483.4334234427660704 2512000.2904004757292569)", - "surface": 10310000, - "canton": null, - "numero_insee": "60058" - } - }, - { - "pk": 32936, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BEHERICOURT", - "center": "POINT (652620.5472000124864280 2511446.7936853840947151)", - "surface": 5230000, - "canton": null, - "numero_insee": "60059" - } - }, - { - "pk": 12413, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BELLE-EGLISE", - "center": "POINT (591068.0008122341241688 2465500.4755604113452137)", - "surface": 7780000, - "canton": null, - "numero_insee": "60060" - } - }, - { - "pk": 14186, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BELLOY", - "center": "POINT (622863.3495451179333031 2504191.8226737305521965)", - "surface": 3020000, - "canton": null, - "numero_insee": "60061" - } - }, - { - "pk": 36015, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BERLANCOURT", - "center": "POINT (653946.1740260326769203 2520363.3897754536010325)", - "surface": 7100000, - "canton": null, - "numero_insee": "60062" - } - }, - { - "pk": 14104, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BERNEUIL-EN-BRAY", - "center": "POINT (579701.4347522351890802 2484517.4435822418890893)", - "surface": 15110000, - "canton": null, - "numero_insee": "60063" - } - }, - { - "pk": 12646, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BERNEUIL-SUR-AISNE", - "center": "POINT (648183.4220526056597009 2491797.2248980342410505)", - "surface": 10520000, - "canton": null, - "numero_insee": "60064" - } - }, - { - "pk": 25182, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BERTHECOURT", - "center": "POINT (591721.6126756935846061 2483017.1797639224678278)", - "surface": 7110000, - "canton": null, - "numero_insee": "60065" - } - }, - { - "pk": 30340, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BETHANCOURT-EN-VALOIS", - "center": "POINT (639212.3886099376250058 2475811.5314208343625069)", - "surface": 4120000, - "canton": null, - "numero_insee": "60066" - } - }, - { - "pk": 25898, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BETHISY-SAINT-MARTIN", - "center": "POINT (634602.1860180710209534 2476673.2756269881501794)", - "surface": 9800000, - "canton": null, - "numero_insee": "60067" - } - }, - { - "pk": 13767, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BETHISY-SAINT-PIERRE", - "center": "POINT (633982.4662463762797415 2478969.5261214966885746)", - "surface": 6540000, - "canton": null, - "numero_insee": "60068" - } - }, - { - "pk": 31768, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BETZ", - "center": "POINT (644230.7199387220898643 2462144.9707534280605614)", - "surface": 15610000, - "canton": null, - "numero_insee": "60069" - } - }, - { - "pk": 12841, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BIENVILLE", - "center": "POINT (635352.7045119907706976 2494490.8543090512976050)", - "surface": 3510000, - "canton": null, - "numero_insee": "60070" - } - }, - { - "pk": 35036, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BIERMONT", - "center": "POINT (629127.2115147360600531 2508947.4211222282610834)", - "surface": 3970000, - "canton": null, - "numero_insee": "60071" - } - }, - { - "pk": 26164, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BITRY", - "center": "POINT (653793.2911912621930242 2491044.0387378716841340)", - "surface": 6840000, - "canton": null, - "numero_insee": "60072" - } - }, - { - "pk": 8546, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BLACOURT", - "center": "POINT (565601.4823751682415605 2495406.3249127934686840)", - "surface": 11590000, - "canton": null, - "numero_insee": "60073" - } - }, - { - "pk": 4099, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BLAINCOURT-LES-PRECY", - "center": "POINT (600536.5371096982853487 2469982.7606705646030605)", - "surface": 8290000, - "canton": null, - "numero_insee": "60074" - } - }, - { - "pk": 7263, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BLANCFOSSE", - "center": "POINT (589324.2852007105248049 2518318.9612014689482749)", - "surface": 5200000, - "canton": null, - "numero_insee": "60075" - } - }, - { - "pk": 34737, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BLARGIES", - "center": "POINT (558496.0803544553928077 2519461.7136433306150138)", - "surface": 9990000, - "canton": null, - "numero_insee": "60076" - } - }, - { - "pk": 36464, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BLICOURT", - "center": "POINT (579913.0711485879728571 2507033.2538484474644065)", - "surface": 14610000, - "canton": null, - "numero_insee": "60077" - } - }, - { - "pk": 28928, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BLINCOURT", - "center": "POINT (620502.5041860357159749 2487461.5440500238910317)", - "surface": 2860000, - "canton": null, - "numero_insee": "60078" - } - }, - { - "pk": 3566, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOISSY-FRESNOY", - "center": "POINT (639818.8930057352408767 2463208.5080487327650189)", - "surface": 16010000, - "canton": null, - "numero_insee": "60079" - } - }, - { - "pk": 36584, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOISSY-LE-BOIS", - "center": "POINT (571169.4545501477550715 2475740.4636295512318611)", - "surface": 6150000, - "canton": null, - "numero_insee": "60080" - } - }, - { - "pk": 14271, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BONLIER", - "center": "POINT (586398.7464056576136500 2497281.5376879274845123)", - "surface": 4560000, - "canton": null, - "numero_insee": "60081" - } - }, - { - "pk": 17206, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BONNEUIL-LES-EAUX", - "center": "POINT (593109.5349339595995843 2520351.9142727069556713)", - "surface": 18370000, - "canton": null, - "numero_insee": "60082" - } - }, - { - "pk": 18757, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BONNEUIL-EN-VALOIS", - "center": "POINT (646915.9289455431280658 2475976.5207493808120489)", - "surface": 12930000, - "canton": null, - "numero_insee": "60083" - } - }, - { - "pk": 7050, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BONNIERES", - "center": "POINT (572456.7269007606664672 2501267.2973217517137527)", - "surface": 8450000, - "canton": null, - "numero_insee": "60084" - } - }, - { - "pk": 36009, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BONVILLERS", - "center": "POINT (601102.7749664209550247 2509812.5365293058566749)", - "surface": 5900000, - "canton": null, - "numero_insee": "60085" - } - }, - { - "pk": 7598, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BORAN-SUR-OISE", - "center": "POINT (601086.3782549346797168 2464083.5577012747526169)", - "surface": 11580000, - "canton": null, - "numero_insee": "60086" - } - }, - { - "pk": 26347, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOREST", - "center": "POINT (624388.0809073516866192 2465680.2830126620829105)", - "surface": 12820000, - "canton": null, - "numero_insee": "60087" - } - }, - { - "pk": 18153, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BORNEL", - "center": "POINT (588862.5346493941033259 2465982.3063219678588212)", - "surface": 12450000, - "canton": null, - "numero_insee": "60088" - } - }, - { - "pk": 35738, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOUBIERS", - "center": "POINT (566024.2483773455023766 2468792.9729031370952725)", - "surface": 10380000, - "canton": null, - "numero_insee": "60089" - } - }, - { - "pk": 31179, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOUCONVILLERS", - "center": "POINT (568165.6450716865947470 2464007.7812197832390666)", - "surface": 4780000, - "canton": null, - "numero_insee": "60090" - } - }, - { - "pk": 29491, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOUILLANCY", - "center": "POINT (641965.6422949086409062 2457823.0720664225518703)", - "surface": 13660000, - "canton": null, - "numero_insee": "60091" - } - }, - { - "pk": 27809, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOULOGNE-LA-GRASSE", - "center": "POINT (626297.0671495026908815 2512325.6847299584187567)", - "surface": 9440000, - "canton": null, - "numero_insee": "60093" - } - }, - { - "pk": 23143, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOURSONNE", - "center": "POINT (651795.4632420880952850 2466911.8091090046800673)", - "surface": 3470000, - "canton": null, - "numero_insee": "60094" - } - }, - { - "pk": 22518, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOURY-EN-VEXIN", - "center": "POINT (556293.5753822529222816 2471713.5382687738165259)", - "surface": 11200000, - "canton": null, - "numero_insee": "60095" - } - }, - { - "pk": 7858, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOUTAVENT", - "center": "POINT (557825.8144717499380931 2515853.9286643802188337)", - "surface": 4390000, - "canton": null, - "numero_insee": "60096" - } - }, - { - "pk": 6465, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOUTENCOURT", - "center": "POINT (566027.2055379278026521 2480400.4329067822545767)", - "surface": 7650000, - "canton": null, - "numero_insee": "60097" - } - }, - { - "pk": 33334, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BOUVRESSE", - "center": "POINT (558114.2665626142406836 2517257.1896973839029670)", - "surface": 2840000, - "canton": null, - "numero_insee": "60098" - } - }, - { - "pk": 7414, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRAISNES-SUR-ARONDE", - "center": "POINT (631723.7535286518977955 2497662.2939441259950399)", - "surface": 2620000, - "canton": null, - "numero_insee": "60099" - } - }, - { - "pk": 13952, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRASSEUSE", - "center": "POINT (624929.4999746830435470 2472689.3573080929927528)", - "surface": 8330000, - "canton": null, - "numero_insee": "60100" - } - }, - { - "pk": 30931, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BREGY", - "center": "POINT (639290.1981756302993745 2454698.4948430000804365)", - "surface": 13240000, - "canton": null, - "numero_insee": "60101" - } - }, - { - "pk": 29263, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRENOUILLE", - "center": "POINT (615471.9777438419405371 2478813.7934837462380528)", - "surface": 4250000, - "canton": null, - "numero_insee": "60102" - } - }, - { - "pk": 36053, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRESLES", - "center": "POINT (593658.9545078959781677 2490638.2258107177913189)", - "surface": 21200000, - "canton": null, - "numero_insee": "60103" - } - }, - { - "pk": 16302, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRETEUIL", - "center": "POINT (596755.1100955829024315 2515179.3455953234806657)", - "surface": 17280000, - "canton": null, - "numero_insee": "60104" - } - }, - { - "pk": 24358, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRETIGNY", - "center": "POINT (656458.9084739326499403 2507176.5415337998420000)", - "surface": 5260000, - "canton": null, - "numero_insee": "60105" - } - }, - { - "pk": 7648, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BREUIL-LE-SEC", - "center": "POINT (608701.7782559046754614 2486661.9165504700504243)", - "surface": 8950000, - "canton": null, - "numero_insee": "60106" - } - }, - { - "pk": 34808, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BREUIL-LE-VERT", - "center": "POINT (606414.7738201128086075 2484941.6326355426572263)", - "surface": 7350000, - "canton": null, - "numero_insee": "60107" - } - }, - { - "pk": 37322, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRIOT", - "center": "POINT (569631.3201491498621181 2516052.7281366572715342)", - "surface": 6450000, - "canton": null, - "numero_insee": "60108" - } - }, - { - "pk": 25491, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BROMBOS", - "center": "POINT (567526.0060066274600103 2516535.4150755996815860)", - "surface": 6920000, - "canton": null, - "numero_insee": "60109" - } - }, - { - "pk": 25879, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BROQUIERS", - "center": "POINT (563707.2288508770288900 2518504.6823044074699283)", - "surface": 2920000, - "canton": null, - "numero_insee": "60110" - } - }, - { - "pk": 14046, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BROYES", - "center": "POINT (608468.1245978539809585 2514477.1935354410670698)", - "surface": 4790000, - "canton": null, - "numero_insee": "60111" - } - }, - { - "pk": 27003, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BRUNVILLERS-LA-MOTTE", - "center": "POINT (608435.3074961334932595 2506472.0209988346323371)", - "surface": 6440000, - "canton": null, - "numero_insee": "60112" - } - }, - { - "pk": 35754, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BUCAMPS", - "center": "POINT (598558.4624970055883750 2502986.9974053679034114)", - "surface": 5830000, - "canton": null, - "numero_insee": "60113" - } - }, - { - "pk": 28518, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BUICOURT", - "center": "POINT (562226.0213167578913271 2504183.5538005437701941)", - "surface": 3490000, - "canton": null, - "numero_insee": "60114" - } - }, - { - "pk": 13904, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "BUSSY", - "center": "POINT (646486.0384857174940407 2515097.3166506364941597)", - "surface": 3860000, - "canton": null, - "numero_insee": "60117" - } - }, - { - "pk": 6623, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAISNES", - "center": "POINT (652693.9794803371187299 2502742.0601799460127950)", - "surface": 6180000, - "canton": null, - "numero_insee": "60118" - } - }, - { - "pk": 31406, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAMBRONNE-LES-RIBECOURT", - "center": "POINT (640700.0540361147141084 2501140.0097669484093785)", - "surface": 6960000, - "canton": null, - "numero_insee": "60119" - } - }, - { - "pk": 31158, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAMBRONNE-LES-CLERMONT", - "center": "POINT (604647.3688448953907937 2480924.2529267361387610)", - "surface": 9350000, - "canton": null, - "numero_insee": "60120" - } - }, - { - "pk": 17222, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAMPAGNE", - "center": "POINT (645068.4172085104510188 2517086.5813703085295856)", - "surface": 4600000, - "canton": null, - "numero_insee": "60121" - } - }, - { - "pk": 26341, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAMPEAUX", - "center": "POINT (557848.3959718889091164 2513152.4739645356312394)", - "surface": 11350000, - "canton": null, - "numero_insee": "60122" - } - }, - { - "pk": 36508, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAMPREMY", - "center": "POINT (599221.8981463101226836 2507395.2770619089715183)", - "surface": 10270000, - "canton": null, - "numero_insee": "60123" - } - }, - { - "pk": 31800, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CANDOR", - "center": "POINT (639784.9655380349140614 2514740.6558562405407429)", - "surface": 8930000, - "canton": null, - "numero_insee": "60124" - } - }, - { - "pk": 35959, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CANLY", - "center": "POINT (626301.5426510514225811 2488010.6418026476167142)", - "surface": 8140000, - "canton": null, - "numero_insee": "60125" - } - }, - { - "pk": 29903, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CANNECTANCOURT", - "center": "POINT (640461.1633606759132817 2505740.8401069073006511)", - "surface": 7540000, - "canton": null, - "numero_insee": "60126" - } - }, - { - "pk": 10026, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CANNY-SUR-MATZ", - "center": "POINT (633606.0630466389702633 2511786.8417385104112327)", - "surface": 6900000, - "canton": null, - "numero_insee": "60127" - } - }, - { - "pk": 37777, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CANNY-SUR-THERAIN", - "center": "POINT (555152.7912424376700073 2512429.5171947423368692)", - "surface": 6020000, - "canton": null, - "numero_insee": "60128" - } - }, - { - "pk": 34126, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CARLEPONT", - "center": "POINT (649693.1804874392692000 2502616.6874865796416998)", - "surface": 19640000, - "canton": null, - "numero_insee": "60129" - } - }, - { - "pk": 4509, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CATENOY", - "center": "POINT (613103.4046325184172019 2486798.9624381018802524)", - "surface": 12590000, - "canton": null, - "numero_insee": "60130" - } - }, - { - "pk": 31031, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CATHEUX", - "center": "POINT (583232.7573959995061159 2516867.0528160436078906)", - "surface": 11830000, - "canton": null, - "numero_insee": "60131" - } - }, - { - "pk": 38020, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CATIGNY", - "center": "POINT (643781.2136852380353957 2515474.7588074761442840)", - "surface": 6750000, - "canton": null, - "numero_insee": "60132" - } - }, - { - "pk": 32223, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CATILLON-FUMECHON", - "center": "POINT (602959.1919032387668267 2503224.0600952534005046)", - "surface": 13280000, - "canton": null, - "numero_insee": "60133" - } - }, - { - "pk": 26151, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAUFFRY", - "center": "POINT (606761.1614174919668585 2479441.0493855993263423)", - "surface": 4710000, - "canton": null, - "numero_insee": "60134" - } - }, - { - "pk": 25940, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CAUVIGNY", - "center": "POINT (592961.7331987899960950 2478324.5909321904182434)", - "surface": 17370000, - "canton": null, - "numero_insee": "60135" - } - }, - { - "pk": 37892, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CEMPUIS", - "center": "POINT (574518.8742337970761582 2517894.7317096465267241)", - "surface": 9450000, - "canton": null, - "numero_insee": "60136" - } - }, - { - "pk": 36852, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CERNOY", - "center": "POINT (614644.5920269681373611 2493916.3772044242359698)", - "surface": 4990000, - "canton": null, - "numero_insee": "60137" - } - }, - { - "pk": 25406, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHAMANT", - "center": "POINT (620551.3857722402317449 2469750.6629214193671942)", - "surface": 12080000, - "canton": null, - "numero_insee": "60138" - } - }, - { - "pk": 30206, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHAMBLY", - "center": "POINT (593384.4371772300219163 2463718.7352645993232727)", - "surface": 12940000, - "canton": null, - "numero_insee": "60139" - } - }, - { - "pk": 33910, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHAMBORS", - "center": "POINT (561680.7736212033778429 2473659.7973712086677551)", - "surface": 6630000, - "canton": null, - "numero_insee": "60140" - } - }, - { - "pk": 35523, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHANTILLY", - "center": "POINT (610490.9797834798227996 2464262.6020160154439509)", - "surface": 16120000, - "canton": null, - "numero_insee": "60141" - } - }, - { - "pk": 33843, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA CHAPELLE-EN-SERVAL", - "center": "POINT (613845.0273860559100285 2458086.7442126059904695)", - "surface": 10810000, - "canton": null, - "numero_insee": "60142" - } - }, - { - "pk": 30268, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHAUMONT-EN-VEXIN", - "center": "POINT (566872.0264560547657311 2475104.1172079197131097)", - "surface": 18590000, - "canton": null, - "numero_insee": "60143" - } - }, - { - "pk": 27820, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHELLES", - "center": "POINT (651055.8692207459826022 2483416.1486532040871680)", - "surface": 9030000, - "canton": null, - "numero_insee": "60145" - } - }, - { - "pk": 28473, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHEPOIX", - "center": "POINT (603186.2725429745623842 2511931.3120957263745368)", - "surface": 9090000, - "canton": null, - "numero_insee": "60146" - } - }, - { - "pk": 26517, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHEVINCOURT", - "center": "POINT (637288.9168470548465848 2502211.9530503302812576)", - "surface": 8150000, - "canton": null, - "numero_insee": "60147" - } - }, - { - "pk": 27364, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHEVREVILLE", - "center": "POINT (638061.6794528622413054 2457990.3104074886068702)", - "surface": 10340000, - "canton": null, - "numero_insee": "60148" - } - }, - { - "pk": 13122, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHEVRIERES", - "center": "POINT (624941.1661424749763682 2483196.1602617911994457)", - "surface": 12650000, - "canton": null, - "numero_insee": "60149" - } - }, - { - "pk": 30679, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHIRY-OURSCAMP", - "center": "POINT (645981.0318579958984628 2503786.1287956237792969)", - "surface": 13460000, - "canton": null, - "numero_insee": "60150" - } - }, - { - "pk": 33663, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHOISY-AU-BAC", - "center": "POINT (640560.6451773935696110 2493934.3503570333123207)", - "surface": 15890000, - "canton": null, - "numero_insee": "60151" - } - }, - { - "pk": 13790, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHOISY-LA-VICTOIRE", - "center": "POINT (618908.3386873070849106 2486647.6335138585418463)", - "surface": 10130000, - "canton": null, - "numero_insee": "60152" - } - }, - { - "pk": 37717, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CHOQUEUSE-LES-BENARDS", - "center": "POINT (581030.7387696988880634 2516948.6634011212736368)", - "surface": 4220000, - "canton": null, - "numero_insee": "60153" - } - }, - { - "pk": 8386, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CINQUEUX", - "center": "POINT (614255.3191530283074826 2480704.7774630947969854)", - "surface": 6700000, - "canton": null, - "numero_insee": "60154" - } - }, - { - "pk": 4625, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CIRES-LES-MELLO", - "center": "POINT (600003.4973552082665265 2473880.7951664132997394)", - "surface": 16830000, - "canton": null, - "numero_insee": "60155" - } - }, - { - "pk": 13262, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CLAIROIX", - "center": "POINT (636859.4353574144188315 2493803.1067609870806336)", - "surface": 4710000, - "canton": null, - "numero_insee": "60156" - } - }, - { - "pk": 25326, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CLERMONT", - "center": "POINT (605199.8154959065141156 2486632.5040036896243691)", - "surface": 5790000, - "canton": null, - "numero_insee": "60157" - } - }, - { - "pk": 5391, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COIVREL", - "center": "POINT (615540.0158221989404410 2506431.6599538540467620)", - "surface": 6260000, - "canton": null, - "numero_insee": "60158" - } - }, - { - "pk": 14728, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COMPIEGNE", - "center": "POINT (637499.3809575649211183 2489105.5467304908670485)", - "surface": 53130000, - "canton": null, - "numero_insee": "60159" - } - }, - { - "pk": 8766, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CONCHY-LES-POTS", - "center": "POINT (628899.3129376251017675 2512247.5231384299695492)", - "surface": 9740000, - "canton": null, - "numero_insee": "60160" - } - }, - { - "pk": 3705, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CONTEVILLE", - "center": "POINT (579526.5815899024019018 2517336.3053842959925532)", - "surface": 3600000, - "canton": null, - "numero_insee": "60161" - } - }, - { - "pk": 37625, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CORBEIL-CERF", - "center": "POINT (583479.8172791611868888 2475443.3069189069792628)", - "surface": 3930000, - "canton": null, - "numero_insee": "60162" - } - }, - { - "pk": 14143, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CORMEILLES", - "center": "POINT (589843.0096596824005246 2516121.9762101909145713)", - "surface": 7200000, - "canton": null, - "numero_insee": "60163" - } - }, - { - "pk": 25873, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE COUDRAY-SAINT-GERMER", - "center": "POINT (563351.2542841355316341 2489283.6802683984860778)", - "surface": 13590000, - "canton": null, - "numero_insee": "60164" - } - }, - { - "pk": 12018, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE COUDRAY-SUR-THELLE", - "center": "POINT (584550.2561507549835369 2479054.5775332357734442)", - "surface": 3760000, - "canton": null, - "numero_insee": "60165" - } - }, - { - "pk": 19931, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COUDUN", - "center": "POINT (633541.5967049715109169 2495676.3525395174510777)", - "surface": 10560000, - "canton": null, - "numero_insee": "60166" - } - }, - { - "pk": 12846, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COULOISY", - "center": "POINT (650204.7873693517176434 2489412.7624650676734746)", - "surface": 3850000, - "canton": null, - "numero_insee": "60167" - } - }, - { - "pk": 37634, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COURCELLES-EPAYELLES", - "center": "POINT (620929.4935020526172593 2508077.9584070341661572)", - "surface": 6480000, - "canton": null, - "numero_insee": "60168" - } - }, - { - "pk": 7171, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COURCELLES-LES-GISORS", - "center": "POINT (556177.6287611396983266 2473613.7899924265220761)", - "surface": 6910000, - "canton": null, - "numero_insee": "60169" - } - }, - { - "pk": 36151, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COURTEUIL", - "center": "POINT (615065.8882626551203430 2467603.1864208402112126)", - "surface": 5360000, - "canton": null, - "numero_insee": "60170" - } - }, - { - "pk": 11133, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COURTIEUX", - "center": "POINT (654321.4277823356678709 2487746.4168122871778905)", - "surface": 2680000, - "canton": null, - "numero_insee": "60171" - } - }, - { - "pk": 32636, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "COYE-LA-FORET", - "center": "POINT (609719.9376369131496176 2460753.8461249480023980)", - "surface": 7060000, - "canton": null, - "numero_insee": "60172" - } - }, - { - "pk": 8325, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CRAMOISY", - "center": "POINT (604219.3383843798656017 2472315.1594084301032126)", - "surface": 6360000, - "canton": null, - "numero_insee": "60173" - } - }, - { - "pk": 28207, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CRAPEAUMESNIL", - "center": "POINT (633970.8927583830663934 2515992.4739577211439610)", - "surface": 4920000, - "canton": null, - "numero_insee": "60174" - } - }, - { - "pk": 14072, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CREIL", - "center": "POINT (610719.6958117309259251 2472770.0149574773386121)", - "surface": 11040000, - "canton": null, - "numero_insee": "60175" - } - }, - { - "pk": 25745, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CREPY-EN-VALOIS", - "center": "POINT (640753.7110099445562810 2471021.4345179013907909)", - "surface": 16460000, - "canton": null, - "numero_insee": "60176" - } - }, - { - "pk": 22687, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CRESSONSACQ", - "center": "POINT (616740.7103379792533815 2494534.3722422397695482)", - "surface": 6480000, - "canton": null, - "numero_insee": "60177" - } - }, - { - "pk": 29981, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CREVECOEUR-LE-GRAND", - "center": "POINT (581765.4842837505275384 2512852.3247943115420640)", - "surface": 12300000, - "canton": null, - "numero_insee": "60178" - } - }, - { - "pk": 3978, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CREVECOEUR-LE-PETIT", - "center": "POINT (611720.2904333266196772 2508500.8485443391837180)", - "surface": 3320000, - "canton": null, - "numero_insee": "60179" - } - }, - { - "pk": 33171, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CRILLON", - "center": "POINT (570138.7161437880713493 2503249.1328085768036544)", - "surface": 8660000, - "canton": null, - "numero_insee": "60180" - } - }, - { - "pk": 30234, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CRISOLLES", - "center": "POINT (649695.3529600608162582 2514223.8301924131810665)", - "surface": 10670000, - "canton": null, - "numero_insee": "60181" - } - }, - { - "pk": 12420, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE CROCQ", - "center": "POINT (589262.8210536371916533 2513715.6513095274567604)", - "surface": 3080000, - "canton": null, - "numero_insee": "60182" - } - }, - { - "pk": 30721, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CROISSY-SUR-CELLE", - "center": "POINT (588096.8011307739652693 2521510.6038082013837993)", - "surface": 11110000, - "canton": null, - "numero_insee": "60183" - } - }, - { - "pk": 34541, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CROUTOY", - "center": "POINT (650827.0638387189246714 2486816.3711738488636911)", - "surface": 3240000, - "canton": null, - "numero_insee": "60184" - } - }, - { - "pk": 7615, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CROUY-EN-THELLE", - "center": "POINT (598752.2975886369822547 2467966.4943448128178716)", - "surface": 5850000, - "canton": null, - "numero_insee": "60185" - } - }, - { - "pk": 12159, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CUIGNIERES", - "center": "POINT (609736.8295748656382784 2494475.5119394129142165)", - "surface": 6290000, - "canton": null, - "numero_insee": "60186" - } - }, - { - "pk": 31195, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CUIGY-EN-BRAY", - "center": "POINT (563521.2396571596618742 2492887.3615498743019998)", - "surface": 9780000, - "canton": null, - "numero_insee": "60187" - } - }, - { - "pk": 36917, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CUISE-LA-MOTTE", - "center": "POINT (648117.1136899827979505 2487794.1488569867797196)", - "surface": 10170000, - "canton": null, - "numero_insee": "60188" - } - }, - { - "pk": 28031, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CUTS", - "center": "POINT (655482.0042399833910167 2504366.5719290981069207)", - "surface": 10800000, - "canton": null, - "numero_insee": "60189" - } - }, - { - "pk": 11975, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CUVERGNON", - "center": "POINT (648216.1674370120745152 2464179.8712755534797907)", - "surface": 7170000, - "canton": null, - "numero_insee": "60190" - } - }, - { - "pk": 34123, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CUVILLY", - "center": "POINT (626352.6334453221643344 2505722.1036760308779776)", - "surface": 8620000, - "canton": null, - "numero_insee": "60191" - } - }, - { - "pk": 3650, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "CUY", - "center": "POINT (641426.2966554465238005 2509951.5537571669556201)", - "surface": 4330000, - "canton": null, - "numero_insee": "60192" - } - }, - { - "pk": 36858, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DAMERAUCOURT", - "center": "POINT (570075.4869479206390679 2522760.4967964398674667)", - "surface": 8580000, - "canton": null, - "numero_insee": "60193" - } - }, - { - "pk": 28840, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DARGIES", - "center": "POINT (574280.2337370163295418 2522495.5124502186663449)", - "surface": 14510000, - "canton": null, - "numero_insee": "60194" - } - }, - { - "pk": 37156, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DELINCOURT", - "center": "POINT (563200.8785846644314006 2471371.0319690452888608)", - "surface": 8050000, - "canton": null, - "numero_insee": "60195" - } - }, - { - "pk": 3814, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE DELUGE", - "center": "POINT (583563.9431485726963729 2477345.2270457418635488)", - "surface": 3710000, - "canton": null, - "numero_insee": "60196" - } - }, - { - "pk": 24799, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DIEUDONNE", - "center": "POINT (592919.5835488330340013 2471419.8157691941596568)", - "surface": 10440000, - "canton": null, - "numero_insee": "60197" - } - }, - { - "pk": 28174, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DOMELIERS", - "center": "POINT (587554.3558128374861553 2514601.8759574610739946)", - "surface": 6110000, - "canton": null, - "numero_insee": "60199" - } - }, - { - "pk": 3708, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DOMFRONT", - "center": "POINT (615899.0212893895804882 2511337.6836529527790844)", - "surface": 2740000, - "canton": null, - "numero_insee": "60200" - } - }, - { - "pk": 7781, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DOMPIERRE", - "center": "POINT (614304.0426468218211085 2510623.8488785983063281)", - "surface": 2730000, - "canton": null, - "numero_insee": "60201" - } - }, - { - "pk": 29904, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "DUVY", - "center": "POINT (637255.0758835038868710 2470591.7018298208713531)", - "surface": 8560000, - "canton": null, - "numero_insee": "60203" - } - }, - { - "pk": 10183, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ECUVILLY", - "center": "POINT (641868.3884246969828382 2516859.4884812682867050)", - "surface": 5830000, - "canton": null, - "numero_insee": "60204" - } - }, - { - "pk": 8617, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ELENCOURT", - "center": "POINT (568081.9576920955441892 2521843.2726439228281379)", - "surface": 1330000, - "canton": null, - "numero_insee": "60205" - } - }, - { - "pk": 14187, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ELINCOURT-SAINTE-MARGUERITE", - "center": "POINT (635673.7145001199096441 2503899.3997792555019259)", - "surface": 10990000, - "canton": null, - "numero_insee": "60206" - } - }, - { - "pk": 12847, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "EMEVILLE", - "center": "POINT (650017.6935090818442404 2476002.6758665638044477)", - "surface": 1870000, - "canton": null, - "numero_insee": "60207" - } - }, - { - "pk": 32912, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ENENCOURT-LEAGE", - "center": "POINT (564141.1940091975266114 2478583.5095550003461540)", - "surface": 4520000, - "canton": null, - "numero_insee": "60208" - } - }, - { - "pk": 34582, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ENENCOURT-LE-SEC", - "center": "POINT (569453.4134606970474124 2477527.2522817552089691)", - "surface": 5980000, - "canton": null, - "numero_insee": "60209" - } - }, - { - "pk": 11482, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "EPINEUSE", - "center": "POINT (615484.5649463830050081 2489220.4884381191805005)", - "surface": 7210000, - "canton": null, - "numero_insee": "60210" - } - }, - { - "pk": 13259, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ERAGNY-SUR-EPTE", - "center": "POINT (559931.2802066674921662 2479448.8771268981508911)", - "surface": 8510000, - "canton": null, - "numero_insee": "60211" - } - }, - { - "pk": 11873, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ERCUIS", - "center": "POINT (597930.0060711225960404 2470561.2716527655720711)", - "surface": 4400000, - "canton": null, - "numero_insee": "60212" - } - }, - { - "pk": 30421, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ERMENONVILLE", - "center": "POINT (626248.0553558475803584 2458691.3734488412737846)", - "surface": 16820000, - "canton": null, - "numero_insee": "60213" - } - }, - { - "pk": 37742, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ERNEMONT-BOUTAVENT", - "center": "POINT (560770.0396831502439454 2510775.4337756731547415)", - "surface": 9050000, - "canton": null, - "numero_insee": "60214" - } - }, - { - "pk": 9800, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ERQUERY", - "center": "POINT (608668.1583697148598731 2490664.1532190693542361)", - "surface": 5980000, - "canton": null, - "numero_insee": "60215" - } - }, - { - "pk": 6453, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ERQUINVILLERS", - "center": "POINT (611026.6214638170786202 2495787.1602322626858950)", - "surface": 3750000, - "canton": null, - "numero_insee": "60216" - } - }, - { - "pk": 17291, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ESCAMES", - "center": "POINT (561504.7217956046806648 2506679.0621592663228512)", - "surface": 11750000, - "canton": null, - "numero_insee": "60217" - } - }, - { - "pk": 6372, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ESCHES", - "center": "POINT (588125.2205960553837940 2470378.9678935906849802)", - "surface": 7800000, - "canton": null, - "numero_insee": "60218" - } - }, - { - "pk": 23929, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ESCLES-SAINT-PIERRE", - "center": "POINT (561429.9170903119957075 2527591.1134851248934865)", - "surface": 3330000, - "canton": null, - "numero_insee": "60219" - } - }, - { - "pk": 10197, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ESPAUBOURG", - "center": "POINT (565730.8334395566489547 2491905.2174645406194031)", - "surface": 6070000, - "canton": null, - "numero_insee": "60220" - } - }, - { - "pk": 28832, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ESQUENNOY", - "center": "POINT (595034.0509885546052828 2517566.3634986914694309)", - "surface": 9870000, - "canton": null, - "numero_insee": "60221" - } - }, - { - "pk": 28630, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ESSUILES", - "center": "POINT (595898.1169651683885604 2498061.6359116043895483)", - "surface": 13610000, - "canton": null, - "numero_insee": "60222" - } - }, - { - "pk": 33581, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ETAVIGNY", - "center": "POINT (646959.2818880277918652 2458965.8835066659376025)", - "surface": 7200000, - "canton": null, - "numero_insee": "60224" - } - }, - { - "pk": 35230, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ETOUY", - "center": "POINT (602351.2059099236503243 2492212.1093077063560486)", - "surface": 9560000, - "canton": null, - "numero_insee": "60225" - } - }, - { - "pk": 25133, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "EVE", - "center": "POINT (627184.7864262781804428 2454396.4358894200995564)", - "surface": 10480000, - "canton": null, - "numero_insee": "60226" - } - }, - { - "pk": 27859, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "EVRICOURT", - "center": "POINT (641940.9015851144213229 2508254.8473559767007828)", - "surface": 3070000, - "canton": null, - "numero_insee": "60227" - } - }, - { - "pk": 12975, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FAY-LES-ETANGS", - "center": "POINT (571397.2060642553260550 2472440.2533731651492417)", - "surface": 8610000, - "canton": null, - "numero_insee": "60228" - } - }, - { - "pk": 3937, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE FAYEL", - "center": "POINT (626117.4269479888025671 2486107.8932843301445246)", - "surface": 2660000, - "canton": null, - "numero_insee": "60229" - } - }, - { - "pk": 34116, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE FAY-SAINT-QUENTIN", - "center": "POINT (593726.2781144244363531 2494541.2339333081617951)", - "surface": 7260000, - "canton": null, - "numero_insee": "60230" - } - }, - { - "pk": 32051, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FEIGNEUX", - "center": "POINT (642030.8467078786343336 2473833.9973166375420988)", - "surface": 11600000, - "canton": null, - "numero_insee": "60231" - } - }, - { - "pk": 5358, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FERRIERES", - "center": "POINT (612706.5397336400346830 2510210.1783003602176905)", - "surface": 4840000, - "canton": null, - "numero_insee": "60232" - } - }, - { - "pk": 33325, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FEUQUIERES", - "center": "POINT (564820.3715169614879414 2517013.0837964829988778)", - "surface": 12230000, - "canton": null, - "numero_insee": "60233" - } - }, - { - "pk": 25744, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FITZ-JAMES", - "center": "POINT (606680.4886217236053199 2489046.4517886466346681)", - "surface": 9850000, - "canton": null, - "numero_insee": "60234" - } - }, - { - "pk": 36190, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FLAVACOURT", - "center": "POINT (563001.2390566582325846 2483276.9636506186798215)", - "surface": 18530000, - "canton": null, - "numero_insee": "60235" - } - }, - { - "pk": 10205, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FLAVY-LE-MELDEUX", - "center": "POINT (651338.0359110240824521 2521141.8709488399326801)", - "surface": 3190000, - "canton": null, - "numero_insee": "60236" - } - }, - { - "pk": 13754, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FLECHY", - "center": "POINT (592329.2475665336241946 2517943.9178100209683180)", - "surface": 4770000, - "canton": null, - "numero_insee": "60237" - } - }, - { - "pk": 14898, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FLEURINES", - "center": "POINT (618615.8007940495153889 2473837.0246878420002759)", - "surface": 12010000, - "canton": null, - "numero_insee": "60238" - } - }, - { - "pk": 26342, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FLEURY", - "center": "POINT (573002.3103573499247432 2471953.3680760036222637)", - "surface": 6300000, - "canton": null, - "numero_insee": "60239" - } - }, - { - "pk": 20759, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FONTAINE-CHAALIS", - "center": "POINT (623619.6039884389610961 2461871.3482871651649475)", - "surface": 33560000, - "canton": null, - "numero_insee": "60241" - } - }, - { - "pk": 33123, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FONTAINE-LAVAGANNE", - "center": "POINT (572272.9182750595500693 2511271.9124177685007453)", - "surface": 6750000, - "canton": null, - "numero_insee": "60242" - } - }, - { - "pk": 37901, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FONTAINE-SAINT-LUCIEN", - "center": "POINT (586170.1212018420919776 2500681.7337775253690779)", - "surface": 7260000, - "canton": null, - "numero_insee": "60243" - } - }, - { - "pk": 26087, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FONTENAY-TORCY", - "center": "POINT (558591.4311241932446137 2508055.5648112143389881)", - "surface": 5960000, - "canton": null, - "numero_insee": "60244" - } - }, - { - "pk": 34197, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FORMERIE", - "center": "POINT (555914.7585548409260809 2517038.6841794056817889)", - "surface": 8390000, - "canton": null, - "numero_insee": "60245" - } - }, - { - "pk": 31831, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FOSSEUSE", - "center": "POINT (588841.5617648604093120 2468483.7478633904829621)", - "surface": 4420000, - "canton": null, - "numero_insee": "60246" - } - }, - { - "pk": 29755, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FOUILLEUSE", - "center": "POINT (614759.7852392933564261 2492116.2180890766903758)", - "surface": 2970000, - "canton": null, - "numero_insee": "60247" - } - }, - { - "pk": 25308, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FOUILLOY", - "center": "POINT (562543.0487059782026336 2526099.5238379468210042)", - "surface": 4660000, - "canton": null, - "numero_insee": "60248" - } - }, - { - "pk": 31143, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FOULANGUES", - "center": "POINT (598289.0916808538604528 2475467.4324690457433462)", - "surface": 5190000, - "canton": null, - "numero_insee": "60249" - } - }, - { - "pk": 14181, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FOUQUENIES", - "center": "POINT (577700.6440211470471695 2496408.1602130560204387)", - "surface": 6350000, - "canton": null, - "numero_insee": "60250" - } - }, - { - "pk": 7411, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FOUQUEROLLES", - "center": "POINT (591114.7674615434370935 2495720.0802167393267155)", - "surface": 10290000, - "canton": null, - "numero_insee": "60251" - } - }, - { - "pk": 35524, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FOURNIVAL", - "center": "POINT (603218.1044983036117628 2496221.8883336763828993)", - "surface": 11100000, - "canton": null, - "numero_insee": "60252" - } - }, - { - "pk": 16575, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRANCASTEL", - "center": "POINT (586389.7726310399593785 2510289.4889302663505077)", - "surface": 12640000, - "canton": null, - "numero_insee": "60253" - } - }, - { - "pk": 26779, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRANCIERES", - "center": "POINT (623946.3847917229868472 2494394.8447670433670282)", - "surface": 8530000, - "canton": null, - "numero_insee": "60254" - } - }, - { - "pk": 26324, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRENICHES", - "center": "POINT (648246.5088980384171009 2519915.0728526725433767)", - "surface": 5870000, - "canton": null, - "numero_insee": "60255" - } - }, - { - "pk": 31603, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRESNEAUX-MONTCHEVREUIL", - "center": "POINT (576264.8199563331436366 2476683.6982290716841817)", - "surface": 11320000, - "canton": null, - "numero_insee": "60256" - } - }, - { - "pk": 29718, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRESNE-LEGUILLON", - "center": "POINT (574598.2005069336155429 2472567.1148789525032043)", - "surface": 7430000, - "canton": null, - "numero_insee": "60257" - } - }, - { - "pk": 10074, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRESNIERES", - "center": "POINT (634087.7972557006869465 2513992.2410713778808713)", - "surface": 2980000, - "canton": null, - "numero_insee": "60258" - } - }, - { - "pk": 25345, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRESNOY-EN-THELLE", - "center": "POINT (594559.9510946390219033 2466730.5417730188928545)", - "surface": 6280000, - "canton": null, - "numero_insee": "60259" - } - }, - { - "pk": 20965, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRESNOY-LA-RIVIERE", - "center": "POINT (642915.3385023396695033 2475742.6697941781021655)", - "surface": 6860000, - "canton": null, - "numero_insee": "60260" - } - }, - { - "pk": 32794, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRESNOY-LE-LUAT", - "center": "POINT (631070.0503245113650337 2468338.1990117640234530)", - "surface": 11590000, - "canton": null, - "numero_insee": "60261" - } - }, - { - "pk": 29985, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE FRESTOY-VAUX", - "center": "POINT (619604.3874175077071413 2510968.5923257181420922)", - "surface": 8840000, - "canton": null, - "numero_insee": "60262" - } - }, - { - "pk": 35002, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FRETOY-LE-CHATEAU", - "center": "POINT (645957.0905056330375373 2518494.9221582245081663)", - "surface": 4960000, - "canton": null, - "numero_insee": "60263" - } - }, - { - "pk": 8383, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FROCOURT", - "center": "POINT (581581.5461824326775968 2487034.7744075395166874)", - "surface": 6480000, - "canton": null, - "numero_insee": "60264" - } - }, - { - "pk": 5162, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "FROISSY", - "center": "POINT (591114.9735902297543362 2507627.4498198684304953)", - "surface": 6630000, - "canton": null, - "numero_insee": "60265" - } - }, - { - "pk": 9278, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE GALLET", - "center": "POINT (583755.6639033319661394 2514169.7933672191575170)", - "surface": 3480000, - "canton": null, - "numero_insee": "60267" - } - }, - { - "pk": 29543, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GANNES", - "center": "POINT (605917.1404049862176180 2508452.0998774906620383)", - "surface": 8610000, - "canton": null, - "numero_insee": "60268" - } - }, - { - "pk": 34583, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GAUDECHART", - "center": "POINT (572754.7624158069957048 2513477.2888319804333150)", - "surface": 5760000, - "canton": null, - "numero_insee": "60269" - } - }, - { - "pk": 32269, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GENVRY", - "center": "POINT (647605.1898490930907428 2512905.4115100055932999)", - "surface": 5150000, - "canton": null, - "numero_insee": "60270" - } - }, - { - "pk": 27547, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GERBEROY", - "center": "POINT (564122.8763264388544485 2504699.7264063539914787)", - "surface": 4510000, - "canton": null, - "numero_insee": "60271" - } - }, - { - "pk": 19149, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GILOCOURT", - "center": "POINT (640292.7815978764556348 2478222.1687498488463461)", - "surface": 6900000, - "canton": null, - "numero_insee": "60272" - } - }, - { - "pk": 26346, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GIRAUMONT", - "center": "POINT (635328.2676956895738840 2497392.4584362702444196)", - "surface": 3540000, - "canton": null, - "numero_insee": "60273" - } - }, - { - "pk": 12023, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GLAIGNES", - "center": "POINT (636616.8075069157639518 2475089.2182047967799008)", - "surface": 5460000, - "canton": null, - "numero_insee": "60274" - } - }, - { - "pk": 29877, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GLATIGNY", - "center": "POINT (568366.1957582448376343 2499832.1944476915523410)", - "surface": 3530000, - "canton": null, - "numero_insee": "60275" - } - }, - { - "pk": 9283, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GODENVILLERS", - "center": "POINT (615214.6219776703510433 2509430.7674564453773201)", - "surface": 5110000, - "canton": null, - "numero_insee": "60276" - } - }, - { - "pk": 35755, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GOINCOURT", - "center": "POINT (577938.4648774400120601 2491907.3386768479831517)", - "surface": 6470000, - "canton": null, - "numero_insee": "60277" - } - }, - { - "pk": 28248, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GOLANCOURT", - "center": "POINT (652821.9536483560223132 2523155.5946902311407030)", - "surface": 4130000, - "canton": null, - "numero_insee": "60278" - } - }, - { - "pk": 4326, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GONDREVILLE", - "center": "POINT (644571.0704243272775784 2469252.4447642378509045)", - "surface": 7190000, - "canton": null, - "numero_insee": "60279" - } - }, - { - "pk": 3256, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GOURCHELLES", - "center": "POINT (559745.7491206462727860 2525575.8341447478160262)", - "surface": 2230000, - "canton": null, - "numero_insee": "60280" - } - }, - { - "pk": 23048, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GOURNAY-SUR-ARONDE", - "center": "POINT (625696.8705406306544319 2500413.3091426244936883)", - "surface": 15130000, - "canton": null, - "numero_insee": "60281" - } - }, - { - "pk": 34124, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GOUVIEUX", - "center": "POINT (606075.8283238892909139 2465726.4882270595990121)", - "surface": 23330000, - "canton": null, - "numero_insee": "60282" - } - }, - { - "pk": 13077, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GOUY-LES-GROSEILLERS", - "center": "POINT (591294.3103861869312823 2522037.7158374749124050)", - "surface": 2990000, - "canton": null, - "numero_insee": "60283" - } - }, - { - "pk": 28472, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GRANDFRESNOY", - "center": "POINT (623412.5451479712501168 2486485.3891424317844212)", - "surface": 10770000, - "canton": null, - "numero_insee": "60284" - } - }, - { - "pk": 30565, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GRANDVILLERS-AUX-BOIS", - "center": "POINT (619427.9038788313046098 2496258.0273004765622318)", - "surface": 6580000, - "canton": null, - "numero_insee": "60285" - } - }, - { - "pk": 33094, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GRANDVILLIERS", - "center": "POINT (570909.4086025469005108 2518765.0616654059849679)", - "surface": 6630000, - "canton": null, - "numero_insee": "60286" - } - }, - { - "pk": 32276, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GRANDRU", - "center": "POINT (653607.5817045228322968 2513056.0983820981346071)", - "surface": 7600000, - "canton": null, - "numero_insee": "60287" - } - }, - { - "pk": 25669, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GREMEVILLERS", - "center": "POINT (568807.0256422149250284 2506940.2689356729388237)", - "surface": 6880000, - "canton": null, - "numero_insee": "60288" - } - }, - { - "pk": 31997, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GREZ", - "center": "POINT (574041.2232589675113559 2515189.0936380731873214)", - "surface": 5920000, - "canton": null, - "numero_insee": "60289" - } - }, - { - "pk": 33599, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GUIGNECOURT", - "center": "POINT (584885.3393615842796862 2498769.7859931210987270)", - "surface": 4620000, - "canton": null, - "numero_insee": "60290" - } - }, - { - "pk": 21632, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GUISCARD", - "center": "POINT (651863.6217262484133244 2518144.4890681868419051)", - "surface": 20610000, - "canton": null, - "numero_insee": "60291" - } - }, - { - "pk": 30780, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "GURY", - "center": "POINT (633636.3932255405234173 2508184.8913471749983728)", - "surface": 5040000, - "canton": null, - "numero_insee": "60292" - } - }, - { - "pk": 33151, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HADANCOURT-LE-HAUT-CLOCHER", - "center": "POINT (564649.3884675559820607 2465679.4662569374777377)", - "surface": 8690000, - "canton": null, - "numero_insee": "60293" - } - }, - { - "pk": 14033, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HALLOY", - "center": "POINT (571024.5356291051721200 2516964.9345063637010753)", - "surface": 3840000, - "canton": null, - "numero_insee": "60295" - } - }, - { - "pk": 11300, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HANNACHES", - "center": "POINT (561649.1200113594532013 2501376.9985643555410206)", - "surface": 9630000, - "canton": null, - "numero_insee": "60296" - } - }, - { - "pk": 12115, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE HAMEL", - "center": "POINT (576531.6758892699144781 2516510.7364986753091216)", - "surface": 7810000, - "canton": null, - "numero_insee": "60297" - } - }, - { - "pk": 7028, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HANVOILE", - "center": "POINT (566952.8683731160126626 2501321.2990121603943408)", - "surface": 5860000, - "canton": null, - "numero_insee": "60298" - } - }, - { - "pk": 31832, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HARDIVILLERS", - "center": "POINT (591865.9006814148742706 2513537.3577272072434425)", - "surface": 9750000, - "canton": null, - "numero_insee": "60299" - } - }, - { - "pk": 29751, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HARDIVILLERS-EN-VEXIN", - "center": "POINT (570739.9159648109925911 2479239.1037021307274699)", - "surface": 4860000, - "canton": null, - "numero_insee": "60300" - } - }, - { - "pk": 6672, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HAUCOURT", - "center": "POINT (570557.3580053045880049 2501051.2753607872873545)", - "surface": 3960000, - "canton": null, - "numero_insee": "60301" - } - }, - { - "pk": 4769, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HAUDIVILLERS", - "center": "POINT (593089.8584657362662256 2498838.5754359848797321)", - "surface": 9900000, - "canton": null, - "numero_insee": "60302" - } - }, - { - "pk": 19938, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HAUTBOS", - "center": "POINT (566241.2115264026215300 2514623.5111894663423300)", - "surface": 4300000, - "canton": null, - "numero_insee": "60303" - } - }, - { - "pk": 22833, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HAUTE-EPINE", - "center": "POINT (576090.0557357677025720 2509502.7689596936106682)", - "surface": 6820000, - "canton": null, - "numero_insee": "60304" - } - }, - { - "pk": 29767, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HAUTEFONTAINE", - "center": "POINT (652740.7895778815727681 2485331.5651572151109576)", - "surface": 5520000, - "canton": null, - "numero_insee": "60305" - } - }, - { - "pk": 37841, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HECOURT", - "center": "POINT (559633.8005151672987267 2503061.1994214528240263)", - "surface": 7520000, - "canton": null, - "numero_insee": "60306" - } - }, - { - "pk": 24419, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HEILLES", - "center": "POINT (595135.2813611845485866 2481644.9247828694060445)", - "surface": 6040000, - "canton": null, - "numero_insee": "60307" - } - }, - { - "pk": 24218, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HEMEVILLERS", - "center": "POINT (624323.0373247596435249 2497199.7609992427751422)", - "surface": 6960000, - "canton": null, - "numero_insee": "60308" - } - }, - { - "pk": 12111, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HENONVILLE", - "center": "POINT (579539.5607060671318322 2468005.5333860707469285)", - "surface": 6900000, - "canton": null, - "numero_insee": "60309" - } - }, - { - "pk": 24147, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HERCHIES", - "center": "POINT (575781.9985608663409948 2498493.3999461689963937)", - "surface": 4420000, - "canton": null, - "numero_insee": "60310" - } - }, - { - "pk": 33603, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA HERELLE", - "center": "POINT (606194.6157508816104382 2511156.0842757457867265)", - "surface": 5110000, - "canton": null, - "numero_insee": "60311" - } - }, - { - "pk": 17216, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HERICOURT-SUR-THERAIN", - "center": "POINT (558474.6484866689424962 2510055.8147695292718709)", - "surface": 4380000, - "canton": null, - "numero_insee": "60312" - } - }, - { - "pk": 17867, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HERMES", - "center": "POINT (594110.3759936646092683 2484538.1660824608989060)", - "surface": 11900000, - "canton": null, - "numero_insee": "60313" - } - }, - { - "pk": 13258, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HETOMESNIL", - "center": "POINT (578546.1581204495159909 2514926.6354299769736826)", - "surface": 7800000, - "canton": null, - "numero_insee": "60314" - } - }, - { - "pk": 37098, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HODENC-EN-BRAY", - "center": "POINT (568988.2952416668413207 2497235.7838632399216294)", - "surface": 9820000, - "canton": null, - "numero_insee": "60315" - } - }, - { - "pk": 9488, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HODENC-L'EVEQUE", - "center": "POINT (585825.8336062120506540 2482067.1771562546491623)", - "surface": 3450000, - "canton": null, - "numero_insee": "60316" - } - }, - { - "pk": 18294, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HONDAINVILLE", - "center": "POINT (597825.8914629092905670 2482968.3254428301006556)", - "surface": 6180000, - "canton": null, - "numero_insee": "60317" - } - }, - { - "pk": 8028, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "HOUDANCOURT", - "center": "POINT (622648.2864137570140883 2482176.2367727435193956)", - "surface": 6800000, - "canton": null, - "numero_insee": "60318" - } - }, - { - "pk": 22834, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA HOUSSOYE", - "center": "POINT (571700.2821737331105396 2484050.1914170738309622)", - "surface": 6580000, - "canton": null, - "numero_insee": "60319" - } - }, - { - "pk": 12218, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "IVRY-LE-TEMPLE", - "center": "POINT (577617.5158988876501098 2470491.0475022541359067)", - "surface": 12540000, - "canton": null, - "numero_insee": "60321" - } - }, - { - "pk": 13093, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "JAMERICOURT", - "center": "POINT (566244.8974492676788941 2478300.9161207373254001)", - "surface": 4270000, - "canton": null, - "numero_insee": "60322" - } - }, - { - "pk": 8900, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "JANVILLE", - "center": "POINT (637848.1902692459989339 2495212.3109043627046049)", - "surface": 930000, - "canton": null, - "numero_insee": "60323" - } - }, - { - "pk": 19071, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "JAULZY", - "center": "POINT (652517.8881565963383764 2488031.3906821645796299)", - "surface": 7590000, - "canton": null, - "numero_insee": "60324" - } - }, - { - "pk": 11661, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "JAUX", - "center": "POINT (631198.3882180671207607 2488752.2971169054508209)", - "surface": 8620000, - "canton": null, - "numero_insee": "60325" - } - }, - { - "pk": 12945, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "JONQUIERES", - "center": "POINT (628893.7340714336605743 2489133.1495139496400952)", - "surface": 7350000, - "canton": null, - "numero_insee": "60326" - } - }, - { - "pk": 27412, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "JOUY-SOUS-THELLE", - "center": "POINT (572630.1047284647356719 2480555.7531238091178238)", - "surface": 12970000, - "canton": null, - "numero_insee": "60327" - } - }, - { - "pk": 20118, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "JUVIGNIES", - "center": "POINT (582148.6407829653471708 2502949.4558129920624197)", - "surface": 8120000, - "canton": null, - "numero_insee": "60328" - } - }, - { - "pk": 13022, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LABERLIERE", - "center": "POINT (630830.6607815084280446 2508661.5758680375292897)", - "surface": 3500000, - "canton": null, - "numero_insee": "60329" - } - }, - { - "pk": 35270, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LABOISSIERE-EN-THELLE", - "center": "POINT (586572.3583536942023784 2476569.9300152766518295)", - "surface": 9710000, - "canton": null, - "numero_insee": "60330" - } - }, - { - "pk": 11479, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LABOSSE", - "center": "POINT (568097.4172109168721363 2484120.1024638009257615)", - "surface": 14280000, - "canton": null, - "numero_insee": "60331" - } - }, - { - "pk": 5589, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LABRUYERE", - "center": "POINT (612427.3954127753386274 2483891.4473559651523829)", - "surface": 2460000, - "canton": null, - "numero_insee": "60332" - } - }, - { - "pk": 12931, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LACHAPELLE-SAINT-PIERRE", - "center": "POINT (592593.3960092988563702 2474519.0711701228283346)", - "surface": 4180000, - "canton": null, - "numero_insee": "60334" - } - }, - { - "pk": 11883, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LACHAPELLE-SOUS-GERBEROY", - "center": "POINT (566621.7315859406953678 2505020.8147589564323425)", - "surface": 4990000, - "canton": null, - "numero_insee": "60335" - } - }, - { - "pk": 11209, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LACHAUSSEE-DU-BOIS-D'ECU", - "center": "POINT (588316.8058203525142744 2507203.7416653265245259)", - "surface": 5930000, - "canton": null, - "numero_insee": "60336" - } - }, - { - "pk": 36008, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LACHELLE", - "center": "POINT (629761.3910321900621057 2493042.9016600376926363)", - "surface": 9230000, - "canton": null, - "numero_insee": "60337" - } - }, - { - "pk": 32268, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LACROIX-SAINT-OUEN", - "center": "POINT (633338.3164737727493048 2484167.4078069669194520)", - "surface": 20950000, - "canton": null, - "numero_insee": "60338" - } - }, - { - "pk": 7384, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAFRAYE", - "center": "POINT (590881.9337409965228289 2499620.5550063080154359)", - "surface": 5560000, - "canton": null, - "numero_insee": "60339" - } - }, - { - "pk": 33177, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAGNY", - "center": "POINT (641803.7477884258842096 2512656.3862151550129056)", - "surface": 10680000, - "canton": null, - "numero_insee": "60340" - } - }, - { - "pk": 12187, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAGNY-LE-SEC", - "center": "POINT (630094.9100724388845265 2453420.2704258984886110)", - "surface": 11300000, - "canton": null, - "numero_insee": "60341" - } - }, - { - "pk": 12291, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAIGNEVILLE", - "center": "POINT (607075.6177525430684909 2477742.6060421448200941)", - "surface": 8530000, - "canton": null, - "numero_insee": "60342" - } - }, - { - "pk": 13613, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LALANDE-EN-SON", - "center": "POINT (559859.3359070623992011 2488053.7244369396939874)", - "surface": 6040000, - "canton": null, - "numero_insee": "60343" - } - }, - { - "pk": 5301, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LALANDELLE", - "center": "POINT (566165.3756184622179717 2487806.2752543906681240)", - "surface": 11370000, - "canton": null, - "numero_insee": "60344" - } - }, - { - "pk": 10958, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAMECOURT", - "center": "POINT (609253.3631348100025207 2492470.1985960742458701)", - "surface": 3450000, - "canton": null, - "numero_insee": "60345" - } - }, - { - "pk": 14351, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAMORLAYE", - "center": "POINT (606003.5003684879047796 2462423.7371856742538512)", - "surface": 15170000, - "canton": null, - "numero_insee": "60346" - } - }, - { - "pk": 12617, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LANNOY-CUILLERE", - "center": "POINT (556559.9422864218940958 2523648.0624569077044725)", - "surface": 14960000, - "canton": null, - "numero_insee": "60347" - } - }, - { - "pk": 28435, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LARBROYE", - "center": "POINT (645141.7961374125443399 2508381.8875835756771266)", - "surface": 2180000, - "canton": null, - "numero_insee": "60348" - } - }, - { - "pk": 4125, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LASSIGNY", - "center": "POINT (636610.2121270443312824 2511511.9583633118309081)", - "surface": 16830000, - "canton": null, - "numero_insee": "60350" - } - }, - { - "pk": 25946, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LATAULE", - "center": "POINT (624462.5403973725624382 2504405.3991586836054921)", - "surface": 7380000, - "canton": null, - "numero_insee": "60351" - } - }, - { - "pk": 27411, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LATTAINVILLE", - "center": "POINT (561498.2300882606068626 2471556.9214745094068348)", - "surface": 3460000, - "canton": null, - "numero_insee": "60352" - } - }, - { - "pk": 22579, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAVACQUERIE", - "center": "POINT (582903.2530251818243414 2520366.4105629036203027)", - "surface": 8290000, - "canton": null, - "numero_insee": "60353" - } - }, - { - "pk": 13216, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAVERRIERE", - "center": "POINT (576393.9187412344617769 2521012.3064976157620549)", - "surface": 3710000, - "canton": null, - "numero_insee": "60354" - } - }, - { - "pk": 33652, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAVERSINES", - "center": "POINT (590141.0616249174345285 2492509.9141825651749969)", - "surface": 13950000, - "canton": null, - "numero_insee": "60355" - } - }, - { - "pk": 29195, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LAVILLETERTRE", - "center": "POINT (570651.1819500323617831 2465929.8144889739342034)", - "surface": 16400000, - "canton": null, - "numero_insee": "60356" - } - }, - { - "pk": 9684, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LEGLANTIERS", - "center": "POINT (614092.1768689982127398 2500115.5971734123304486)", - "surface": 7810000, - "canton": null, - "numero_insee": "60357" - } - }, - { - "pk": 9539, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LEVIGNEN", - "center": "POINT (642190.7714505048934370 2466730.7662284029647708)", - "surface": 13950000, - "canton": null, - "numero_insee": "60358" - } - }, - { - "pk": 33912, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LHERAULE", - "center": "POINT (570574.1060633066808805 2499050.1747126984409988)", - "surface": 2830000, - "canton": null, - "numero_insee": "60359" - } - }, - { - "pk": 34314, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LIANCOURT", - "center": "POINT (609346.6639681471278891 2481363.9762366539798677)", - "surface": 4780000, - "canton": null, - "numero_insee": "60360" - } - }, - { - "pk": 33088, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LIANCOURT-SAINT-PIERRE", - "center": "POINT (568610.6737663159146905 2470615.7743144622072577)", - "surface": 12710000, - "canton": null, - "numero_insee": "60361" - } - }, - { - "pk": 32887, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LIBERMONT", - "center": "POINT (646432.8951495896326378 2521400.6873788689263165)", - "surface": 11470000, - "canton": null, - "numero_insee": "60362" - } - }, - { - "pk": 28679, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LIERVILLE", - "center": "POINT (567442.6351989922113717 2466703.4822355732321739)", - "surface": 7790000, - "canton": null, - "numero_insee": "60363" - } - }, - { - "pk": 36469, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LIEUVILLERS", - "center": "POINT (611113.2257817460922524 2497388.8853051001206040)", - "surface": 9580000, - "canton": null, - "numero_insee": "60364" - } - }, - { - "pk": 17866, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LIHUS", - "center": "POINT (578471.2451112571870908 2511924.1792328194715083)", - "surface": 16030000, - "canton": null, - "numero_insee": "60365" - } - }, - { - "pk": 30990, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LITZ", - "center": "POINT (599050.2096706698648632 2492084.3386438228189945)", - "surface": 10080000, - "canton": null, - "numero_insee": "60366" - } - }, - { - "pk": 25737, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LOCONVILLE", - "center": "POINT (569588.6391424353932962 2473325.6946641532704234)", - "surface": 5540000, - "canton": null, - "numero_insee": "60367" - } - }, - { - "pk": 7415, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LONGUEIL-ANNEL", - "center": "POINT (637535.3817516003036872 2496710.6120736422017217)", - "surface": 6050000, - "canton": null, - "numero_insee": "60368" - } - }, - { - "pk": 31607, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LONGUEIL-SAINTE-MARIE", - "center": "POINT (627248.3560883062891662 2482515.1294822590425611)", - "surface": 17010000, - "canton": null, - "numero_insee": "60369" - } - }, - { - "pk": 20337, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LORMAISON", - "center": "POINT (583000.4931624674936756 2472937.6869646427221596)", - "surface": 5000000, - "canton": null, - "numero_insee": "60370" - } - }, - { - "pk": 8750, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LOUEUSE", - "center": "POINT (563372.2849484150065109 2510697.1338159833103418)", - "surface": 7440000, - "canton": null, - "numero_insee": "60371" - } - }, - { - "pk": 37510, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LUCHY", - "center": "POINT (583923.6339323390275240 2506066.2415233273059130)", - "surface": 10890000, - "canton": null, - "numero_insee": "60372" - } - }, - { - "pk": 25011, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MACHEMONT", - "center": "POINT (638995.7491107103414834 2501525.8980680964887142)", - "surface": 6320000, - "canton": null, - "numero_insee": "60373" - } - }, - { - "pk": 24670, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAIGNELAY-MONTIGNY", - "center": "POINT (612745.2170597536023706 2505607.6779166874475777)", - "surface": 18870000, - "canton": null, - "numero_insee": "60374" - } - }, - { - "pk": 31357, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAIMBEVILLE", - "center": "POINT (613469.9934776271693408 2490804.5620124218985438)", - "surface": 5900000, - "canton": null, - "numero_insee": "60375" - } - }, - { - "pk": 4897, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAISONCELLE-SAINT-PIERRE", - "center": "POINT (584358.2311190087348223 2501967.3529917891137302)", - "surface": 4250000, - "canton": null, - "numero_insee": "60376" - } - }, - { - "pk": 34804, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAISONCELLE-TUILERIE", - "center": "POINT (591493.3748301377054304 2510232.2176628280431032)", - "surface": 7750000, - "canton": null, - "numero_insee": "60377" - } - }, - { - "pk": 6375, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAREST-SUR-MATZ", - "center": "POINT (635300.4603860282804817 2500694.2755384920164943)", - "surface": 3260000, - "canton": null, - "numero_insee": "60378" - } - }, - { - "pk": 34360, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAREUIL-LA-MOTTE", - "center": "POINT (633355.6073840778553858 2505881.1122679063118994)", - "surface": 9090000, - "canton": null, - "numero_insee": "60379" - } - }, - { - "pk": 16092, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAREUIL-SUR-OURCQ", - "center": "POINT (653752.2717369331512600 2460324.0236031580716372)", - "surface": 10260000, - "canton": null, - "numero_insee": "60380" - } - }, - { - "pk": 10936, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MARGNY-AUX-CERISES", - "center": "POINT (638442.9643920903326944 2519632.3235057443380356)", - "surface": 4600000, - "canton": null, - "numero_insee": "60381" - } - }, - { - "pk": 31159, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MARGNY-LES-COMPIEGNE", - "center": "POINT (633965.4090845811879262 2492878.1700262692756951)", - "surface": 6670000, - "canton": null, - "numero_insee": "60382" - } - }, - { - "pk": 6723, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MARGNY-SUR-MATZ", - "center": "POINT (632074.2735185718629509 2503568.9047341919504106)", - "surface": 7340000, - "canton": null, - "numero_insee": "60383" - } - }, - { - "pk": 19508, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAROLLES", - "center": "POINT (656327.6096444191643968 2463447.7737615248188376)", - "surface": 13220000, - "canton": null, - "numero_insee": "60385" - } - }, - { - "pk": 4851, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MARQUEGLISE", - "center": "POINT (629784.8062204146990553 2502148.7654922604560852)", - "surface": 6760000, - "canton": null, - "numero_insee": "60386" - } - }, - { - "pk": 33653, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MARSEILLE-EN-BEAUVAISIS", - "center": "POINT (572494.8027132586576045 2508672.1776123051531613)", - "surface": 8160000, - "canton": null, - "numero_insee": "60387" - } - }, - { - "pk": 7645, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MARTINCOURT", - "center": "POINT (568633.7083313165931031 2503736.8470372594892979)", - "surface": 5150000, - "canton": null, - "numero_insee": "60388" - } - }, - { - "pk": 26111, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAUCOURT", - "center": "POINT (653589.0109520392725244 2515257.2827565381303430)", - "surface": 3130000, - "canton": null, - "numero_insee": "60389" - } - }, - { - "pk": 8139, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAULERS", - "center": "POINT (587533.1457621408626437 2505195.9409483289346099)", - "surface": 7520000, - "canton": null, - "numero_insee": "60390" - } - }, - { - "pk": 22066, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MAYSEL", - "center": "POINT (602114.7764567717676982 2472697.7469680397771299)", - "surface": 3780000, - "canton": null, - "numero_insee": "60391" - } - }, - { - "pk": 6240, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MELICOCQ", - "center": "POINT (637214.1459836674621329 2499209.4624046506360173)", - "surface": 6600000, - "canton": null, - "numero_insee": "60392" - } - }, - { - "pk": 25742, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MELLO", - "center": "POINT (602790.8159485049545765 2475605.2826835908927023)", - "surface": 3350000, - "canton": null, - "numero_insee": "60393" - } - }, - { - "pk": 14349, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MENEVILLERS", - "center": "POINT (619374.0570152358850464 2502661.5496548982337117)", - "surface": 4960000, - "canton": null, - "numero_insee": "60394" - } - }, - { - "pk": 26434, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MERU", - "center": "POINT (585310.1951040796702728 2471956.4007340725511312)", - "surface": 23120000, - "canton": null, - "numero_insee": "60395" - } - }, - { - "pk": 29476, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MERY-LA-BATAILLE", - "center": "POINT (621254.0600839081453159 2505178.9036787608638406)", - "surface": 11330000, - "canton": null, - "numero_insee": "60396" - } - }, - { - "pk": 37323, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE MESNIL-CONTEVILLE", - "center": "POINT (580313.5997665746835992 2518943.8673787601292133)", - "surface": 3490000, - "canton": null, - "numero_insee": "60397" - } - }, - { - "pk": 25723, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE MESNIL-EN-THELLE", - "center": "POINT (595982.5855489453533664 2464140.7910351790487766)", - "surface": 6020000, - "canton": null, - "numero_insee": "60398" - } - }, - { - "pk": 6265, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE MESNIL-SAINT-FIRMIN", - "center": "POINT (605268.0825555365299806 2514250.1952436529099941)", - "surface": 4140000, - "canton": null, - "numero_insee": "60399" - } - }, - { - "pk": 28019, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE MESNIL-SUR-BULLES", - "center": "POINT (600899.1952877207659185 2498303.7291199411265552)", - "surface": 6280000, - "canton": null, - "numero_insee": "60400" - } - }, - { - "pk": 35517, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE MESNIL-THERIBUS", - "center": "POINT (574847.2676463555544615 2478673.1052512587048113)", - "surface": 6560000, - "canton": null, - "numero_insee": "60401" - } - }, - { - "pk": 13937, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE MEUX", - "center": "POINT (629623.6017250268487260 2485637.0843301275745034)", - "surface": 7730000, - "canton": null, - "numero_insee": "60402" - } - }, - { - "pk": 32191, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MILLY-SUR-THERAIN", - "center": "POINT (576558.9788580052554607 2501301.6438679043203592)", - "surface": 19180000, - "canton": null, - "numero_insee": "60403" - } - }, - { - "pk": 13228, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MOGNEVILLE", - "center": "POINT (609863.7584319659508765 2479367.0474003176204860)", - "surface": 3900000, - "canton": null, - "numero_insee": "60404" - } - }, - { - "pk": 36171, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MOLIENS", - "center": "POINT (562298.1121500504668802 2519493.5026487638242543)", - "surface": 9440000, - "canton": null, - "numero_insee": "60405" - } - }, - { - "pk": 37163, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONCEAUX", - "center": "POINT (616654.1529692206531763 2481025.1322620203718543)", - "surface": 6600000, - "canton": null, - "numero_insee": "60406" - } - }, - { - "pk": 9635, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONCEAUX-L'ABBAYE", - "center": "POINT (560314.6103035494452342 2517375.6454590843059123)", - "surface": 4550000, - "canton": null, - "numero_insee": "60407" - } - }, - { - "pk": 24219, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONCHY-HUMIERES", - "center": "POINT (629121.4768035541055724 2497740.4506118535064161)", - "surface": 8020000, - "canton": null, - "numero_insee": "60408" - } - }, - { - "pk": 29119, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONCHY-SAINT-ELOI", - "center": "POINT (609577.8782235444523394 2477663.5611369763500988)", - "surface": 3890000, - "canton": null, - "numero_insee": "60409" - } - }, - { - "pk": 7931, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONDESCOURT", - "center": "POINT (655919.7979760266607627 2511774.8137421235442162)", - "surface": 3200000, - "canton": null, - "numero_insee": "60410" - } - }, - { - "pk": 26761, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONNEVILLE", - "center": "POINT (573233.4181270790286362 2468252.9178068670444191)", - "surface": 9240000, - "canton": null, - "numero_insee": "60411" - } - }, - { - "pk": 7891, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTAGNY-EN-VEXIN", - "center": "POINT (560541.1615259139798582 2466345.5618475717492402)", - "surface": 4080000, - "canton": null, - "numero_insee": "60412" - } - }, - { - "pk": 7601, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTAGNY-SAINTE-FELICITE", - "center": "POINT (629946.8442263732431456 2459122.7635613325983286)", - "surface": 5620000, - "canton": null, - "numero_insee": "60413" - } - }, - { - "pk": 38021, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTATAIRE", - "center": "POINT (606907.4378917460562661 2473938.7610933240503073)", - "surface": 10600000, - "canton": null, - "numero_insee": "60414" - } - }, - { - "pk": 4304, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTEPILLOY", - "center": "POINT (627166.1220946367830038 2468505.4699862184934318)", - "surface": 5920000, - "canton": null, - "numero_insee": "60415" - } - }, - { - "pk": 30994, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTGERAIN", - "center": "POINT (617857.2519866595976055 2504549.9696119450964034)", - "surface": 4900000, - "canton": null, - "numero_insee": "60416" - } - }, - { - "pk": 6263, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTHERLANT", - "center": "POINT (579574.2413651904789731 2475810.8405384616926312)", - "surface": 5230000, - "canton": null, - "numero_insee": "60417" - } - }, - { - "pk": 11432, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTIERS", - "center": "POINT (616888.6694732438772917 2500739.4760594717226923)", - "surface": 7880000, - "canton": null, - "numero_insee": "60418" - } - }, - { - "pk": 30321, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTJAVOULT", - "center": "POINT (560320.1305226859403774 2468845.3302371487952769)", - "surface": 16720000, - "canton": null, - "numero_insee": "60420" - } - }, - { - "pk": 36686, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONT-L'EVEQUE", - "center": "POINT (621684.8382510140072554 2465857.6734841149300337)", - "surface": 14330000, - "canton": null, - "numero_insee": "60421" - } - }, - { - "pk": 37728, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTLOGNON", - "center": "POINT (626920.6781187602318823 2461999.1873856806196272)", - "surface": 5200000, - "canton": null, - "numero_insee": "60422" - } - }, - { - "pk": 36073, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTMACQ", - "center": "POINT (641924.3217486274661496 2498348.5871913512237370)", - "surface": 7240000, - "canton": null, - "numero_insee": "60423" - } - }, - { - "pk": 27139, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTMARTIN", - "center": "POINT (626129.9245024594711140 2496514.5272286250256002)", - "surface": 3350000, - "canton": null, - "numero_insee": "60424" - } - }, - { - "pk": 37441, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTREUIL-SUR-BRECHE", - "center": "POINT (595467.6771683098049834 2501660.2589273038320243)", - "surface": 10640000, - "canton": null, - "numero_insee": "60425" - } - }, - { - "pk": 12514, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTREUIL-SUR-THERAIN", - "center": "POINT (589586.0312570300884545 2487101.8649762449786067)", - "surface": 1520000, - "canton": null, - "numero_insee": "60426" - } - }, - { - "pk": 10033, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MONTS", - "center": "POINT (575528.8778595717158169 2468972.5889941863715649)", - "surface": 3720000, - "canton": null, - "numero_insee": "60427" - } - }, - { - "pk": 8518, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE MONT-SAINT-ADRIEN", - "center": "POINT (576514.2243214498739690 2494697.1633534398861229)", - "surface": 7780000, - "canton": null, - "numero_insee": "60428" - } - }, - { - "pk": 4434, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORANGLES", - "center": "POINT (597665.9376862730132416 2466256.2777175805531442)", - "surface": 5950000, - "canton": null, - "numero_insee": "60429" - } - }, - { - "pk": 17207, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORIENVAL", - "center": "POINT (643185.1509415443288162 2479347.2443814366124570)", - "surface": 25850000, - "canton": null, - "numero_insee": "60430" - } - }, - { - "pk": 6043, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORLINCOURT", - "center": "POINT (651047.5316101822536439 2508131.5017096367664635)", - "surface": 3320000, - "canton": null, - "numero_insee": "60431" - } - }, - { - "pk": 3511, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORTEFONTAINE", - "center": "POINT (619847.6882764496840537 2458237.2730368683114648)", - "surface": 15380000, - "canton": null, - "numero_insee": "60432" - } - }, - { - "pk": 25939, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORTEFONTAINE-EN-THELLE", - "center": "POINT (589194.8113063770579174 2474090.3143233861774206)", - "surface": 6000000, - "canton": null, - "numero_insee": "60433" - } - }, - { - "pk": 30391, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORTEMER", - "center": "POINT (624332.1826025376794860 2508006.5189596870914102)", - "surface": 6590000, - "canton": null, - "numero_insee": "60434" - } - }, - { - "pk": 6577, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORVILLERS", - "center": "POINT (566382.2806738440413028 2509721.6995206428691745)", - "surface": 5140000, - "canton": null, - "numero_insee": "60435" - } - }, - { - "pk": 15534, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MORY-MONTCRUX", - "center": "POINT (604397.0025464603677392 2510740.7440950255841017)", - "surface": 4670000, - "canton": null, - "numero_insee": "60436" - } - }, - { - "pk": 9598, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MOUCHY-LE-CHATEL", - "center": "POINT (593341.8178506580879912 2480729.3079380872659385)", - "surface": 3330000, - "canton": null, - "numero_insee": "60437" - } - }, - { - "pk": 34596, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MOULIN-SOUS-TOUVENT", - "center": "POINT (652945.5773264324525371 2496640.3928233277983963)", - "surface": 18110000, - "canton": null, - "numero_insee": "60438" - } - }, - { - "pk": 33909, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MOUY", - "center": "POINT (597250.7405118822352961 2479961.5926290508359671)", - "surface": 10250000, - "canton": null, - "numero_insee": "60439" - } - }, - { - "pk": 29544, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MOYENNEVILLE", - "center": "POINT (621507.1852560314582661 2498877.1325617874972522)", - "surface": 7180000, - "canton": null, - "numero_insee": "60440" - } - }, - { - "pk": 29336, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MOYVILLERS", - "center": "POINT (622182.4165310009848326 2489977.2475025029852986)", - "surface": 9180000, - "canton": null, - "numero_insee": "60441" - } - }, - { - "pk": 8650, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MUIDORGE", - "center": "POINT (585442.0624631121754646 2503977.6727470792829990)", - "surface": 5300000, - "canton": null, - "numero_insee": "60442" - } - }, - { - "pk": 19257, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "MUIRANCOURT", - "center": "POINT (648070.8687374341534451 2517011.8343932656571269)", - "surface": 5670000, - "canton": null, - "numero_insee": "60443" - } - }, - { - "pk": 25758, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NAMPCEL", - "center": "POINT (654621.1903217238141224 2499656.3972022463567555)", - "surface": 16730000, - "canton": null, - "numero_insee": "60445" - } - }, - { - "pk": 25493, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NANTEUIL-LE-HAUDOUIN", - "center": "POINT (634542.7844155740458518 2459961.9804994631558657)", - "surface": 21100000, - "canton": null, - "numero_insee": "60446" - } - }, - { - "pk": 29721, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NERY", - "center": "POINT (631615.6422663701232523 2474846.9763494273647666)", - "surface": 16460000, - "canton": null, - "numero_insee": "60447" - } - }, - { - "pk": 25917, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NEUFCHELLES", - "center": "POINT (652173.2851433770265430 2457709.0028454866260290)", - "surface": 6490000, - "canton": null, - "numero_insee": "60448" - } - }, - { - "pk": 36687, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NEUFVY-SUR-ARONDE", - "center": "POINT (622987.8119010329246521 2501291.0760073550045490)", - "surface": 7610000, - "canton": null, - "numero_insee": "60449" - } - }, - { - "pk": 34281, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NEUILLY-EN-THELLE", - "center": "POINT (595832.9983577724779025 2470043.3538746600970626)", - "surface": 15850000, - "canton": null, - "numero_insee": "60450" - } - }, - { - "pk": 27216, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NEUILLY-SOUS-CLERMONT", - "center": "POINT (604625.5242991423001513 2483525.7203561025671661)", - "surface": 7800000, - "canton": null, - "numero_insee": "60451" - } - }, - { - "pk": 29099, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NEUVILLE-BOSC", - "center": "POINT (576444.4781262946780771 2467179.0929689938202500)", - "surface": 8920000, - "canton": null, - "numero_insee": "60452" - } - }, - { - "pk": 28834, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-D'AUMONT", - "center": "POINT (582840.9078446988714859 2480040.8899910273030400)", - "surface": 4830000, - "canton": null, - "numero_insee": "60453" - } - }, - { - "pk": 23205, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-EN-HEZ", - "center": "POINT (599288.1090514019597322 2487583.5057786861434579)", - "surface": 29010000, - "canton": null, - "numero_insee": "60454" - } - }, - { - "pk": 33764, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-GARNIER", - "center": "POINT (578725.1763515381608158 2481607.4268893459811807)", - "surface": 8080000, - "canton": null, - "numero_insee": "60455" - } - }, - { - "pk": 13519, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-ROY", - "center": "POINT (617812.7182394998380914 2497945.5054528662003577)", - "surface": 12730000, - "canton": null, - "numero_insee": "60456" - } - }, - { - "pk": 20957, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-SAINT-PIERRE", - "center": "POINT (589746.0921203282196075 2503813.6307873809710145)", - "surface": 4190000, - "canton": null, - "numero_insee": "60457" - } - }, - { - "pk": 16117, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-SUR-OUDEUIL", - "center": "POINT (576602.8952401661081240 2508006.1434601903893054)", - "surface": 3670000, - "canton": null, - "numero_insee": "60458" - } - }, - { - "pk": 9284, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-SUR-RESSONS", - "center": "POINT (629551.8516317235771567 2506049.2127122543752193)", - "surface": 2730000, - "canton": null, - "numero_insee": "60459" - } - }, - { - "pk": 23584, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA NEUVILLE-VAULT", - "center": "POINT (573175.5388961344724521 2499071.9499760041944683)", - "surface": 4520000, - "canton": null, - "numero_insee": "60460" - } - }, - { - "pk": 21128, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NIVILLERS", - "center": "POINT (587620.3789061721181497 2494790.2190741240046918)", - "surface": 7690000, - "canton": null, - "numero_insee": "60461" - } - }, - { - "pk": 31784, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOAILLES", - "center": "POINT (589544.7019118168391287 2480097.0821126820519567)", - "surface": 10050000, - "canton": null, - "numero_insee": "60462" - } - }, - { - "pk": 33355, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOGENT-SUR-OISE", - "center": "POINT (609297.0405619085067883 2475359.7308052293956280)", - "surface": 7390000, - "canton": null, - "numero_insee": "60463" - } - }, - { - "pk": 37400, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOINTEL", - "center": "POINT (610898.8085175463929772 2487180.6897802636958659)", - "surface": 9420000, - "canton": null, - "numero_insee": "60464" - } - }, - { - "pk": 27798, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOIREMONT", - "center": "POINT (591131.7548125192988664 2505626.3602755912579596)", - "surface": 6420000, - "canton": null, - "numero_insee": "60465" - } - }, - { - "pk": 4666, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOROY", - "center": "POINT (612543.4267885250737891 2493898.7185023184865713)", - "surface": 5470000, - "canton": null, - "numero_insee": "60466" - } - }, - { - "pk": 6944, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOURARD-LE-FRANC", - "center": "POINT (601882.9478939495747909 2500313.2293353197164834)", - "surface": 11460000, - "canton": null, - "numero_insee": "60468" - } - }, - { - "pk": 30172, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOVILLERS", - "center": "POINT (591191.7579274673480541 2474607.3800913006998599)", - "surface": 4860000, - "canton": null, - "numero_insee": "60469" - } - }, - { - "pk": 26689, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOYERS-SAINT-MARTIN", - "center": "POINT (594833.7732874605571851 2505657.4111478570848703)", - "surface": 13270000, - "canton": null, - "numero_insee": "60470" - } - }, - { - "pk": 17716, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "NOYON", - "center": "POINT (648537.7363751310622320 2509110.9491362669505179)", - "surface": 18070000, - "canton": null, - "numero_insee": "60471" - } - }, - { - "pk": 27148, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OFFOY", - "center": "POINT (578384.9290248788893223 2522229.7044071205891669)", - "surface": 4220000, - "canton": null, - "numero_insee": "60472" - } - }, - { - "pk": 9251, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OGNES", - "center": "POINT (635978.9932673354633152 2455771.3254822986200452)", - "surface": 6840000, - "canton": null, - "numero_insee": "60473" - } - }, - { - "pk": 31166, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OGNOLLES", - "center": "POINT (641630.3392591922311112 2521360.2067133546806872)", - "surface": 6550000, - "canton": null, - "numero_insee": "60474" - } - }, - { - "pk": 7873, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OGNON", - "center": "POINT (622439.8527101048966870 2471267.5128175695426762)", - "surface": 4810000, - "canton": null, - "numero_insee": "60475" - } - }, - { - "pk": 10444, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OMECOURT", - "center": "POINT (563549.7991691333008930 2513400.2673069061711431)", - "surface": 8610000, - "canton": null, - "numero_insee": "60476" - } - }, - { - "pk": 30291, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ONS-EN-BRAY", - "center": "POINT (569639.7041240920079872 2491137.4217002247460186)", - "surface": 13930000, - "canton": null, - "numero_insee": "60477" - } - }, - { - "pk": 5785, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ORMOY-LE-DAVIEN", - "center": "POINT (645294.2460472040111199 2466556.7942403615452349)", - "surface": 3900000, - "canton": null, - "numero_insee": "60478" - } - }, - { - "pk": 29335, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ORMOY-VILLERS", - "center": "POINT (637187.8879149832064286 2466688.6158229052089155)", - "surface": 10480000, - "canton": null, - "numero_insee": "60479" - } - }, - { - "pk": 24610, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OROER", - "center": "POINT (588578.1511219533858821 2499901.4241497819311917)", - "surface": 9140000, - "canton": null, - "numero_insee": "60480" - } - }, - { - "pk": 17713, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ORROUY", - "center": "POINT (637885.5197227337630466 2478902.3348134662955999)", - "surface": 16350000, - "canton": null, - "numero_insee": "60481" - } - }, - { - "pk": 27956, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ORRY-LA-VILLE", - "center": "POINT (612525.7702974749263376 2460277.0951593350619078)", - "surface": 11980000, - "canton": null, - "numero_insee": "60482" - } - }, - { - "pk": 12554, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ORVILLERS-SOREL", - "center": "POINT (627028.5979110768530518 2508629.5751193547621369)", - "surface": 8610000, - "canton": null, - "numero_insee": "60483" - } - }, - { - "pk": 5936, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OUDEUIL", - "center": "POINT (577521.8197062999242917 2505812.4864309593103826)", - "surface": 6140000, - "canton": null, - "numero_insee": "60484" - } - }, - { - "pk": 27606, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "OURSEL-MAISON", - "center": "POINT (588480.0054757944308221 2511607.8065393879078329)", - "surface": 7010000, - "canton": null, - "numero_insee": "60485" - } - }, - { - "pk": 24982, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PAILLART", - "center": "POINT (598827.6903066246304661 2518598.8007589108310640)", - "surface": 14330000, - "canton": null, - "numero_insee": "60486" - } - }, - { - "pk": 29316, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PARNES", - "center": "POINT (557133.3428817915264517 2467017.5250355540774763)", - "surface": 12760000, - "canton": null, - "numero_insee": "60487" - } - }, - { - "pk": 34539, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PASSEL", - "center": "POINT (645556.3523865994066000 2506684.3370613465085626)", - "surface": 3640000, - "canton": null, - "numero_insee": "60488" - } - }, - { - "pk": 31773, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PEROY-LES-GOMBRIES", - "center": "POINT (636917.2123460558941588 2463184.0638701301068068)", - "surface": 11160000, - "canton": null, - "numero_insee": "60489" - } - }, - { - "pk": 36243, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PIERREFITTE-EN-BEAUVAISIS", - "center": "POINT (574090.2755742982262745 2497378.5508572715334594)", - "surface": 5710000, - "canton": null, - "numero_insee": "60490" - } - }, - { - "pk": 24220, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PIERREFONDS", - "center": "POINT (645752.0405525742098689 2483471.4884820622391999)", - "surface": 22390000, - "canton": null, - "numero_insee": "60491" - } - }, - { - "pk": 21710, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PIMPREZ", - "center": "POINT (644597.1343155429931358 2501773.2252852576784790)", - "surface": 9520000, - "canton": null, - "numero_insee": "60492" - } - }, - { - "pk": 10881, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PISSELEU", - "center": "POINT (579633.8610332681564614 2504529.3754871366545558)", - "surface": 2850000, - "canton": null, - "numero_insee": "60493" - } - }, - { - "pk": 23823, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PLAILLY", - "center": "POINT (617556.4407385033555329 2457017.2216521897353232)", - "surface": 16320000, - "canton": null, - "numero_insee": "60494" - } - }, - { - "pk": 32916, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PLAINVAL", - "center": "POINT (608755.6426891722949222 2504073.2326906919479370)", - "surface": 9090000, - "canton": null, - "numero_insee": "60495" - } - }, - { - "pk": 27611, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PLAINVILLE", - "center": "POINT (608181.4101385279791430 2512873.8099226462654769)", - "surface": 4330000, - "canton": null, - "numero_insee": "60496" - } - }, - { - "pk": 30818, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE PLESSIER-SUR-BULLES", - "center": "POINT (598588.6906025966163725 2499385.0205950178205967)", - "surface": 3870000, - "canton": null, - "numero_insee": "60497" - } - }, - { - "pk": 37401, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE PLESSIER-SUR-SAINT-JUST", - "center": "POINT (608880.0719231524271891 2501172.4843607284128666)", - "surface": 7740000, - "canton": null, - "numero_insee": "60498" - } - }, - { - "pk": 35222, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PLESSIS-DE-ROYE", - "center": "POINT (635536.5826579288113862 2508300.9547583749517798)", - "surface": 6260000, - "canton": null, - "numero_insee": "60499" - } - }, - { - "pk": 33844, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE PLESSIS-BELLEVILLE", - "center": "POINT (630776.7907527731731534 2455627.4567226367071271)", - "surface": 6910000, - "canton": null, - "numero_insee": "60500" - } - }, - { - "pk": 10703, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE PLESSIS-BRION", - "center": "POINT (641441.7521372598130256 2496243.2121106395497918)", - "surface": 7490000, - "canton": null, - "numero_insee": "60501" - } - }, - { - "pk": 38002, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE PLESSIS-PATTE-D'OIE", - "center": "POINT (652640.4164574993774295 2520952.7363190855830908)", - "surface": 2760000, - "canton": null, - "numero_insee": "60502" - } - }, - { - "pk": 6724, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE PLOYRON", - "center": "POINT (617712.6128103330265731 2509852.0121473954059184)", - "surface": 4230000, - "canton": null, - "numero_insee": "60503" - } - }, - { - "pk": 3128, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PONCHON", - "center": "POINT (588816.6218671022215858 2483393.0738408276811242)", - "surface": 9840000, - "canton": null, - "numero_insee": "60504" - } - }, - { - "pk": 28645, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PONTARME", - "center": "POINT (616105.1553592332638800 2463008.9384984304197133)", - "surface": 13130000, - "canton": null, - "numero_insee": "60505" - } - }, - { - "pk": 10830, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PONT-L'EVEQUE", - "center": "POINT (647051.2638168192934245 2507397.3709656600840390)", - "surface": 1120000, - "canton": null, - "numero_insee": "60506" - } - }, - { - "pk": 13797, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PONTOISE-LES-NOYON", - "center": "POINT (651471.3795583634637296 2505333.3532003057189286)", - "surface": 6630000, - "canton": null, - "numero_insee": "60507" - } - }, - { - "pk": 25743, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PONTPOINT", - "center": "POINT (622682.7932894484838471 2478073.9162614783272147)", - "surface": 19170000, - "canton": null, - "numero_insee": "60508" - } - }, - { - "pk": 19773, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PONT-SAINTE-MAXENCE", - "center": "POINT (619676.8834400316700339 2478548.9546209005638957)", - "surface": 14770000, - "canton": null, - "numero_insee": "60509" - } - }, - { - "pk": 13612, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PORCHEUX", - "center": "POINT (569915.1783783358987421 2482134.0457772389054298)", - "surface": 4770000, - "canton": null, - "numero_insee": "60510" - } - }, - { - "pk": 32917, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PORQUERICOURT", - "center": "POINT (644717.9635567006189376 2511180.0312493760138750)", - "surface": 3780000, - "canton": null, - "numero_insee": "60511" - } - }, - { - "pk": 14806, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "POUILLY", - "center": "POINT (577777.4057992959860712 2475295.4699632613919675)", - "surface": 3880000, - "canton": null, - "numero_insee": "60512" - } - }, - { - "pk": 33662, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PRECY-SUR-OISE", - "center": "POINT (601860.8025565164862201 2467192.0683100121095777)", - "surface": 9840000, - "canton": null, - "numero_insee": "60513" - } - }, - { - "pk": 33908, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PREVILLERS", - "center": "POINT (575557.1104378412710503 2513400.6898646573536098)", - "surface": 5280000, - "canton": null, - "numero_insee": "60514" - } - }, - { - "pk": 36007, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PRONLEROY", - "center": "POINT (614721.1000219424022362 2496718.7686755149625242)", - "surface": 9030000, - "canton": null, - "numero_insee": "60515" - } - }, - { - "pk": 36240, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PUISEUX-EN-BRAY", - "center": "POINT (559439.0354156472021714 2490451.7203832473605871)", - "surface": 8100000, - "canton": null, - "numero_insee": "60516" - } - }, - { - "pk": 24420, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PUISEUX-LE-HAUBERGER", - "center": "POINT (592240.1619286852655932 2468912.5057307360693812)", - "surface": 5440000, - "canton": null, - "numero_insee": "60517" - } - }, - { - "pk": 14156, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "PUITS-LA-VALLEE", - "center": "POINT (589397.2704669270897284 2509614.2733358088880777)", - "surface": 4340000, - "canton": null, - "numero_insee": "60518" - } - }, - { - "pk": 36698, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "QUESMY", - "center": "POINT (651888.0972943403758109 2515242.9338175239972770)", - "surface": 4900000, - "canton": null, - "numero_insee": "60519" - } - }, - { - "pk": 16592, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE QUESNEL-AUBRY", - "center": "POINT (598371.7873994999099523 2501384.4407969391904771)", - "surface": 4830000, - "canton": null, - "numero_insee": "60520" - } - }, - { - "pk": 34995, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "QUINCAMPOIX-FLEUZY", - "center": "POINT (559026.9767959290184081 2527771.1424287445843220)", - "surface": 9240000, - "canton": null, - "numero_insee": "60521" - } - }, - { - "pk": 26348, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "QUINQUEMPOIX", - "center": "POINT (605941.5079749041469768 2505550.5212792600505054)", - "surface": 5890000, - "canton": null, - "numero_insee": "60522" - } - }, - { - "pk": 31054, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RAINVILLERS", - "center": "POINT (575352.9353307916317135 2489984.4936572136357427)", - "surface": 6670000, - "canton": null, - "numero_insee": "60523" - } - }, - { - "pk": 13936, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RARAY", - "center": "POINT (627820.2119100349955261 2474014.5162266893312335)", - "surface": 6790000, - "canton": null, - "numero_insee": "60525" - } - }, - { - "pk": 12980, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RAVENEL", - "center": "POINT (611775.7788718366064131 2501897.2464983817189932)", - "surface": 11470000, - "canton": null, - "numero_insee": "60526" - } - }, - { - "pk": 36628, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "REEZ-FOSSE-MARTIN", - "center": "POINT (642890.6224988013273105 2454928.9645536416210234)", - "surface": 7130000, - "canton": null, - "numero_insee": "60527" - } - }, - { - "pk": 21653, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "REILLY", - "center": "POINT (565001.0739699872210622 2471486.1538356631062925)", - "surface": 8240000, - "canton": null, - "numero_insee": "60528" - } - }, - { - "pk": 27797, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "REMERANGLES", - "center": "POINT (596628.7256591267650947 2494465.5210930514149368)", - "surface": 8720000, - "canton": null, - "numero_insee": "60530" - } - }, - { - "pk": 30408, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "REMY", - "center": "POINT (626559.6134004116756842 2493015.9554486777633429)", - "surface": 20460000, - "canton": null, - "numero_insee": "60531" - } - }, - { - "pk": 7049, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RESSONS-L'ABBAYE", - "center": "POINT (581761.2431486177956685 2477530.2494228542782366)", - "surface": 5440000, - "canton": null, - "numero_insee": "60532" - } - }, - { - "pk": 3731, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RESSONS-SUR-MATZ", - "center": "POINT (628668.2032518801279366 2504040.5418464425019920)", - "surface": 9430000, - "canton": null, - "numero_insee": "60533" - } - }, - { - "pk": 7780, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RETHONDES", - "center": "POINT (644074.3936800288502127 2492563.0854139709845185)", - "surface": 9550000, - "canton": null, - "numero_insee": "60534" - } - }, - { - "pk": 35700, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "REUIL-SUR-BRECHE", - "center": "POINT (591956.5260266152909026 2502731.4874748820438981)", - "surface": 12740000, - "canton": null, - "numero_insee": "60535" - } - }, - { - "pk": 11740, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RHUIS", - "center": "POINT (626281.4689277608413249 2478504.4472696767188609)", - "surface": 2730000, - "canton": null, - "numero_insee": "60536" - } - }, - { - "pk": 30946, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RIBECOURT-DRESLINCOURT", - "center": "POINT (642185.6997478853445500 2502953.6436238298192620)", - "surface": 12980000, - "canton": null, - "numero_insee": "60537" - } - }, - { - "pk": 34807, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RICQUEBOURG", - "center": "POINT (630543.9740191681776196 2507058.1794484634883702)", - "surface": 5040000, - "canton": null, - "numero_insee": "60538" - } - }, - { - "pk": 10326, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RIEUX", - "center": "POINT (612777.1733185314806178 2477990.6340890177525580)", - "surface": 2350000, - "canton": null, - "numero_insee": "60539" - } - }, - { - "pk": 8655, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RIVECOURT", - "center": "POINT (629143.5326146467123181 2483231.5235447473824024)", - "surface": 4000000, - "canton": null, - "numero_insee": "60540" - } - }, - { - "pk": 19056, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROBERVAL", - "center": "POINT (625292.6874843221157789 2477095.2334540784358978)", - "surface": 4840000, - "canton": null, - "numero_insee": "60541" - } - }, - { - "pk": 24212, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROCHY-CONDE", - "center": "POINT (589264.8898598598316312 2489600.7470999257639050)", - "surface": 6410000, - "canton": null, - "numero_insee": "60542" - } - }, - { - "pk": 10702, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROCQUEMONT", - "center": "POINT (635128.5921189907239750 2473575.7218311619944870)", - "surface": 6360000, - "canton": null, - "numero_insee": "60543" - } - }, - { - "pk": 7155, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROCQUENCOURT", - "center": "POINT (605247.0775493640685454 2516751.5388775719329715)", - "surface": 9740000, - "canton": null, - "numero_insee": "60544" - } - }, - { - "pk": 25131, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROMESCAMPS", - "center": "POINT (561259.9295399269321933 2523987.5338304201141000)", - "surface": 10470000, - "canton": null, - "numero_insee": "60545" - } - }, - { - "pk": 33401, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROSIERES", - "center": "POINT (632395.2285429961048067 2465447.4776387540623546)", - "surface": 9250000, - "canton": null, - "numero_insee": "60546" - } - }, - { - "pk": 12694, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROSOY", - "center": "POINT (612540.0638857366284356 2482391.4427611329592764)", - "surface": 4870000, - "canton": null, - "numero_insee": "60547" - } - }, - { - "pk": 32034, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROSOY-EN-MULTIEN", - "center": "POINT (647689.2177598963025957 2455469.7436655196361244)", - "surface": 8510000, - "canton": null, - "numero_insee": "60548" - } - }, - { - "pk": 29114, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROTANGY", - "center": "POINT (581991.5800021684262902 2509752.3240776243619621)", - "surface": 9910000, - "canton": null, - "numero_insee": "60549" - } - }, - { - "pk": 3800, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROTHOIS", - "center": "POINT (574875.1630430006189272 2511193.6367562790401280)", - "surface": 3140000, - "canton": null, - "numero_insee": "60550" - } - }, - { - "pk": 7054, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROUSSELOY", - "center": "POINT (604073.0736315463436767 2477817.4552249689586461)", - "surface": 3920000, - "canton": null, - "numero_insee": "60551" - } - }, - { - "pk": 35279, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROUVILLE", - "center": "POINT (639577.4700493667041883 2468109.6521338634192944)", - "surface": 6910000, - "canton": null, - "numero_insee": "60552" - } - }, - { - "pk": 33661, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROUVILLERS", - "center": "POINT (621236.4727178324246779 2495372.6751410276629031)", - "surface": 12160000, - "canton": null, - "numero_insee": "60553" - } - }, - { - "pk": 13242, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROUVRES-EN-MULTIEN", - "center": "POINT (650080.4973350947257131 2456690.6959664886817336)", - "surface": 8100000, - "canton": null, - "numero_insee": "60554" - } - }, - { - "pk": 30964, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROUVROY-LES-MERLES", - "center": "POINT (601542.5730081724468619 2517020.6180061786435544)", - "surface": 4060000, - "canton": null, - "numero_insee": "60555" - } - }, - { - "pk": 11094, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROYAUCOURT", - "center": "POINT (613785.2722741892794147 2512820.8333115139976144)", - "surface": 9480000, - "canton": null, - "numero_insee": "60556" - } - }, - { - "pk": 25001, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROY-BOISSY", - "center": "POINT (569788.3117719939909875 2509249.8926288033835590)", - "surface": 10990000, - "canton": null, - "numero_insee": "60557" - } - }, - { - "pk": 14243, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ROYE-SUR-MATZ", - "center": "POINT (631413.2976230370113626 2510767.7678911709226668)", - "surface": 11010000, - "canton": null, - "numero_insee": "60558" - } - }, - { - "pk": 14182, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA RUE-SAINT-PIERRE", - "center": "POINT (596660.6274514634860680 2490663.4078855952247977)", - "surface": 8210000, - "canton": null, - "numero_insee": "60559" - } - }, - { - "pk": 28020, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RULLY", - "center": "POINT (628243.1765045765787363 2471316.3401791905052960)", - "surface": 15720000, - "canton": null, - "numero_insee": "60560" - } - }, - { - "pk": 25702, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "RUSSY-BEMONT", - "center": "POINT (645143.5814429767196998 2472559.3973137671127915)", - "surface": 9780000, - "canton": null, - "numero_insee": "60561" - } - }, - { - "pk": 25010, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SACY-LE-GRAND", - "center": "POINT (615825.9451507985359058 2484320.2644308172166348)", - "surface": 17750000, - "canton": null, - "numero_insee": "60562" - } - }, - { - "pk": 6828, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SACY-LE-PETIT", - "center": "POINT (621117.1457499810494483 2485765.6396439820528030)", - "surface": 7440000, - "canton": null, - "numero_insee": "60563" - } - }, - { - "pk": 25552, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINS-MORAINVILLERS", - "center": "POINT (609214.7300873494241387 2508980.1043010982684791)", - "surface": 12470000, - "canton": null, - "numero_insee": "60564" - } - }, - { - "pk": 20315, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-ANDRE-FARIVILLERS", - "center": "POINT (597304.0731828685384244 2509380.4104938125237823)", - "surface": 11510000, - "canton": null, - "numero_insee": "60565" - } - }, - { - "pk": 35465, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-ARNOULT", - "center": "POINT (561530.3136274194112048 2515584.7178208692930639)", - "surface": 7910000, - "canton": null, - "numero_insee": "60566" - } - }, - { - "pk": 32047, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-AUBIN-EN-BRAY", - "center": "POINT (567430.9430763393174857 2492019.5036996300332248)", - "surface": 6480000, - "canton": null, - "numero_insee": "60567" - } - }, - { - "pk": 30781, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-AUBIN-SOUS-ERQUERY", - "center": "POINT (611071.1777807953767478 2490484.2158946194685996)", - "surface": 6480000, - "canton": null, - "numero_insee": "60568" - } - }, - { - "pk": 25947, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-CREPIN-AUX-BOIS", - "center": "POINT (647061.7199887007009238 2494289.3334850952960551)", - "surface": 16310000, - "canton": null, - "numero_insee": "60569" - } - }, - { - "pk": 31196, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-CREPIN-IBOUVILLERS", - "center": "POINT (580393.9763748749392107 2473516.2334233592264354)", - "surface": 14430000, - "canton": null, - "numero_insee": "60570" - } - }, - { - "pk": 21756, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-DENISCOURT", - "center": "POINT (565761.0301455549197271 2512218.0312023372389376)", - "surface": 4820000, - "canton": null, - "numero_insee": "60571" - } - }, - { - "pk": 5289, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-ETIENNE-ROILAYE", - "center": "POINT (649042.0863756630569696 2484900.1158115305006504)", - "surface": 7940000, - "canton": null, - "numero_insee": "60572" - } - }, - { - "pk": 29535, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINTE-EUSOYE", - "center": "POINT (593707.9950879837851971 2508649.8116223560646176)", - "surface": 8500000, - "canton": null, - "numero_insee": "60573" - } - }, - { - "pk": 33709, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-FELIX", - "center": "POINT (596115.6985789844766259 2484054.6727685397490859)", - "surface": 5000000, - "canton": null, - "numero_insee": "60574" - } - }, - { - "pk": 26995, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINTE-GENEVIEVE", - "center": "POINT (589872.5583054288290441 2476797.7260471601039171)", - "surface": 8030000, - "canton": null, - "numero_insee": "60575" - } - }, - { - "pk": 11735, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-GERMAIN-LA-POTERIE", - "center": "POINT (573519.2617306205211207 2493871.5863021425902843)", - "surface": 5930000, - "canton": null, - "numero_insee": "60576" - } - }, - { - "pk": 23892, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-GERMER-DE-FLY", - "center": "POINT (559710.7606480822432786 2493856.1232704869471490)", - "surface": 20050000, - "canton": null, - "numero_insee": "60577" - } - }, - { - "pk": 8262, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINTINES", - "center": "POINT (631285.9896915828576311 2478346.4400783204473555)", - "surface": 2860000, - "canton": null, - "numero_insee": "60578" - } - }, - { - "pk": 37635, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-JEAN-AUX-BOIS", - "center": "POINT (639946.2448781497078016 2483722.7483958075754344)", - "surface": 25180000, - "canton": null, - "numero_insee": "60579" - } - }, - { - "pk": 16721, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-JUST-EN-CHAUSSEE", - "center": "POINT (605875.0637371223419905 2501547.4924485529772937)", - "surface": 14700000, - "canton": null, - "numero_insee": "60581" - } - }, - { - "pk": 34768, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-LEGER-AUX-BOIS", - "center": "POINT (644629.1834541109856218 2497971.1355023714713752)", - "surface": 8360000, - "canton": null, - "numero_insee": "60582" - } - }, - { - "pk": 25547, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-LEGER-EN-BRAY", - "center": "POINT (577371.6493560777744278 2487900.0769545165821910)", - "surface": 4410000, - "canton": null, - "numero_insee": "60583" - } - }, - { - "pk": 10911, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-LEU-D'ESSERENT", - "center": "POINT (605239.2360591189935803 2470022.2426996920257807)", - "surface": 13210000, - "canton": null, - "numero_insee": "60584" - } - }, - { - "pk": 12840, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-MARTIN-AUX-BOIS", - "center": "POINT (616168.9397581445518881 2503034.8495591059327126)", - "surface": 9450000, - "canton": null, - "numero_insee": "60585" - } - }, - { - "pk": 13828, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-MARTIN-LE-NOEUD", - "center": "POINT (579766.2881372584961355 2488720.6382723911665380)", - "surface": 5440000, - "canton": null, - "numero_insee": "60586" - } - }, - { - "pk": 27005, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-MARTIN-LONGUEAU", - "center": "POINT (619137.0564790040953085 2483247.4050273913890123)", - "surface": 3620000, - "canton": null, - "numero_insee": "60587" - } - }, - { - "pk": 32746, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-MAUR", - "center": "POINT (569954.0893736049765721 2513353.7862733253277838)", - "surface": 7830000, - "canton": null, - "numero_insee": "60588" - } - }, - { - "pk": 18460, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-MAXIMIN", - "center": "POINT (608945.5631982540944591 2469553.0496293143369257)", - "surface": 12430000, - "canton": null, - "numero_insee": "60589" - } - }, - { - "pk": 26710, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-OMER-EN-CHAUSSEE", - "center": "POINT (575735.9183527985587716 2503996.4210664113052189)", - "surface": 10470000, - "canton": null, - "numero_insee": "60590" - } - }, - { - "pk": 26776, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-PAUL", - "center": "POINT (574533.2206986185628921 2492279.0737341507337987)", - "surface": 9850000, - "canton": null, - "numero_insee": "60591" - } - }, - { - "pk": 9382, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-PIERRE-ES-CHAMPS", - "center": "POINT (556725.8200184290762991 2491829.9182273540645838)", - "surface": 10910000, - "canton": null, - "numero_insee": "60592" - } - }, - { - "pk": 10573, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-PIERRE-LES-BITRY", - "center": "POINT (654278.3744434327818453 2492849.2609665668569505)", - "surface": 3460000, - "canton": null, - "numero_insee": "60593" - } - }, - { - "pk": 26548, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-REMY-EN-L'EAU", - "center": "POINT (606313.9368632300756872 2496948.3206975590437651)", - "surface": 10150000, - "canton": null, - "numero_insee": "60595" - } - }, - { - "pk": 8255, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-SAMSON-LA-POTERIE", - "center": "POINT (556767.0362798322457820 2510842.0306435730308294)", - "surface": 4290000, - "canton": null, - "numero_insee": "60596" - } - }, - { - "pk": 9163, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-SAUVEUR", - "center": "POINT (634163.2007439894368872 2481272.5128739005886018)", - "surface": 16460000, - "canton": null, - "numero_insee": "60597" - } - }, - { - "pk": 28462, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-SULPICE", - "center": "POINT (584413.3034573787590489 2483456.2265603295527399)", - "surface": 8800000, - "canton": null, - "numero_insee": "60598" - } - }, - { - "pk": 9628, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-THIBAULT", - "center": "POINT (562977.5673585778567940 2522000.6938810930587351)", - "surface": 10590000, - "canton": null, - "numero_insee": "60599" - } - }, - { - "pk": 31835, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-VAAST-DE-LONGMONT", - "center": "POINT (629690.9772978805704042 2477632.5665012095123529)", - "surface": 4940000, - "canton": null, - "numero_insee": "60600" - } - }, - { - "pk": 12112, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-VAAST-LES-MELLO", - "center": "POINT (604593.5217924043536186 2475420.2905875728465617)", - "surface": 7940000, - "canton": null, - "numero_insee": "60601" - } - }, - { - "pk": 8478, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAINT-VALERY", - "center": "POINT (556144.6781356132123619 2525445.6727414578199387)", - "surface": 4570000, - "canton": null, - "numero_insee": "60602" - } - }, - { - "pk": 37890, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SALENCY", - "center": "POINT (651329.9717917728703469 2510235.1725160791538656)", - "surface": 7850000, - "canton": null, - "numero_insee": "60603" - } - }, - { - "pk": 25304, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SARCUS", - "center": "POINT (566692.0937502669403329 2520530.8598002223297954)", - "surface": 13020000, - "canton": null, - "numero_insee": "60604" - } - }, - { - "pk": 32327, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SARNOIS", - "center": "POINT (570194.7990767646115273 2520460.1086030858568847)", - "surface": 5550000, - "canton": null, - "numero_insee": "60605" - } - }, - { - "pk": 14319, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE SAULCHOY", - "center": "POINT (585451.5481209420831874 2514784.3713650549761951)", - "surface": 4950000, - "canton": null, - "numero_insee": "60608" - } - }, - { - "pk": 28237, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SAVIGNIES", - "center": "POINT (572499.4424272041069344 2496164.4852781351655722)", - "surface": 9860000, - "canton": null, - "numero_insee": "60609" - } - }, - { - "pk": 29120, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SEMPIGNY", - "center": "POINT (648061.0880740066058934 2506305.2086100759916008)", - "surface": 4460000, - "canton": null, - "numero_insee": "60610" - } - }, - { - "pk": 12690, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SENANTES", - "center": "POINT (563475.2136435064021498 2498390.4084692262113094)", - "surface": 19920000, - "canton": null, - "numero_insee": "60611" - } - }, - { - "pk": 19429, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SENLIS", - "center": "POINT (618162.6264410970034078 2468229.6075797956436872)", - "surface": 24330000, - "canton": null, - "numero_insee": "60612" - } - }, - { - "pk": 36465, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SENOTS", - "center": "POINT (576390.8518345189513639 2473582.7679333062842488)", - "surface": 6360000, - "canton": null, - "numero_insee": "60613" - } - }, - { - "pk": 11607, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SERANS", - "center": "POINT (562845.8373418716946617 2465964.5755332689732313)", - "surface": 8750000, - "canton": null, - "numero_insee": "60614" - } - }, - { - "pk": 10161, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SEREVILLERS", - "center": "POINT (607059.8079196960898116 2515365.9119923631660640)", - "surface": 3300000, - "canton": null, - "numero_insee": "60615" - } - }, - { - "pk": 17292, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SERIFONTAINE", - "center": "POINT (560485.6067293056985363 2484957.0035367137752473)", - "surface": 20710000, - "canton": null, - "numero_insee": "60616" - } - }, - { - "pk": 23535, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SERMAIZE", - "center": "POINT (644598.5113793509081006 2513480.4294926039874554)", - "surface": 5130000, - "canton": null, - "numero_insee": "60617" - } - }, - { - "pk": 22476, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SERY-MAGNEVAL", - "center": "POINT (638131.1485245722578838 2473500.9475017450749874)", - "surface": 6000000, - "canton": null, - "numero_insee": "60618" - } - }, - { - "pk": 31148, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SILLY-LE-LONG", - "center": "POINT (632868.7534949113614857 2456745.7904113251715899)", - "surface": 11500000, - "canton": null, - "numero_insee": "60619" - } - }, - { - "pk": 36241, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SILLY-TILLARD", - "center": "POINT (586643.8985212824773043 2479972.6990689020603895)", - "surface": 11130000, - "canton": null, - "numero_insee": "60620" - } - }, - { - "pk": 11073, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SOLENTE", - "center": "POINT (639519.9482037220150232 2522443.0876122629269958)", - "surface": 3070000, - "canton": null, - "numero_insee": "60621" - } - }, - { - "pk": 3607, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SOMMEREUX", - "center": "POINT (575903.7058544447645545 2519807.4768481305800378)", - "surface": 13020000, - "canton": null, - "numero_insee": "60622" - } - }, - { - "pk": 35815, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SONGEONS", - "center": "POINT (564901.5532462883275002 2507307.8401524955406785)", - "surface": 13710000, - "canton": null, - "numero_insee": "60623" - } - }, - { - "pk": 5125, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SULLY", - "center": "POINT (559602.0131458247778937 2506863.2760833324864507)", - "surface": 4860000, - "canton": null, - "numero_insee": "60624" - } - }, - { - "pk": 10447, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "SUZOY", - "center": "POINT (643529.9642613377654925 2509669.0988803254440427)", - "surface": 5190000, - "canton": null, - "numero_insee": "60625" - } - }, - { - "pk": 27799, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TALMONTIERS", - "center": "POINT (557357.9354740136768669 2488032.8131424230523407)", - "surface": 9360000, - "canton": null, - "numero_insee": "60626" - } - }, - { - "pk": 33370, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TARTIGNY", - "center": "POINT (601857.8524922870565206 2515222.1711801243945956)", - "surface": 7030000, - "canton": null, - "numero_insee": "60627" - } - }, - { - "pk": 7775, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THERDONNE", - "center": "POINT (586645.8245556808542460 2491680.1090370332822204)", - "surface": 9070000, - "canton": null, - "numero_insee": "60628" - } - }, - { - "pk": 11900, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THERINES", - "center": "POINT (567865.5138362519210204 2511835.3936928976327181)", - "surface": 9740000, - "canton": null, - "numero_insee": "60629" - } - }, - { - "pk": 33913, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THIBIVILLERS", - "center": "POINT (568339.3920685966731980 2479118.9506793781183660)", - "surface": 6400000, - "canton": null, - "numero_insee": "60630" - } - }, - { - "pk": 6680, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THIERS-SUR-THEVE", - "center": "POINT (617616.9610548519995064 2461720.8016806482337415)", - "surface": 6200000, - "canton": null, - "numero_insee": "60631" - } - }, - { - "pk": 13042, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THIESCOURT", - "center": "POINT (638349.0608974486822262 2507023.8457158175297081)", - "surface": 13020000, - "canton": null, - "numero_insee": "60632" - } - }, - { - "pk": 6336, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THIEULOY-SAINT-ANTOINE", - "center": "POINT (571738.3108746521174908 2515369.9370554345659912)", - "surface": 2430000, - "canton": null, - "numero_insee": "60633" - } - }, - { - "pk": 8489, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THIEUX", - "center": "POINT (598040.5565576516091824 2505083.9474773621186614)", - "surface": 9220000, - "canton": null, - "numero_insee": "60634" - } - }, - { - "pk": 33176, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THIVERNY", - "center": "POINT (606624.0734040248207748 2471935.0962908100336790)", - "surface": 2080000, - "canton": null, - "numero_insee": "60635" - } - }, - { - "pk": 5897, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THOUROTTE", - "center": "POINT (639424.6297712732339278 2498127.3999400408938527)", - "surface": 4340000, - "canton": null, - "numero_insee": "60636" - } - }, - { - "pk": 27186, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THURY-EN-VALOIS", - "center": "POINT (650438.5374391871737316 2461696.9851733348332345)", - "surface": 11490000, - "canton": null, - "numero_insee": "60637" - } - }, - { - "pk": 26506, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "THURY-SOUS-CLERMONT", - "center": "POINT (599414.1972835757769644 2484482.6052991887554526)", - "surface": 5450000, - "canton": null, - "numero_insee": "60638" - } - }, - { - "pk": 23361, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TILLE", - "center": "POINT (584105.0224338587140664 2496361.7525020018219948)", - "surface": 14760000, - "canton": null, - "numero_insee": "60639" - } - }, - { - "pk": 22142, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TOURLY", - "center": "POINT (571224.7287464914843440 2469136.6843550074845552)", - "surface": 3300000, - "canton": null, - "numero_insee": "60640" - } - }, - { - "pk": 32918, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TRACY-LE-MONT", - "center": "POINT (648339.6608080470468849 2497001.7949903253465891)", - "surface": 18700000, - "canton": null, - "numero_insee": "60641" - } - }, - { - "pk": 10829, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TRACY-LE-VAL", - "center": "POINT (649119.8522554399678484 2499409.8679308611899614)", - "surface": 4670000, - "canton": null, - "numero_insee": "60642" - } - }, - { - "pk": 7175, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TRICOT", - "center": "POINT (617933.7520088274031878 2507352.3371736197732389)", - "surface": 12010000, - "canton": null, - "numero_insee": "60643" - } - }, - { - "pk": 25126, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TRIE-CHATEAU", - "center": "POINT (561855.7859920230694115 2476663.1824539713561535)", - "surface": 9480000, - "canton": null, - "numero_insee": "60644" - } - }, - { - "pk": 28642, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TRIE-LA-VILLE", - "center": "POINT (563957.8184036724269390 2476580.6986196637153625)", - "surface": 4510000, - "canton": null, - "numero_insee": "60645" - } - }, - { - "pk": 32622, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TROISSEREUX", - "center": "POINT (579684.1492819907143712 2498526.0813598348759115)", - "surface": 14030000, - "canton": null, - "numero_insee": "60646" - } - }, - { - "pk": 12423, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TROSLY-BREUIL", - "center": "POINT (645703.1180820789886639 2489274.7414567829109728)", - "surface": 10980000, - "canton": null, - "numero_insee": "60647" - } - }, - { - "pk": 37776, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TROUSSENCOURT", - "center": "POINT (593581.9237746440339833 2511750.6520988191477954)", - "surface": 5330000, - "canton": null, - "numero_insee": "60648" - } - }, - { - "pk": 27212, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TROUSSURES", - "center": "POINT (572274.6557525352109224 2487156.9587950492277741)", - "surface": 5210000, - "canton": null, - "numero_insee": "60649" - } - }, - { - "pk": 6143, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "TRUMILLY", - "center": "POINT (632745.7550557326758280 2471354.2421571039594710)", - "surface": 13130000, - "canton": null, - "numero_insee": "60650" - } - }, - { - "pk": 28400, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "ULLY-SAINT-GEORGES", - "center": "POINT (595490.0142908379202709 2475143.7539027859456837)", - "surface": 18750000, - "canton": null, - "numero_insee": "60651" - } - }, - { - "pk": 25259, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VALDAMPIERRE", - "center": "POINT (579449.0399370542727411 2478811.7081656698137522)", - "surface": 8730000, - "canton": null, - "numero_insee": "60652" - } - }, - { - "pk": 3450, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VALESCOURT", - "center": "POINT (607200.1477649648441002 2498656.8217527731321752)", - "surface": 6910000, - "canton": null, - "numero_insee": "60653" - } - }, - { - "pk": 11335, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VANDELICOURT", - "center": "POINT (633294.3069133446551859 2501277.7537235971540213)", - "surface": 4660000, - "canton": null, - "numero_insee": "60654" - } - }, - { - "pk": 24280, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VARESNES", - "center": "POINT (653659.9176535983569920 2506852.7394604897126555)", - "surface": 9140000, - "canton": null, - "numero_insee": "60655" - } - }, - { - "pk": 13629, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VAUCHELLES", - "center": "POINT (645628.5719767009140924 2509986.9727127705700696)", - "surface": 2360000, - "canton": null, - "numero_insee": "60657" - } - }, - { - "pk": 19357, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VAUCIENNES", - "center": "POINT (649863.1461926059564576 2470597.9026443962939084)", - "surface": 6320000, - "canton": null, - "numero_insee": "60658" - } - }, - { - "pk": 8649, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VAUDANCOURT", - "center": "POINT (558007.0964970038039610 2470226.8953799582086504)", - "surface": 4630000, - "canton": null, - "numero_insee": "60659" - } - }, - { - "pk": 8256, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE VAUMAIN", - "center": "POINT (565706.9468385119689628 2482799.2784811984747648)", - "surface": 8090000, - "canton": null, - "numero_insee": "60660" - } - }, - { - "pk": 33601, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VAUMOISE", - "center": "POINT (647053.9477947463747114 2471474.7945713126100600)", - "surface": 3230000, - "canton": null, - "numero_insee": "60661" - } - }, - { - "pk": 15525, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LE VAUROUX", - "center": "POINT (569272.9735349590191618 2487131.8357243430800736)", - "surface": 9880000, - "canton": null, - "numero_insee": "60662" - } - }, - { - "pk": 5717, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VELENNES", - "center": "POINT (589200.2929701542016119 2497305.0241150762885809)", - "surface": 6150000, - "canton": null, - "numero_insee": "60663" - } - }, - { - "pk": 14153, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VENDEUIL-CAPLY", - "center": "POINT (596776.9374136622063816 2512577.9446142688393593)", - "surface": 10980000, - "canton": null, - "numero_insee": "60664" - } - }, - { - "pk": 12982, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VENETTE", - "center": "POINT (632477.2119276943849400 2491364.6984794693998992)", - "surface": 8580000, - "canton": null, - "numero_insee": "60665" - } - }, - { - "pk": 13875, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VER-SUR-LAUNETTE", - "center": "POINT (624466.3666540024569258 2456374.8764291405677795)", - "surface": 13310000, - "canton": null, - "numero_insee": "60666" - } - }, - { - "pk": 35277, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VERBERIE", - "center": "POINT (628781.2027659136801958 2478725.6113135893829167)", - "surface": 15140000, - "canton": null, - "numero_insee": "60667" - } - }, - { - "pk": 18290, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VERDEREL-LES-SAUQUEUSE", - "center": "POINT (581464.1846704133786261 2501042.5452610882930458)", - "surface": 12600000, - "canton": null, - "numero_insee": "60668" - } - }, - { - "pk": 12422, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VERDERONNE", - "center": "POINT (611249.4189332328969613 2481179.8352284329012036)", - "surface": 3290000, - "canton": null, - "numero_insee": "60669" - } - }, - { - "pk": 37784, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VERNEUIL-EN-HALATTE", - "center": "POINT (614403.3106499627465382 2475002.3816389488056302)", - "surface": 22270000, - "canton": null, - "numero_insee": "60670" - } - }, - { - "pk": 37591, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VERSIGNY", - "center": "POINT (632619.7748232738813385 2462547.4836000758223236)", - "surface": 14670000, - "canton": null, - "numero_insee": "60671" - } - }, - { - "pk": 32426, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VEZ", - "center": "POINT (648939.0049039019504562 2473391.9114070064388216)", - "surface": 10830000, - "canton": null, - "numero_insee": "60672" - } - }, - { - "pk": 10827, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VIEFVILLERS", - "center": "POINT (584870.5117661907570437 2512478.0998966996558011)", - "surface": 4000000, - "canton": null, - "numero_insee": "60673" - } - }, - { - "pk": 35278, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VIEUX-MOULIN", - "center": "POINT (642815.8337423942284659 2487549.3330092979595065)", - "surface": 17970000, - "canton": null, - "numero_insee": "60674" - } - }, - { - "pk": 12396, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VIGNEMONT", - "center": "POINT (631904.4893549808766693 2499965.2455891729332507)", - "surface": 4390000, - "canton": null, - "numero_insee": "60675" - } - }, - { - "pk": 36526, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLE", - "center": "POINT (643254.2569498359225690 2506764.9937543012201786)", - "surface": 6030000, - "canton": null, - "numero_insee": "60676" - } - }, - { - "pk": 10854, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLEMBRAY", - "center": "POINT (566276.7584361064946279 2498413.8429143317043781)", - "surface": 6800000, - "canton": null, - "numero_insee": "60677" - } - }, - { - "pk": 7295, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLENEUVE-LES-SABLONS", - "center": "POINT (580818.5146340036299080 2470617.9252647673711181)", - "surface": 4500000, - "canton": null, - "numero_insee": "60678" - } - }, - { - "pk": 7011, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "LA VILLENEUVE-SOUS-THURY", - "center": "POINT (652831.4904808208812028 2462717.8207845096476376)", - "surface": 4260000, - "canton": null, - "numero_insee": "60679" - } - }, - { - "pk": 27004, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLENEUVE-SUR-VERBERIE", - "center": "POINT (625007.6697500515729189 2475291.6835057870484889)", - "surface": 8120000, - "canton": null, - "numero_insee": "60680" - } - }, - { - "pk": 32493, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SAINT-BARTHELEMY", - "center": "POINT (572254.5544418927747756 2489558.3022203384898603)", - "surface": 9920000, - "canton": null, - "numero_insee": "60681" - } - }, - { - "pk": 35765, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SAINT-FRAMBOURG", - "center": "POINT (621719.2541091159218922 2473662.9948823754675686)", - "surface": 9870000, - "canton": null, - "numero_insee": "60682" - } - }, - { - "pk": 8995, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SAINT-GENEST", - "center": "POINT (641144.0970158695708960 2460317.7839548783376813)", - "surface": 9630000, - "canton": null, - "numero_insee": "60683" - } - }, - { - "pk": 14221, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SAINT-SEPULCRE", - "center": "POINT (590698.3945065286243334 2485710.3083859714679420)", - "surface": 7290000, - "canton": null, - "numero_insee": "60685" - } - }, - { - "pk": 14073, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SOUS-SAINT-LEU", - "center": "POINT (603448.2835168188903481 2468806.4301317394711077)", - "surface": 4630000, - "canton": null, - "numero_insee": "60686" - } - }, - { - "pk": 30739, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SUR-AUCHY", - "center": "POINT (560478.5778658529743552 2497764.9759413888677955)", - "surface": 8780000, - "canton": null, - "numero_insee": "60687" - } - }, - { - "pk": 7644, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SUR-BONNIERES", - "center": "POINT (572733.4395554686198011 2504071.3449141182936728)", - "surface": 4010000, - "canton": null, - "numero_insee": "60688" - } - }, - { - "pk": 14240, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SUR-COUDUN", - "center": "POINT (633914.8569513523252681 2498881.4892366020940244)", - "surface": 6520000, - "canton": null, - "numero_insee": "60689" - } - }, - { - "pk": 36242, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-SUR-TRIE", - "center": "POINT (562130.8542654429329559 2479667.3970286645926535)", - "surface": 4030000, - "canton": null, - "numero_insee": "60690" - } - }, - { - "pk": 10565, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLERS-VERMONT", - "center": "POINT (555984.1632372778840363 2508734.2012123134918511)", - "surface": 6620000, - "canton": null, - "numero_insee": "60691" - } - }, - { - "pk": 28536, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLESELVE", - "center": "POINT (655939.6417572661302984 2521280.7540999352931976)", - "surface": 6930000, - "canton": null, - "numero_insee": "60693" - } - }, - { - "pk": 25682, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VILLOTRAN", - "center": "POINT (576211.1952901917975396 2483087.3241718169301748)", - "surface": 5350000, - "canton": null, - "numero_insee": "60694" - } - }, - { - "pk": 4435, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VINEUIL-SAINT-FIRMIN", - "center": "POINT (611965.7838643671711907 2467377.0032552890479565)", - "surface": 7870000, - "canton": null, - "numero_insee": "60695" - } - }, - { - "pk": 11868, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "VROCOURT", - "center": "POINT (567628.1380171946948394 2504328.8033075341954827)", - "surface": 4310000, - "canton": null, - "numero_insee": "60697" - } - }, - { - "pk": 28471, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "WACQUEMOULIN", - "center": "POINT (620587.3360858552623540 2501170.8239255831576884)", - "surface": 6630000, - "canton": null, - "numero_insee": "60698" - } - }, - { - "pk": 23925, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "WAMBEZ", - "center": "POINT (564338.8866215356392786 2502800.3600989165715873)", - "surface": 4600000, - "canton": null, - "numero_insee": "60699" - } - }, - { - "pk": 12022, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "WAVIGNIES", - "center": "POINT (601640.0021038035629317 2505414.3429000624455512)", - "surface": 9930000, - "canton": null, - "numero_insee": "60701" - } - }, - { - "pk": 15653, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "WELLES-PERENNES", - "center": "POINT (610586.9081813744269311 2512393.7129411110654473)", - "surface": 13490000, - "canton": null, - "numero_insee": "60702" - } - }, - { - "pk": 26996, - "model": "ishtar_common.town", - "fields": { - "departement": 61, - "name": "AUX MARAIS", - "center": "POINT (578454.6662503653205931 2490010.4694126690737903)", - "surface": 5780000, - "canton": null, - "numero_insee": "60703" - } - }, - { - "pk": 29522, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ALENCON", - "center": "POINT (433841.0512965329689905 2383737.0017432854510844)", - "surface": 10770000, - "canton": null, - "numero_insee": "61001" - } - }, - { - "pk": 14855, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ALMENECHES", - "center": "POINT (437199.4330253437510692 2413285.4894435149617493)", - "surface": 20420000, - "canton": null, - "numero_insee": "61002" - } - }, - { - "pk": 28161, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ANCEINS", - "center": "POINT (464969.2220989861525595 2431327.4421889903023839)", - "surface": 12450000, - "canton": null, - "numero_insee": "61003" - } - }, - { - "pk": 31173, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ANTOIGNY", - "center": "POINT (400420.6186147589469329 2395469.8657392561435699)", - "surface": 4770000, - "canton": null, - "numero_insee": "61004" - } - }, - { - "pk": 32355, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "APPENAI-SOUS-BELLEME", - "center": "POINT (468557.1264223834732547 2372716.1733016795478761)", - "surface": 10880000, - "canton": null, - "numero_insee": "61005" - } - }, - { - "pk": 5069, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ARGENTAN", - "center": "POINT (427058.4454237868776545 2417404.6260495632886887)", - "surface": 18370000, - "canton": null, - "numero_insee": "61006" - } - }, - { - "pk": 16127, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ATHIS-DE-L'ORNE", - "center": "POINT (390766.0106875441852026 2425611.3687000325880945)", - "surface": 32800000, - "canton": null, - "numero_insee": "61007" - } - }, - { - "pk": 9878, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUBE", - "center": "POINT (468196.3323557510739192 2416243.8806952405720949)", - "surface": 5740000, - "canton": null, - "numero_insee": "61008" - } - }, - { - "pk": 14290, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUBRY-EN-EXMES", - "center": "POINT (433507.0942330445395783 2424162.4705326338298619)", - "surface": 9690000, - "canton": null, - "numero_insee": "61009" - } - }, - { - "pk": 28461, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUBRY-LE-PANTHOU", - "center": "POINT (445162.9757111531216651 2430463.0223841699771583)", - "surface": 6850000, - "canton": null, - "numero_insee": "61010" - } - }, - { - "pk": 10962, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUBUSSON", - "center": "POINT (387477.1482460708357394 2423983.2249341364949942)", - "surface": 3920000, - "canton": null, - "numero_insee": "61011" - } - }, - { - "pk": 10392, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUGUAISE", - "center": "POINT (468527.2049463841249235 2412544.0706364600919187)", - "surface": 2190000, - "canton": null, - "numero_insee": "61012" - } - }, - { - "pk": 7631, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUNAY-LES-BOIS", - "center": "POINT (449049.1067452505812980 2396171.4646792034618556)", - "surface": 8550000, - "canton": null, - "numero_insee": "61013" - } - }, - { - "pk": 5002, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUNOU-LE-FAUCON", - "center": "POINT (432074.7677857970120385 2415844.9463074039667845)", - "surface": 6800000, - "canton": null, - "numero_insee": "61014" - } - }, - { - "pk": 16515, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUNOU-SUR-ORNE", - "center": "POINT (445191.2428303468041122 2402844.2565456833690405)", - "surface": 18190000, - "canton": null, - "numero_insee": "61015" - } - }, - { - "pk": 8970, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AUTHEUIL", - "center": "POINT (477260.3911134083173238 2397205.7484775106422603)", - "surface": 6280000, - "canton": null, - "numero_insee": "61016" - } - }, - { - "pk": 8190, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES AUTHIEUX-DU-PUITS", - "center": "POINT (452206.2876739565399475 2413709.7975449645891786)", - "surface": 4330000, - "canton": null, - "numero_insee": "61017" - } - }, - { - "pk": 28234, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AVERNES-SOUS-EXMES", - "center": "POINT (443022.0288707920117304 2423140.3530090749263763)", - "surface": 7110000, - "canton": null, - "numero_insee": "61019" - } - }, - { - "pk": 32304, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AVOINE", - "center": "POINT (420508.0136042431695387 2410846.0756265190429986)", - "surface": 9580000, - "canton": null, - "numero_insee": "61020" - } - }, - { - "pk": 29990, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "AVRILLY", - "center": "POINT (381793.1117578956764191 2397217.9495491497218609)", - "surface": 5500000, - "canton": null, - "numero_insee": "61021" - } - }, - { - "pk": 34264, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BAILLEUL", - "center": "POINT (426585.5087127299048007 2426206.7464257404208183)", - "surface": 16890000, - "canton": null, - "numero_insee": "61023" - } - }, - { - "pk": 8144, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BANVOU", - "center": "POINT (386781.9793037698836997 2411168.6909715603105724)", - "surface": 13020000, - "canton": null, - "numero_insee": "61024" - } - }, - { - "pk": 12761, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BARVILLE", - "center": "POINT (452821.0273345026653260 2387796.7307957909069955)", - "surface": 7590000, - "canton": null, - "numero_insee": "61026" - } - }, - { - "pk": 16116, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BATILLY", - "center": "POINT (414753.2929372854996473 2417002.8951241038739681)", - "surface": 8950000, - "canton": null, - "numero_insee": "61027" - } - }, - { - "pk": 18234, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BAZOCHES-AU-HOULME", - "center": "POINT (408953.2765765676158480 2428663.0882720830850303)", - "surface": 28850000, - "canton": null, - "numero_insee": "61028" - } - }, - { - "pk": 14935, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BAZOCHES-SUR-HOENE", - "center": "POINT (462157.4370391138363630 2396279.9840886034071445)", - "surface": 21470000, - "canton": null, - "numero_insee": "61029" - } - }, - { - "pk": 28897, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA BAZOQUE", - "center": "POINT (384169.3568162593292072 2424656.5054232757538557)", - "surface": 2700000, - "canton": null, - "numero_insee": "61030" - } - }, - { - "pk": 21532, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BEAUCHENE", - "center": "POINT (374347.9101455752388574 2414268.7179385870695114)", - "surface": 10370000, - "canton": null, - "numero_insee": "61031" - } - }, - { - "pk": 18148, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BEAUFAI", - "center": "POINT (465672.3965013320557773 2418924.8200383284129202)", - "surface": 12980000, - "canton": null, - "numero_insee": "61032" - } - }, - { - "pk": 22908, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BEAULANDAIS", - "center": "POINT (387901.1149952508276328 2396767.8197479071095586)", - "surface": 8550000, - "canton": null, - "numero_insee": "61033" - } - }, - { - "pk": 33041, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BEAULIEU", - "center": "POINT (482055.5376124598551542 2410254.6136392015032470)", - "surface": 18060000, - "canton": null, - "numero_insee": "61034" - } - }, - { - "pk": 5635, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BEAUVAIN", - "center": "POINT (405340.5460768709890544 2405617.4801485426723957)", - "surface": 12780000, - "canton": null, - "numero_insee": "61035" - } - }, - { - "pk": 31383, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BELFONDS", - "center": "POINT (435477.6800857564667240 2403664.5898766159079969)", - "surface": 14350000, - "canton": null, - "numero_insee": "61036" - } - }, - { - "pk": 34673, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BELLAVILLIERS", - "center": "POINT (463281.5962654242757708 2381378.7140686535276473)", - "surface": 15900000, - "canton": null, - "numero_insee": "61037" - } - }, - { - "pk": 25653, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BELLEME", - "center": "POINT (468527.2652591215446591 2376318.5233375644311309)", - "surface": 1700000, - "canton": null, - "numero_insee": "61038" - } - }, - { - "pk": 13376, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA BELLIERE", - "center": "POINT (426359.5496304513653740 2405090.3321765102446079)", - "surface": 13780000, - "canton": null, - "numero_insee": "61039" - } - }, - { - "pk": 20503, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BELLOU-EN-HOULME", - "center": "POINT (395165.8264892050065100 2413839.4649464939720929)", - "surface": 38980000, - "canton": null, - "numero_insee": "61040" - } - }, - { - "pk": 5757, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BELLOU-LE-TRICHARD", - "center": "POINT (467526.9065890222555026 2364201.4597711879760027)", - "surface": 9700000, - "canton": null, - "numero_insee": "61041" - } - }, - { - "pk": 37244, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BELLOU-SUR-HUISNE", - "center": "POINT (481096.4379153763293289 2381126.1503425422124565)", - "surface": 15170000, - "canton": null, - "numero_insee": "61042" - } - }, - { - "pk": 33535, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BERD'HUIS", - "center": "POINT (481559.8146475034300238 2373524.5304198889061809)", - "surface": 11460000, - "canton": null, - "numero_insee": "61043" - } - }, - { - "pk": 10748, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BERJOU", - "center": "POINT (393319.8553942543221638 2431436.3236635164357722)", - "surface": 8940000, - "canton": null, - "numero_insee": "61044" - } - }, - { - "pk": 9474, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BIVILLIERS", - "center": "POINT (472846.8119256077334285 2398470.0557531286031008)", - "surface": 4110000, - "canton": null, - "numero_insee": "61045" - } - }, - { - "pk": 25457, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BIZOU", - "center": "POINT (482730.2614055174635723 2389245.4853993011638522)", - "surface": 9180000, - "canton": null, - "numero_insee": "61046" - } - }, - { - "pk": 15871, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BOCQUENCE", - "center": "POINT (461896.3461850337916985 2427799.6135243102908134)", - "surface": 10340000, - "canton": null, - "numero_insee": "61047" - } - }, - { - "pk": 5800, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BOECE", - "center": "POINT (460889.7632832470117137 2392266.6595693230628967)", - "surface": 2370000, - "canton": null, - "numero_insee": "61048" - } - }, - { - "pk": 24186, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BOISSEI-LA-LANDE", - "center": "POINT (432302.9924558229977265 2412444.4832516182214022)", - "surface": 7170000, - "canton": null, - "numero_insee": "61049" - } - }, - { - "pk": 5473, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BOISSY-MAUGIS", - "center": "POINT (481154.1494498954270966 2386230.2713848687708378)", - "surface": 22310000, - "canton": null, - "numero_insee": "61050" - } - }, - { - "pk": 6085, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BONNEFOI", - "center": "POINT (469248.3766436786390841 2410048.3175660511478782)", - "surface": 5450000, - "canton": null, - "numero_insee": "61052" - } - }, - { - "pk": 10141, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BONSMOULINS", - "center": "POINT (467663.1343498179921880 2408133.8593415352515876)", - "surface": 7580000, - "canton": null, - "numero_insee": "61053" - } - }, - { - "pk": 10140, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE BOSC-RENOULT", - "center": "POINT (451312.1058839797042310 2437118.3405340909957886)", - "surface": 12850000, - "canton": null, - "numero_insee": "61054" - } - }, - { - "pk": 34495, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BOUCE", - "center": "POINT (420644.4013695477042347 2406444.1419274411164224)", - "surface": 20380000, - "canton": null, - "numero_insee": "61055" - } - }, - { - "pk": 33784, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE BOUILLON", - "center": "POINT (434725.1252569081843831 2397854.3049557618796825)", - "surface": 17930000, - "canton": null, - "numero_insee": "61056" - } - }, - { - "pk": 29886, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE BOURG-SAINT-LEONARD", - "center": "POINT (435830.8289919414673932 2421479.8219503387808800)", - "surface": 9330000, - "canton": null, - "numero_insee": "61057" - } - }, - { - "pk": 10698, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BREEL", - "center": "POINT (400161.0756125929183327 2426989.5764613091014326)", - "surface": 3800000, - "canton": null, - "numero_insee": "61058" - } - }, - { - "pk": 25076, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BRESOLETTES", - "center": "POINT (473793.5068917872849852 2404982.4556027031503618)", - "surface": 5900000, - "canton": null, - "numero_insee": "61059" - } - }, - { - "pk": 35167, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BRETHEL", - "center": "POINT (467911.0742158352513798 2414440.2760351477190852)", - "surface": 3010000, - "canton": null, - "numero_insee": "61060" - } - }, - { - "pk": 18103, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BRETONCELLES", - "center": "POINT (493691.2872254825779237 2382831.8845368651673198)", - "surface": 40460000, - "canton": null, - "numero_insee": "61061" - } - }, - { - "pk": 5415, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BRIEUX", - "center": "POINT (422561.5894901129067875 2428775.3044305136427283)", - "surface": 5200000, - "canton": null, - "numero_insee": "61062" - } - }, - { - "pk": 18815, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BRIOUZE", - "center": "POINT (400152.4666435433318838 2415881.8970254212617874)", - "surface": 17250000, - "canton": null, - "numero_insee": "61063" - } - }, - { - "pk": 11257, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BRULLEMAIL", - "center": "POINT (451648.1441478120977990 2408601.6460462785325944)", - "surface": 10470000, - "canton": null, - "numero_insee": "61064" - } - }, - { - "pk": 25278, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BUBERTRE", - "center": "POINT (472128.9447094771312550 2400565.5766653632745147)", - "surface": 13770000, - "canton": null, - "numero_insee": "61065" - } - }, - { - "pk": 9104, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BURE", - "center": "POINT (457094.7919299175264314 2391334.5945582701824605)", - "surface": 5750000, - "canton": null, - "numero_insee": "61066" - } - }, - { - "pk": 29452, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BURES", - "center": "POINT (457046.7380950044607744 2397138.2918233247473836)", - "surface": 9580000, - "canton": null, - "numero_insee": "61067" - } - }, - { - "pk": 6635, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BURSARD", - "center": "POINT (442448.2169170220149681 2395716.5878225490450859)", - "surface": 10600000, - "canton": null, - "numero_insee": "61068" - } - }, - { - "pk": 32610, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CAHAN", - "center": "POINT (395711.4368642356712371 2432656.8167403559200466)", - "surface": 5940000, - "canton": null, - "numero_insee": "61069" - } - }, - { - "pk": 22645, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CALIGNY", - "center": "POINT (383948.6689274571253918 2427156.3968359357677400)", - "surface": 15150000, - "canton": null, - "numero_insee": "61070" - } - }, - { - "pk": 14257, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CAMEMBERT", - "center": "POINT (441124.9729564544977620 2434732.5419692955911160)", - "surface": 10240000, - "canton": null, - "numero_insee": "61071" - } - }, - { - "pk": 25665, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CANAPVILLE", - "center": "POINT (447478.3629440262448043 2440889.1726080975495279)", - "surface": 8200000, - "canton": null, - "numero_insee": "61072" - } - }, - { - "pk": 22869, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CARNEILLE", - "center": "POINT (395392.7191553625743836 2422747.4561536167748272)", - "surface": 16170000, - "canton": null, - "numero_insee": "61073" - } - }, - { - "pk": 33528, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CARROUGES", - "center": "POINT (415697.3701544891810045 2399598.5768037736415863)", - "surface": 8560000, - "canton": null, - "numero_insee": "61074" - } - }, - { - "pk": 14621, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CEAUCE", - "center": "POINT (380331.6315011327969842 2392402.5427691116929054)", - "surface": 41700000, - "canton": null, - "numero_insee": "61075" - } - }, - { - "pk": 35978, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE CERCUEIL", - "center": "POINT (428286.3581867961911485 2402004.0725821200758219)", - "surface": 13470000, - "canton": null, - "numero_insee": "61076" - } - }, - { - "pk": 27392, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CERISE", - "center": "POINT (436832.2402816067915410 2385062.6459696707315743)", - "surface": 4440000, - "canton": null, - "numero_insee": "61077" - } - }, - { - "pk": 7535, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CERISY-BELLE-ETOILE", - "center": "POINT (382369.0711038515437394 2424541.6381187448278069)", - "surface": 13420000, - "canton": null, - "numero_insee": "61078" - } - }, - { - "pk": 14580, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CETON", - "center": "POINT (482676.7532946604187600 2359523.6133292214944959)", - "surface": 59850000, - "canton": null, - "numero_insee": "61079" - } - }, - { - "pk": 10685, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAHAINS", - "center": "POINT (418906.8293689305428416 2398724.4164203195832670)", - "surface": 7610000, - "canton": null, - "numero_insee": "61080" - } - }, - { - "pk": 7363, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE CHALANGE", - "center": "POINT (450608.7249974989099428 2401187.8821729565970600)", - "surface": 6360000, - "canton": null, - "numero_insee": "61082" - } - }, - { - "pk": 6878, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAMBOIS", - "center": "POINT (436590.8089352093520574 2426389.4467657390050590)", - "surface": 8360000, - "canton": null, - "numero_insee": "61083" - } - }, - { - "pk": 14041, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAMPCERIE", - "center": "POINT (411483.6726287226774730 2425181.5602362207137048)", - "surface": 8950000, - "canton": null, - "numero_insee": "61084" - } - }, - { - "pk": 35008, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE CHAMP-DE-LA-PIERRE", - "center": "POINT (412462.3417780734016560 2403574.7061043144203722)", - "surface": 4130000, - "canton": null, - "numero_insee": "61085" - } - }, - { - "pk": 36386, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES CHAMPEAUX", - "center": "POINT (438425.8183605666854419 2434410.0307027692906559)", - "surface": 9680000, - "canton": null, - "numero_insee": "61086" - } - }, - { - "pk": 4622, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAMPEAUX-SUR-SARTHE", - "center": "POINT (459931.1764807411236688 2399263.6536639588885009)", - "surface": 9520000, - "canton": null, - "numero_insee": "61087" - } - }, - { - "pk": 9742, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAMP-HAUT", - "center": "POINT (451887.0560158733278513 2416008.7421185439452529)", - "surface": 5120000, - "canton": null, - "numero_insee": "61088" - } - }, - { - "pk": 11587, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAMPOSOULT", - "center": "POINT (440750.3708120937226340 2431627.3521279054693878)", - "surface": 7140000, - "canton": null, - "numero_insee": "61089" - } - }, - { - "pk": 18467, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAMPSECRET", - "center": "POINT (388838.3757577051874250 2404480.9366085240617394)", - "surface": 45140000, - "canton": null, - "numero_insee": "61091" - } - }, - { - "pk": 11697, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHANDAI", - "center": "POINT (482799.5619375113165006 2417065.4826489505358040)", - "surface": 13840000, - "canton": null, - "numero_insee": "61092" - } - }, - { - "pk": 9409, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHANU", - "center": "POINT (378520.1104506408446468 2418005.5472189490683377)", - "surface": 15680000, - "canton": null, - "numero_insee": "61093" - } - }, - { - "pk": 7301, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAPELLE-AU-MOINE", - "center": "POINT (384344.2786488474812359 2415551.6927656410261989)", - "surface": 5510000, - "canton": null, - "numero_insee": "61094" - } - }, - { - "pk": 6947, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAPELLE-BICHE", - "center": "POINT (382133.0384438748587854 2416734.3431657785549760)", - "surface": 6480000, - "canton": null, - "numero_insee": "61095" - } - }, - { - "pk": 30348, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAPELLE-D'ANDAINE", - "center": "POINT (392998.6026185286464170 2397510.2498205839656293)", - "surface": 15710000, - "canton": null, - "numero_insee": "61096" - } - }, - { - "pk": 28364, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAPELLE-MONTLIGEON", - "center": "POINT (475930.0537988254218362 2388688.7047756649553776)", - "surface": 8450000, - "canton": null, - "numero_insee": "61097" - } - }, - { - "pk": 8247, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAPELLE-PRES-SEES", - "center": "POINT (438821.9399606067454442 2398588.6518882820382714)", - "surface": 9860000, - "canton": null, - "numero_insee": "61098" - } - }, - { - "pk": 6510, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAPELLE-SOUEF", - "center": "POINT (470279.8086577440844849 2370128.5721655501984060)", - "surface": 11250000, - "canton": null, - "numero_insee": "61099" - } - }, - { - "pk": 36811, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAPELLE-VIEL", - "center": "POINT (473020.8790986923268065 2413682.0848555066622794)", - "surface": 11770000, - "canton": null, - "numero_insee": "61100" - } - }, - { - "pk": 17647, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE CHATEAU-D'ALMENECHES", - "center": "POINT (437422.7107842711266130 2410485.3960345792584121)", - "surface": 10660000, - "canton": null, - "numero_insee": "61101" - } - }, - { - "pk": 17429, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE CHATELLIER", - "center": "POINT (384867.6258613279787824 2412754.0590245616622269)", - "surface": 8370000, - "canton": null, - "numero_insee": "61102" - } - }, - { - "pk": 7848, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHAUMONT", - "center": "POINT (453179.4393809082685038 2429128.3920436878688633)", - "surface": 19550000, - "canton": null, - "numero_insee": "61103" - } - }, - { - "pk": 12961, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA CHAUX", - "center": "POINT (407859.4369581999490038 2403536.7672277959063649)", - "surface": 5070000, - "canton": null, - "numero_insee": "61104" - } - }, - { - "pk": 36822, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHEMILLI", - "center": "POINT (460231.8037807578220963 2375048.9219927806407213)", - "surface": 11000000, - "canton": null, - "numero_insee": "61105" - } - }, - { - "pk": 24209, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CHENEDOUIT", - "center": "POINT (403007.2944849940249696 2421609.3260194603353739)", - "surface": 9030000, - "canton": null, - "numero_insee": "61106" - } - }, - { - "pk": 26974, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CIRAL", - "center": "POINT (417456.2238758127787150 2392608.1463251467794180)", - "surface": 18060000, - "canton": null, - "numero_insee": "61107" - } - }, - { - "pk": 30114, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CISAI-SAINT-AUBIN", - "center": "POINT (454443.1154549489147030 2421533.6728611309081316)", - "surface": 14630000, - "canton": null, - "numero_insee": "61108" - } - }, - { - "pk": 9168, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CLAIREFOUGERE", - "center": "POINT (378036.8266112508717924 2428108.4917190163396299)", - "surface": 3310000, - "canton": null, - "numero_insee": "61109" - } - }, - { - "pk": 6002, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA COCHERE", - "center": "POINT (439379.2999658992048353 2415905.2992963362485170)", - "surface": 13060000, - "canton": null, - "numero_insee": "61110" - } - }, - { - "pk": 26060, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COLOMBIERS", - "center": "POINT (430897.8533090231940150 2388716.2536832303740084)", - "surface": 12200000, - "canton": null, - "numero_insee": "61111" - } - }, - { - "pk": 5060, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COLONARD-CORUBERT", - "center": "POINT (474999.1290896084392443 2380274.9891611547209322)", - "surface": 14420000, - "canton": null, - "numero_insee": "61112" - } - }, - { - "pk": 9608, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COMBLOT", - "center": "POINT (470448.0953494483255781 2386041.3946389779448509)", - "surface": 4380000, - "canton": null, - "numero_insee": "61113" - } - }, - { - "pk": 13217, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COMMEAUX", - "center": "POINT (420901.0020314224530011 2423858.2655499200336635)", - "surface": 6350000, - "canton": null, - "numero_insee": "61114" - } - }, - { - "pk": 3165, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CONDEAU", - "center": "POINT (487945.7123856792459264 2375779.1340659167617559)", - "surface": 15390000, - "canton": null, - "numero_insee": "61115" - } - }, - { - "pk": 28211, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CONDE-SUR-SARTHE", - "center": "POINT (429534.9657882397295907 2384101.7194672883488238)", - "surface": 8470000, - "canton": null, - "numero_insee": "61117" - } - }, - { - "pk": 9752, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CORBON", - "center": "POINT (474652.4579905108548701 2385876.1160482172854245)", - "surface": 8480000, - "canton": null, - "numero_insee": "61118" - } - }, - { - "pk": 25836, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COUDEHARD", - "center": "POINT (438461.3759093115222640 2430107.4175607641227543)", - "surface": 8540000, - "canton": null, - "numero_insee": "61120" - } - }, - { - "pk": 18089, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COULIMER", - "center": "POINT (461322.3444334269734100 2388367.4771536844782531)", - "surface": 17270000, - "canton": null, - "numero_insee": "61121" - } - }, - { - "pk": 18836, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COULMER", - "center": "POINT (450448.1032488739583641 2420599.9954105555079877)", - "surface": 6700000, - "canton": null, - "numero_insee": "61122" - } - }, - { - "pk": 3742, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COULONCES", - "center": "POINT (429469.1091244372073561 2428432.0497713885270059)", - "surface": 6080000, - "canton": null, - "numero_insee": "61123" - } - }, - { - "pk": 26351, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA COULONCHE", - "center": "POINT (393313.2211524988524616 2407920.1242835163138807)", - "surface": 14070000, - "canton": null, - "numero_insee": "61124" - } - }, - { - "pk": 4291, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COULONGES-LES-SABLONS", - "center": "POINT (494425.8310490061994642 2378735.0513694924302399)", - "surface": 19580000, - "canton": null, - "numero_insee": "61125" - } - }, - { - "pk": 15141, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COULONGES-SUR-SARTHE", - "center": "POINT (456572.1030948860570788 2394032.1765470653772354)", - "surface": 9780000, - "canton": null, - "numero_insee": "61126" - } - }, - { - "pk": 28421, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA COURBE", - "center": "POINT (414332.4186585599090904 2419501.1440340918488801)", - "surface": 4960000, - "canton": null, - "numero_insee": "61127" - } - }, - { - "pk": 28365, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COURCERAULT", - "center": "POINT (476072.4500862309942022 2383586.2535260654985905)", - "surface": 14920000, - "canton": null, - "numero_insee": "61128" - } - }, - { - "pk": 13730, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COURGEON", - "center": "POINT (472332.7231934356968850 2388058.4439399349503219)", - "surface": 10570000, - "canton": null, - "numero_insee": "61129" - } - }, - { - "pk": 28281, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COURGEOUT", - "center": "POINT (463498.0565526279387996 2391487.7003361526876688)", - "surface": 18040000, - "canton": null, - "numero_insee": "61130" - } - }, - { - "pk": 36848, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COURMENIL", - "center": "POINT (444938.9188770744949579 2421254.9038694109767675)", - "surface": 9520000, - "canton": null, - "numero_insee": "61131" - } - }, - { - "pk": 7403, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COUTERNE", - "center": "POINT (397917.3752442464465275 2395649.3955660439096391)", - "surface": 10660000, - "canton": null, - "numero_insee": "61135" - } - }, - { - "pk": 29495, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "COUVAINS", - "center": "POINT (469473.6150838757166639 2431164.6356865158304572)", - "surface": 17880000, - "canton": null, - "numero_insee": "61136" - } - }, - { - "pk": 22266, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CRAMENIL", - "center": "POINT (400721.5294341223780066 2419689.1985946106724441)", - "surface": 8180000, - "canton": null, - "numero_insee": "61137" - } - }, - { - "pk": 22705, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CROISILLES", - "center": "POINT (447749.7489822618081234 2420177.3979009524919093)", - "surface": 11400000, - "canton": null, - "numero_insee": "61138" - } - }, - { - "pk": 26277, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CROUTTES", - "center": "POINT (438694.5768593321554363 2438214.8084115153178573)", - "surface": 13450000, - "canton": null, - "numero_insee": "61139" - } - }, - { - "pk": 28564, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "CRULAI", - "center": "POINT (476436.2722445248509757 2412109.3049932443536818)", - "surface": 22780000, - "canton": null, - "numero_insee": "61140" - } - }, - { - "pk": 3949, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "DAME-MARIE", - "center": "POINT (472547.2959785958519205 2374250.3391791656613350)", - "surface": 13320000, - "canton": null, - "numero_insee": "61142" - } - }, - { - "pk": 31959, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "DAMIGNY", - "center": "POINT (432421.9613224147469737 2385926.8491149987094104)", - "surface": 4860000, - "canton": null, - "numero_insee": "61143" - } - }, - { - "pk": 22415, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "DANCE", - "center": "POINT (483147.5696282443823293 2375138.8636945839971304)", - "surface": 14670000, - "canton": null, - "numero_insee": "61144" - } - }, - { - "pk": 20497, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "DOMFRONT", - "center": "POINT (382252.3027328432071954 2402225.2400542241521180)", - "surface": 35130000, - "canton": null, - "numero_insee": "61145" - } - }, - { - "pk": 28027, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "DOMPIERRE", - "center": "POINT (386907.5513933337642811 2408067.5685530980117619)", - "surface": 8660000, - "canton": null, - "numero_insee": "61146" - } - }, - { - "pk": 34931, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "DORCEAU", - "center": "POINT (487292.1406269348226488 2382178.3004258084110916)", - "surface": 14770000, - "canton": null, - "numero_insee": "61147" - } - }, - { - "pk": 33181, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "DURCET", - "center": "POINT (395520.7808356210589409 2419346.1781527372077107)", - "surface": 9680000, - "canton": null, - "numero_insee": "61148" - } - }, - { - "pk": 8659, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ECHALOU", - "center": "POINT (391734.0682207338977605 2417413.7107933079823852)", - "surface": 5620000, - "canton": null, - "numero_insee": "61149" - } - }, - { - "pk": 16474, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ECHAUFFOUR", - "center": "POINT (457086.1386268195929006 2416552.1209781616926193)", - "surface": 33270000, - "canton": null, - "numero_insee": "61150" - } - }, - { - "pk": 3774, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ECORCEI", - "center": "POINT (470309.2466409454355016 2414860.4304129690863192)", - "surface": 9580000, - "canton": null, - "numero_insee": "61151" - } - }, - { - "pk": 36390, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ECORCHES", - "center": "POINT (434836.0360350731061772 2432879.3569735153578222)", - "surface": 9860000, - "canton": null, - "numero_insee": "61152" - } - }, - { - "pk": 32671, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ECOUCHE", - "center": "POINT (419767.1267808481352404 2415743.3517438042908907)", - "surface": 5300000, - "canton": null, - "numero_insee": "61153" - } - }, - { - "pk": 8763, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "EPERRAIS", - "center": "POINT (467386.7387196539202705 2381112.5172182335518301)", - "surface": 14310000, - "canton": null, - "numero_insee": "61154" - } - }, - { - "pk": 4081, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "L'EPINAY-LE-COMTE", - "center": "POINT (368335.4319721282809041 2390903.0087637072429061)", - "surface": 9630000, - "canton": null, - "numero_insee": "61155" - } - }, - { - "pk": 17087, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ESSAY", - "center": "POINT (445251.6546281918417662 2395539.6293703834526241)", - "surface": 16080000, - "canton": null, - "numero_insee": "61156" - } - }, - { - "pk": 17086, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "EXMES", - "center": "POINT (441349.9350318951765075 2419624.1327528497204185)", - "surface": 10540000, - "canton": null, - "numero_insee": "61157" - } - }, - { - "pk": 29521, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FAVEROLLES", - "center": "POINT (406496.7816535116871819 2411030.7634289828129113)", - "surface": 10560000, - "canton": null, - "numero_insee": "61158" - } - }, - { - "pk": 3756, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FAY", - "center": "POINT (457852.0257219914346933 2408653.0000198739580810)", - "surface": 8460000, - "canton": null, - "numero_insee": "61159" - } - }, - { - "pk": 18216, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FEINGS", - "center": "POINT (475276.5510051629389636 2395087.8133697342127562)", - "surface": 20330000, - "canton": null, - "numero_insee": "61160" - } - }, - { - "pk": 26439, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FEL", - "center": "POINT (436411.3559081974672154 2423886.2595550836995244)", - "surface": 7040000, - "canton": null, - "numero_insee": "61161" - } - }, - { - "pk": 25849, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FERRIERE-AU-DOYEN", - "center": "POINT (465141.6702049336163327 2410514.6294464948587120)", - "surface": 22590000, - "canton": null, - "numero_insee": "61162" - } - }, - { - "pk": 31000, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FERRIERE-AUX-ETANGS", - "center": "POINT (390297.3414101020316593 2409596.4935134924016893)", - "surface": 11140000, - "canton": null, - "numero_insee": "61163" - } - }, - { - "pk": 13544, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FERRIERE-BECHET", - "center": "POINT (432708.1499885510420427 2399738.9776259893551469)", - "surface": 13780000, - "canton": null, - "numero_insee": "61164" - } - }, - { - "pk": 32241, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FERRIERE-BOCHARD", - "center": "POINT (424246.4068828815943561 2382256.7685235291719437)", - "surface": 10810000, - "canton": null, - "numero_insee": "61165" - } - }, - { - "pk": 18224, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FERRIERES-LA-VERRERIE", - "center": "POINT (455558.0411339708371088 2407733.3820098470896482)", - "surface": 14710000, - "canton": null, - "numero_insee": "61166" - } - }, - { - "pk": 8594, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FERTE-FRENEL", - "center": "POINT (465697.8370070151868276 2427931.1749939271248877)", - "surface": 7640000, - "canton": null, - "numero_insee": "61167" - } - }, - { - "pk": 18426, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FERTE-MACE", - "center": "POINT (400471.2419769517146051 2401474.5050290748476982)", - "surface": 27240000, - "canton": null, - "numero_insee": "61168" - } - }, - { - "pk": 14900, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FLERS", - "center": "POINT (386712.8596827278379351 2419573.9236674355342984)", - "surface": 21470000, - "canton": null, - "numero_insee": "61169" - } - }, - { - "pk": 9523, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FLEURE", - "center": "POINT (424101.1803040498052724 2411976.4880937621928751)", - "surface": 12070000, - "canton": null, - "numero_insee": "61170" - } - }, - { - "pk": 17288, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FONTAINE-LES-BASSETS", - "center": "POINT (428641.3575292734894902 2431727.4525062567554414)", - "surface": 5980000, - "canton": null, - "numero_insee": "61171" - } - }, - { - "pk": 9269, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FONTENAI-LES-LOUVETS", - "center": "POINT (427942.2859398510772735 2395196.4507884234189987)", - "surface": 18720000, - "canton": null, - "numero_insee": "61172" - } - }, - { - "pk": 14057, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FONTENAI-SUR-ORNE", - "center": "POINT (422568.0410087951458991 2415866.5304933213628829)", - "surface": 6580000, - "canton": null, - "numero_insee": "61173" - } - }, - { - "pk": 33114, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FORET-AUVRAY", - "center": "POINT (402367.3688112806994468 2426407.3357465728186071)", - "surface": 11170000, - "canton": null, - "numero_insee": "61174" - } - }, - { - "pk": 33751, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FORGES", - "center": "POINT (436580.8429376414860599 2391264.9779320484958589)", - "surface": 5030000, - "canton": null, - "numero_insee": "61175" - } - }, - { - "pk": 6610, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FRESNAIE-FAYEL", - "center": "POINT (445081.9463600982562639 2428160.7922400971874595)", - "surface": 5030000, - "canton": null, - "numero_insee": "61178" - } - }, - { - "pk": 15523, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA FRESNAYE-AU-SAUVAGE", - "center": "POINT (408938.9726734683499672 2418255.8604703005403280)", - "surface": 12050000, - "canton": null, - "numero_insee": "61179" - } - }, - { - "pk": 8254, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "FRESNAY-LE-SAMSON", - "center": "POINT (443645.5155185037874617 2432451.8277408918365836)", - "surface": 6760000, - "canton": null, - "numero_insee": "61180" - } - }, - { - "pk": 9880, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GACE", - "center": "POINT (450826.8234565711463802 2423204.9077116404660046)", - "surface": 6530000, - "canton": null, - "numero_insee": "61181" - } - }, - { - "pk": 4738, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GANDELAIN", - "center": "POINT (420792.1868572271196172 2388532.7580531327985227)", - "surface": 14940000, - "canton": null, - "numero_insee": "61182" - } - }, - { - "pk": 29733, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GAPREE", - "center": "POINT (449278.0998651272966526 2404779.3897184077650309)", - "surface": 10060000, - "canton": null, - "numero_insee": "61183" - } - }, - { - "pk": 17609, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GAUVILLE", - "center": "POINT (468014.9974002251401544 2426049.0856105303391814)", - "surface": 21790000, - "canton": null, - "numero_insee": "61184" - } - }, - { - "pk": 12629, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GEMAGES", - "center": "POINT (472201.7998677955474705 2367642.6936219446361065)", - "surface": 6460000, - "canton": null, - "numero_insee": "61185" - } - }, - { - "pk": 5408, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GENESLAY", - "center": "POINT (391423.1056941756978631 2394395.0977232335135341)", - "surface": 8460000, - "canton": null, - "numero_insee": "61186" - } - }, - { - "pk": 7716, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES GENETTES", - "center": "POINT (470663.3533927475800738 2408358.8676944482140243)", - "surface": 6530000, - "canton": null, - "numero_insee": "61187" - } - }, - { - "pk": 21013, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA GENEVRAIE", - "center": "POINT (451325.5999109532567672 2411300.8497890122234821)", - "surface": 13500000, - "canton": null, - "numero_insee": "61188" - } - }, - { - "pk": 22324, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GIEL-COURTEILLES", - "center": "POINT (412814.9923977102735080 2421490.0052485773339868)", - "surface": 12720000, - "canton": null, - "numero_insee": "61189" - } - }, - { - "pk": 8961, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GINAI", - "center": "POINT (443461.9877721284283325 2418340.7019115826115012)", - "surface": 9340000, - "canton": null, - "numero_insee": "61190" - } - }, - { - "pk": 28136, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GLOS-LA-FERRIERE", - "center": "POINT (472191.8481497168540955 2429185.8156643072143197)", - "surface": 12720000, - "canton": null, - "numero_insee": "61191" - } - }, - { - "pk": 27184, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GODISSON", - "center": "POINT (446228.2101380310487002 2410558.1945031983777881)", - "surface": 6220000, - "canton": null, - "numero_insee": "61192" - } - }, - { - "pk": 15896, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA GONFRIERE", - "center": "POINT (464315.2205031961202621 2425718.2233507027849555)", - "surface": 13040000, - "canton": null, - "numero_insee": "61193" - } - }, - { - "pk": 11309, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GOULET", - "center": "POINT (421450.0197218626271933 2417958.7512679123319685)", - "surface": 9450000, - "canton": null, - "numero_insee": "61194" - } - }, - { - "pk": 18662, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE GUE-DE-LA-CHAINE", - "center": "POINT (464623.8956183236441575 2376386.2451369813643396)", - "surface": 18970000, - "canton": null, - "numero_insee": "61196" - } - }, - { - "pk": 32397, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GUEPREI", - "center": "POINT (427263.6345898316940293 2428914.1804446126334369)", - "surface": 7140000, - "canton": null, - "numero_insee": "61197" - } - }, - { - "pk": 10564, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "GUERQUESALLES", - "center": "POINT (444419.5248279572697356 2435660.3861574251204729)", - "surface": 8600000, - "canton": null, - "numero_insee": "61198" - } - }, - { - "pk": 8568, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "HABLOVILLE", - "center": "POINT (415094.1343159030657262 2424210.6433500237762928)", - "surface": 11800000, - "canton": null, - "numero_insee": "61199" - } - }, - { - "pk": 13431, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "HALEINE", - "center": "POINT (395024.5837466888478957 2394524.8056732420809567)", - "surface": 2640000, - "canton": null, - "numero_insee": "61200" - } - }, - { - "pk": 20076, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA HAUTE-CHAPELLE", - "center": "POINT (377730.5411389953223988 2404489.6891496777534485)", - "surface": 19590000, - "canton": null, - "numero_insee": "61201" - } - }, - { - "pk": 35215, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "HAUTERIVE", - "center": "POINT (442303.5216971974587068 2389010.6493555060587823)", - "surface": 6970000, - "canton": null, - "numero_insee": "61202" - } - }, - { - "pk": 33884, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "HELOUP", - "center": "POINT (429468.7818969212239608 2379998.2365537658333778)", - "surface": 12820000, - "canton": null, - "numero_insee": "61203" - } - }, - { - "pk": 25434, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "L'HERMITIERE", - "center": "POINT (475415.5262119065155275 2366268.3287415313534439)", - "surface": 8320000, - "canton": null, - "numero_insee": "61204" - } - }, - { - "pk": 37535, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "HEUGON", - "center": "POINT (457571.3520317145157605 2430465.6283060032874346)", - "surface": 15840000, - "canton": null, - "numero_insee": "61205" - } - }, - { - "pk": 37294, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "L'HOME-CHAMONDOT", - "center": "POINT (481829.2604389601037838 2401346.5364480465650558)", - "surface": 16060000, - "canton": null, - "numero_insee": "61206" - } - }, - { - "pk": 21921, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "IGE", - "center": "POINT (464979.6471967479446903 2369684.3504994041286409)", - "surface": 27910000, - "canton": null, - "numero_insee": "61207" - } - }, - { - "pk": 3435, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "IRAI", - "center": "POINT (478558.3343433697009459 2409625.1777643524110317)", - "surface": 15030000, - "canton": null, - "numero_insee": "61208" - } - }, - { - "pk": 17077, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "JOUE-DU-BOIS", - "center": "POINT (410478.3994281242485158 2401456.8809878160245717)", - "surface": 21330000, - "canton": null, - "numero_insee": "61209" - } - }, - { - "pk": 20212, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "JOUE-DU-PLAIN", - "center": "POINT (417497.0589455285808071 2411922.0000423700548708)", - "surface": 14670000, - "canton": null, - "numero_insee": "61210" - } - }, - { - "pk": 15909, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "JUVIGNY-SOUS-ANDAINE", - "center": "POINT (390783.2063176217488945 2399193.2183572105132043)", - "surface": 22190000, - "canton": null, - "numero_insee": "61211" - } - }, - { - "pk": 37134, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "JUVIGNY-SUR-ORNE", - "center": "POINT (429768.3817571556428447 2416426.3122948068194091)", - "surface": 3310000, - "canton": null, - "numero_insee": "61212" - } - }, - { - "pk": 10057, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LALACELLE", - "center": "POINT (417691.0185981343383901 2388407.1023143907077610)", - "surface": 13400000, - "canton": null, - "numero_insee": "61213" - } - }, - { - "pk": 23287, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "L'AIGLE", - "center": "POINT (473077.7952301775221713 2418886.1359252939000726)", - "surface": 18440000, - "canton": null, - "numero_insee": "61214" - } - }, - { - "pk": 10883, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LALEU", - "center": "POINT (455157.9566185026778840 2395621.5979461204260588)", - "surface": 11410000, - "canton": null, - "numero_insee": "61215" - } - }, - { - "pk": 23052, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA LANDE-DE-GOULT", - "center": "POINT (423491.5818130049156025 2400963.7912135971710086)", - "surface": 28570000, - "canton": null, - "numero_insee": "61216" - } - }, - { - "pk": 7404, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA LANDE-DE-LOUGE", - "center": "POINT (409470.6195822279551066 2414457.6225401149131358)", - "surface": 4970000, - "canton": null, - "numero_insee": "61217" - } - }, - { - "pk": 37116, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA LANDE-PATRY", - "center": "POINT (384097.2640527118928730 2421253.5850232727825642)", - "surface": 6500000, - "canton": null, - "numero_insee": "61218" - } - }, - { - "pk": 14188, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA LANDE-SAINT-SIMEON", - "center": "POINT (396442.3350149344769306 2428960.3234684029594064)", - "surface": 5430000, - "canton": null, - "numero_insee": "61219" - } - }, - { - "pk": 20872, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA LANDE-SUR-EURE", - "center": "POINT (491173.3644516010535881 2396820.8935055579058826)", - "surface": 15870000, - "canton": null, - "numero_insee": "61220" - } - }, - { - "pk": 37637, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LANDIGOU", - "center": "POINT (392915.0535329959820956 2419825.0785633460618556)", - "surface": 5430000, - "canton": null, - "numero_insee": "61221" - } - }, - { - "pk": 17428, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LANDISACQ", - "center": "POINT (379693.7206894741975702 2421317.4593363851308823)", - "surface": 10920000, - "canton": null, - "numero_insee": "61222" - } - }, - { - "pk": 32273, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LARCHAMP", - "center": "POINT (378041.9980234135291539 2415299.7562964390963316)", - "surface": 8430000, - "canton": null, - "numero_insee": "61223" - } - }, - { - "pk": 13917, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LARRE", - "center": "POINT (439589.3810368317062967 2390489.2759014498442411)", - "surface": 5630000, - "canton": null, - "numero_insee": "61224" - } - }, - { - "pk": 27722, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LIGNERES", - "center": "POINT (450575.4864942090352997 2417298.7840120857581496)", - "surface": 5410000, - "canton": null, - "numero_insee": "61225" - } - }, - { - "pk": 37532, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LIGNEROLLES", - "center": "POINT (470020.1516900300048292 2401448.7234039721079171)", - "surface": 5240000, - "canton": null, - "numero_insee": "61226" - } - }, - { - "pk": 33885, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LIGNOU", - "center": "POINT (402588.5723543432541192 2411699.0541839008219540)", - "surface": 7680000, - "canton": null, - "numero_insee": "61227" - } - }, - { - "pk": 17581, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LIVAIE", - "center": "POINT (424462.3543070410378277 2392465.8140343744307756)", - "surface": 12530000, - "canton": null, - "numero_insee": "61228" - } - }, - { - "pk": 25850, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LOISAIL", - "center": "POINT (470607.5733739674324170 2390946.1979653146117926)", - "surface": 5210000, - "canton": null, - "numero_insee": "61229" - } - }, - { - "pk": 17485, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LONGNY-AU-PERCHE", - "center": "POINT (483295.7604008972411975 2393453.1530344076454639)", - "surface": 39620000, - "canton": null, - "numero_insee": "61230" - } - }, - { - "pk": 32032, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LONGUENOE", - "center": "POINT (422452.8168925673235208 2393449.9365232302807271)", - "surface": 4480000, - "canton": null, - "numero_insee": "61231" - } - }, - { - "pk": 23102, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LONLAY-L'ABBAYE", - "center": "POINT (375784.1296879471046850 2409977.5333463754504919)", - "surface": 53220000, - "canton": null, - "numero_insee": "61232" - } - }, - { - "pk": 19497, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LONLAY-LE-TESSON", - "center": "POINT (402309.8116036556893960 2409094.9533649617806077)", - "surface": 12660000, - "canton": null, - "numero_insee": "61233" - } - }, - { - "pk": 10684, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LONRAI", - "center": "POINT (429816.9793304223567247 2386305.6185252172872424)", - "surface": 6170000, - "canton": null, - "numero_insee": "61234" - } - }, - { - "pk": 33716, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LORE", - "center": "POINT (384244.8283340506022796 2391133.7892472497187555)", - "surface": 6310000, - "canton": null, - "numero_insee": "61235" - } - }, - { - "pk": 31174, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LOUCE", - "center": "POINT (420284.7735456803347915 2413646.1724275867454708)", - "surface": 4190000, - "canton": null, - "numero_insee": "61236" - } - }, - { - "pk": 19682, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LOUGE-SUR-MAIRE", - "center": "POINT (411572.7522696244413964 2414374.8800003305077553)", - "surface": 13990000, - "canton": null, - "numero_insee": "61237" - } - }, - { - "pk": 24797, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LOUVIERES-EN-AUGE", - "center": "POINT (430535.9031460111727938 2432543.6370102292858064)", - "surface": 6230000, - "canton": null, - "numero_insee": "61238" - } - }, - { - "pk": 9806, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LUCE", - "center": "POINT (383679.5148708453634754 2399034.7251755534671247)", - "surface": 6150000, - "canton": null, - "numero_insee": "61239" - } - }, - { - "pk": 21812, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MACE", - "center": "POINT (437846.1151858074008487 2407686.9503326229751110)", - "surface": 14410000, - "canton": null, - "numero_insee": "61240" - } - }, - { - "pk": 12494, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA MADELEINE-BOUVET", - "center": "POINT (493561.2909773631836288 2386433.3720890069380403)", - "surface": 12890000, - "canton": null, - "numero_insee": "61241" - } - }, - { - "pk": 18835, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MAGE", - "center": "POINT (487422.4703713390044868 2390585.3628373979590833)", - "surface": 25520000, - "canton": null, - "numero_insee": "61242" - } - }, - { - "pk": 34754, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MAGNY-LE-DESERT", - "center": "POINT (403684.8084124137531035 2400099.9894623802974820)", - "surface": 33840000, - "canton": null, - "numero_insee": "61243" - } - }, - { - "pk": 18822, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MAHERU", - "center": "POINT (460150.1504474738612771 2409072.3087671450339258)", - "surface": 19710000, - "canton": null, - "numero_insee": "61244" - } - }, - { - "pk": 22182, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MAISON-MAUGIS", - "center": "POINT (478154.7104324026149698 2385905.1685291086323559)", - "surface": 5660000, - "canton": null, - "numero_insee": "61245" - } - }, - { - "pk": 12759, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MALE", - "center": "POINT (482430.9370321020251140 2365025.5937599255703390)", - "surface": 21770000, - "canton": null, - "numero_insee": "61246" - } - }, - { - "pk": 3858, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MALETABLE", - "center": "POINT (479455.9750551353790797 2397924.4567935657687485)", - "surface": 4880000, - "canton": null, - "numero_insee": "61247" - } - }, - { - "pk": 4990, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MANTILLY", - "center": "POINT (367201.8690606263116933 2394896.5391532247886062)", - "surface": 29260000, - "canton": null, - "numero_insee": "61248" - } - }, - { - "pk": 21029, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MARCEI", - "center": "POINT (430520.0494985203840770 2410228.2334701325744390)", - "surface": 10900000, - "canton": null, - "numero_insee": "61249" - } - }, - { - "pk": 28099, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MARCHAINVILLE", - "center": "POINT (487139.2521692242007703 2400590.0571462479420006)", - "surface": 21840000, - "canton": null, - "numero_insee": "61250" - } - }, - { - "pk": 7940, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MARCHEMAISONS", - "center": "POINT (450573.2447827143478207 2393382.0994683727622032)", - "surface": 8800000, - "canton": null, - "numero_insee": "61251" - } - }, - { - "pk": 24354, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MARDILLY", - "center": "POINT (447588.4391312879743055 2427581.1147428438998759)", - "surface": 12790000, - "canton": null, - "numero_insee": "61252" - } - }, - { - "pk": 3222, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MARMOUILLE", - "center": "POINT (441622.0268741385661997 2410920.3829816235229373)", - "surface": 9630000, - "canton": null, - "numero_insee": "61253" - } - }, - { - "pk": 27330, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MAUVES-SUR-HUISNE", - "center": "POINT (472070.6980035546002910 2383452.9932987811043859)", - "surface": 14510000, - "canton": null, - "numero_insee": "61255" - } - }, - { - "pk": 30757, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MEDAVY", - "center": "POINT (433618.6819778262870386 2410654.1044349721632898)", - "surface": 4400000, - "canton": null, - "numero_insee": "61256" - } - }, - { - "pk": 18424, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MEHOUDIN", - "center": "POINT (399136.2671278155175969 2393457.8760181488469243)", - "surface": 3850000, - "canton": null, - "numero_insee": "61257" - } - }, - { - "pk": 8729, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MELE-SUR-SARTHE", - "center": "POINT (453386.6270436685881577 2392004.3923181798309088)", - "surface": 630000, - "canton": null, - "numero_insee": "61258" - } - }, - { - "pk": 3702, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MENIL-BERARD", - "center": "POINT (465517.8748755304841325 2413419.7530211592093110)", - "surface": 7490000, - "canton": null, - "numero_insee": "61259" - } - }, - { - "pk": 9475, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MENIL-DE-BRIOUZE", - "center": "POINT (398496.7178539581364021 2410364.4578774054534733)", - "surface": 21450000, - "canton": null, - "numero_insee": "61260" - } - }, - { - "pk": 27993, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MENIL-BROUT", - "center": "POINT (444806.7817201181896962 2388831.2073640753515065)", - "surface": 3480000, - "canton": null, - "numero_insee": "61261" - } - }, - { - "pk": 14189, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MENIL-CIBOULT", - "center": "POINT (369876.1569252025219612 2422637.7810450112447143)", - "surface": 6240000, - "canton": null, - "numero_insee": "61262" - } - }, - { - "pk": 18363, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-ERREUX", - "center": "POINT (440876.1511606872081757 2392201.1177274677902460)", - "surface": 11160000, - "canton": null, - "numero_insee": "61263" - } - }, - { - "pk": 37608, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-FROGER", - "center": "POINT (447578.5946911553619429 2416673.5778391072526574)", - "surface": 5250000, - "canton": null, - "numero_insee": "61264" - } - }, - { - "pk": 31369, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-GONDOUIN", - "center": "POINT (406218.3380258871475235 2420535.0226807813160121)", - "surface": 9320000, - "canton": null, - "numero_insee": "61265" - } - }, - { - "pk": 3874, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MENIL-GUYON", - "center": "POINT (449218.6023679038044065 2399875.4687229227274656)", - "surface": 2830000, - "canton": null, - "numero_insee": "61266" - } - }, - { - "pk": 35904, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-HERMEI", - "center": "POINT (404951.6544239664217457 2428530.0504599441774189)", - "surface": 6570000, - "canton": null, - "numero_insee": "61267" - } - }, - { - "pk": 8486, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-HUBERT-EN-EXMES", - "center": "POINT (445411.0918339572381228 2424661.1320704822428524)", - "surface": 10450000, - "canton": null, - "numero_insee": "61268" - } - }, - { - "pk": 24878, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-HUBERT-SUR-ORNE", - "center": "POINT (397923.4839903240790591 2431374.1437397715635598)", - "surface": 10760000, - "canton": null, - "numero_insee": "61269" - } - }, - { - "pk": 15052, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-JEAN", - "center": "POINT (411638.9963945985073224 2418478.2517896257340908)", - "surface": 7080000, - "canton": null, - "numero_insee": "61270" - } - }, - { - "pk": 29959, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MENIL-SCELLEUR", - "center": "POINT (418459.5260579182067886 2404424.7215670552104712)", - "surface": 5420000, - "canton": null, - "numero_insee": "61271" - } - }, - { - "pk": 29014, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MENIL-VICOMTE", - "center": "POINT (449667.4784045203123242 2418191.8900083089247346)", - "surface": 3830000, - "canton": null, - "numero_insee": "61272" - } - }, - { - "pk": 29750, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MENIL-VIN", - "center": "POINT (404930.2238968914025463 2431131.6384039986878633)", - "surface": 3720000, - "canton": null, - "numero_insee": "61273" - } - }, - { - "pk": 25458, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES MENUS", - "center": "POINT (496318.1816365152481012 2391860.1140274978242815)", - "surface": 11850000, - "canton": null, - "numero_insee": "61274" - } - }, - { - "pk": 18427, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE MERLERAULT", - "center": "POINT (448507.2968366377172060 2413278.9153450601734221)", - "surface": 19360000, - "canton": null, - "numero_insee": "61275" - } - }, - { - "pk": 29110, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MERRI", - "center": "POINT (424848.9553035101271234 2430495.3341495878994465)", - "surface": 5960000, - "canton": null, - "numero_insee": "61276" - } - }, - { - "pk": 3491, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA MESNIERE", - "center": "POINT (459382.1752772608306259 2393054.7390372706577182)", - "surface": 12180000, - "canton": null, - "numero_insee": "61277" - } - }, - { - "pk": 17055, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MESSEI", - "center": "POINT (388237.6548333551618271 2416684.4670973247848451)", - "surface": 13320000, - "canton": null, - "numero_insee": "61278" - } - }, - { - "pk": 7242, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MIEUXCE", - "center": "POINT (426853.0482676638639532 2381677.8569644824601710)", - "surface": 10310000, - "canton": null, - "numero_insee": "61279" - } - }, - { - "pk": 10240, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONCEAUX-AU-PERCHE", - "center": "POINT (479616.6505429477547295 2390620.6381285171955824)", - "surface": 3140000, - "canton": null, - "numero_insee": "61280" - } - }, - { - "pk": 11486, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONCY", - "center": "POINT (378819.2293688684003428 2430316.4157010265626013)", - "surface": 7770000, - "canton": null, - "numero_insee": "61281" - } - }, - { - "pk": 15305, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONNAI", - "center": "POINT (457844.1950216576806270 2433770.1176364696584642)", - "surface": 15690000, - "canton": null, - "numero_insee": "61282" - } - }, - { - "pk": 12192, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTABARD", - "center": "POINT (421981.0377472413238138 2426368.8818623623810709)", - "surface": 11100000, - "canton": null, - "numero_insee": "61283" - } - }, - { - "pk": 15170, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTCHEVREL", - "center": "POINT (452220.5017483463161625 2399900.3085429971106350)", - "surface": 10990000, - "canton": null, - "numero_insee": "61284" - } - }, - { - "pk": 3356, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTGAUDRY", - "center": "POINT (456382.9273925186134875 2380621.0754292299970984)", - "surface": 11110000, - "canton": null, - "numero_insee": "61286" - } - }, - { - "pk": 5809, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTILLY-SUR-NOIREAU", - "center": "POINT (386343.5593126799794845 2427976.6317591089755297)", - "surface": 11240000, - "canton": null, - "numero_insee": "61287" - } - }, - { - "pk": 31090, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTMERREI", - "center": "POINT (430054.4423526916652918 2406021.4674725113436580)", - "surface": 12830000, - "canton": null, - "numero_insee": "61288" - } - }, - { - "pk": 35678, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONT-ORMEL", - "center": "POINT (439575.2785304491990246 2428515.5382111375220120)", - "surface": 3710000, - "canton": null, - "numero_insee": "61289" - } - }, - { - "pk": 6815, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTREUIL-AU-HOULME", - "center": "POINT (408187.1257641498232260 2412345.5926996720954776)", - "surface": 7830000, - "canton": null, - "numero_insee": "61290" - } - }, - { - "pk": 27713, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTREUIL-LA-CAMBE", - "center": "POINT (431022.1594932969892398 2434248.8004907276481390)", - "surface": 9680000, - "canton": null, - "numero_insee": "61291" - } - }, - { - "pk": 19641, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MONTSECRET", - "center": "POINT (378452.6926169976941310 2426210.6138907819986343)", - "surface": 10670000, - "canton": null, - "numero_insee": "61292" - } - }, - { - "pk": 26902, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MORTAGNE-AU-PERCHE", - "center": "POINT (468791.4917407758184709 2392732.4167833151295781)", - "surface": 8680000, - "canton": null, - "numero_insee": "61293" - } - }, - { - "pk": 14369, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MORTREE", - "center": "POINT (433650.9197145751095377 2406751.6605223761871457)", - "surface": 23730000, - "canton": null, - "numero_insee": "61294" - } - }, - { - "pk": 24185, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA MOTTE-FOUQUET", - "center": "POINT (407592.2298626675037667 2399531.7607376868836582)", - "surface": 9440000, - "canton": null, - "numero_insee": "61295" - } - }, - { - "pk": 30691, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MOULICENT", - "center": "POINT (484163.9381031498196535 2397363.1084756501950324)", - "surface": 33440000, - "canton": null, - "numero_insee": "61296" - } - }, - { - "pk": 17061, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MOULINS-LA-MARCHE", - "center": "POINT (462766.6974945404799655 2407292.7309724329970777)", - "surface": 13200000, - "canton": null, - "numero_insee": "61297" - } - }, - { - "pk": 37775, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MOULINS-SUR-ORNE", - "center": "POINT (423235.4457891425117850 2419874.7892961460165679)", - "surface": 9220000, - "canton": null, - "numero_insee": "61298" - } - }, - { - "pk": 13843, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MOUSSONVILLIERS", - "center": "POINT (486598.2251653893035837 2405488.9883639323525131)", - "surface": 22290000, - "canton": null, - "numero_insee": "61299" - } - }, - { - "pk": 15894, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "MOUTIERS-AU-PERCHE", - "center": "POINT (490545.2324658126453869 2388109.5243964148685336)", - "surface": 33830000, - "canton": null, - "numero_insee": "61300" - } - }, - { - "pk": 24253, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NEAUPHE-SOUS-ESSAI", - "center": "POINT (441827.1524871026631445 2398213.2132006669417024)", - "surface": 11420000, - "canton": null, - "numero_insee": "61301" - } - }, - { - "pk": 3526, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NEAUPHE-SUR-DIVE", - "center": "POINT (435457.0674630365101621 2430382.7961468673311174)", - "surface": 14060000, - "canton": null, - "numero_insee": "61302" - } - }, - { - "pk": 22868, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NECY", - "center": "POINT (419663.1192291764309630 2428351.1190849645063281)", - "surface": 7830000, - "canton": null, - "numero_insee": "61303" - } - }, - { - "pk": 32031, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NEUILLY-LE-BISSON", - "center": "POINT (443483.6058851442649029 2391522.1807021233253181)", - "surface": 5960000, - "canton": null, - "numero_insee": "61304" - } - }, - { - "pk": 3915, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NEUILLY-SUR-EURE", - "center": "POINT (493197.0807053179014474 2394135.8034387528896332)", - "surface": 21620000, - "canton": null, - "numero_insee": "61305" - } - }, - { - "pk": 36964, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NEUVILLE-SUR-TOUQUES", - "center": "POINT (449058.7280452301492915 2431295.7862759726122022)", - "surface": 15640000, - "canton": null, - "numero_insee": "61307" - } - }, - { - "pk": 20791, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NEUVY-AU-HOULME", - "center": "POINT (414364.8282733015948907 2427707.0152840982191265)", - "surface": 15670000, - "canton": null, - "numero_insee": "61308" - } - }, - { - "pk": 16374, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NOCE", - "center": "POINT (477728.2750464126002043 2376995.2586940643377602)", - "surface": 20970000, - "canton": null, - "numero_insee": "61309" - } - }, - { - "pk": 19019, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NONANT-LE-PIN", - "center": "POINT (443199.8601262327283621 2413735.3655016911216080)", - "surface": 18360000, - "canton": null, - "numero_insee": "61310" - } - }, - { - "pk": 11029, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NORMANDEL", - "center": "POINT (480882.1909266207949258 2406942.5848005278967321)", - "surface": 7490000, - "canton": null, - "numero_insee": "61311" - } - }, - { - "pk": 3685, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "NOTRE-DAME-DU-ROCHER", - "center": "POINT (398472.3893758248304948 2425474.6508755683898926)", - "surface": 3510000, - "canton": null, - "numero_insee": "61313" - } - }, - { - "pk": 37539, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "OCCAGNES", - "center": "POINT (423309.9094507991685532 2422977.5272282990626991)", - "surface": 15600000, - "canton": null, - "numero_insee": "61314" - } - }, - { - "pk": 16522, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "OMMEEL", - "center": "POINT (439403.2748044485342689 2425111.8032835777848959)", - "surface": 9410000, - "canton": null, - "numero_insee": "61315" - } - }, - { - "pk": 24318, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "OMMOY", - "center": "POINT (426645.9224739404162392 2431010.5051852837204933)", - "surface": 5710000, - "canton": null, - "numero_insee": "61316" - } - }, - { - "pk": 15308, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ORGERES", - "center": "POINT (453464.0316519388579763 2418923.7870941516011953)", - "surface": 12210000, - "canton": null, - "numero_insee": "61317" - } - }, - { - "pk": 13458, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ORIGNY-LE-BUTIN", - "center": "POINT (461915.5051735575543717 2377164.3816035110503435)", - "surface": 4560000, - "canton": null, - "numero_insee": "61318" - } - }, - { - "pk": 5483, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ORIGNY-LE-ROUX", - "center": "POINT (457652.4796324231429026 2372325.6103027248755097)", - "surface": 14310000, - "canton": null, - "numero_insee": "61319" - } - }, - { - "pk": 6210, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ORVILLE", - "center": "POINT (449534.1979411231586710 2434301.7460625646635890)", - "surface": 7230000, - "canton": null, - "numero_insee": "61320" - } - }, - { - "pk": 31960, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PACE", - "center": "POINT (426621.5256059179082513 2385478.6625824966467917)", - "surface": 7570000, - "canton": null, - "numero_insee": "61321" - } - }, - { - "pk": 13059, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PARFONDEVAL", - "center": "POINT (464625.2919200269971043 2388294.7699277163483202)", - "surface": 3090000, - "canton": null, - "numero_insee": "61322" - } - }, - { - "pk": 36362, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE PAS-SAINT-L'HOMER", - "center": "POINT (495840.3156986209214665 2389154.2294117454439402)", - "surface": 9410000, - "canton": null, - "numero_insee": "61323" - } - }, - { - "pk": 16190, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PASSAIS", - "center": "POINT (371203.6067993258475326 2395029.4646151801571250)", - "surface": 16930000, - "canton": null, - "numero_insee": "61324" - } - }, - { - "pk": 19608, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA PERRIERE", - "center": "POINT (459596.6041930398205295 2379246.6831941809505224)", - "surface": 16150000, - "canton": null, - "numero_insee": "61325" - } - }, - { - "pk": 5253, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PERROU", - "center": "POINT (387062.7495977478101850 2401364.1610206197947264)", - "surface": 4430000, - "canton": null, - "numero_insee": "61326" - } - }, - { - "pk": 20424, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PERVENCHERES", - "center": "POINT (457452.1544856039108709 2384432.6469768541865051)", - "surface": 28540000, - "canton": null, - "numero_insee": "61327" - } - }, - { - "pk": 17361, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE PIN-AU-HARAS", - "center": "POINT (438154.5737367863184772 2418797.1722366223111749)", - "surface": 8660000, - "canton": null, - "numero_insee": "61328" - } - }, - { - "pk": 7119, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE PIN-LA-GARENNE", - "center": "POINT (467360.1991086381021887 2384314.5854599005542696)", - "surface": 15850000, - "canton": null, - "numero_insee": "61329" - } - }, - { - "pk": 20140, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PLANCHES", - "center": "POINT (455623.3128019804134965 2411936.8357649184763432)", - "surface": 12580000, - "canton": null, - "numero_insee": "61330" - } - }, - { - "pk": 25654, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE PLANTIS", - "center": "POINT (456904.4217051839223132 2402240.6922909235581756)", - "surface": 8220000, - "canton": null, - "numero_insee": "61331" - } - }, - { - "pk": 16689, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "POINTEL", - "center": "POINT (402269.4305039634928107 2413998.0179218822158873)", - "surface": 7630000, - "canton": null, - "numero_insee": "61332" - } - }, - { - "pk": 10271, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PONTCHARDON", - "center": "POINT (447895.1561906706774607 2438891.2804998378269374)", - "surface": 4780000, - "canton": null, - "numero_insee": "61333" - } - }, - { - "pk": 19156, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA POTERIE-AU-PERCHE", - "center": "POINT (478901.6929171818774194 2404424.4094136785715818)", - "surface": 7840000, - "canton": null, - "numero_insee": "61335" - } - }, - { - "pk": 10516, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "POUVRAI", - "center": "POINT (465010.3280998219270259 2365981.9152757944539189)", - "surface": 6790000, - "canton": null, - "numero_insee": "61336" - } - }, - { - "pk": 33493, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PREAUX-DU-PERCHE", - "center": "POINT (478078.2840750497998670 2370993.8315626438707113)", - "surface": 23540000, - "canton": null, - "numero_insee": "61337" - } - }, - { - "pk": 14011, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PREPOTIN", - "center": "POINT (471200.9985193846514449 2403860.1911980002187192)", - "surface": 10630000, - "canton": null, - "numero_insee": "61338" - } - }, - { - "pk": 25388, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "PUTANGES-PONT-ECREPIN", - "center": "POINT (409610.5434759531635791 2421763.7974061989225447)", - "surface": 10130000, - "canton": null, - "numero_insee": "61339" - } - }, - { - "pk": 25356, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RABODANGES", - "center": "POINT (406877.5491355360718444 2425543.8740629535168409)", - "surface": 9400000, - "canton": null, - "numero_insee": "61340" - } - }, - { - "pk": 29960, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RADON", - "center": "POINT (433669.8923388136317953 2392341.7053663507103920)", - "surface": 19660000, - "canton": null, - "numero_insee": "61341" - } - }, - { - "pk": 27922, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RAI", - "center": "POINT (469474.7429718630155548 2418956.3328197654336691)", - "surface": 16120000, - "canton": null, - "numero_insee": "61342" - } - }, - { - "pk": 37531, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RANDONNAI", - "center": "POINT (476887.9843933879164979 2405908.7489210041239858)", - "surface": 11330000, - "canton": null, - "numero_insee": "61343" - } - }, - { - "pk": 16091, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RANES", - "center": "POINT (411725.6052361475303769 2407971.7023407542146742)", - "surface": 34260000, - "canton": null, - "numero_insee": "61344" - } - }, - { - "pk": 18105, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "REMALARD", - "center": "POINT (484670.5227124762022868 2384558.2475000452250242)", - "surface": 21110000, - "canton": null, - "numero_insee": "61345" - } - }, - { - "pk": 25286, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE RENOUARD", - "center": "POINT (435894.5419436683296226 2437991.5371155049651861)", - "surface": 14510000, - "canton": null, - "numero_insee": "61346" - } - }, - { - "pk": 33064, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RESENLIEU", - "center": "POINT (448525.4098950526677072 2423185.8673011334612966)", - "surface": 5030000, - "canton": null, - "numero_insee": "61347" - } - }, - { - "pk": 4919, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "REVEILLON", - "center": "POINT (468727.9236407029675320 2388328.7709415163844824)", - "surface": 11900000, - "canton": null, - "numero_insee": "61348" - } - }, - { - "pk": 25676, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RI", - "center": "POINT (417998.3931910204701126 2423934.3895897930487990)", - "surface": 7450000, - "canton": null, - "numero_insee": "61349" - } - }, - { - "pk": 32030, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA ROCHE-MABILE", - "center": "POINT (422276.6360503166215494 2390546.4281853050924838)", - "surface": 5180000, - "canton": null, - "numero_insee": "61350" - } - }, - { - "pk": 27946, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ROIVILLE", - "center": "POINT (445839.4040735607268289 2433370.5773085313849151)", - "surface": 8200000, - "canton": null, - "numero_insee": "61351" - } - }, - { - "pk": 30922, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RONAI", - "center": "POINT (418378.8310060066869482 2426339.1645901259034872)", - "surface": 5330000, - "canton": null, - "numero_insee": "61352" - } - }, - { - "pk": 34590, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "RONFEUGERAI", - "center": "POINT (392987.1222906709881499 2423228.0024252259172499)", - "surface": 6660000, - "canton": null, - "numero_insee": "61353" - } - }, - { - "pk": 14269, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES ROTOURS", - "center": "POINT (408893.6197277798783034 2423759.2575468616560102)", - "surface": 5050000, - "canton": null, - "numero_insee": "61354" - } - }, - { - "pk": 12985, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ROUELLE", - "center": "POINT (373522.9556268905289471 2405055.5438698879443109)", - "surface": 10510000, - "canton": null, - "numero_insee": "61355" - } - }, - { - "pk": 3964, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA ROUGE", - "center": "POINT (479120.4557358415331692 2365998.8479497930966318)", - "surface": 11730000, - "canton": null, - "numero_insee": "61356" - } - }, - { - "pk": 10312, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "ROUPERROUX", - "center": "POINT (421621.7547958114882931 2397145.6900650835596025)", - "surface": 9820000, - "canton": null, - "numero_insee": "61357" - } - }, - { - "pk": 26655, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAI", - "center": "POINT (429753.5088417369988747 2418227.4281076327897608)", - "surface": 5070000, - "canton": null, - "numero_insee": "61358" - } - }, - { - "pk": 35415, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AGNAN-SUR-ERRE", - "center": "POINT (479690.9577062671887688 2369606.1982470299117267)", - "surface": 5230000, - "canton": null, - "numero_insee": "61359" - } - }, - { - "pk": 9228, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AGNAN-SUR-SARTHE", - "center": "POINT (459289.3628723369911313 2404261.8385318885557353)", - "surface": 6570000, - "canton": null, - "numero_insee": "61360" - } - }, - { - "pk": 33805, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-ANDRE-DE-BRIOUZE", - "center": "POINT (403935.0488333289977163 2418314.7019132841378450)", - "surface": 12210000, - "canton": null, - "numero_insee": "61361" - } - }, - { - "pk": 27009, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-ANDRE-DE-MESSEI", - "center": "POINT (389462.2699658361962065 2413792.5367402923293412)", - "surface": 15150000, - "canton": null, - "numero_insee": "61362" - } - }, - { - "pk": 25427, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AQUILIN-DE-CORBION", - "center": "POINT (466578.2010777965188026 2406223.5461710263043642)", - "surface": 6040000, - "canton": null, - "numero_insee": "61363" - } - }, - { - "pk": 7410, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AUBERT-SUR-ORNE", - "center": "POINT (404484.3175320244627073 2424523.4756612167693675)", - "surface": 9680000, - "canton": null, - "numero_insee": "61364" - } - }, - { - "pk": 18223, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AUBIN-D'APPENAI", - "center": "POINT (452357.0027224281802773 2395498.3433614149689674)", - "surface": 11350000, - "canton": null, - "numero_insee": "61365" - } - }, - { - "pk": 11850, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AUBIN-DE-BONNEVAL", - "center": "POINT (455985.1226107230177149 2440759.4288965286687016)", - "surface": 11780000, - "canton": null, - "numero_insee": "61366" - } - }, - { - "pk": 6323, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AUBIN-DE-COURTERAIE", - "center": "POINT (461002.8648326444672421 2402774.9820045488886535)", - "surface": 10320000, - "canton": null, - "numero_insee": "61367" - } - }, - { - "pk": 13595, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-AUBIN-DES-GROIS", - "center": "POINT (475352.4439724250696599 2373873.3153455574065447)", - "surface": 4020000, - "canton": null, - "numero_insee": "61368" - } - }, - { - "pk": 3359, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-BOMER-LES-FORGES", - "center": "POINT (381794.4745022601564415 2409226.3655566298402846)", - "surface": 31480000, - "canton": null, - "numero_insee": "61369" - } - }, - { - "pk": 30240, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-BRICE", - "center": "POINT (380079.6920415745116770 2398704.9232940166257322)", - "surface": 4600000, - "canton": null, - "numero_insee": "61370" - } - }, - { - "pk": 5852, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-BRICE-SOUS-RANES", - "center": "POINT (413595.4477875994634815 2411789.7563859787769616)", - "surface": 9570000, - "canton": null, - "numero_insee": "61371" - } - }, - { - "pk": 13836, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-CENERI-LE-GEREI", - "center": "POINT (423870.9253261934500188 2379251.5173637848347425)", - "surface": 3850000, - "canton": null, - "numero_insee": "61372" - } - }, - { - "pk": 4668, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-CERONNE-LES-MORTAGNE", - "center": "POINT (466328.5954500100342557 2400117.2148240772075951)", - "surface": 12780000, - "canton": null, - "numero_insee": "61373" - } - }, - { - "pk": 9804, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-CHRISTOPHE-DE-CHAULIEU", - "center": "POINT (366890.7282820629188791 2420611.9027399825863540)", - "surface": 6430000, - "canton": null, - "numero_insee": "61374" - } - }, - { - "pk": 37370, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-CHRISTOPHE-LE-JAJOLET", - "center": "POINT (427929.1630208602873608 2408905.9369169184938073)", - "surface": 12320000, - "canton": null, - "numero_insee": "61375" - } - }, - { - "pk": 6725, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-CLAIR-DE-HALOUZE", - "center": "POINT (381754.1734386477619410 2414129.4332936792634428)", - "surface": 11850000, - "canton": null, - "numero_insee": "61376" - } - }, - { - "pk": 33406, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-CORNIER-DES-LANDES", - "center": "POINT (374517.6255498790415004 2417972.6660956721752882)", - "surface": 11890000, - "canton": null, - "numero_insee": "61377" - } - }, - { - "pk": 15873, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-CROIX-SUR-ORNE", - "center": "POINT (406601.2725879367790185 2422639.6165474848821759)", - "surface": 3780000, - "canton": null, - "numero_insee": "61378" - } - }, - { - "pk": 23740, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-CYR-LA-ROSIERE", - "center": "POINT (474280.7732970359502360 2370361.8947251318022609)", - "surface": 18880000, - "canton": null, - "numero_insee": "61379" - } - }, - { - "pk": 25188, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-DENIS-DE-VILLENETTE", - "center": "POINT (386921.8737470288760960 2394157.9292147168889642)", - "surface": 5930000, - "canton": null, - "numero_insee": "61380" - } - }, - { - "pk": 4193, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-DENIS-SUR-HUISNE", - "center": "POINT (466435.5694012518506497 2387208.9889754233881831)", - "surface": 4690000, - "canton": null, - "numero_insee": "61381" - } - }, - { - "pk": 21923, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-DENIS-SUR-SARTHON", - "center": "POINT (424307.6522479573031887 2386960.6310258698649704)", - "surface": 13890000, - "canton": null, - "numero_insee": "61382" - } - }, - { - "pk": 31172, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-DIDIER-SOUS-ECOUVES", - "center": "POINT (424431.7951323271263391 2396168.1760040987282991)", - "surface": 8870000, - "canton": null, - "numero_insee": "61383" - } - }, - { - "pk": 14612, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-EVROULT-DE-MONTFORT", - "center": "POINT (451207.1981545031303540 2425609.6921575050801039)", - "surface": 22520000, - "canton": null, - "numero_insee": "61385" - } - }, - { - "pk": 15900, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-EVROULT-NOTRE-DAME-DU-BOIS", - "center": "POINT (461446.5962946780491620 2421691.7300060903653502)", - "surface": 34380000, - "canton": null, - "numero_insee": "61386" - } - }, - { - "pk": 14673, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-FRAIMBAULT", - "center": "POINT (374721.4629927880596370 2393157.0122420839034021)", - "surface": 28940000, - "canton": null, - "numero_insee": "61387" - } - }, - { - "pk": 30894, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-FULGENT-DES-ORMES", - "center": "POINT (460268.2720762381795794 2370646.0429457630962133)", - "surface": 8440000, - "canton": null, - "numero_insee": "61388" - } - }, - { - "pk": 14663, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-GAUBURGE-SAINTE-COLOMBE", - "center": "POINT (460611.5119545380584896 2413779.3837920874357224)", - "surface": 21250000, - "canton": null, - "numero_insee": "61389" - } - }, - { - "pk": 37755, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GEORGES-D'ANNEBECQ", - "center": "POINT (408133.2394719494623132 2406741.2579899495467544)", - "surface": 9390000, - "canton": null, - "numero_insee": "61390" - } - }, - { - "pk": 30346, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GEORGES-DES-GROSEILLERS", - "center": "POINT (386387.1669053314835764 2422673.3721501836553216)", - "surface": 7280000, - "canton": null, - "numero_insee": "61391" - } - }, - { - "pk": 31318, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERMAIN-D'AUNAY", - "center": "POINT (456604.5348787951515988 2438463.0158567787148058)", - "surface": 8580000, - "canton": null, - "numero_insee": "61392" - } - }, - { - "pk": 20661, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERMAIN-DE-CLAIREFEUILLE", - "center": "POINT (445681.5546260818373412 2416157.5429913909174502)", - "surface": 12220000, - "canton": null, - "numero_insee": "61393" - } - }, - { - "pk": 20687, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERMAIN-DE-LA-COUDRE", - "center": "POINT (470422.1860034564742818 2365026.0448223659768701)", - "surface": 26250000, - "canton": null, - "numero_insee": "61394" - } - }, - { - "pk": 27694, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERMAIN-DES-GROIS", - "center": "POINT (487314.5762026775628328 2379476.5526432287879288)", - "surface": 10510000, - "canton": null, - "numero_insee": "61395" - } - }, - { - "pk": 27305, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERMAIN-DE-MARTIGNY", - "center": "POINT (462023.3886513481847942 2400381.7548712519928813)", - "surface": 3890000, - "canton": null, - "numero_insee": "61396" - } - }, - { - "pk": 29958, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERMAIN-DU-CORBEIS", - "center": "POINT (431250.9413887039409019 2382314.6041982565075159)", - "surface": 7500000, - "canton": null, - "numero_insee": "61397" - } - }, - { - "pk": 28805, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERMAIN-LE-VIEUX", - "center": "POINT (450592.1654408129397780 2403189.1448167432099581)", - "surface": 3240000, - "canton": null, - "numero_insee": "61398" - } - }, - { - "pk": 31400, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERVAIS-DES-SABLONS", - "center": "POINT (433909.0398012269288301 2436073.8570771897211671)", - "surface": 8800000, - "canton": null, - "numero_insee": "61399" - } - }, - { - "pk": 34496, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GERVAIS-DU-PERRON", - "center": "POINT (438448.9780246374430135 2395283.2454189681448042)", - "surface": 11370000, - "canton": null, - "numero_insee": "61400" - } - }, - { - "pk": 11421, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-GILLES-DES-MARAIS", - "center": "POINT (376043.4415812210645527 2402774.6377126672305167)", - "surface": 5910000, - "canton": null, - "numero_insee": "61401" - } - }, - { - "pk": 4294, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-HILAIRE-DE-BRIOUZE", - "center": "POINT (405260.5843675850192085 2415323.5539988446980715)", - "surface": 13780000, - "canton": null, - "numero_insee": "61402" - } - }, - { - "pk": 33206, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-HILAIRE-LA-GERARD", - "center": "POINT (431189.0176087332656607 2401927.9726435868069530)", - "surface": 8850000, - "canton": null, - "numero_insee": "61403" - } - }, - { - "pk": 17637, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-HILAIRE-LE-CHATEL", - "center": "POINT (467358.2541298371506855 2396623.2889319011010230)", - "surface": 22600000, - "canton": null, - "numero_insee": "61404" - } - }, - { - "pk": 15293, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-HILAIRE-SUR-ERRE", - "center": "POINT (481894.8932891426375136 2369324.2713996223174036)", - "surface": 15360000, - "canton": null, - "numero_insee": "61405" - } - }, - { - "pk": 6674, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-HILAIRE-SUR-RISLE", - "center": "POINT (465400.4010999983875081 2415520.2282748008146882)", - "surface": 6690000, - "canton": null, - "numero_insee": "61406" - } - }, - { - "pk": 22107, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-HONORINE-LA-CHARDONNE", - "center": "POINT (393341.2617867147782817 2428834.7352665537036955)", - "surface": 14680000, - "canton": null, - "numero_insee": "61407" - } - }, - { - "pk": 19559, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-HONORINE-LA-GUILLAUME", - "center": "POINT (400091.4978322730166838 2423286.4783191476017237)", - "surface": 14790000, - "canton": null, - "numero_insee": "61408" - } - }, - { - "pk": 14901, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-JEAN-DES-BOIS", - "center": "POINT (369507.9466462772688828 2418732.0796186141669750)", - "surface": 9920000, - "canton": null, - "numero_insee": "61410" - } - }, - { - "pk": 33264, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-JOUIN-DE-BLAVOU", - "center": "POINT (462752.2576458222465590 2384876.8303792299702764)", - "surface": 17860000, - "canton": null, - "numero_insee": "61411" - } - }, - { - "pk": 17059, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-JULIEN-SUR-SARTHE", - "center": "POINT (454806.5739434387069196 2389714.5158327156677842)", - "surface": 16310000, - "canton": null, - "numero_insee": "61412" - } - }, - { - "pk": 7376, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-LAMBERT-SUR-DIVE", - "center": "POINT (434976.6024529670830816 2427977.1981490175239742)", - "surface": 7760000, - "canton": null, - "numero_insee": "61413" - } - }, - { - "pk": 24922, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-LANGIS-LES-MORTAGNE", - "center": "POINT (466599.2093993909074925 2391613.4680869048461318)", - "surface": 12730000, - "canton": null, - "numero_insee": "61414" - } - }, - { - "pk": 7198, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-LEGER-SUR-SARTHE", - "center": "POINT (450598.0849653079640120 2390380.1809328645467758)", - "surface": 13280000, - "canton": null, - "numero_insee": "61415" - } - }, - { - "pk": 18857, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-LEONARD-DES-PARCS", - "center": "POINT (448157.5410758488578722 2407171.7918001306243241)", - "surface": 13490000, - "canton": null, - "numero_insee": "61416" - } - }, - { - "pk": 11465, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-LOYER-DES-CHAMPS", - "center": "POINT (430090.0518734517972916 2413827.1749007431790233)", - "surface": 10400000, - "canton": null, - "numero_insee": "61417" - } - }, - { - "pk": 30412, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MARD-DE-RENO", - "center": "POINT (474105.6627154565649107 2391475.5584644731134176)", - "surface": 19200000, - "canton": null, - "numero_insee": "61418" - } - }, - { - "pk": 6125, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-MARGUERITE-DE-CARROUGES", - "center": "POINT (416375.5321878819959238 2402306.0635535256005824)", - "surface": 8620000, - "canton": null, - "numero_insee": "61419" - } - }, - { - "pk": 17662, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-MARIE-LA-ROBERT", - "center": "POINT (417046.2637918987311423 2405914.1115240994840860)", - "surface": 5530000, - "canton": null, - "numero_insee": "61420" - } - }, - { - "pk": 19214, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MARS-D'EGRENNE", - "center": "POINT (373271.2540863525937311 2399149.3377066394314170)", - "surface": 25470000, - "canton": null, - "numero_insee": "61421" - } - }, - { - "pk": 18820, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES ASPRES", - "center": "POINT (472752.2217594941612333 2409877.2279607430100441)", - "surface": 23460000, - "canton": null, - "numero_insee": "61422" - } - }, - { - "pk": 10776, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MARTIN-D'ECUBLEI", - "center": "POINT (477445.6486201827647164 2423125.2369629014283419)", - "surface": 12150000, - "canton": null, - "numero_insee": "61423" - } - }, - { - "pk": 25336, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MARTIN-DES-LANDES", - "center": "POINT (415818.8894369214540347 2396997.7497430169023573)", - "surface": 11200000, - "canton": null, - "numero_insee": "61424" - } - }, - { - "pk": 5255, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MARTIN-DES-PEZERITS", - "center": "POINT (463788.8787859519943595 2404699.3880847087129951)", - "surface": 4670000, - "canton": null, - "numero_insee": "61425" - } - }, - { - "pk": 14662, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MARTIN-DU-VIEUX-BELLEME", - "center": "POINT (467326.4836263259639964 2376308.5702556855976582)", - "surface": 16060000, - "canton": null, - "numero_insee": "61426" - } - }, - { - "pk": 35172, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MAURICE-DU-DESERT", - "center": "POINT (399043.1671360692707822 2404765.0562740718014538)", - "surface": 10860000, - "canton": null, - "numero_insee": "61428" - } - }, - { - "pk": 36089, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MAURICE-LES-CHARENCEY", - "center": "POINT (483194.4295674053137191 2405660.8701900672167540)", - "surface": 16030000, - "canton": null, - "numero_insee": "61429" - } - }, - { - "pk": 7003, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MAURICE-SUR-HUISNE", - "center": "POINT (478684.9213560912758112 2382306.9979176083579659)", - "surface": 4440000, - "canton": null, - "numero_insee": "61430" - } - }, - { - "pk": 15898, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MICHEL-DES-ANDAINES", - "center": "POINT (396465.4130381437134929 2401841.8049794547259808)", - "surface": 6420000, - "canton": null, - "numero_insee": "61431" - } - }, - { - "pk": 37684, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-MICHEL-TUBOEUF", - "center": "POINT (478584.5110539910965599 2418531.5357971880584955)", - "surface": 8880000, - "canton": null, - "numero_insee": "61432" - } - }, - { - "pk": 25915, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-NICOLAS-DES-BOIS", - "center": "POINT (429267.9039286344777793 2392205.2759331008419394)", - "surface": 25330000, - "canton": null, - "numero_insee": "61433" - } - }, - { - "pk": 11696, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-NICOLAS-DES-LAITIERS", - "center": "POINT (459796.7211862449767068 2427582.0881951996125281)", - "surface": 7250000, - "canton": null, - "numero_insee": "61434" - } - }, - { - "pk": 21680, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-NICOLAS-DE-SOMMAIRE", - "center": "POINT (472225.0334328443277627 2425183.3724210085347295)", - "surface": 16260000, - "canton": null, - "numero_insee": "61435" - } - }, - { - "pk": 31558, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-OPPORTUNE", - "center": "POINT (397827.1477376075345092 2418764.7498610536567867)", - "surface": 8600000, - "canton": null, - "numero_insee": "61436" - } - }, - { - "pk": 28134, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-OUEN-DE-LA-COUR", - "center": "POINT (470392.8293262792867608 2380637.0779840750619769)", - "surface": 6120000, - "canton": null, - "numero_insee": "61437" - } - }, - { - "pk": 7118, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-OUEN-DE-SECHEROUVRE", - "center": "POINT (463914.6417057738290168 2401598.2635212494060397)", - "surface": 10170000, - "canton": null, - "numero_insee": "61438" - } - }, - { - "pk": 17038, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-OUEN-LE-BRISOULT", - "center": "POINT (401338.4988706183503382 2393375.9401432955637574)", - "surface": 9660000, - "canton": null, - "numero_insee": "61439" - } - }, - { - "pk": 35636, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-OUEN-SUR-ITON", - "center": "POINT (477400.3713956991559826 2416520.3376290304586291)", - "surface": 14300000, - "canton": null, - "numero_insee": "61440" - } - }, - { - "pk": 25694, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-OUEN-SUR-MAIRE", - "center": "POINT (414575.4456336429575458 2414299.5663181543350220)", - "surface": 5180000, - "canton": null, - "numero_insee": "61441" - } - }, - { - "pk": 15487, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PATRICE-DU-DESERT", - "center": "POINT (406220.1973741187830456 2396017.9907345073297620)", - "surface": 20650000, - "canton": null, - "numero_insee": "61442" - } - }, - { - "pk": 8523, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PAUL", - "center": "POINT (381708.1163959258701652 2419732.9158648061566055)", - "surface": 7910000, - "canton": null, - "numero_insee": "61443" - } - }, - { - "pk": 35446, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PHILBERT-SUR-ORNE", - "center": "POINT (400739.1976181110367179 2429696.1725053740665317)", - "surface": 5890000, - "canton": null, - "numero_insee": "61444" - } - }, - { - "pk": 5707, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PIERRE-D'ENTREMONT", - "center": "POINT (380540.8261424821102992 2427828.8630197499878705)", - "surface": 6220000, - "canton": null, - "numero_insee": "61445" - } - }, - { - "pk": 33782, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PIERRE-DES-LOGES", - "center": "POINT (462380.3048358938540332 2417696.7212250237353146)", - "surface": 9910000, - "canton": null, - "numero_insee": "61446" - } - }, - { - "pk": 35043, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PIERRE-DU-REGARD", - "center": "POINT (388628.5097854590276256 2429996.7816657545045018)", - "surface": 9420000, - "canton": null, - "numero_insee": "61447" - } - }, - { - "pk": 37293, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PIERRE-LA-BRUYERE", - "center": "POINT (485956.0416950940852985 2374361.6027535190805793)", - "surface": 6380000, - "canton": null, - "numero_insee": "61448" - } - }, - { - "pk": 9884, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-PIERRE-LA-RIVIERE", - "center": "POINT (441995.7699714012560435 2426233.9825955471023917)", - "surface": 9520000, - "canton": null, - "numero_insee": "61449" - } - }, - { - "pk": 26421, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-QUENTIN-DE-BLAVOU", - "center": "POINT (458119.4613063178258017 2388441.0216470854356885)", - "surface": 6420000, - "canton": null, - "numero_insee": "61450" - } - }, - { - "pk": 15430, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-QUENTIN-LES-CHARDONNETS", - "center": "POINT (372959.9939367248443887 2424864.6076902928762138)", - "surface": 8990000, - "canton": null, - "numero_insee": "61451" - } - }, - { - "pk": 14356, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-ROCH-SUR-EGRENNE", - "center": "POINT (372548.6205422630300745 2401845.3003527154214680)", - "surface": 12310000, - "canton": null, - "numero_insee": "61452" - } - }, - { - "pk": 17648, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-SAUVEUR-DE-CARROUGES", - "center": "POINT (419482.4450466730631888 2401731.2708823299035430)", - "surface": 11560000, - "canton": null, - "numero_insee": "61453" - } - }, - { - "pk": 38051, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINTE-SCOLASSE-SUR-SARTHE", - "center": "POINT (455924.5007002507918514 2399730.8275682767853141)", - "surface": 14210000, - "canton": null, - "numero_insee": "61454" - } - }, - { - "pk": 4082, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-SIMEON", - "center": "POINT (371553.1026724673574790 2389028.0772898476570845)", - "surface": 16240000, - "canton": null, - "numero_insee": "61455" - } - }, - { - "pk": 18169, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-SULPICE-SUR-RISLE", - "center": "POINT (477563.1415209693368524 2421024.7760425521992147)", - "surface": 28540000, - "canton": null, - "numero_insee": "61456" - } - }, - { - "pk": 15260, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-SYMPHORIEN-DES-BRUYERES", - "center": "POINT (469146.3579474817379378 2422355.9393012234941125)", - "surface": 16170000, - "canton": null, - "numero_insee": "61457" - } - }, - { - "pk": 16324, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAINT-VICTOR-DE-RENO", - "center": "POINT (478217.4153080857940949 2390408.8865354722365737)", - "surface": 12370000, - "canton": null, - "numero_insee": "61458" - } - }, - { - "pk": 10988, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SAIRES-LA-VERRERIE", - "center": "POINT (391963.8300177476485260 2413813.1161011205986142)", - "surface": 8200000, - "canton": null, - "numero_insee": "61459" - } - }, - { - "pk": 28370, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE SAP", - "center": "POINT (453439.0443307077512145 2434033.8546450869180262)", - "surface": 22710000, - "canton": null, - "numero_insee": "61460" - } - }, - { - "pk": 11447, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE SAP-ANDRE", - "center": "POINT (456997.4960501944296993 2427258.7061052783392370)", - "surface": 9370000, - "canton": null, - "numero_insee": "61461" - } - }, - { - "pk": 33627, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SARCEAUX", - "center": "POINT (425372.2581959555973299 2415589.4669574904255569)", - "surface": 10740000, - "canton": null, - "numero_insee": "61462" - } - }, - { - "pk": 17839, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA SAUVAGERE", - "center": "POINT (395537.6643312384840101 2405136.4780616522766650)", - "surface": 26690000, - "canton": null, - "numero_insee": "61463" - } - }, - { - "pk": 30685, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SEES", - "center": "POINT (440088.0245854709064588 2402802.0620506685227156)", - "surface": 40550000, - "canton": null, - "numero_insee": "61464" - } - }, - { - "pk": 37581, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SEGRIE-FONTAINE", - "center": "POINT (398650.2707312722923234 2428177.9544889577664435)", - "surface": 6780000, - "canton": null, - "numero_insee": "61465" - } - }, - { - "pk": 27327, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA SELLE-LA-FORGE", - "center": "POINT (388819.0987046931986697 2418990.8331009587273002)", - "surface": 8140000, - "canton": null, - "numero_insee": "61466" - } - }, - { - "pk": 17256, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SEMALLE", - "center": "POINT (438606.9354668336454779 2388279.5928573841229081)", - "surface": 14290000, - "canton": null, - "numero_insee": "61467" - } - }, - { - "pk": 11153, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SENTILLY", - "center": "POINT (419218.9410849913838319 2421542.8157261046580970)", - "surface": 7770000, - "canton": null, - "numero_insee": "61468" - } - }, - { - "pk": 19479, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SEPT-FORGES", - "center": "POINT (387137.6380517497891560 2392258.3580912416800857)", - "surface": 8580000, - "canton": null, - "numero_insee": "61469" - } - }, - { - "pk": 8726, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SERANS", - "center": "POINT (416949.7066978014190681 2417621.4209619816392660)", - "surface": 6180000, - "canton": null, - "numero_insee": "61470" - } - }, - { - "pk": 32166, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SERIGNY", - "center": "POINT (470525.2493617559666745 2376735.3747977805323899)", - "surface": 15210000, - "canton": null, - "numero_insee": "61471" - } - }, - { - "pk": 8233, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SEVIGNY", - "center": "POINT (426720.2623205507406965 2422004.9911596570163965)", - "surface": 7730000, - "canton": null, - "numero_insee": "61472" - } - }, - { - "pk": 21122, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SEVRAI", - "center": "POINT (416774.3399159800028428 2414617.9066324857994914)", - "surface": 8230000, - "canton": null, - "numero_insee": "61473" - } - }, - { - "pk": 20102, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SILLY-EN-GOUFFERN", - "center": "POINT (432846.3363843079423532 2419353.7267867838963866)", - "surface": 40210000, - "canton": null, - "numero_insee": "61474" - } - }, - { - "pk": 20447, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SOLIGNY-LA-TRAPPE", - "center": "POINT (468192.4751641700277105 2404635.8097879020497203)", - "surface": 19850000, - "canton": null, - "numero_insee": "61475" - } - }, - { - "pk": 18709, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SURE", - "center": "POINT (456920.5360315766884014 2376122.2928127171471715)", - "surface": 17340000, - "canton": null, - "numero_insee": "61476" - } - }, - { - "pk": 25546, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "SURVIE", - "center": "POINT (442272.7909510766621679 2429038.1758915721438825)", - "surface": 13250000, - "canton": null, - "numero_insee": "61477" - } - }, - { - "pk": 35770, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TAILLEBOIS", - "center": "POINT (396565.4566942134406418 2426159.4310397086665034)", - "surface": 5630000, - "canton": null, - "numero_insee": "61478" - } - }, - { - "pk": 8544, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TANQUES", - "center": "POINT (422395.9903914042515680 2412462.7620786288753152)", - "surface": 6300000, - "canton": null, - "numero_insee": "61479" - } - }, - { - "pk": 30537, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TANVILLE", - "center": "POINT (428112.6699818366905674 2398800.3932436397299170)", - "surface": 13170000, - "canton": null, - "numero_insee": "61480" - } - }, - { - "pk": 10013, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TELLIERES-LE-PLESSIS", - "center": "POINT (456687.7262946766568348 2404240.2959767845459282)", - "surface": 5510000, - "canton": null, - "numero_insee": "61481" - } - }, - { - "pk": 35771, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TESSE-FROULAY", - "center": "POINT (395712.6765706797596067 2396031.5288567785173655)", - "surface": 5220000, - "canton": null, - "numero_insee": "61482" - } - }, - { - "pk": 37281, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "BAGNOLES-DE-L'ORNE", - "center": "POINT (396490.9471820358885452 2398739.8377869729883969)", - "surface": 9480000, - "canton": null, - "numero_insee": "61483" - } - }, - { - "pk": 23676, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LE THEIL", - "center": "POINT (474830.0706788034294732 2364462.1608699625357985)", - "surface": 9530000, - "canton": null, - "numero_insee": "61484" - } - }, - { - "pk": 25663, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TICHEVILLE", - "center": "POINT (447615.6664665532298386 2436387.2897392292506993)", - "surface": 10020000, - "canton": null, - "numero_insee": "61485" - } - }, - { - "pk": 14518, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TINCHEBRAY", - "center": "POINT (373985.2639154792996123 2421870.9740963680669665)", - "surface": 26360000, - "canton": null, - "numero_insee": "61486" - } - }, - { - "pk": 19060, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TORCHAMP", - "center": "POINT (377586.3227304647443816 2397683.7291778279468417)", - "surface": 14790000, - "canton": null, - "numero_insee": "61487" - } - }, - { - "pk": 6081, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TOUQUETTES", - "center": "POINT (458727.5344911045394838 2423770.6465984852984548)", - "surface": 9850000, - "canton": null, - "numero_insee": "61488" - } - }, - { - "pk": 5389, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES TOURAILLES", - "center": "POINT (397708.1404263287549838 2421065.3496508034877479)", - "surface": 2470000, - "canton": null, - "numero_insee": "61489" - } - }, - { - "pk": 28143, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TOURNAI-SUR-DIVE", - "center": "POINT (431490.9905742414412089 2425947.0457481658086181)", - "surface": 12500000, - "canton": null, - "numero_insee": "61490" - } - }, - { - "pk": 26329, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TREMONT", - "center": "POINT (447800.3329312326386571 2401965.2073279381729662)", - "surface": 6450000, - "canton": null, - "numero_insee": "61492" - } - }, - { - "pk": 19809, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA TRINITE-DES-LAITIERS", - "center": "POINT (456121.7965140653541312 2424249.4135068804025650)", - "surface": 11330000, - "canton": null, - "numero_insee": "61493" - } - }, - { - "pk": 12346, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "TRUN", - "center": "POINT (431753.9864863444236107 2430452.2751390882767737)", - "surface": 9130000, - "canton": null, - "numero_insee": "61494" - } - }, - { - "pk": 26678, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "UROU-ET-CRENNES", - "center": "POINT (429037.3774287878768519 2420122.8194646881893277)", - "surface": 7020000, - "canton": null, - "numero_insee": "61496" - } - }, - { - "pk": 6600, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VALFRAMBERT", - "center": "POINT (435312.2556101911468431 2387351.7251120875589550)", - "surface": 14300000, - "canton": null, - "numero_insee": "61497" - } - }, - { - "pk": 36361, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VAUNOISE", - "center": "POINT (462845.9357275551301427 2373569.4942864351905882)", - "surface": 7680000, - "canton": null, - "numero_insee": "61498" - } - }, - { - "pk": 14854, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES VENTES-DE-BOURSE", - "center": "POINT (446984.1901592789217830 2391751.2740480708889663)", - "surface": 20940000, - "canton": null, - "numero_insee": "61499" - } - }, - { - "pk": 36585, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LA VENTROUZE", - "center": "POINT (478415.4916930123581551 2402719.1882786126807332)", - "surface": 7130000, - "canton": null, - "numero_insee": "61500" - } - }, - { - "pk": 11557, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VIDAI", - "center": "POINT (454933.9739599458407611 2386413.2242026082240045)", - "surface": 1580000, - "canton": null, - "numero_insee": "61502" - } - }, - { - "pk": 10433, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VIEUX-PONT", - "center": "POINT (416624.5552625751588494 2408512.4441780629567802)", - "surface": 9700000, - "canton": null, - "numero_insee": "61503" - } - }, - { - "pk": 4817, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VILLEBADIN", - "center": "POINT (439528.9741285509080626 2422010.7249805447645485)", - "surface": 13050000, - "canton": null, - "numero_insee": "61504" - } - }, - { - "pk": 25697, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VILLEDIEU-LES-BAILLEUL", - "center": "POINT (429598.9144890425959602 2424830.6710682036355138)", - "surface": 4730000, - "canton": null, - "numero_insee": "61505" - } - }, - { - "pk": 33247, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VILLERS-EN-OUCHE", - "center": "POINT (461868.1669545662589371 2431201.6849212073720992)", - "surface": 11220000, - "canton": null, - "numero_insee": "61506" - } - }, - { - "pk": 28806, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VILLIERS-SOUS-MORTAGNE", - "center": "POINT (471176.4308792311931029 2394753.6007895371876657)", - "surface": 13140000, - "canton": null, - "numero_insee": "61507" - } - }, - { - "pk": 15344, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VIMOUTIERS", - "center": "POINT (443396.5828592526959255 2438353.7428458225913346)", - "surface": 16080000, - "canton": null, - "numero_insee": "61508" - } - }, - { - "pk": 28868, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VINGT-HANAPS", - "center": "POINT (436660.2344859187724069 2393767.4033759036101401)", - "surface": 11690000, - "canton": null, - "numero_insee": "61509" - } - }, - { - "pk": 30106, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VITRAI-SOUS-LAIGLE", - "center": "POINT (480121.1397680472582579 2414241.3264730363152921)", - "surface": 11440000, - "canton": null, - "numero_insee": "61510" - } - }, - { - "pk": 33883, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "VRIGNY", - "center": "POINT (425915.5197866498492658 2410390.3546417760662735)", - "surface": 13480000, - "canton": null, - "numero_insee": "61511" - } - }, - { - "pk": 8777, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "LES YVETEAUX", - "center": "POINT (408061.5020577370887622 2415446.7005089144222438)", - "surface": 5720000, - "canton": null, - "numero_insee": "61512" - } - }, - { - "pk": 18464, - "model": "ishtar_common.town", - "fields": { - "departement": 62, - "name": "YVRANDES", - "center": "POINT (371716.7073296652524732 2417849.5947441798634827)", - "surface": 10340000, - "canton": null, - "numero_insee": "61513" - } - }, - { - "pk": 20615, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ABLAIN-SAINT-NAZAIRE", - "center": "POINT (625657.9608292840421200 2600170.7848128611221910)", - "surface": 9930000, - "canton": null, - "numero_insee": "62001" - } - }, - { - "pk": 37918, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ABLAINZEVELLE", - "center": "POINT (628987.6177622448885813 2573083.8991358182393014)", - "surface": 4290000, - "canton": null, - "numero_insee": "62002" - } - }, - { - "pk": 4824, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ACHEVILLE", - "center": "POINT (638775.8919319767737761 2598880.4778335448354483)", - "surface": 3110000, - "canton": null, - "numero_insee": "62003" - } - }, - { - "pk": 24202, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ACHICOURT", - "center": "POINT (629876.0983320103259757 2586398.7691291808150709)", - "surface": 5820000, - "canton": null, - "numero_insee": "62004" - } - }, - { - "pk": 32687, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ACHIET-LE-GRAND", - "center": "POINT (631608.2658401528606191 2570804.6667476608417928)", - "surface": 5070000, - "canton": null, - "numero_insee": "62005" - } - }, - { - "pk": 36453, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ACHIET-LE-PETIT", - "center": "POINT (629914.1665859383065253 2569989.9544792594388127)", - "surface": 7400000, - "canton": null, - "numero_insee": "62006" - } - }, - { - "pk": 36225, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ACQ", - "center": "POINT (622700.3184712752699852 2594943.0886977305635810)", - "surface": 4900000, - "canton": null, - "numero_insee": "62007" - } - }, - { - "pk": 32948, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ACQUIN-WESTBECOURT", - "center": "POINT (581624.0141794126247987 2637220.6494615762494504)", - "surface": 14590000, - "canton": null, - "numero_insee": "62008" - } - }, - { - "pk": 28452, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ADINFER", - "center": "POINT (626348.4579829280264676 2577564.2055010478943586)", - "surface": 6330000, - "canton": null, - "numero_insee": "62009" - } - }, - { - "pk": 29139, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AFFRINGUES", - "center": "POINT (581459.9664371222024783 2632917.0830678171478212)", - "surface": 2990000, - "canton": null, - "numero_insee": "62010" - } - }, - { - "pk": 36643, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AGNEZ-LES-DUISANS", - "center": "POINT (622337.1575756443198770 2590537.6359512764029205)", - "surface": 7360000, - "canton": null, - "numero_insee": "62011" - } - }, - { - "pk": 32481, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AGNIERES", - "center": "POINT (619294.5058600779157132 2595414.7159537910483778)", - "surface": 3290000, - "canton": null, - "numero_insee": "62012" - } - }, - { - "pk": 12527, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AGNY", - "center": "POINT (630294.8185955360531807 2584201.0812466158531606)", - "surface": 6120000, - "canton": null, - "numero_insee": "62013" - } - }, - { - "pk": 19627, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AIRE-SUR-LA-LYS", - "center": "POINT (604115.2970122788101435 2627704.3209307710640132)", - "surface": 33250000, - "canton": null, - "numero_insee": "62014" - } - }, - { - "pk": 12074, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AIRON-NOTRE-DAME", - "center": "POINT (552376.0199624124215916 2605259.4444139110855758)", - "surface": 5040000, - "canton": null, - "numero_insee": "62015" - } - }, - { - "pk": 37927, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AIRON-SAINT-VAAST", - "center": "POINT (552588.6497113840887323 2603760.4181475890800357)", - "surface": 5920000, - "canton": null, - "numero_insee": "62016" - } - }, - { - "pk": 30797, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AIX-EN-ERGNY", - "center": "POINT (576053.0359410237288103 2621465.9116212418302894)", - "surface": 4900000, - "canton": null, - "numero_insee": "62017" - } - }, - { - "pk": 16194, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AIX-EN-ISSART", - "center": "POINT (566147.2791369420010597 2609576.8021560488268733)", - "surface": 10330000, - "canton": null, - "numero_insee": "62018" - } - }, - { - "pk": 33740, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AIX-NOULETTE", - "center": "POINT (626734.9022728605195880 2602981.3526338771916926)", - "surface": 10460000, - "canton": null, - "numero_insee": "62019" - } - }, - { - "pk": 25256, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ALEMBON", - "center": "POINT (567068.2853781561134383 2643001.7753285276703537)", - "surface": 9290000, - "canton": null, - "numero_insee": "62020" - } - }, - { - "pk": 29566, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ALETTE", - "center": "POINT (565405.9514923677779734 2614473.1923286896198988)", - "surface": 13980000, - "canton": null, - "numero_insee": "62021" - } - }, - { - "pk": 5979, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ALINCTHUN", - "center": "POINT (562720.7566822925582528 2636462.1247110273689032)", - "surface": 9980000, - "canton": null, - "numero_insee": "62022" - } - }, - { - "pk": 28676, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ALLOUAGNE", - "center": "POINT (611923.8098850931273773 2615263.3956754137761891)", - "surface": 7790000, - "canton": null, - "numero_insee": "62023" - } - }, - { - "pk": 10623, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ALQUINES", - "center": "POINT (575616.3614200225565583 2637770.6381122763268650)", - "surface": 10580000, - "canton": null, - "numero_insee": "62024" - } - }, - { - "pk": 3069, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AMBLETEUSE", - "center": "POINT (549428.9112177771748975 2646656.2452908852137625)", - "surface": 5760000, - "canton": null, - "numero_insee": "62025" - } - }, - { - "pk": 36101, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AMBRICOURT", - "center": "POINT (588173.3482576082460582 2607860.2438840307295322)", - "surface": 3430000, - "canton": null, - "numero_insee": "62026" - } - }, - { - "pk": 25926, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AMBRINES", - "center": "POINT (609232.6018611701438203 2590227.3683680682443082)", - "surface": 4580000, - "canton": null, - "numero_insee": "62027" - } - }, - { - "pk": 7630, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AMES", - "center": "POINT (605517.5327313020825386 2615609.7915722890757024)", - "surface": 3670000, - "canton": null, - "numero_insee": "62028" - } - }, - { - "pk": 3963, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AMETTES", - "center": "POINT (604024.4097813682164997 2614696.7800475792028010)", - "surface": 6900000, - "canton": null, - "numero_insee": "62029" - } - }, - { - "pk": 16953, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AMPLIER", - "center": "POINT (604288.9447276896098629 2571275.3637938722968102)", - "surface": 8680000, - "canton": null, - "numero_insee": "62030" - } - }, - { - "pk": 28259, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ANDRES", - "center": "POINT (570390.2233936953125522 2652534.3126350766979158)", - "surface": 7230000, - "canton": null, - "numero_insee": "62031" - } - }, - { - "pk": 31590, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ANGRES", - "center": "POINT (629447.9495049047982320 2601603.4342836523428559)", - "surface": 4840000, - "canton": null, - "numero_insee": "62032" - } - }, - { - "pk": 11083, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ANNAY", - "center": "POINT (638803.4491081096930429 2607485.3243540278635919)", - "surface": 4310000, - "canton": null, - "numero_insee": "62033" - } - }, - { - "pk": 7164, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ANNEQUIN", - "center": "POINT (627158.5184298559324816 2612089.7663260307163000)", - "surface": 3930000, - "canton": null, - "numero_insee": "62034" - } - }, - { - "pk": 10238, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ANNEZIN", - "center": "POINT (620020.7696113719139248 2616131.8817755924537778)", - "surface": 6070000, - "canton": null, - "numero_insee": "62035" - } - }, - { - "pk": 27306, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ANVIN", - "center": "POINT (594391.3184369450900704 2606111.4276971947401762)", - "surface": 7870000, - "canton": null, - "numero_insee": "62036" - } - }, - { - "pk": 34299, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ANZIN-SAINT-AUBIN", - "center": "POINT (628833.5146468097809702 2591392.7345351511612535)", - "surface": 5170000, - "canton": null, - "numero_insee": "62037" - } - }, - { - "pk": 9734, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ARDRES", - "center": "POINT (575083.0080168852582574 2653674.1371464426629245)", - "surface": 13780000, - "canton": null, - "numero_insee": "62038" - } - }, - { - "pk": 29530, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ARLEUX-EN-GOHELLE", - "center": "POINT (637994.0590421378146857 2596672.7009022003039718)", - "surface": 6270000, - "canton": null, - "numero_insee": "62039" - } - }, - { - "pk": 18422, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ARQUES", - "center": "POINT (598722.2620486364467070 2638464.5748167471028864)", - "surface": 22540000, - "canton": null, - "numero_insee": "62040" - } - }, - { - "pk": 18035, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ARRAS", - "center": "POINT (630660.4793392999563366 2588306.4160970570519567)", - "surface": 11940000, - "canton": null, - "numero_insee": "62041" - } - }, - { - "pk": 28004, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ATHIES", - "center": "POINT (636047.0484009627252817 2590252.8150414950214326)", - "surface": 4380000, - "canton": null, - "numero_insee": "62042" - } - }, - { - "pk": 27830, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LES ATTAQUES", - "center": "POINT (571759.8381760718766600 2656247.6015856252051890)", - "surface": 20820000, - "canton": null, - "numero_insee": "62043" - } - }, - { - "pk": 26096, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ATTIN", - "center": "POINT (558632.1144665719475597 2610914.7024023900739849)", - "surface": 6610000, - "canton": null, - "numero_insee": "62044" - } - }, - { - "pk": 30864, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUBIN-SAINT-VAAST", - "center": "POINT (573338.4876849262509495 2599131.3600738444365561)", - "surface": 6780000, - "canton": null, - "numero_insee": "62046" - } - }, - { - "pk": 32772, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUBROMETZ", - "center": "POINT (588525.2549047372303903 2589753.4241075199097395)", - "surface": 2740000, - "canton": null, - "numero_insee": "62047" - } - }, - { - "pk": 9672, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUCHEL", - "center": "POINT (609342.7962098638527095 2612840.4447702104225755)", - "surface": 5990000, - "canton": null, - "numero_insee": "62048" - } - }, - { - "pk": 35006, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUCHY-AU-BOIS", - "center": "POINT (602601.9335348020540550 2617286.2039361391216516)", - "surface": 4320000, - "canton": null, - "numero_insee": "62049" - } - }, - { - "pk": 3827, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUCHY-LES-HESDIN", - "center": "POINT (582723.6182627343805507 2601511.1991380718536675)", - "surface": 9860000, - "canton": null, - "numero_insee": "62050" - } - }, - { - "pk": 8694, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUCHY-LES-MINES", - "center": "POINT (631558.0075390244601294 2612426.9569554063491523)", - "surface": 5120000, - "canton": null, - "numero_insee": "62051" - } - }, - { - "pk": 33195, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUDEMBERT", - "center": "POINT (554387.5973974232329056 2651900.2548982086591423)", - "surface": 7640000, - "canton": null, - "numero_insee": "62052" - } - }, - { - "pk": 18175, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUDINCTHUN", - "center": "POINT (585066.3159976762253791 2620440.8422384085133672)", - "surface": 15300000, - "canton": null, - "numero_insee": "62053" - } - }, - { - "pk": 18687, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUDINGHEN", - "center": "POINT (548590.9743707034504041 2651151.4902186910621822)", - "surface": 13600000, - "canton": null, - "numero_insee": "62054" - } - }, - { - "pk": 11739, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUDREHEM", - "center": "POINT (575080.9633987563429400 2641968.2797164660878479)", - "surface": 9270000, - "canton": null, - "numero_insee": "62055" - } - }, - { - "pk": 4178, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUDRESSELLES", - "center": "POINT (548712.7373354424489662 2648551.2135061658918858)", - "surface": 5830000, - "canton": null, - "numero_insee": "62056" - } - }, - { - "pk": 7664, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUDRUICQ", - "center": "POINT (581979.2290073370095342 2654532.2893126192502677)", - "surface": 14360000, - "canton": null, - "numero_insee": "62057" - } - }, - { - "pk": 36669, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUMERVAL", - "center": "POINT (604944.9827498159138486 2612303.2433376512490213)", - "surface": 3450000, - "canton": null, - "numero_insee": "62058" - } - }, - { - "pk": 10578, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUTINGUES", - "center": "POINT (575214.8791228425689042 2649873.3568543782457709)", - "surface": 3000000, - "canton": null, - "numero_insee": "62059" - } - }, - { - "pk": 22984, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AUXI-LE-CHATEAU", - "center": "POINT (584290.2777869482524693 2581713.5224423520267010)", - "surface": 27370000, - "canton": null, - "numero_insee": "62060" - } - }, - { - "pk": 29320, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AVERDOINGT", - "center": "POINT (607696.5928636427270249 2594416.7557247374206781)", - "surface": 8560000, - "canton": null, - "numero_insee": "62061" - } - }, - { - "pk": 8066, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AVESNES", - "center": "POINT (573385.3179099438712001 2617441.4862290625460446)", - "surface": 2990000, - "canton": null, - "numero_insee": "62062" - } - }, - { - "pk": 36668, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AVESNES-LE-COMTE", - "center": "POINT (613668.3310327931540087 2586262.4453241806477308)", - "surface": 9350000, - "canton": null, - "numero_insee": "62063" - } - }, - { - "pk": 32466, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AVESNES-LES-BAPAUME", - "center": "POINT (635536.3070727240992710 2567735.9938522758893669)", - "surface": 3090000, - "canton": null, - "numero_insee": "62064" - } - }, - { - "pk": 24701, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AVION", - "center": "POINT (634855.5258053747238591 2601048.6410900908522308)", - "surface": 13010000, - "canton": null, - "numero_insee": "62065" - } - }, - { - "pk": 36550, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AVONDANCE", - "center": "POINT (583258.5096165230497718 2609319.8486687680706382)", - "surface": 2240000, - "canton": null, - "numero_insee": "62066" - } - }, - { - "pk": 12707, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AVROULT", - "center": "POINT (586417.4730935766128823 2626355.2314762705937028)", - "surface": 4790000, - "canton": null, - "numero_insee": "62067" - } - }, - { - "pk": 10945, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AYETTE", - "center": "POINT (628271.2756884923437610 2574978.9347636210732162)", - "surface": 5130000, - "canton": null, - "numero_insee": "62068" - } - }, - { - "pk": 26593, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "AZINCOURT", - "center": "POINT (584377.4614589689299464 2607128.0548012042418122)", - "surface": 8610000, - "canton": null, - "numero_insee": "62069" - } - }, - { - "pk": 28003, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAILLEUL-AUX-CORNAILLES", - "center": "POINT (607970.6834343193331733 2597520.7388477423228323)", - "surface": 6900000, - "canton": null, - "numero_insee": "62070" - } - }, - { - "pk": 8509, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAILLEUL-LES-PERNES", - "center": "POINT (603042.4323216978227720 2612487.3745216228999197)", - "surface": 3530000, - "canton": null, - "numero_insee": "62071" - } - }, - { - "pk": 7288, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAILLEULMONT", - "center": "POINT (619128.1280103246681392 2579504.5829091053456068)", - "surface": 5300000, - "canton": null, - "numero_insee": "62072" - } - }, - { - "pk": 9531, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAILLEUL-SIR-BERTHOULT", - "center": "POINT (636120.1301282028434798 2593455.1773324334062636)", - "surface": 9360000, - "canton": null, - "numero_insee": "62073" - } - }, - { - "pk": 37616, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAILLEULVAL", - "center": "POINT (620718.8070646252017468 2580718.6261303387582302)", - "surface": 3970000, - "canton": null, - "numero_insee": "62074" - } - }, - { - "pk": 4025, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAINCTHUN", - "center": "POINT (555835.2859035085421056 2634303.4971158402040601)", - "surface": 26950000, - "canton": null, - "numero_insee": "62075" - } - }, - { - "pk": 24491, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAINGHEN", - "center": "POINT (569196.8195543483598158 2639717.9189545409753919)", - "surface": 6800000, - "canton": null, - "numero_insee": "62076" - } - }, - { - "pk": 10363, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAJUS", - "center": "POINT (609626.9365558223798871 2602837.5073744188994169)", - "surface": 3000000, - "canton": null, - "numero_insee": "62077" - } - }, - { - "pk": 8949, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BALINGHEM", - "center": "POINT (571995.0902854379964992 2652047.4961574925109744)", - "surface": 5830000, - "canton": null, - "numero_insee": "62078" - } - }, - { - "pk": 8122, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BANCOURT", - "center": "POINT (639541.6575471474789083 2567369.5081808585673571)", - "surface": 4570000, - "canton": null, - "numero_insee": "62079" - } - }, - { - "pk": 12534, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAPAUME", - "center": "POINT (637140.4696233448339626 2567349.2792455977760255)", - "surface": 5780000, - "canton": null, - "numero_insee": "62080" - } - }, - { - "pk": 13823, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BARALLE", - "center": "POINT (651442.1026871907524765 2579976.8455055644735694)", - "surface": 8000000, - "canton": null, - "numero_insee": "62081" - } - }, - { - "pk": 9015, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BARASTRE", - "center": "POINT (643172.1104208208853379 2563998.1728945858776569)", - "surface": 7600000, - "canton": null, - "numero_insee": "62082" - } - }, - { - "pk": 30764, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BARLIN", - "center": "POINT (619698.8301889572758228 2606824.2499050861224532)", - "surface": 6290000, - "canton": null, - "numero_insee": "62083" - } - }, - { - "pk": 33162, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BARLY", - "center": "POINT (614391.3709719398757443 2583567.0335516589693725)", - "surface": 6120000, - "canton": null, - "numero_insee": "62084" - } - }, - { - "pk": 5402, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BASSEUX", - "center": "POINT (622212.8008160523604602 2581531.6353748803958297)", - "surface": 3350000, - "canton": null, - "numero_insee": "62085" - } - }, - { - "pk": 34771, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAVINCOURT", - "center": "POINT (616214.9464830589713529 2580880.8673053057864308)", - "surface": 7630000, - "canton": null, - "numero_insee": "62086" - } - }, - { - "pk": 5193, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAYENGHEM-LES-EPERLECQUES", - "center": "POINT (584353.9781477084616199 2645747.8115100516006351)", - "surface": 4570000, - "canton": null, - "numero_insee": "62087" - } - }, - { - "pk": 27999, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAYENGHEM-LES-SENINGHEM", - "center": "POINT (581446.5562364507932216 2634517.7881582407280803)", - "surface": 3240000, - "canton": null, - "numero_insee": "62088" - } - }, - { - "pk": 30362, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BAZINGHEN", - "center": "POINT (552112.5237390320980921 2648779.7076171976514161)", - "surface": 13370000, - "canton": null, - "numero_insee": "62089" - } - }, - { - "pk": 6987, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEALENCOURT", - "center": "POINT (584998.7005338437156752 2604631.9262381382286549)", - "surface": 7460000, - "canton": null, - "numero_insee": "62090" - } - }, - { - "pk": 35022, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUDRICOURT", - "center": "POINT (605083.5293422123650089 2583889.0581205794587731)", - "surface": 4590000, - "canton": null, - "numero_insee": "62091" - } - }, - { - "pk": 33161, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUFORT-BLAVINCOURT", - "center": "POINT (610663.5299152432708070 2586637.4156467905268073)", - "surface": 8150000, - "canton": null, - "numero_insee": "62092" - } - }, - { - "pk": 6122, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAULENCOURT", - "center": "POINT (638167.0931779878446832 2564256.1689903903752565)", - "surface": 4910000, - "canton": null, - "numero_insee": "62093" - } - }, - { - "pk": 10098, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUMERIE-SAINT-MARTIN", - "center": "POINT (561576.1105558399576694 2605836.6023372453637421)", - "surface": 9330000, - "canton": null, - "numero_insee": "62094" - } - }, - { - "pk": 36258, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUMETZ-LES-AIRE", - "center": "POINT (591602.8108507300494239 2616493.5463220067322254)", - "surface": 4230000, - "canton": null, - "numero_insee": "62095" - } - }, - { - "pk": 35989, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUMETZ-LES-CAMBRAI", - "center": "POINT (646522.3463504144456238 2570129.8694902355782688)", - "surface": 9970000, - "canton": null, - "numero_insee": "62096" - } - }, - { - "pk": 4718, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUMETZ-LES-LOGES", - "center": "POINT (622998.0385853805346414 2583339.2367973946966231)", - "surface": 5000000, - "canton": null, - "numero_insee": "62097" - } - }, - { - "pk": 29745, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAURAINS", - "center": "POINT (632290.7266976314131171 2584818.2155756559222937)", - "surface": 5960000, - "canton": null, - "numero_insee": "62099" - } - }, - { - "pk": 35601, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAURAINVILLE", - "center": "POINT (569105.5414376405533403 2602797.9233426693826914)", - "surface": 13240000, - "canton": null, - "numero_insee": "62100" - } - }, - { - "pk": 31484, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUVOIS", - "center": "POINT (592661.8073508091038093 2597592.3539834800176322)", - "surface": 2580000, - "canton": null, - "numero_insee": "62101" - } - }, - { - "pk": 13403, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BECOURT", - "center": "POINT (569200.5785530281718820 2627311.6134764370508492)", - "surface": 6080000, - "canton": null, - "numero_insee": "62102" - } - }, - { - "pk": 24199, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEHAGNIES", - "center": "POINT (635101.5622966147493571 2571834.6446875208057463)", - "surface": 3050000, - "canton": null, - "numero_insee": "62103" - } - }, - { - "pk": 27023, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BELLEBRUNE", - "center": "POINT (560408.8747479172889143 2637743.4551461092196405)", - "surface": 5440000, - "canton": null, - "numero_insee": "62104" - } - }, - { - "pk": 4771, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BELLE-ET-HOULLEFORT", - "center": "POINT (559595.1435660421848297 2639337.4634567666798830)", - "surface": 9280000, - "canton": null, - "numero_insee": "62105" - } - }, - { - "pk": 25685, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BELLONNE", - "center": "POINT (650359.7637770418077707 2589673.0686240145005286)", - "surface": 2000000, - "canton": null, - "numero_insee": "62106" - } - }, - { - "pk": 7768, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BENIFONTAINE", - "center": "POINT (634788.1200527797918767 2609052.3531575831584632)", - "surface": 4150000, - "canton": null, - "numero_insee": "62107" - } - }, - { - "pk": 8999, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERCK", - "center": "POINT (546197.3617269116220996 2602306.2912630764767528)", - "surface": 14670000, - "canton": null, - "numero_insee": "62108" - } - }, - { - "pk": 7101, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERGUENEUSE", - "center": "POINT (593675.8889015676686540 2607906.3860225058160722)", - "surface": 2840000, - "canton": null, - "numero_insee": "62109" - } - }, - { - "pk": 37832, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERLENCOURT-LE-CAUROY", - "center": "POINT (606163.0534808840602636 2586399.5014726999215782)", - "surface": 7600000, - "canton": null, - "numero_insee": "62111" - } - }, - { - "pk": 37149, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERLES-AU-BOIS", - "center": "POINT (620939.9398616636171937 2578219.0961845903657377)", - "surface": 8930000, - "canton": null, - "numero_insee": "62112" - } - }, - { - "pk": 28219, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERLES-MONCHEL", - "center": "POINT (613500.1762402764288709 2594365.4621219956316054)", - "surface": 8510000, - "canton": null, - "numero_insee": "62113" - } - }, - { - "pk": 30306, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERMICOURT", - "center": "POINT (592629.9216300529660657 2601394.1356389159336686)", - "surface": 5510000, - "canton": null, - "numero_insee": "62114" - } - }, - { - "pk": 7897, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERNEVILLE", - "center": "POINT (623980.8450410815421492 2585448.6635017879307270)", - "surface": 5680000, - "canton": null, - "numero_insee": "62115" - } - }, - { - "pk": 7566, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERNIEULLES", - "center": "POINT (559874.1657247163821012 2617928.7731738849543035)", - "surface": 5870000, - "canton": null, - "numero_insee": "62116" - } - }, - { - "pk": 35194, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BERTINCOURT", - "center": "POINT (646158.4202628524508327 2565824.3691844209097326)", - "surface": 7520000, - "canton": null, - "numero_insee": "62117" - } - }, - { - "pk": 36670, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BETHONSART", - "center": "POINT (614665.4252416903618723 2598577.5314685199409723)", - "surface": 4200000, - "canton": null, - "numero_insee": "62118" - } - }, - { - "pk": 11750, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BETHUNE", - "center": "POINT (621731.6407637138618156 2614945.6393582974560559)", - "surface": 9500000, - "canton": null, - "numero_insee": "62119" - } - }, - { - "pk": 33897, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEUGIN", - "center": "POINT (612108.7652763646328822 2605159.5917780250310898)", - "surface": 5020000, - "canton": null, - "numero_insee": "62120" - } - }, - { - "pk": 37148, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEUGNATRE", - "center": "POINT (638612.5536425674799830 2570763.5999838383868337)", - "surface": 3950000, - "canton": null, - "numero_insee": "62121" - } - }, - { - "pk": 37380, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEUGNY", - "center": "POINT (642627.1706133036641404 2569296.5831306474283338)", - "surface": 5750000, - "canton": null, - "numero_insee": "62122" - } - }, - { - "pk": 36028, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEUSSENT", - "center": "POINT (562873.0178024420747533 2618254.0041803442873061)", - "surface": 16000000, - "canton": null, - "numero_insee": "62123" - } - }, - { - "pk": 31288, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEUTIN", - "center": "POINT (556626.1781022478826344 2611498.2542649223469198)", - "surface": 2930000, - "canton": null, - "numero_insee": "62124" - } - }, - { - "pk": 9737, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEUVREQUEN", - "center": "POINT (553143.0399491221178323 2645186.5166945923119783)", - "surface": 4780000, - "canton": null, - "numero_insee": "62125" - } - }, - { - "pk": 37478, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEUVRY", - "center": "POINT (625229.8691468312172219 2615375.2787406379356980)", - "surface": 16920000, - "canton": null, - "numero_insee": "62126" - } - }, - { - "pk": 32723, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEZINGHEM", - "center": "POINT (565536.5850378390168771 2622778.6289974632672966)", - "surface": 13230000, - "canton": null, - "numero_insee": "62127" - } - }, - { - "pk": 37764, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BIACHE-SAINT-VAAST", - "center": "POINT (643142.8396659587742761 2591213.0940684583038092)", - "surface": 9340000, - "canton": null, - "numero_insee": "62128" - } - }, - { - "pk": 25170, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BIEFVILLERS-LES-BAPAUME", - "center": "POINT (634723.2726949187926948 2569229.9940952947363257)", - "surface": 4060000, - "canton": null, - "numero_insee": "62129" - } - }, - { - "pk": 7165, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BIENVILLERS-AU-BOIS", - "center": "POINT (619470.3394881039857864 2574504.6710575367324054)", - "surface": 7460000, - "canton": null, - "numero_insee": "62130" - } - }, - { - "pk": 25727, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BIHUCOURT", - "center": "POINT (633214.1079972501611337 2570217.8494589664041996)", - "surface": 4690000, - "canton": null, - "numero_insee": "62131" - } - }, - { - "pk": 5288, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BILLY-BERCLAU", - "center": "POINT (637648.1585616560187191 2613979.0385003625415266)", - "surface": 7420000, - "canton": null, - "numero_insee": "62132" - } - }, - { - "pk": 10064, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BILLY-MONTIGNY", - "center": "POINT (640648.1192781996214762 2602298.0844761938787997)", - "surface": 2750000, - "canton": null, - "numero_insee": "62133" - } - }, - { - "pk": 8796, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BIMONT", - "center": "POINT (569592.8006161156808957 2616309.1673702518455684)", - "surface": 6830000, - "canton": null, - "numero_insee": "62134" - } - }, - { - "pk": 30763, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BLAIRVILLE", - "center": "POINT (626926.0177784761181101 2580270.5679298806935549)", - "surface": 4590000, - "canton": null, - "numero_insee": "62135" - } - }, - { - "pk": 34442, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BLANGERVAL-BLANGERMONT", - "center": "POINT (591707.4832109373528510 2592081.3635084340348840)", - "surface": 4670000, - "canton": null, - "numero_insee": "62137" - } - }, - { - "pk": 24890, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BLANGY-SUR-TERNOISE", - "center": "POINT (588412.8614997797412798 2603159.7408416024409235)", - "surface": 11680000, - "canton": null, - "numero_insee": "62138" - } - }, - { - "pk": 6073, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BLENDECQUES", - "center": "POINT (595643.5700276526622474 2635737.3703739317134023)", - "surface": 9650000, - "canton": null, - "numero_insee": "62139" - } - }, - { - "pk": 8039, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BLEQUIN", - "center": "POINT (574080.1509003823157400 2630053.8440834153443575)", - "surface": 8640000, - "canton": null, - "numero_insee": "62140" - } - }, - { - "pk": 37369, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BLESSY", - "center": "POINT (599538.4371401739772409 2624664.3484308551996946)", - "surface": 5330000, - "canton": null, - "numero_insee": "62141" - } - }, - { - "pk": 11667, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BLINGEL", - "center": "POINT (586728.8416565206134692 2601144.5499027632176876)", - "surface": 3210000, - "canton": null, - "numero_insee": "62142" - } - }, - { - "pk": 31074, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOFFLES", - "center": "POINT (590169.6409321983810514 2584564.3545027291402221)", - "surface": 3470000, - "canton": null, - "numero_insee": "62143" - } - }, - { - "pk": 11759, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOIRY-BECQUERELLE", - "center": "POINT (634533.9118108842521906 2579834.3361610975116491)", - "surface": 4600000, - "canton": null, - "numero_insee": "62144" - } - }, - { - "pk": 33638, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOIRY-NOTRE-DAME", - "center": "POINT (643181.6297687679762021 2586610.8985740477219224)", - "surface": 6220000, - "canton": null, - "numero_insee": "62145" - } - }, - { - "pk": 12152, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOIRY-SAINT-MARTIN", - "center": "POINT (630151.1493368984665722 2577496.1543985232710838)", - "surface": 3520000, - "canton": null, - "numero_insee": "62146" - } - }, - { - "pk": 30765, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOIRY-SAINTE-RICTRUDE", - "center": "POINT (629243.1322131836786866 2578389.0126619730144739)", - "surface": 5920000, - "canton": null, - "numero_insee": "62147" - } - }, - { - "pk": 30551, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOIS-BERNARD", - "center": "POINT (641082.8723859320161864 2598199.5381609201431274)", - "surface": 3940000, - "canton": null, - "numero_insee": "62148" - } - }, - { - "pk": 17317, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOISDINGHEM", - "center": "POINT (582806.0980736905476078 2639431.6688796137459576)", - "surface": 3180000, - "canton": null, - "numero_insee": "62149" - } - }, - { - "pk": 33026, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOISJEAN", - "center": "POINT (560410.6840085254516453 2601624.6084433905780315)", - "surface": 12780000, - "canton": null, - "numero_insee": "62150" - } - }, - { - "pk": 22604, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOISLEUX-AU-MONT", - "center": "POINT (631533.2998361251084134 2579709.0146854198537767)", - "surface": 4680000, - "canton": null, - "numero_insee": "62151" - } - }, - { - "pk": 25894, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOISLEUX-SAINT-MARC", - "center": "POINT (632833.9301444187294692 2579719.9654087806120515)", - "surface": 3440000, - "canton": null, - "numero_insee": "62152" - } - }, - { - "pk": 38027, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOMY", - "center": "POINT (591978.6610120106488466 2619398.2178969820961356)", - "surface": 14600000, - "canton": null, - "numero_insee": "62153" - } - }, - { - "pk": 17162, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BONNIERES", - "center": "POINT (595091.3025623849825934 2582304.3622126877307892)", - "surface": 23640000, - "canton": null, - "numero_insee": "62154" - } - }, - { - "pk": 7545, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BONNINGUES-LES-ARDRES", - "center": "POINT (577678.7401919916737825 2642390.2335815527476370)", - "surface": 10740000, - "canton": null, - "numero_insee": "62155" - } - }, - { - "pk": 24240, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BONNINGUES-LES-CALAIS", - "center": "POINT (560059.0803489959798753 2655649.4825856080278754)", - "surface": 8590000, - "canton": null, - "numero_insee": "62156" - } - }, - { - "pk": 23490, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOUBERS-LES-HESMOND", - "center": "POINT (572251.7645928943529725 2609427.7763122757896781)", - "surface": 1790000, - "canton": null, - "numero_insee": "62157" - } - }, - { - "pk": 12208, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOUBERS-SUR-CANCHE", - "center": "POINT (592839.0531326213385910 2588388.8303553666919470)", - "surface": 9250000, - "canton": null, - "numero_insee": "62158" - } - }, - { - "pk": 13640, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOURECQ", - "center": "POINT (606979.5635624829446897 2620224.4809064846485853)", - "surface": 4030000, - "canton": null, - "numero_insee": "62162" - } - }, - { - "pk": 31676, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOURET-SUR-CANCHE", - "center": "POINT (598963.7988333158427849 2585838.7869213819503784)", - "surface": 5030000, - "canton": null, - "numero_insee": "62163" - } - }, - { - "pk": 24472, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOURLON", - "center": "POINT (656075.5717380770947784 2576313.8770903386175632)", - "surface": 12220000, - "canton": null, - "numero_insee": "62164" - } - }, - { - "pk": 17515, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOURNONVILLE", - "center": "POINT (565243.6097295616054907 2633881.8986844695173204)", - "surface": 8930000, - "canton": null, - "numero_insee": "62165" - } - }, - { - "pk": 19525, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOURS", - "center": "POINT (604997.9094479279592633 2606000.3403916181996465)", - "surface": 12020000, - "canton": null, - "numero_insee": "62166" - } - }, - { - "pk": 6275, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOURSIN", - "center": "POINT (563775.2225162640679628 2641973.7274421816691756)", - "surface": 7640000, - "canton": null, - "numero_insee": "62167" - } - }, - { - "pk": 36487, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOURTHES", - "center": "POINT (571426.6794206436024979 2624328.6903313910588622)", - "surface": 22440000, - "canton": null, - "numero_insee": "62168" - } - }, - { - "pk": 37241, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOUVELINGHEM", - "center": "POINT (578516.7918207270558923 2637894.9771449612453580)", - "surface": 6430000, - "canton": null, - "numero_insee": "62169" - } - }, - { - "pk": 27200, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOUVIGNY-BOYEFFLES", - "center": "POINT (623931.9148420306155458 2603157.8756476691924036)", - "surface": 9140000, - "canton": null, - "numero_insee": "62170" - } - }, - { - "pk": 20562, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOYAVAL", - "center": "POINT (598172.0904225937556475 2608644.4803416398353875)", - "surface": 5510000, - "canton": null, - "numero_insee": "62171" - } - }, - { - "pk": 12414, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOYELLES", - "center": "POINT (634549.0778409613994882 2578033.4622533954679966)", - "surface": 4120000, - "canton": null, - "numero_insee": "62172" - } - }, - { - "pk": 21177, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BREBIERES", - "center": "POINT (648623.5175356791587546 2593860.7189827035181224)", - "surface": 10860000, - "canton": null, - "numero_insee": "62173" - } - }, - { - "pk": 12211, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BREMES", - "center": "POINT (573108.9571544443024322 2650456.0253503499552608)", - "surface": 7350000, - "canton": null, - "numero_insee": "62174" - } - }, - { - "pk": 13039, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BREVILLERS", - "center": "POINT (577478.1150662263389677 2594663.5846679401583970)", - "surface": 3060000, - "canton": null, - "numero_insee": "62175" - } - }, - { - "pk": 27089, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BREXENT-ENOCQ", - "center": "POINT (556215.9614201560616493 2612695.4605650575831532)", - "surface": 7310000, - "canton": null, - "numero_insee": "62176" - } - }, - { - "pk": 5267, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BRIMEUX", - "center": "POINT (564288.2409909244161099 2604558.5878097410313785)", - "surface": 10700000, - "canton": null, - "numero_insee": "62177" - } - }, - { - "pk": 16306, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BRUAY-LA-BUISSIERE", - "center": "POINT (615264.8382713486207649 2610588.9918373730033636)", - "surface": 16510000, - "canton": null, - "numero_insee": "62178" - } - }, - { - "pk": 13578, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BRUNEMBERT", - "center": "POINT (568229.8650923484237865 2635707.7981067663058639)", - "surface": 6200000, - "canton": null, - "numero_insee": "62179" - } - }, - { - "pk": 6534, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BRIAS", - "center": "POINT (603432.4472829599399120 2601784.9460755595937371)", - "surface": 7820000, - "canton": null, - "numero_insee": "62180" - } - }, - { - "pk": 37276, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BUCQUOY", - "center": "POINT (625792.7834556676680222 2572256.5634715952910483)", - "surface": 20880000, - "canton": null, - "numero_insee": "62181" - } - }, - { - "pk": 28978, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BUIRE-AU-BOIS", - "center": "POINT (586861.3439611634239554 2585337.0597155755385756)", - "surface": 11630000, - "canton": null, - "numero_insee": "62182" - } - }, - { - "pk": 6765, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BUIRE-LE-SEC", - "center": "POINT (563327.0997906035045162 2599848.0259389891289175)", - "surface": 13470000, - "canton": null, - "numero_insee": "62183" - } - }, - { - "pk": 28746, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BUISSY", - "center": "POINT (649552.9949920874787495 2578560.1327512958087027)", - "surface": 6900000, - "canton": null, - "numero_insee": "62184" - } - }, - { - "pk": 34569, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BULLECOURT", - "center": "POINT (642357.0860917384270579 2577598.9635856617242098)", - "surface": 6360000, - "canton": null, - "numero_insee": "62185" - } - }, - { - "pk": 35962, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BULLY-LES-MINES", - "center": "POINT (627213.2445527387317270 2605586.7704016426578164)", - "surface": 7800000, - "canton": null, - "numero_insee": "62186" - } - }, - { - "pk": 13784, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BUNEVILLE", - "center": "POINT (600812.6443779753753915 2592057.7016296507790685)", - "surface": 3790000, - "canton": null, - "numero_insee": "62187" - } - }, - { - "pk": 19017, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BURBURE", - "center": "POINT (608922.4428159223170951 2615238.1791083742864430)", - "surface": 5530000, - "canton": null, - "numero_insee": "62188" - } - }, - { - "pk": 31573, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BUS", - "center": "POINT (644879.7037833458743989 2563212.1112148212268949)", - "surface": 3250000, - "canton": null, - "numero_insee": "62189" - } - }, - { - "pk": 36896, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BUSNES", - "center": "POINT (612571.1628676124382764 2621572.1349719981662929)", - "surface": 9610000, - "canton": null, - "numero_insee": "62190" - } - }, - { - "pk": 29140, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAFFIERS", - "center": "POINT (562807.0691249108640477 2650069.6865446278825402)", - "surface": 4830000, - "canton": null, - "numero_insee": "62191" - } - }, - { - "pk": 30214, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAGNICOURT", - "center": "POINT (646944.9833803258370608 2579338.5853694765828550)", - "surface": 9470000, - "canton": null, - "numero_insee": "62192" - } - }, - { - "pk": 15556, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CALAIS", - "center": "POINT (567510.3592086470453069 2661914.8348957691341639)", - "surface": 33450000, - "canton": null, - "numero_insee": "62193" - } - }, - { - "pk": 24027, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CALONNE-RICOUART", - "center": "POINT (610562.6784298288403079 2610549.4760664999485016)", - "surface": 4630000, - "canton": null, - "numero_insee": "62194" - } - }, - { - "pk": 25914, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CALONNE-SUR-LA-LYS", - "center": "POINT (619251.4660555964801461 2624329.6951769362203777)", - "surface": 11010000, - "canton": null, - "numero_insee": "62195" - } - }, - { - "pk": 15392, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA CALOTTERIE", - "center": "POINT (555942.5776657871901989 2609491.4812225564382970)", - "surface": 9580000, - "canton": null, - "numero_insee": "62196" - } - }, - { - "pk": 36881, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMBLAIN-CHATELAIN", - "center": "POINT (608073.2945153102045879 2609127.8201883011497557)", - "surface": 9970000, - "canton": null, - "numero_insee": "62197" - } - }, - { - "pk": 9154, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMBLIGNEUL", - "center": "POINT (619471.0435511352261528 2598217.7169770440086722)", - "surface": 4770000, - "canton": null, - "numero_insee": "62198" - } - }, - { - "pk": 29744, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMBLAIN-L'ABBE", - "center": "POINT (621277.7791792354546487 2597532.5328971664421260)", - "surface": 5660000, - "canton": null, - "numero_insee": "62199" - } - }, - { - "pk": 8695, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMBRIN", - "center": "POINT (628351.4899536151206121 2613000.2822186443954706)", - "surface": 1790000, - "canton": null, - "numero_insee": "62200" - } - }, - { - "pk": 26755, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMIERS", - "center": "POINT (548559.0088010737672448 2619034.8605755972675979)", - "surface": 16160000, - "canton": null, - "numero_insee": "62201" - } - }, - { - "pk": 32067, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMPAGNE-LES-BOULONNAIS", - "center": "POINT (575823.6268065292388201 2624965.8092903089709580)", - "surface": 13290000, - "canton": null, - "numero_insee": "62202" - } - }, - { - "pk": 14272, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMPAGNE-LES-GUINES", - "center": "POINT (569013.0664474370423704 2649721.3988435082137585)", - "surface": 5770000, - "canton": null, - "numero_insee": "62203" - } - }, - { - "pk": 4781, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMPAGNE-LES-HESDIN", - "center": "POINT (566421.0208110429812223 2600774.3886475786566734)", - "surface": 15730000, - "canton": null, - "numero_insee": "62204" - } - }, - { - "pk": 27992, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMPAGNE-LES-WARDRECQUES", - "center": "POINT (599747.8881160221062601 2635471.6574769164435565)", - "surface": 4720000, - "canton": null, - "numero_insee": "62205" - } - }, - { - "pk": 8952, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMPIGNEULLES-LES-GRANDES", - "center": "POINT (555086.4701969822635874 2604181.5017354050651193)", - "surface": 5400000, - "canton": null, - "numero_insee": "62206" - } - }, - { - "pk": 34216, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAMPIGNEULLES-LES-PETITES", - "center": "POINT (557279.1323295162292197 2605200.3606312260963023)", - "surface": 6230000, - "canton": null, - "numero_insee": "62207" - } - }, - { - "pk": 4192, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CANETTEMONT", - "center": "POINT (601855.1124153414275497 2587063.7150561646558344)", - "surface": 1810000, - "canton": null, - "numero_insee": "62208" - } - }, - { - "pk": 33263, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CANLERS", - "center": "POINT (586353.2295464200433344 2610146.2087319353595376)", - "surface": 3620000, - "canton": null, - "numero_insee": "62209" - } - }, - { - "pk": 7936, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CANTELEUX", - "center": "POINT (598307.1207979414612055 2580630.4023361308500171)", - "surface": 3500000, - "canton": null, - "numero_insee": "62210" - } - }, - { - "pk": 26983, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAPELLE-FERMONT", - "center": "POINT (620002.4084472563117743 2594520.1800872543826699)", - "surface": 3020000, - "canton": null, - "numero_insee": "62211" - } - }, - { - "pk": 10755, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAPELLE-LES-HESDIN", - "center": "POINT (575277.0744742368115112 2594645.1538809845224023)", - "surface": 5640000, - "canton": null, - "numero_insee": "62212" - } - }, - { - "pk": 37352, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CARENCY", - "center": "POINT (625874.8911548465257511 2598171.5306852837093174)", - "surface": 8580000, - "canton": null, - "numero_insee": "62213" - } - }, - { - "pk": 36706, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CARLY", - "center": "POINT (555678.6698934589512646 2629099.5231165452860296)", - "surface": 6320000, - "canton": null, - "numero_insee": "62214" - } - }, - { - "pk": 19758, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CARVIN", - "center": "POINT (643479.4783835773123428 2610626.3778218152001500)", - "surface": 21180000, - "canton": null, - "numero_insee": "62215" - } - }, - { - "pk": 37379, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA CAUCHIE", - "center": "POINT (617533.2399820470018312 2578790.7835120148956776)", - "surface": 2230000, - "canton": null, - "numero_insee": "62216" - } - }, - { - "pk": 9274, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAUCHY-A-LA-TOUR", - "center": "POINT (608047.2433484528446570 2612229.2446442423388362)", - "surface": 3140000, - "canton": null, - "numero_insee": "62217" - } - }, - { - "pk": 35987, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAUCOURT", - "center": "POINT (616755.4768873034045100 2599895.8020015689544380)", - "surface": 5570000, - "canton": null, - "numero_insee": "62218" - } - }, - { - "pk": 37654, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAUMONT", - "center": "POINT (578128.6733621936291456 2588665.7592158550396562)", - "surface": 9590000, - "canton": null, - "numero_insee": "62219" - } - }, - { - "pk": 15145, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CAVRON-SAINT-MARTIN", - "center": "POINT (576308.8988438380183652 2602858.2197971134446561)", - "surface": 11940000, - "canton": null, - "numero_insee": "62220" - } - }, - { - "pk": 6479, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CHELERS", - "center": "POINT (610764.4349899945082143 2598444.6951722628436983)", - "surface": 8320000, - "canton": null, - "numero_insee": "62221" - } - }, - { - "pk": 24499, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CHERIENNES", - "center": "POINT (578412.0579937816364691 2590669.2271842109039426)", - "surface": 4780000, - "canton": null, - "numero_insee": "62222" - } - }, - { - "pk": 31186, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CHERISY", - "center": "POINT (641118.5627746081445366 2582091.0271252640523016)", - "surface": 6220000, - "canton": null, - "numero_insee": "62223" - } - }, - { - "pk": 4001, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CHOCQUES", - "center": "POINT (616018.1088850764790550 2616198.2800859236158431)", - "surface": 7900000, - "canton": null, - "numero_insee": "62224" - } - }, - { - "pk": 27497, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CLAIRMARAIS", - "center": "POINT (600396.1336403518216684 2641680.2413267311640084)", - "surface": 18200000, - "canton": null, - "numero_insee": "62225" - } - }, - { - "pk": 35378, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CLARQUES", - "center": "POINT (594906.1628453133162111 2628227.3412442253902555)", - "surface": 7020000, - "canton": null, - "numero_insee": "62226" - } - }, - { - "pk": 20966, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CLENLEU", - "center": "POINT (567803.6996030472218990 2614893.4613403351977468)", - "surface": 7330000, - "canton": null, - "numero_insee": "62227" - } - }, - { - "pk": 7831, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CLERQUES", - "center": "POINT (575060.0234785152133554 2644469.3618940971791744)", - "surface": 6410000, - "canton": null, - "numero_insee": "62228" - } - }, - { - "pk": 9930, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CLETY", - "center": "POINT (588998.5039974718820304 2628778.1064088423736393)", - "surface": 6200000, - "canton": null, - "numero_insee": "62229" - } - }, - { - "pk": 24821, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COLEMBERT", - "center": "POINT (563895.3460287852212787 2639573.5199960870668292)", - "surface": 10010000, - "canton": null, - "numero_insee": "62230" - } - }, - { - "pk": 36327, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COLLINE-BEAUMONT", - "center": "POINT (552667.2150022756541148 2594356.0028776181861758)", - "surface": 4650000, - "canton": null, - "numero_insee": "62231" - } - }, - { - "pk": 27197, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA COMTE", - "center": "POINT (611622.8244559301529080 2603454.5983365550637245)", - "surface": 6770000, - "canton": null, - "numero_insee": "62232" - } - }, - { - "pk": 25250, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CONCHIL-LE-TEMPLE", - "center": "POINT (552844.7424427042715251 2597058.9501745821908116)", - "surface": 16490000, - "canton": null, - "numero_insee": "62233" - } - }, - { - "pk": 10377, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CONCHY-SUR-CANCHE", - "center": "POINT (589635.0069365990348160 2588662.1259692818857729)", - "surface": 9880000, - "canton": null, - "numero_insee": "62234" - } - }, - { - "pk": 17890, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CONDETTE", - "center": "POINT (550580.5789156645769253 2628556.6749252830632031)", - "surface": 16560000, - "canton": null, - "numero_insee": "62235" - } - }, - { - "pk": 7279, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CONTES", - "center": "POINT (573210.8033856614492834 2602432.0669899191707373)", - "surface": 7130000, - "canton": null, - "numero_insee": "62236" - } - }, - { - "pk": 13480, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CONTEVILLE-LES-BOULOGNE", - "center": "POINT (556996.5174688841216266 2639015.5910716396756470)", - "surface": 2070000, - "canton": null, - "numero_insee": "62237" - } - }, - { - "pk": 32198, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CONTEVILLE-EN-TERNOIS", - "center": "POINT (599410.4280600318452343 2604152.4715398973785341)", - "surface": 2280000, - "canton": null, - "numero_insee": "62238" - } - }, - { - "pk": 35058, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COQUELLES", - "center": "POINT (563126.9272238987032324 2659677.0968988742679358)", - "surface": 8880000, - "canton": null, - "numero_insee": "62239" - } - }, - { - "pk": 31263, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CORBEHEM", - "center": "POINT (650727.8867395382840186 2593478.2494058040902019)", - "surface": 2630000, - "canton": null, - "numero_insee": "62240" - } - }, - { - "pk": 6837, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CORMONT", - "center": "POINT (557764.8502942436607555 2618911.6648644106462598)", - "surface": 9760000, - "canton": null, - "numero_insee": "62241" - } - }, - { - "pk": 32685, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COUIN", - "center": "POINT (614097.9694249409949407 2570857.4849246460944414)", - "surface": 5830000, - "canton": null, - "numero_insee": "62242" - } - }, - { - "pk": 31592, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COULLEMONT", - "center": "POINT (610317.1342305870493874 2580230.9689925881102681)", - "surface": 4100000, - "canton": null, - "numero_insee": "62243" - } - }, - { - "pk": 30007, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COULOGNE", - "center": "POINT (568241.6206071996130049 2658219.1436275402083993)", - "surface": 9220000, - "canton": null, - "numero_insee": "62244" - } - }, - { - "pk": 6955, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COULOMBY", - "center": "POINT (576139.1978065593866631 2635073.6425147447735071)", - "surface": 10360000, - "canton": null, - "numero_insee": "62245" - } - }, - { - "pk": 9458, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COUPELLE-NEUVE", - "center": "POINT (583741.1346124144038185 2611425.0062789153307676)", - "surface": 4560000, - "canton": null, - "numero_insee": "62246" - } - }, - { - "pk": 32946, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COUPELLE-VIEILLE", - "center": "POINT (581607.4816985805518925 2615309.1870879293419421)", - "surface": 14870000, - "canton": null, - "numero_insee": "62247" - } - }, - { - "pk": 5609, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COURCELLES-LE-COMTE", - "center": "POINT (631484.6319526190636680 2573605.1993360137566924)", - "surface": 7960000, - "canton": null, - "numero_insee": "62248" - } - }, - { - "pk": 11325, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COURCELLES-LES-LENS", - "center": "POINT (648251.6624768492765725 2602362.1803400614298880)", - "surface": 5610000, - "canton": null, - "numero_insee": "62249" - } - }, - { - "pk": 35259, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COURRIERES", - "center": "POINT (643313.1173223872901872 2606622.8471149080432951)", - "surface": 8780000, - "canton": null, - "numero_insee": "62250" - } - }, - { - "pk": 25025, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COURSET", - "center": "POINT (565594.7882391733583063 2627781.7051664791069925)", - "surface": 10240000, - "canton": null, - "numero_insee": "62251" - } - }, - { - "pk": 17836, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA COUTURE", - "center": "POINT (625687.1643682827707380 2620481.8000945192761719)", - "surface": 13430000, - "canton": null, - "numero_insee": "62252" - } - }, - { - "pk": 14325, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COUTURELLE", - "center": "POINT (611528.6443387691397220 2578940.4257900794036686)", - "surface": 2150000, - "canton": null, - "numero_insee": "62253" - } - }, - { - "pk": 9733, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "COYECQUES", - "center": "POINT (589148.0365671670297161 2622876.3070698538795114)", - "surface": 13920000, - "canton": null, - "numero_insee": "62254" - } - }, - { - "pk": 4213, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CREMAREST", - "center": "POINT (561139.2932160806376487 2634147.7293384931981564)", - "surface": 11820000, - "canton": null, - "numero_insee": "62255" - } - }, - { - "pk": 11930, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CREPY", - "center": "POINT (590468.5383984248619527 2608579.8598197698593140)", - "surface": 6970000, - "canton": null, - "numero_insee": "62256" - } - }, - { - "pk": 21148, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CREQUY", - "center": "POINT (578733.8113396287662908 2611983.3744074292480946)", - "surface": 20540000, - "canton": null, - "numero_insee": "62257" - } - }, - { - "pk": 9334, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CROISETTE", - "center": "POINT (594881.3064503194764256 2595409.7793544055894017)", - "surface": 7580000, - "canton": null, - "numero_insee": "62258" - } - }, - { - "pk": 29971, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CROISILLES", - "center": "POINT (638951.2171336201718077 2578070.5427617193199694)", - "surface": 11400000, - "canton": null, - "numero_insee": "62259" - } - }, - { - "pk": 22359, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CROIX-EN-TERNOIS", - "center": "POINT (595454.7311089539434761 2598616.3220086884684861)", - "surface": 6650000, - "canton": null, - "numero_insee": "62260" - } - }, - { - "pk": 32128, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CUCQ", - "center": "POINT (548531.6463668477954343 2610330.0502567663788795)", - "surface": 10120000, - "canton": null, - "numero_insee": "62261" - } - }, - { - "pk": 10438, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "CUINCHY", - "center": "POINT (629044.2313368398463354 2613906.5880460767075419)", - "surface": 4210000, - "canton": null, - "numero_insee": "62262" - } - }, - { - "pk": 10822, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DAINVILLE", - "center": "POINT (626870.4505556032527238 2586873.7473015226423740)", - "surface": 11270000, - "canton": null, - "numero_insee": "62263" - } - }, - { - "pk": 9270, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DANNES", - "center": "POINT (548132.0947856861166656 2622232.9652137146331370)", - "surface": 10640000, - "canton": null, - "numero_insee": "62264" - } - }, - { - "pk": 25200, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DELETTES", - "center": "POINT (591528.9798732902854681 2625297.5168399787507951)", - "surface": 14750000, - "canton": null, - "numero_insee": "62265" - } - }, - { - "pk": 13645, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DENIER", - "center": "POINT (607847.9017730656778440 2588314.6959875188767910)", - "surface": 3120000, - "canton": null, - "numero_insee": "62266" - } - }, - { - "pk": 6954, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DENNEBROEUCQ", - "center": "POINT (587162.2326121226651594 2621058.7223500278778374)", - "surface": 3690000, - "canton": null, - "numero_insee": "62267" - } - }, - { - "pk": 28042, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DESVRES", - "center": "POINT (563964.7906608616467565 2631269.8722603148780763)", - "surface": 9530000, - "canton": null, - "numero_insee": "62268" - } - }, - { - "pk": 30496, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DIEVAL", - "center": "POINT (607911.0180701903300360 2604624.0575876273214817)", - "surface": 12120000, - "canton": null, - "numero_insee": "62269" - } - }, - { - "pk": 33640, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DIVION", - "center": "POINT (611882.6114080402767286 2608259.3449314609169960)", - "surface": 11120000, - "canton": null, - "numero_insee": "62270" - } - }, - { - "pk": 6767, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DOHEM", - "center": "POINT (588123.2646641267929226 2625769.2199707464314997)", - "surface": 9230000, - "canton": null, - "numero_insee": "62271" - } - }, - { - "pk": 34349, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DOUCHY-LES-AYETTE", - "center": "POINT (626665.4421923336340114 2575565.7562372512184083)", - "surface": 5510000, - "canton": null, - "numero_insee": "62272" - } - }, - { - "pk": 24440, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DOUDEAUVILLE", - "center": "POINT (564112.5271418753545731 2625568.1708140172995627)", - "surface": 13860000, - "canton": null, - "numero_insee": "62273" - } - }, - { - "pk": 28879, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DOURGES", - "center": "POINT (646227.9552268729312345 2605046.5641562361270189)", - "surface": 10510000, - "canton": null, - "numero_insee": "62274" - } - }, - { - "pk": 29506, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DOURIEZ", - "center": "POINT (567580.1279854275053367 2593780.2987063024193048)", - "surface": 8860000, - "canton": null, - "numero_insee": "62275" - } - }, - { - "pk": 17853, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DOUVRIN", - "center": "POINT (634753.5748562416993082 2613154.2351106284186244)", - "surface": 9660000, - "canton": null, - "numero_insee": "62276" - } - }, - { - "pk": 11326, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DROCOURT", - "center": "POINT (642372.5213310404215008 2599511.1088466914370656)", - "surface": 3430000, - "canton": null, - "numero_insee": "62277" - } - }, - { - "pk": 7407, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DROUVIN-LE-MARAIS", - "center": "POINT (621068.3446470596827567 2610537.7351846247911453)", - "surface": 2110000, - "canton": null, - "numero_insee": "62278" - } - }, - { - "pk": 27403, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DUISANS", - "center": "POINT (625647.1465206012362614 2589564.9351702942512929)", - "surface": 10740000, - "canton": null, - "numero_insee": "62279" - } - }, - { - "pk": 15509, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "DURY", - "center": "POINT (647608.2031879486748949 2583746.6172494804486632)", - "surface": 5440000, - "canton": null, - "numero_insee": "62280" - } - }, - { - "pk": 12853, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECHINGHEN", - "center": "POINT (551733.4796198172261938 2634269.2275655618868768)", - "surface": 5940000, - "canton": null, - "numero_insee": "62281" - } - }, - { - "pk": 36326, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECLIMEUX", - "center": "POINT (588839.0500525719253346 2600061.6477333121001720)", - "surface": 6130000, - "canton": null, - "numero_insee": "62282" - } - }, - { - "pk": 7896, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECOIVRES", - "center": "POINT (596309.6678131464868784 2592119.9674922334961593)", - "surface": 2230000, - "canton": null, - "numero_insee": "62283" - } - }, - { - "pk": 27272, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECOURT-SAINT-QUENTIN", - "center": "POINT (651798.4097871793201193 2585182.7302159164100885)", - "surface": 9490000, - "canton": null, - "numero_insee": "62284" - } - }, - { - "pk": 8166, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECOUST-SAINT-MEIN", - "center": "POINT (640373.8167074033990502 2575481.0775776291266084)", - "surface": 8500000, - "canton": null, - "numero_insee": "62285" - } - }, - { - "pk": 13241, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECQUEDECQUES", - "center": "POINT (607395.7098724838579074 2618326.9824675382114947)", - "surface": 2600000, - "canton": null, - "numero_insee": "62286" - } - }, - { - "pk": 26327, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECQUES", - "center": "POINT (596582.5769510571844876 2631142.8970400183461607)", - "surface": 12840000, - "canton": null, - "numero_insee": "62288" - } - }, - { - "pk": 28293, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ECUIRES", - "center": "POINT (559483.4997339783003554 2604818.5726051731035113)", - "surface": 9110000, - "canton": null, - "numero_insee": "62289" - } - }, - { - "pk": 10821, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ELEU-DIT-LEAUWETTE", - "center": "POINT (633741.5320292393444106 2602640.1199099728837609)", - "surface": 1200000, - "canton": null, - "numero_insee": "62291" - } - }, - { - "pk": 37024, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ELNES", - "center": "POINT (584265.3939388883300126 2632440.3334600110538304)", - "surface": 6410000, - "canton": null, - "numero_insee": "62292" - } - }, - { - "pk": 33019, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "EMBRY", - "center": "POINT (572936.1754373037256300 2611334.5125159043818712)", - "surface": 11780000, - "canton": null, - "numero_insee": "62293" - } - }, - { - "pk": 32029, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ENGUINEGATTE", - "center": "POINT (595144.0193793510552496 2623727.0084757809527218)", - "surface": 9070000, - "canton": null, - "numero_insee": "62294" - } - }, - { - "pk": 27592, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ENQUIN-LES-MINES", - "center": "POINT (596965.8130151727236807 2621240.9923263513483107)", - "surface": 11200000, - "canton": null, - "numero_insee": "62295" - } - }, - { - "pk": 16741, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ENQUIN-SUR-BAILLONS", - "center": "POINT (565261.5543872774578631 2619774.7649788716807961)", - "surface": 4990000, - "canton": null, - "numero_insee": "62296" - } - }, - { - "pk": 16146, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "EPERLECQUES", - "center": "POINT (587543.6153041854267940 2647175.2454876769334078)", - "surface": 25810000, - "canton": null, - "numero_insee": "62297" - } - }, - { - "pk": 10365, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "EPINOY", - "center": "POINT (658728.7491583112860098 2582039.4428499382920563)", - "surface": 8130000, - "canton": null, - "numero_insee": "62298" - } - }, - { - "pk": 8131, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "EPS", - "center": "POINT (597088.3721723289927468 2606634.3216368556022644)", - "surface": 6950000, - "canton": null, - "numero_insee": "62299" - } - }, - { - "pk": 11752, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "EQUIHEN-PLAGE", - "center": "POINT (546050.1774730598554015 2631920.5917724682949483)", - "surface": 3960000, - "canton": null, - "numero_insee": "62300" - } - }, - { - "pk": 33197, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ERGNY", - "center": "POINT (574251.3867849921807647 2621550.8793701538816094)", - "surface": 9280000, - "canton": null, - "numero_insee": "62302" - } - }, - { - "pk": 36789, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ERIN", - "center": "POINT (591608.4790934503544122 2603886.9107918739318848)", - "surface": 6400000, - "canton": null, - "numero_insee": "62303" - } - }, - { - "pk": 9736, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ERNY-SAINT-JULIEN", - "center": "POINT (593866.0936867849668488 2621014.8836254761554301)", - "surface": 5390000, - "canton": null, - "numero_insee": "62304" - } - }, - { - "pk": 31816, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ERVILLERS", - "center": "POINT (634980.4482659186469391 2574335.0278445491567254)", - "surface": 7090000, - "canton": null, - "numero_insee": "62306" - } - }, - { - "pk": 30008, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESCALLES", - "center": "POINT (556540.0439021723577753 2657721.1021240013651550)", - "surface": 7440000, - "canton": null, - "numero_insee": "62307" - } - }, - { - "pk": 33941, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESCOEUILLES", - "center": "POINT (571623.8222874037455767 2636636.6570895682089031)", - "surface": 5910000, - "canton": null, - "numero_insee": "62308" - } - }, - { - "pk": 33944, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESQUERDES", - "center": "POINT (588753.9614694233750924 2634078.7741495314985514)", - "surface": 9370000, - "canton": null, - "numero_insee": "62309" - } - }, - { - "pk": 28443, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESSARS", - "center": "POINT (623014.5599330824334174 2617057.5349069209769368)", - "surface": 3630000, - "canton": null, - "numero_insee": "62310" - } - }, - { - "pk": 8644, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESTEVELLES", - "center": "POINT (640587.4196897117653862 2609501.4201777190901339)", - "surface": 2530000, - "canton": null, - "numero_insee": "62311" - } - }, - { - "pk": 5240, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESTREE", - "center": "POINT (562031.1680637197569013 2611243.2785413432866335)", - "surface": 4430000, - "canton": null, - "numero_insee": "62312" - } - }, - { - "pk": 12546, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESTREE-BLANCHE", - "center": "POINT (598860.7924453191226348 2621957.2584600737318397)", - "surface": 5400000, - "canton": null, - "numero_insee": "62313" - } - }, - { - "pk": 7995, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESTREE-CAUCHY", - "center": "POINT (619552.5815643270034343 2600419.5896512446925044)", - "surface": 4010000, - "canton": null, - "numero_insee": "62314" - } - }, - { - "pk": 14312, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESTREELLES", - "center": "POINT (560324.5319554432062432 2611929.3797238413244486)", - "surface": 3140000, - "canton": null, - "numero_insee": "62315" - } - }, - { - "pk": 14175, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ESTREE-WAMIN", - "center": "POINT (604066.2467403853079304 2585881.6187546197324991)", - "surface": 5220000, - "canton": null, - "numero_insee": "62316" - } - }, - { - "pk": 33120, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ETAING", - "center": "POINT (647185.2335083739599213 2586444.5399159556254745)", - "surface": 5210000, - "canton": null, - "numero_insee": "62317" - } - }, - { - "pk": 36939, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ETAPLES", - "center": "POINT (551298.6730058875400573 2614455.3267259225249290)", - "surface": 12290000, - "canton": null, - "numero_insee": "62318" - } - }, - { - "pk": 31392, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ETERPIGNY", - "center": "POINT (645999.8412954644300044 2584633.5532783470116556)", - "surface": 3540000, - "canton": null, - "numero_insee": "62319" - } - }, - { - "pk": 14141, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ETRUN", - "center": "POINT (624631.5184348922921345 2591357.3742908244021237)", - "surface": 2280000, - "canton": null, - "numero_insee": "62320" - } - }, - { - "pk": 22624, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "EVIN-MALMAISON", - "center": "POINT (649332.7685593214118853 2604672.5313694868236780)", - "surface": 4550000, - "canton": null, - "numero_insee": "62321" - } - }, - { - "pk": 7895, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FAMECHON", - "center": "POINT (608585.1768934493884444 2572011.8389020091854036)", - "surface": 4610000, - "canton": null, - "numero_insee": "62322" - } - }, - { - "pk": 31817, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FAMPOUX", - "center": "POINT (638154.7911573525052518 2589470.1318785198964179)", - "surface": 8560000, - "canton": null, - "numero_insee": "62323" - } - }, - { - "pk": 22831, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FARBUS", - "center": "POINT (634896.8121491099009290 2596146.3413788205944002)", - "surface": 3580000, - "canton": null, - "numero_insee": "62324" - } - }, - { - "pk": 6795, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FAUQUEMBERGUES", - "center": "POINT (583151.2069184101419523 2622125.6798039018176496)", - "surface": 7080000, - "canton": null, - "numero_insee": "62325" - } - }, - { - "pk": 37330, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FAVREUIL", - "center": "POINT (637417.8625919278711081 2570053.1411043303087354)", - "surface": 4960000, - "canton": null, - "numero_insee": "62326" - } - }, - { - "pk": 24184, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FEBVIN-PALFART", - "center": "POINT (597615.6133722971426323 2615343.3546651545912027)", - "surface": 14510000, - "canton": null, - "numero_insee": "62327" - } - }, - { - "pk": 12150, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FERFAY", - "center": "POINT (606731.5231850462732837 2614019.1441807635128498)", - "surface": 3940000, - "canton": null, - "numero_insee": "62328" - } - }, - { - "pk": 29456, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FERQUES", - "center": "POINT (559819.1682062913896516 2648443.9083179784938693)", - "surface": 9120000, - "canton": null, - "numero_insee": "62329" - } - }, - { - "pk": 31139, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FESTUBERT", - "center": "POINT (628320.3347402352374047 2616701.9691981412470341)", - "surface": 7750000, - "canton": null, - "numero_insee": "62330" - } - }, - { - "pk": 34793, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FEUCHY", - "center": "POINT (636568.3544840852264315 2587755.8354815142229199)", - "surface": 5480000, - "canton": null, - "numero_insee": "62331" - } - }, - { - "pk": 5223, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FICHEUX", - "center": "POINT (629219.5528288828209043 2581190.3701600870117545)", - "surface": 5840000, - "canton": null, - "numero_insee": "62332" - } - }, - { - "pk": 6366, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FIEFS", - "center": "POINT (598847.2252590794814751 2611651.7373908427543938)", - "surface": 11090000, - "canton": null, - "numero_insee": "62333" - } - }, - { - "pk": 17516, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FILLIEVRES", - "center": "POINT (587512.1977310799993575 2591245.7513118046335876)", - "surface": 20600000, - "canton": null, - "numero_insee": "62335" - } - }, - { - "pk": 31881, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FLECHIN", - "center": "POINT (595990.5427981953835115 2618231.2420405019074678)", - "surface": 10930000, - "canton": null, - "numero_insee": "62336" - } - }, - { - "pk": 8306, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FLERS", - "center": "POINT (594111.9799482038943097 2591701.3125057229772210)", - "surface": 5610000, - "canton": null, - "numero_insee": "62337" - } - }, - { - "pk": 24399, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FLEURBAIX", - "center": "POINT (635035.7952216352568939 2627163.9267764901742339)", - "surface": 12980000, - "canton": null, - "numero_insee": "62338" - } - }, - { - "pk": 32863, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FLEURY", - "center": "POINT (594016.3092428161762655 2603106.6769375386647880)", - "surface": 2780000, - "canton": null, - "numero_insee": "62339" - } - }, - { - "pk": 12280, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FLORINGHEM", - "center": "POINT (606554.1181410747813061 2611316.2274501030333340)", - "surface": 4660000, - "canton": null, - "numero_insee": "62340" - } - }, - { - "pk": 7044, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FONCQUEVILLERS", - "center": "POINT (620490.1809977594530210 2572211.9573751259595156)", - "surface": 9300000, - "canton": null, - "numero_insee": "62341" - } - }, - { - "pk": 34346, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FONTAINE-LES-BOULANS", - "center": "POINT (596246.8718357490142807 2611529.8647336433641613)", - "surface": 5640000, - "canton": null, - "numero_insee": "62342" - } - }, - { - "pk": 33898, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FONTAINE-LES-CROISILLES", - "center": "POINT (640535.1340115647763014 2580085.0012529641389847)", - "surface": 6210000, - "canton": null, - "numero_insee": "62343" - } - }, - { - "pk": 24971, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FONTAINE-LES-HERMANS", - "center": "POINT (600021.7451928777154535 2614763.2313298396766186)", - "surface": 3880000, - "canton": null, - "numero_insee": "62344" - } - }, - { - "pk": 7497, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FONTAINE-L'ETALON", - "center": "POINT (580722.3727057387586683 2589587.9775186246261001)", - "surface": 4010000, - "canton": null, - "numero_insee": "62345" - } - }, - { - "pk": 22956, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FORTEL-EN-ARTOIS", - "center": "POINT (592369.8603283732663840 2584682.8605873300693929)", - "surface": 5980000, - "canton": null, - "numero_insee": "62346" - } - }, - { - "pk": 8507, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FOSSEUX", - "center": "POINT (616286.3989309919998050 2584283.3491693516261876)", - "surface": 5500000, - "canton": null, - "numero_insee": "62347" - } - }, - { - "pk": 19841, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FOUFFLIN-RICAMETZ", - "center": "POINT (603590.4538559337379411 2594882.5450130882672966)", - "surface": 2990000, - "canton": null, - "numero_insee": "62348" - } - }, - { - "pk": 14174, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FOUQUEREUIL", - "center": "POINT (618637.7985754887340590 2614019.1465616836212575)", - "surface": 2010000, - "canton": null, - "numero_insee": "62349" - } - }, - { - "pk": 5375, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FOUQUIERES-LES-BETHUNE", - "center": "POINT (619546.6226296297973022 2613026.2609055656939745)", - "surface": 2390000, - "canton": null, - "numero_insee": "62350" - } - }, - { - "pk": 37765, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FOUQUIERES-LES-LENS", - "center": "POINT (640534.5839466956676915 2603897.9863931438885629)", - "surface": 4130000, - "canton": null, - "numero_insee": "62351" - } - }, - { - "pk": 30212, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRAMECOURT", - "center": "POINT (597712.0116687983972952 2591931.6249974919483066)", - "surface": 2270000, - "canton": null, - "numero_insee": "62352" - } - }, - { - "pk": 9530, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FREMICOURT", - "center": "POINT (640531.1928224489092827 2568678.5810609906911850)", - "surface": 5740000, - "canton": null, - "numero_insee": "62353" - } - }, - { - "pk": 5011, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRENCQ", - "center": "POINT (553964.7996347765438259 2618679.8047334034927189)", - "surface": 20130000, - "canton": null, - "numero_insee": "62354" - } - }, - { - "pk": 11613, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRESNES-LES-MONTAUBAN", - "center": "POINT (642222.1753685715375468 2593606.6436326042748988)", - "surface": 4970000, - "canton": null, - "numero_insee": "62355" - } - }, - { - "pk": 32901, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRESNICOURT-LE-DOLMEN", - "center": "POINT (619027.9507440567249432 2603316.7366211386397481)", - "surface": 8020000, - "canton": null, - "numero_insee": "62356" - } - }, - { - "pk": 37567, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRESNOY", - "center": "POINT (585757.7226339818444103 2597634.5226793326437473)", - "surface": 2490000, - "canton": null, - "numero_insee": "62357" - } - }, - { - "pk": 29528, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRESNOY-EN-GOHELLE", - "center": "POINT (639790.6917030747281387 2597188.1086239581927657)", - "surface": 2940000, - "canton": null, - "numero_insee": "62358" - } - }, - { - "pk": 21907, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRESSIN", - "center": "POINT (579784.5515226745046675 2605988.9872486847452819)", - "surface": 17310000, - "canton": null, - "numero_insee": "62359" - } - }, - { - "pk": 4172, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRETHUN", - "center": "POINT (563343.7431003976380453 2657677.9297465649433434)", - "surface": 8010000, - "canton": null, - "numero_insee": "62360" - } - }, - { - "pk": 18561, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FREVENT", - "center": "POINT (596860.2723849507747218 2586121.3004860989749432)", - "surface": 15300000, - "canton": null, - "numero_insee": "62361" - } - }, - { - "pk": 4214, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FREVILLERS", - "center": "POINT (613347.9988905595382676 2600567.5375596648082137)", - "surface": 5040000, - "canton": null, - "numero_insee": "62362" - } - }, - { - "pk": 4034, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FREVIN-CAPELLE", - "center": "POINT (621298.8156797476112843 2595031.3546636747196317)", - "surface": 3610000, - "canton": null, - "numero_insee": "62363" - } - }, - { - "pk": 15853, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "FRUGES", - "center": "POINT (584827.3861034635920078 2613135.0078918477520347)", - "surface": 18890000, - "canton": null, - "numero_insee": "62364" - } - }, - { - "pk": 15978, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GALAMETZ", - "center": "POINT (585202.7186917641665787 2592226.9391006585210562)", - "surface": 4190000, - "canton": null, - "numero_insee": "62365" - } - }, - { - "pk": 26767, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GAUCHIN-LEGAL", - "center": "POINT (617142.2063507937127724 2601499.9146876344457269)", - "surface": 5890000, - "canton": null, - "numero_insee": "62366" - } - }, - { - "pk": 9789, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GAUCHIN-VERLOINGT", - "center": "POINT (598450.2626037286827341 2599341.8340763719752431)", - "surface": 5900000, - "canton": null, - "numero_insee": "62367" - } - }, - { - "pk": 6133, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GAUDIEMPRE", - "center": "POINT (613659.0935413062106818 2575456.3770471788011491)", - "surface": 6200000, - "canton": null, - "numero_insee": "62368" - } - }, - { - "pk": 13249, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GAVRELLE", - "center": "POINT (639130.8229402890428901 2592379.9401302617043257)", - "surface": 9000000, - "canton": null, - "numero_insee": "62369" - } - }, - { - "pk": 34899, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GENNES-IVERGNY", - "center": "POINT (580448.2108097578166053 2586483.9800880900584161)", - "surface": 10970000, - "canton": null, - "numero_insee": "62370" - } - }, - { - "pk": 10691, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GIVENCHY-EN-GOHELLE", - "center": "POINT (631364.8399706343188882 2599718.5477373665198684)", - "surface": 5980000, - "canton": null, - "numero_insee": "62371" - } - }, - { - "pk": 25536, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GIVENCHY-LE-NOBLE", - "center": "POINT (610940.9771118995267898 2589341.2285412680357695)", - "surface": 2530000, - "canton": null, - "numero_insee": "62372" - } - }, - { - "pk": 18919, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GIVENCHY-LES-LA-BASSEE", - "center": "POINT (630032.8976003307616338 2615315.6479563196189702)", - "surface": 3890000, - "canton": null, - "numero_insee": "62373" - } - }, - { - "pk": 36671, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOMIECOURT", - "center": "POINT (633094.6825709122931585 2572518.1379623794928193)", - "surface": 3720000, - "canton": null, - "numero_insee": "62374" - } - }, - { - "pk": 6593, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOMMECOURT", - "center": "POINT (622598.7864189232932404 2571329.1864502136595547)", - "surface": 3380000, - "canton": null, - "numero_insee": "62375" - } - }, - { - "pk": 13923, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOSNAY", - "center": "POINT (617748.3226366511080414 2612710.9814191944897175)", - "surface": 2240000, - "canton": null, - "numero_insee": "62377" - } - }, - { - "pk": 9399, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOUVES", - "center": "POINT (621949.5899345192592591 2589033.5548613267019391)", - "surface": 2710000, - "canton": null, - "numero_insee": "62378" - } - }, - { - "pk": 6714, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOUY-EN-ARTOIS", - "center": "POINT (618098.2006758160423487 2582997.8632777431048453)", - "surface": 10010000, - "canton": null, - "numero_insee": "62379" - } - }, - { - "pk": 32480, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOUY-SERVINS", - "center": "POINT (622650.6656363951042295 2600845.8614488071762025)", - "surface": 3310000, - "canton": null, - "numero_insee": "62380" - } - }, - { - "pk": 28220, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOUY-EN-TERNOIS", - "center": "POINT (605216.4140268834307790 2591894.5648043882101774)", - "surface": 5680000, - "canton": null, - "numero_insee": "62381" - } - }, - { - "pk": 16387, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOUY-SAINT-ANDRE", - "center": "POINT (569548.4247693874640390 2597698.8827249482274055)", - "surface": 13390000, - "canton": null, - "numero_insee": "62382" - } - }, - { - "pk": 10994, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GOUY-SOUS-BELLONNE", - "center": "POINT (651447.6288859630003572 2591183.0655563483014703)", - "surface": 5530000, - "canton": null, - "numero_insee": "62383" - } - }, - { - "pk": 12202, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GRAINCOURT-LES-HAVRINCOURT", - "center": "POINT (654410.1986746327020228 2572097.4694531722925603)", - "surface": 11700000, - "canton": null, - "numero_insee": "62384" - } - }, - { - "pk": 3997, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GRAND-RULLECOURT", - "center": "POINT (609783.2710195938125253 2584228.6979538993909955)", - "surface": 10760000, - "canton": null, - "numero_insee": "62385" - } - }, - { - "pk": 32900, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GRENAY", - "center": "POINT (629009.8685104708420113 2606102.1584151978604496)", - "surface": 3230000, - "canton": null, - "numero_insee": "62386" - } - }, - { - "pk": 6780, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GREVILLERS", - "center": "POINT (633037.5976845254190266 2567414.7819046028889716)", - "surface": 6400000, - "canton": null, - "numero_insee": "62387" - } - }, - { - "pk": 30305, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GRIGNY", - "center": "POINT (580546.8950919616036117 2598591.4002811247482896)", - "surface": 2150000, - "canton": null, - "numero_insee": "62388" - } - }, - { - "pk": 12831, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GRINCOURT-LES-PAS", - "center": "POINT (610755.1551914251176640 2575732.1425128569826484)", - "surface": 2820000, - "canton": null, - "numero_insee": "62389" - } - }, - { - "pk": 14152, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GROFFLIERS", - "center": "POINT (547724.7949583877343684 2599117.3222375763580203)", - "surface": 8310000, - "canton": null, - "numero_insee": "62390" - } - }, - { - "pk": 26751, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GUARBECQUE", - "center": "POINT (610753.5405331628862768 2623557.9025778961367905)", - "surface": 5450000, - "canton": null, - "numero_insee": "62391" - } - }, - { - "pk": 24600, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GUEMAPPE", - "center": "POINT (639701.8701103228377178 2583980.1406171573325992)", - "surface": 4470000, - "canton": null, - "numero_insee": "62392" - } - }, - { - "pk": 32947, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GUEMPS", - "center": "POINT (576044.8996230788761750 2658284.4557412266731262)", - "surface": 15920000, - "canton": null, - "numero_insee": "62393" - } - }, - { - "pk": 22726, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GUIGNY", - "center": "POINT (575594.8080595595529303 2592546.6717559820972383)", - "surface": 3620000, - "canton": null, - "numero_insee": "62395" - } - }, - { - "pk": 8706, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GUINECOURT", - "center": "POINT (592185.9049502220004797 2594686.7908664084970951)", - "surface": 2240000, - "canton": null, - "numero_insee": "62396" - } - }, - { - "pk": 18323, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GUINES", - "center": "POINT (567095.5156102243345231 2651706.3492247862741351)", - "surface": 26390000, - "canton": null, - "numero_insee": "62397" - } - }, - { - "pk": 9212, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "GUISY", - "center": "POINT (576139.8017773589817807 2599154.8135104845277965)", - "surface": 1160000, - "canton": null, - "numero_insee": "62398" - } - }, - { - "pk": 9273, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HABARCQ", - "center": "POINT (619234.8406290357233956 2590611.5994795626029372)", - "surface": 7080000, - "canton": null, - "numero_insee": "62399" - } - }, - { - "pk": 26137, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAILLICOURT", - "center": "POINT (617179.1691271346062422 2609004.2352141318842769)", - "surface": 4510000, - "canton": null, - "numero_insee": "62400" - } - }, - { - "pk": 28661, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAISNES", - "center": "POINT (632663.5655831026379019 2611835.9478545421734452)", - "surface": 5620000, - "canton": null, - "numero_insee": "62401" - } - }, - { - "pk": 37800, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HALINGHEN", - "center": "POINT (553524.4977803778601810 2623478.6285607824102044)", - "surface": 5640000, - "canton": null, - "numero_insee": "62402" - } - }, - { - "pk": 35785, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HALLINES", - "center": "POINT (590855.7249493361450732 2633996.3455408271402121)", - "surface": 5750000, - "canton": null, - "numero_insee": "62403" - } - }, - { - "pk": 29972, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HALLOY", - "center": "POINT (606268.0822939674835652 2573893.4432469452731311)", - "surface": 3440000, - "canton": null, - "numero_insee": "62404" - } - }, - { - "pk": 29529, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAMBLAIN-LES-PRES", - "center": "POINT (644366.1808509428519756 2588521.9272733125835657)", - "surface": 4970000, - "canton": null, - "numero_insee": "62405" - } - }, - { - "pk": 27595, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAMELINCOURT", - "center": "POINT (633261.9249752816976979 2576421.7306294585578144)", - "surface": 6690000, - "canton": null, - "numero_insee": "62406" - } - }, - { - "pk": 9493, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAM-EN-ARTOIS", - "center": "POINT (608166.6596795893274248 2621835.2861762410029769)", - "surface": 3320000, - "canton": null, - "numero_insee": "62407" - } - }, - { - "pk": 25568, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAMES-BOUCRES", - "center": "POINT (565570.6096727882977575 2654595.0280652167275548)", - "surface": 13330000, - "canton": null, - "numero_insee": "62408" - } - }, - { - "pk": 12683, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HANNESCAMPS", - "center": "POINT (621775.6721402503317222 2574023.7789468863047659)", - "surface": 3160000, - "canton": null, - "numero_insee": "62409" - } - }, - { - "pk": 27580, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAPLINCOURT", - "center": "POINT (642950.9295952029060572 2566497.7281401222571731)", - "surface": 5150000, - "canton": null, - "numero_insee": "62410" - } - }, - { - "pk": 28337, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HARAVESNES", - "center": "POINT (584940.3074350784299895 2587722.2781860823743045)", - "surface": 2400000, - "canton": null, - "numero_insee": "62411" - } - }, - { - "pk": 32724, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HARDINGHEN", - "center": "POINT (564051.0889375144615769 2644877.4926995085552335)", - "surface": 8530000, - "canton": null, - "numero_insee": "62412" - } - }, - { - "pk": 13924, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HARNES", - "center": "POINT (640313.4153170548379421 2606397.4601077372208238)", - "surface": 10820000, - "canton": null, - "numero_insee": "62413" - } - }, - { - "pk": 25350, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAUCOURT", - "center": "POINT (645217.1687503621215001 2582525.7940684617497027)", - "surface": 6040000, - "canton": null, - "numero_insee": "62414" - } - }, - { - "pk": 13925, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAUTE-AVESNES", - "center": "POINT (621318.1693270957330242 2592730.2661413578316569)", - "surface": 4060000, - "canton": null, - "numero_insee": "62415" - } - }, - { - "pk": 24408, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAUTECLOQUE", - "center": "POINT (598602.3640384627506137 2593139.7504651257768273)", - "surface": 6870000, - "canton": null, - "numero_insee": "62416" - } - }, - { - "pk": 30213, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAUTEVILLE", - "center": "POINT (616470.5148285435279831 2586185.9440741310827434)", - "surface": 4090000, - "canton": null, - "numero_insee": "62418" - } - }, - { - "pk": 29138, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAUT-LOQUIN", - "center": "POINT (573511.2555339951068163 2638253.2679288708604872)", - "surface": 5500000, - "canton": null, - "numero_insee": "62419" - } - }, - { - "pk": 17721, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HAVRINCOURT", - "center": "POINT (652749.0342653573025018 2567380.8022395931184292)", - "surface": 16920000, - "canton": null, - "numero_insee": "62421" - } - }, - { - "pk": 14165, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HEBUTERNE", - "center": "POINT (622117.0544256696011871 2569123.8947070739232004)", - "surface": 11050000, - "canton": null, - "numero_insee": "62422" - } - }, - { - "pk": 28708, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HELFAUT", - "center": "POINT (593865.4375405934406444 2633021.0760632255114615)", - "surface": 8960000, - "canton": null, - "numero_insee": "62423" - } - }, - { - "pk": 33639, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HENDECOURT-LES-CAGNICOURT", - "center": "POINT (643737.5277520138770342 2580011.9345747833140194)", - "surface": 8870000, - "canton": null, - "numero_insee": "62424" - } - }, - { - "pk": 26136, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HENDECOURT-LES-RANSART", - "center": "POINT (628235.9099371111951768 2579180.9803713839501143)", - "surface": 2250000, - "canton": null, - "numero_insee": "62425" - } - }, - { - "pk": 9931, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HENINEL", - "center": "POINT (638217.1623997240094468 2582066.5807819096371531)", - "surface": 5380000, - "canton": null, - "numero_insee": "62426" - } - }, - { - "pk": 23399, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HENIN-BEAUMONT", - "center": "POINT (644254.8578007415635511 2601728.1598489340394735)", - "surface": 20740000, - "canton": null, - "numero_insee": "62427" - } - }, - { - "pk": 33388, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HENIN-SUR-COJEUL", - "center": "POINT (635829.4859953545965254 2580445.5807904968969524)", - "surface": 6800000, - "canton": null, - "numero_insee": "62428" - } - }, - { - "pk": 33196, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HENNEVEUX", - "center": "POINT (565217.6692344982875511 2636983.2610098295845091)", - "surface": 5580000, - "canton": null, - "numero_insee": "62429" - } - }, - { - "pk": 12151, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HENU", - "center": "POINT (613876.8493429333902895 2573357.0311862253583968)", - "surface": 4280000, - "canton": null, - "numero_insee": "62430" - } - }, - { - "pk": 25964, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERBELLES", - "center": "POINT (591998.1599189336411655 2629003.3620943091809750)", - "surface": 4610000, - "canton": null, - "numero_insee": "62431" - } - }, - { - "pk": 27828, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERBINGHEN", - "center": "POINT (568884.9695823852671310 2641116.0170381767675281)", - "surface": 4390000, - "canton": null, - "numero_insee": "62432" - } - }, - { - "pk": 5252, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERICOURT", - "center": "POINT (593695.8452132676029578 2593598.8571879565715790)", - "surface": 4960000, - "canton": null, - "numero_insee": "62433" - } - }, - { - "pk": 16313, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA HERLIERE", - "center": "POINT (615837.4604381487006322 2578176.1933861672878265)", - "surface": 5410000, - "canton": null, - "numero_insee": "62434" - } - }, - { - "pk": 8753, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERLINCOURT", - "center": "POINT (596791.4374414661433548 2594325.2073874208144844)", - "surface": 2970000, - "canton": null, - "numero_insee": "62435" - } - }, - { - "pk": 8252, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERLIN-LE-SEC", - "center": "POINT (599684.4124200117075816 2595350.0273493090644479)", - "surface": 3820000, - "canton": null, - "numero_insee": "62436" - } - }, - { - "pk": 32350, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERLY", - "center": "POINT (575395.4405433585634455 2616357.7375222686678171)", - "surface": 16360000, - "canton": null, - "numero_insee": "62437" - } - }, - { - "pk": 12967, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERMAVILLE", - "center": "POINT (617620.6205067037371919 2592198.9003633544780314)", - "surface": 6380000, - "canton": null, - "numero_insee": "62438" - } - }, - { - "pk": 28497, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERMELINGHEN", - "center": "POINT (566445.4297366153914481 2645697.9204010618850589)", - "surface": 6460000, - "canton": null, - "numero_insee": "62439" - } - }, - { - "pk": 33976, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERMIES", - "center": "POINT (650139.3090353786246851 2568359.3541917577385902)", - "surface": 13150000, - "canton": null, - "numero_insee": "62440" - } - }, - { - "pk": 28877, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERMIN", - "center": "POINT (615337.1609005391364917 2601985.0093612652271986)", - "surface": 4210000, - "canton": null, - "numero_insee": "62441" - } - }, - { - "pk": 23743, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERNICOURT", - "center": "POINT (597926.5212229802273214 2602138.9460893301293254)", - "surface": 9970000, - "canton": null, - "numero_insee": "62442" - } - }, - { - "pk": 6605, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERSIN-COUPIGNY", - "center": "POINT (621709.8532186881639063 2605640.5223263646475971)", - "surface": 12700000, - "canton": null, - "numero_insee": "62443" - } - }, - { - "pk": 19076, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HERVELINGHEN", - "center": "POINT (556365.0403769254917279 2654718.1631221985444427)", - "surface": 5910000, - "canton": null, - "numero_insee": "62444" - } - }, - { - "pk": 8017, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HESDIGNEUL-LES-BETHUNE", - "center": "POINT (618460.4201023469213396 2611316.2280723205767572)", - "surface": 2590000, - "canton": null, - "numero_insee": "62445" - } - }, - { - "pk": 7312, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HESDIGNEUL-LES-BOULOGNE", - "center": "POINT (553279.2738632807740942 2628879.3723259489051998)", - "surface": 3320000, - "canton": null, - "numero_insee": "62446" - } - }, - { - "pk": 3893, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HESDIN", - "center": "POINT (578654.3820802055997774 2597575.0076611880213022)", - "surface": 940000, - "canton": null, - "numero_insee": "62447" - } - }, - { - "pk": 35545, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HESDIN-L'ABBE", - "center": "POINT (553964.5398184971418232 2630686.0229380177333951)", - "surface": 7480000, - "canton": null, - "numero_insee": "62448" - } - }, - { - "pk": 5889, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HESMOND", - "center": "POINT (571865.8155953870154917 2607723.6420463789254427)", - "surface": 8310000, - "canton": null, - "numero_insee": "62449" - } - }, - { - "pk": 27594, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HESTRUS", - "center": "POINT (599395.3143587290542200 2605953.3071224121376872)", - "surface": 8020000, - "canton": null, - "numero_insee": "62450" - } - }, - { - "pk": 13110, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HEUCHIN", - "center": "POINT (595263.1990116941742599 2609520.5518354009836912)", - "surface": 8240000, - "canton": null, - "numero_insee": "62451" - } - }, - { - "pk": 29518, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HEURINGHEM", - "center": "POINT (596963.4472183149773628 2633447.2706033708527684)", - "surface": 5900000, - "canton": null, - "numero_insee": "62452" - } - }, - { - "pk": 13532, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HEZECQUES", - "center": "POINT (589710.3350627017207444 2615477.1516159130260348)", - "surface": 5060000, - "canton": null, - "numero_insee": "62453" - } - }, - { - "pk": 6124, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HINGES", - "center": "POINT (620792.5256230480736122 2619540.1547191427089274)", - "surface": 8310000, - "canton": null, - "numero_insee": "62454" - } - }, - { - "pk": 13531, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HOCQUINGHEN", - "center": "POINT (571383.5443321949569508 2641437.0771361594088376)", - "surface": 1980000, - "canton": null, - "numero_insee": "62455" - } - }, - { - "pk": 10063, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HOUCHIN", - "center": "POINT (620077.9813529273960739 2609328.7691982989199460)", - "surface": 4540000, - "canton": null, - "numero_insee": "62456" - } - }, - { - "pk": 33387, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HOUDAIN", - "center": "POINT (614197.1266122926026583 2606677.9433325170539320)", - "surface": 6280000, - "canton": null, - "numero_insee": "62457" - } - }, - { - "pk": 36940, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HOULLE", - "center": "POINT (587863.8718685423955321 2644776.7283636727370322)", - "surface": 6510000, - "canton": null, - "numero_insee": "62458" - } - }, - { - "pk": 35741, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HOUVIN-HOUVIGNEUL", - "center": "POINT (602840.4723373656161129 2588872.9749913429841399)", - "surface": 8750000, - "canton": null, - "numero_insee": "62459" - } - }, - { - "pk": 30251, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HUBERSENT", - "center": "POINT (557546.3637694811914116 2621110.9876400297507644)", - "surface": 8090000, - "canton": null, - "numero_insee": "62460" - } - }, - { - "pk": 4662, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HUCLIER", - "center": "POINT (601207.0659229030134156 2604667.8189637502655387)", - "surface": 3310000, - "canton": null, - "numero_insee": "62462" - } - }, - { - "pk": 35784, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HUCQUELIERS", - "center": "POINT (570067.9117721392540261 2619314.7153115472756326)", - "surface": 7660000, - "canton": null, - "numero_insee": "62463" - } - }, - { - "pk": 35509, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HULLUCH", - "center": "POINT (633679.1885251065250486 2610043.5457156980410218)", - "surface": 5780000, - "canton": null, - "numero_insee": "62464" - } - }, - { - "pk": 31391, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HUMBERCAMPS", - "center": "POINT (616948.0885995446005836 2576984.8610944817773998)", - "surface": 3600000, - "canton": null, - "numero_insee": "62465" - } - }, - { - "pk": 34171, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HUMBERT", - "center": "POINT (569630.4737639084924012 2611807.1104428139515221)", - "surface": 7870000, - "canton": null, - "numero_insee": "62466" - } - }, - { - "pk": 26240, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "HUMIERES", - "center": "POINT (590850.8931767486501485 2598777.8154494594782591)", - "surface": 6910000, - "canton": null, - "numero_insee": "62468" - } - }, - { - "pk": 36064, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "INCHY-EN-ARTOIS", - "center": "POINT (650278.6504781831754372 2575564.5784648898988962)", - "surface": 11170000, - "canton": null, - "numero_insee": "62469" - } - }, - { - "pk": 4247, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "INCOURT", - "center": "POINT (586645.5669445452513173 2599142.7745376429520547)", - "surface": 1860000, - "canton": null, - "numero_insee": "62470" - } - }, - { - "pk": 35298, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "INGHEM", - "center": "POINT (593286.1508604923728853 2630514.9357624989934266)", - "surface": 3200000, - "canton": null, - "numero_insee": "62471" - } - }, - { - "pk": 12438, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "INXENT", - "center": "POINT (560992.2308713425882161 2615837.0185219123959541)", - "surface": 3840000, - "canton": null, - "numero_insee": "62472" - } - }, - { - "pk": 6476, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ISBERGUES", - "center": "POINT (608443.2640078477561474 2624639.0648208786733449)", - "surface": 14460000, - "canton": null, - "numero_insee": "62473" - } - }, - { - "pk": 6158, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ISQUES", - "center": "POINT (551751.0287945768795907 2632168.3004319844767451)", - "surface": 7030000, - "canton": null, - "numero_insee": "62474" - } - }, - { - "pk": 24469, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "IVERGNY", - "center": "POINT (603094.3257636905182153 2582471.5819939821958542)", - "surface": 7300000, - "canton": null, - "numero_insee": "62475" - } - }, - { - "pk": 28222, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "IZEL-LES-EQUERCHIN", - "center": "POINT (643398.2882560107391328 2596518.1318663079291582)", - "surface": 10000000, - "canton": null, - "numero_insee": "62476" - } - }, - { - "pk": 22411, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "IZEL-LES-HAMEAU", - "center": "POINT (613828.9068977448623627 2590966.3719556545838714)", - "surface": 8610000, - "canton": null, - "numero_insee": "62477" - } - }, - { - "pk": 4393, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "JOURNY", - "center": "POINT (576398.2816222299588844 2639978.2997776214033365)", - "surface": 3390000, - "canton": null, - "numero_insee": "62478" - } - }, - { - "pk": 37763, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LABEUVRIERE", - "center": "POINT (616636.0441706411074847 2614102.3692444581538439)", - "surface": 5960000, - "canton": null, - "numero_insee": "62479" - } - }, - { - "pk": 13037, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LABOURSE", - "center": "POINT (624666.6319117045495659 2610968.2159101376309991)", - "surface": 4640000, - "canton": null, - "numero_insee": "62480" - } - }, - { - "pk": 13709, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LABROYE", - "center": "POINT (574826.2585356086492538 2588738.1603239518590271)", - "surface": 8300000, - "canton": null, - "numero_insee": "62481" - } - }, - { - "pk": 9048, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LACRES", - "center": "POINT (559228.7322690797736868 2623326.1948577333241701)", - "surface": 8330000, - "canton": null, - "numero_insee": "62483" - } - }, - { - "pk": 3264, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LAGNICOURT-MARCEL", - "center": "POINT (644292.5881809244165197 2573512.9840454729273915)", - "surface": 8460000, - "canton": null, - "numero_insee": "62484" - } - }, - { - "pk": 24671, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LAIRES", - "center": "POINT (594209.0285858642309904 2615915.0899800476618111)", - "surface": 8680000, - "canton": null, - "numero_insee": "62485" - } - }, - { - "pk": 9391, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LAMBRES", - "center": "POINT (604839.9711713828146458 2624808.9060223968699574)", - "surface": 4440000, - "canton": null, - "numero_insee": "62486" - } - }, - { - "pk": 7068, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LANDRETHUN-LE-NORD", - "center": "POINT (560600.2742764622671530 2650751.5830100905150175)", - "surface": 7750000, - "canton": null, - "numero_insee": "62487" - } - }, - { - "pk": 26805, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LANDRETHUN-LES-ARDRES", - "center": "POINT (573838.5679806789848953 2646960.3884004424326122)", - "surface": 5830000, - "canton": null, - "numero_insee": "62488" - } - }, - { - "pk": 5349, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LAPUGNOY", - "center": "POINT (613837.2881471650907770 2613778.6855928217992187)", - "surface": 8610000, - "canton": null, - "numero_insee": "62489" - } - }, - { - "pk": 24994, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LATTRE-SAINT-QUENTIN", - "center": "POINT (616746.2670433610910550 2589089.8547700275667012)", - "surface": 7720000, - "canton": null, - "numero_insee": "62490" - } - }, - { - "pk": 33144, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LAVENTIE", - "center": "POINT (631658.7065148046240211 2624233.9875564938411117)", - "surface": 18430000, - "canton": null, - "numero_insee": "62491" - } - }, - { - "pk": 27287, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEBIEZ", - "center": "POINT (574472.0429962516063824 2607145.1390965990722179)", - "surface": 9710000, - "canton": null, - "numero_insee": "62492" - } - }, - { - "pk": 32889, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEBUCQUIERE", - "center": "POINT (644336.4429598988499492 2568310.4253241294063628)", - "surface": 4790000, - "canton": null, - "numero_insee": "62493" - } - }, - { - "pk": 6248, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LECHELLE", - "center": "POINT (645888.6370413933182135 2562220.0469416212290525)", - "surface": 3720000, - "canton": null, - "numero_insee": "62494" - } - }, - { - "pk": 31848, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEDINGHEM", - "center": "POINT (574198.6211830076063052 2627853.7032472621649504)", - "surface": 8710000, - "canton": null, - "numero_insee": "62495" - } - }, - { - "pk": 8823, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEFAUX", - "center": "POINT (551477.0366978809470311 2617058.1835431768558919)", - "surface": 8260000, - "canton": null, - "numero_insee": "62496" - } - }, - { - "pk": 6403, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEFOREST", - "center": "POINT (651330.3213506338652223 2605089.5940434364601970)", - "surface": 6210000, - "canton": null, - "numero_insee": "62497" - } - }, - { - "pk": 35116, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LENS", - "center": "POINT (634424.1648682086961344 2604746.9942636881023645)", - "surface": 11690000, - "canton": null, - "numero_insee": "62498" - } - }, - { - "pk": 26424, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEPINE", - "center": "POINT (556630.6468307657632977 2598991.6112831435166299)", - "surface": 10760000, - "canton": null, - "numero_insee": "62499" - } - }, - { - "pk": 31380, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LESPESSES", - "center": "POINT (606199.3670651303837076 2617816.6727601974271238)", - "surface": 3100000, - "canton": null, - "numero_insee": "62500" - } - }, - { - "pk": 8835, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LESPINOY", - "center": "POINT (566296.7032079498749226 2603674.9057407407090068)", - "surface": 3990000, - "canton": null, - "numero_insee": "62501" - } - }, - { - "pk": 5494, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEUBRINGHEN", - "center": "POINT (557294.6852280300809070 2651224.2001908835954964)", - "surface": 8060000, - "canton": null, - "numero_insee": "62503" - } - }, - { - "pk": 10820, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEULINGHEM", - "center": "POINT (588121.8270939872600138 2637875.4090491635724902)", - "surface": 4710000, - "canton": null, - "numero_insee": "62504" - } - }, - { - "pk": 37417, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LEULINGHEN-BERNES", - "center": "POINT (555909.1360871547367424 2649411.7264589066617191)", - "surface": 6820000, - "canton": null, - "numero_insee": "62505" - } - }, - { - "pk": 3864, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LICQUES", - "center": "POINT (571556.0001018729526550 2644740.1807106430642307)", - "surface": 18640000, - "canton": null, - "numero_insee": "62506" - } - }, - { - "pk": 9398, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIENCOURT", - "center": "POINT (607963.9165619096020237 2586414.6267935577780008)", - "surface": 3390000, - "canton": null, - "numero_insee": "62507" - } - }, - { - "pk": 33372, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIERES", - "center": "POINT (605104.7488732680212706 2617107.1133008426986635)", - "surface": 3300000, - "canton": null, - "numero_insee": "62508" - } - }, - { - "pk": 8886, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIETTRES", - "center": "POINT (600158.0189415005734190 2622368.3538683168590069)", - "surface": 3060000, - "canton": null, - "numero_insee": "62509" - } - }, - { - "pk": 31347, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIEVIN", - "center": "POINT (631034.3780171371763572 2603317.7018779092468321)", - "surface": 12880000, - "canton": null, - "numero_insee": "62510" - } - }, - { - "pk": 22969, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIGNEREUIL", - "center": "POINT (609547.8737099887803197 2588429.0310617801733315)", - "surface": 2960000, - "canton": null, - "numero_insee": "62511" - } - }, - { - "pk": 30322, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIGNY-LES-AIRE", - "center": "POINT (599988.9972812489140779 2618665.0041826548986137)", - "surface": 8100000, - "canton": null, - "numero_insee": "62512" - } - }, - { - "pk": 36328, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIGNY-SUR-CANCHE", - "center": "POINT (594546.5797900012694299 2587602.7140178801491857)", - "surface": 7200000, - "canton": null, - "numero_insee": "62513" - } - }, - { - "pk": 37615, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIGNY-SAINT-FLOCHEL", - "center": "POINT (606183.2802466234425083 2595904.8599983910098672)", - "surface": 5140000, - "canton": null, - "numero_insee": "62514" - } - }, - { - "pk": 25516, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIGNY-THILLOY", - "center": "POINT (634959.6029189768014476 2564929.5497929910197854)", - "surface": 10340000, - "canton": null, - "numero_insee": "62515" - } - }, - { - "pk": 20582, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LILLERS", - "center": "POINT (610295.3429212877526879 2618551.4452529624104500)", - "surface": 26670000, - "canton": null, - "numero_insee": "62516" - } - }, - { - "pk": 5966, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LINGHEM", - "center": "POINT (602564.9778930939501151 2621688.1938960221596062)", - "surface": 3660000, - "canton": null, - "numero_insee": "62517" - } - }, - { - "pk": 5455, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LINZEUX", - "center": "POINT (590390.0873815881786868 2594071.4051798949949443)", - "surface": 4770000, - "canton": null, - "numero_insee": "62518" - } - }, - { - "pk": 13380, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LISBOURG", - "center": "POINT (591933.1521388452965766 2612894.4205990815535188)", - "surface": 17980000, - "canton": null, - "numero_insee": "62519" - } - }, - { - "pk": 6709, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LOCON", - "center": "POINT (623393.7009922207798809 2619562.0340963676571846)", - "surface": 9500000, - "canton": null, - "numero_insee": "62520" - } - }, - { - "pk": 4820, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA LOGE", - "center": "POINT (578520.8176157473353669 2601576.0454650698229671)", - "surface": 700000, - "canton": null, - "numero_insee": "62521" - } - }, - { - "pk": 31928, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LOISON-SUR-CREQUOISE", - "center": "POINT (570282.6580745868850499 2605609.2723893043585122)", - "surface": 9110000, - "canton": null, - "numero_insee": "62522" - } - }, - { - "pk": 28453, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LOISON-SOUS-LENS", - "center": "POINT (637119.5189528053160757 2605470.0705911885015666)", - "surface": 3540000, - "canton": null, - "numero_insee": "62523" - } - }, - { - "pk": 11353, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LONGFOSSE", - "center": "POINT (562483.3673594553256407 2628956.3018296221271157)", - "surface": 10260000, - "canton": null, - "numero_insee": "62524" - } - }, - { - "pk": 9587, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LONGUENESSE", - "center": "POINT (593424.1437150893034413 2637919.8710793508216739)", - "surface": 8440000, - "canton": null, - "numero_insee": "62525" - } - }, - { - "pk": 13136, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LONGUEVILLE", - "center": "POINT (567716.2535761964973062 2637304.3146780482493341)", - "surface": 3550000, - "canton": null, - "numero_insee": "62526" - } - }, - { - "pk": 38065, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LONGVILLIERS", - "center": "POINT (557791.6086518319789320 2615710.2102419622242451)", - "surface": 11050000, - "canton": null, - "numero_insee": "62527" - } - }, - { - "pk": 36224, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LOOS-EN-GOHELLE", - "center": "POINT (631904.4729333171853796 2606926.9527955134399235)", - "surface": 12690000, - "canton": null, - "numero_insee": "62528" - } - }, - { - "pk": 35141, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LORGIES", - "center": "POINT (632702.1165196512592956 2619140.1146456240676343)", - "surface": 6840000, - "canton": null, - "numero_insee": "62529" - } - }, - { - "pk": 4273, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LOUCHES", - "center": "POINT (576129.5042162060271949 2648180.1679490259848535)", - "surface": 13080000, - "canton": null, - "numero_insee": "62531" - } - }, - { - "pk": 34287, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LOZINGHEM", - "center": "POINT (611237.7814452856546268 2613556.7352641862817109)", - "surface": 2070000, - "canton": null, - "numero_insee": "62532" - } - }, - { - "pk": 34215, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LUGY", - "center": "POINT (588421.4849458355456591 2614065.6085785897448659)", - "surface": 2840000, - "canton": null, - "numero_insee": "62533" - } - }, - { - "pk": 30082, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LUMBRES", - "center": "POINT (584447.8761537172831595 2634542.9359747394919395)", - "surface": 10090000, - "canton": null, - "numero_insee": "62534" - } - }, - { - "pk": 37597, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA MADELAINE-SOUS-MONTREUIL", - "center": "POINT (558156.1355224504368380 2608009.1840689969249070)", - "surface": 2480000, - "canton": null, - "numero_insee": "62535" - } - }, - { - "pk": 34345, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAGNICOURT-EN-COMTE", - "center": "POINT (610344.0737949003232643 2600842.4574886932969093)", - "surface": 10010000, - "canton": null, - "numero_insee": "62536" - } - }, - { - "pk": 30663, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAINTENAY", - "center": "POINT (562848.6180606777779758 2597242.6206720038317144)", - "surface": 12210000, - "canton": null, - "numero_insee": "62538" - } - }, - { - "pk": 25928, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAISNIL", - "center": "POINT (601491.9809772581793368 2594564.7649421086534858)", - "surface": 5210000, - "canton": null, - "numero_insee": "62539" - } - }, - { - "pk": 9670, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAISNIL-LES-RUITZ", - "center": "POINT (617205.2437286089407280 2605902.8026881222613156)", - "surface": 5560000, - "canton": null, - "numero_insee": "62540" - } - }, - { - "pk": 35381, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAISONCELLE", - "center": "POINT (586586.8651003161212429 2606146.0387663017027080)", - "surface": 4380000, - "canton": null, - "numero_insee": "62541" - } - }, - { - "pk": 11084, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAIZIERES", - "center": "POINT (607418.2992891563335434 2591813.0023662475869060)", - "surface": 7050000, - "canton": null, - "numero_insee": "62542" - } - }, - { - "pk": 4433, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAMETZ", - "center": "POINT (598026.0118713709525764 2626052.3811188773252070)", - "surface": 9760000, - "canton": null, - "numero_insee": "62543" - } - }, - { - "pk": 36704, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MANINGHEM", - "center": "POINT (571787.9405398773960769 2617027.9056890932843089)", - "surface": 3990000, - "canton": null, - "numero_insee": "62545" - } - }, - { - "pk": 13949, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MANINGHEN-HENNE", - "center": "POINT (552970.5337164551019669 2641883.4165491899475455)", - "surface": 3940000, - "canton": null, - "numero_insee": "62546" - } - }, - { - "pk": 13308, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARANT", - "center": "POINT (564654.9556600688956678 2608563.7882870705798268)", - "surface": 3940000, - "canton": null, - "numero_insee": "62547" - } - }, - { - "pk": 18114, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARCK", - "center": "POINT (572709.1798820926342160 2662358.5341154923662543)", - "surface": 31940000, - "canton": null, - "numero_insee": "62548" - } - }, - { - "pk": 16312, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARCONNE", - "center": "POINT (578260.8971720713889226 2596771.2792022023350000)", - "surface": 4220000, - "canton": null, - "numero_insee": "62549" - } - }, - { - "pk": 26028, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARCONNELLE", - "center": "POINT (576456.6978582818992436 2597156.3865025229752064)", - "surface": 5600000, - "canton": null, - "numero_insee": "62550" - } - }, - { - "pk": 34898, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARENLA", - "center": "POINT (567074.4771771426312625 2606382.8557366672903299)", - "surface": 10020000, - "canton": null, - "numero_insee": "62551" - } - }, - { - "pk": 20694, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARESQUEL-ECQUEMICOURT", - "center": "POINT (571324.9888407569378614 2600615.3147525163367391)", - "surface": 8050000, - "canton": null, - "numero_insee": "62552" - } - }, - { - "pk": 11576, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAREST", - "center": "POINT (605781.4766273718560115 2608007.9866409781388938)", - "surface": 3210000, - "canton": null, - "numero_insee": "62553" - } - }, - { - "pk": 8418, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARESVILLE", - "center": "POINT (556902.0680355799850076 2614402.0913734082132578)", - "surface": 2470000, - "canton": null, - "numero_insee": "62554" - } - }, - { - "pk": 12149, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARLES-LES-MINES", - "center": "POINT (612052.4388033858267590 2611862.6822439776733518)", - "surface": 4460000, - "canton": null, - "numero_insee": "62555" - } - }, - { - "pk": 36080, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARLES-SUR-CANCHE", - "center": "POINT (563160.9563666563481092 2607750.8678829525597394)", - "surface": 5170000, - "canton": null, - "numero_insee": "62556" - } - }, - { - "pk": 34104, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAROEUIL", - "center": "POINT (626619.8405143915442750 2592874.9227274260483682)", - "surface": 11880000, - "canton": null, - "numero_insee": "62557" - } - }, - { - "pk": 11614, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARQUAY", - "center": "POINT (605963.0211585557553917 2598304.3092941227369010)", - "surface": 3560000, - "canton": null, - "numero_insee": "62558" - } - }, - { - "pk": 25599, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARQUION", - "center": "POINT (654252.7454527938971296 2578899.9456318533048034)", - "surface": 8330000, - "canton": null, - "numero_insee": "62559" - } - }, - { - "pk": 19007, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MARTINPUICH", - "center": "POINT (630984.5676001324318349 2561694.2578204735182226)", - "surface": 5950000, - "canton": null, - "numero_insee": "62561" - } - }, - { - "pk": 8273, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MATRINGHEM", - "center": "POINT (587898.6118456590920687 2616762.6455738223157823)", - "surface": 4450000, - "canton": null, - "numero_insee": "62562" - } - }, - { - "pk": 33641, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAZINGARBE", - "center": "POINT (627691.5847599743865430 2608192.1827669418416917)", - "surface": 10350000, - "canton": null, - "numero_insee": "62563" - } - }, - { - "pk": 13775, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MAZINGHEM", - "center": "POINT (605352.7969716604566202 2623312.4338589948602021)", - "surface": 5200000, - "canton": null, - "numero_insee": "62564" - } - }, - { - "pk": 33946, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MENCAS", - "center": "POINT (586387.0285474099218845 2618050.6565450010821223)", - "surface": 2030000, - "canton": null, - "numero_insee": "62565" - } - }, - { - "pk": 10839, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MENNEVILLE", - "center": "POINT (566366.6904745142674074 2631189.9109384808689356)", - "surface": 5340000, - "canton": null, - "numero_insee": "62566" - } - }, - { - "pk": 33682, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MENTQUE-NORTBECOURT", - "center": "POINT (582683.4221992592792958 2642132.0046189129352570)", - "surface": 10900000, - "canton": null, - "numero_insee": "62567" - } - }, - { - "pk": 25349, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MERCATEL", - "center": "POINT (632213.4224465301958844 2582116.0723797008395195)", - "surface": 5800000, - "canton": null, - "numero_insee": "62568" - } - }, - { - "pk": 36029, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MERCK-SAINT-LIEVIN", - "center": "POINT (583712.0752498720539734 2626832.8167454404756427)", - "surface": 11990000, - "canton": null, - "numero_insee": "62569" - } - }, - { - "pk": 34348, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MERICOURT", - "center": "POINT (637861.1417492026230320 2600573.6883372124284506)", - "surface": 7670000, - "canton": null, - "numero_insee": "62570" - } - }, - { - "pk": 29180, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MERLIMONT", - "center": "POINT (548062.3262474578805268 2606624.1636701505631208)", - "surface": 20430000, - "canton": null, - "numero_insee": "62571" - } - }, - { - "pk": 26355, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "METZ-EN-COUTURE", - "center": "POINT (651984.0858555502491072 2563171.9640514119528234)", - "surface": 10610000, - "canton": null, - "numero_insee": "62572" - } - }, - { - "pk": 24601, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MEURCHIN", - "center": "POINT (639572.6290112641872838 2611193.7714915992692113)", - "surface": 4620000, - "canton": null, - "numero_insee": "62573" - } - }, - { - "pk": 11085, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MINGOVAL", - "center": "POINT (616472.1576122519327328 2597892.3404465764760971)", - "surface": 3910000, - "canton": null, - "numero_insee": "62574" - } - }, - { - "pk": 35021, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONCHEAUX-LES-FREVENT", - "center": "POINT (601922.4053000541171059 2590966.4167961082421243)", - "surface": 4030000, - "canton": null, - "numero_insee": "62576" - } - }, - { - "pk": 5145, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONCHEL-SUR-CANCHE", - "center": "POINT (591526.6855214600218460 2589778.5908542959950864)", - "surface": 5010000, - "canton": null, - "numero_insee": "62577" - } - }, - { - "pk": 8782, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONCHIET", - "center": "POINT (620403.5167204528115690 2582516.9719538926146924)", - "surface": 2750000, - "canton": null, - "numero_insee": "62578" - } - }, - { - "pk": 24201, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONCHY-AU-BOIS", - "center": "POINT (622959.4274371571373194 2576034.8551809662021697)", - "surface": 11080000, - "canton": null, - "numero_insee": "62579" - } - }, - { - "pk": 27793, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONCHY-BRETON", - "center": "POINT (607046.7321156727848575 2600314.4897200623527169)", - "surface": 6810000, - "canton": null, - "numero_insee": "62580" - } - }, - { - "pk": 25171, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONCHY-CAYEUX", - "center": "POINT (596007.1684449673630297 2604324.0211440883576870)", - "surface": 6340000, - "canton": null, - "numero_insee": "62581" - } - }, - { - "pk": 34350, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONCHY-LE-PREUX", - "center": "POINT (639885.1064712712541223 2585982.7876329761929810)", - "surface": 9440000, - "canton": null, - "numero_insee": "62582" - } - }, - { - "pk": 29973, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONDICOURT", - "center": "POINT (609357.8336197434691712 2575320.1794554358348250)", - "surface": 5050000, - "canton": null, - "numero_insee": "62583" - } - }, - { - "pk": 25161, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONT-BERNANCHON", - "center": "POINT (618473.8202828892972320 2621621.7521917540580034)", - "surface": 11440000, - "canton": null, - "numero_insee": "62584" - } - }, - { - "pk": 28041, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONTCAVREL", - "center": "POINT (562908.1559635947924107 2614052.0912747802212834)", - "surface": 9690000, - "canton": null, - "numero_insee": "62585" - } - }, - { - "pk": 29722, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONTENESCOURT", - "center": "POINT (620852.4306775145232677 2588624.1076855873689055)", - "surface": 5150000, - "canton": null, - "numero_insee": "62586" - } - }, - { - "pk": 37382, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONTIGNY-EN-GOHELLE", - "center": "POINT (642236.2174898023949936 2603812.2728268899954855)", - "surface": 3510000, - "canton": null, - "numero_insee": "62587" - } - }, - { - "pk": 19150, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONTREUIL", - "center": "POINT (559757.7114354068180546 2607922.5187961338087916)", - "surface": 2820000, - "canton": null, - "numero_insee": "62588" - } - }, - { - "pk": 23090, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONT-SAINT-ELOI", - "center": "POINT (625201.4993598040891811 2594964.1306967539712787)", - "surface": 15810000, - "canton": null, - "numero_insee": "62589" - } - }, - { - "pk": 34883, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MONTS-EN-TERNOIS", - "center": "POINT (603517.2865237835794687 2591680.1885978146456182)", - "surface": 3410000, - "canton": null, - "numero_insee": "62590" - } - }, - { - "pk": 23144, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MORCHIES", - "center": "POINT (644210.2495729943038896 2571411.1100293146446347)", - "surface": 6700000, - "canton": null, - "numero_insee": "62591" - } - }, - { - "pk": 34377, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MORINGHEM", - "center": "POINT (585093.6856859951512888 2641051.6470292769372463)", - "surface": 9970000, - "canton": null, - "numero_insee": "62592" - } - }, - { - "pk": 30192, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MORVAL", - "center": "POINT (638109.1860825323965400 2559252.8282435680739582)", - "surface": 2430000, - "canton": null, - "numero_insee": "62593" - } - }, - { - "pk": 21642, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MORY", - "center": "POINT (637288.3158056294778362 2573554.0180277125909925)", - "surface": 7380000, - "canton": null, - "numero_insee": "62594" - } - }, - { - "pk": 30581, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MOULLE", - "center": "POINT (588272.4313522680895403 2643779.6512187770567834)", - "surface": 5450000, - "canton": null, - "numero_insee": "62595" - } - }, - { - "pk": 8707, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MOURIEZ", - "center": "POINT (572775.8918724367395043 2594624.2146436199545860)", - "surface": 15800000, - "canton": null, - "numero_insee": "62596" - } - }, - { - "pk": 32334, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MOYENNEVILLE", - "center": "POINT (631063.3791532152099535 2576103.0523350476287305)", - "surface": 6500000, - "canton": null, - "numero_insee": "62597" - } - }, - { - "pk": 32725, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "MUNCQ-NIEURLET", - "center": "POINT (584523.0442722236039117 2649451.0760093452408910)", - "surface": 11520000, - "canton": null, - "numero_insee": "62598" - } - }, - { - "pk": 32286, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NABRINGHEN", - "center": "POINT (566403.9679638226516545 2638694.0467059961520135)", - "surface": 4150000, - "canton": null, - "numero_insee": "62599" - } - }, - { - "pk": 14056, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEDONCHEL", - "center": "POINT (601223.1323798482771963 2614673.2626201920211315)", - "surface": 3780000, - "canton": null, - "numero_insee": "62601" - } - }, - { - "pk": 28114, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEMPONT-SAINT-FIRMIN", - "center": "POINT (557352.7165805748663843 2596396.2404226646758616)", - "surface": 4460000, - "canton": null, - "numero_insee": "62602" - } - }, - { - "pk": 12569, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NESLES", - "center": "POINT (552006.2735520222922787 2625567.0341888330876827)", - "surface": 5080000, - "canton": null, - "numero_insee": "62603" - } - }, - { - "pk": 37135, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUFCHATEL-HARDELOT", - "center": "POINT (548909.8979549009818584 2624940.8623073007911444)", - "surface": 21050000, - "canton": null, - "numero_insee": "62604" - } - }, - { - "pk": 23923, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEULETTE", - "center": "POINT (587852.0008785027312115 2598452.5097461943514645)", - "surface": 1430000, - "canton": null, - "numero_insee": "62605" - } - }, - { - "pk": 32469, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUVE-CHAPELLE", - "center": "POINT (631383.8404912656405941 2621230.1124454191885889)", - "surface": 1890000, - "canton": null, - "numero_insee": "62606" - } - }, - { - "pk": 17852, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUVILLE-AU-CORNET", - "center": "POINT (602304.1177985974354669 2593170.8210879662074149)", - "surface": 2310000, - "canton": null, - "numero_insee": "62607" - } - }, - { - "pk": 6832, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUVILLE-BOURJONVAL", - "center": "POINT (649278.5213690127711743 2563649.4283991362899542)", - "surface": 3100000, - "canton": null, - "numero_insee": "62608" - } - }, - { - "pk": 27792, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUVILLE-SAINT-VAAST", - "center": "POINT (629796.0925553485285491 2595903.2861711238510907)", - "surface": 12710000, - "canton": null, - "numero_insee": "62609" - } - }, - { - "pk": 22623, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUVILLE-SOUS-MONTREUIL", - "center": "POINT (561445.9495570572325960 2609437.4308376149274409)", - "surface": 8750000, - "canton": null, - "numero_insee": "62610" - } - }, - { - "pk": 24409, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUVILLE-VITASSE", - "center": "POINT (634501.8947443817742169 2583636.1723344204947352)", - "surface": 7050000, - "canton": null, - "numero_insee": "62611" - } - }, - { - "pk": 25728, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NEUVIREUIL", - "center": "POINT (641206.5261336881667376 2595399.0630349181592464)", - "surface": 4390000, - "canton": null, - "numero_insee": "62612" - } - }, - { - "pk": 24102, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NIELLES-LES-BLEQUIN", - "center": "POINT (578272.7979774459963664 2631189.5152806951664388)", - "surface": 12760000, - "canton": null, - "numero_insee": "62613" - } - }, - { - "pk": 27024, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NIELLES-LES-ARDRES", - "center": "POINT (576709.6560083801159635 2650586.2207152475602925)", - "surface": 4510000, - "canton": null, - "numero_insee": "62614" - } - }, - { - "pk": 20371, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NIELLES-LES-CALAIS", - "center": "POINT (564448.3896412906469777 2657186.9222887428477407)", - "surface": 2500000, - "canton": null, - "numero_insee": "62615" - } - }, - { - "pk": 28775, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOEUX-LES-AUXI", - "center": "POINT (588884.1138808710966259 2582752.5819162507541478)", - "surface": 6110000, - "canton": null, - "numero_insee": "62616" - } - }, - { - "pk": 8892, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOEUX-LES-MINES", - "center": "POINT (623182.7753528439207003 2608954.6708525083959103)", - "surface": 8940000, - "canton": null, - "numero_insee": "62617" - } - }, - { - "pk": 32139, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NORDAUSQUES", - "center": "POINT (582145.4870514919748530 2646629.7567841820418835)", - "surface": 5970000, - "canton": null, - "numero_insee": "62618" - } - }, - { - "pk": 10559, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOREUIL", - "center": "POINT (643078.5081280856393278 2575103.6471823570318520)", - "surface": 4900000, - "canton": null, - "numero_insee": "62619" - } - }, - { - "pk": 37754, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NORRENT-FONTES", - "center": "POINT (605168.6692860979819670 2621409.8988745259121060)", - "surface": 5680000, - "canton": null, - "numero_insee": "62620" - } - }, - { - "pk": 8401, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NORTKERQUE", - "center": "POINT (578582.8167101459112018 2653903.5425319643691182)", - "surface": 13120000, - "canton": null, - "numero_insee": "62621" - } - }, - { - "pk": 34604, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NORT-LEULINGHEM", - "center": "POINT (582462.3801794759929180 2644631.4098017471842468)", - "surface": 3510000, - "canton": null, - "numero_insee": "62622" - } - }, - { - "pk": 27829, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOUVELLE-EGLISE", - "center": "POINT (579433.7594490317860618 2659813.5704465284943581)", - "surface": 9290000, - "canton": null, - "numero_insee": "62623" - } - }, - { - "pk": 12281, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOYELLES-GODAULT", - "center": "POINT (646747.5889758728444576 2602749.7124842880293727)", - "surface": 5480000, - "canton": null, - "numero_insee": "62624" - } - }, - { - "pk": 15790, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOYELLES-LES-HUMIERES", - "center": "POINT (588658.2480600557755679 2597758.8906161980703473)", - "surface": 1160000, - "canton": null, - "numero_insee": "62625" - } - }, - { - "pk": 37383, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOYELLES-LES-VERMELLES", - "center": "POINT (627770.5811715342570096 2610694.1757769151590765)", - "surface": 2570000, - "canton": null, - "numero_insee": "62626" - } - }, - { - "pk": 33333, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOYELLES-SOUS-BELLONNE", - "center": "POINT (648851.4552472323412076 2590560.8403821433894336)", - "surface": 4260000, - "canton": null, - "numero_insee": "62627" - } - }, - { - "pk": 9155, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOYELLES-SOUS-LENS", - "center": "POINT (638333.5610887449001893 2603879.4414343964308500)", - "surface": 3720000, - "canton": null, - "numero_insee": "62628" - } - }, - { - "pk": 4257, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOYELLETTE", - "center": "POINT (618146.9351384412730113 2589101.6308383364230394)", - "surface": 2100000, - "canton": null, - "numero_insee": "62629" - } - }, - { - "pk": 27402, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NOYELLE-VION", - "center": "POINT (614850.4059077750425786 2588473.5890369666740298)", - "surface": 5360000, - "canton": null, - "numero_insee": "62630" - } - }, - { - "pk": 7289, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "NUNCQ-HAUTECOTE", - "center": "POINT (596425.6642068896908313 2590219.9031181768514216)", - "surface": 6700000, - "canton": null, - "numero_insee": "62631" - } - }, - { - "pk": 8126, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OBLINGHEM", - "center": "POINT (618209.0152271833503619 2617417.3296345220878720)", - "surface": 1270000, - "canton": null, - "numero_insee": "62632" - } - }, - { - "pk": 8077, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OEUF-EN-TERNOIS", - "center": "POINT (591071.1223251761402935 2596378.3642893964424729)", - "surface": 8810000, - "canton": null, - "numero_insee": "62633" - } - }, - { - "pk": 8274, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OFFEKERQUE", - "center": "POINT (577633.0052234984468669 2659798.4888738752342761)", - "surface": 13410000, - "canton": null, - "numero_insee": "62634" - } - }, - { - "pk": 26005, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OFFIN", - "center": "POINT (572587.0750711252912879 2605228.3455872484482825)", - "surface": 5330000, - "canton": null, - "numero_insee": "62635" - } - }, - { - "pk": 5045, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OFFRETHUN", - "center": "POINT (554855.4763180883601308 2643800.1211160146631300)", - "surface": 2670000, - "canton": null, - "numero_insee": "62636" - } - }, - { - "pk": 30410, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OIGNIES", - "center": "POINT (646704.5677270431770012 2607852.0777349355630577)", - "surface": 5500000, - "canton": null, - "numero_insee": "62637" - } - }, - { - "pk": 19539, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OISY-LE-VERGER", - "center": "POINT (656109.7626904021017253 2584118.4998556016944349)", - "surface": 11390000, - "canton": null, - "numero_insee": "62638" - } - }, - { - "pk": 35742, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OPPY", - "center": "POINT (639310.6871211543912068 2594782.7622806695289910)", - "surface": 4910000, - "canton": null, - "numero_insee": "62639" - } - }, - { - "pk": 21207, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ORVILLE", - "center": "POINT (605898.1339145458769053 2570288.3137689880095422)", - "surface": 11150000, - "canton": null, - "numero_insee": "62640" - } - }, - { - "pk": 34103, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OSTREVILLE", - "center": "POINT (604348.8285999321378767 2599891.6177494637668133)", - "surface": 3930000, - "canton": null, - "numero_insee": "62641" - } - }, - { - "pk": 6937, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OURTON", - "center": "POINT (609594.1573556237854064 2606739.3183483979664743)", - "surface": 5370000, - "canton": null, - "numero_insee": "62642" - } - }, - { - "pk": 11532, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OUTREAU", - "center": "POINT (547234.0025763685116544 2633931.4984378842636943)", - "surface": 7090000, - "canton": null, - "numero_insee": "62643" - } - }, - { - "pk": 10317, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OUVE-WIRQUIN", - "center": "POINT (586298.1418523784959689 2628655.4182116738520563)", - "surface": 5430000, - "canton": null, - "numero_insee": "62644" - } - }, - { - "pk": 6011, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "OYE-PLAGE", - "center": "POINT (578987.5072564458241686 2665312.5107725448906422)", - "surface": 33980000, - "canton": null, - "numero_insee": "62645" - } - }, - { - "pk": 35119, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PALLUEL", - "center": "POINT (654194.4975029462948442 2585803.2759967064484954)", - "surface": 2820000, - "canton": null, - "numero_insee": "62646" - } - }, - { - "pk": 24500, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE PARCQ", - "center": "POINT (582047.5996302895946428 2598603.9727370045147836)", - "surface": 9290000, - "canton": null, - "numero_insee": "62647" - } - }, - { - "pk": 33942, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PARENTY", - "center": "POINT (561939.1478693789104000 2622248.2832747856155038)", - "surface": 13060000, - "canton": null, - "numero_insee": "62648" - } - }, - { - "pk": 10159, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PAS-EN-ARTOIS", - "center": "POINT (610978.7903267904184759 2572932.4534291848540306)", - "surface": 10870000, - "canton": null, - "numero_insee": "62649" - } - }, - { - "pk": 31815, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PELVES", - "center": "POINT (641468.1683226367458701 2588097.2821136899292469)", - "surface": 6650000, - "canton": null, - "numero_insee": "62650" - } - }, - { - "pk": 28684, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PENIN", - "center": "POINT (610712.3015177790075541 2592741.1646161056123674)", - "surface": 9270000, - "canton": null, - "numero_insee": "62651" - } - }, - { - "pk": 11524, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PERNES", - "center": "POINT (604662.4869478871114552 2610199.7590539916418493)", - "surface": 4620000, - "canton": null, - "numero_insee": "62652" - } - }, - { - "pk": 11495, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PERNES-LES-BOULOGNE", - "center": "POINT (554690.4978016777895391 2639596.6247643744572997)", - "surface": 7810000, - "canton": null, - "numero_insee": "62653" - } - }, - { - "pk": 9417, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PEUPLINGUES", - "center": "POINT (559239.5081181142013520 2657943.7623213264159858)", - "surface": 10510000, - "canton": null, - "numero_insee": "62654" - } - }, - { - "pk": 19611, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PIERREMONT", - "center": "POINT (594139.8539321749703959 2600306.2084978320635855)", - "surface": 6150000, - "canton": null, - "numero_insee": "62655" - } - }, - { - "pk": 26566, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PIHEM", - "center": "POINT (591078.4642801305744797 2631296.8314267843961716)", - "surface": 7190000, - "canton": null, - "numero_insee": "62656" - } - }, - { - "pk": 36791, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PIHEN-LES-GUINES", - "center": "POINT (561479.7469615025911480 2653260.1751629551872611)", - "surface": 9390000, - "canton": null, - "numero_insee": "62657" - } - }, - { - "pk": 33943, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PITTEFAUX", - "center": "POINT (553877.6112595499726012 2641090.5910795116797090)", - "surface": 2410000, - "canton": null, - "numero_insee": "62658" - } - }, - { - "pk": 11826, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PLANQUES", - "center": "POINT (582369.8302330238511786 2607911.6581626385450363)", - "surface": 6240000, - "canton": null, - "numero_insee": "62659" - } - }, - { - "pk": 27198, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PLOUVAIN", - "center": "POINT (641450.4627401073230430 2590198.2840050118975341)", - "surface": 2390000, - "canton": null, - "numero_insee": "62660" - } - }, - { - "pk": 12209, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BOUIN-PLUMOISON", - "center": "POINT (574649.1492049725493416 2597941.6845649732276797)", - "surface": 6130000, - "canton": null, - "numero_insee": "62661" - } - }, - { - "pk": 5133, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "POLINCOVE", - "center": "POINT (583901.8296526699559763 2651947.1122940457426012)", - "surface": 4850000, - "canton": null, - "numero_insee": "62662" - } - }, - { - "pk": 28221, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "POMMERA", - "center": "POINT (607562.8365664611337706 2574604.7096930406987667)", - "surface": 4380000, - "canton": null, - "numero_insee": "62663" - } - }, - { - "pk": 11068, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "POMMIER", - "center": "POINT (618455.5492325411178172 2576197.0887300758622587)", - "surface": 5780000, - "canton": null, - "numero_insee": "62664" - } - }, - { - "pk": 7225, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE PONCHEL", - "center": "POINT (581964.8567120315274224 2584595.6397780068218708)", - "surface": 4680000, - "canton": null, - "numero_insee": "62665" - } - }, - { - "pk": 31591, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PONT-A-VENDIN", - "center": "POINT (639190.1469831884605810 2609089.4341371674090624)", - "surface": 2070000, - "canton": null, - "numero_insee": "62666" - } - }, - { - "pk": 26754, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE PORTEL", - "center": "POINT (546119.3189950226806104 2635623.0591372172348201)", - "surface": 3860000, - "canton": null, - "numero_insee": "62667" - } - }, - { - "pk": 26241, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PREDEFIN", - "center": "POINT (594440.1711920320522040 2612215.0782036771997809)", - "surface": 3900000, - "canton": null, - "numero_insee": "62668" - } - }, - { - "pk": 9671, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PRESSY", - "center": "POINT (603773.8331223962595686 2608791.5539489584043622)", - "surface": 4410000, - "canton": null, - "numero_insee": "62669" - } - }, - { - "pk": 28707, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PREURES", - "center": "POINT (567661.8030963354976848 2619894.8961306959390640)", - "surface": 16030000, - "canton": null, - "numero_insee": "62670" - } - }, - { - "pk": 28838, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PRONVILLE", - "center": "POINT (647985.1205060192150995 2574644.7323309890925884)", - "surface": 6180000, - "canton": null, - "numero_insee": "62671" - } - }, - { - "pk": 24394, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "PUISIEUX", - "center": "POINT (625229.5278427524026483 2567849.3441192945465446)", - "surface": 11690000, - "canton": null, - "numero_insee": "62672" - } - }, - { - "pk": 26006, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUEANT", - "center": "POINT (646374.2157770305639133 2575831.8210143484175205)", - "surface": 9130000, - "canton": null, - "numero_insee": "62673" - } - }, - { - "pk": 37255, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUELMES", - "center": "POINT (585120.5155872390605509 2637850.2521964428015053)", - "surface": 9880000, - "canton": null, - "numero_insee": "62674" - } - }, - { - "pk": 3296, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUERCAMPS", - "center": "POINT (579401.2640400452073663 2639803.3477290752343833)", - "surface": 1950000, - "canton": null, - "numero_insee": "62675" - } - }, - { - "pk": 10431, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUERNES", - "center": "POINT (602153.0396329988725483 2623085.4641890879720449)", - "surface": 2790000, - "canton": null, - "numero_insee": "62676" - } - }, - { - "pk": 36769, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE QUESNOY-EN-ARTOIS", - "center": "POINT (578692.9278420851333067 2592972.8342611729167402)", - "surface": 8020000, - "canton": null, - "numero_insee": "62677" - } - }, - { - "pk": 23986, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUESQUES", - "center": "POINT (572044.0941350121283904 2634238.9519551885314286)", - "surface": 14070000, - "canton": null, - "numero_insee": "62678" - } - }, - { - "pk": 12077, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUESTRECQUES", - "center": "POINT (558071.3753623543307185 2630120.0340626710094512)", - "surface": 5950000, - "canton": null, - "numero_insee": "62679" - } - }, - { - "pk": 9790, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUIERY-LA-MOTTE", - "center": "POINT (646096.1859150296077132 2596941.0917908414267004)", - "surface": 8970000, - "canton": null, - "numero_insee": "62680" - } - }, - { - "pk": 11603, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUIESTEDE", - "center": "POINT (599378.7785413637757301 2631766.6687536630779505)", - "surface": 2860000, - "canton": null, - "numero_insee": "62681" - } - }, - { - "pk": 28777, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUILEN", - "center": "POINT (571304.4595952261006460 2615022.8081070333719254)", - "surface": 4090000, - "canton": null, - "numero_insee": "62682" - } - }, - { - "pk": 32356, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "QUOEUX-HAUT-MAINIL", - "center": "POINT (583424.4992022076621652 2589510.5622185091488063)", - "surface": 12060000, - "canton": null, - "numero_insee": "62683" - } - }, - { - "pk": 13496, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RACQUINGHEM", - "center": "POINT (601666.3583005765685812 2633386.6886129332706332)", - "surface": 5450000, - "canton": null, - "numero_insee": "62684" - } - }, - { - "pk": 11352, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RADINGHEM", - "center": "POINT (584396.1821319170994684 2616833.3419826617464423)", - "surface": 4890000, - "canton": null, - "numero_insee": "62685" - } - }, - { - "pk": 33160, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RAMECOURT", - "center": "POINT (597774.2804695204831660 2596434.5938508063554764)", - "surface": 8040000, - "canton": null, - "numero_insee": "62686" - } - }, - { - "pk": 10494, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RANG-DU-FLIERS", - "center": "POINT (549894.0764765088679269 2602937.4818284274078906)", - "surface": 10680000, - "canton": null, - "numero_insee": "62688" - } - }, - { - "pk": 4037, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RANSART", - "center": "POINT (624236.4937562383711338 2578847.1597204501740634)", - "surface": 7500000, - "canton": null, - "numero_insee": "62689" - } - }, - { - "pk": 26425, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RAYE-SUR-AUTHIE", - "center": "POINT (573017.0233815837418661 2589723.5616181124933064)", - "surface": 5920000, - "canton": null, - "numero_insee": "62690" - } - }, - { - "pk": 24984, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REBECQUES", - "center": "POINT (597507.3199901761254296 2628249.1647539366967976)", - "surface": 5010000, - "canton": null, - "numero_insee": "62691" - } - }, - { - "pk": 36220, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REBERGUES", - "center": "POINT (572796.7136007772060111 2639948.1475625936873257)", - "surface": 4850000, - "canton": null, - "numero_insee": "62692" - } - }, - { - "pk": 24687, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REBREUVE-RANCHICOURT", - "center": "POINT (615019.3611714233411476 2604083.4646054869517684)", - "surface": 10840000, - "canton": null, - "numero_insee": "62693" - } - }, - { - "pk": 25729, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REBREUVE-SUR-CANCHE", - "center": "POINT (600266.9420586397172883 2585549.5587654840201139)", - "surface": 8370000, - "canton": null, - "numero_insee": "62694" - } - }, - { - "pk": 7639, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REBREUVIETTE", - "center": "POINT (601875.2692626500502229 2584662.5630676071159542)", - "surface": 8640000, - "canton": null, - "numero_insee": "62695" - } - }, - { - "pk": 8797, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RECLINGHEM", - "center": "POINT (588473.7225331367226318 2619769.0380544266663492)", - "surface": 6130000, - "canton": null, - "numero_insee": "62696" - } - }, - { - "pk": 15307, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RECOURT", - "center": "POINT (649299.7402731663314626 2584861.4892991152592003)", - "surface": 3370000, - "canton": null, - "numero_insee": "62697" - } - }, - { - "pk": 4569, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RECQUES-SUR-COURSE", - "center": "POINT (560308.6400739917298779 2613830.2502932013012469)", - "surface": 4770000, - "canton": null, - "numero_insee": "62698" - } - }, - { - "pk": 24307, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RECQUES-SUR-HEM", - "center": "POINT (581824.4042335181729868 2649128.3145824992097914)", - "surface": 5430000, - "canton": null, - "numero_insee": "62699" - } - }, - { - "pk": 30148, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REGNAUVILLE", - "center": "POINT (576005.8885122367646545 2591249.4047529725357890)", - "surface": 4200000, - "canton": null, - "numero_insee": "62700" - } - }, - { - "pk": 11078, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RELY", - "center": "POINT (601678.0096949726575986 2620079.9133621696382761)", - "surface": 4850000, - "canton": null, - "numero_insee": "62701" - } - }, - { - "pk": 9298, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REMILLY-WIRQUIN", - "center": "POINT (588483.1846045108977705 2630574.7117960625328124)", - "surface": 5320000, - "canton": null, - "numero_insee": "62702" - } - }, - { - "pk": 12233, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "REMY", - "center": "POINT (644398.2286777602275833 2584720.1064530224539340)", - "surface": 3620000, - "canton": null, - "numero_insee": "62703" - } - }, - { - "pk": 25378, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RENTY", - "center": "POINT (580963.6260998370125890 2620506.5178603446111083)", - "surface": 15780000, - "canton": null, - "numero_insee": "62704" - } - }, - { - "pk": 16446, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RETY", - "center": "POINT (560953.0965112446574494 2644451.3868851154111326)", - "surface": 18390000, - "canton": null, - "numero_insee": "62705" - } - }, - { - "pk": 19277, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RICHEBOURG", - "center": "POINT (629088.6986476706806570 2620510.4264635266736150)", - "surface": 17440000, - "canton": null, - "numero_insee": "62706" - } - }, - { - "pk": 26967, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RIENCOURT-LES-BAPAUME", - "center": "POINT (638953.1614816811634228 2565963.7567270952276886)", - "surface": 3390000, - "canton": null, - "numero_insee": "62708" - } - }, - { - "pk": 9895, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RIENCOURT-LES-CAGNICOURT", - "center": "POINT (644657.3617696150904521 2577718.4079919429495931)", - "surface": 4800000, - "canton": null, - "numero_insee": "62709" - } - }, - { - "pk": 6012, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RIMBOVAL", - "center": "POINT (575320.5245547089725733 2613355.5307758464477956)", - "surface": 7180000, - "canton": null, - "numero_insee": "62710" - } - }, - { - "pk": 36107, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RINXENT", - "center": "POINT (557838.3785502220271155 2646026.1520731183700264)", - "surface": 8460000, - "canton": null, - "numero_insee": "62711" - } - }, - { - "pk": 37598, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RIVIERE", - "center": "POINT (625011.6289774355245754 2581855.3467972436919808)", - "surface": 12050000, - "canton": null, - "numero_insee": "62712" - } - }, - { - "pk": 14167, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROBECQ", - "center": "POINT (615167.2883451031520963 2622194.2667469978332520)", - "surface": 10480000, - "canton": null, - "numero_insee": "62713" - } - }, - { - "pk": 35243, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROCQUIGNY", - "center": "POINT (642085.8969852621667087 2562288.0500929835252464)", - "surface": 3730000, - "canton": null, - "numero_insee": "62715" - } - }, - { - "pk": 24492, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RODELINGHEM", - "center": "POINT (571320.7479209123412147 2648940.3117401404306293)", - "surface": 4390000, - "canton": null, - "numero_insee": "62716" - } - }, - { - "pk": 35988, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROELLECOURT", - "center": "POINT (603572.8138159783557057 2596983.5355740580707788)", - "surface": 9450000, - "canton": null, - "numero_insee": "62717" - } - }, - { - "pk": 13382, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROEUX", - "center": "POINT (640154.0587378588970751 2589687.0858921296894550)", - "surface": 4970000, - "canton": null, - "numero_insee": "62718" - } - }, - { - "pk": 22417, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROLLANCOURT", - "center": "POINT (584922.1308481302112341 2601829.7833909499458969)", - "surface": 11610000, - "canton": null, - "numero_insee": "62719" - } - }, - { - "pk": 10939, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROMBLY", - "center": "POINT (603760.4784125555306673 2622298.5433702790178359)", - "surface": 1170000, - "canton": null, - "numero_insee": "62720" - } - }, - { - "pk": 36658, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROQUETOIRE", - "center": "POINT (600092.5229671295965090 2630171.8378948322497308)", - "surface": 10900000, - "canton": null, - "numero_insee": "62721" - } - }, - { - "pk": 3931, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROUGEFAY", - "center": "POINT (588050.1783387296600267 2586747.7958929068408906)", - "surface": 3810000, - "canton": null, - "numero_insee": "62722" - } - }, - { - "pk": 3164, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROUSSENT", - "center": "POINT (559945.5791498715989292 2597418.4556206762790680)", - "surface": 5220000, - "canton": null, - "numero_insee": "62723" - } - }, - { - "pk": 36905, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROUVROY", - "center": "POINT (640462.3576662677805871 2600595.6045445646159351)", - "surface": 6500000, - "canton": null, - "numero_insee": "62724" - } - }, - { - "pk": 21202, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ROYON", - "center": "POINT (575960.1713590204017237 2608658.3970330827869475)", - "surface": 7500000, - "canton": null, - "numero_insee": "62725" - } - }, - { - "pk": 30659, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RUISSEAUVILLE", - "center": "POINT (584254.7784563757013530 2609828.4625302166678011)", - "surface": 3900000, - "canton": null, - "numero_insee": "62726" - } - }, - { - "pk": 8377, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RUITZ", - "center": "POINT (617988.7907590084942058 2607910.4569957451894879)", - "surface": 4870000, - "canton": null, - "numero_insee": "62727" - } - }, - { - "pk": 10229, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RUMAUCOURT", - "center": "POINT (652019.6056289656553417 2582683.2147726719267666)", - "surface": 5500000, - "canton": null, - "numero_insee": "62728" - } - }, - { - "pk": 12995, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RUMILLY", - "center": "POINT (577361.1623746276600286 2620576.3963633771054447)", - "surface": 7090000, - "canton": null, - "numero_insee": "62729" - } - }, - { - "pk": 13579, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RUMINGHEM", - "center": "POINT (588008.6060140968766063 2651381.2350290771573782)", - "surface": 13920000, - "canton": null, - "numero_insee": "62730" - } - }, - { - "pk": 24395, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "RUYAULCOURT", - "center": "POINT (648663.8793511287076399 2565345.2113665677607059)", - "surface": 6480000, - "canton": null, - "numero_insee": "62731" - } - }, - { - "pk": 8376, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SACHIN", - "center": "POINT (602055.4120952105149627 2610878.2415354968979955)", - "surface": 5970000, - "canton": null, - "numero_insee": "62732" - } - }, - { - "pk": 31390, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAILLY-AU-BOIS", - "center": "POINT (618712.0111152227036655 2569495.4844106114469469)", - "surface": 9390000, - "canton": null, - "numero_insee": "62733" - } - }, - { - "pk": 25537, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAILLY-EN-OSTREVENT", - "center": "POINT (646570.6056827915599570 2588140.2921345271170139)", - "surface": 7590000, - "canton": null, - "numero_insee": "62734" - } - }, - { - "pk": 13507, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAILLY-LABOURSE", - "center": "POINT (625959.6522470158524811 2611879.5720161236822605)", - "surface": 6110000, - "canton": null, - "numero_insee": "62735" - } - }, - { - "pk": 6990, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAILLY-SUR-LA-LYS", - "center": "POINT (632320.2716788023244590 2628841.9366570413112640)", - "surface": 10000000, - "canton": null, - "numero_insee": "62736" - } - }, - { - "pk": 14344, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINS-EN-GOHELLE", - "center": "POINT (624706.1934155472554266 2606266.0487149013206363)", - "surface": 5750000, - "canton": null, - "numero_insee": "62737" - } - }, - { - "pk": 29268, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINS-LES-FRESSIN", - "center": "POINT (579462.6243447583401576 2608587.6758664241060615)", - "surface": 6770000, - "canton": null, - "numero_insee": "62738" - } - }, - { - "pk": 34654, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINS-LES-MARQUION", - "center": "POINT (653069.0444311738247052 2576888.8434610641561449)", - "surface": 6330000, - "canton": null, - "numero_insee": "62739" - } - }, - { - "pk": 5845, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINS-LES-PERNES", - "center": "POINT (600867.4573407433927059 2609367.4737292551435530)", - "surface": 4270000, - "canton": null, - "numero_insee": "62740" - } - }, - { - "pk": 6229, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-AMAND", - "center": "POINT (616065.3120113351615146 2574876.2664820607751608)", - "surface": 5490000, - "canton": null, - "numero_insee": "62741" - } - }, - { - "pk": 11679, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-AUBIN", - "center": "POINT (552463.5297616173047572 2606760.9761599600315094)", - "surface": 4470000, - "canton": null, - "numero_insee": "62742" - } - }, - { - "pk": 6873, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINTE-AUSTREBERTHE", - "center": "POINT (579068.8159924148349091 2595877.5583457052707672)", - "surface": 3710000, - "canton": null, - "numero_insee": "62743" - } - }, - { - "pk": 24481, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINTE-CATHERINE", - "center": "POINT (630336.7541534197516739 2591105.2240960644558072)", - "surface": 4440000, - "canton": null, - "numero_insee": "62744" - } - }, - { - "pk": 32111, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-DENOEUX", - "center": "POINT (569552.1945456344401464 2609205.0771832726895809)", - "surface": 4070000, - "canton": null, - "numero_insee": "62745" - } - }, - { - "pk": 32431, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-ETIENNE-AU-MONT", - "center": "POINT (547864.3398898942396045 2630334.9175621611066163)", - "surface": 13950000, - "canton": null, - "numero_insee": "62746" - } - }, - { - "pk": 10551, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-FLORIS", - "center": "POINT (617140.4317371181678027 2625512.5673979786224663)", - "surface": 4100000, - "canton": null, - "numero_insee": "62747" - } - }, - { - "pk": 20697, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-FOLQUIN", - "center": "POINT (585031.0751115072052926 2660460.7593596265651286)", - "surface": 17950000, - "canton": null, - "numero_insee": "62748" - } - }, - { - "pk": 34444, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-GEORGES", - "center": "POINT (581175.6741616519866511 2595194.8272510417737067)", - "surface": 9880000, - "canton": null, - "numero_insee": "62749" - } - }, - { - "pk": 24590, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-HILAIRE-COTTES", - "center": "POINT (604186.6993516432121396 2619200.5046834982931614)", - "surface": 7350000, - "canton": null, - "numero_insee": "62750" - } - }, - { - "pk": 26567, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-INGLEVERT", - "center": "POINT (558178.3453871329547837 2653232.5767172011546791)", - "surface": 6650000, - "canton": null, - "numero_insee": "62751" - } - }, - { - "pk": 14548, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-JOSSE", - "center": "POINT (552138.3183331036707386 2609759.8552613509818912)", - "surface": 20990000, - "canton": null, - "numero_insee": "62752" - } - }, - { - "pk": 26536, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-LAURENT-BLANGY", - "center": "POINT (633845.1582899249624461 2590334.3257477963343263)", - "surface": 9880000, - "canton": null, - "numero_insee": "62753" - } - }, - { - "pk": 30215, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-LEGER", - "center": "POINT (636762.7886046681087464 2576551.2702636267058551)", - "surface": 7480000, - "canton": null, - "numero_insee": "62754" - } - }, - { - "pk": 6502, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-LEONARD", - "center": "POINT (549437.4790689398068935 2633649.7447342975065112)", - "surface": 3520000, - "canton": null, - "numero_insee": "62755" - } - }, - { - "pk": 24241, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINTE-MARIE-KERQUE", - "center": "POINT (586873.7562001612968743 2655473.7496834211051464)", - "surface": 18650000, - "canton": null, - "numero_insee": "62756" - } - }, - { - "pk": 28970, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-MARTIN-AU-LAERT", - "center": "POINT (592403.5696639539673924 2640312.5268556554801762)", - "surface": 4820000, - "canton": null, - "numero_insee": "62757" - } - }, - { - "pk": 19997, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-MARTIN-BOULOGNE", - "center": "POINT (551212.3686073850840330 2636766.1482955664396286)", - "surface": 12900000, - "canton": null, - "numero_insee": "62758" - } - }, - { - "pk": 36705, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-MARTIN-CHOQUEL", - "center": "POINT (568173.3470194331603125 2630504.6660523717291653)", - "surface": 6300000, - "canton": null, - "numero_insee": "62759" - } - }, - { - "pk": 13948, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-MARTIN-D'HARDINGHEM", - "center": "POINT (583535.4588902497198433 2624029.8870281679555774)", - "surface": 6720000, - "canton": null, - "numero_insee": "62760" - } - }, - { - "pk": 17274, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-MARTIN-SUR-COJEUL", - "center": "POINT (636820.7000447668833658 2581554.5400031418539584)", - "surface": 3430000, - "canton": null, - "numero_insee": "62761" - } - }, - { - "pk": 35608, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-MICHEL-SOUS-BOIS", - "center": "POINT (571516.2735728051047772 2613623.8431714219041169)", - "surface": 5670000, - "canton": null, - "numero_insee": "62762" - } - }, - { - "pk": 32686, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-MICHEL-SUR-TERNOISE", - "center": "POINT (601665.2005014270544052 2597767.9534777514636517)", - "surface": 6080000, - "canton": null, - "numero_insee": "62763" - } - }, - { - "pk": 13112, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-NICOLAS", - "center": "POINT (631943.4113084081327543 2590418.3674164945259690)", - "surface": 3160000, - "canton": null, - "numero_insee": "62764" - } - }, - { - "pk": 3863, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-OMER", - "center": "POINT (594794.5429537078598514 2641533.1876598550006747)", - "surface": 16490000, - "canton": null, - "numero_insee": "62765" - } - }, - { - "pk": 4320, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-OMER-CAPELLE", - "center": "POINT (583323.6577058669645339 2661246.8421554416418076)", - "surface": 10880000, - "canton": null, - "numero_insee": "62766" - } - }, - { - "pk": 19693, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-POL-SUR-TERNOISE", - "center": "POINT (600953.1143975277664140 2599162.7322677425108850)", - "surface": 8270000, - "canton": null, - "numero_insee": "62767" - } - }, - { - "pk": 11140, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-REMY-AU-BOIS", - "center": "POINT (566652.0817749166162685 2597074.3249421552754939)", - "surface": 4080000, - "canton": null, - "numero_insee": "62768" - } - }, - { - "pk": 16145, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAINT-TRICAT", - "center": "POINT (563961.5654383049113676 2655582.0636042868718505)", - "surface": 7380000, - "canton": null, - "numero_insee": "62769" - } - }, - { - "pk": 8018, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SALLAUMINES", - "center": "POINT (637241.4773588420357555 2602869.7050648913718760)", - "surface": 3860000, - "canton": null, - "numero_insee": "62771" - } - }, - { - "pk": 26365, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SALPERWICK", - "center": "POINT (591692.3583651749650016 2641607.2187233921140432)", - "surface": 3940000, - "canton": null, - "numero_insee": "62772" - } - }, - { - "pk": 18117, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAMER", - "center": "POINT (558700.0744835602818057 2626723.5372118651866913)", - "surface": 16880000, - "canton": null, - "numero_insee": "62773" - } - }, - { - "pk": 32513, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SANGATTE", - "center": "POINT (560014.7550447107059881 2660951.7113823513500392)", - "surface": 14320000, - "canton": null, - "numero_insee": "62774" - } - }, - { - "pk": 33194, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SANGHEN", - "center": "POINT (568575.6315206387080252 2642213.9834867566823959)", - "surface": 6230000, - "canton": null, - "numero_insee": "62775" - } - }, - { - "pk": 25726, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAPIGNIES", - "center": "POINT (635811.1755083361640573 2570740.0021771756000817)", - "surface": 3420000, - "canton": null, - "numero_insee": "62776" - } - }, - { - "pk": 29953, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE SARS", - "center": "POINT (631969.9048796518472955 2563503.5789714707061648)", - "surface": 5100000, - "canton": null, - "numero_insee": "62777" - } - }, - { - "pk": 6715, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SARS-LE-BOIS", - "center": "POINT (606740.6539167606970295 2589105.8346355664543808)", - "surface": 2480000, - "canton": null, - "numero_insee": "62778" - } - }, - { - "pk": 24981, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SARTON", - "center": "POINT (606717.0142317411955446 2568093.9497151374816895)", - "surface": 6500000, - "canton": null, - "numero_insee": "62779" - } - }, - { - "pk": 10734, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAUCHY-CAUCHY", - "center": "POINT (653822.1621662987163290 2582498.3114696736447513)", - "surface": 4080000, - "canton": null, - "numero_insee": "62780" - } - }, - { - "pk": 9839, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAUCHY-LESTREE", - "center": "POINT (655738.2762926986906677 2580713.4817351633682847)", - "surface": 9060000, - "canton": null, - "numero_insee": "62781" - } - }, - { - "pk": 31892, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAUDEMONT", - "center": "POINT (649617.6041196240112185 2582763.0095673031173646)", - "surface": 5610000, - "canton": null, - "numero_insee": "62782" - } - }, - { - "pk": 32580, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAULCHOY", - "center": "POINT (565364.8589526766445488 2595462.6902424362488091)", - "surface": 5380000, - "canton": null, - "numero_insee": "62783" - } - }, - { - "pk": 25927, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAULTY", - "center": "POINT (613424.5220019184052944 2579556.6911624311469495)", - "surface": 12910000, - "canton": null, - "numero_insee": "62784" - } - }, - { - "pk": 36226, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SAVY-BERLETTE", - "center": "POINT (615792.0127767242956907 2595485.3228322113864124)", - "surface": 7580000, - "canton": null, - "numero_insee": "62785" - } - }, - { - "pk": 8402, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SELLES", - "center": "POINT (568347.4870374426245689 2633607.7110223192721605)", - "surface": 6350000, - "canton": null, - "numero_insee": "62786" - } - }, - { - "pk": 22751, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SEMPY", - "center": "POINT (567333.6031397926853970 2611287.6277569686062634)", - "surface": 8130000, - "canton": null, - "numero_insee": "62787" - } - }, - { - "pk": 15499, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SENINGHEM", - "center": "POINT (578050.9251159416744485 2633788.9880652977153659)", - "surface": 15330000, - "canton": null, - "numero_insee": "62788" - } - }, - { - "pk": 12994, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SENLECQUES", - "center": "POINT (571592.4385765421902761 2628432.1971798446029425)", - "surface": 2080000, - "canton": null, - "numero_insee": "62789" - } - }, - { - "pk": 20737, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SENLIS", - "center": "POINT (586508.0382391725433990 2615550.3585312305949628)", - "surface": 4910000, - "canton": null, - "numero_insee": "62790" - } - }, - { - "pk": 7767, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SERICOURT", - "center": "POINT (598238.2757078885333613 2588834.3461603000760078)", - "surface": 2420000, - "canton": null, - "numero_insee": "62791" - } - }, - { - "pk": 27438, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SERQUES", - "center": "POINT (590470.8656124018598348 2644098.2340994076803327)", - "surface": 10520000, - "canton": null, - "numero_insee": "62792" - } - }, - { - "pk": 37962, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SERVINS", - "center": "POINT (621345.8505546834785491 2601335.1554038887843490)", - "surface": 6320000, - "canton": null, - "numero_insee": "62793" - } - }, - { - "pk": 5528, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SETQUES", - "center": "POINT (587240.7217693299753591 2635566.8535066097974777)", - "surface": 3910000, - "canton": null, - "numero_insee": "62794" - } - }, - { - "pk": 12968, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SIBIVILLE", - "center": "POINT (599530.4997857433045283 2589845.7383894962258637)", - "surface": 7420000, - "canton": null, - "numero_insee": "62795" - } - }, - { - "pk": 32482, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SIMENCOURT", - "center": "POINT (621188.7565345393959433 2584324.5707423780113459)", - "surface": 5220000, - "canton": null, - "numero_insee": "62796" - } - }, - { - "pk": 8953, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SIRACOURT", - "center": "POINT (595066.2934703646460548 2597212.3065622313879430)", - "surface": 3190000, - "canton": null, - "numero_insee": "62797" - } - }, - { - "pk": 34570, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SOMBRIN", - "center": "POINT (611999.4624109008582309 2582446.3238178612664342)", - "surface": 6670000, - "canton": null, - "numero_insee": "62798" - } - }, - { - "pk": 28335, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SORRUS", - "center": "POINT (555663.3402669457718730 2606987.8178477659821510)", - "surface": 6840000, - "canton": null, - "numero_insee": "62799" - } - }, - { - "pk": 21520, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SOUASTRE", - "center": "POINT (616684.9504949779948220 2572580.1862168703228235)", - "surface": 7220000, - "canton": null, - "numero_insee": "62800" - } - }, - { - "pk": 24200, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SOUCHEZ", - "center": "POINT (628967.0841472861357033 2599298.1477400460280478)", - "surface": 6720000, - "canton": null, - "numero_insee": "62801" - } - }, - { - "pk": 13971, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE SOUICH", - "center": "POINT (601707.0876292057801038 2580859.0496645765379071)", - "surface": 5120000, - "canton": null, - "numero_insee": "62802" - } - }, - { - "pk": 8445, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SURQUES", - "center": "POINT (570705.0084322202019393 2638830.0840161507949233)", - "surface": 6920000, - "canton": null, - "numero_insee": "62803" - } - }, - { - "pk": 14264, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "SUS-SAINT-LEGER", - "center": "POINT (606995.3681005891412497 2582604.3954343181103468)", - "surface": 7410000, - "canton": null, - "numero_insee": "62804" - } - }, - { - "pk": 36454, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TANGRY", - "center": "POINT (601583.7364769044797868 2607472.4756171358749270)", - "surface": 4870000, - "canton": null, - "numero_insee": "62805" - } - }, - { - "pk": 24336, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TARDINGHEN", - "center": "POINT (550980.3000645332504064 2652572.1382741625420749)", - "surface": 8820000, - "canton": null, - "numero_insee": "62806" - } - }, - { - "pk": 12706, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TATINGHEM", - "center": "POINT (590715.4134966081473976 2638797.6107671791687608)", - "surface": 5570000, - "canton": null, - "numero_insee": "62807" - } - }, - { - "pk": 34213, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TENEUR", - "center": "POINT (591688.3892681284341961 2606288.8640104252845049)", - "surface": 7000000, - "canton": null, - "numero_insee": "62808" - } - }, - { - "pk": 13508, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TERNAS", - "center": "POINT (604300.0253127478063107 2593787.9049352500587702)", - "surface": 2500000, - "canton": null, - "numero_insee": "62809" - } - }, - { - "pk": 22475, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "THELUS", - "center": "POINT (633004.3408534629270434 2595129.8620490380562842)", - "surface": 9010000, - "canton": null, - "numero_insee": "62810" - } - }, - { - "pk": 37418, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "THEROUANNE", - "center": "POINT (593924.1796534291934222 2626017.9678284786641598)", - "surface": 8730000, - "canton": null, - "numero_insee": "62811" - } - }, - { - "pk": 31216, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "THIEMBRONNE", - "center": "POINT (579421.0495134647935629 2625496.1950441561639309)", - "surface": 22840000, - "canton": null, - "numero_insee": "62812" - } - }, - { - "pk": 4146, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA THIEULOYE", - "center": "POINT (606832.3539786398177966 2602013.6036830162629485)", - "surface": 4100000, - "canton": null, - "numero_insee": "62813" - } - }, - { - "pk": 28451, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "THIEVRES", - "center": "POINT (607896.5982223065802827 2570605.2674244702793658)", - "surface": 1270000, - "canton": null, - "numero_insee": "62814" - } - }, - { - "pk": 13684, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TIGNY-NOYELLE", - "center": "POINT (555157.5306349851889536 2595677.5156264798715711)", - "surface": 6690000, - "canton": null, - "numero_insee": "62815" - } - }, - { - "pk": 11473, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TILLOY-LES-HERMAVILLE", - "center": "POINT (615416.2123161930358037 2592580.5866453652270138)", - "surface": 2930000, - "canton": null, - "numero_insee": "62816" - } - }, - { - "pk": 26985, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TILLOY-LES-MOFFLAINES", - "center": "POINT (634574.1384597450960428 2586938.5998278460465372)", - "surface": 7650000, - "canton": null, - "numero_insee": "62817" - } - }, - { - "pk": 15165, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TILLY-CAPELLE", - "center": "POINT (589293.9879567027091980 2605468.3591808131895959)", - "surface": 6420000, - "canton": null, - "numero_insee": "62818" - } - }, - { - "pk": 7544, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TILQUES", - "center": "POINT (590387.5997854433953762 2642096.5296202865429223)", - "surface": 7230000, - "canton": null, - "numero_insee": "62819" - } - }, - { - "pk": 31814, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TINCQUES", - "center": "POINT (611184.7978442645398900 2596046.9282660218887031)", - "surface": 10770000, - "canton": null, - "numero_insee": "62820" - } - }, - { - "pk": 7963, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TINGRY", - "center": "POINT (556319.9038503807969391 2624202.3496871995739639)", - "surface": 11410000, - "canton": null, - "numero_insee": "62821" - } - }, - { - "pk": 11954, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TOLLENT", - "center": "POINT (576942.3427522450219840 2586954.8911433587782085)", - "surface": 4270000, - "canton": null, - "numero_insee": "62822" - } - }, - { - "pk": 10878, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TORCY", - "center": "POINT (577450.8095062635838985 2609871.5167850204743445)", - "surface": 5340000, - "canton": null, - "numero_insee": "62823" - } - }, - { - "pk": 38052, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TORTEFONTAINE", - "center": "POINT (569884.5666497958591208 2593399.3632161989808083)", - "surface": 11920000, - "canton": null, - "numero_insee": "62824" - } - }, - { - "pk": 36523, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TORTEQUESNE", - "center": "POINT (649668.7119134541135281 2588566.6370266736485064)", - "surface": 3450000, - "canton": null, - "numero_insee": "62825" - } - }, - { - "pk": 7158, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE TOUQUET-PARIS-PLAGE", - "center": "POINT (547510.3018951765261590 2612822.8448852770961821)", - "surface": 15230000, - "canton": null, - "numero_insee": "62826" - } - }, - { - "pk": 17541, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TOURNEHEM-SUR-LA-HEM", - "center": "POINT (579564.4803560393629596 2644206.9324965104460716)", - "surface": 18390000, - "canton": null, - "numero_insee": "62827" - } - }, - { - "pk": 9084, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TRAMECOURT", - "center": "POINT (586869.3932145346188918 2608249.5259524658322334)", - "surface": 2240000, - "canton": null, - "numero_insee": "62828" - } - }, - { - "pk": 31165, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE TRANSLOY", - "center": "POINT (639789.8069545644102618 2561668.3594747139140964)", - "surface": 10480000, - "canton": null, - "numero_insee": "62829" - } - }, - { - "pk": 30618, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TRESCAULT", - "center": "POINT (654459.1617501061409712 2566294.6074003241956234)", - "surface": 4600000, - "canton": null, - "numero_insee": "62830" - } - }, - { - "pk": 10191, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TROISVAUX", - "center": "POINT (600431.0466477362206206 2601759.7502353955060244)", - "surface": 6230000, - "canton": null, - "numero_insee": "62831" - } - }, - { - "pk": 34143, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "TUBERSENT", - "center": "POINT (554701.8986031773965806 2614283.6527929599396884)", - "surface": 7030000, - "canton": null, - "numero_insee": "62832" - } - }, - { - "pk": 6764, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VACQUERIE-LE-BOUCQ", - "center": "POINT (590757.3452701565111056 2586070.1089117154479027)", - "surface": 3310000, - "canton": null, - "numero_insee": "62833" - } - }, - { - "pk": 9074, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VACQUERIETTE-ERQUIERES", - "center": "POINT (581203.3334557780763134 2591893.2634662175551057)", - "surface": 5950000, - "canton": null, - "numero_insee": "62834" - } - }, - { - "pk": 27199, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VALHUON", - "center": "POINT (603311.4012236581183970 2604285.2707075844518840)", - "surface": 9280000, - "canton": null, - "numero_insee": "62835" - } - }, - { - "pk": 34347, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VAUDRICOURT", - "center": "POINT (620058.6302589005790651 2611629.8262582244351506)", - "surface": 2980000, - "canton": null, - "numero_insee": "62836" - } - }, - { - "pk": 13801, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VAUDRINGHEM", - "center": "POINT (577791.8468395629897714 2628884.3053158661350608)", - "surface": 7710000, - "canton": null, - "numero_insee": "62837" - } - }, - { - "pk": 32748, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VAULX", - "center": "POINT (583352.9551668597850949 2586108.0967378388158977)", - "surface": 4850000, - "canton": null, - "numero_insee": "62838" - } - }, - { - "pk": 37381, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VAULX-VRAUCOURT", - "center": "POINT (640602.5782356534618884 2572081.0986346025019884)", - "surface": 14060000, - "canton": null, - "numero_insee": "62839" - } - }, - { - "pk": 14055, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VELU", - "center": "POINT (645645.5200848272070289 2567320.8951479983516037)", - "surface": 3170000, - "canton": null, - "numero_insee": "62840" - } - }, - { - "pk": 10683, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VENDIN-LES-BETHUNE", - "center": "POINT (619114.4713030527345836 2616824.6282562571577728)", - "surface": 3660000, - "canton": null, - "numero_insee": "62841" - } - }, - { - "pk": 27593, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VENDIN-LE-VIEIL", - "center": "POINT (636694.0516919326037169 2608468.0868761851452291)", - "surface": 10650000, - "canton": null, - "numero_insee": "62842" - } - }, - { - "pk": 31073, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VERCHIN", - "center": "POINT (588747.6236409742850810 2610966.7045590467751026)", - "surface": 10720000, - "canton": null, - "numero_insee": "62843" - } - }, - { - "pk": 33193, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VERCHOCQ", - "center": "POINT (578885.3020733608864248 2617787.6968231629580259)", - "surface": 15680000, - "canton": null, - "numero_insee": "62844" - } - }, - { - "pk": 7424, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VERLINCTHUN", - "center": "POINT (554302.2880602350924164 2626186.5261979494243860)", - "surface": 7040000, - "canton": null, - "numero_insee": "62845" - } - }, - { - "pk": 31764, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VERMELLES", - "center": "POINT (629874.9144456501817331 2610311.6755353640764952)", - "surface": 10410000, - "canton": null, - "numero_insee": "62846" - } - }, - { - "pk": 7045, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VERQUIGNEUL", - "center": "POINT (623056.6396793405292556 2612055.2538671270012856)", - "surface": 3600000, - "canton": null, - "numero_insee": "62847" - } - }, - { - "pk": 3049, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VERQUIN", - "center": "POINT (621657.6810742174275219 2611843.3806315958499908)", - "surface": 3710000, - "canton": null, - "numero_insee": "62848" - } - }, - { - "pk": 15164, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VERTON", - "center": "POINT (551111.3497206511674449 2600946.5745525402016938)", - "surface": 11090000, - "canton": null, - "numero_insee": "62849" - } - }, - { - "pk": 5205, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VIEIL-HESDIN", - "center": "POINT (583966.9364370182156563 2596418.8652550531551242)", - "surface": 9720000, - "canton": null, - "numero_insee": "62850" - } - }, - { - "pk": 33373, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VIEILLE-CHAPELLE", - "center": "POINT (626974.2803315029013902 2622093.4653324647806585)", - "surface": 3500000, - "canton": null, - "numero_insee": "62851" - } - }, - { - "pk": 21609, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VIEILLE-EGLISE", - "center": "POINT (581633.0049523779889569 2660032.0909247305244207)", - "surface": 21230000, - "canton": null, - "numero_insee": "62852" - } - }, - { - "pk": 25201, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VIEIL-MOUTIER", - "center": "POINT (569779.9167912802658975 2629817.7491301889531314)", - "surface": 5850000, - "canton": null, - "numero_insee": "62853" - } - }, - { - "pk": 26984, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VILLERS-AU-BOIS", - "center": "POINT (623274.5115291653200984 2598049.5987322875298560)", - "surface": 5240000, - "canton": null, - "numero_insee": "62854" - } - }, - { - "pk": 33141, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VILLERS-AU-FLOS", - "center": "POINT (640763.3282440288458019 2564878.3844464602880180)", - "surface": 5900000, - "canton": null, - "numero_insee": "62855" - } - }, - { - "pk": 34102, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VILLERS-BRULIN", - "center": "POINT (613674.2049595514545217 2597468.6058524334803224)", - "surface": 3840000, - "canton": null, - "numero_insee": "62856" - } - }, - { - "pk": 28636, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VILLERS-CHATEL", - "center": "POINT (617973.7037461727159098 2597804.9103081910870969)", - "surface": 3200000, - "canton": null, - "numero_insee": "62857" - } - }, - { - "pk": 13509, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VILLERS-LES-CAGNICOURT", - "center": "POINT (648129.5357286169892177 2581249.6291381567716599)", - "surface": 4470000, - "canton": null, - "numero_insee": "62858" - } - }, - { - "pk": 22288, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VILLERS-L'HOPITAL", - "center": "POINT (590895.9857566797873005 2581468.7315320963971317)", - "surface": 8500000, - "canton": null, - "numero_insee": "62859" - } - }, - { - "pk": 28876, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VILLERS-SIR-SIMON", - "center": "POINT (611026.7342852634610608 2591042.8789820251986384)", - "surface": 2500000, - "canton": null, - "numero_insee": "62860" - } - }, - { - "pk": 6257, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VIMY", - "center": "POINT (633779.4438953421777114 2598138.0145579329691827)", - "surface": 11450000, - "canton": null, - "numero_insee": "62861" - } - }, - { - "pk": 23022, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VINCLY", - "center": "POINT (588788.9558553122915328 2617970.7390775131061673)", - "surface": 4640000, - "canton": null, - "numero_insee": "62862" - } - }, - { - "pk": 29731, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VIOLAINES", - "center": "POINT (631428.4816037494456396 2615927.7123584183864295)", - "surface": 10060000, - "canton": null, - "numero_insee": "62863" - } - }, - { - "pk": 24410, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VIS-EN-ARTOIS", - "center": "POINT (642807.5783487228909507 2583506.0361772729083896)", - "surface": 6470000, - "canton": null, - "numero_insee": "62864" - } - }, - { - "pk": 24555, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "VITRY-EN-ARTOIS", - "center": "POINT (645934.0487739363452420 2592437.2784488406032324)", - "surface": 18780000, - "canton": null, - "numero_insee": "62865" - } - }, - { - "pk": 34003, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WABEN", - "center": "POINT (551029.6875854731770232 2598744.7068933793343604)", - "surface": 8750000, - "canton": null, - "numero_insee": "62866" - } - }, - { - "pk": 10210, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WACQUINGHEN", - "center": "POINT (552759.5821728552691638 2643182.3089129482395947)", - "surface": 2480000, - "canton": null, - "numero_insee": "62867" - } - }, - { - "pk": 30429, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WAIL", - "center": "POINT (584490.6481937379576266 2593621.7339482391253114)", - "surface": 9210000, - "canton": null, - "numero_insee": "62868" - } - }, - { - "pk": 37477, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WAILLY", - "center": "POINT (627696.9354790196521208 2583778.9941027001477778)", - "surface": 9780000, - "canton": null, - "numero_insee": "62869" - } - }, - { - "pk": 28562, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WAILLY-BEAUCAMP", - "center": "POINT (556809.0010097080375999 2601594.5019966708496213)", - "surface": 14370000, - "canton": null, - "numero_insee": "62870" - } - }, - { - "pk": 12612, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WAMBERCOURT", - "center": "POINT (577696.9836321233306080 2604370.6474906583316624)", - "surface": 6120000, - "canton": null, - "numero_insee": "62871" - } - }, - { - "pk": 36102, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WAMIN", - "center": "POINT (580415.8387807387625799 2602292.2945280126295984)", - "surface": 7180000, - "canton": null, - "numero_insee": "62872" - } - }, - { - "pk": 32656, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WANCOURT", - "center": "POINT (636995.5139524783007801 2584557.6718368055298924)", - "surface": 8950000, - "canton": null, - "numero_insee": "62873" - } - }, - { - "pk": 31187, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WANQUETIN", - "center": "POINT (619771.2561301036039367 2586313.7517894674092531)", - "surface": 10330000, - "canton": null, - "numero_insee": "62874" - } - }, - { - "pk": 35497, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WARDRECQUES", - "center": "POINT (600555.7968149424996227 2634577.9794985316693783)", - "surface": 3740000, - "canton": null, - "numero_insee": "62875" - } - }, - { - "pk": 33877, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WARLENCOURT-EAUCOURT", - "center": "POINT (632556.7253662194125354 2565109.4292350052855909)", - "surface": 3720000, - "canton": null, - "numero_insee": "62876" - } - }, - { - "pk": 16700, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WARLINCOURT-LES-PAS", - "center": "POINT (612049.9048937391489744 2576443.4126506880857050)", - "surface": 5200000, - "canton": null, - "numero_insee": "62877" - } - }, - { - "pk": 29970, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WARLUS", - "center": "POINT (623366.2491109950933605 2587144.4286816548556089)", - "surface": 5480000, - "canton": null, - "numero_insee": "62878" - } - }, - { - "pk": 12830, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WARLUZEL", - "center": "POINT (609404.0907528231618926 2581724.1301546031609178)", - "surface": 4120000, - "canton": null, - "numero_insee": "62879" - } - }, - { - "pk": 13666, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LE WAST", - "center": "POINT (561893.6374316820874810 2639656.8317857659421861)", - "surface": 950000, - "canton": null, - "numero_insee": "62880" - } - }, - { - "pk": 18322, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "BEAUVOIR-WAVANS", - "center": "POINT (587706.1798119166633114 2580041.2105980389751494)", - "surface": 9550000, - "canton": null, - "numero_insee": "62881" - } - }, - { - "pk": 34222, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WAVRANS-SUR-L'AA", - "center": "POINT (585877.0011984917800874 2631153.1735885455273092)", - "surface": 11700000, - "canton": null, - "numero_insee": "62882" - } - }, - { - "pk": 8781, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WAVRANS-SUR-TERNOISE", - "center": "POINT (596230.7643105903407559 2601524.3951157801784575)", - "surface": 4770000, - "canton": null, - "numero_insee": "62883" - } - }, - { - "pk": 13915, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WESTREHEM", - "center": "POINT (600405.9728919659974054 2616667.4554252731613815)", - "surface": 3020000, - "canton": null, - "numero_insee": "62885" - } - }, - { - "pk": 25377, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WICQUINGHEM", - "center": "POINT (572564.8564328936627135 2619835.8744425638578832)", - "surface": 6980000, - "canton": null, - "numero_insee": "62886" - } - }, - { - "pk": 7513, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WIDEHEM", - "center": "POINT (551842.1189621799858287 2621263.4294594312086701)", - "surface": 7170000, - "canton": null, - "numero_insee": "62887" - } - }, - { - "pk": 12169, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WIERRE-AU-BOIS", - "center": "POINT (559684.6307244340423495 2628632.7475634803995490)", - "surface": 3870000, - "canton": null, - "numero_insee": "62888" - } - }, - { - "pk": 14911, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WIERRE-EFFROY", - "center": "POINT (557570.8588155717588961 2642121.9572766409255564)", - "surface": 19050000, - "canton": null, - "numero_insee": "62889" - } - }, - { - "pk": 36788, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WILLEMAN", - "center": "POINT (587572.8269880963489413 2595948.8166803834028542)", - "surface": 10230000, - "canton": null, - "numero_insee": "62890" - } - }, - { - "pk": 35461, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WILLENCOURT", - "center": "POINT (581480.5418047712882981 2582690.5328799071721733)", - "surface": 2430000, - "canton": null, - "numero_insee": "62891" - } - }, - { - "pk": 35963, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WILLERVAL", - "center": "POINT (636495.0381256486289203 2596459.9650907441973686)", - "surface": 4060000, - "canton": null, - "numero_insee": "62892" - } - }, - { - "pk": 36486, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WIMEREUX", - "center": "POINT (548858.7279768323060125 2643049.6778815481811762)", - "surface": 8260000, - "canton": null, - "numero_insee": "62893" - } - }, - { - "pk": 19077, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WIMILLE", - "center": "POINT (550873.7996561256004497 2641365.6500772358849645)", - "surface": 22240000, - "canton": null, - "numero_insee": "62894" - } - }, - { - "pk": 31393, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WINGLES", - "center": "POINT (637070.6389603277202696 2611272.7459071259945631)", - "surface": 6060000, - "canton": null, - "numero_insee": "62895" - } - }, - { - "pk": 23984, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WIRWIGNES", - "center": "POINT (559652.8499583927914500 2632434.4332387000322342)", - "surface": 12560000, - "canton": null, - "numero_insee": "62896" - } - }, - { - "pk": 26363, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WISMES", - "center": "POINT (581787.7583402157761157 2629618.1365868514403701)", - "surface": 12230000, - "canton": null, - "numero_insee": "62897" - } - }, - { - "pk": 33945, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WISQUES", - "center": "POINT (589630.0320929189911112 2636987.5965183661319315)", - "surface": 3770000, - "canton": null, - "numero_insee": "62898" - } - }, - { - "pk": 22846, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WISSANT", - "center": "POINT (553860.6381735148606822 2655097.4344514687545598)", - "surface": 12780000, - "canton": null, - "numero_insee": "62899" - } - }, - { - "pk": 31579, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WITTERNESSE", - "center": "POINT (601841.9869745059404522 2624383.5280224122107029)", - "surface": 5590000, - "canton": null, - "numero_insee": "62900" - } - }, - { - "pk": 12958, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WITTES", - "center": "POINT (603589.0349904953036457 2630801.4978652088902891)", - "surface": 4220000, - "canton": null, - "numero_insee": "62901" - } - }, - { - "pk": 32572, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "WIZERNES", - "center": "POINT (592342.9607910603517666 2635609.6336889993399382)", - "surface": 6310000, - "canton": null, - "numero_insee": "62902" - } - }, - { - "pk": 23039, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ZOTEUX", - "center": "POINT (568123.5249760100850835 2624501.1530544268898666)", - "surface": 7390000, - "canton": null, - "numero_insee": "62903" - } - }, - { - "pk": 11786, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ZOUAFQUES", - "center": "POINT (579935.3231828240677714 2647711.7913128202781081)", - "surface": 3950000, - "canton": null, - "numero_insee": "62904" - } - }, - { - "pk": 11609, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "ZUDAUSQUES", - "center": "POINT (587504.7921107672154903 2639871.2497643497772515)", - "surface": 7250000, - "canton": null, - "numero_insee": "62905" - } - }, - { - "pk": 29321, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LIBERCOURT", - "center": "POINT (647087.8807077221572399 2609856.3736889888532460)", - "surface": 6590000, - "canton": null, - "numero_insee": "62907" - } - }, - { - "pk": 10119, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "LA CAPELLE-LES-BOULOGNE", - "center": "POINT (556007.7851592253427953 2637606.6183765348978341)", - "surface": 6590000, - "canton": null, - "numero_insee": "62908" - } - }, - { - "pk": 16076, - "model": "ishtar_common.town", - "fields": { - "departement": 63, - "name": "YTRES", - "center": "POINT (647280.0561953906435519 2563332.4052159581333399)", - "surface": 4340000, - "canton": null, - "numero_insee": "62909" - } - }, - { - "pk": 12589, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AIGUEPERSE", - "center": "POINT (666891.4187326296232641 2113060.7162654683925211)", - "surface": 10530000, - "canton": null, - "numero_insee": "63001" - } - }, - { - "pk": 12378, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AIX-LA-FAYETTE", - "center": "POINT (693090.2652769354172051 2056928.9614333943463862)", - "surface": 12990000, - "canton": null, - "numero_insee": "63002" - } - }, - { - "pk": 18634, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AMBERT", - "center": "POINT (710758.5983990842942148 2062684.0226226653903723)", - "surface": 60510000, - "canton": null, - "numero_insee": "63003" - } - }, - { - "pk": 22272, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LES ANCIZES-COMPS", - "center": "POINT (636342.0157207918819040 2103694.6564751821570098)", - "surface": 22060000, - "canton": null, - "numero_insee": "63004" - } - }, - { - "pk": 31985, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ANTOINGT", - "center": "POINT (666172.9409008648945019 2055900.6396406425628811)", - "surface": 7760000, - "canton": null, - "numero_insee": "63005" - } - }, - { - "pk": 36338, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ANZAT-LE-LUGUET", - "center": "POINT (652920.4694616714259610 2036870.3918941633310169)", - "surface": 66570000, - "canton": null, - "numero_insee": "63006" - } - }, - { - "pk": 17131, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "APCHAT", - "center": "POINT (663489.5627973163500428 2041764.2704515627119690)", - "surface": 36660000, - "canton": null, - "numero_insee": "63007" - } - }, - { - "pk": 18382, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ARCONSAT", - "center": "POINT (707033.2526542928535491 2100688.4968226552009583)", - "surface": 22600000, - "canton": null, - "numero_insee": "63008" - } - }, - { - "pk": 21928, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ARDES", - "center": "POINT (661164.6698180106468499 2044447.2849185618106276)", - "surface": 16620000, - "canton": null, - "numero_insee": "63009" - } - }, - { - "pk": 29618, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ARLANC", - "center": "POINT (708483.7014299572911114 2047650.2107465050648898)", - "surface": 32210000, - "canton": null, - "numero_insee": "63010" - } - }, - { - "pk": 34956, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ARS-LES-FAVETS", - "center": "POINT (631788.0921853972831741 2133383.6311030699871480)", - "surface": 14610000, - "canton": null, - "numero_insee": "63011" - } - }, - { - "pk": 24306, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ARTONNE", - "center": "POINT (662996.5410558751318604 2112026.9073530570603907)", - "surface": 17590000, - "canton": null, - "numero_insee": "63012" - } - }, - { - "pk": 34665, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AUBIAT", - "center": "POINT (666323.0215003361226991 2109252.3988323099911213)", - "surface": 14870000, - "canton": null, - "numero_insee": "63013" - } - }, - { - "pk": 31099, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AUBIERE", - "center": "POINT (661434.0659291484626010 2083687.2375363311730325)", - "surface": 7800000, - "canton": null, - "numero_insee": "63014" - } - }, - { - "pk": 25096, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AUBUSSON-D'AUVERGNE", - "center": "POINT (698262.8765722005628049 2084398.9664958301000297)", - "surface": 6880000, - "canton": null, - "numero_insee": "63015" - } - }, - { - "pk": 15371, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AUGEROLLES", - "center": "POINT (700680.2345108615700155 2082617.7337022824212909)", - "surface": 32690000, - "canton": null, - "numero_insee": "63016" - } - }, - { - "pk": 18288, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AUGNAT", - "center": "POINT (665953.8003123346716166 2046289.4676546189002693)", - "surface": 9590000, - "canton": null, - "numero_insee": "63017" - } - }, - { - "pk": 27717, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AULHAT-SAINT-PRIVAT", - "center": "POINT (676912.4067007298581302 2064299.3656920581124723)", - "surface": 8620000, - "canton": null, - "numero_insee": "63018" - } - }, - { - "pk": 10282, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AULNAT", - "center": "POINT (664797.3260473273694515 2088420.0680616586469114)", - "surface": 4310000, - "canton": null, - "numero_insee": "63019" - } - }, - { - "pk": 25818, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AURIERES", - "center": "POINT (645084.6637741096783429 2075842.0383510151877999)", - "surface": 11020000, - "canton": null, - "numero_insee": "63020" - } - }, - { - "pk": 37981, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AUTHEZAT", - "center": "POINT (666744.2596191025804728 2071220.1769956862553954)", - "surface": 5780000, - "canton": null, - "numero_insee": "63021" - } - }, - { - "pk": 17607, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AUZELLES", - "center": "POINT (692195.5247538470430300 2068032.0765597019344568)", - "surface": 33170000, - "canton": null, - "numero_insee": "63023" - } - }, - { - "pk": 16041, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AVEZE", - "center": "POINT (620941.6177249281900004 2066329.8991942801512778)", - "surface": 22090000, - "canton": null, - "numero_insee": "63024" - } - }, - { - "pk": 15795, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AYAT-SUR-SIOULE", - "center": "POINT (642526.8388065161416307 2118059.9914910043589771)", - "surface": 14200000, - "canton": null, - "numero_insee": "63025" - } - }, - { - "pk": 17141, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "AYDAT", - "center": "POINT (650403.6797848982969299 2074185.2565457294695079)", - "surface": 50590000, - "canton": null, - "numero_insee": "63026" - } - }, - { - "pk": 35340, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BAFFIE", - "center": "POINT (716537.5306289725704119 2054024.6159081298392266)", - "surface": 10840000, - "canton": null, - "numero_insee": "63027" - } - }, - { - "pk": 20214, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BAGNOLS", - "center": "POINT (623537.2890481554204598 2055241.0378288610372692)", - "surface": 42870000, - "canton": null, - "numero_insee": "63028" - } - }, - { - "pk": 34004, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BAS-ET-LEZAT", - "center": "POINT (675177.3528064989950508 2115633.0207550078630447)", - "surface": 12640000, - "canton": null, - "numero_insee": "63030" - } - }, - { - "pk": 11982, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BEAULIEU", - "center": "POINT (674233.3885509835090488 2049662.6123692460823804)", - "surface": 8640000, - "canton": null, - "numero_insee": "63031" - } - }, - { - "pk": 28526, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BEAUMONT", - "center": "POINT (658332.1975714301224798 2083560.9664155149366707)", - "surface": 3980000, - "canton": null, - "numero_insee": "63032" - } - }, - { - "pk": 9651, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BEAUMONT-LES-RANDAN", - "center": "POINT (681020.3687672760570422 2111178.2524468633346260)", - "surface": 6030000, - "canton": null, - "numero_insee": "63033" - } - }, - { - "pk": 29479, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BEAUREGARD-L'EVEQUE", - "center": "POINT (674786.5887167869368568 2090806.6086388351395726)", - "surface": 12050000, - "canton": null, - "numero_insee": "63034" - } - }, - { - "pk": 32626, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BEAUREGARD-VENDON", - "center": "POINT (660132.0745718185789883 2107498.5599507647566497)", - "surface": 7270000, - "canton": null, - "numero_insee": "63035" - } - }, - { - "pk": 28395, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BERGONNE", - "center": "POINT (668766.8175442251376808 2056923.5105780048761517)", - "surface": 5860000, - "canton": null, - "numero_insee": "63036" - } - }, - { - "pk": 15439, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BERTIGNAT", - "center": "POINT (705596.3849145836429670 2069446.8031634101644158)", - "surface": 24390000, - "canton": null, - "numero_insee": "63037" - } - }, - { - "pk": 23810, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BESSE-ET-SAINT-ANASTAISE", - "center": "POINT (644557.8025855538435280 2055217.8240365362726152)", - "surface": 72690000, - "canton": null, - "numero_insee": "63038" - } - }, - { - "pk": 21477, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BEURIERES", - "center": "POINT (712777.3983186681289226 2048887.7759370235726237)", - "surface": 16240000, - "canton": null, - "numero_insee": "63039" - } - }, - { - "pk": 34633, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BILLOM", - "center": "POINT (676771.9856947886291891 2080914.0317446009721607)", - "surface": 16840000, - "canton": null, - "numero_insee": "63040" - } - }, - { - "pk": 4642, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BIOLLET", - "center": "POINT (627578.1065141977742314 2110327.1031148610636592)", - "surface": 23530000, - "canton": null, - "numero_insee": "63041" - } - }, - { - "pk": 7475, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BLANZAT", - "center": "POINT (657158.6139169897651300 2092159.1762999785132706)", - "surface": 6980000, - "canton": null, - "numero_insee": "63042" - } - }, - { - "pk": 26482, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BONGHEAT", - "center": "POINT (684879.0910085270879790 2080982.5748804954346269)", - "surface": 11260000, - "canton": null, - "numero_insee": "63044" - } - }, - { - "pk": 27140, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BORT-L'ETANG", - "center": "POINT (685426.2839463895652443 2087293.1655226282309741)", - "surface": 15620000, - "canton": null, - "numero_insee": "63045" - } - }, - { - "pk": 14136, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BOUDES", - "center": "POINT (666118.4866667740279809 2050494.9449163661338389)", - "surface": 7920000, - "canton": null, - "numero_insee": "63046" - } - }, - { - "pk": 37288, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA BOURBOULE", - "center": "POINT (632268.5057905432768166 2064423.2818469000048935)", - "surface": 12650000, - "canton": null, - "numero_insee": "63047" - } - }, - { - "pk": 21670, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BOURG-LASTIC", - "center": "POINT (617483.0622132361168042 2072907.1323446035385132)", - "surface": 40830000, - "canton": null, - "numero_insee": "63048" - } - }, - { - "pk": 6225, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BOUZEL", - "center": "POINT (676319.1905992241809145 2087116.0725613052491099)", - "surface": 4230000, - "canton": null, - "numero_insee": "63049" - } - }, - { - "pk": 9243, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BRASSAC-LES-MINES", - "center": "POINT (676957.8142078135861084 2047083.1048412395175546)", - "surface": 7140000, - "canton": null, - "numero_insee": "63050" - } - }, - { - "pk": 25678, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BRENAT", - "center": "POINT (675936.0462966840714216 2061388.3234817883931100)", - "surface": 8910000, - "canton": null, - "numero_insee": "63051" - } - }, - { - "pk": 11299, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE BREUIL-SUR-COUZE", - "center": "POINT (672710.0519631145289168 2052252.2669713329523802)", - "surface": 5860000, - "canton": null, - "numero_insee": "63052" - } - }, - { - "pk": 16255, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BRIFFONS", - "center": "POINT (624748.2530401693657041 2077872.8966111137997359)", - "surface": 40460000, - "canton": null, - "numero_insee": "63053" - } - }, - { - "pk": 11049, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE BROC", - "center": "POINT (671474.3077458961633965 2056345.7991277154069394)", - "surface": 17520000, - "canton": null, - "numero_insee": "63054" - } - }, - { - "pk": 37247, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BROMONT-LAMOTHE", - "center": "POINT (636736.6760842484654859 2092487.5050116223283112)", - "surface": 37890000, - "canton": null, - "numero_insee": "63055" - } - }, - { - "pk": 4241, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BROUSSE", - "center": "POINT (687897.6379714017966762 2067295.0386870414949954)", - "surface": 22410000, - "canton": null, - "numero_insee": "63056" - } - }, - { - "pk": 36114, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE BRUGERON", - "center": "POINT (709410.7616555124986917 2079989.1449709001462907)", - "surface": 27490000, - "canton": null, - "numero_insee": "63057" - } - }, - { - "pk": 26874, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BULHON", - "center": "POINT (681825.9066599420038983 2098773.5238355123437941)", - "surface": 12430000, - "canton": null, - "numero_insee": "63058" - } - }, - { - "pk": 7258, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BUSSEOL", - "center": "POINT (672097.4570510699413717 2077371.2074673725292087)", - "surface": 5630000, - "canton": null, - "numero_insee": "63059" - } - }, - { - "pk": 4623, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BUSSIERES", - "center": "POINT (624008.6025848346762359 2118204.3629373610019684)", - "surface": 13970000, - "canton": null, - "numero_insee": "63060" - } - }, - { - "pk": 24101, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BUSSIERES-ET-PRUNS", - "center": "POINT (669801.5005668024532497 2112184.4612614912912250)", - "surface": 11670000, - "canton": null, - "numero_insee": "63061" - } - }, - { - "pk": 7351, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "BUXIERES-SOUS-MONTAIGUT", - "center": "POINT (638592.9440783869940788 2133541.0220727003179491)", - "surface": 11020000, - "canton": null, - "numero_insee": "63062" - } - }, - { - "pk": 6546, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CEBAZAT", - "center": "POINT (659856.7362727865111083 2092682.4128327602520585)", - "surface": 10120000, - "canton": null, - "numero_insee": "63063" - } - }, - { - "pk": 16825, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA CELLE", - "center": "POINT (610696.4321741338353604 2094370.4337249253876507)", - "surface": 15730000, - "canton": null, - "numero_insee": "63064" - } - }, - { - "pk": 4715, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CEILLOUX", - "center": "POINT (691949.6067541324300691 2073435.1611851700581610)", - "surface": 9080000, - "canton": null, - "numero_insee": "63065" - } - }, - { - "pk": 25775, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CELLES-SUR-DUROLLE", - "center": "POINT (702054.3752756353933364 2097643.5056726215407252)", - "surface": 38810000, - "canton": null, - "numero_insee": "63066" - } - }, - { - "pk": 7251, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA CELLETTE", - "center": "POINT (630084.2987967523513362 2121758.7005555392242968)", - "surface": 11100000, - "canton": null, - "numero_insee": "63067" - } - }, - { - "pk": 24950, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CELLULE", - "center": "POINT (662752.0448590472806245 2105418.7218135623261333)", - "surface": 8690000, - "canton": null, - "numero_insee": "63068" - } - }, - { - "pk": 32192, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE CENDRE", - "center": "POINT (666669.8867125685792416 2080027.9316688934341073)", - "surface": 4290000, - "canton": null, - "numero_insee": "63069" - } - }, - { - "pk": 15129, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CEYRAT", - "center": "POINT (656541.5991282194154337 2082244.6279110293835402)", - "surface": 9440000, - "canton": null, - "numero_insee": "63070" - } - }, - { - "pk": 13434, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CEYSSAT", - "center": "POINT (645702.6110070627182722 2085656.5413015941157937)", - "surface": 30280000, - "canton": null, - "numero_insee": "63071" - } - }, - { - "pk": 4661, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHABRELOCHE", - "center": "POINT (705757.5745540038915351 2097674.8802143759094179)", - "surface": 9650000, - "canton": null, - "numero_insee": "63072" - } - }, - { - "pk": 5913, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHADELEUF", - "center": "POINT (665897.5488880441989750 2064806.8945058707613498)", - "surface": 5740000, - "canton": null, - "numero_insee": "63073" - } - }, - { - "pk": 7953, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHALUS", - "center": "POINT (668108.4533117070095614 2051913.1078347596339881)", - "surface": 6590000, - "canton": null, - "numero_insee": "63074" - } - }, - { - "pk": 14475, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAMBON-SUR-DOLORE", - "center": "POINT (700705.5465730787254870 2055992.4691055230796337)", - "surface": 19740000, - "canton": null, - "numero_insee": "63076" - } - }, - { - "pk": 19601, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAMBON-SUR-LAC", - "center": "POINT (641495.2418712602229789 2062298.8698952568229288)", - "surface": 47590000, - "canton": null, - "numero_insee": "63077" - } - }, - { - "pk": 4910, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAMEANE", - "center": "POINT (686072.1456115100299940 2058270.9337180007714778)", - "surface": 10750000, - "canton": null, - "numero_insee": "63078" - } - }, - { - "pk": 14590, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAMPAGNAT-LE-JEUNE", - "center": "POINT (684441.7291534382384270 2049849.0038851532153785)", - "surface": 9430000, - "canton": null, - "numero_insee": "63079" - } - }, - { - "pk": 28088, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAMPEIX", - "center": "POINT (661791.3682442788267508 2065072.5191240718122572)", - "surface": 12210000, - "canton": null, - "numero_insee": "63080" - } - }, - { - "pk": 19866, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAMPETIERES", - "center": "POINT (704791.4122200814308599 2058129.1111435962375253)", - "surface": 18500000, - "canton": null, - "numero_insee": "63081" - } - }, - { - "pk": 14071, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAMPS", - "center": "POINT (658540.4238181072287261 2118195.0190669074654579)", - "surface": 15190000, - "canton": null, - "numero_insee": "63082" - } - }, - { - "pk": 5453, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHANAT-LA-MOUTEYRE", - "center": "POINT (652056.7154968779068440 2091815.8597228925209492)", - "surface": 14460000, - "canton": null, - "numero_insee": "63083" - } - }, - { - "pk": 18712, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHANONAT", - "center": "POINT (658083.4491919705178589 2077453.0799528290517628)", - "surface": 12710000, - "canton": null, - "numero_insee": "63084" - } - }, - { - "pk": 3102, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAPDES-BEAUFORT", - "center": "POINT (640183.2250718799186870 2099222.8125003445893526)", - "surface": 31750000, - "canton": null, - "numero_insee": "63085" - } - }, - { - "pk": 5835, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA CHAPELLE-AGNON", - "center": "POINT (700781.1120479237288237 2070707.2554826936684549)", - "surface": 25940000, - "canton": null, - "numero_insee": "63086" - } - }, - { - "pk": 15646, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA CHAPELLE-MARCOUSSE", - "center": "POINT (658220.6654018147382885 2049327.2147484682500362)", - "surface": 19960000, - "canton": null, - "numero_insee": "63087" - } - }, - { - "pk": 30407, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA CHAPELLE-SUR-USSON", - "center": "POINT (682521.3986945709912106 2052034.9017693768255413)", - "surface": 6780000, - "canton": null, - "numero_insee": "63088" - } - }, - { - "pk": 20871, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAPPES", - "center": "POINT (669033.4475287245586514 2096463.3582919014152139)", - "surface": 10440000, - "canton": null, - "numero_insee": "63089" - } - }, - { - "pk": 7227, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAPTUZAT", - "center": "POINT (664475.0070899206912145 2114741.8834317727014422)", - "surface": 8220000, - "canton": null, - "numero_insee": "63090" - } - }, - { - "pk": 7560, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHARBONNIER-LES-MINES", - "center": "POINT (673957.6432853435399011 2046757.4599689678288996)", - "surface": 3400000, - "canton": null, - "numero_insee": "63091" - } - }, - { - "pk": 9997, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHARBONNIERES-LES-VARENNES", - "center": "POINT (649886.5364208647515625 2099905.1507620513439178)", - "surface": 32230000, - "canton": null, - "numero_insee": "63092" - } - }, - { - "pk": 4289, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHARBONNIERES-LES-VIEILLES", - "center": "POINT (651900.5692088116193190 2110331.8067442644387484)", - "surface": 32810000, - "canton": null, - "numero_insee": "63093" - } - }, - { - "pk": 16386, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHARENSAT", - "center": "POINT (623784.1181456550257280 2109194.1645252094604075)", - "surface": 46790000, - "canton": null, - "numero_insee": "63094" - } - }, - { - "pk": 14241, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHARNAT", - "center": "POINT (685072.0387957352213562 2105507.2257125359028578)", - "surface": 5290000, - "canton": null, - "numero_insee": "63095" - } - }, - { - "pk": 7221, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAS", - "center": "POINT (675449.7001290095504373 2083405.2263582400046289)", - "surface": 3560000, - "canton": null, - "numero_insee": "63096" - } - }, - { - "pk": 16565, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHASSAGNE", - "center": "POINT (656672.0278976521221921 2054919.5817492089699954)", - "surface": 16180000, - "canton": null, - "numero_insee": "63097" - } - }, - { - "pk": 28952, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHASTREIX", - "center": "POINT (632531.8768387972377241 2056918.2731050821021199)", - "surface": 45610000, - "canton": null, - "numero_insee": "63098" - } - }, - { - "pk": 10012, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHATEAUGAY", - "center": "POINT (658735.5120085439411923 2095075.2042184108868241)", - "surface": 9050000, - "canton": null, - "numero_insee": "63099" - } - }, - { - "pk": 32354, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHATEAUNEUF-LES-BAINS", - "center": "POINT (642560.5714726573787630 2114056.5888170502148569)", - "surface": 16920000, - "canton": null, - "numero_insee": "63100" - } - }, - { - "pk": 18701, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHATEAU-SUR-CHER", - "center": "POINT (617853.7778196011204273 2124058.0174762359820306)", - "surface": 12030000, - "canton": null, - "numero_insee": "63101" - } - }, - { - "pk": 15178, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHATELDON", - "center": "POINT (694252.8267457239562646 2108787.8831626907922328)", - "surface": 28530000, - "canton": null, - "numero_insee": "63102" - } - }, - { - "pk": 16976, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHATEL-GUYON", - "center": "POINT (656270.9496290609240532 2102461.3290611123666167)", - "surface": 14070000, - "canton": null, - "numero_insee": "63103" - } - }, - { - "pk": 16770, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA CHAULME", - "center": "POINT (726750.9346193131059408 2053610.7924499004147947)", - "surface": 13510000, - "canton": null, - "numero_insee": "63104" - } - }, - { - "pk": 37813, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAUMONT-LE-BOURG", - "center": "POINT (711751.8896312483120710 2051781.9014102867804468)", - "surface": 8260000, - "canton": null, - "numero_insee": "63105" - } - }, - { - "pk": 24547, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAURIAT", - "center": "POINT (673151.0693785679759458 2082985.4245952370110899)", - "surface": 8720000, - "canton": null, - "numero_insee": "63106" - } - }, - { - "pk": 5250, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHAVAROUX", - "center": "POINT (671544.9118217239156365 2095383.5412722781766206)", - "surface": 4100000, - "canton": null, - "numero_insee": "63107" - } - }, - { - "pk": 9087, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE CHEIX", - "center": "POINT (665444.2226504762656987 2106642.5653873514384031)", - "surface": 4710000, - "canton": null, - "numero_insee": "63108" - } - }, - { - "pk": 6451, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CHIDRAC", - "center": "POINT (663515.6921973060816526 2062384.4779765321873128)", - "surface": 3600000, - "canton": null, - "numero_insee": "63109" - } - }, - { - "pk": 17605, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CISTERNES-LA-FORET", - "center": "POINT (629352.9916679593734443 2089722.8043625687714666)", - "surface": 33530000, - "canton": null, - "numero_insee": "63110" - } - }, - { - "pk": 11865, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CLEMENSAT", - "center": "POINT (660008.3499102056957781 2062855.3563834191299975)", - "surface": 3210000, - "canton": null, - "numero_insee": "63111" - } - }, - { - "pk": 24949, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CLERLANDE", - "center": "POINT (666183.6980229225009680 2102044.5271426467224956)", - "surface": 8550000, - "canton": null, - "numero_insee": "63112" - } - }, - { - "pk": 19514, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CLERMONT-FERRAND", - "center": "POINT (660501.1804804127896205 2087482.9551718656439334)", - "surface": 43060000, - "canton": null, - "numero_insee": "63113" - } - }, - { - "pk": 37713, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COLLANGES", - "center": "POINT (668636.7973544441629201 2048614.3632562914863229)", - "surface": 4420000, - "canton": null, - "numero_insee": "63114" - } - }, - { - "pk": 14413, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COMBRAILLES", - "center": "POINT (623616.8788956382777542 2093378.0204423244576901)", - "surface": 20560000, - "canton": null, - "numero_insee": "63115" - } - }, - { - "pk": 4197, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COMBRONDE", - "center": "POINT (657610.5091808988945559 2109779.4154933360405266)", - "surface": 17910000, - "canton": null, - "numero_insee": "63116" - } - }, - { - "pk": 16039, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COMPAINS", - "center": "POINT (646015.5783010907471180 2048523.6096613495610654)", - "surface": 50420000, - "canton": null, - "numero_insee": "63117" - } - }, - { - "pk": 23446, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CONDAT-EN-COMBRAILLE", - "center": "POINT (617791.6501435773679987 2095731.2843895405530930)", - "surface": 45610000, - "canton": null, - "numero_insee": "63118" - } - }, - { - "pk": 9370, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CORENT", - "center": "POINT (666723.9760550032369792 2073622.2976972446776927)", - "surface": 2700000, - "canton": null, - "numero_insee": "63120" - } - }, - { - "pk": 5122, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COUDES", - "center": "POINT (667370.9913763240911067 2068122.5023737461306155)", - "surface": 4710000, - "canton": null, - "numero_insee": "63121" - } - }, - { - "pk": 31754, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COURGOUL", - "center": "POINT (655453.2214559077983722 2057011.3311986923217773)", - "surface": 8550000, - "canton": null, - "numero_insee": "63122" - } - }, - { - "pk": 37325, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COURNON-D'AUVERGNE", - "center": "POINT (666145.7848194856196642 2082826.1611957892309874)", - "surface": 18860000, - "canton": null, - "numero_insee": "63124" - } - }, - { - "pk": 24266, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "COURPIERE", - "center": "POINT (693654.6172275549033657 2084860.4254513143096119)", - "surface": 31810000, - "canton": null, - "numero_insee": "63125" - } - }, - { - "pk": 7962, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE CREST", - "center": "POINT (661992.7939459290355444 2076785.4050155191216618)", - "surface": 6870000, - "canton": null, - "numero_insee": "63126" - } - }, - { - "pk": 13611, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CRESTE", - "center": "POINT (655812.2074324176646769 2061919.0859764947090298)", - "surface": 4470000, - "canton": null, - "numero_insee": "63127" - } - }, - { - "pk": 3025, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CROS", - "center": "POINT (621163.7558120837202296 2051817.7813160170335323)", - "surface": 19960000, - "canton": null, - "numero_insee": "63129" - } - }, - { - "pk": 32368, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA CROUZILLE", - "center": "POINT (632015.2200521390186623 2130182.6320835724473000)", - "surface": 18720000, - "canton": null, - "numero_insee": "63130" - } - }, - { - "pk": 10118, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CULHAT", - "center": "POINT (678145.5531160921091214 2096039.8812721339054406)", - "surface": 18720000, - "canton": null, - "numero_insee": "63131" - } - }, - { - "pk": 14718, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "CUNLHAT", - "center": "POINT (695576.5100965393939987 2070663.1846828532870859)", - "surface": 29810000, - "canton": null, - "numero_insee": "63132" - } - }, - { - "pk": 11399, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "DALLET", - "center": "POINT (670122.2348295515403152 2086062.7699954828713089)", - "surface": 6710000, - "canton": null, - "numero_insee": "63133" - } - }, - { - "pk": 25796, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "DAUZAT-SUR-VODABLE", - "center": "POINT (658293.7310215895995498 2052530.9385572627652436)", - "surface": 15200000, - "canton": null, - "numero_insee": "63134" - } - }, - { - "pk": 9856, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "DAVAYAT", - "center": "POINT (660349.1393253429559991 2105498.5334857683628798)", - "surface": 2320000, - "canton": null, - "numero_insee": "63135" - } - }, - { - "pk": 14565, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "DORANGES", - "center": "POINT (699296.5894637703895569 2045069.9426457281224430)", - "surface": 19440000, - "canton": null, - "numero_insee": "63137" - } - }, - { - "pk": 5920, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "DORE-L'EGLISE", - "center": "POINT (711226.8648422535043210 2042868.7769620972685516)", - "surface": 27350000, - "canton": null, - "numero_insee": "63139" - } - }, - { - "pk": 4810, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "DURMIGNAT", - "center": "POINT (642900.7614161003148183 2133076.8598526935093105)", - "surface": 12440000, - "canton": null, - "numero_insee": "63140" - } - }, - { - "pk": 32751, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "DURTOL", - "center": "POINT (655586.7746952446177602 2088642.6211929875425994)", - "surface": 4030000, - "canton": null, - "numero_insee": "63141" - } - }, - { - "pk": 19783, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ECHANDELYS", - "center": "POINT (693252.3229680099757388 2061434.6770947754848748)", - "surface": 23650000, - "canton": null, - "numero_insee": "63142" - } - }, - { - "pk": 18693, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "EFFIAT", - "center": "POINT (672067.9503615479916334 2116407.4854172659106553)", - "surface": 20160000, - "canton": null, - "numero_insee": "63143" - } - }, - { - "pk": 30868, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "EGLISENEUVE-D'ENTRAIGUES", - "center": "POINT (638021.8532995061250404 2046854.7026129919104278)", - "surface": 56670000, - "canton": null, - "numero_insee": "63144" - } - }, - { - "pk": 30053, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "EGLISENEUVE-DES-LIARDS", - "center": "POINT (684627.7224093327531591 2063363.6332393568009138)", - "surface": 8240000, - "canton": null, - "numero_insee": "63145" - } - }, - { - "pk": 9088, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "EGLISENEUVE-PRES-BILLOM", - "center": "POINT (681984.1638476402731612 2080057.2392541237641126)", - "surface": 16720000, - "canton": null, - "numero_insee": "63146" - } - }, - { - "pk": 5046, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "EGLISOLLES", - "center": "POINT (719948.2248018789105117 2053152.6741948516573757)", - "surface": 20520000, - "canton": null, - "numero_insee": "63147" - } - }, - { - "pk": 9456, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ENNEZAT", - "center": "POINT (668204.0162336779758334 2099859.5342425615526736)", - "surface": 18810000, - "canton": null, - "numero_insee": "63148" - } - }, - { - "pk": 9244, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ENTRAIGUES", - "center": "POINT (671918.2009581597521901 2098589.6916880700737238)", - "surface": 10000000, - "canton": null, - "numero_insee": "63149" - } - }, - { - "pk": 36097, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ENVAL", - "center": "POINT (655592.2989489713218063 2099853.1776959355920553)", - "surface": 4910000, - "canton": null, - "numero_insee": "63150" - } - }, - { - "pk": 16230, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ESCOUTOUX", - "center": "POINT (694601.2671782184625044 2091274.4777383529581130)", - "surface": 27410000, - "canton": null, - "numero_insee": "63151" - } - }, - { - "pk": 21385, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ESPINASSE", - "center": "POINT (628940.5583221381530166 2114942.8196281078271568)", - "surface": 23990000, - "canton": null, - "numero_insee": "63152" - } - }, - { - "pk": 38008, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ESPINCHAL", - "center": "POINT (642451.1255069493781775 2043889.0897370316088200)", - "surface": 8870000, - "canton": null, - "numero_insee": "63153" - } - }, - { - "pk": 28170, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ESPIRAT", - "center": "POINT (677645.7040464652236551 2084124.4484891982283443)", - "surface": 4360000, - "canton": null, - "numero_insee": "63154" - } - }, - { - "pk": 30067, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ESTANDEUIL", - "center": "POINT (686220.8689206131966785 2076189.3609817067626864)", - "surface": 9640000, - "canton": null, - "numero_insee": "63155" - } - }, - { - "pk": 25679, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ESTEIL", - "center": "POINT (680629.8449518538545817 2050817.7434954545460641)", - "surface": 4600000, - "canton": null, - "numero_insee": "63156" - } - }, - { - "pk": 6399, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "FAYET-LE-CHATEAU", - "center": "POINT (683520.1835735948989168 2075966.3288917932659388)", - "surface": 12540000, - "canton": null, - "numero_insee": "63157" - } - }, - { - "pk": 22028, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "FERNOEL", - "center": "POINT (606623.1383895396720618 2090732.8354647823143750)", - "surface": 14520000, - "canton": null, - "numero_insee": "63159" - } - }, - { - "pk": 11571, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "FLAT", - "center": "POINT (674713.8322809855453670 2063880.4014549730345607)", - "surface": 4230000, - "canton": null, - "numero_insee": "63160" - } - }, - { - "pk": 13092, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA FORIE", - "center": "POINT (710527.8762580610346049 2066285.5287982032168657)", - "surface": 2840000, - "canton": null, - "numero_insee": "63161" - } - }, - { - "pk": 15706, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "FOURNOLS", - "center": "POINT (697780.9135353184537962 2058570.2162654381245375)", - "surface": 29080000, - "canton": null, - "numero_insee": "63162" - } - }, - { - "pk": 28975, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GELLES", - "center": "POINT (633699.7105996289756149 2084654.5815218486823142)", - "surface": 47630000, - "canton": null, - "numero_insee": "63163" - } - }, - { - "pk": 26090, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GERZAT", - "center": "POINT (663564.1735611920012161 2092213.2350711158942431)", - "surface": 16370000, - "canton": null, - "numero_insee": "63164" - } - }, - { - "pk": 21592, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GIAT", - "center": "POINT (610843.6107508754357696 2088766.4063272357452661)", - "surface": 48060000, - "canton": null, - "numero_insee": "63165" - } - }, - { - "pk": 36613, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GIGNAT", - "center": "POINT (668888.8850904047721997 2054322.0256085847504437)", - "surface": 3510000, - "canton": null, - "numero_insee": "63166" - } - }, - { - "pk": 13477, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GIMEAUX", - "center": "POINT (659047.1785369438584894 2105587.6393145197071135)", - "surface": 2140000, - "canton": null, - "numero_insee": "63167" - } - }, - { - "pk": 34006, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GLAINE-MONTAIGUT", - "center": "POINT (681651.7420218840707093 2083858.0309519551228732)", - "surface": 13020000, - "canton": null, - "numero_insee": "63168" - } - }, - { - "pk": 26953, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA GODIVELLE", - "center": "POINT (645458.0584078131942078 2043413.9402923816815019)", - "surface": 15440000, - "canton": null, - "numero_insee": "63169" - } - }, - { - "pk": 24028, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA GOUTELLE", - "center": "POINT (631820.6251251465873793 2093847.4280635491013527)", - "surface": 24180000, - "canton": null, - "numero_insee": "63170" - } - }, - { - "pk": 17399, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GOUTTIERES", - "center": "POINT (633917.0079856984084472 2118287.7492243163287640)", - "surface": 25840000, - "canton": null, - "numero_insee": "63171" - } - }, - { - "pk": 10234, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GRANDEYROLLES", - "center": "POINT (655386.5219595583621413 2064918.3799352671485394)", - "surface": 5340000, - "canton": null, - "numero_insee": "63172" - } - }, - { - "pk": 16666, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GRANDRIF", - "center": "POINT (716998.0800207187421620 2058733.0710361041128635)", - "surface": 22100000, - "canton": null, - "numero_insee": "63173" - } - }, - { - "pk": 10790, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "GRANDVAL", - "center": "POINT (702513.9865894787944853 2067018.3879845263436437)", - "surface": 9800000, - "canton": null, - "numero_insee": "63174" - } - }, - { - "pk": 25786, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "HERMENT", - "center": "POINT (618084.3852874275762588 2084723.3938711092341691)", - "surface": 9660000, - "canton": null, - "numero_insee": "63175" - } - }, - { - "pk": 6967, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "HEUME-L'EGLISE", - "center": "POINT (629934.2944425439927727 2080118.6231732505839318)", - "surface": 15290000, - "canton": null, - "numero_insee": "63176" - } - }, - { - "pk": 16577, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ISSERTEAUX", - "center": "POINT (681342.7866458898643032 2073045.1515757809393108)", - "surface": 17570000, - "canton": null, - "numero_insee": "63177" - } - }, - { - "pk": 32343, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ISSOIRE", - "center": "POINT (670934.9685190367745236 2060945.6840684614144266)", - "surface": 19670000, - "canton": null, - "numero_insee": "63178" - } - }, - { - "pk": 16643, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "JOB", - "center": "POINT (711191.1643360066227615 2070695.3696961468085647)", - "surface": 42650000, - "canton": null, - "numero_insee": "63179" - } - }, - { - "pk": 14293, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "JOZE", - "center": "POINT (675036.1028939954703674 2096814.3509439243935049)", - "surface": 19330000, - "canton": null, - "numero_insee": "63180" - } - }, - { - "pk": 11263, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "JOZERAND", - "center": "POINT (658975.3904440484475344 2114094.9098694287240505)", - "surface": 10820000, - "canton": null, - "numero_insee": "63181" - } - }, - { - "pk": 32424, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "JUMEAUX", - "center": "POINT (679146.2627848749980330 2048703.1600663815625012)", - "surface": 7220000, - "canton": null, - "numero_insee": "63182" - } - }, - { - "pk": 7843, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LABESSETTE", - "center": "POINT (615530.9571056896820664 2055073.6199011213611811)", - "surface": 10450000, - "canton": null, - "numero_insee": "63183" - } - }, - { - "pk": 3168, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LACHAUX", - "center": "POINT (697337.6840901180403307 2110915.9474869421683252)", - "surface": 22400000, - "canton": null, - "numero_insee": "63184" - } - }, - { - "pk": 19200, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LAMONTGIE", - "center": "POINT (677507.5983594858553261 2053093.5829981365241110)", - "surface": 7090000, - "canton": null, - "numero_insee": "63185" - } - }, - { - "pk": 3436, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LANDOGNE", - "center": "POINT (624177.8286963746650144 2098087.1426977743394673)", - "surface": 17540000, - "canton": null, - "numero_insee": "63186" - } - }, - { - "pk": 15831, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LAPEYROUSE", - "center": "POINT (641766.9529986081179231 2136970.8450157139450312)", - "surface": 36140000, - "canton": null, - "numero_insee": "63187" - } - }, - { - "pk": 26089, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LAPS", - "center": "POINT (672518.1030130127910525 2074972.4758077829610556)", - "surface": 7120000, - "canton": null, - "numero_insee": "63188" - } - }, - { - "pk": 16445, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LAQUEUILLE", - "center": "POINT (631901.6790548914577812 2072327.7593399938195944)", - "surface": 22270000, - "canton": null, - "numero_insee": "63189" - } - }, - { - "pk": 18390, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LARODDE", - "center": "POINT (616906.1289957889821380 2058188.1752925999462605)", - "surface": 22980000, - "canton": null, - "numero_insee": "63190" - } - }, - { - "pk": 20394, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LASTIC", - "center": "POINT (618143.2890654833754525 2077717.2540995168965310)", - "surface": 17370000, - "canton": null, - "numero_insee": "63191" - } - }, - { - "pk": 16044, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA TOUR-D'AUVERGNE", - "center": "POINT (628898.3306269755121320 2060491.1636173089500517)", - "surface": 48730000, - "canton": null, - "numero_insee": "63192" - } - }, - { - "pk": 13888, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LEMPDES", - "center": "POINT (666518.2457006303593516 2086132.4276419146917760)", - "surface": 12270000, - "canton": null, - "numero_insee": "63193" - } - }, - { - "pk": 9333, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LEMPTY", - "center": "POINT (677074.2082903510890901 2092527.5405657726805657)", - "surface": 4790000, - "canton": null, - "numero_insee": "63194" - } - }, - { - "pk": 17142, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LEZOUX", - "center": "POINT (681478.0294348406605422 2092564.7688454776071012)", - "surface": 34680000, - "canton": null, - "numero_insee": "63195" - } - }, - { - "pk": 32132, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LIMONS", - "center": "POINT (685943.1803530597826466 2109017.8455863650888205)", - "surface": 15680000, - "canton": null, - "numero_insee": "63196" - } - }, - { - "pk": 28616, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LISSEUIL", - "center": "POINT (646234.1985009685158730 2117590.7746852883137763)", - "surface": 6910000, - "canton": null, - "numero_insee": "63197" - } - }, - { - "pk": 15793, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LOUBEYRAT", - "center": "POINT (651952.0549961263313890 2104226.5771802393719554)", - "surface": 24200000, - "canton": null, - "numero_insee": "63198" - } - }, - { - "pk": 13751, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LUDESSE", - "center": "POINT (659459.7621536977821961 2068556.1987421810626984)", - "surface": 8670000, - "canton": null, - "numero_insee": "63199" - } - }, - { - "pk": 3969, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LUSSAT", - "center": "POINT (669058.8072689648251981 2093460.7584242545999587)", - "surface": 9160000, - "canton": null, - "numero_insee": "63200" - } - }, - { - "pk": 5868, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LUZILLAT", - "center": "POINT (681256.0821207717526704 2106976.3498880090191960)", - "surface": 23590000, - "canton": null, - "numero_insee": "63201" - } - }, - { - "pk": 35163, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MALAUZAT", - "center": "POINT (656227.4352161281276494 2095754.6993485474959016)", - "surface": 6000000, - "canton": null, - "numero_insee": "63203" - } - }, - { - "pk": 10793, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MALINTRAT", - "center": "POINT (666382.6631530589656904 2090335.2436659603845328)", - "surface": 8280000, - "canton": null, - "numero_insee": "63204" - } - }, - { - "pk": 15709, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MANGLIEU", - "center": "POINT (679480.0295389328384772 2068425.0035849497653544)", - "surface": 21300000, - "canton": null, - "numero_insee": "63205" - } - }, - { - "pk": 28073, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MANZAT", - "center": "POINT (646739.9922632435336709 2105083.4711657282896340)", - "surface": 39050000, - "canton": null, - "numero_insee": "63206" - } - }, - { - "pk": 31302, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MARAT", - "center": "POINT (705244.3880650784121826 2075549.6494493905920535)", - "surface": 30060000, - "canton": null, - "numero_insee": "63207" - } - }, - { - "pk": 19486, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MARCILLAT", - "center": "POINT (653922.1672679221956059 2119857.6210315641947091)", - "surface": 11650000, - "canton": null, - "numero_insee": "63208" - } - }, - { - "pk": 21454, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MAREUGHEOL", - "center": "POINT (664487.4722328995121643 2053984.5700676972046494)", - "surface": 7600000, - "canton": null, - "numero_insee": "63209" - } - }, - { - "pk": 15766, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MARINGUES", - "center": "POINT (677688.5260765409329906 2102742.2813109280541539)", - "surface": 21850000, - "canton": null, - "numero_insee": "63210" - } - }, - { - "pk": 16292, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MARSAC-EN-LIVRADOIS", - "center": "POINT (708327.6253626996185631 2054255.3017723057419062)", - "surface": 48470000, - "canton": null, - "numero_insee": "63211" - } - }, - { - "pk": 3143, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MARSAT", - "center": "POINT (657917.0846297311363742 2097170.2661620639264584)", - "surface": 4170000, - "canton": null, - "numero_insee": "63212" - } - }, - { - "pk": 31988, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LES MARTRES-D'ARTIERE", - "center": "POINT (671768.7599024983355775 2092582.8036933639086783)", - "surface": 14920000, - "canton": null, - "numero_insee": "63213" - } - }, - { - "pk": 12473, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LES MARTRES-DE-VEYRE", - "center": "POINT (667199.9070478137582541 2076529.0802431362681091)", - "surface": 9200000, - "canton": null, - "numero_insee": "63214" - } - }, - { - "pk": 28169, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MARTRES-SUR-MORGE", - "center": "POINT (668366.1514227251755074 2104365.1002431712113321)", - "surface": 8390000, - "canton": null, - "numero_insee": "63215" - } - }, - { - "pk": 17388, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MAUZUN", - "center": "POINT (684797.6265122216427699 2078779.7966865480411798)", - "surface": 1010000, - "canton": null, - "numero_insee": "63216" - } - }, - { - "pk": 4586, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MAYRES", - "center": "POINT (706714.3066335615003482 2043831.5085248677060008)", - "surface": 12430000, - "canton": null, - "numero_insee": "63218" - } - }, - { - "pk": 29200, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MAZAYE", - "center": "POINT (641785.7114763128338382 2087225.0450675040483475)", - "surface": 21880000, - "canton": null, - "numero_insee": "63219" - } - }, - { - "pk": 23827, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MAZOIRES", - "center": "POINT (655662.2272677461151034 2044100.5647156145423651)", - "surface": 42370000, - "canton": null, - "numero_insee": "63220" - } - }, - { - "pk": 14431, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MEDEYROLLES", - "center": "POINT (715902.2624701933236793 2046311.7398052562493831)", - "surface": 17120000, - "canton": null, - "numero_insee": "63221" - } - }, - { - "pk": 10280, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MEILHAUD", - "center": "POINT (664731.9715187663678080 2060593.0120666893199086)", - "surface": 4470000, - "canton": null, - "numero_insee": "63222" - } - }, - { - "pk": 21116, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MENAT", - "center": "POINT (643181.0480816327035427 2123570.5536853694356978)", - "surface": 20540000, - "canton": null, - "numero_insee": "63223" - } - }, - { - "pk": 13213, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MENETROL", - "center": "POINT (661831.4399254507152364 2095902.0817286758683622)", - "surface": 9070000, - "canton": null, - "numero_insee": "63224" - } - }, - { - "pk": 5280, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MEZEL", - "center": "POINT (670343.5450145963113755 2083562.2751010749489069)", - "surface": 8450000, - "canton": null, - "numero_insee": "63226" - } - }, - { - "pk": 5006, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MIREFLEURS", - "center": "POINT (669197.4413820632034913 2077046.4255940101575106)", - "surface": 9160000, - "canton": null, - "numero_insee": "63227" - } - }, - { - "pk": 22982, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MIREMONT", - "center": "POINT (629559.7527069905772805 2100834.9488727468997240)", - "surface": 37920000, - "canton": null, - "numero_insee": "63228" - } - }, - { - "pk": 32127, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MOISSAT", - "center": "POINT (678923.1513174156425521 2086937.8932852293364704)", - "surface": 13130000, - "canton": null, - "numero_insee": "63229" - } - }, - { - "pk": 15065, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE MONESTIER", - "center": "POINT (702650.5328190345317125 2062715.4113596556708217)", - "surface": 17350000, - "canton": null, - "numero_insee": "63230" - } - }, - { - "pk": 30142, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA MONNERIE-LE-MONTEL", - "center": "POINT (698950.8471990663092583 2097717.3133365456014872)", - "surface": 4630000, - "canton": null, - "numero_insee": "63231" - } - }, - { - "pk": 7961, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTAIGUT", - "center": "POINT (635810.8265859974781051 2131115.4087045583873987)", - "surface": 8200000, - "canton": null, - "numero_insee": "63233" - } - }, - { - "pk": 15361, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTAIGUT-LE-BLANC", - "center": "POINT (657885.3671326622134075 2065339.8452941358555108)", - "surface": 22560000, - "canton": null, - "numero_insee": "63234" - } - }, - { - "pk": 26934, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTCEL", - "center": "POINT (656283.2220146573381498 2112871.0863046562299132)", - "surface": 9430000, - "canton": null, - "numero_insee": "63235" - } - }, - { - "pk": 16043, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONT-DORE", - "center": "POINT (636875.9697956283343956 2064061.6914682264905423)", - "surface": 35850000, - "canton": null, - "numero_insee": "63236" - } - }, - { - "pk": 23948, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTEL-DE-GELAT", - "center": "POINT (619221.4168222605949268 2104251.2418320532888174)", - "surface": 25120000, - "canton": null, - "numero_insee": "63237" - } - }, - { - "pk": 15158, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTFERMY", - "center": "POINT (635699.5669261817820370 2096782.8042700833175331)", - "surface": 14280000, - "canton": null, - "numero_insee": "63238" - } - }, - { - "pk": 5513, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTMORIN", - "center": "POINT (679505.6602500610752031 2077233.6230502361431718)", - "surface": 13830000, - "canton": null, - "numero_insee": "63239" - } - }, - { - "pk": 32571, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTPENSIER", - "center": "POINT (668871.9916668289806694 2115579.7509480272419751)", - "surface": 7260000, - "canton": null, - "numero_insee": "63240" - } - }, - { - "pk": 14100, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MONTPEYROUX", - "center": "POINT (667557.6453716881806031 2069725.6107942739035934)", - "surface": 3380000, - "canton": null, - "numero_insee": "63241" - } - }, - { - "pk": 26085, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MORIAT", - "center": "POINT (672167.8558206914458424 2045340.9739573728293180)", - "surface": 10890000, - "canton": null, - "numero_insee": "63242" - } - }, - { - "pk": 19959, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MOUREUILLE", - "center": "POINT (642732.6402701458428055 2129271.9842680199071765)", - "surface": 16870000, - "canton": null, - "numero_insee": "63243" - } - }, - { - "pk": 11051, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA MOUTADE", - "center": "POINT (663032.0255576261552051 2107823.3151098275557160)", - "surface": 5270000, - "canton": null, - "numero_insee": "63244" - } - }, - { - "pk": 6579, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MOZAC", - "center": "POINT (657998.5923367048380896 2099373.0117074470035732)", - "surface": 4030000, - "canton": null, - "numero_insee": "63245" - } - }, - { - "pk": 26211, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MURAT-LE-QUAIRE", - "center": "POINT (632946.3781592359300703 2067131.5793413063511252)", - "surface": 11660000, - "canton": null, - "numero_insee": "63246" - } - }, - { - "pk": 16647, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "MUROL", - "center": "POINT (645674.5216204839525744 2065236.8744528316892684)", - "surface": 15090000, - "canton": null, - "numero_insee": "63247" - } - }, - { - "pk": 23305, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NEBOUZAT", - "center": "POINT (645250.2552144442452118 2079947.3314189705997705)", - "surface": 21740000, - "canton": null, - "numero_insee": "63248" - } - }, - { - "pk": 30143, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NERONDE-SUR-DORE", - "center": "POINT (690914.1427201090846211 2089341.4811160599347204)", - "surface": 9060000, - "canton": null, - "numero_insee": "63249" - } - }, - { - "pk": 28626, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NESCHERS", - "center": "POINT (664586.2529077114304528 2065996.9757293888833374)", - "surface": 9660000, - "canton": null, - "numero_insee": "63250" - } - }, - { - "pk": 3828, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NEUF-EGLISE", - "center": "POINT (641091.9217462947126478 2122051.5764008034020662)", - "surface": 15010000, - "canton": null, - "numero_insee": "63251" - } - }, - { - "pk": 20264, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NEUVILLE", - "center": "POINT (686054.7454069777159020 2083995.3618396990932524)", - "surface": 11650000, - "canton": null, - "numero_insee": "63252" - } - }, - { - "pk": 28833, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NOALHAT", - "center": "POINT (687298.4823060064809397 2102623.3580748382955790)", - "surface": 5160000, - "canton": null, - "numero_insee": "63253" - } - }, - { - "pk": 6888, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NOHANENT", - "center": "POINT (655973.6138429851271212 2090247.3917450837325305)", - "surface": 4260000, - "canton": null, - "numero_insee": "63254" - } - }, - { - "pk": 32854, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NONETTE", - "center": "POINT (673995.1521946198772639 2054164.9666910462547094)", - "surface": 7490000, - "canton": null, - "numero_insee": "63255" - } - }, - { - "pk": 16568, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "NOVACELLES", - "center": "POINT (703372.3162775916280225 2048407.6799984285607934)", - "surface": 14370000, - "canton": null, - "numero_insee": "63256" - } - }, - { - "pk": 18563, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "OLBY", - "center": "POINT (641521.7092907308833674 2082918.7566132794599980)", - "surface": 17650000, - "canton": null, - "numero_insee": "63257" - } - }, - { - "pk": 22092, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "OLLOIX", - "center": "POINT (655649.6388468801742420 2069324.8183561072219163)", - "surface": 11950000, - "canton": null, - "numero_insee": "63259" - } - }, - { - "pk": 14408, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "OLMET", - "center": "POINT (703302.0139711789088324 2080337.7598324059508741)", - "surface": 15650000, - "canton": null, - "numero_insee": "63260" - } - }, - { - "pk": 30849, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ORBEIL", - "center": "POINT (672712.8977914642309770 2063763.3989897693973035)", - "surface": 9640000, - "canton": null, - "numero_insee": "63261" - } - }, - { - "pk": 7136, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ORCET", - "center": "POINT (665180.4003376888576895 2078614.0255527189001441)", - "surface": 6130000, - "canton": null, - "numero_insee": "63262" - } - }, - { - "pk": 17722, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ORCINES", - "center": "POINT (651292.3115429540630430 2087505.3639145120978355)", - "surface": 42730000, - "canton": null, - "numero_insee": "63263" - } - }, - { - "pk": 16385, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ORCIVAL", - "center": "POINT (639102.9832264134893194 2072988.9707883256487548)", - "surface": 27800000, - "canton": null, - "numero_insee": "63264" - } - }, - { - "pk": 3759, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ORLEAT", - "center": "POINT (685552.8064930294640362 2096002.4203347677830607)", - "surface": 26480000, - "canton": null, - "numero_insee": "63265" - } - }, - { - "pk": 10407, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ORSONNETTE", - "center": "POINT (675410.7870301746297628 2052475.2805360886268318)", - "surface": 3050000, - "canton": null, - "numero_insee": "63266" - } - }, - { - "pk": 20469, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PALLADUC", - "center": "POINT (701219.7731449104612693 2101640.1760764820501208)", - "surface": 13350000, - "canton": null, - "numero_insee": "63267" - } - }, - { - "pk": 23980, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PARDINES", - "center": "POINT (666015.3847797911148518 2062705.8702901031356305)", - "surface": 5180000, - "canton": null, - "numero_insee": "63268" - } - }, - { - "pk": 37021, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PARENT", - "center": "POINT (669360.9301940387813374 2069540.6486557314638048)", - "surface": 3760000, - "canton": null, - "numero_insee": "63269" - } - }, - { - "pk": 11390, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PARENTIGNAT", - "center": "POINT (674151.3549345504725352 2059371.3141952098812908)", - "surface": 3730000, - "canton": null, - "numero_insee": "63270" - } - }, - { - "pk": 26630, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PASLIERES", - "center": "POINT (690797.2603845726698637 2103153.4277766873128712)", - "surface": 27830000, - "canton": null, - "numero_insee": "63271" - } - }, - { - "pk": 27376, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PERIGNAT-LES-SARLIEVE", - "center": "POINT (662752.1005302162375301 2081696.4681567512452602)", - "surface": 3870000, - "canton": null, - "numero_insee": "63272" - } - }, - { - "pk": 25079, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PERIGNAT-SUR-ALLIER", - "center": "POINT (669863.3966344165382907 2081155.9453512681648135)", - "surface": 4840000, - "canton": null, - "numero_insee": "63273" - } - }, - { - "pk": 4268, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PERPEZAT", - "center": "POINT (634184.3295503753470257 2074649.1699989582411945)", - "surface": 36460000, - "canton": null, - "numero_insee": "63274" - } - }, - { - "pk": 6768, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PERRIER", - "center": "POINT (667332.6016137925907969 2060815.1630250376183540)", - "surface": 6400000, - "canton": null, - "numero_insee": "63275" - } - }, - { - "pk": 23809, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PESCHADOIRES", - "center": "POINT (688886.1493862753268331 2092427.2393551606219262)", - "surface": 20860000, - "canton": null, - "numero_insee": "63276" - } - }, - { - "pk": 25605, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PESLIERES", - "center": "POINT (688951.7095070722280070 2049186.4722799332812428)", - "surface": 6820000, - "canton": null, - "numero_insee": "63277" - } - }, - { - "pk": 29477, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PESSAT-VILLENEUVE", - "center": "POINT (663674.7855461391154677 2102824.0905723050236702)", - "surface": 6240000, - "canton": null, - "numero_insee": "63278" - } - }, - { - "pk": 18981, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PICHERANDE", - "center": "POINT (635575.0174418726237491 2052139.2477135783992708)", - "surface": 45080000, - "canton": null, - "numero_insee": "63279" - } - }, - { - "pk": 27744, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PIGNOLS", - "center": "POINT (673940.4796339371241629 2072482.1081143480259925)", - "surface": 9310000, - "canton": null, - "numero_insee": "63280" - } - }, - { - "pk": 18276, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PIONSAT", - "center": "POINT (626958.9374552085064352 2124434.8733025696128607)", - "surface": 24850000, - "canton": null, - "numero_insee": "63281" - } - }, - { - "pk": 32658, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PLAUZAT", - "center": "POINT (663258.9064154044026509 2069088.7421721173450351)", - "surface": 13280000, - "canton": null, - "numero_insee": "63282" - } - }, - { - "pk": 22981, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PONTAUMUR", - "center": "POINT (626801.9712771895574406 2095506.7857127373572439)", - "surface": 13990000, - "canton": null, - "numero_insee": "63283" - } - }, - { - "pk": 34056, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PONT-DU-CHATEAU", - "center": "POINT (670196.9598072995431721 2089066.2320374518167228)", - "surface": 21570000, - "canton": null, - "numero_insee": "63284" - } - }, - { - "pk": 29596, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PONTGIBAUD", - "center": "POINT (640144.6877905882429332 2091915.6461859382688999)", - "surface": 4630000, - "canton": null, - "numero_insee": "63285" - } - }, - { - "pk": 5934, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LES PRADEAUX", - "center": "POINT (674568.6270170052303001 2057372.9086756643373519)", - "surface": 5590000, - "canton": null, - "numero_insee": "63287" - } - }, - { - "pk": 34663, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PROMPSAT", - "center": "POINT (656948.7531865267083049 2105169.5615455200895667)", - "surface": 4230000, - "canton": null, - "numero_insee": "63288" - } - }, - { - "pk": 20536, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PRONDINES", - "center": "POINT (626996.3781555483583361 2084297.8780820325482637)", - "surface": 30690000, - "canton": null, - "numero_insee": "63289" - } - }, - { - "pk": 9314, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PULVERIERES", - "center": "POINT (645397.8370839440030977 2098065.6295200777240098)", - "surface": 14730000, - "canton": null, - "numero_insee": "63290" - } - }, - { - "pk": 17525, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PUY-GUILLAUME", - "center": "POINT (689961.0017845418769866 2107350.2595798675902188)", - "surface": 24890000, - "canton": null, - "numero_insee": "63291" - } - }, - { - "pk": 35142, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "PUY-SAINT-GULMIER", - "center": "POINT (622558.8566042233724147 2088264.3238786219153553)", - "surface": 20100000, - "canton": null, - "numero_insee": "63292" - } - }, - { - "pk": 19745, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "QUEUILLE", - "center": "POINT (638706.9864507433958352 2108118.6638607662171125)", - "surface": 10090000, - "canton": null, - "numero_insee": "63294" - } - }, - { - "pk": 30387, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "RANDAN", - "center": "POINT (679504.7032087255502120 2112867.0111405877396464)", - "surface": 15580000, - "canton": null, - "numero_insee": "63295" - } - }, - { - "pk": 37880, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "RAVEL", - "center": "POINT (682218.4142588704125956 2087866.6027992323506624)", - "surface": 10110000, - "canton": null, - "numero_insee": "63296" - } - }, - { - "pk": 33089, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "REIGNAT", - "center": "POINT (679251.3341820340137929 2083637.5475139913614839)", - "surface": 4100000, - "canton": null, - "numero_insee": "63297" - } - }, - { - "pk": 3023, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA RENAUDIE", - "center": "POINT (706780.4891373409191146 2083269.9835010943934321)", - "surface": 17930000, - "canton": null, - "numero_insee": "63298" - } - }, - { - "pk": 3249, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "RENTIERES", - "center": "POINT (661239.4182028877548873 2047450.8401960765477270)", - "surface": 15690000, - "canton": null, - "numero_insee": "63299" - } - }, - { - "pk": 28297, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "RIOM", - "center": "POINT (661700.0968225982505828 2099604.4356371448375285)", - "surface": 32570000, - "canton": null, - "numero_insee": "63300" - } - }, - { - "pk": 6016, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "RIS", - "center": "POINT (691021.2891462758416310 2112163.6823238227516413)", - "surface": 15750000, - "canton": null, - "numero_insee": "63301" - } - }, - { - "pk": 26622, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA ROCHE-BLANCHE", - "center": "POINT (662370.3359090395970270 2079491.1583943427540362)", - "surface": 11680000, - "canton": null, - "numero_insee": "63302" - } - }, - { - "pk": 4375, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ROCHE-CHARLES-LA-MAYRAND", - "center": "POINT (653411.2758281208807603 2049887.2274681748822331)", - "surface": 16270000, - "canton": null, - "numero_insee": "63303" - } - }, - { - "pk": 37082, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ROCHE-D'AGOUX", - "center": "POINT (623630.1518549694446847 2115598.7851067618466914)", - "surface": 5550000, - "canton": null, - "numero_insee": "63304" - } - }, - { - "pk": 26288, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA ROCHE-NOIRE", - "center": "POINT (668976.1323914423119277 2079546.9329443075694144)", - "surface": 3170000, - "canton": null, - "numero_insee": "63306" - } - }, - { - "pk": 14087, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "ROYAT", - "center": "POINT (654722.2928383352700621 2084331.2687171380966902)", - "surface": 6670000, - "canton": null, - "numero_insee": "63308" - } - }, - { - "pk": 16769, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAILLANT", - "center": "POINT (724270.7756936231162399 2050987.2160962119232863)", - "surface": 17380000, - "canton": null, - "numero_insee": "63309" - } - }, - { - "pk": 20405, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINTE-AGATHE", - "center": "POINT (699899.9416523983236402 2092020.0012819748371840)", - "surface": 18180000, - "canton": null, - "numero_insee": "63310" - } - }, - { - "pk": 17299, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-AGOULIN", - "center": "POINT (661262.9897597044473514 2115815.7843326060101390)", - "surface": 9360000, - "canton": null, - "numero_insee": "63311" - } - }, - { - "pk": 20251, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ALYRE-D'ARLANC", - "center": "POINT (701027.7967108841985464 2041581.1832298994995654)", - "surface": 24060000, - "canton": null, - "numero_insee": "63312" - } - }, - { - "pk": 35364, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ALYRE-ES-MONTAGNE", - "center": "POINT (649772.0780953419161960 2042249.1329549057409167)", - "surface": 41150000, - "canton": null, - "numero_insee": "63313" - } - }, - { - "pk": 24855, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-AMANT-ROCHE-SAVINE", - "center": "POINT (699127.9198430855758488 2064987.7886793112847954)", - "surface": 24000000, - "canton": null, - "numero_insee": "63314" - } - }, - { - "pk": 3528, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-AMANT-TALLENDE", - "center": "POINT (660211.4811267597833648 2074368.0849832755047828)", - "surface": 5090000, - "canton": null, - "numero_insee": "63315" - } - }, - { - "pk": 31342, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ANDRE-LE-COQ", - "center": "POINT (675251.7826496693305671 2106825.5027448395267129)", - "surface": 17980000, - "canton": null, - "numero_insee": "63317" - } - }, - { - "pk": 20974, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ANGEL", - "center": "POINT (646686.8433005062397569 2111388.8676736708730459)", - "surface": 18030000, - "canton": null, - "numero_insee": "63318" - } - }, - { - "pk": 23291, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ANTHEME", - "center": "POINT (721767.5509471544064581 2062877.4875688371248543)", - "surface": 68910000, - "canton": null, - "numero_insee": "63319" - } - }, - { - "pk": 18685, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-AVIT", - "center": "POINT (614675.5056342561729252 2097306.5880034975707531)", - "surface": 19390000, - "canton": null, - "numero_insee": "63320" - } - }, - { - "pk": 23564, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-BABEL", - "center": "POINT (675185.5206149921286851 2067287.6521382834762335)", - "surface": 19470000, - "canton": null, - "numero_insee": "63321" - } - }, - { - "pk": 26481, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-BEAUZIRE", - "center": "POINT (665740.7323568598367274 2095234.4275730741210282)", - "surface": 16480000, - "canton": null, - "numero_insee": "63322" - } - }, - { - "pk": 34193, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-BONNET-LE-CHASTEL", - "center": "POINT (701740.3535834449576214 2051997.3561769200023264)", - "surface": 23350000, - "canton": null, - "numero_insee": "63324" - } - }, - { - "pk": 13478, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-BONNET-LES-ALLIER", - "center": "POINT (671453.8082947301445529 2082470.6119884890504181)", - "surface": 1530000, - "canton": null, - "numero_insee": "63325" - } - }, - { - "pk": 30658, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-BONNET-PRES-ORCIVAL", - "center": "POINT (641056.6863140321802348 2078710.8556977405678481)", - "surface": 14900000, - "canton": null, - "numero_insee": "63326" - } - }, - { - "pk": 30924, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-BONNET-PRES-RIOM", - "center": "POINT (660466.9633729823399335 2103397.5733252433128655)", - "surface": 7030000, - "canton": null, - "numero_insee": "63327" - } - }, - { - "pk": 10281, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINTE-CATHERINE", - "center": "POINT (689240.1241351383505389 2050590.2736020840238780)", - "surface": 5640000, - "canton": null, - "numero_insee": "63328" - } - }, - { - "pk": 3457, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINTE-CHRISTINE", - "center": "POINT (638213.0716203744523227 2119224.7544504106044769)", - "surface": 12900000, - "canton": null, - "numero_insee": "63329" - } - }, - { - "pk": 33571, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-CIRGUES-SUR-COUZE", - "center": "POINT (663027.9196516090305522 2060878.9159259896259755)", - "surface": 1520000, - "canton": null, - "numero_insee": "63330" - } - }, - { - "pk": 31293, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-CLEMENT-DE-REGNAT", - "center": "POINT (674213.7133830109378323 2111220.8115348275750875)", - "surface": 14970000, - "canton": null, - "numero_insee": "63332" - } - }, - { - "pk": 36166, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-DENIS-COMBARNAZAT", - "center": "POINT (678337.5206866636872292 2108853.4398209112696350)", - "surface": 10220000, - "canton": null, - "numero_insee": "63333" - } - }, - { - "pk": 18110, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-DIER-D'AUVERGNE", - "center": "POINT (689233.6734281593235210 2075013.7053640387021005)", - "surface": 20300000, - "canton": null, - "numero_insee": "63334" - } - }, - { - "pk": 17134, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-DIERY", - "center": "POINT (652423.5254914462566376 2060188.8664867838378996)", - "surface": 19930000, - "canton": null, - "numero_insee": "63335" - } - }, - { - "pk": 35878, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-DONAT", - "center": "POINT (628674.7108938600867987 2051380.4823238039389253)", - "surface": 33390000, - "canton": null, - "numero_insee": "63336" - } - }, - { - "pk": 18636, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ELOY-LA-GLACIERE", - "center": "POINT (696039.5680301355896518 2063260.0042711438145489)", - "surface": 12010000, - "canton": null, - "numero_insee": "63337" - } - }, - { - "pk": 34405, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ELOY-LES-MINES", - "center": "POINT (639028.6868950275238603 2129340.8704054011031985)", - "surface": 21950000, - "canton": null, - "numero_insee": "63338" - } - }, - { - "pk": 23240, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ETIENNE-DES-CHAMPS", - "center": "POINT (618835.4342505185632035 2090635.2720991461537778)", - "surface": 23620000, - "canton": null, - "numero_insee": "63339" - } - }, - { - "pk": 15666, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-ETIENNE-SUR-USSON", - "center": "POINT (683181.4015396597096696 2056845.1326933479867876)", - "surface": 15620000, - "canton": null, - "numero_insee": "63340" - } - }, - { - "pk": 23124, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-FERREOL-DES-COTES", - "center": "POINT (706374.1845732649089769 2060344.6462574785109609)", - "surface": 15020000, - "canton": null, - "numero_insee": "63341" - } - }, - { - "pk": 21665, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-FLORET", - "center": "POINT (659130.3517247881973162 2060145.3469301359727979)", - "surface": 12270000, - "canton": null, - "numero_insee": "63342" - } - }, - { - "pk": 22226, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-FLOUR", - "center": "POINT (691296.5629242605064064 2079635.5386381074786186)", - "surface": 9550000, - "canton": null, - "numero_insee": "63343" - } - }, - { - "pk": 27417, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GAL-SUR-SIOULE", - "center": "POINT (650790.8451760180760175 2123234.3332214476540685)", - "surface": 9530000, - "canton": null, - "numero_insee": "63344" - } - }, - { - "pk": 15372, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GENES-CHAMPANELLE", - "center": "POINT (651551.5660991262411699 2080500.9275983348488808)", - "surface": 51730000, - "canton": null, - "numero_insee": "63345" - } - }, - { - "pk": 3293, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GENES-CHAMPESPE", - "center": "POINT (630420.0459197340533137 2046190.1148516337852925)", - "surface": 32290000, - "canton": null, - "numero_insee": "63346" - } - }, - { - "pk": 31606, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GENES-DU-RETZ", - "center": "POINT (667647.3042698075296357 2118371.9876133291982114)", - "surface": 8270000, - "canton": null, - "numero_insee": "63347" - } - }, - { - "pk": 17495, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GENES-LA-TOURETTE", - "center": "POINT (689376.7904169524554163 2058098.6967507479712367)", - "surface": 18480000, - "canton": null, - "numero_insee": "63348" - } - }, - { - "pk": 20429, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GEORGES-DE-MONS", - "center": "POINT (640936.6965844153892249 2104834.3811496119014919)", - "surface": 34260000, - "canton": null, - "numero_insee": "63349" - } - }, - { - "pk": 37718, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GEORGES-SUR-ALLIER", - "center": "POINT (671876.9881798700662330 2079771.6259709107689559)", - "surface": 9360000, - "canton": null, - "numero_insee": "63350" - } - }, - { - "pk": 16364, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GERMAIN-PRES-HERMENT", - "center": "POINT (616820.2693452781531960 2080308.6002537859603763)", - "surface": 17170000, - "canton": null, - "numero_insee": "63351" - } - }, - { - "pk": 34206, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GERMAIN-LEMBRON", - "center": "POINT (670821.8715445111738518 2050634.7629605142865330)", - "surface": 15830000, - "canton": null, - "numero_insee": "63352" - } - }, - { - "pk": 14719, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GERMAIN-L'HERM", - "center": "POINT (694432.9432268821401522 2052035.5785716255195439)", - "surface": 36470000, - "canton": null, - "numero_insee": "63353" - } - }, - { - "pk": 20597, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GERVAIS-D'AUVERGNE", - "center": "POINT (638263.6510244942037389 2113219.6511186012066901)", - "surface": 47690000, - "canton": null, - "numero_insee": "63354" - } - }, - { - "pk": 23629, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GERVAIS-SOUS-MEYMONT", - "center": "POINT (699442.6665926701389253 2075100.1226246221922338)", - "surface": 10480000, - "canton": null, - "numero_insee": "63355" - } - }, - { - "pk": 32855, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-GERVAZY", - "center": "POINT (668567.9826871121767908 2044910.1772096911445260)", - "surface": 14330000, - "canton": null, - "numero_insee": "63356" - } - }, - { - "pk": 16567, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-HERENT", - "center": "POINT (662807.9126818092772737 2051367.8704834089148790)", - "surface": 12970000, - "canton": null, - "numero_insee": "63357" - } - }, - { - "pk": 18689, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-HILAIRE-LA-CROIX", - "center": "POINT (654758.3036079891026020 2115660.8074118546210229)", - "surface": 16220000, - "canton": null, - "numero_insee": "63358" - } - }, - { - "pk": 37868, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-HILAIRE-LES-MONGES", - "center": "POINT (625448.7541427877731621 2089790.0464330220129341)", - "surface": 10650000, - "canton": null, - "numero_insee": "63359" - } - }, - { - "pk": 4922, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-HILAIRE", - "center": "POINT (621868.0990870125824586 2122790.5824620164930820)", - "surface": 17560000, - "canton": null, - "numero_insee": "63360" - } - }, - { - "pk": 20633, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JACQUES-D'AMBUR", - "center": "POINT (633273.0542707429267466 2099665.0853688083589077)", - "surface": 21290000, - "canton": null, - "numero_insee": "63363" - } - }, - { - "pk": 25070, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JEAN-D'HEURS", - "center": "POINT (686194.8103180122561753 2091103.2480790079571307)", - "surface": 11210000, - "canton": null, - "numero_insee": "63364" - } - }, - { - "pk": 4982, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JEAN-DES-OLLIERES", - "center": "POINT (685757.6780407717451453 2071781.2450647056102753)", - "surface": 19800000, - "canton": null, - "numero_insee": "63365" - } - }, - { - "pk": 35930, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JEAN-EN-VAL", - "center": "POINT (680273.7280388182261959 2057421.1278434467967600)", - "surface": 12160000, - "canton": null, - "numero_insee": "63366" - } - }, - { - "pk": 17705, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JEAN-SAINT-GERVAIS", - "center": "POINT (682260.9056002722354606 2047328.1293204254470766)", - "surface": 14390000, - "canton": null, - "numero_insee": "63367" - } - }, - { - "pk": 16576, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JULIEN-DE-COPPEL", - "center": "POINT (675803.2500674650073051 2077102.2340909712947905)", - "surface": 21690000, - "canton": null, - "numero_insee": "63368" - } - }, - { - "pk": 20695, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JULIEN-LA-GENESTE", - "center": "POINT (631229.0374806320760399 2116563.5556823671795428)", - "surface": 12070000, - "canton": null, - "numero_insee": "63369" - } - }, - { - "pk": 15668, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-JUST", - "center": "POINT (715154.0983647295506671 2051910.8455419465899467)", - "surface": 19240000, - "canton": null, - "numero_insee": "63371" - } - }, - { - "pk": 7590, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-LAURE", - "center": "POINT (674206.6563702941639349 2100210.5223862216807902)", - "surface": 7110000, - "canton": null, - "numero_insee": "63372" - } - }, - { - "pk": 14703, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-MAIGNER", - "center": "POINT (626997.6755959084257483 2119830.9811947220005095)", - "surface": 18800000, - "canton": null, - "numero_insee": "63373" - } - }, - { - "pk": 25325, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-MARTIN-DES-OLMES", - "center": "POINT (714589.1442726757377386 2059513.4140750174410641)", - "surface": 17000000, - "canton": null, - "numero_insee": "63374" - } - }, - { - "pk": 9583, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-MARTIN-DES-PLAINS", - "center": "POINT (676086.8863916178233922 2055383.8041691491380334)", - "surface": 3910000, - "canton": null, - "numero_insee": "63375" - } - }, - { - "pk": 11960, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-MARTIN-D'OLLIERES", - "center": "POINT (687069.4708374395268038 2046868.3095727344043553)", - "surface": 14610000, - "canton": null, - "numero_insee": "63376" - } - }, - { - "pk": 22163, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-MAURICE-PRES-PIONSAT", - "center": "POINT (619800.8283838068600744 2118669.4339018254540861)", - "surface": 30940000, - "canton": null, - "numero_insee": "63377" - } - }, - { - "pk": 21279, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-MAURICE", - "center": "POINT (670216.9205297330627218 2074852.9411861982662231)", - "surface": 5340000, - "canton": null, - "numero_insee": "63378" - } - }, - { - "pk": 5257, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-MYON", - "center": "POINT (661412.9148470611544326 2109911.5959691787138581)", - "surface": 5560000, - "canton": null, - "numero_insee": "63379" - } - }, - { - "pk": 23646, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-NECTAIRE", - "center": "POINT (651574.7026740961009637 2065887.1911006192676723)", - "surface": 33440000, - "canton": null, - "numero_insee": "63380" - } - }, - { - "pk": 20490, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-OURS", - "center": "POINT (644937.0494895138544962 2093357.3413970393594354)", - "surface": 55790000, - "canton": null, - "numero_insee": "63381" - } - }, - { - "pk": 22283, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-PIERRE-COLAMINE", - "center": "POINT (649845.6766210444038734 2057264.3307179831899703)", - "surface": 17480000, - "canton": null, - "numero_insee": "63383" - } - }, - { - "pk": 37020, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-PIERRE-LA-BOURLHONNE", - "center": "POINT (710444.7289289488689974 2076094.1988307505380362)", - "surface": 11660000, - "canton": null, - "numero_insee": "63384" - } - }, - { - "pk": 4249, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-PIERRE-LE-CHASTEL", - "center": "POINT (638774.6636510647367686 2088200.6226178163196892)", - "surface": 17390000, - "canton": null, - "numero_insee": "63385" - } - }, - { - "pk": 20744, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-PIERRE-ROCHE", - "center": "POINT (637133.0285464022308588 2081080.0834158593788743)", - "surface": 16860000, - "canton": null, - "numero_insee": "63386" - } - }, - { - "pk": 30304, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-PRIEST-DES-CHAMPS", - "center": "POINT (631902.0033609585370868 2107961.2698108400218189)", - "surface": 45900000, - "canton": null, - "numero_insee": "63388" - } - }, - { - "pk": 5832, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-QUENTIN-SUR-SAUXILLANGES", - "center": "POINT (684246.8348931546788663 2061058.1972481198608875)", - "surface": 8310000, - "canton": null, - "numero_insee": "63389" - } - }, - { - "pk": 22041, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-QUINTIN-SUR-SIOULE", - "center": "POINT (656610.1016295443987474 2121581.8567148116417229)", - "surface": 14280000, - "canton": null, - "numero_insee": "63390" - } - }, - { - "pk": 17109, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-REMY-DE-BLOT", - "center": "POINT (647316.5719839341472834 2119801.9217421961948276)", - "surface": 15320000, - "canton": null, - "numero_insee": "63391" - } - }, - { - "pk": 29688, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-REMY-DE-CHARGNAT", - "center": "POINT (677174.3375434002373368 2056994.5423178970813751)", - "surface": 6270000, - "canton": null, - "numero_insee": "63392" - } - }, - { - "pk": 17717, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-REMY-SUR-DUROLLE", - "center": "POINT (696827.8458608409855515 2100201.6749027818441391)", - "surface": 18150000, - "canton": null, - "numero_insee": "63393" - } - }, - { - "pk": 11575, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-SANDOUX", - "center": "POINT (660138.4217393336584792 2071164.4135625949129462)", - "surface": 9780000, - "canton": null, - "numero_insee": "63395" - } - }, - { - "pk": 13837, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-SATURNIN", - "center": "POINT (657412.3889069299912080 2073944.0846036789007485)", - "surface": 16970000, - "canton": null, - "numero_insee": "63396" - } - }, - { - "pk": 24037, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-SAUVES-D'AUVERGNE", - "center": "POINT (627735.0246133792679757 2067888.4839326115325093)", - "surface": 50020000, - "canton": null, - "numero_insee": "63397" - } - }, - { - "pk": 3406, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-SAUVEUR-LA-SAGNE", - "center": "POINT (703904.1406667868141085 2044708.5778598219621927)", - "surface": 7790000, - "canton": null, - "numero_insee": "63398" - } - }, - { - "pk": 31482, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-SULPICE", - "center": "POINT (621996.2967699855798855 2071844.0326384636573493)", - "surface": 18050000, - "canton": null, - "numero_insee": "63399" - } - }, - { - "pk": 14397, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-SYLVESTRE-PRAGOULIN", - "center": "POINT (681972.1372288549318910 2116991.6577272592112422)", - "surface": 23780000, - "canton": null, - "numero_insee": "63400" - } - }, - { - "pk": 4234, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-VICTOR-LA-RIVIERE", - "center": "POINT (646710.8435668149031699 2061041.5698696756735444)", - "surface": 19130000, - "canton": null, - "numero_insee": "63401" - } - }, - { - "pk": 19798, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-VICTOR-MONTVIANEIX", - "center": "POINT (698789.7351345724891871 2104922.6714213769882917)", - "surface": 45080000, - "canton": null, - "numero_insee": "63402" - } - }, - { - "pk": 23859, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-VINCENT", - "center": "POINT (661625.8256827029399574 2060967.1777220149524510)", - "surface": 5950000, - "canton": null, - "numero_insee": "63403" - } - }, - { - "pk": 7490, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAINT-YVOINE", - "center": "POINT (669405.7336099779931828 2064235.9433577333111316)", - "surface": 8980000, - "canton": null, - "numero_insee": "63404" - } - }, - { - "pk": 20724, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SARDON", - "center": "POINT (668641.0503887637751177 2107370.2112136622890830)", - "surface": 8370000, - "canton": null, - "numero_insee": "63406" - } - }, - { - "pk": 20347, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAULZET-LE-FROID", - "center": "POINT (643331.1507891273358837 2070121.8218554067425430)", - "surface": 28090000, - "canton": null, - "numero_insee": "63407" - } - }, - { - "pk": 24465, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAURET-BESSERVE", - "center": "POINT (636088.7452990141464397 2109998.3740988746285439)", - "surface": 10390000, - "canton": null, - "numero_insee": "63408" - } - }, - { - "pk": 9205, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAURIER", - "center": "POINT (656131.0505877698305994 2059719.6558135305531323)", - "surface": 8490000, - "canton": null, - "numero_insee": "63409" - } - }, - { - "pk": 22588, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAUVAGNAT", - "center": "POINT (621193.8297164292307571 2083948.7835438412148505)", - "surface": 23900000, - "canton": null, - "numero_insee": "63410" - } - }, - { - "pk": 24282, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAUVAGNAT-SAINTE-MARTHE", - "center": "POINT (667990.9640447981655598 2065825.5319195152260363)", - "surface": 6440000, - "canton": null, - "numero_insee": "63411" - } - }, - { - "pk": 15588, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAUVESSANGES", - "center": "POINT (719720.1303994382033125 2044642.4639843199402094)", - "surface": 33000000, - "canton": null, - "numero_insee": "63412" - } - }, - { - "pk": 31882, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LA SAUVETAT", - "center": "POINT (664538.9337555177044123 2071601.9392945163417608)", - "surface": 8060000, - "canton": null, - "numero_insee": "63413" - } - }, - { - "pk": 9459, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAUVIAT", - "center": "POINT (694992.1868041553534567 2080567.6729297712445259)", - "surface": 15420000, - "canton": null, - "numero_insee": "63414" - } - }, - { - "pk": 35835, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAUXILLANGES", - "center": "POINT (680826.8772984825773165 2063031.2047482756897807)", - "surface": 24750000, - "canton": null, - "numero_insee": "63415" - } - }, - { - "pk": 5744, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAVENNES", - "center": "POINT (612449.2060099523514509 2064456.7812520714942366)", - "surface": 16570000, - "canton": null, - "numero_insee": "63416" - } - }, - { - "pk": 6792, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SAYAT", - "center": "POINT (654145.8773490404710174 2093334.8888790290802717)", - "surface": 8410000, - "canton": null, - "numero_insee": "63417" - } - }, - { - "pk": 35197, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SERMENTIZON", - "center": "POINT (689345.7766275752801448 2085424.5281320407520980)", - "surface": 18430000, - "canton": null, - "numero_insee": "63418" - } - }, - { - "pk": 23778, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SERVANT", - "center": "POINT (645958.1066446173936129 2126596.7022421108558774)", - "surface": 26450000, - "canton": null, - "numero_insee": "63419" - } - }, - { - "pk": 19397, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SEYCHALLES", - "center": "POINT (677695.8787821069126949 2090030.4427470103837550)", - "surface": 9230000, - "canton": null, - "numero_insee": "63420" - } - }, - { - "pk": 18391, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SINGLES", - "center": "POINT (616772.3837808347307146 2062190.9056939471047372)", - "surface": 20440000, - "canton": null, - "numero_insee": "63421" - } - }, - { - "pk": 26479, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SOLIGNAT", - "center": "POINT (666251.9026996946195140 2058403.7225210336036980)", - "surface": 11230000, - "canton": null, - "numero_insee": "63422" - } - }, - { - "pk": 18791, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SUGERES", - "center": "POINT (683894.9343757948372513 2067161.0863378958310932)", - "surface": 20760000, - "canton": null, - "numero_insee": "63423" - } - }, - { - "pk": 5387, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "SURAT", - "center": "POINT (671465.4337721287738532 2104791.6511160242371261)", - "surface": 8890000, - "canton": null, - "numero_insee": "63424" - } - }, - { - "pk": 4472, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TALLENDE", - "center": "POINT (662118.2259768056683242 2073783.6054092457052320)", - "surface": 6100000, - "canton": null, - "numero_insee": "63425" - } - }, - { - "pk": 3026, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TAUVES", - "center": "POINT (622675.1174677689559758 2062540.8282927612308413)", - "surface": 34080000, - "canton": null, - "numero_insee": "63426" - } - }, - { - "pk": 3091, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TEILHEDE", - "center": "POINT (655432.2675451472168788 2106958.4410608466714621)", - "surface": 12030000, - "canton": null, - "numero_insee": "63427" - } - }, - { - "pk": 17580, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TEILHET", - "center": "POINT (637084.3227616626536474 2122518.2772639407776296)", - "surface": 18830000, - "canton": null, - "numero_insee": "63428" - } - }, - { - "pk": 6688, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TERNANT-LES-EAUX", - "center": "POINT (661787.5833853885997087 2053661.4890969621483237)", - "surface": 3590000, - "canton": null, - "numero_insee": "63429" - } - }, - { - "pk": 18302, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "THIERS", - "center": "POINT (693357.0185128075536340 2096368.7357221506536007)", - "surface": 44820000, - "canton": null, - "numero_insee": "63430" - } - }, - { - "pk": 12600, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "THIOLIERES", - "center": "POINT (705829.6375520945293829 2065545.0382690695114434)", - "surface": 5350000, - "canton": null, - "numero_insee": "63431" - } - }, - { - "pk": 29856, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "THURET", - "center": "POINT (671633.4757342650555074 2108596.6015954413451254)", - "surface": 16680000, - "canton": null, - "numero_insee": "63432" - } - }, - { - "pk": 30033, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TORTEBESSE", - "center": "POINT (625124.1864942554384470 2080778.8122673726174980)", - "surface": 11620000, - "canton": null, - "numero_insee": "63433" - } - }, - { - "pk": 18553, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TOURS-SUR-MEYMONT", - "center": "POINT (696535.8727668701903895 2075575.9857862663920969)", - "surface": 18070000, - "canton": null, - "numero_insee": "63434" - } - }, - { - "pk": 26835, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TRALAIGUES", - "center": "POINT (619957.3661925098858774 2100053.5154941477812827)", - "surface": 5050000, - "canton": null, - "numero_insee": "63436" - } - }, - { - "pk": 15446, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TREMOUILLE-SAINT-LOUP", - "center": "POINT (617743.0276115142041817 2053891.0537078408524394)", - "surface": 12360000, - "canton": null, - "numero_insee": "63437" - } - }, - { - "pk": 19912, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "TREZIOUX", - "center": "POINT (688386.3950382792390883 2080511.7689138054847717)", - "surface": 17500000, - "canton": null, - "numero_insee": "63438" - } - }, - { - "pk": 32620, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "USSON", - "center": "POINT (678558.6701129154535010 2059008.1750632387120277)", - "surface": 5460000, - "canton": null, - "numero_insee": "63439" - } - }, - { - "pk": 5516, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VALBELEIX", - "center": "POINT (651685.2683474812656641 2052775.4865642392542213)", - "surface": 22740000, - "canton": null, - "numero_insee": "63440" - } - }, - { - "pk": 26084, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VALZ-SOUS-CHATEAUNEUF", - "center": "POINT (684854.7869811172131449 2048351.0380732580088079)", - "surface": 5120000, - "canton": null, - "numero_insee": "63442" - } - }, - { - "pk": 10655, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VARENNES-SUR-MORGE", - "center": "POINT (665860.6223485122900456 2104744.3145081335678697)", - "surface": 5030000, - "canton": null, - "numero_insee": "63443" - } - }, - { - "pk": 25238, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VARENNES-SUR-USSON", - "center": "POINT (677049.7162382155656815 2059896.2894267993979156)", - "surface": 6210000, - "canton": null, - "numero_insee": "63444" - } - }, - { - "pk": 26626, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VASSEL", - "center": "POINT (675837.3627149345120415 2084909.9218289179261774)", - "surface": 3010000, - "canton": null, - "numero_insee": "63445" - } - }, - { - "pk": 34122, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VENSAT", - "center": "POINT (664151.9377806913107634 2117441.6452074423432350)", - "surface": 16140000, - "canton": null, - "numero_insee": "63446" - } - }, - { - "pk": 11651, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VERGHEAS", - "center": "POINT (622043.9418577806791291 2113783.7827478474937379)", - "surface": 7400000, - "canton": null, - "numero_insee": "63447" - } - }, - { - "pk": 16828, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VERNET-LA-VARENNE", - "center": "POINT (687412.2563231099629775 2053677.8184296169783920)", - "surface": 34960000, - "canton": null, - "numero_insee": "63448" - } - }, - { - "pk": 37588, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "LE VERNET-SAINTE-MARGUERITE", - "center": "POINT (647047.9251973575446755 2068551.6148046494927257)", - "surface": 25050000, - "canton": null, - "numero_insee": "63449" - } - }, - { - "pk": 20745, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VERNEUGHEOL", - "center": "POINT (614187.7043351241154596 2083889.8821012522093952)", - "surface": 34970000, - "canton": null, - "numero_insee": "63450" - } - }, - { - "pk": 17065, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VERNINES", - "center": "POINT (642095.5132828757632524 2074215.3255085088312626)", - "surface": 17640000, - "canton": null, - "numero_insee": "63451" - } - }, - { - "pk": 9348, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VERRIERES", - "center": "POINT (654499.2292703647399321 2063309.3577783070504665)", - "surface": 3230000, - "canton": null, - "numero_insee": "63452" - } - }, - { - "pk": 35458, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VERTAIZON", - "center": "POINT (673621.9087486965581775 2086492.7130682081915438)", - "surface": 12880000, - "canton": null, - "numero_insee": "63453" - } - }, - { - "pk": 4608, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VERTOLAYE", - "center": "POINT (709164.7922519505955279 2073580.9648552918806672)", - "surface": 11010000, - "canton": null, - "numero_insee": "63454" - } - }, - { - "pk": 6337, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VEYRE-MONTON", - "center": "POINT (664410.1161966454237700 2075004.0963818382006139)", - "surface": 12130000, - "canton": null, - "numero_insee": "63455" - } - }, - { - "pk": 30295, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VICHEL", - "center": "POINT (670748.8358578826300800 2047431.0336468191817403)", - "surface": 5800000, - "canton": null, - "numero_insee": "63456" - } - }, - { - "pk": 22949, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VIC-LE-COMTE", - "center": "POINT (670442.4596911956323311 2071851.9832426926586777)", - "surface": 18080000, - "canton": null, - "numero_insee": "63457" - } - }, - { - "pk": 6335, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VILLENEUVE", - "center": "POINT (666495.1830536123597994 2053300.8427278276067227)", - "surface": 4230000, - "canton": null, - "numero_insee": "63458" - } - }, - { - "pk": 6100, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VILLENEUVE-LES-CERFS", - "center": "POINT (676795.6326051360229030 2113644.8509260704740882)", - "surface": 9990000, - "canton": null, - "numero_insee": "63459" - } - }, - { - "pk": 24497, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VILLOSANGES", - "center": "POINT (623943.9792446979554370 2102088.9101730622351170)", - "surface": 32970000, - "canton": null, - "numero_insee": "63460" - } - }, - { - "pk": 3437, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VINZELLES", - "center": "POINT (683686.9189071705332026 2103593.7420468186028302)", - "surface": 13350000, - "canton": null, - "numero_insee": "63461" - } - }, - { - "pk": 4946, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VIRLET", - "center": "POINT (628228.0304302918957546 2128249.0246845488436520)", - "surface": 17360000, - "canton": null, - "numero_insee": "63462" - } - }, - { - "pk": 17718, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VISCOMTAT", - "center": "POINT (705097.6755858903052285 2092864.7844644044525921)", - "surface": 25560000, - "canton": null, - "numero_insee": "63463" - } - }, - { - "pk": 11396, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VITRAC", - "center": "POINT (643204.9378110158722848 2108857.2072649369947612)", - "surface": 13180000, - "canton": null, - "numero_insee": "63464" - } - }, - { - "pk": 19348, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VODABLE", - "center": "POINT (662366.1566802300512791 2056268.8894335902296007)", - "surface": 11590000, - "canton": null, - "numero_insee": "63466" - } - }, - { - "pk": 10855, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VOINGT", - "center": "POINT (615842.0786267638904974 2089509.0720435287803411)", - "surface": 6630000, - "canton": null, - "numero_insee": "63467" - } - }, - { - "pk": 23526, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VOLLORE-VILLE", - "center": "POINT (699033.9107148009352386 2087908.8037060520146042)", - "surface": 30480000, - "canton": null, - "numero_insee": "63469" - } - }, - { - "pk": 21669, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "VOLVIC", - "center": "POINT (652916.9804277196526527 2096627.6188622741028666)", - "surface": 27630000, - "canton": null, - "numero_insee": "63470" - } - }, - { - "pk": 17415, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "YOUX", - "center": "POINT (636147.3198766370769590 2126814.3213342837989330)", - "surface": 19200000, - "canton": null, - "numero_insee": "63471" - } - }, - { - "pk": 15064, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "YRONDE-ET-BURON", - "center": "POINT (671475.4728763628518209 2068057.0730575695633888)", - "surface": 14700000, - "canton": null, - "numero_insee": "63472" - } - }, - { - "pk": 30307, - "model": "ishtar_common.town", - "fields": { - "departement": 64, - "name": "YSSAC-LA-TOURETTE", - "center": "POINT (658560.2617572391172871 2103982.0418605664744973)", - "surface": 2170000, - "canton": null, - "numero_insee": "63473" - } - }, - { - "pk": 7326, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AAST", - "center": "POINT (403421.9633146444102749 1812853.1966973419766873)", - "surface": 4800000, - "canton": null, - "numero_insee": "64001" - } - }, - { - "pk": 6883, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ABERE", - "center": "POINT (396124.2057426112005487 1823705.4544528101105243)", - "surface": 5790000, - "canton": null, - "numero_insee": "64002" - } - }, - { - "pk": 8055, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ABIDOS", - "center": "POINT (359364.2921980021637864 1825905.6385608031414449)", - "surface": 3140000, - "canton": null, - "numero_insee": "64003" - } - }, - { - "pk": 36372, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ABITAIN", - "center": "POINT (329500.3528640288277529 1829564.9107829402200878)", - "surface": 6620000, - "canton": null, - "numero_insee": "64004" - } - }, - { - "pk": 23338, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ABOS", - "center": "POINT (365510.3446581840398721 1821150.7015524238813668)", - "surface": 8470000, - "canton": null, - "numero_insee": "64005" - } - }, - { - "pk": 23422, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ACCOUS", - "center": "POINT (363762.1061691992217675 1778086.5552630748134106)", - "surface": 60770000, - "canton": null, - "numero_insee": "64006" - } - }, - { - "pk": 10301, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AGNOS", - "center": "POINT (358283.4270196530269459 1799065.9807019627187401)", - "surface": 9170000, - "canton": null, - "numero_insee": "64007" - } - }, - { - "pk": 10370, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AHAXE-ALCIETTE-BASCASSAN", - "center": "POINT (314726.9432603139430285 1799809.8939547566697001)", - "surface": 14540000, - "canton": null, - "numero_insee": "64008" - } - }, - { - "pk": 13844, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AHETZE", - "center": "POINT (283041.6962774005369283 1830286.0482230763882399)", - "surface": 10720000, - "canton": null, - "numero_insee": "64009" - } - }, - { - "pk": 18125, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AICIRITS-CAMOU-SUHAST", - "center": "POINT (327755.8711144159315154 1822542.6351614526938647)", - "surface": 9450000, - "canton": null, - "numero_insee": "64010" - } - }, - { - "pk": 12041, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AINCILLE", - "center": "POINT (311932.0831569385481998 1798785.8510622880421579)", - "surface": 6250000, - "canton": null, - "numero_insee": "64011" - } - }, - { - "pk": 20608, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AINHARP", - "center": "POINT (333855.1000847527757287 1811279.7013159822672606)", - "surface": 14320000, - "canton": null, - "numero_insee": "64012" - } - }, - { - "pk": 31563, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AINHOA", - "center": "POINT (289449.0369367564562708 1818024.3363772130105644)", - "surface": 16280000, - "canton": null, - "numero_insee": "64014" - } - }, - { - "pk": 4404, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ALCAY-ALCABEHETY-SUNHARETTE", - "center": "POINT (329802.4113087052246556 1792725.0703949772287160)", - "surface": 34750000, - "canton": null, - "numero_insee": "64015" - } - }, - { - "pk": 29861, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ALDUDES", - "center": "POINT (292440.2316103085759096 1795022.2290566014125943)", - "surface": 23220000, - "canton": null, - "numero_insee": "64016" - } - }, - { - "pk": 35072, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ALOS-SIBAS-ABENSE", - "center": "POINT (337890.7495338356820866 1795294.3227739562280476)", - "surface": 5890000, - "canton": null, - "numero_insee": "64017" - } - }, - { - "pk": 17523, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AMOROTS-SUCCOS", - "center": "POINT (319034.2217082942370325 1823972.8790628130082041)", - "surface": 15200000, - "canton": null, - "numero_insee": "64019" - } - }, - { - "pk": 33313, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANCE", - "center": "POINT (353584.8829856973607093 1798226.4389649708755314)", - "surface": 10270000, - "canton": null, - "numero_insee": "64020" - } - }, - { - "pk": 34769, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANDOINS", - "center": "POINT (391897.1744456100277603 1814259.8583147358149290)", - "surface": 12230000, - "canton": null, - "numero_insee": "64021" - } - }, - { - "pk": 6704, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANDREIN", - "center": "POINT (338229.3669880047091283 1827233.7741080212872475)", - "surface": 7790000, - "canton": null, - "numero_insee": "64022" - } - }, - { - "pk": 9650, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANGAIS", - "center": "POINT (389750.9119522594846785 1807434.3544449792243540)", - "surface": 5970000, - "canton": null, - "numero_insee": "64023" - } - }, - { - "pk": 31717, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANGLET", - "center": "POINT (287969.3667072551907040 1839837.0626286847982556)", - "surface": 27630000, - "canton": null, - "numero_insee": "64024" - } - }, - { - "pk": 33186, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANGOUS", - "center": "POINT (344034.9078024461632594 1815167.5985653349198401)", - "surface": 6240000, - "canton": null, - "numero_insee": "64025" - } - }, - { - "pk": 21842, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANHAUX", - "center": "POINT (303608.2747756812605076 1800519.8158718540798873)", - "surface": 12370000, - "canton": null, - "numero_insee": "64026" - } - }, - { - "pk": 9337, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANOS", - "center": "POINT (386901.1502136975759640 1825231.2467757642734796)", - "surface": 1680000, - "canton": null, - "numero_insee": "64027" - } - }, - { - "pk": 14210, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ANOYE", - "center": "POINT (399319.3756592394784093 1824732.9470400884747505)", - "surface": 9770000, - "canton": null, - "numero_insee": "64028" - } - }, - { - "pk": 3987, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARAMITS", - "center": "POINT (350492.1912933847634122 1796899.5232555728871375)", - "surface": 29760000, - "canton": null, - "numero_insee": "64029" - } - }, - { - "pk": 24682, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARANCOU", - "center": "POINT (325269.6079349476494826 1832733.8652626930270344)", - "surface": 5160000, - "canton": null, - "numero_insee": "64031" - } - }, - { - "pk": 16196, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARAUJUZON", - "center": "POINT (342880.3076071811956353 1821665.5586417871527374)", - "surface": 6930000, - "canton": null, - "numero_insee": "64032" - } - }, - { - "pk": 13367, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARAUX", - "center": "POINT (343691.0286457327893004 1820470.8427479485981166)", - "surface": 5430000, - "canton": null, - "numero_insee": "64033" - } - }, - { - "pk": 27571, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARBERATS-SILLEGUE", - "center": "POINT (329670.2240665867575444 1821056.6160547095350921)", - "surface": 5250000, - "canton": null, - "numero_insee": "64034" - } - }, - { - "pk": 15214, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARBONNE", - "center": "POINT (284928.1979182543582283 1832203.6124536644201726)", - "surface": 10610000, - "canton": null, - "numero_insee": "64035" - } - }, - { - "pk": 18694, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARBOUET-SUSSAUTE", - "center": "POINT (330042.7471713704871945 1824463.5516025652177632)", - "surface": 14600000, - "canton": null, - "numero_insee": "64036" - } - }, - { - "pk": 3584, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARBUS", - "center": "POINT (369042.9304955042316578 1817675.7602779953740537)", - "surface": 13850000, - "canton": null, - "numero_insee": "64037" - } - }, - { - "pk": 14554, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARCANGUES", - "center": "POINT (287528.5246612353366800 1832525.1905834525823593)", - "surface": 17850000, - "canton": null, - "numero_insee": "64038" - } - }, - { - "pk": 14829, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AREN", - "center": "POINT (350886.6512466069543734 1809817.6632849113084376)", - "surface": 7510000, - "canton": null, - "numero_insee": "64039" - } - }, - { - "pk": 18988, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARETTE", - "center": "POINT (349173.7129730760352686 1786776.9432190803345293)", - "surface": 92170000, - "canton": null, - "numero_insee": "64040" - } - }, - { - "pk": 36194, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARESSY", - "center": "POINT (383306.0432091980474070 1811986.5356159000657499)", - "surface": 2230000, - "canton": null, - "numero_insee": "64041" - } - }, - { - "pk": 26628, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARGAGNON", - "center": "POINT (355798.0238120901631191 1833484.9604548679199070)", - "surface": 9360000, - "canton": null, - "numero_insee": "64042" - } - }, - { - "pk": 36105, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARGELOS", - "center": "POINT (382447.7906069372547790 1831101.2626412669196725)", - "surface": 6020000, - "canton": null, - "numero_insee": "64043" - } - }, - { - "pk": 34220, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARGET", - "center": "POINT (367839.2712066911626607 1842293.7886908235959709)", - "surface": 4080000, - "canton": null, - "numero_insee": "64044" - } - }, - { - "pk": 25210, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARHANSUS", - "center": "POINT (326644.0237020259955898 1811621.0328351592179388)", - "surface": 5350000, - "canton": null, - "numero_insee": "64045" - } - }, - { - "pk": 27337, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARNEGUY", - "center": "POINT (305365.8297790085198358 1793726.3026366389822215)", - "surface": 21270000, - "canton": null, - "numero_insee": "64047" - } - }, - { - "pk": 27891, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARNOS", - "center": "POINT (367417.7921974690398201 1832679.4739030010532588)", - "surface": 5770000, - "canton": null, - "numero_insee": "64048" - } - }, - { - "pk": 4046, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AROUE-ITHOROTS-OLHAIBY", - "center": "POINT (334706.8042548472294584 1817293.5726359924301505)", - "surface": 17940000, - "canton": null, - "numero_insee": "64049" - } - }, - { - "pk": 17868, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARRAST-LARREBIEU", - "center": "POINT (340937.3134581196354702 1814441.3695001830346882)", - "surface": 7570000, - "canton": null, - "numero_insee": "64050" - } - }, - { - "pk": 23660, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARRAUTE-CHARRITTE", - "center": "POINT (320183.8458758125780150 1830289.4696916146203876)", - "surface": 22940000, - "canton": null, - "numero_insee": "64051" - } - }, - { - "pk": 28986, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARRICAU-BORDES", - "center": "POINT (399222.7604262819513679 1836445.4217753324192017)", - "surface": 8110000, - "canton": null, - "numero_insee": "64052" - } - }, - { - "pk": 9510, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARRIEN", - "center": "POINT (396892.6572889185044914 1815502.4249160322360694)", - "surface": 4460000, - "canton": null, - "numero_insee": "64053" - } - }, - { - "pk": 18156, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARROS-DE-NAY", - "center": "POINT (385696.7876122003071941 1801293.9071185560896993)", - "surface": 13510000, - "canton": null, - "numero_insee": "64054" - } - }, - { - "pk": 3229, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARROSES", - "center": "POINT (401885.1566660390235484 1841372.9141978509724140)", - "surface": 9610000, - "canton": null, - "numero_insee": "64056" - } - }, - { - "pk": 20484, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARTHEZ-DE-BEARN", - "center": "POINT (360400.4559082626365125 1833823.1280825803987682)", - "surface": 27790000, - "canton": null, - "numero_insee": "64057" - } - }, - { - "pk": 5916, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARTHEZ-D'ASSON", - "center": "POINT (388686.5785210795002058 1790806.3715011943131685)", - "surface": 7400000, - "canton": null, - "numero_insee": "64058" - } - }, - { - "pk": 23756, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARTIGUELOUTAN", - "center": "POINT (390120.8136901574907824 1811141.6580728041008115)", - "surface": 8110000, - "canton": null, - "numero_insee": "64059" - } - }, - { - "pk": 30949, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARTIGUELOUVE", - "center": "POINT (371656.4388636314542964 1816395.7771188779734075)", - "surface": 10670000, - "canton": null, - "numero_insee": "64060" - } - }, - { - "pk": 9213, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARTIX", - "center": "POINT (363768.1804220076883212 1826041.9602968385443091)", - "surface": 9010000, - "canton": null, - "numero_insee": "64061" - } - }, - { - "pk": 23747, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ARUDY", - "center": "POINT (370750.4915844189818017 1792660.9788452731445432)", - "surface": 28330000, - "canton": null, - "numero_insee": "64062" - } - }, - { - "pk": 21335, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ASASP-ARROS", - "center": "POINT (358116.1253667934797704 1795059.9679483715444803)", - "surface": 23850000, - "canton": null, - "numero_insee": "64064" - } - }, - { - "pk": 31993, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ASCAIN", - "center": "POINT (277792.3943251387099735 1823335.3307710038498044)", - "surface": 19380000, - "canton": null, - "numero_insee": "64065" - } - }, - { - "pk": 3352, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ASCARAT", - "center": "POINT (306879.1074572633951902 1804551.2048968558665365)", - "surface": 5800000, - "canton": null, - "numero_insee": "64066" - } - }, - { - "pk": 29939, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ASSAT", - "center": "POINT (386429.1891055013984442 1809609.5098847108893096)", - "surface": 9460000, - "canton": null, - "numero_insee": "64067" - } - }, - { - "pk": 37926, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ASSON", - "center": "POINT (388866.1690721291815862 1793310.7575812181457877)", - "surface": 83610000, - "canton": null, - "numero_insee": "64068" - } - }, - { - "pk": 9138, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ASTE-BEON", - "center": "POINT (376722.8900784527650103 1784700.8206632791552693)", - "surface": 18700000, - "canton": null, - "numero_insee": "64069" - } - }, - { - "pk": 30431, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ASTIS", - "center": "POINT (384361.3622945957467891 1829715.4369257465004921)", - "surface": 3110000, - "canton": null, - "numero_insee": "64070" - } - }, - { - "pk": 35708, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ATHOS-ASPIS", - "center": "POINT (332208.1654119417071342 1828986.4314773632213473)", - "surface": 5910000, - "canton": null, - "numero_insee": "64071" - } - }, - { - "pk": 21440, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUBERTIN", - "center": "POINT (370893.4705248298123479 1811784.2232018706854433)", - "surface": 17370000, - "canton": null, - "numero_insee": "64072" - } - }, - { - "pk": 27888, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUBIN", - "center": "POINT (376351.1745513126952574 1829849.6979316091164947)", - "surface": 5750000, - "canton": null, - "numero_insee": "64073" - } - }, - { - "pk": 33267, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUBOUS", - "center": "POINT (399555.4725437125889584 1844657.4085839812178165)", - "surface": 3820000, - "canton": null, - "numero_insee": "64074" - } - }, - { - "pk": 36100, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUDAUX", - "center": "POINT (347066.7356740121031180 1823902.4393777514342219)", - "surface": 7400000, - "canton": null, - "numero_insee": "64075" - } - }, - { - "pk": 30313, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUGA", - "center": "POINT (380018.8513369106221944 1834284.8844297123141587)", - "surface": 4140000, - "canton": null, - "numero_insee": "64077" - } - }, - { - "pk": 6968, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AURIAC", - "center": "POINT (384646.8376293471083045 1831519.8310141367837787)", - "surface": 5260000, - "canton": null, - "numero_insee": "64078" - } - }, - { - "pk": 34223, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AURIONS-IDERNES", - "center": "POINT (400197.3962281832355075 1839657.0741509171202779)", - "surface": 6370000, - "canton": null, - "numero_insee": "64079" - } - }, - { - "pk": 17625, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUSSURUCQ", - "center": "POINT (329763.8298898393404670 1797430.2130560474470258)", - "surface": 46900000, - "canton": null, - "numero_insee": "64081" - } - }, - { - "pk": 26315, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUTERRIVE", - "center": "POINT (328855.3948236561845988 1834965.7505640508607030)", - "surface": 3090000, - "canton": null, - "numero_insee": "64082" - } - }, - { - "pk": 32882, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AUTEVIELLE-SAINT-MARTIN-BIDEREN", - "center": "POINT (331122.5849943623179570 1827075.3679619804024696)", - "surface": 5950000, - "canton": null, - "numero_insee": "64083" - } - }, - { - "pk": 14948, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AYDIE", - "center": "POINT (401763.5770162120461464 1843974.8374918818008155)", - "surface": 7900000, - "canton": null, - "numero_insee": "64084" - } - }, - { - "pk": 24064, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AYDIUS", - "center": "POINT (366637.3090989182237536 1781514.1893845996819437)", - "surface": 34900000, - "canton": null, - "numero_insee": "64085" - } - }, - { - "pk": 21606, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "AYHERRE", - "center": "POINT (309304.9604507156182081 1826195.8422255036421120)", - "surface": 27960000, - "canton": null, - "numero_insee": "64086" - } - }, - { - "pk": 19169, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BAIGTS-DE-BEARN", - "center": "POINT (342421.4042433392605744 1840983.6978176175616682)", - "surface": 13450000, - "canton": null, - "numero_insee": "64087" - } - }, - { - "pk": 25901, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BALANSUN", - "center": "POINT (354569.6018894963781349 1836778.6020810324698687)", - "surface": 10780000, - "canton": null, - "numero_insee": "64088" - } - }, - { - "pk": 28783, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BALEIX", - "center": "POINT (399238.2617706202436239 1822429.6572942603379488)", - "surface": 6510000, - "canton": null, - "numero_insee": "64089" - } - }, - { - "pk": 5633, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BALIRACQ-MAUMUSSON", - "center": "POINT (390674.9515938824042678 1841080.2439520973712206)", - "surface": 6110000, - "canton": null, - "numero_insee": "64090" - } - }, - { - "pk": 12665, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BALIROS", - "center": "POINT (384752.9186400303151459 1806492.1303474979940802)", - "surface": 3720000, - "canton": null, - "numero_insee": "64091" - } - }, - { - "pk": 18706, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BANCA", - "center": "POINT (297641.0170905583072454 1795665.4422490471042693)", - "surface": 49800000, - "canton": null, - "numero_insee": "64092" - } - }, - { - "pk": 16765, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BARCUS", - "center": "POINT (344941.7985252098878846 1802260.1923106838949025)", - "surface": 47620000, - "canton": null, - "numero_insee": "64093" - } - }, - { - "pk": 19053, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BARDOS", - "center": "POINT (311527.1231991311651655 1836025.1630803449079394)", - "surface": 43330000, - "canton": null, - "numero_insee": "64094" - } - }, - { - "pk": 34498, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BARINQUE", - "center": "POINT (388497.9128337319125421 1825845.0881163305602968)", - "surface": 9150000, - "canton": null, - "numero_insee": "64095" - } - }, - { - "pk": 18994, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BARRAUTE-CAMU", - "center": "POINT (337243.0797186446725391 1825423.6322687976062298)", - "surface": 3870000, - "canton": null, - "numero_insee": "64096" - } - }, - { - "pk": 8002, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BARZUN", - "center": "POINT (398885.5420649868319742 1804506.2214764829259366)", - "surface": 8200000, - "canton": null, - "numero_insee": "64097" - } - }, - { - "pk": 12047, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BASSILLON-VAUZE", - "center": "POINT (404375.2653225359972566 1830781.4804484706837684)", - "surface": 4940000, - "canton": null, - "numero_insee": "64098" - } - }, - { - "pk": 35660, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BASTANES", - "center": "POINT (349187.8984278843272477 1821617.2342977244406939)", - "surface": 5290000, - "canton": null, - "numero_insee": "64099" - } - }, - { - "pk": 5157, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BASSUSSARRY", - "center": "POINT (289314.9101452257018536 1834441.9395389398559928)", - "surface": 6580000, - "canton": null, - "numero_insee": "64100" - } - }, - { - "pk": 23385, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BAYONNE", - "center": "POINT (291975.2565480516059324 1839669.5631779017858207)", - "surface": 25840000, - "canton": null, - "numero_insee": "64102" - } - }, - { - "pk": 5836, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEDEILLE", - "center": "POINT (402269.5624418752267957 1819050.7853470563422889)", - "surface": 3950000, - "canton": null, - "numero_insee": "64103" - } - }, - { - "pk": 37882, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEDOUS", - "center": "POINT (361022.9022687212564051 1782469.1828423303086311)", - "surface": 11660000, - "canton": null, - "numero_insee": "64104" - } - }, - { - "pk": 15789, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEGUIOS", - "center": "POINT (321147.9586094935657457 1822588.5967028010636568)", - "surface": 11270000, - "canton": null, - "numero_insee": "64105" - } - }, - { - "pk": 8575, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEHASQUE-LAPISTE", - "center": "POINT (328288.4146878001629375 1818642.5425375970080495)", - "surface": 5660000, - "canton": null, - "numero_insee": "64106" - } - }, - { - "pk": 32963, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEHORLEGUY", - "center": "POINT (321058.4249973804107867 1796858.2779562433715910)", - "surface": 20590000, - "canton": null, - "numero_insee": "64107" - } - }, - { - "pk": 12607, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BELLOCQ", - "center": "POINT (336226.3243406579131261 1839531.2852392219938338)", - "surface": 12680000, - "canton": null, - "numero_insee": "64108" - } - }, - { - "pk": 15189, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BENEJACQ", - "center": "POINT (394197.7772357897483744 1802365.1352304043248296)", - "surface": 17100000, - "canton": null, - "numero_insee": "64109" - } - }, - { - "pk": 35394, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEOST", - "center": "POINT (382077.3755904443096370 1778838.0168344574049115)", - "surface": 43750000, - "canton": null, - "numero_insee": "64110" - } - }, - { - "pk": 12052, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BENTAYOU-SEREE", - "center": "POINT (405329.1024689222685993 1824382.0794606767594814)", - "surface": 8390000, - "canton": null, - "numero_insee": "64111" - } - }, - { - "pk": 15194, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BERENX", - "center": "POINT (340447.2134880959638394 1837563.6563127655535936)", - "surface": 13690000, - "canton": null, - "numero_insee": "64112" - } - }, - { - "pk": 15788, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BERGOUEY-VIELLENAVE", - "center": "POINT (324385.8748384507489391 1830624.2390190747100860)", - "surface": 11220000, - "canton": null, - "numero_insee": "64113" - } - }, - { - "pk": 8311, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BERNADETS", - "center": "POINT (387420.6589111451758072 1822932.9073762216139585)", - "surface": 3740000, - "canton": null, - "numero_insee": "64114" - } - }, - { - "pk": 34846, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BERROGAIN-LARUNS", - "center": "POINT (339768.0574895478785038 1810527.2936506464611739)", - "surface": 2740000, - "canton": null, - "numero_insee": "64115" - } - }, - { - "pk": 10049, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BESCAT", - "center": "POINT (374929.5398577004671097 1795798.9751463779248297)", - "surface": 6880000, - "canton": null, - "numero_insee": "64116" - } - }, - { - "pk": 3823, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BESINGRAND", - "center": "POINT (364190.0132509511895478 1823442.4671465721912682)", - "surface": 2380000, - "canton": null, - "numero_insee": "64117" - } - }, - { - "pk": 33212, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BETRACQ", - "center": "POINT (406418.0115319774486125 1838006.4863409856334329)", - "surface": 4660000, - "canton": null, - "numero_insee": "64118" - } - }, - { - "pk": 12894, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEUSTE", - "center": "POINT (391168.1083240119041875 1805543.8479848005808890)", - "surface": 5840000, - "canton": null, - "numero_insee": "64119" - } - }, - { - "pk": 22635, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BEYRIE-SUR-JOYEUSE", - "center": "POINT (321084.7581966980360448 1818082.9330718251876533)", - "surface": 24730000, - "canton": null, - "numero_insee": "64120" - } - }, - { - "pk": 6874, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIARRITZ", - "center": "POINT (284884.8711560121155344 1837509.2692950472701341)", - "surface": 12350000, - "canton": null, - "numero_insee": "64122" - } - }, - { - "pk": 17294, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIDACHE", - "center": "POINT (317840.3928838514257222 1835275.9477137005887926)", - "surface": 30210000, - "canton": null, - "numero_insee": "64123" - } - }, - { - "pk": 15328, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIDARRAY", - "center": "POINT (299987.3819770186673850 1814806.6903015756979585)", - "surface": 39260000, - "canton": null, - "numero_insee": "64124" - } - }, - { - "pk": 30079, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIDART", - "center": "POINT (282510.1025547491735779 1834086.0250345701351762)", - "surface": 13110000, - "canton": null, - "numero_insee": "64125" - } - }, - { - "pk": 7512, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIDOS", - "center": "POINT (360366.7860304608475417 1801385.7690944985952228)", - "surface": 1370000, - "canton": null, - "numero_insee": "64126" - } - }, - { - "pk": 21397, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIELLE", - "center": "POINT (371101.8997442631516606 1786456.6509130834601820)", - "surface": 25480000, - "canton": null, - "numero_insee": "64127" - } - }, - { - "pk": 15809, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BILHERES", - "center": "POINT (369879.9863183226552792 1788949.5100285303778946)", - "surface": 17350000, - "canton": null, - "numero_insee": "64128" - } - }, - { - "pk": 30178, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BILLERE", - "center": "POINT (378074.0486354027525522 1815147.1156346502248198)", - "surface": 4440000, - "canton": null, - "numero_insee": "64129" - } - }, - { - "pk": 23640, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIRIATOU", - "center": "POINT (269694.2913832038175315 1821967.7757086534984410)", - "surface": 11130000, - "canton": null, - "numero_insee": "64130" - } - }, - { - "pk": 19624, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIRON", - "center": "POINT (350590.0158450538292527 1833742.5138355677481741)", - "surface": 4020000, - "canton": null, - "numero_insee": "64131" - } - }, - { - "pk": 13230, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BIZANOS", - "center": "POINT (382591.2685386780067347 1813682.5983156061265618)", - "surface": 4410000, - "canton": null, - "numero_insee": "64132" - } - }, - { - "pk": 26885, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOEIL-BEZING", - "center": "POINT (388265.7881135391071439 1805419.8099228693172336)", - "surface": 8590000, - "canton": null, - "numero_insee": "64133" - } - }, - { - "pk": 5275, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BONLOC", - "center": "POINT (307412.7523446893319488 1824978.9894110367167741)", - "surface": 990000, - "canton": null, - "numero_insee": "64134" - } - }, - { - "pk": 24115, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BONNUT", - "center": "POINT (348906.9227803982794285 1843639.8729598980862647)", - "surface": 22050000, - "canton": null, - "numero_insee": "64135" - } - }, - { - "pk": 4391, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BORCE", - "center": "POINT (360456.3046403032494709 1766145.3605299941264093)", - "surface": 58170000, - "canton": null, - "numero_insee": "64136" - } - }, - { - "pk": 34079, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BORDERES", - "center": "POINT (392385.9167803920572624 1803551.5812130176927894)", - "surface": 4560000, - "canton": null, - "numero_insee": "64137" - } - }, - { - "pk": 30741, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BORDES", - "center": "POINT (387643.6871333200251684 1808017.6776350622531027)", - "surface": 7360000, - "canton": null, - "numero_insee": "64138" - } - }, - { - "pk": 19562, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOSDARROS", - "center": "POINT (380572.2758560071815737 1803554.3479256215505302)", - "surface": 24640000, - "canton": null, - "numero_insee": "64139" - } - }, - { - "pk": 10470, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOUCAU", - "center": "POINT (291044.0369709958322346 1843366.1320061148144305)", - "surface": 5770000, - "canton": null, - "numero_insee": "64140" - } - }, - { - "pk": 20307, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOUGARBER", - "center": "POINT (372285.5176229638746008 1825110.8893858660012484)", - "surface": 10340000, - "canton": null, - "numero_insee": "64142" - } - }, - { - "pk": 8310, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOUILLON", - "center": "POINT (369588.0157752082450315 1836601.7422669171355665)", - "surface": 3340000, - "canton": null, - "numero_insee": "64143" - } - }, - { - "pk": 9460, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOUMOURT", - "center": "POINT (368834.9318807905656286 1830788.9769826382398605)", - "surface": 8020000, - "canton": null, - "numero_insee": "64144" - } - }, - { - "pk": 28860, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOURDETTES", - "center": "POINT (387689.0627555411774665 1802511.7109268521890044)", - "surface": 2210000, - "canton": null, - "numero_insee": "64145" - } - }, - { - "pk": 8838, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BOURNOS", - "center": "POINT (378451.7675718993996270 1830067.2194287639576942)", - "surface": 5800000, - "canton": null, - "numero_insee": "64146" - } - }, - { - "pk": 36778, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BRISCOUS", - "center": "POINT (303224.8296700817882083 1835156.3244711318984628)", - "surface": 31560000, - "canton": null, - "numero_insee": "64147" - } - }, - { - "pk": 18397, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BRUGES-CAPBIS-MIFAGET", - "center": "POINT (384747.6636088207596913 1794978.7911281096749008)", - "surface": 16710000, - "canton": null, - "numero_insee": "64148" - } - }, - { - "pk": 4754, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BUGNEIN", - "center": "POINT (349072.9919254580163397 1823418.3447924559004605)", - "surface": 11290000, - "canton": null, - "numero_insee": "64149" - } - }, - { - "pk": 27030, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BUNUS", - "center": "POINT (323182.0730626564472914 1806486.7861120568122715)", - "surface": 6620000, - "canton": null, - "numero_insee": "64150" - } - }, - { - "pk": 8234, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BURGARONNE", - "center": "POINT (336910.7283864446799271 1829325.3438960167113692)", - "surface": 5360000, - "canton": null, - "numero_insee": "64151" - } - }, - { - "pk": 19495, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BUROSSE-MENDOUSSE", - "center": "POINT (393804.6449985919171013 1837902.4342789538204670)", - "surface": 5570000, - "canton": null, - "numero_insee": "64153" - } - }, - { - "pk": 20960, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BUSSUNARITS-SARRASQUETTE", - "center": "POINT (316206.4433868793421425 1802525.1353473467752337)", - "surface": 11960000, - "canton": null, - "numero_insee": "64154" - } - }, - { - "pk": 21170, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BUSTINCE-IRIBERRY", - "center": "POINT (313285.2515796270454302 1804703.7570722210220993)", - "surface": 5710000, - "canton": null, - "numero_insee": "64155" - } - }, - { - "pk": 10173, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BUZIET", - "center": "POINT (370810.2332527870312333 1797567.1569332131184638)", - "surface": 8220000, - "canton": null, - "numero_insee": "64156" - } - }, - { - "pk": 4624, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "BUZY", - "center": "POINT (373216.9713171483017504 1797086.3852402404882014)", - "surface": 16840000, - "canton": null, - "numero_insee": "64157" - } - }, - { - "pk": 28348, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CABIDOS", - "center": "POINT (373351.6844627429964021 1841538.2428169173654169)", - "surface": 7220000, - "canton": null, - "numero_insee": "64158" - } - }, - { - "pk": 10622, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CADILLON", - "center": "POINT (398301.1626452148193493 1838940.6430850080214441)", - "surface": 5330000, - "canton": null, - "numero_insee": "64159" - } - }, - { - "pk": 23127, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CAMBO-LES-BAINS", - "center": "POINT (297903.3705012380378321 1824801.0950419064611197)", - "surface": 22790000, - "canton": null, - "numero_insee": "64160" - } - }, - { - "pk": 15524, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CAME", - "center": "POINT (322231.1381961693405174 1837013.8390418738126755)", - "surface": 34120000, - "canton": null, - "numero_insee": "64161" - } - }, - { - "pk": 29369, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CAMOU-CIHIGUE", - "center": "POINT (334379.5304379218141548 1796166.5601560526993126)", - "surface": 10100000, - "canton": null, - "numero_insee": "64162" - } - }, - { - "pk": 18106, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CARDESSE", - "center": "POINT (361787.7503973578568548 1811208.7483259630389512)", - "surface": 7750000, - "canton": null, - "numero_insee": "64165" - } - }, - { - "pk": 29368, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CARO", - "center": "POINT (310116.1864993493654765 1800472.9555717990733683)", - "surface": 4050000, - "canton": null, - "numero_insee": "64166" - } - }, - { - "pk": 28940, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CARRERE", - "center": "POINT (388128.2944140026811510 1834251.5755195415113121)", - "surface": 6600000, - "canton": null, - "numero_insee": "64167" - } - }, - { - "pk": 19500, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CARRESSE-CASSABER", - "center": "POINT (329737.4770671039586887 1837275.5853787593077868)", - "surface": 13720000, - "canton": null, - "numero_insee": "64168" - } - }, - { - "pk": 25619, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTAGNEDE", - "center": "POINT (331668.2282854088116437 1833787.4530452569015324)", - "surface": 8370000, - "canton": null, - "numero_insee": "64170" - } - }, - { - "pk": 27052, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTEIDE-CAMI", - "center": "POINT (367649.2976674530073069 1828877.0658897920511663)", - "surface": 6830000, - "canton": null, - "numero_insee": "64171" - } - }, - { - "pk": 36554, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTEIDE-CANDAU", - "center": "POINT (365655.0545870545320213 1840073.3431581924669445)", - "surface": 9460000, - "canton": null, - "numero_insee": "64172" - } - }, - { - "pk": 28058, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTEIDE-DOAT", - "center": "POINT (409454.1544362613931298 1821913.2826743312180042)", - "surface": 5400000, - "canton": null, - "numero_insee": "64173" - } - }, - { - "pk": 7674, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTERA-LOUBIX", - "center": "POINT (407622.4742094824323431 1825502.2616669305134565)", - "surface": 3420000, - "canton": null, - "numero_insee": "64174" - } - }, - { - "pk": 32880, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTET", - "center": "POINT (378803.7646022377302870 1787320.9896826664917171)", - "surface": 23570000, - "canton": null, - "numero_insee": "64175" - } - }, - { - "pk": 15760, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTETBON", - "center": "POINT (346142.7556009537074715 1826698.0425421223044395)", - "surface": 14100000, - "canton": null, - "numero_insee": "64176" - } - }, - { - "pk": 37889, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTETIS", - "center": "POINT (352480.5270116589963436 1835159.6286335745826364)", - "surface": 9010000, - "canton": null, - "numero_insee": "64177" - } - }, - { - "pk": 31370, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTETNAU-CAMBLONG", - "center": "POINT (345410.1169223280157894 1818382.5544688031077385)", - "surface": 11420000, - "canton": null, - "numero_insee": "64178" - } - }, - { - "pk": 36597, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTETNER", - "center": "POINT (351411.4258081917650998 1831246.4259536941535771)", - "surface": 6550000, - "canton": null, - "numero_insee": "64179" - } - }, - { - "pk": 12890, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTETPUGON", - "center": "POINT (392457.0516570401960053 1843497.6363085093908012)", - "surface": 7390000, - "canton": null, - "numero_insee": "64180" - } - }, - { - "pk": 12478, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTILLON (CANTON D'ARTHEZ-DE-BEARN)", - "center": "POINT (364006.7596783359767869 1833552.4394087961409241)", - "surface": 6850000, - "canton": null, - "numero_insee": "64181" - } - }, - { - "pk": 9089, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CASTILLON (CANTON DE LEMBEYE)", - "center": "POINT (400141.8841939250705764 1834250.5157821362372488)", - "surface": 4730000, - "canton": null, - "numero_insee": "64182" - } - }, - { - "pk": 12076, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CAUBIOS-LOOS", - "center": "POINT (377769.1533613344654441 1827859.0999794045928866)", - "surface": 7220000, - "canton": null, - "numero_insee": "64183" - } - }, - { - "pk": 30308, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CESCAU", - "center": "POINT (369562.8584555295528844 1827491.2170519260689616)", - "surface": 8010000, - "canton": null, - "numero_insee": "64184" - } - }, - { - "pk": 23784, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CETTE-EYGUN", - "center": "POINT (362387.7274189617019147 1774771.3774750453885645)", - "surface": 19130000, - "canton": null, - "numero_insee": "64185" - } - }, - { - "pk": 3568, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CHARRE", - "center": "POINT (340613.9851457216427661 1817241.9254239974543452)", - "surface": 11500000, - "canton": null, - "numero_insee": "64186" - } - }, - { - "pk": 26519, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CHARRITTE-DE-BAS", - "center": "POINT (337123.3538718816707842 1815611.4489058903418481)", - "surface": 7520000, - "canton": null, - "numero_insee": "64187" - } - }, - { - "pk": 17227, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CHERAUTE", - "center": "POINT (342990.4226990403840318 1808251.0949154249392450)", - "surface": 36790000, - "canton": null, - "numero_insee": "64188" - } - }, - { - "pk": 36965, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CIBOURE", - "center": "POINT (275455.6120175231480971 1827521.0542872878722847)", - "surface": 7760000, - "canton": null, - "numero_insee": "64189" - } - }, - { - "pk": 11829, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CLARACQ", - "center": "POINT (387001.5532033038325608 1837345.7962365071289241)", - "surface": 9950000, - "canton": null, - "numero_insee": "64190" - } - }, - { - "pk": 12185, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "COARRAZE", - "center": "POINT (392519.8655965211801231 1799447.9481614253018051)", - "surface": 14980000, - "canton": null, - "numero_insee": "64191" - } - }, - { - "pk": 31486, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CONCHEZ-DE-BEARN", - "center": "POINT (397279.4624840962933376 1841435.0350172142498195)", - "surface": 4540000, - "canton": null, - "numero_insee": "64192" - } - }, - { - "pk": 28925, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CORBERE-ABERES", - "center": "POINT (403352.7217704007052816 1833375.9884616462513804)", - "surface": 7100000, - "canton": null, - "numero_insee": "64193" - } - }, - { - "pk": 15814, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "COSLEDAA-LUBE-BOAST", - "center": "POINT (392058.8510290072299540 1831080.3464713129214942)", - "surface": 13920000, - "canton": null, - "numero_insee": "64194" - } - }, - { - "pk": 8711, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "COUBLUCQ", - "center": "POINT (381465.2084843518678099 1841004.3638810212723911)", - "surface": 5500000, - "canton": null, - "numero_insee": "64195" - } - }, - { - "pk": 23604, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CROUSEILLES", - "center": "POINT (404203.2865400821319781 1839489.9004841942805797)", - "surface": 7960000, - "canton": null, - "numero_insee": "64196" - } - }, - { - "pk": 12616, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "CUQUERON", - "center": "POINT (365150.2587970740860328 1816242.1362198994029313)", - "surface": 3530000, - "canton": null, - "numero_insee": "64197" - } - }, - { - "pk": 4490, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "DENGUIN", - "center": "POINT (369700.8532586358487606 1822887.1137981927022338)", - "surface": 12170000, - "canton": null, - "numero_insee": "64198" - } - }, - { - "pk": 24308, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "DIUSSE", - "center": "POINT (397060.2625687917461619 1843735.8163198726251721)", - "surface": 5220000, - "canton": null, - "numero_insee": "64199" - } - }, - { - "pk": 13711, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "DOAZON", - "center": "POINT (365718.4504654692136683 1832365.1563488924875855)", - "surface": 6150000, - "canton": null, - "numero_insee": "64200" - } - }, - { - "pk": 3228, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "DOGNEN", - "center": "POINT (350448.3919789200881496 1814419.3472978263162076)", - "surface": 6800000, - "canton": null, - "numero_insee": "64201" - } - }, - { - "pk": 30302, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "DOMEZAIN-BERRAUTE", - "center": "POINT (331686.3305724638630636 1819371.2037938593421131)", - "surface": 21650000, - "canton": null, - "numero_insee": "64202" - } - }, - { - "pk": 28339, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "DOUMY", - "center": "POINT (379947.5977418870315887 1830780.3311076294630766)", - "surface": 6420000, - "canton": null, - "numero_insee": "64203" - } - }, - { - "pk": 4323, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "EAUX-BONNES", - "center": "POINT (379599.3510279943002388 1775814.0861487470101565)", - "surface": 37910000, - "canton": null, - "numero_insee": "64204" - } - }, - { - "pk": 28664, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESCOS", - "center": "POINT (329076.1249835308990441 1832464.7260152143426239)", - "surface": 5590000, - "canton": null, - "numero_insee": "64205" - } - }, - { - "pk": 20415, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESCOT", - "center": "POINT (363259.5714270568569191 1790496.9108750661835074)", - "surface": 22710000, - "canton": null, - "numero_insee": "64206" - } - }, - { - "pk": 26957, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESCOU", - "center": "POINT (366567.7695535495877266 1802137.5741932285018265)", - "surface": 6250000, - "canton": null, - "numero_insee": "64207" - } - }, - { - "pk": 36793, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESCOUBES", - "center": "POINT (390787.1709045010502450 1827465.7760952329263091)", - "surface": 6560000, - "canton": null, - "numero_insee": "64208" - } - }, - { - "pk": 25632, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESCOUT", - "center": "POINT (364661.5859038358321413 1802622.4727950918022543)", - "surface": 9540000, - "canton": null, - "numero_insee": "64209" - } - }, - { - "pk": 28570, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESCURES", - "center": "POINT (400658.1073414728743955 1832352.6229873280972242)", - "surface": 4270000, - "canton": null, - "numero_insee": "64210" - } - }, - { - "pk": 12133, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESLOURENTIES-DABAN", - "center": "POINT (398606.8749733604490757 1814014.8454232136718929)", - "surface": 5100000, - "canton": null, - "numero_insee": "64211" - } - }, - { - "pk": 26884, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESPECHEDE", - "center": "POINT (394286.5547128142789006 1815881.3914375049062073)", - "surface": 9380000, - "canton": null, - "numero_insee": "64212" - } - }, - { - "pk": 5634, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESPELETTE", - "center": "POINT (292229.1523901676409878 1820850.2588084207382053)", - "surface": 27300000, - "canton": null, - "numero_insee": "64213" - } - }, - { - "pk": 6488, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESPES-UNDUREIN", - "center": "POINT (337642.7850170896854252 1813313.0718130229506642)", - "surface": 9800000, - "canton": null, - "numero_insee": "64214" - } - }, - { - "pk": 10095, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESPIUTE", - "center": "POINT (335967.1438179951510392 1822309.6289384230040014)", - "surface": 4030000, - "canton": null, - "numero_insee": "64215" - } - }, - { - "pk": 25899, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESPOEY", - "center": "POINT (397249.9523018415784463 1808597.4521625349298120)", - "surface": 13540000, - "canton": null, - "numero_insee": "64216" - } - }, - { - "pk": 19350, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESQUIULE", - "center": "POINT (350743.1765605442924425 1802908.5300473896786571)", - "surface": 28960000, - "canton": null, - "numero_insee": "64217" - } - }, - { - "pk": 16764, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESTERENCUBY", - "center": "POINT (312981.5357917158398777 1792887.5909812203608453)", - "surface": 45920000, - "canton": null, - "numero_insee": "64218" - } - }, - { - "pk": 14302, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESTIALESCQ", - "center": "POINT (364931.4471822211053222 1806328.9617218542844057)", - "surface": 5030000, - "canton": null, - "numero_insee": "64219" - } - }, - { - "pk": 15208, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ESTOS", - "center": "POINT (360432.3264893342275172 1805591.1576743209734559)", - "surface": 3190000, - "canton": null, - "numero_insee": "64220" - } - }, - { - "pk": 34847, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ETCHEBAR", - "center": "POINT (335629.2993375154910609 1790269.9529072802979499)", - "surface": 8280000, - "canton": null, - "numero_insee": "64222" - } - }, - { - "pk": 5776, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ETSAUT", - "center": "POINT (365528.2193229995318688 1770291.9121711403131485)", - "surface": 35010000, - "canton": null, - "numero_insee": "64223" - } - }, - { - "pk": 9652, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "EYSUS", - "center": "POINT (361903.8152836764929816 1797093.4286401690915227)", - "surface": 6750000, - "canton": null, - "numero_insee": "64224" - } - }, - { - "pk": 10252, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "FEAS", - "center": "POINT (352861.9110741583281197 1800923.6243690908886492)", - "surface": 13720000, - "canton": null, - "numero_insee": "64225" - } - }, - { - "pk": 12590, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "FICHOUS-RIUMAYOU", - "center": "POINT (375102.9245630441000685 1835545.8821676508523524)", - "surface": 6430000, - "canton": null, - "numero_insee": "64226" - } - }, - { - "pk": 19654, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GABASTON", - "center": "POINT (392746.1482917641988024 1820574.0645711761899292)", - "surface": 12690000, - "canton": null, - "numero_insee": "64227" - } - }, - { - "pk": 13841, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GABAT", - "center": "POINT (326633.3549998287344351 1825136.3999828242231160)", - "surface": 8520000, - "canton": null, - "numero_insee": "64228" - } - }, - { - "pk": 9772, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GAMARTHE", - "center": "POINT (317785.2266623618197627 1805341.3014510676730424)", - "surface": 9900000, - "canton": null, - "numero_insee": "64229" - } - }, - { - "pk": 31447, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GAN", - "center": "POINT (376359.4711028110468760 1804520.8111455682665110)", - "surface": 39470000, - "canton": null, - "numero_insee": "64230" - } - }, - { - "pk": 28718, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GARINDEIN", - "center": "POINT (334588.7046185494400561 1807281.1141610019840300)", - "surface": 7080000, - "canton": null, - "numero_insee": "64231" - } - }, - { - "pk": 31703, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GARLEDE-MONDEBAT", - "center": "POINT (383593.8201944227912463 1837818.2859243727289140)", - "surface": 8640000, - "canton": null, - "numero_insee": "64232" - } - }, - { - "pk": 20444, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GARLIN", - "center": "POINT (388854.8959789661457762 1843267.7209659989457577)", - "surface": 18220000, - "canton": null, - "numero_insee": "64233" - } - }, - { - "pk": 6422, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GAROS", - "center": "POINT (371779.6449199236230925 1837921.2442484381608665)", - "surface": 12160000, - "canton": null, - "numero_insee": "64234" - } - }, - { - "pk": 28062, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GARRIS", - "center": "POINT (324263.5955997299170122 1821112.4122969815507531)", - "surface": 3210000, - "canton": null, - "numero_insee": "64235" - } - }, - { - "pk": 10496, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GAYON", - "center": "POINT (397235.4973953433800489 1834626.9953506158199161)", - "surface": 4000000, - "canton": null, - "numero_insee": "64236" - } - }, - { - "pk": 20817, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GELOS", - "center": "POINT (379821.2243824441684410 1809655.1898190390784293)", - "surface": 11080000, - "canton": null, - "numero_insee": "64237" - } - }, - { - "pk": 23101, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GER", - "center": "POINT (405058.3918523703468964 1808661.8780763887334615)", - "surface": 31710000, - "canton": null, - "numero_insee": "64238" - } - }, - { - "pk": 30435, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GERDEREST", - "center": "POINT (396604.1014651180012152 1826212.2582857713568956)", - "surface": 6630000, - "canton": null, - "numero_insee": "64239" - } - }, - { - "pk": 9136, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GERE-BELESTEN", - "center": "POINT (372624.9718580339686014 1783866.1504667473491281)", - "surface": 12720000, - "canton": null, - "numero_insee": "64240" - } - }, - { - "pk": 19701, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GERONCE", - "center": "POINT (352011.6927865577163175 1806923.5665010993834585)", - "surface": 16190000, - "canton": null, - "numero_insee": "64241" - } - }, - { - "pk": 5607, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GESTAS", - "center": "POINT (338672.5085592883988284 1822031.4823432406410575)", - "surface": 2160000, - "canton": null, - "numero_insee": "64242" - } - }, - { - "pk": 30665, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GEUS-D'ARZACQ", - "center": "POINT (368298.1632968423655257 1835189.5473012619186193)", - "surface": 4110000, - "canton": null, - "numero_insee": "64243" - } - }, - { - "pk": 10846, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GEUS-D'OLORON", - "center": "POINT (350394.3329737582826056 1808812.4684590122196823)", - "surface": 6680000, - "canton": null, - "numero_insee": "64244" - } - }, - { - "pk": 36647, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GOES", - "center": "POINT (362931.7471740335458890 1806012.1702527785673738)", - "surface": 4780000, - "canton": null, - "numero_insee": "64245" - } - }, - { - "pk": 27456, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GOMER", - "center": "POINT (393848.7491780192940496 1808269.0580902623478323)", - "surface": 3290000, - "canton": null, - "numero_insee": "64246" - } - }, - { - "pk": 27244, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GOTEIN-LIBARRENX", - "center": "POINT (337317.9187395941698924 1804099.8126556032802910)", - "surface": 11980000, - "canton": null, - "numero_insee": "64247" - } - }, - { - "pk": 19915, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GUETHARY", - "center": "POINT (279921.2169359905528836 1832362.9604029804468155)", - "surface": 1650000, - "canton": null, - "numero_insee": "64249" - } - }, - { - "pk": 9260, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GUINARTHE-PARENTIES", - "center": "POINT (333535.8288218465750106 1825793.6777394914533943)", - "surface": 2500000, - "canton": null, - "numero_insee": "64251" - } - }, - { - "pk": 7148, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GURMENCON", - "center": "POINT (360782.8601611407939345 1799486.9918812052346766)", - "surface": 3020000, - "canton": null, - "numero_insee": "64252" - } - }, - { - "pk": 13466, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "GURS", - "center": "POINT (348256.7048792164423503 1813099.8543991174083203)", - "surface": 10970000, - "canton": null, - "numero_insee": "64253" - } - }, - { - "pk": 15180, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HAGETAUBIN", - "center": "POINT (361160.9811412617564201 1838734.9222289617173374)", - "surface": 18740000, - "canton": null, - "numero_insee": "64254" - } - }, - { - "pk": 6309, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HALSOU", - "center": "POINT (295879.1278342988225631 1827487.6246653685811907)", - "surface": 5580000, - "canton": null, - "numero_insee": "64255" - } - }, - { - "pk": 17522, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HASPARREN", - "center": "POINT (302877.6248341132886708 1828646.1026870741043240)", - "surface": 77480000, - "canton": null, - "numero_insee": "64256" - } - }, - { - "pk": 16400, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HAUT-DE-BOSDARROS", - "center": "POINT (382905.2873197311419062 1799869.2895011391956359)", - "surface": 12340000, - "canton": null, - "numero_insee": "64257" - } - }, - { - "pk": 7724, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HELETTE", - "center": "POINT (308869.9655420680646785 1818183.1420725688803941)", - "surface": 23750000, - "canton": null, - "numero_insee": "64259" - } - }, - { - "pk": 36110, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HENDAYE", - "center": "POINT (267152.4179376593092456 1826752.5301854778081179)", - "surface": 10510000, - "canton": null, - "numero_insee": "64260" - } - }, - { - "pk": 32369, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HERRERE", - "center": "POINT (365187.6552058426896110 1799523.2150268258992583)", - "surface": 8920000, - "canton": null, - "numero_insee": "64261" - } - }, - { - "pk": 7834, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HIGUERES-SOUYE", - "center": "POINT (390022.6210973151028156 1823054.4654152237344533)", - "surface": 7420000, - "canton": null, - "numero_insee": "64262" - } - }, - { - "pk": 18697, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "L'HOPITAL-D'ORION", - "center": "POINT (341395.8213009367464110 1831764.8718397354241461)", - "surface": 8590000, - "canton": null, - "numero_insee": "64263" - } - }, - { - "pk": 9771, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "L'HOPITAL-SAINT-BLAISE", - "center": "POINT (347273.7100532990880311 1810889.2543029244989157)", - "surface": 2110000, - "canton": null, - "numero_insee": "64264" - } - }, - { - "pk": 19096, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HOSTA", - "center": "POINT (321933.9794081879081205 1799969.0459281401708722)", - "surface": 17240000, - "canton": null, - "numero_insee": "64265" - } - }, - { - "pk": 6468, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "HOURS", - "center": "POINT (395773.9223236743127927 1805481.7092662919312716)", - "surface": 5810000, - "canton": null, - "numero_insee": "64266" - } - }, - { - "pk": 14335, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "IBARROLLE", - "center": "POINT (320291.2252508474630304 1804961.3682626958470792)", - "surface": 8940000, - "canton": null, - "numero_insee": "64267" - } - }, - { - "pk": 10583, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "IDAUX-MENDY", - "center": "POINT (334529.6553405015729368 1802274.8578387582674623)", - "surface": 9680000, - "canton": null, - "numero_insee": "64268" - } - }, - { - "pk": 35964, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "IDRON", - "center": "POINT (385189.9495809529908001 1814204.5801855616737157)", - "surface": 7760000, - "canton": null, - "numero_insee": "64269" - } - }, - { - "pk": 14048, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "IGON", - "center": "POINT (390630.1753510613925755 1797930.6330028942320496)", - "surface": 5350000, - "canton": null, - "numero_insee": "64270" - } - }, - { - "pk": 9655, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ILHARRE", - "center": "POINT (326709.6665778583264910 1828040.3281559068709612)", - "surface": 10420000, - "canton": null, - "numero_insee": "64272" - } - }, - { - "pk": 17656, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "IRISSARRY", - "center": "POINT (309412.2907114932895638 1813081.7296685518231243)", - "surface": 26580000, - "canton": null, - "numero_insee": "64273" - } - }, - { - "pk": 4534, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "IROULEGUY", - "center": "POINT (304774.3649192608427256 1804834.3298143190331757)", - "surface": 9440000, - "canton": null, - "numero_insee": "64274" - } - }, - { - "pk": 13808, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ISPOURE", - "center": "POINT (308781.9943603068240918 1804466.6621265353169292)", - "surface": 7930000, - "canton": null, - "numero_insee": "64275" - } - }, - { - "pk": 35226, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ISSOR", - "center": "POINT (355737.3614857028005645 1792137.0464714346453547)", - "surface": 22940000, - "canton": null, - "numero_insee": "64276" - } - }, - { - "pk": 14310, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ISTURITS", - "center": "POINT (312618.3338894644402899 1825021.5951460576616228)", - "surface": 13730000, - "canton": null, - "numero_insee": "64277" - } - }, - { - "pk": 23257, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ITXASSOU", - "center": "POINT (295947.0492125399177894 1819178.7006581432651728)", - "surface": 39280000, - "canton": null, - "numero_insee": "64279" - } - }, - { - "pk": 35225, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "IZESTE", - "center": "POINT (373168.7743460924830288 1790778.6723352365661412)", - "surface": 6900000, - "canton": null, - "numero_insee": "64280" - } - }, - { - "pk": 9911, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "JASSES", - "center": "POINT (350425.3677939819172025 1817222.3670733561739326)", - "surface": 5500000, - "canton": null, - "numero_insee": "64281" - } - }, - { - "pk": 4841, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "JAXU", - "center": "POINT (311466.9028691147686914 1806691.1789192140568048)", - "surface": 10720000, - "canton": null, - "numero_insee": "64283" - } - }, - { - "pk": 26118, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "JURANCON", - "center": "POINT (376904.0749346438096836 1811333.1227645669132471)", - "surface": 18790000, - "canton": null, - "numero_insee": "64284" - } - }, - { - "pk": 26579, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "JUXUE", - "center": "POINT (325163.7328403933206573 1809005.9079125258140266)", - "surface": 15340000, - "canton": null, - "numero_insee": "64285" - } - }, - { - "pk": 12238, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAA-MONDRANS", - "center": "POINT (348092.2842850431334227 1833121.3205873107071966)", - "surface": 6150000, - "canton": null, - "numero_insee": "64286" - } - }, - { - "pk": 13907, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAAS", - "center": "POINT (341045.5099040698260069 1825655.0614515226334333)", - "surface": 6520000, - "canton": null, - "numero_insee": "64287" - } - }, - { - "pk": 24851, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LABASTIDE-CEZERACQ", - "center": "POINT (366491.6564363671932369 1823561.5112452507019043)", - "surface": 5040000, - "canton": null, - "numero_insee": "64288" - } - }, - { - "pk": 26775, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LA BASTIDE-CLAIRENCE", - "center": "POINT (310571.1218599528074265 1830511.0986329324077815)", - "surface": 23370000, - "canton": null, - "numero_insee": "64289" - } - }, - { - "pk": 33757, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LABASTIDE-MONREJEAU", - "center": "POINT (367579.6599557449226268 1825172.2841114101465791)", - "surface": 8350000, - "canton": null, - "numero_insee": "64290" - } - }, - { - "pk": 16064, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LABASTIDE-VILLEFRANCHE", - "center": "POINT (326662.0763294119969942 1833846.5251734617631882)", - "surface": 15420000, - "canton": null, - "numero_insee": "64291" - } - }, - { - "pk": 17952, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LABATMALE", - "center": "POINT (397412.8146781633840874 1800990.0326460620854050)", - "surface": 3310000, - "canton": null, - "numero_insee": "64292" - } - }, - { - "pk": 35826, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LABATUT", - "center": "POINT (409315.2008922076201998 1826617.4874589561950415)", - "surface": 8520000, - "canton": null, - "numero_insee": "64293" - } - }, - { - "pk": 4066, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LABETS-BISCAY", - "center": "POINT (324116.7272595262038521 1826817.7113812323659658)", - "surface": 8940000, - "canton": null, - "numero_insee": "64294" - } - }, - { - "pk": 31689, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LABEYRIE", - "center": "POINT (359730.6942175125586800 1842227.1123291295953095)", - "surface": 3700000, - "canton": null, - "numero_insee": "64295" - } - }, - { - "pk": 13688, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LACADEE", - "center": "POINT (357741.7397046616533771 1840608.9607687627431005)", - "surface": 4850000, - "canton": null, - "numero_insee": "64296" - } - }, - { - "pk": 34486, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LACARRE", - "center": "POINT (315088.0294628807459958 1804618.4032938827294856)", - "surface": 4480000, - "canton": null, - "numero_insee": "64297" - } - }, - { - "pk": 32403, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LACARRY-ARHAN-CHARRITTE-DE-HAUT", - "center": "POINT (331819.3816208644420840 1790939.5160881057381630)", - "surface": 23470000, - "canton": null, - "numero_insee": "64298" - } - }, - { - "pk": 14158, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LACOMMANDE", - "center": "POINT (368586.0431884457939304 1812365.9264761919621378)", - "surface": 3330000, - "canton": null, - "numero_insee": "64299" - } - }, - { - "pk": 15812, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LACQ", - "center": "POINT (360842.0313458101591095 1828821.0852833921089768)", - "surface": 17230000, - "canton": null, - "numero_insee": "64300" - } - }, - { - "pk": 4834, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAGOR", - "center": "POINT (356170.7372695927624591 1824678.0236578108742833)", - "surface": 20970000, - "canton": null, - "numero_insee": "64301" - } - }, - { - "pk": 11593, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAGOS", - "center": "POINT (391777.8374177382793278 1804447.6062794183380902)", - "surface": 4460000, - "canton": null, - "numero_insee": "64302" - } - }, - { - "pk": 30418, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAGUINGE-RESTOUE", - "center": "POINT (340109.5880834328709170 1793310.2080081359017640)", - "surface": 6030000, - "canton": null, - "numero_insee": "64303" - } - }, - { - "pk": 28780, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAHONCE", - "center": "POINT (297691.1385312514030375 1838514.9231666889972985)", - "surface": 9800000, - "canton": null, - "numero_insee": "64304" - } - }, - { - "pk": 37545, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAHONTAN", - "center": "POINT (332409.9754805811098777 1841001.6779088685289025)", - "surface": 14760000, - "canton": null, - "numero_insee": "64305" - } - }, - { - "pk": 25592, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAHOURCADE", - "center": "POINT (359103.4696270028362051 1821098.0211950091179460)", - "surface": 10890000, - "canton": null, - "numero_insee": "64306" - } - }, - { - "pk": 29422, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LALONGUE", - "center": "POINT (395336.7788986574159935 1834210.8846038160845637)", - "surface": 8000000, - "canton": null, - "numero_insee": "64307" - } - }, - { - "pk": 10250, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LALONQUETTE", - "center": "POINT (385014.2747415425255895 1835527.3880528407171369)", - "surface": 5290000, - "canton": null, - "numero_insee": "64308" - } - }, - { - "pk": 24258, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAMAYOU", - "center": "POINT (407942.6290827589109540 1823102.1716577848419547)", - "surface": 9790000, - "canton": null, - "numero_insee": "64309" - } - }, - { - "pk": 20909, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LANNE-EN-BARETOUS", - "center": "POINT (345337.4759997797664255 1790649.9837817207444459)", - "surface": 41440000, - "canton": null, - "numero_insee": "64310" - } - }, - { - "pk": 6548, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LANNECAUBE", - "center": "POINT (393131.9627431811532006 1834493.0449973864015192)", - "surface": 8670000, - "canton": null, - "numero_insee": "64311" - } - }, - { - "pk": 29504, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LANNEPLAA", - "center": "POINT (343481.6279032124439254 1833784.2596399062313139)", - "surface": 7230000, - "canton": null, - "numero_insee": "64312" - } - }, - { - "pk": 18231, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LANTABAT", - "center": "POINT (318229.1903196435305290 1812252.8862393775489181)", - "surface": 29220000, - "canton": null, - "numero_insee": "64313" - } - }, - { - "pk": 13673, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LARCEVEAU-ARROS-CIBITS", - "center": "POINT (320461.9167175849433988 1808566.9186754301190376)", - "surface": 18350000, - "canton": null, - "numero_insee": "64314" - } - }, - { - "pk": 26512, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAROIN", - "center": "POINT (374575.2195804005023092 1814517.6229267811868340)", - "surface": 7100000, - "canton": null, - "numero_insee": "64315" - } - }, - { - "pk": 18205, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LARRAU", - "center": "POINT (329671.9682688684551977 1784214.0876694382168353)", - "surface": 126960000, - "canton": null, - "numero_insee": "64316" - } - }, - { - "pk": 24692, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LARRESSORE", - "center": "POINT (293188.5046103037311696 1825963.9236363386735320)", - "surface": 10900000, - "canton": null, - "numero_insee": "64317" - } - }, - { - "pk": 34218, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LARREULE", - "center": "POINT (372511.6931715605896898 1834122.9708286458626390)", - "surface": 10120000, - "canton": null, - "numero_insee": "64318" - } - }, - { - "pk": 15872, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LARUNS", - "center": "POINT (374346.2333773307036608 1769363.3002435583621264)", - "surface": 248810000, - "canton": null, - "numero_insee": "64320" - } - }, - { - "pk": 26873, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LASCLAVERIES", - "center": "POINT (386868.1547790752374567 1829235.5228816273156554)", - "surface": 6090000, - "canton": null, - "numero_insee": "64321" - } - }, - { - "pk": 4389, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LASSE", - "center": "POINT (305019.6314896828262135 1799329.9722802215255797)", - "surface": 14750000, - "canton": null, - "numero_insee": "64322" - } - }, - { - "pk": 34450, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LASSERRE", - "center": "POINT (404319.9147489451570436 1837488.6058945669792593)", - "surface": 4310000, - "canton": null, - "numero_insee": "64323" - } - }, - { - "pk": 25438, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LASSEUBE", - "center": "POINT (370446.4744603139115497 1805273.0644794793333858)", - "surface": 48830000, - "canton": null, - "numero_insee": "64324" - } - }, - { - "pk": 28663, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LASSEUBETAT", - "center": "POINT (373178.2438719861675054 1801791.5059604647103697)", - "surface": 7150000, - "canton": null, - "numero_insee": "64325" - } - }, - { - "pk": 12984, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LAY-LAMIDOU", - "center": "POINT (352446.4386400891235098 1814936.3343274469953030)", - "surface": 5430000, - "canton": null, - "numero_insee": "64326" - } - }, - { - "pk": 16048, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LECUMBERRY", - "center": "POINT (317601.3389670008909889 1791123.3296721568331122)", - "surface": 58280000, - "canton": null, - "numero_insee": "64327" - } - }, - { - "pk": 23160, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LEDEUIX", - "center": "POINT (360114.7173652723431587 1807690.9665778211783618)", - "surface": 13500000, - "canton": null, - "numero_insee": "64328" - } - }, - { - "pk": 18247, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LEES-ATHAS", - "center": "POINT (354344.3117149781901389 1778910.1837945259176195)", - "surface": 44120000, - "canton": null, - "numero_insee": "64330" - } - }, - { - "pk": 25081, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LEME", - "center": "POINT (381503.1335760028450750 1836399.4837369851302356)", - "surface": 6610000, - "canton": null, - "numero_insee": "64332" - } - }, - { - "pk": 11190, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LEREN", - "center": "POINT (325715.9928963343263604 1839344.9951057317666709)", - "surface": 4570000, - "canton": null, - "numero_insee": "64334" - } - }, - { - "pk": 3824, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LESCAR", - "center": "POINT (375437.4578786613419652 1819230.1008689338341355)", - "surface": 26510000, - "canton": null, - "numero_insee": "64335" - } - }, - { - "pk": 15327, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LESCUN", - "center": "POINT (353391.7427849821979180 1772995.4254762656055391)", - "surface": 61880000, - "canton": null, - "numero_insee": "64336" - } - }, - { - "pk": 13040, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LESPIELLE", - "center": "POINT (398051.2101613162667491 1832831.6853134850971401)", - "surface": 7170000, - "canton": null, - "numero_insee": "64337" - } - }, - { - "pk": 27504, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LESPOURCY", - "center": "POINT (397751.5159818264655769 1820615.3401232161559165)", - "surface": 7140000, - "canton": null, - "numero_insee": "64338" - } - }, - { - "pk": 10808, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LESTELLE-BETHARRAM", - "center": "POINT (392061.4141193230170757 1794338.2585346498526633)", - "surface": 8750000, - "canton": null, - "numero_insee": "64339" - } - }, - { - "pk": 26731, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LICHANS-SUNHAR", - "center": "POINT (337508.3837117371731438 1793088.6290031317621469)", - "surface": 3550000, - "canton": null, - "numero_insee": "64340" - } - }, - { - "pk": 19550, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LICQ-ATHEREY", - "center": "POINT (337542.0632684620213695 1788984.1321281553246081)", - "surface": 17940000, - "canton": null, - "numero_insee": "64342" - } - }, - { - "pk": 24170, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LIMENDOUS", - "center": "POINT (395122.0881694941199385 1811683.4656878379173577)", - "surface": 7620000, - "canton": null, - "numero_insee": "64343" - } - }, - { - "pk": 24384, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LIVRON", - "center": "POINT (399470.5017050009919330 1806413.2368079253938049)", - "surface": 7620000, - "canton": null, - "numero_insee": "64344" - } - }, - { - "pk": 18984, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOHITZUN-OYHERCQ", - "center": "POINT (331436.0836127191432752 1813262.1601710873655975)", - "surface": 17560000, - "canton": null, - "numero_insee": "64345" - } - }, - { - "pk": 27093, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOMBIA", - "center": "POINT (399381.3111034104949795 1817224.8983288120944053)", - "surface": 7710000, - "canton": null, - "numero_insee": "64346" - } - }, - { - "pk": 28569, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LONCON", - "center": "POINT (376619.3537131242919713 1833756.3279106207191944)", - "surface": 5450000, - "canton": null, - "numero_insee": "64347" - } - }, - { - "pk": 9859, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LONS", - "center": "POINT (377457.7412372013786808 1817044.2170449239201844)", - "surface": 11500000, - "canton": null, - "numero_insee": "64348" - } - }, - { - "pk": 16457, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOUBIENG", - "center": "POINT (349125.4138397891656496 1829225.3785106979776174)", - "surface": 23450000, - "canton": null, - "numero_insee": "64349" - } - }, - { - "pk": 20815, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOUHOSSOA", - "center": "POINT (300652.1159963021054864 1819217.1710746961180121)", - "surface": 7480000, - "canton": null, - "numero_insee": "64350" - } - }, - { - "pk": 4006, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOURDIOS-ICHERE", - "center": "POINT (355681.6810475536622107 1786730.2982875020243227)", - "surface": 16300000, - "canton": null, - "numero_insee": "64351" - } - }, - { - "pk": 32017, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOURENTIES", - "center": "POINT (397017.5347360773594119 1812500.0157563716638833)", - "surface": 9060000, - "canton": null, - "numero_insee": "64352" - } - }, - { - "pk": 20316, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOUVIE-JUZON", - "center": "POINT (381791.3902782923541963 1789247.8106158764567226)", - "surface": 56410000, - "canton": null, - "numero_insee": "64353" - } - }, - { - "pk": 22845, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LOUVIE-SOUBIRON", - "center": "POINT (381945.9274113775463775 1782641.3822925395797938)", - "surface": 26240000, - "canton": null, - "numero_insee": "64354" - } - }, - { - "pk": 7073, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LUC-ARMAU", - "center": "POINT (404599.4371285338420421 1827880.0385355085600168)", - "surface": 5860000, - "canton": null, - "numero_insee": "64356" - } - }, - { - "pk": 36966, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LUCARRE", - "center": "POINT (403518.9145548318047076 1825368.2787565258331597)", - "surface": 3300000, - "canton": null, - "numero_insee": "64357" - } - }, - { - "pk": 5313, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LUCGARIER", - "center": "POINT (394062.9985782285220921 1806568.8677206349093467)", - "surface": 5710000, - "canton": null, - "numero_insee": "64358" - } - }, - { - "pk": 16345, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LUCQ-DE-BEARN", - "center": "POINT (357450.1876840677578002 1815177.6811355107929558)", - "surface": 48830000, - "canton": null, - "numero_insee": "64359" - } - }, - { - "pk": 35560, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LURBE-SAINT-CHRISTAU", - "center": "POINT (360328.4071379224769771 1793876.7616732935421169)", - "surface": 7560000, - "canton": null, - "numero_insee": "64360" - } - }, - { - "pk": 24502, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LUSSAGNET-LUSSON", - "center": "POINT (394370.3824441887554713 1829998.1560587722342461)", - "surface": 6700000, - "canton": null, - "numero_insee": "64361" - } - }, - { - "pk": 5726, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LUXE-SUMBERRAUTE", - "center": "POINT (323152.5687644019490108 1822304.6788143729791045)", - "surface": 8440000, - "canton": null, - "numero_insee": "64362" - } - }, - { - "pk": 24766, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "LYS", - "center": "POINT (381234.7698624894255772 1796051.1276535135693848)", - "surface": 15450000, - "canton": null, - "numero_insee": "64363" - } - }, - { - "pk": 19438, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MACAYE", - "center": "POINT (302646.0834501484641805 1820234.6237981244921684)", - "surface": 19700000, - "canton": null, - "numero_insee": "64364" - } - }, - { - "pk": 14579, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MALAUSSANNE", - "center": "POINT (372923.2507908430416137 1844938.5442802808247507)", - "surface": 17640000, - "canton": null, - "numero_insee": "64365" - } - }, - { - "pk": 6423, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MASCARAAS-HARON", - "center": "POINT (393179.2492259925929829 1840900.6623664093203843)", - "surface": 8730000, - "canton": null, - "numero_insee": "64366" - } - }, - { - "pk": 18400, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MASLACQ", - "center": "POINT (353827.1469426316907629 1829664.4549555042758584)", - "surface": 13380000, - "canton": null, - "numero_insee": "64367" - } - }, - { - "pk": 31487, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MASPIE-LALONQUERE-JUILLACQ", - "center": "POINT (398492.9217118864180520 1827829.6559409850742668)", - "surface": 10810000, - "canton": null, - "numero_insee": "64369" - } - }, - { - "pk": 12893, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MAUCOR", - "center": "POINT (387139.3104598226491362 1820627.9647856918163598)", - "surface": 5010000, - "canton": null, - "numero_insee": "64370" - } - }, - { - "pk": 17815, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MAULEON-LICHARRE", - "center": "POINT (337895.5712143838172778 1806907.7829833561554551)", - "surface": 12650000, - "canton": null, - "numero_insee": "64371" - } - }, - { - "pk": 28064, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MAURE", - "center": "POINT (403943.3002032734220847 1822468.4775810227729380)", - "surface": 3640000, - "canton": null, - "numero_insee": "64372" - } - }, - { - "pk": 13631, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MAZERES-LEZONS", - "center": "POINT (381106.9649185453308746 1811567.9623394533991814)", - "surface": 3970000, - "canton": null, - "numero_insee": "64373" - } - }, - { - "pk": 23819, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MAZEROLLES", - "center": "POINT (371738.0260679127532057 1830812.8635393253061920)", - "surface": 11830000, - "canton": null, - "numero_insee": "64374" - } - }, - { - "pk": 36470, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MEHARIN", - "center": "POINT (316759.6264220043085515 1820550.3656696178950369)", - "surface": 12770000, - "canton": null, - "numero_insee": "64375" - } - }, - { - "pk": 37354, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MEILLON", - "center": "POINT (384915.1944941481342539 1811098.7589840025175363)", - "surface": 7100000, - "canton": null, - "numero_insee": "64376" - } - }, - { - "pk": 30017, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MENDITTE", - "center": "POINT (337438.5625306405127048 1801597.9132773787714541)", - "surface": 6530000, - "canton": null, - "numero_insee": "64378" - } - }, - { - "pk": 19716, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MENDIVE", - "center": "POINT (321092.0555132684530690 1792753.7896415987052023)", - "surface": 41920000, - "canton": null, - "numero_insee": "64379" - } - }, - { - "pk": 23057, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MERITEIN", - "center": "POINT (349301.1609335830435157 1820016.3366000435780734)", - "surface": 6830000, - "canton": null, - "numero_insee": "64381" - } - }, - { - "pk": 26031, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MESPLEDE", - "center": "POINT (357871.4646397639298812 1837005.9616781887598336)", - "surface": 11740000, - "canton": null, - "numero_insee": "64382" - } - }, - { - "pk": 37866, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MIALOS", - "center": "POINT (377594.8684521622490138 1836867.8662809887900949)", - "surface": 4560000, - "canton": null, - "numero_insee": "64383" - } - }, - { - "pk": 11422, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MIOSSENS-LANUSSE", - "center": "POINT (386136.0643017797265202 1833033.8005853893700987)", - "surface": 9220000, - "canton": null, - "numero_insee": "64385" - } - }, - { - "pk": 26516, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MIREPEIX", - "center": "POINT (389291.6267449116567150 1802424.8035157928243279)", - "surface": 3320000, - "canton": null, - "numero_insee": "64386" - } - }, - { - "pk": 11011, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MOMAS", - "center": "POINT (374641.1199244966846891 1830836.7561820244882256)", - "surface": 14570000, - "canton": null, - "numero_insee": "64387" - } - }, - { - "pk": 9214, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MOMY", - "center": "POINT (402031.3515603513224050 1823654.0682495380751789)", - "surface": 6030000, - "canton": null, - "numero_insee": "64388" - } - }, - { - "pk": 37023, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONASSUT-AUDIRACQ", - "center": "POINT (393997.1937906144885346 1826691.3300321130082011)", - "surface": 9900000, - "canton": null, - "numero_insee": "64389" - } - }, - { - "pk": 14629, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONCAUP", - "center": "POINT (406352.6086696761194617 1833801.1990033860784024)", - "surface": 11430000, - "canton": null, - "numero_insee": "64390" - } - }, - { - "pk": 15109, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONCAYOLLE-LARRORY-MENDIBIEU", - "center": "POINT (342657.2273322681430727 1812252.9607437667436898)", - "surface": 16510000, - "canton": null, - "numero_insee": "64391" - } - }, - { - "pk": 33459, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONCLA", - "center": "POINT (392941.0747620119946077 1845503.8752616327255964)", - "surface": 5790000, - "canton": null, - "numero_insee": "64392" - } - }, - { - "pk": 20869, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONEIN", - "center": "POINT (364366.6859363832045346 1814133.2848527946043760)", - "surface": 81010000, - "canton": null, - "numero_insee": "64393" - } - }, - { - "pk": 36551, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONPEZAT", - "center": "POINT (405531.9286482625175267 1836197.1398598528467119)", - "surface": 3520000, - "canton": null, - "numero_insee": "64394" - } - }, - { - "pk": 13812, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONSEGUR", - "center": "POINT (409498.0577211152995005 1828721.3833463191986084)", - "surface": 2780000, - "canton": null, - "numero_insee": "64395" - } - }, - { - "pk": 4784, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONT", - "center": "POINT (357031.3881681588245556 1829590.6714553006459028)", - "surface": 18430000, - "canton": null, - "numero_insee": "64396" - } - }, - { - "pk": 13311, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONTAGUT", - "center": "POINT (370339.4469776650657877 1842614.6949825314804912)", - "surface": 6370000, - "canton": null, - "numero_insee": "64397" - } - }, - { - "pk": 29843, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONTANER", - "center": "POINT (409079.3473648793296888 1818806.6492981037590653)", - "surface": 19280000, - "canton": null, - "numero_insee": "64398" - } - }, - { - "pk": 27266, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONTARDON", - "center": "POINT (381823.7244967867736705 1821785.5421647222246975)", - "surface": 8350000, - "canton": null, - "numero_insee": "64399" - } - }, - { - "pk": 6661, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONT-DISSE", - "center": "POINT (398874.5502073884126730 1842249.0919158633332700)", - "surface": 5410000, - "canton": null, - "numero_insee": "64401" - } - }, - { - "pk": 8239, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONTFORT", - "center": "POINT (340160.1541913067339920 1823745.6298622679896653)", - "surface": 8700000, - "canton": null, - "numero_insee": "64403" - } - }, - { - "pk": 23266, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MONTORY", - "center": "POINT (343310.6264294837019406 1793636.8323043319396675)", - "surface": 20680000, - "canton": null, - "numero_insee": "64404" - } - }, - { - "pk": 35139, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MORLAAS", - "center": "POINT (388361.2243631731253117 1818135.1777854752726853)", - "surface": 13300000, - "canton": null, - "numero_insee": "64405" - } - }, - { - "pk": 19917, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MORLANNE", - "center": "POINT (366871.1482151512173004 1838281.3135074684396386)", - "surface": 13100000, - "canton": null, - "numero_insee": "64406" - } - }, - { - "pk": 36777, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MOUGUERRE", - "center": "POINT (296814.7309154989197850 1835504.3620978761464357)", - "surface": 22480000, - "canton": null, - "numero_insee": "64407" - } - }, - { - "pk": 11267, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MOUHOUS", - "center": "POINT (390119.6958601194201037 1835569.4584208023734391)", - "surface": 3370000, - "canton": null, - "numero_insee": "64408" - } - }, - { - "pk": 7617, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MOUMOUR", - "center": "POINT (355927.4413799254689366 1805554.1277786958962679)", - "surface": 8210000, - "canton": null, - "numero_insee": "64409" - } - }, - { - "pk": 20762, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MOURENX", - "center": "POINT (360184.9000197066925466 1823509.6498465633485466)", - "surface": 6460000, - "canton": null, - "numero_insee": "64410" - } - }, - { - "pk": 20508, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "MUSCULDY", - "center": "POINT (328709.3863884667516686 1803929.0909873731434345)", - "surface": 24430000, - "canton": null, - "numero_insee": "64411" - } - }, - { - "pk": 29942, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NABAS", - "center": "POINT (337990.6480931816040538 1819723.2593882670626044)", - "surface": 6430000, - "canton": null, - "numero_insee": "64412" - } - }, - { - "pk": 36423, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NARCASTET", - "center": "POINT (383839.5720437096897513 1807986.3327946322970092)", - "surface": 4620000, - "canton": null, - "numero_insee": "64413" - } - }, - { - "pk": 34994, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NARP", - "center": "POINT (343351.2617006687214598 1825273.5309716879855841)", - "surface": 6390000, - "canton": null, - "numero_insee": "64414" - } - }, - { - "pk": 16815, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NAVAILLES-ANGOS", - "center": "POINT (382679.3377035489538684 1827298.8543562779668719)", - "surface": 14310000, - "canton": null, - "numero_insee": "64415" - } - }, - { - "pk": 11856, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NAVARRENX", - "center": "POINT (350311.2813606028212234 1818923.3754712557420135)", - "surface": 6520000, - "canton": null, - "numero_insee": "64416" - } - }, - { - "pk": 34077, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NAY", - "center": "POINT (388206.1073832458932884 1800513.6610449487343431)", - "surface": 5240000, - "canton": null, - "numero_insee": "64417" - } - }, - { - "pk": 32138, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NOGUERES", - "center": "POINT (361589.6938673192635179 1823120.7430476546287537)", - "surface": 2000000, - "canton": null, - "numero_insee": "64418" - } - }, - { - "pk": 26313, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "NOUSTY", - "center": "POINT (392130.4024948636651970 1810257.1902028673794121)", - "surface": 9760000, - "canton": null, - "numero_insee": "64419" - } - }, - { - "pk": 12637, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OGENNE-CAMPTORT", - "center": "POINT (353426.1324641087558120 1817547.3620982519350946)", - "surface": 11770000, - "canton": null, - "numero_insee": "64420" - } - }, - { - "pk": 14821, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OGEU-LES-BAINS", - "center": "POINT (368496.1928861541091464 1798949.7376504957210273)", - "surface": 23140000, - "canton": null, - "numero_insee": "64421" - } - }, - { - "pk": 23259, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OLORON-SAINTE-MARIE", - "center": "POINT (357362.6974502669181675 1801461.1894451228436083)", - "surface": 68590000, - "canton": null, - "numero_insee": "64422" - } - }, - { - "pk": 24104, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ORAAS", - "center": "POINT (332187.6423473344184458 1831489.1033557809423655)", - "surface": 10620000, - "canton": null, - "numero_insee": "64423" - } - }, - { - "pk": 19168, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ORDIARP", - "center": "POINT (333503.9330014903098345 1805269.9096175013110042)", - "surface": 31020000, - "canton": null, - "numero_insee": "64424" - } - }, - { - "pk": 3369, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OREGUE", - "center": "POINT (315891.5443120256531984 1828752.6091647341381758)", - "surface": 36680000, - "canton": null, - "numero_insee": "64425" - } - }, - { - "pk": 12947, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ORIN", - "center": "POINT (354911.5480161276645958 1807347.8540562232956290)", - "surface": 4340000, - "canton": null, - "numero_insee": "64426" - } - }, - { - "pk": 6034, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ORION", - "center": "POINT (340512.9342028701212257 1829555.1279893431346864)", - "surface": 9750000, - "canton": null, - "numero_insee": "64427" - } - }, - { - "pk": 35483, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ORSANCO", - "center": "POINT (323607.1413377889548428 1815700.8506077658385038)", - "surface": 9460000, - "canton": null, - "numero_insee": "64429" - } - }, - { - "pk": 20996, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ORTHEZ", - "center": "POINT (347556.4045727271586657 1837421.7879139750730246)", - "surface": 46540000, - "canton": null, - "numero_insee": "64430" - } - }, - { - "pk": 8956, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OS-MARSILLON", - "center": "POINT (360571.3381414308096282 1825214.7641288614831865)", - "surface": 5370000, - "canton": null, - "numero_insee": "64431" - } - }, - { - "pk": 9773, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OSSAS-SUHARE", - "center": "POINT (335663.7043362563126720 1798279.5305412840098143)", - "surface": 7170000, - "canton": null, - "numero_insee": "64432" - } - }, - { - "pk": 22674, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OSSE-EN-ASPE", - "center": "POINT (354409.0460324626765214 1783215.7509212596341968)", - "surface": 42990000, - "canton": null, - "numero_insee": "64433" - } - }, - { - "pk": 6172, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OSSENX", - "center": "POINT (344760.1589654846466146 1824384.0711682075634599)", - "surface": 4040000, - "canton": null, - "numero_insee": "64434" - } - }, - { - "pk": 10809, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OSSERAIN-RIVAREYTE", - "center": "POINT (332945.8586237425333820 1824487.3575222706422210)", - "surface": 6500000, - "canton": null, - "numero_insee": "64435" - } - }, - { - "pk": 22323, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OSSES", - "center": "POINT (306225.2104778043576516 1811053.3485262463800609)", - "surface": 42600000, - "canton": null, - "numero_insee": "64436" - } - }, - { - "pk": 35032, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OSTABAT-ASME", - "center": "POINT (323133.6724251942359842 1812393.1823142697103322)", - "surface": 15440000, - "canton": null, - "numero_insee": "64437" - } - }, - { - "pk": 31079, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OUILLON", - "center": "POINT (391673.0260132277035154 1817161.3316315081901848)", - "surface": 6450000, - "canton": null, - "numero_insee": "64438" - } - }, - { - "pk": 27167, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OUSSE", - "center": "POINT (388311.4433529694797471 1812027.7784373420290649)", - "surface": 4540000, - "canton": null, - "numero_insee": "64439" - } - }, - { - "pk": 14980, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "OZENX-MONTESTRUCQ", - "center": "POINT (345107.9884559339843690 1830794.2078167104627937)", - "surface": 16530000, - "canton": null, - "numero_insee": "64440" - } - }, - { - "pk": 5405, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PAGOLLE", - "center": "POINT (328473.8767119339318015 1808232.1206264488864690)", - "surface": 16080000, - "canton": null, - "numero_insee": "64441" - } - }, - { - "pk": 5576, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PARBAYSE", - "center": "POINT (365530.1054507277440280 1818748.1215812258888036)", - "surface": 6430000, - "canton": null, - "numero_insee": "64442" - } - }, - { - "pk": 8447, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PARDIES", - "center": "POINT (362694.9896911686519161 1822629.2607918274588883)", - "surface": 5870000, - "canton": null, - "numero_insee": "64443" - } - }, - { - "pk": 13229, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PARDIES-PIETAT", - "center": "POINT (384466.6146719558746554 1804787.8120178007520735)", - "surface": 7570000, - "canton": null, - "numero_insee": "64444" - } - }, - { - "pk": 14394, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PAU", - "center": "POINT (381664.7365054234978743 1816778.5184128873515874)", - "surface": 31520000, - "canton": null, - "numero_insee": "64445" - } - }, - { - "pk": 9825, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PEYRELONGUE-ABOS", - "center": "POINT (402203.4817848941311240 1827059.3579483111388981)", - "surface": 8680000, - "canton": null, - "numero_insee": "64446" - } - }, - { - "pk": 29851, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PIETS-PLASENCE-MOUSTROU", - "center": "POINT (369957.9667318329447880 1840308.9641345820855349)", - "surface": 8350000, - "canton": null, - "numero_insee": "64447" - } - }, - { - "pk": 8709, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "POEY-DE-LESCAR", - "center": "POINT (373120.1544592840364203 1821013.0831359252333641)", - "surface": 6870000, - "canton": null, - "numero_insee": "64448" - } - }, - { - "pk": 33605, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "POEY-D'OLORON", - "center": "POINT (355994.6410173377953470 1809559.2875135338399559)", - "surface": 4790000, - "canton": null, - "numero_insee": "64449" - } - }, - { - "pk": 37022, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "POMPS", - "center": "POINT (365890.6698911233688705 1835770.4232623509597033)", - "surface": 7790000, - "canton": null, - "numero_insee": "64450" - } - }, - { - "pk": 25993, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PONSON-DEBAT-POUTS", - "center": "POINT (406189.4523383193882182 1817180.9631999190896749)", - "surface": 5790000, - "canton": null, - "numero_insee": "64451" - } - }, - { - "pk": 35082, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PONSON-DESSUS", - "center": "POINT (405611.9425612877239473 1814372.9906079284846783)", - "surface": 10940000, - "canton": null, - "numero_insee": "64452" - } - }, - { - "pk": 23013, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PONTACQ", - "center": "POINT (401304.6660107360221446 1802523.8718957768287510)", - "surface": 28990000, - "canton": null, - "numero_insee": "64453" - } - }, - { - "pk": 33440, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PONTIACQ-VIELLEPINTE", - "center": "POINT (405659.1688273487961851 1820780.6996397457551211)", - "surface": 7110000, - "canton": null, - "numero_insee": "64454" - } - }, - { - "pk": 32793, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PORTET", - "center": "POINT (395848.2631925625028089 1845027.2832233491353691)", - "surface": 7930000, - "canton": null, - "numero_insee": "64455" - } - }, - { - "pk": 34221, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "POULIACQ", - "center": "POINT (381978.1054160138010047 1839506.8965834761038423)", - "surface": 3480000, - "canton": null, - "numero_insee": "64456" - } - }, - { - "pk": 24894, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "POURSIUGUES-BOUCOUE", - "center": "POINT (380248.2745846365578473 1842896.4823274633381516)", - "surface": 9200000, - "canton": null, - "numero_insee": "64457" - } - }, - { - "pk": 33204, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PRECHACQ-JOSBAIG", - "center": "POINT (350376.2421624830458313 1811014.8505131583660841)", - "surface": 8370000, - "canton": null, - "numero_insee": "64458" - } - }, - { - "pk": 28427, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PRECHACQ-NAVARRENX", - "center": "POINT (352659.8137757165241055 1813336.2518198681063950)", - "surface": 5310000, - "canton": null, - "numero_insee": "64459" - } - }, - { - "pk": 37821, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PRECILHON", - "center": "POINT (363051.6134222205146216 1803610.3871150373015553)", - "surface": 6430000, - "canton": null, - "numero_insee": "64460" - } - }, - { - "pk": 3030, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "PUYOO", - "center": "POINT (337704.0999108139658347 1842446.6799543206579983)", - "surface": 9380000, - "canton": null, - "numero_insee": "64461" - } - }, - { - "pk": 33860, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "RAMOUS", - "center": "POINT (339616.7916390483733267 1841160.9073618212714791)", - "surface": 7700000, - "canton": null, - "numero_insee": "64462" - } - }, - { - "pk": 24340, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "REBENACQ", - "center": "POINT (377409.1894846534123644 1798622.6352434698492289)", - "surface": 10580000, - "canton": null, - "numero_insee": "64463" - } - }, - { - "pk": 9727, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "RIBARROUY", - "center": "POINT (388489.9461935691069812 1838959.8677029812242836)", - "surface": 2280000, - "canton": null, - "numero_insee": "64464" - } - }, - { - "pk": 37504, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "RIUPEYROUS", - "center": "POINT (391605.3556706619565375 1825370.1317874796222895)", - "surface": 4890000, - "canton": null, - "numero_insee": "64465" - } - }, - { - "pk": 10425, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "RIVEHAUTE", - "center": "POINT (340384.1935507084708661 1820844.1577898657415062)", - "surface": 8430000, - "canton": null, - "numero_insee": "64466" - } - }, - { - "pk": 9005, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "RONTIGNON", - "center": "POINT (382332.1751942763221450 1808674.7206720912363380)", - "surface": 7050000, - "canton": null, - "numero_insee": "64467" - } - }, - { - "pk": 4412, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "ROQUIAGUE", - "center": "POINT (341228.7325990608660504 1803330.9823074419982731)", - "surface": 10050000, - "canton": null, - "numero_insee": "64468" - } - }, - { - "pk": 9188, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-ABIT", - "center": "POINT (385276.5561419444275089 1803693.2162750302813947)", - "surface": 4230000, - "canton": null, - "numero_insee": "64469" - } - }, - { - "pk": 7978, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-ARMOU", - "center": "POINT (385589.8610351378447376 1826421.8078761871438473)", - "surface": 12550000, - "canton": null, - "numero_insee": "64470" - } - }, - { - "pk": 10674, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-BOES", - "center": "POINT (345621.5104400492273271 1841410.4175673907157034)", - "surface": 9610000, - "canton": null, - "numero_insee": "64471" - } - }, - { - "pk": 14285, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-CASTIN", - "center": "POINT (385219.9497775859199464 1822714.5460275493096560)", - "surface": 7000000, - "canton": null, - "numero_insee": "64472" - } - }, - { - "pk": 37592, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINTE-COLOME", - "center": "POINT (378252.9282207374344580 1793423.5524343734141439)", - "surface": 9490000, - "canton": null, - "numero_insee": "64473" - } - }, - { - "pk": 8770, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-DOS", - "center": "POINT (327746.8375869602314197 1835857.6823715476784855)", - "surface": 1870000, - "canton": null, - "numero_insee": "64474" - } - }, - { - "pk": 35310, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINTE-ENGRACE", - "center": "POINT (340502.7659234995953739 1782000.2528933174908161)", - "surface": 73330000, - "canton": null, - "numero_insee": "64475" - } - }, - { - "pk": 31866, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-ESTEBEN", - "center": "POINT (311453.9213039863971062 1820506.9239980895072222)", - "surface": 13750000, - "canton": null, - "numero_insee": "64476" - } - }, - { - "pk": 18673, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-ETIENNE-DE-BAIGORRY", - "center": "POINT (299672.0896153625799343 1804392.1324785805772990)", - "surface": 70150000, - "canton": null, - "numero_insee": "64477" - } - }, - { - "pk": 15821, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-FAUST", - "center": "POINT (373498.7520499064121395 1811505.3197515055071563)", - "surface": 13230000, - "canton": null, - "numero_insee": "64478" - } - }, - { - "pk": 11070, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-GIRONS-EN-BEARN", - "center": "POINT (344300.4101452818140388 1843802.2765531651675701)", - "surface": 5230000, - "canton": null, - "numero_insee": "64479" - } - }, - { - "pk": 1501, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-GLADIE-ARRIVE-MUNEIN", - "center": "POINT (335451.0041545745916665 1824207.5628808087203652)", - "surface": 6620000, - "canton": null, - "numero_insee": "64480" - } - }, - { - "pk": 14002, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-GOIN", - "center": "POINT (350901.4535430335672572 1808015.7130709344055504)", - "surface": 5580000, - "canton": null, - "numero_insee": "64481" - } - }, - { - "pk": 12320, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-JAMMES", - "center": "POINT (389737.9765632117050700 1821149.9520423589274287)", - "surface": 4120000, - "canton": null, - "numero_insee": "64482" - } - }, - { - "pk": 3148, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-JEAN-DE-LUZ", - "center": "POINT (278142.9854799628956243 1829445.1487027015537024)", - "surface": 19500000, - "canton": null, - "numero_insee": "64483" - } - }, - { - "pk": 14929, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-JEAN-LE-VIEUX", - "center": "POINT (311397.1164589374093339 1802986.3342586064245552)", - "surface": 11620000, - "canton": null, - "numero_insee": "64484" - } - }, - { - "pk": 36952, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-JEAN-PIED-DE-PORT", - "center": "POINT (309004.3345903327572159 1801765.3599398494698107)", - "surface": 2730000, - "canton": null, - "numero_insee": "64485" - } - }, - { - "pk": 25401, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-JEAN-POUDGE", - "center": "POINT (395794.3846239359118044 1839420.5335078518837690)", - "surface": 4020000, - "canton": null, - "numero_insee": "64486" - } - }, - { - "pk": 3849, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-JUST-IBARRE", - "center": "POINT (324319.3677424422930926 1802091.0243829048704356)", - "surface": 30330000, - "canton": null, - "numero_insee": "64487" - } - }, - { - "pk": 20873, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-LAURENT-BRETAGNE", - "center": "POINT (393724.9361709435470402 1823285.2143716663122177)", - "surface": 10710000, - "canton": null, - "numero_insee": "64488" - } - }, - { - "pk": 34138, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-MARTIN-D'ARBEROUE", - "center": "POINT (314144.5330336503102444 1822030.6660067504271865)", - "surface": 14810000, - "canton": null, - "numero_insee": "64489" - } - }, - { - "pk": 15172, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-MARTIN-D'ARROSSA", - "center": "POINT (302732.0630198356811889 1809723.2740838597528636)", - "surface": 18420000, - "canton": null, - "numero_insee": "64490" - } - }, - { - "pk": 18508, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-MICHEL", - "center": "POINT (308767.9174366333754733 1793954.3764675203710794)", - "surface": 29900000, - "canton": null, - "numero_insee": "64492" - } - }, - { - "pk": 9386, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-PALAIS", - "center": "POINT (325787.3624436035170220 1818421.8121883585117757)", - "surface": 7570000, - "canton": null, - "numero_insee": "64493" - } - }, - { - "pk": 9512, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-PE-DE-LEREN", - "center": "POINT (326628.4358485500561073 1837950.8911411035805941)", - "surface": 5340000, - "canton": null, - "numero_insee": "64494" - } - }, - { - "pk": 21442, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-PEE-SUR-NIVELLE", - "center": "POINT (284086.9095982667058706 1824888.4301916512195021)", - "surface": 65770000, - "canton": null, - "numero_insee": "64495" - } - }, - { - "pk": 33443, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-PIERRE-D'IRUBE", - "center": "POINT (293804.9867157106054947 1836280.6679898772854358)", - "surface": 7730000, - "canton": null, - "numero_insee": "64496" - } - }, - { - "pk": 23310, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAINT-VINCENT", - "center": "POINT (396631.7607335683424026 1798580.8145941023249179)", - "surface": 16840000, - "canton": null, - "numero_insee": "64498" - } - }, - { - "pk": 15465, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SALIES-DE-BEARN", - "center": "POINT (336263.2778345359256491 1835026.4994560000486672)", - "surface": 52420000, - "canton": null, - "numero_insee": "64499" - } - }, - { - "pk": 12265, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SALLES-MONGISCARD", - "center": "POINT (342757.0534913603914902 1836681.5955089384224266)", - "surface": 5830000, - "canton": null, - "numero_insee": "64500" - } - }, - { - "pk": 13679, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SALLESPISSE", - "center": "POINT (352639.6211318645509891 1840166.5865402957424521)", - "surface": 15210000, - "canton": null, - "numero_insee": "64501" - } - }, - { - "pk": 29628, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAMES", - "center": "POINT (316279.7730805846513249 1842471.3050559274852276)", - "surface": 13090000, - "canton": null, - "numero_insee": "64502" - } - }, - { - "pk": 29208, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAMSONS-LION", - "center": "POINT (400787.1196222358266823 1828849.7172864954918623)", - "surface": 5040000, - "canton": null, - "numero_insee": "64503" - } - }, - { - "pk": 21424, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SARE", - "center": "POINT (281136.8082812759093940 1818356.9084714995697141)", - "surface": 51770000, - "canton": null, - "numero_insee": "64504" - } - }, - { - "pk": 10303, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SARPOURENX", - "center": "POINT (352599.5482670088531449 1832858.0008717062883079)", - "surface": 3310000, - "canton": null, - "numero_insee": "64505" - } - }, - { - "pk": 16049, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SARRANCE", - "center": "POINT (362288.9349951241165400 1786784.6169048382434994)", - "surface": 46820000, - "canton": null, - "numero_insee": "64506" - } - }, - { - "pk": 30523, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAUBOLE", - "center": "POINT (401001.2030683247139677 1815035.7438286477699876)", - "surface": 5220000, - "canton": null, - "numero_insee": "64507" - } - }, - { - "pk": 11391, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAUCEDE", - "center": "POINT (355576.9315800883341581 1811658.2690546589437872)", - "surface": 7110000, - "canton": null, - "numero_insee": "64508" - } - }, - { - "pk": 29579, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAUGUIS-SAINT-ETIENNE", - "center": "POINT (338450.3309609615243971 1800304.7111901957541704)", - "surface": 8820000, - "canton": null, - "numero_insee": "64509" - } - }, - { - "pk": 21777, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAULT-DE-NAVAILLES", - "center": "POINT (356126.0587570134084672 1842297.5995747637934983)", - "surface": 22190000, - "canton": null, - "numero_insee": "64510" - } - }, - { - "pk": 16252, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAUVAGNON", - "center": "POINT (378793.3026564262690954 1825064.3470379642676562)", - "surface": 16730000, - "canton": null, - "numero_insee": "64511" - } - }, - { - "pk": 15256, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAUVELADE", - "center": "POINT (352257.5103663984918967 1825747.1236488949507475)", - "surface": 11880000, - "canton": null, - "numero_insee": "64512" - } - }, - { - "pk": 8857, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SAUVETERRE-DE-BEARN", - "center": "POINT (334913.5166236228542402 1828708.2782830004580319)", - "surface": 14530000, - "canton": null, - "numero_insee": "64513" - } - }, - { - "pk": 13017, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SEBY", - "center": "POINT (378413.8516950564808212 1834672.1211108684074134)", - "surface": 5990000, - "canton": null, - "numero_insee": "64514" - } - }, - { - "pk": 29426, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SEDZE-MAUBECQ", - "center": "POINT (400458.5435945449862629 1820137.0996564617380500)", - "surface": 7690000, - "canton": null, - "numero_insee": "64515" - } - }, - { - "pk": 29853, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SEDZERE", - "center": "POINT (395565.6650344645022415 1818595.0281034833751619)", - "surface": 12710000, - "canton": null, - "numero_insee": "64516" - } - }, - { - "pk": 29813, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SEMEACQ-BLACHON", - "center": "POINT (402024.9078053489793092 1836568.6518061924725771)", - "surface": 10830000, - "canton": null, - "numero_insee": "64517" - } - }, - { - "pk": 36838, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SENDETS", - "center": "POINT (388491.0331783081637695 1814532.1261537740938365)", - "surface": 7890000, - "canton": null, - "numero_insee": "64518" - } - }, - { - "pk": 11705, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SERRES-CASTET", - "center": "POINT (380608.4211432683514431 1823477.4715769081376493)", - "surface": 13800000, - "canton": null, - "numero_insee": "64519" - } - }, - { - "pk": 13439, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SERRES-MORLAAS", - "center": "POINT (388872.4878977786283940 1816837.9041777527891099)", - "surface": 4240000, - "canton": null, - "numero_insee": "64520" - } - }, - { - "pk": 27889, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SERRES-SAINTE-MARIE", - "center": "POINT (365152.3896146980114281 1828155.7327227643691003)", - "surface": 9730000, - "canton": null, - "numero_insee": "64521" - } - }, - { - "pk": 23070, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SEVIGNACQ", - "center": "POINT (389454.4290365650085732 1831259.1056864936836064)", - "surface": 17400000, - "canton": null, - "numero_insee": "64523" - } - }, - { - "pk": 15181, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SIMACOURBE", - "center": "POINT (396969.8534942495170981 1830420.0460139017086476)", - "surface": 11090000, - "canton": null, - "numero_insee": "64524" - } - }, - { - "pk": 9593, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SIROS", - "center": "POINT (370427.9630260512931272 1819689.4432504465803504)", - "surface": 2300000, - "canton": null, - "numero_insee": "64525" - } - }, - { - "pk": 5585, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SOUMOULOU", - "center": "POINT (394235.9745892679202370 1809874.0909917193930596)", - "surface": 2810000, - "canton": null, - "numero_insee": "64526" - } - }, - { - "pk": 4995, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SOURAIDE", - "center": "POINT (289406.5075165457674302 1823229.9388948990963399)", - "surface": 16930000, - "canton": null, - "numero_insee": "64527" - } - }, - { - "pk": 11233, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SUHESCUN", - "center": "POINT (312742.0879354760400020 1809905.3063249727711082)", - "surface": 11900000, - "canton": null, - "numero_insee": "64528" - } - }, - { - "pk": 8793, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SUS", - "center": "POINT (346540.0716287633404136 1814887.8228913873899728)", - "surface": 11580000, - "canton": null, - "numero_insee": "64529" - } - }, - { - "pk": 9564, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "SUSMIOU", - "center": "POINT (346722.2029458216857165 1817091.8396386881358922)", - "surface": 3550000, - "canton": null, - "numero_insee": "64530" - } - }, - { - "pk": 35709, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "TABAILLE-USQUAIN", - "center": "POINT (338063.6501509414520115 1823027.6280476488173008)", - "surface": 4400000, - "canton": null, - "numero_insee": "64531" - } - }, - { - "pk": 30436, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "TADOUSSE-USSAU", - "center": "POINT (395276.5201626394409686 1841518.6304274802096188)", - "surface": 4790000, - "canton": null, - "numero_insee": "64532" - } - }, - { - "pk": 23512, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "TARDETS-SORHOLUS", - "center": "POINT (341081.1021135851042345 1796922.3621094159316272)", - "surface": 14940000, - "canton": null, - "numero_insee": "64533" - } - }, - { - "pk": 9215, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "TARON-SADIRAC-VIELLENAVE", - "center": "POINT (391001.6738708283519372 1837879.3272233922034502)", - "surface": 13880000, - "canton": null, - "numero_insee": "64534" - } - }, - { - "pk": 13441, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "THEZE", - "center": "POINT (382724.1980102068628184 1834006.8257308423053473)", - "surface": 7990000, - "canton": null, - "numero_insee": "64536" - } - }, - { - "pk": 36954, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "TROIS-VILLES", - "center": "POINT (339067.4156482799444348 1798307.4586389849428087)", - "surface": 6430000, - "canton": null, - "numero_insee": "64537" - } - }, - { - "pk": 23839, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "UHART-CIZE", - "center": "POINT (307630.6634502076194622 1798350.1785827665589750)", - "surface": 11780000, - "canton": null, - "numero_insee": "64538" - } - }, - { - "pk": 17003, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "UHART-MIXE", - "center": "POINT (327227.4398616667604074 1813728.2279099544975907)", - "surface": 11740000, - "canton": null, - "numero_insee": "64539" - } - }, - { - "pk": 5044, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "URCUIT", - "center": "POINT (301295.7876891063060611 1838444.2836793742608279)", - "surface": 13980000, - "canton": null, - "numero_insee": "64540" - } - }, - { - "pk": 19129, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "URDES", - "center": "POINT (363629.3828467386774719 1830746.1611549663357437)", - "surface": 5910000, - "canton": null, - "numero_insee": "64541" - } - }, - { - "pk": 15264, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "URDOS", - "center": "POINT (364684.0400515835499391 1763376.8195434915833175)", - "surface": 36790000, - "canton": null, - "numero_insee": "64542" - } - }, - { - "pk": 8443, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "UREPEL", - "center": "POINT (294673.7398841354297474 1791236.0626817615702748)", - "surface": 26260000, - "canton": null, - "numero_insee": "64543" - } - }, - { - "pk": 9461, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "UROST", - "center": "POINT (397969.8962901445338503 1818414.6281483308412135)", - "surface": 2340000, - "canton": null, - "numero_insee": "64544" - } - }, - { - "pk": 18401, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "URRUGNE", - "center": "POINT (272475.2582798947114497 1824693.5446978099644184)", - "surface": 52050000, - "canton": null, - "numero_insee": "64545" - } - }, - { - "pk": 15154, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "URT", - "center": "POINT (306806.5533920709276572 1837888.6823121348861605)", - "surface": 18880000, - "canton": null, - "numero_insee": "64546" - } - }, - { - "pk": 21012, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "USTARITZ", - "center": "POINT (290755.6646030409610830 1829648.2578329485841095)", - "surface": 32690000, - "canton": null, - "numero_insee": "64547" - } - }, - { - "pk": 25633, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "UZAN", - "center": "POINT (369908.9253807939821854 1834101.5538455480709672)", - "surface": 6290000, - "canton": null, - "numero_insee": "64548" - } - }, - { - "pk": 13365, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "UZOS", - "center": "POINT (381518.9408148224465549 1810169.7470572649035603)", - "surface": 3560000, - "canton": null, - "numero_insee": "64550" - } - }, - { - "pk": 30179, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VERDETS", - "center": "POINT (357610.3615954342531040 1807870.6101735373958945)", - "surface": 5560000, - "canton": null, - "numero_insee": "64551" - } - }, - { - "pk": 24695, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VIALER", - "center": "POINT (396212.1446190132410266 1837321.6081164903007448)", - "surface": 7340000, - "canton": null, - "numero_insee": "64552" - } - }, - { - "pk": 12723, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VIELLENAVE-D'ARTHEZ", - "center": "POINT (371766.0347841578768566 1827409.2317960434593260)", - "surface": 3930000, - "canton": null, - "numero_insee": "64554" - } - }, - { - "pk": 11801, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VIELLENAVE-DE-NAVARRENX", - "center": "POINT (344596.1057209387654439 1819977.7013816037215292)", - "surface": 5710000, - "canton": null, - "numero_insee": "64555" - } - }, - { - "pk": 18246, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VIELLESEGURE", - "center": "POINT (353191.3729335434036329 1821750.2347615456674248)", - "surface": 14280000, - "canton": null, - "numero_insee": "64556" - } - }, - { - "pk": 22001, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VIGNES", - "center": "POINT (377573.4398283073678613 1839470.6259558666497469)", - "surface": 8020000, - "canton": null, - "numero_insee": "64557" - } - }, - { - "pk": 27076, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VILLEFRANQUE", - "center": "POINT (293223.1631342436885461 1833973.3057854992803186)", - "surface": 17220000, - "canton": null, - "numero_insee": "64558" - } - }, - { - "pk": 34903, - "model": "ishtar_common.town", - "fields": { - "departement": 65, - "name": "VIVEN", - "center": "POINT (380232.2543086407240480 1832684.8296300235670060)", - "surface": 3610000, - "canton": null, - "numero_insee": "64560" - } - }, - { - "pk": 10302, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ADAST", - "center": "POINT (402710.8505322866258211 1777706.6210512933321297)", - "surface": 1080000, - "canton": null, - "numero_insee": "65001" - } - }, - { - "pk": 5997, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ADE", - "center": "POINT (407364.9026899107266217 1796066.3694686491508037)", - "surface": 7530000, - "canton": null, - "numero_insee": "65002" - } - }, - { - "pk": 16485, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ADERVIELLE-POUCHERGUES", - "center": "POINT (439924.9152654292993248 1757089.5889244060963392)", - "surface": 9170000, - "canton": null, - "numero_insee": "65003" - } - }, - { - "pk": 30952, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AGOS-VIDALOS", - "center": "POINT (403052.6325240634032525 1784817.7475220710039139)", - "surface": 6220000, - "canton": null, - "numero_insee": "65004" - } - }, - { - "pk": 11899, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ALLIER", - "center": "POINT (419947.2051635365933180 1799974.6987993097864091)", - "surface": 3750000, - "canton": null, - "numero_insee": "65005" - } - }, - { - "pk": 15880, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANCIZAN", - "center": "POINT (431921.6546148030320182 1768436.8294065031222999)", - "surface": 41600000, - "canton": null, - "numero_insee": "65006" - } - }, - { - "pk": 13680, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANDREST", - "center": "POINT (415515.9943384371581487 1815255.6891883814241737)", - "surface": 6170000, - "canton": null, - "numero_insee": "65007" - } - }, - { - "pk": 34973, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANERES", - "center": "POINT (447180.3351431880146265 1787685.5340092582628131)", - "surface": 2620000, - "canton": null, - "numero_insee": "65009" - } - }, - { - "pk": 12400, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANGOS", - "center": "POINT (422833.8081716269953176 1802000.8688376864884049)", - "surface": 2950000, - "canton": null, - "numero_insee": "65010" - } - }, - { - "pk": 32417, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LES ANGLES", - "center": "POINT (409621.0332523187389597 1789577.4478122354485095)", - "surface": 3030000, - "canton": null, - "numero_insee": "65011" - } - }, - { - "pk": 4110, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANLA", - "center": "POINT (457359.4681578264571726 1779560.3267314760014415)", - "surface": 2820000, - "canton": null, - "numero_insee": "65012" - } - }, - { - "pk": 14367, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANSOST", - "center": "POINT (419414.4123402083059773 1828102.4969435131642967)", - "surface": 2210000, - "canton": null, - "numero_insee": "65013" - } - }, - { - "pk": 11540, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANTICHAN", - "center": "POINT (456770.4280439504655078 1778153.8035448549780995)", - "surface": 1200000, - "canton": null, - "numero_insee": "65014" - } - }, - { - "pk": 10987, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANTIN", - "center": "POINT (433725.6468606459675357 1816607.6119527376722544)", - "surface": 7560000, - "canton": null, - "numero_insee": "65015" - } - }, - { - "pk": 24376, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ANTIST", - "center": "POINT (420503.1847520439769141 1793271.5318962354212999)", - "surface": 2350000, - "canton": null, - "numero_insee": "65016" - } - }, - { - "pk": 22280, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARAGNOUET", - "center": "POINT (422915.0101400558487512 1755847.5487614583689719)", - "surface": 108500000, - "canton": null, - "numero_insee": "65017" - } - }, - { - "pk": 19135, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARBEOST", - "center": "POINT (386583.1682488066144288 1778775.0248949322849512)", - "surface": 15260000, - "canton": null, - "numero_insee": "65018" - } - }, - { - "pk": 29501, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARCIZAC-ADOUR", - "center": "POINT (416971.2376066117431037 1796646.2877584795933217)", - "surface": 5090000, - "canton": null, - "numero_insee": "65019" - } - }, - { - "pk": 5794, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARCIZAC-EZ-ANGLES", - "center": "POINT (410611.3814924273756333 1790887.1380369116086513)", - "surface": 1950000, - "canton": null, - "numero_insee": "65020" - } - }, - { - "pk": 25152, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARCIZANS-AVANT", - "center": "POINT (399221.0264412708929740 1775975.8308548291679472)", - "surface": 14970000, - "canton": null, - "numero_insee": "65021" - } - }, - { - "pk": 6807, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARCIZANS-DESSUS", - "center": "POINT (395881.8734666727250442 1780253.3267949204891920)", - "surface": 5250000, - "canton": null, - "numero_insee": "65022" - } - }, - { - "pk": 7346, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARDENGOST", - "center": "POINT (442711.2562240100814961 1771229.3209073280449957)", - "surface": 5800000, - "canton": null, - "numero_insee": "65023" - } - }, - { - "pk": 23998, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARGELES-BAGNERES", - "center": "POINT (425435.8539632663596421 1790008.4749431856907904)", - "surface": 2640000, - "canton": null, - "numero_insee": "65024" - } - }, - { - "pk": 24171, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARGELES-GAZOST", - "center": "POINT (401180.2820221065776423 1781198.0897412886843085)", - "surface": 3100000, - "canton": null, - "numero_insee": "65025" - } - }, - { - "pk": 11016, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARIES-ESPENAN", - "center": "POINT (453104.4742230746778660 1809760.0676629461813718)", - "surface": 5590000, - "canton": null, - "numero_insee": "65026" - } - }, - { - "pk": 22731, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARMENTEULE", - "center": "POINT (442315.9912862622877583 1758511.0489155887626112)", - "surface": 690000, - "canton": null, - "numero_insee": "65027" - } - }, - { - "pk": 20914, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARRAS-EN-LAVEDAN", - "center": "POINT (397210.5574476147303358 1776960.4189317012205720)", - "surface": 25340000, - "canton": null, - "numero_insee": "65029" - } - }, - { - "pk": 16052, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARREAU", - "center": "POINT (436512.6737839571433142 1770176.8244534169789404)", - "surface": 11190000, - "canton": null, - "numero_insee": "65031" - } - }, - { - "pk": 18728, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARRENS-MARSOUS", - "center": "POINT (387448.4082312147365883 1770972.9929648928809911)", - "surface": 99350000, - "canton": null, - "numero_insee": "65032" - } - }, - { - "pk": 28858, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARRODETS-EZ-ANGLES", - "center": "POINT (412637.5491901475470513 1788000.4966688042040914)", - "surface": 4620000, - "canton": null, - "numero_insee": "65033" - } - }, - { - "pk": 6868, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARRODETS", - "center": "POINT (432101.0565670958021656 1783055.4444294346030802)", - "surface": 970000, - "canton": null, - "numero_insee": "65034" - } - }, - { - "pk": 14422, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARTAGNAN", - "center": "POINT (417135.1152832865482196 1825280.4805745808407664)", - "surface": 5010000, - "canton": null, - "numero_insee": "65035" - } - }, - { - "pk": 7373, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARTALENS-SOUIN", - "center": "POINT (405612.3997571661602706 1777930.8040018468163908)", - "surface": 3870000, - "canton": null, - "numero_insee": "65036" - } - }, - { - "pk": 33811, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARTIGUEMY", - "center": "POINT (429509.7036717458395287 1793746.4648412156384438)", - "surface": 2970000, - "canton": null, - "numero_insee": "65037" - } - }, - { - "pk": 24689, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARTIGUES", - "center": "POINT (409230.5144042080501094 1788372.8261967916041613)", - "surface": 1400000, - "canton": null, - "numero_insee": "65038" - } - }, - { - "pk": 27077, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ASPIN-AURE", - "center": "POINT (435593.4478059845278040 1772371.8045841716229916)", - "surface": 12200000, - "canton": null, - "numero_insee": "65039" - } - }, - { - "pk": 27693, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ASPIN-EN-LAVEDAN", - "center": "POINT (405322.9330902388319373 1788741.0322689171880484)", - "surface": 1720000, - "canton": null, - "numero_insee": "65040" - } - }, - { - "pk": 16525, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ASQUE", - "center": "POINT (429803.4962016497738659 1782435.7361744281370193)", - "surface": 15820000, - "canton": null, - "numero_insee": "65041" - } - }, - { - "pk": 23225, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ASTE", - "center": "POINT (426806.8190943449735641 1781610.0158026341814548)", - "surface": 26280000, - "canton": null, - "numero_insee": "65042" - } - }, - { - "pk": 24939, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ASTUGUE", - "center": "POINT (415316.5252216631779447 1790926.0011622251477093)", - "surface": 8020000, - "canton": null, - "numero_insee": "65043" - } - }, - { - "pk": 10863, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AUBAREDE", - "center": "POINT (430278.1910285238409415 1809771.2959838646929711)", - "surface": 4860000, - "canton": null, - "numero_insee": "65044" - } - }, - { - "pk": 32225, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AUCUN", - "center": "POINT (392587.3146957097924314 1779124.8698825691826642)", - "surface": 13070000, - "canton": null, - "numero_insee": "65045" - } - }, - { - "pk": 4150, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AULON", - "center": "POINT (430159.4089358677156270 1763616.5844432194717228)", - "surface": 28580000, - "canton": null, - "numero_insee": "65046" - } - }, - { - "pk": 32529, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AURENSAN", - "center": "POINT (417828.3967778250225820 1814073.4192558159120381)", - "surface": 7180000, - "canton": null, - "numero_insee": "65048" - } - }, - { - "pk": 17932, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AURIEBAT", - "center": "POINT (417850.7776339640840888 1835598.0749749178066850)", - "surface": 16400000, - "canton": null, - "numero_insee": "65049" - } - }, - { - "pk": 36381, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AVENTIGNAN", - "center": "POINT (451999.6994984355405904 1786023.4870491246692836)", - "surface": 5290000, - "canton": null, - "numero_insee": "65051" - } - }, - { - "pk": 12399, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AVERAN", - "center": "POINT (409272.7614272785722278 1795381.3097109878435731)", - "surface": 4280000, - "canton": null, - "numero_insee": "65052" - } - }, - { - "pk": 3167, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AVEZAC-PRAT-LAHITTE", - "center": "POINT (436676.2846021532313898 1786697.5057516784872860)", - "surface": 17780000, - "canton": null, - "numero_insee": "65054" - } - }, - { - "pk": 16057, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AYROS-ARBOUIX", - "center": "POINT (403588.7096730953780934 1780517.1458241655491292)", - "surface": 2730000, - "canton": null, - "numero_insee": "65055" - } - }, - { - "pk": 34080, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AYZAC-OST", - "center": "POINT (401565.8532355088973418 1783003.3759895719122142)", - "surface": 3140000, - "canton": null, - "numero_insee": "65056" - } - }, - { - "pk": 14138, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "AZEREIX", - "center": "POINT (407804.2885661908076145 1803478.5545439352281392)", - "surface": 15260000, - "canton": null, - "numero_insee": "65057" - } - }, - { - "pk": 20082, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAGNERES-DE-BIGORRE", - "center": "POINT (416616.2692951603094116 1779022.8529375679790974)", - "surface": 125870000, - "canton": null, - "numero_insee": "65059" - } - }, - { - "pk": 11177, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BANIOS", - "center": "POINT (427888.1585696743568406 1784021.7626943695358932)", - "surface": 5410000, - "canton": null, - "numero_insee": "65060" - } - }, - { - "pk": 32554, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARBACHEN", - "center": "POINT (420719.1092599919065833 1827712.8246056931093335)", - "surface": 3050000, - "canton": null, - "numero_insee": "65061" - } - }, - { - "pk": 36619, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARBAZAN-DEBAT", - "center": "POINT (420327.7831947118975222 1802380.6166756895836443)", - "surface": 9880000, - "canton": null, - "numero_insee": "65062" - } - }, - { - "pk": 12811, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARBAZAN-DESSUS", - "center": "POINT (421363.6221022772369906 1798184.3234637188725173)", - "surface": 4190000, - "canton": null, - "numero_insee": "65063" - } - }, - { - "pk": 20714, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAREILLES", - "center": "POINT (444447.1361971137812361 1767138.8683276106603444)", - "surface": 21230000, - "canton": null, - "numero_insee": "65064" - } - }, - { - "pk": 28429, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARLEST", - "center": "POINT (401748.8807024082634598 1797221.4079208727926016)", - "surface": 4090000, - "canton": null, - "numero_insee": "65065" - } - }, - { - "pk": 30710, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARRANCOUEU", - "center": "POINT (435417.2540442607132718 1769466.9337716125883162)", - "surface": 3820000, - "canton": null, - "numero_insee": "65066" - } - }, - { - "pk": 11738, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARRY", - "center": "POINT (411173.1813633849378675 1795597.2345858518965542)", - "surface": 2640000, - "canton": null, - "numero_insee": "65067" - } - }, - { - "pk": 34615, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARTHE", - "center": "POINT (448788.2192223214078695 1811125.9077244533691555)", - "surface": 1370000, - "canton": null, - "numero_insee": "65068" - } - }, - { - "pk": 23592, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LA BARTHE-DE-NESTE", - "center": "POINT (440568.1288348396192305 1788231.4705096310935915)", - "surface": 7650000, - "canton": null, - "numero_insee": "65069" - } - }, - { - "pk": 35227, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BARTRES", - "center": "POINT (405069.8302600574679673 1795146.3806898952461779)", - "surface": 7380000, - "canton": null, - "numero_insee": "65070" - } - }, - { - "pk": 11987, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BATSERE", - "center": "POINT (432474.9909335828851908 1786262.2724357952829450)", - "surface": 2300000, - "canton": null, - "numero_insee": "65071" - } - }, - { - "pk": 24055, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAZET", - "center": "POINT (416139.7974735297029838 1812457.6333807220216841)", - "surface": 2910000, - "canton": null, - "numero_insee": "65072" - } - }, - { - "pk": 32792, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAZILLAC", - "center": "POINT (419281.2048713041003793 1819992.1725036846473813)", - "surface": 10320000, - "canton": null, - "numero_insee": "65073" - } - }, - { - "pk": 36801, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAZORDAN", - "center": "POINT (454355.5586709678173065 1803763.5331554564181715)", - "surface": 9320000, - "canton": null, - "numero_insee": "65074" - } - }, - { - "pk": 27716, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAZUS-AURE", - "center": "POINT (436868.5261564665706828 1763471.8661249375436455)", - "surface": 1930000, - "canton": null, - "numero_insee": "65075" - } - }, - { - "pk": 25478, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAZUS-NESTE", - "center": "POINT (440813.1079835726413876 1782827.2014511518646032)", - "surface": 2490000, - "canton": null, - "numero_insee": "65076" - } - }, - { - "pk": 15329, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BEAUCENS", - "center": "POINT (410743.6588275153189898 1774869.5337348044849932)", - "surface": 37040000, - "canton": null, - "numero_insee": "65077" - } - }, - { - "pk": 22054, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BEAUDEAN", - "center": "POINT (420319.5221541596110910 1779153.5734423543326557)", - "surface": 16620000, - "canton": null, - "numero_insee": "65078" - } - }, - { - "pk": 15811, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BEGOLE", - "center": "POINT (435587.3665738415438682 1797300.8064232668839395)", - "surface": 10300000, - "canton": null, - "numero_insee": "65079" - } - }, - { - "pk": 36422, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BENAC", - "center": "POINT (411960.8256216812878847 1797205.5934944914188236)", - "surface": 7960000, - "canton": null, - "numero_insee": "65080" - } - }, - { - "pk": 3017, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BENQUE", - "center": "POINT (432240.8124596853740513 1790365.1085498703178018)", - "surface": 2070000, - "canton": null, - "numero_insee": "65081" - } - }, - { - "pk": 37018, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BERBERUST-LIAS", - "center": "POINT (406461.3277186838677153 1784245.1822911249473691)", - "surface": 5740000, - "canton": null, - "numero_insee": "65082" - } - }, - { - "pk": 11313, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BERNAC-DEBAT", - "center": "POINT (418654.8909994070418179 1798862.7468590028584003)", - "surface": 3960000, - "canton": null, - "numero_insee": "65083" - } - }, - { - "pk": 12942, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BERNAC-DESSUS", - "center": "POINT (420070.4801206000847742 1797172.4777353098616004)", - "surface": 4640000, - "canton": null, - "numero_insee": "65084" - } - }, - { - "pk": 8958, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BERNADETS-DEBAT", - "center": "POINT (436111.6581304443534464 1818629.6423601368442178)", - "surface": 8820000, - "canton": null, - "numero_insee": "65085" - } - }, - { - "pk": 28954, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BERNADETS-DESSUS", - "center": "POINT (433836.6420493971090764 1803193.1374075636267662)", - "surface": 7910000, - "canton": null, - "numero_insee": "65086" - } - }, - { - "pk": 10132, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BERTREN", - "center": "POINT (459467.5927942335838452 1778876.9891508305445313)", - "surface": 2660000, - "canton": null, - "numero_insee": "65087" - } - }, - { - "pk": 25638, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BETBEZE", - "center": "POINT (456595.8037744850153103 1811290.7309148246422410)", - "surface": 3440000, - "canton": null, - "numero_insee": "65088" - } - }, - { - "pk": 19763, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BETPOUEY", - "center": "POINT (413932.2683287356048822 1764583.7378522483631968)", - "surface": 17340000, - "canton": null, - "numero_insee": "65089" - } - }, - { - "pk": 11885, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BETPOUY", - "center": "POINT (447099.6535501793259755 1809510.0816425555385649)", - "surface": 4130000, - "canton": null, - "numero_insee": "65090" - } - }, - { - "pk": 26705, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BETTES", - "center": "POINT (427248.5871654532384127 1788721.9523548004217446)", - "surface": 3390000, - "canton": null, - "numero_insee": "65091" - } - }, - { - "pk": 25439, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BEYREDE-JUMET", - "center": "POINT (436577.1539158992236480 1774482.4137767620850354)", - "surface": 16020000, - "canton": null, - "numero_insee": "65092" - } - }, - { - "pk": 13610, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BIZE", - "center": "POINT (446917.3261832803254947 1783178.1073656005319208)", - "surface": 13060000, - "canton": null, - "numero_insee": "65093" - } - }, - { - "pk": 28412, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BIZOUS", - "center": "POINT (445188.0938510344130918 1786467.6329677342437208)", - "surface": 3170000, - "canton": null, - "numero_insee": "65094" - } - }, - { - "pk": 3523, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BONNEFONT", - "center": "POINT (437912.9167182302335277 1806630.7900429719593376)", - "surface": 15370000, - "canton": null, - "numero_insee": "65095" - } - }, - { - "pk": 22191, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BONNEMAZON", - "center": "POINT (429826.5928832629579119 1791746.7637443272396922)", - "surface": 5000000, - "canton": null, - "numero_insee": "65096" - } - }, - { - "pk": 28313, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BONREPOS", - "center": "POINT (440764.0200703832088038 1800847.7046958156861365)", - "surface": 9020000, - "canton": null, - "numero_insee": "65097" - } - }, - { - "pk": 3299, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BOO-SILHEN", - "center": "POINT (403171.7448329915059730 1782516.0438877302221954)", - "surface": 3200000, - "canton": null, - "numero_insee": "65098" - } - }, - { - "pk": 21449, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BORDERES-LOURON", - "center": "POINT (442765.9750575555372052 1764621.9939717010129243)", - "surface": 17220000, - "canton": null, - "numero_insee": "65099" - } - }, - { - "pk": 36163, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BORDERES-SUR-L'ECHEZ", - "center": "POINT (413359.9283741529216059 1809631.4552023364230990)", - "surface": 16070000, - "canton": null, - "numero_insee": "65100" - } - }, - { - "pk": 34505, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BORDES", - "center": "POINT (427240.2426617792225443 1801837.0709913836326450)", - "surface": 11220000, - "canton": null, - "numero_insee": "65101" - } - }, - { - "pk": 29796, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BOUILH-DEVANT", - "center": "POINT (431419.0328566675307229 1817089.1005654074251652)", - "surface": 2980000, - "canton": null, - "numero_insee": "65102" - } - }, - { - "pk": 5336, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BOUILH-PEREUILH", - "center": "POINT (425635.9731977033661678 1814238.0674548151437193)", - "surface": 7860000, - "canton": null, - "numero_insee": "65103" - } - }, - { - "pk": 25877, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BOULIN", - "center": "POINT (420880.4451934211538173 1808191.8674374106340110)", - "surface": 2500000, - "canton": null, - "numero_insee": "65104" - } - }, - { - "pk": 12908, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BOURISP", - "center": "POINT (436490.4540382951381616 1760765.5424834487494081)", - "surface": 1900000, - "canton": null, - "numero_insee": "65106" - } - }, - { - "pk": 7730, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BOURREAC", - "center": "POINT (409601.1940332390367985 1791980.0749092136975378)", - "surface": 1230000, - "canton": null, - "numero_insee": "65107" - } - }, - { - "pk": 17228, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BRAMEVAQUE", - "center": "POINT (454681.3913561666267924 1776534.6090027950704098)", - "surface": 3710000, - "canton": null, - "numero_insee": "65109" - } - }, - { - "pk": 27285, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BUGARD", - "center": "POINT (435199.2244652381632477 1807909.8263692571781576)", - "surface": 5460000, - "canton": null, - "numero_insee": "65110" - } - }, - { - "pk": 24558, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BULAN", - "center": "POINT (431989.3509450067067519 1784456.1548420642502606)", - "surface": 3360000, - "canton": null, - "numero_insee": "65111" - } - }, - { - "pk": 8360, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BUN", - "center": "POINT (395606.3125789451878518 1777247.5387601219117641)", - "surface": 2850000, - "canton": null, - "numero_insee": "65112" - } - }, - { - "pk": 36883, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BURG", - "center": "POINT (435561.6836858814931475 1800404.1795530628878623)", - "surface": 12770000, - "canton": null, - "numero_insee": "65113" - } - }, - { - "pk": 3816, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BUZON", - "center": "POINT (422605.4158966585528105 1829630.5723608052358031)", - "surface": 4520000, - "canton": null, - "numero_insee": "65114" - } - }, - { - "pk": 20283, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CABANAC", - "center": "POINT (428272.7185627185972407 1810155.1681434190832078)", - "surface": 5640000, - "canton": null, - "numero_insee": "65115" - } - }, - { - "pk": 26077, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CADEAC", - "center": "POINT (436132.9452317608520389 1767670.7360387349035591)", - "surface": 6400000, - "canton": null, - "numero_insee": "65116" - } - }, - { - "pk": 26450, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CADEILHAN-TRACHERE", - "center": "POINT (432604.3278248392743990 1758530.7748746750876307)", - "surface": 4820000, - "canton": null, - "numero_insee": "65117" - } - }, - { - "pk": 10788, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAHARET", - "center": "POINT (435100.0771985353785567 1795694.9203816985245794)", - "surface": 1200000, - "canton": null, - "numero_insee": "65118" - } - }, - { - "pk": 27640, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAIXON", - "center": "POINT (412026.3535000546835363 1825638.7367942961864173)", - "surface": 8600000, - "canton": null, - "numero_insee": "65119" - } - }, - { - "pk": 33082, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CALAVANTE", - "center": "POINT (423029.0599949966417626 1802603.1755336960777640)", - "surface": 2100000, - "canton": null, - "numero_insee": "65120" - } - }, - { - "pk": 32985, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAMALES", - "center": "POINT (416778.5215863039484248 1819971.4935474782250822)", - "surface": 4690000, - "canton": null, - "numero_insee": "65121" - } - }, - { - "pk": 29895, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAMOUS", - "center": "POINT (440696.6069069146760739 1772714.4020252090413123)", - "surface": 3450000, - "canton": null, - "numero_insee": "65122" - } - }, - { - "pk": 20460, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAMPAN", - "center": "POINT (426657.1002832583617419 1775501.6321333725936711)", - "surface": 97340000, - "canton": null, - "numero_insee": "65123" - } - }, - { - "pk": 24711, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAMPARAN", - "center": "POINT (437791.9040337185724638 1760776.3154592609498650)", - "surface": 2680000, - "canton": null, - "numero_insee": "65124" - } - }, - { - "pk": 16587, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAMPISTROUS", - "center": "POINT (440107.1862625879002735 1795536.1340451422147453)", - "surface": 10240000, - "canton": null, - "numero_insee": "65125" - } - }, - { - "pk": 12867, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAMPUZAN", - "center": "POINT (445291.0760817340924405 1810296.0196181100327522)", - "surface": 6500000, - "canton": null, - "numero_insee": "65126" - } - }, - { - "pk": 3557, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAPVERN", - "center": "POINT (436437.1225004850421101 1791400.9957327516749501)", - "surface": 22140000, - "canton": null, - "numero_insee": "65127" - } - }, - { - "pk": 19536, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTELBAJAC", - "center": "POINT (438670.8540196515386924 1799729.1047559916041791)", - "surface": 8280000, - "canton": null, - "numero_insee": "65128" - } - }, - { - "pk": 20085, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTELNAU-MAGNOAC", - "center": "POINT (451884.9266759751481004 1811952.4854924776591361)", - "surface": 12820000, - "canton": null, - "numero_insee": "65129" - } - }, - { - "pk": 31499, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTELNAU-RIVIERE-BASSE", - "center": "POINT (408663.4277912421384826 1844932.7929520113393664)", - "surface": 18480000, - "canton": null, - "numero_insee": "65130" - } - }, - { - "pk": 28926, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTELVIEILH", - "center": "POINT (426363.2161913136951625 1811040.4107825423125178)", - "surface": 5320000, - "canton": null, - "numero_insee": "65131" - } - }, - { - "pk": 27468, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTERA-LANUSSE", - "center": "POINT (433372.5453977840952575 1798784.2146190046332777)", - "surface": 870000, - "canton": null, - "numero_insee": "65132" - } - }, - { - "pk": 11119, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTERA-LOU", - "center": "POINT (422720.4363609614083543 1815715.6817663549445570)", - "surface": 4860000, - "canton": null, - "numero_insee": "65133" - } - }, - { - "pk": 11957, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTERETS", - "center": "POINT (457473.5337780371773988 1814101.2181256925687194)", - "surface": 1830000, - "canton": null, - "numero_insee": "65134" - } - }, - { - "pk": 32418, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CASTILLON", - "center": "POINT (427436.3874857790651731 1790225.2507868313696235)", - "surface": 3370000, - "canton": null, - "numero_insee": "65135" - } - }, - { - "pk": 26861, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAUBOUS", - "center": "POINT (448027.1649595764465630 1806314.0854540793225169)", - "surface": 3850000, - "canton": null, - "numero_insee": "65136" - } - }, - { - "pk": 35079, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAUSSADE-RIVIERE", - "center": "POINT (411526.7267301599495113 1837648.2111246443819255)", - "surface": 6210000, - "canton": null, - "numero_insee": "65137" - } - }, - { - "pk": 15265, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAUTERETS", - "center": "POINT (398217.2633986108703539 1764153.6500578653067350)", - "surface": 158360000, - "canton": null, - "numero_insee": "65138" - } - }, - { - "pk": 9872, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAZARILH", - "center": "POINT (457108.9426099808188155 1773551.2148319762200117)", - "surface": 3120000, - "canton": null, - "numero_insee": "65139" - } - }, - { - "pk": 27684, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAZAUX-DEBAT", - "center": "POINT (440043.9068586110952310 1766902.1683937609195709)", - "surface": 1590000, - "canton": null, - "numero_insee": "65140" - } - }, - { - "pk": 12772, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CAZAUX-FRECHET-ANERAN-CAMORS", - "center": "POINT (444090.6383231778163463 1761829.6549421676900238)", - "surface": 12800000, - "canton": null, - "numero_insee": "65141" - } - }, - { - "pk": 19235, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CHELLE-DEBAT", - "center": "POINT (429452.4865173816215247 1812767.9096113077830523)", - "surface": 8740000, - "canton": null, - "numero_insee": "65142" - } - }, - { - "pk": 6700, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CHELLE-SPOU", - "center": "POINT (429795.1258807906415313 1795550.9133537844754755)", - "surface": 4610000, - "canton": null, - "numero_insee": "65143" - } - }, - { - "pk": 19352, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CHEUST", - "center": "POINT (411649.6813112163217738 1786390.4729997767135501)", - "surface": 3040000, - "canton": null, - "numero_insee": "65144" - } - }, - { - "pk": 30272, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CHEZE", - "center": "POINT (406967.5566160001908429 1771434.3569468033965677)", - "surface": 10400000, - "canton": null, - "numero_insee": "65145" - } - }, - { - "pk": 26510, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CHIS", - "center": "POINT (419337.4585471081663854 1813184.8573747945483774)", - "surface": 3830000, - "canton": null, - "numero_insee": "65146" - } - }, - { - "pk": 21744, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CIEUTAT", - "center": "POINT (426810.0668373012449592 1793323.6730510436464101)", - "surface": 18840000, - "canton": null, - "numero_insee": "65147" - } - }, - { - "pk": 32415, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CIZOS", - "center": "POINT (449611.4778549757320434 1808429.6275015301071107)", - "surface": 7710000, - "canton": null, - "numero_insee": "65148" - } - }, - { - "pk": 13309, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CLARAC", - "center": "POINT (430325.3915455737151206 1804065.1261174418032169)", - "surface": 6340000, - "canton": null, - "numero_insee": "65149" - } - }, - { - "pk": 20263, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CLARENS", - "center": "POINT (443102.9959113709046505 1796461.9827068462036550)", - "surface": 11320000, - "canton": null, - "numero_insee": "65150" - } - }, - { - "pk": 11574, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "COLLONGUES", - "center": "POINT (423652.0254378239042126 1812019.1425301127601415)", - "surface": 2110000, - "canton": null, - "numero_insee": "65151" - } - }, - { - "pk": 11044, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "COUSSAN", - "center": "POINT (426497.2638698880327865 1806936.8062996298540384)", - "surface": 3150000, - "canton": null, - "numero_insee": "65153" - } - }, - { - "pk": 10130, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CRECHETS", - "center": "POINT (455660.9155943527584895 1779145.7755128818098456)", - "surface": 950000, - "canton": null, - "numero_insee": "65154" - } - }, - { - "pk": 6199, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "DEVEZE", - "center": "POINT (454606.0938638022053055 1809772.5142260908614844)", - "surface": 5130000, - "canton": null, - "numero_insee": "65155" - } - }, - { - "pk": 9137, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "DOURS", - "center": "POINT (420931.7371302950195968 1814099.0646929766517133)", - "surface": 5040000, - "canton": null, - "numero_insee": "65156" - } - }, - { - "pk": 8321, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ENS", - "center": "POINT (435821.9886386856669560 1756855.3864513998851180)", - "surface": 3480000, - "canton": null, - "numero_insee": "65157" - } - }, - { - "pk": 3446, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESBAREICH", - "center": "POINT (455825.7651268519693986 1771337.9897663693409413)", - "surface": 8780000, - "canton": null, - "numero_insee": "65158" - } - }, - { - "pk": 30712, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESCALA", - "center": "POINT (442864.0163740650750697 1789051.4125583691056818)", - "surface": 3940000, - "canton": null, - "numero_insee": "65159" - } - }, - { - "pk": 10721, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESCAUNETS", - "center": "POINT (403972.2150858857203275 1818964.7213329686783254)", - "surface": 6350000, - "canton": null, - "numero_insee": "65160" - } - }, - { - "pk": 10100, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESCONDEAUX", - "center": "POINT (420996.2673686277121305 1818404.5186655053403229)", - "surface": 3720000, - "canton": null, - "numero_insee": "65161" - } - }, - { - "pk": 12388, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESCONNETS", - "center": "POINT (428158.6808996707550250 1787628.1982398785185069)", - "surface": 2310000, - "canton": null, - "numero_insee": "65162" - } - }, - { - "pk": 28846, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESCOTS", - "center": "POINT (430672.1877286653034389 1786347.4741049623116851)", - "surface": 4080000, - "canton": null, - "numero_insee": "65163" - } - }, - { - "pk": 14345, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESCOUBES-POUTS", - "center": "POINT (411803.6001650234102271 1791998.2625139374285936)", - "surface": 2730000, - "canton": null, - "numero_insee": "65164" - } - }, - { - "pk": 36737, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESPARROS", - "center": "POINT (434122.3092019391478971 1780769.4805633791256696)", - "surface": 32840000, - "canton": null, - "numero_insee": "65165" - } - }, - { - "pk": 32420, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESPECHE", - "center": "POINT (433875.6986169523443095 1786373.9789188888389617)", - "surface": 2680000, - "canton": null, - "numero_insee": "65166" - } - }, - { - "pk": 35219, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESPIEILH", - "center": "POINT (428952.9337099498370662 1788435.6991304154507816)", - "surface": 2110000, - "canton": null, - "numero_insee": "65167" - } - }, - { - "pk": 6220, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESQUIEZE-SERE", - "center": "POINT (408105.1458197517786175 1767038.5643255473114550)", - "surface": 1530000, - "canton": null, - "numero_insee": "65168" - } - }, - { - "pk": 18801, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESTAING", - "center": "POINT (391782.0682393085444346 1767504.5919136703014374)", - "surface": 74530000, - "canton": null, - "numero_insee": "65169" - } - }, - { - "pk": 24652, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESTAMPURES", - "center": "POINT (433485.6744226334849373 1821411.1087572884280235)", - "surface": 5570000, - "canton": null, - "numero_insee": "65170" - } - }, - { - "pk": 5780, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESTARVIELLE", - "center": "POINT (442508.7529458794742823 1759413.7119724394287914)", - "surface": 820000, - "canton": null, - "numero_insee": "65171" - } - }, - { - "pk": 38045, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESTERRE", - "center": "POINT (409515.7957957388134673 1765948.9140938022173941)", - "surface": 1820000, - "canton": null, - "numero_insee": "65173" - } - }, - { - "pk": 33957, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ESTIRAC", - "center": "POINT (413044.8527655572979711 1835658.4886682957876474)", - "surface": 5200000, - "canton": null, - "numero_insee": "65174" - } - }, - { - "pk": 21789, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "FERRERE", - "center": "POINT (449626.3649975540465675 1770385.5462539205327630)", - "surface": 57890000, - "canton": null, - "numero_insee": "65175" - } - }, - { - "pk": 13366, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "FERRIERES", - "center": "POINT (389456.6615881330799311 1782402.9225134477019310)", - "surface": 17240000, - "canton": null, - "numero_insee": "65176" - } - }, - { - "pk": 24845, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "FONTRAILLES", - "center": "POINT (440125.0694365253439173 1817561.6053521619178355)", - "surface": 9110000, - "canton": null, - "numero_insee": "65177" - } - }, - { - "pk": 3727, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "FRECHEDE", - "center": "POINT (431492.6400409617926925 1820293.3651978552807122)", - "surface": 5460000, - "canton": null, - "numero_insee": "65178" - } - }, - { - "pk": 33109, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "FRECHENDETS", - "center": "POINT (428368.0080848494544625 1786528.6477654199115932)", - "surface": 2010000, - "canton": null, - "numero_insee": "65179" - } - }, - { - "pk": 8742, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "FRECHET-AURE", - "center": "POINT (439908.1544069863157347 1771206.1099501918070018)", - "surface": 3450000, - "canton": null, - "numero_insee": "65180" - } - }, - { - "pk": 24747, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "FRECHOU-FRECHET", - "center": "POINT (422854.4971329798572697 1799498.1511416858993471)", - "surface": 3010000, - "canton": null, - "numero_insee": "65181" - } - }, - { - "pk": 33606, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GAILLAGOS", - "center": "POINT (394282.5860138644929975 1779939.7860228465870023)", - "surface": 8520000, - "canton": null, - "numero_insee": "65182" - } - }, - { - "pk": 14557, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GALAN", - "center": "POINT (442638.7280201904941350 1804167.0355792818590999)", - "surface": 13810000, - "canton": null, - "numero_insee": "65183" - } - }, - { - "pk": 13179, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GALEZ", - "center": "POINT (442771.9959895843057893 1800163.5224100232589990)", - "surface": 7320000, - "canton": null, - "numero_insee": "65184" - } - }, - { - "pk": 4549, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GARDERES", - "center": "POINT (401326.3053788968827575 1812034.9862639992497861)", - "surface": 15420000, - "canton": null, - "numero_insee": "65185" - } - }, - { - "pk": 8715, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GAUDENT", - "center": "POINT (454763.2436384047614411 1778737.8652640581130981)", - "surface": 1590000, - "canton": null, - "numero_insee": "65186" - } - }, - { - "pk": 31232, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GAUSSAN", - "center": "POINT (448746.9991191920125857 1804017.3997253482230008)", - "surface": 7750000, - "canton": null, - "numero_insee": "65187" - } - }, - { - "pk": 16860, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GAVARNIE", - "center": "POINT (404235.3915921573061496 1750687.2880880837328732)", - "surface": 83940000, - "canton": null, - "numero_insee": "65188" - } - }, - { - "pk": 22811, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GAYAN", - "center": "POINT (414024.3017068530898541 1814041.9923815648071468)", - "surface": 2760000, - "canton": null, - "numero_insee": "65189" - } - }, - { - "pk": 28843, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GAZAVE", - "center": "POINT (443618.6736838337383233 1782550.0835575829260051)", - "surface": 7360000, - "canton": null, - "numero_insee": "65190" - } - }, - { - "pk": 4425, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GAZOST", - "center": "POINT (410999.3448723261826672 1780277.9760119286365807)", - "surface": 41300000, - "canton": null, - "numero_insee": "65191" - } - }, - { - "pk": 21557, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GEDRE", - "center": "POINT (411715.7023419578326866 1754153.1004789047874510)", - "surface": 143020000, - "canton": null, - "numero_insee": "65192" - } - }, - { - "pk": 32814, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GEMBRIE", - "center": "POINT (456072.9763489281758666 1777747.5522815962322056)", - "surface": 980000, - "canton": null, - "numero_insee": "65193" - } - }, - { - "pk": 9363, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GENEREST", - "center": "POINT (451332.9472934476798400 1781913.1758349158335477)", - "surface": 12020000, - "canton": null, - "numero_insee": "65194" - } - }, - { - "pk": 18807, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GENOS", - "center": "POINT (440369.2960301373968832 1751786.9693410531617701)", - "surface": 23900000, - "canton": null, - "numero_insee": "65195" - } - }, - { - "pk": 36967, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GENSAC", - "center": "POINT (417911.1569403794128448 1828290.3027050741948187)", - "surface": 3510000, - "canton": null, - "numero_insee": "65196" - } - }, - { - "pk": 24300, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GER", - "center": "POINT (405844.1404820923344232 1786242.4212833582423627)", - "surface": 1930000, - "canton": null, - "numero_insee": "65197" - } - }, - { - "pk": 10533, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GERDE", - "center": "POINT (423763.7885825244011357 1786390.4579020065721124)", - "surface": 6960000, - "canton": null, - "numero_insee": "65198" - } - }, - { - "pk": 13456, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GERM", - "center": "POINT (444452.3347856514155865 1754423.8758683642372489)", - "surface": 12430000, - "canton": null, - "numero_insee": "65199" - } - }, - { - "pk": 4253, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GERMS-SUR-L'OUSSOUET", - "center": "POINT (414068.0280882160295732 1784508.2313024597242475)", - "surface": 13250000, - "canton": null, - "numero_insee": "65200" - } - }, - { - "pk": 34669, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GEU", - "center": "POINT (404954.7206971279229037 1784833.4462455387692899)", - "surface": 2530000, - "canton": null, - "numero_insee": "65201" - } - }, - { - "pk": 5343, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GEZ", - "center": "POINT (399171.4712083878694102 1781982.4512761000078171)", - "surface": 3950000, - "canton": null, - "numero_insee": "65202" - } - }, - { - "pk": 36160, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GEZ-EZ-ANGLES", - "center": "POINT (411419.6979580598999746 1789992.7665824191644788)", - "surface": 2440000, - "canton": null, - "numero_insee": "65203" - } - }, - { - "pk": 12376, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GONEZ", - "center": "POINT (426907.6308943461626768 1805738.8180487442295998)", - "surface": 1140000, - "canton": null, - "numero_insee": "65204" - } - }, - { - "pk": 13325, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GOUAUX", - "center": "POINT (439171.0870183227816597 1763490.9272939802613109)", - "surface": 6040000, - "canton": null, - "numero_insee": "65205" - } - }, - { - "pk": 31240, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GOUDON", - "center": "POINT (429100.0782468174584210 1806958.3316702239681035)", - "surface": 7540000, - "canton": null, - "numero_insee": "65206" - } - }, - { - "pk": 7130, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GOURGUE", - "center": "POINT (431401.8399472828023136 1794963.5089646354317665)", - "surface": 1550000, - "canton": null, - "numero_insee": "65207" - } - }, - { - "pk": 25273, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GRAILHEN", - "center": "POINT (438994.0712670872453600 1760686.1492807350587100)", - "surface": 5830000, - "canton": null, - "numero_insee": "65208" - } - }, - { - "pk": 8881, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GREZIAN", - "center": "POINT (437554.3887641511391848 1765279.6700125986244529)", - "surface": 1950000, - "canton": null, - "numero_insee": "65209" - } - }, - { - "pk": 32457, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GRUST", - "center": "POINT (403890.5609734940226190 1768205.1873904108069837)", - "surface": 10090000, - "canton": null, - "numero_insee": "65210" - } - }, - { - "pk": 13593, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GUCHAN", - "center": "POINT (437077.8643263056874275 1762372.2982124686241150)", - "surface": 2600000, - "canton": null, - "numero_insee": "65211" - } - }, - { - "pk": 11792, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GUCHEN", - "center": "POINT (434964.7534818002604879 1763656.3454951420426369)", - "surface": 5690000, - "canton": null, - "numero_insee": "65212" - } - }, - { - "pk": 18030, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "GUIZERIX", - "center": "POINT (446952.2772597898729146 1815215.3974149613641202)", - "surface": 7220000, - "canton": null, - "numero_insee": "65213" - } - }, - { - "pk": 11809, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HACHAN", - "center": "POINT (446987.9356940613943152 1810910.7638471005484462)", - "surface": 1870000, - "canton": null, - "numero_insee": "65214" - } - }, - { - "pk": 12180, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HAGEDET", - "center": "POINT (408520.2387343301670626 1838023.8395382394082844)", - "surface": 2180000, - "canton": null, - "numero_insee": "65215" - } - }, - { - "pk": 19974, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HAUBAN", - "center": "POINT (422625.3405012839939445 1790886.2851412526797503)", - "surface": 2220000, - "canton": null, - "numero_insee": "65216" - } - }, - { - "pk": 6798, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HAUTAGET", - "center": "POINT (446495.3246814025333151 1785777.6453284749295563)", - "surface": 1360000, - "canton": null, - "numero_insee": "65217" - } - }, - { - "pk": 15354, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HECHES", - "center": "POINT (439639.9683688337681815 1779413.5126166371628642)", - "surface": 35510000, - "canton": null, - "numero_insee": "65218" - } - }, - { - "pk": 8237, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HIBARETTE", - "center": "POINT (412750.9486145167611539 1798513.6242735586129129)", - "surface": 1550000, - "canton": null, - "numero_insee": "65220" - } - }, - { - "pk": 20609, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HIIS", - "center": "POINT (417384.0813460586359724 1795147.9603227230254561)", - "surface": 3050000, - "canton": null, - "numero_insee": "65221" - } - }, - { - "pk": 6442, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HITTE", - "center": "POINT (422876.8414447414688766 1796795.2109712739475071)", - "surface": 2950000, - "canton": null, - "numero_insee": "65222" - } - }, - { - "pk": 15968, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HORGUES", - "center": "POINT (416233.2554798552300781 1801145.3965936696622521)", - "surface": 4500000, - "canton": null, - "numero_insee": "65223" - } - }, - { - "pk": 37502, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HOUEYDETS", - "center": "POINT (438395.3883299388107844 1796723.3532266526017338)", - "surface": 7440000, - "canton": null, - "numero_insee": "65224" - } - }, - { - "pk": 7677, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "HOURC", - "center": "POINT (424188.9805786635261029 1807618.5263323176186532)", - "surface": 2020000, - "canton": null, - "numero_insee": "65225" - } - }, - { - "pk": 19925, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "IBOS", - "center": "POINT (409876.8100068947533146 1807099.8149469858035445)", - "surface": 33070000, - "canton": null, - "numero_insee": "65226" - } - }, - { - "pk": 15099, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ILHET", - "center": "POINT (441275.7181395160732791 1775322.2507451823912561)", - "surface": 8040000, - "canton": null, - "numero_insee": "65228" - } - }, - { - "pk": 29209, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ILHEU", - "center": "POINT (458168.6508136053453200 1778565.8659352296963334)", - "surface": 2040000, - "canton": null, - "numero_insee": "65229" - } - }, - { - "pk": 30310, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "IZAOURT", - "center": "POINT (458350.6075910191284493 1780769.9492135478649288)", - "surface": 2440000, - "canton": null, - "numero_insee": "65230" - } - }, - { - "pk": 6684, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "IZAUX", - "center": "POINT (440087.4730595734436065 1785824.6946661234833300)", - "surface": 5360000, - "canton": null, - "numero_insee": "65231" - } - }, - { - "pk": 10219, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "JACQUE", - "center": "POINT (427628.1932487211888656 1815455.9154981267638505)", - "surface": 1880000, - "canton": null, - "numero_insee": "65232" - } - }, - { - "pk": 13438, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "JARRET", - "center": "POINT (407927.4360954801086336 1788562.3000919595360756)", - "surface": 4420000, - "canton": null, - "numero_insee": "65233" - } - }, - { - "pk": 6322, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "JUILLAN", - "center": "POINT (411617.5074295515078120 1802408.7711388405878097)", - "surface": 8320000, - "canton": null, - "numero_insee": "65235" - } - }, - { - "pk": 26309, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "JULOS", - "center": "POINT (409288.4668247828376479 1793479.2348974638152868)", - "surface": 5980000, - "canton": null, - "numero_insee": "65236" - } - }, - { - "pk": 13570, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "JUNCALAS", - "center": "POINT (409349.6364095691824332 1786071.1292823303956538)", - "surface": 3400000, - "canton": null, - "numero_insee": "65237" - } - }, - { - "pk": 7739, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LABASTIDE", - "center": "POINT (437904.9472514059161767 1783403.8260558478068560)", - "surface": 5660000, - "canton": null, - "numero_insee": "65239" - } - }, - { - "pk": 17538, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LABATUT-RIVIERE", - "center": "POINT (413520.5802938144188374 1838665.8056418728083372)", - "surface": 12870000, - "canton": null, - "numero_insee": "65240" - } - }, - { - "pk": 34744, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LABORDE", - "center": "POINT (433199.7809824136784300 1783364.8856768286786973)", - "surface": 1850000, - "canton": null, - "numero_insee": "65241" - } - }, - { - "pk": 9957, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LACASSAGNE", - "center": "POINT (422789.0986269482527860 1819520.5939525733701885)", - "surface": 6610000, - "canton": null, - "numero_insee": "65242" - } - }, - { - "pk": 26248, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAFITOLE", - "center": "POINT (416795.0960931465961039 1830083.1248549586161971)", - "surface": 8810000, - "canton": null, - "numero_insee": "65243" - } - }, - { - "pk": 6515, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAGARDE", - "center": "POINT (411821.9306498236255720 1814023.8026417684741318)", - "surface": 4930000, - "canton": null, - "numero_insee": "65244" - } - }, - { - "pk": 5556, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAGRANGE", - "center": "POINT (437918.8746190821984783 1793816.0470530516467988)", - "surface": 3640000, - "canton": null, - "numero_insee": "65245" - } - }, - { - "pk": 13453, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ARRAYOU-LAHITTE", - "center": "POINT (413017.3156886798678897 1790506.5432196834590286)", - "surface": 4820000, - "canton": null, - "numero_insee": "65247" - } - }, - { - "pk": 7673, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAHITTE-TOUPIERE", - "center": "POINT (409479.0479342024773359 1831023.8361427395138890)", - "surface": 5720000, - "canton": null, - "numero_insee": "65248" - } - }, - { - "pk": 37277, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LALANNE", - "center": "POINT (457211.3911217926652171 1809493.7681787048932165)", - "surface": 6480000, - "canton": null, - "numero_insee": "65249" - } - }, - { - "pk": 9061, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LALANNE-TRIE", - "center": "POINT (437450.3396506513236091 1814135.5736919732298702)", - "surface": 5070000, - "canton": null, - "numero_insee": "65250" - } - }, - { - "pk": 13883, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LALOUBERE", - "center": "POINT (415914.7341639726655558 1803345.3050074619241059)", - "surface": 4070000, - "canton": null, - "numero_insee": "65251" - } - }, - { - "pk": 27975, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAMARQUE-PONTACQ", - "center": "POINT (401336.0543476269813254 1798719.7383178060408682)", - "surface": 10760000, - "canton": null, - "numero_insee": "65252" - } - }, - { - "pk": 13296, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAMARQUE-RUSTAING", - "center": "POINT (433977.2180867586866952 1810402.5875441017560661)", - "surface": 2790000, - "canton": null, - "numero_insee": "65253" - } - }, - { - "pk": 7199, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAMEAC", - "center": "POINT (428919.6569692391203716 1816667.9693798623047769)", - "surface": 5230000, - "canton": null, - "numero_insee": "65254" - } - }, - { - "pk": 31751, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LANCON", - "center": "POINT (438747.4353829785250127 1766290.7268037598114461)", - "surface": 2840000, - "canton": null, - "numero_insee": "65255" - } - }, - { - "pk": 26307, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LANESPEDE", - "center": "POINT (431876.7105855173431337 1798071.0286399470642209)", - "surface": 4500000, - "canton": null, - "numero_insee": "65256" - } - }, - { - "pk": 6466, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LANNE", - "center": "POINT (409749.3348729516728781 1798288.6045431932434440)", - "surface": 5740000, - "canton": null, - "numero_insee": "65257" - } - }, - { - "pk": 22898, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LANNEMEZAN", - "center": "POINT (441534.4092673559207469 1792444.3546667832415551)", - "surface": 19140000, - "canton": null, - "numero_insee": "65258" - } - }, - { - "pk": 3261, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LANSAC", - "center": "POINT (423814.2037506876513362 1804511.8578499620780349)", - "surface": 3910000, - "canton": null, - "numero_insee": "65259" - } - }, - { - "pk": 30596, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAPEYRE", - "center": "POINT (437037.4806703634094447 1815633.8742106352001429)", - "surface": 3630000, - "canton": null, - "numero_insee": "65260" - } - }, - { - "pk": 29178, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LARAN", - "center": "POINT (448335.7834946889197454 1805315.4907948970794678)", - "surface": 3420000, - "canton": null, - "numero_insee": "65261" - } - }, - { - "pk": 33461, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LARREULE", - "center": "POINT (411796.3788703138707206 1829240.9286465714685619)", - "surface": 10210000, - "canton": null, - "numero_insee": "65262" - } - }, - { - "pk": 26825, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LARROQUE", - "center": "POINT (449665.1358101771911606 1814036.4984080744907260)", - "surface": 6970000, - "canton": null, - "numero_insee": "65263" - } - }, - { - "pk": 13147, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LASCAZERES", - "center": "POINT (408439.1402361638029106 1835720.5719074574299157)", - "surface": 9190000, - "canton": null, - "numero_insee": "65264" - } - }, - { - "pk": 18895, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LASLADES", - "center": "POINT (423305.3857849923660979 1805508.8038463669363409)", - "surface": 5280000, - "canton": null, - "numero_insee": "65265" - } - }, - { - "pk": 37250, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LASSALES", - "center": "POINT (449360.0914582326076925 1802520.7494873092509806)", - "surface": 2490000, - "canton": null, - "numero_insee": "65266" - } - }, - { - "pk": 14213, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAU-BALAGNAS", - "center": "POINT (401793.3345833177445456 1779701.3928052522242069)", - "surface": 2920000, - "canton": null, - "numero_insee": "65267" - } - }, - { - "pk": 30950, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LAYRISSE", - "center": "POINT (413578.2805920452810824 1795316.7509067163337022)", - "surface": 3360000, - "canton": null, - "numero_insee": "65268" - } - }, - { - "pk": 30824, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LESCURRY", - "center": "POINT (422907.4112871095421724 1817319.0579275330528617)", - "surface": 5150000, - "canton": null, - "numero_insee": "65269" - } - }, - { - "pk": 5432, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LESPOUEY", - "center": "POINT (423822.4799481676891446 1803510.7731478647328913)", - "surface": 2940000, - "canton": null, - "numero_insee": "65270" - } - }, - { - "pk": 24541, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LHEZ", - "center": "POINT (425634.3659991084132344 1802324.3689813946839422)", - "surface": 830000, - "canton": null, - "numero_insee": "65272" - } - }, - { - "pk": 32741, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LIAC", - "center": "POINT (418630.1020242585218512 1826093.7429256509058177)", - "surface": 4170000, - "canton": null, - "numero_insee": "65273" - } - }, - { - "pk": 15100, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LIBAROS", - "center": "POINT (441713.7140628708875738 1807062.7160211773589253)", - "surface": 9030000, - "canton": null, - "numero_insee": "65274" - } - }, - { - "pk": 9252, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LIES", - "center": "POINT (425964.5470461692893878 1786608.8876938698813319)", - "surface": 3620000, - "canton": null, - "numero_insee": "65275" - } - }, - { - "pk": 6581, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LIZOS", - "center": "POINT (421777.2814457092899829 1808699.8550792855676264)", - "surface": 1810000, - "canton": null, - "numero_insee": "65276" - } - }, - { - "pk": 13619, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOMBRES", - "center": "POINT (450907.6186682163970545 1784913.1537593721877784)", - "surface": 1410000, - "canton": null, - "numero_insee": "65277" - } - }, - { - "pk": 21684, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOMNE", - "center": "POINT (433888.9529034832958132 1784772.2225948611740023)", - "surface": 2960000, - "canton": null, - "numero_insee": "65278" - } - }, - { - "pk": 34059, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LORTET", - "center": "POINT (439703.6103728025918826 1783819.1831811580341309)", - "surface": 3560000, - "canton": null, - "numero_insee": "65279" - } - }, - { - "pk": 31789, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOUBAJAC", - "center": "POINT (402761.5366177225369029 1795828.1418185594957322)", - "surface": 6600000, - "canton": null, - "numero_insee": "65280" - } - }, - { - "pk": 8491, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOUCRUP", - "center": "POINT (415197.3940335604711436 1793227.6892447643913329)", - "surface": 3700000, - "canton": null, - "numero_insee": "65281" - } - }, - { - "pk": 22322, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOUDENVIELLE", - "center": "POINT (443694.5563411139883101 1749211.4096781697589904)", - "surface": 43500000, - "canton": null, - "numero_insee": "65282" - } - }, - { - "pk": 26721, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOUDERVIELLE", - "center": "POINT (444429.1164861354045570 1757227.0084065068513155)", - "surface": 5470000, - "canton": null, - "numero_insee": "65283" - } - }, - { - "pk": 8769, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOUEY", - "center": "POINT (411236.0875267584342510 1800102.9640240184962749)", - "surface": 6030000, - "canton": null, - "numero_insee": "65284" - } - }, - { - "pk": 28166, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOUIT", - "center": "POINT (423140.7278603598242626 1813316.4067138533573598)", - "surface": 4980000, - "canton": null, - "numero_insee": "65285" - } - }, - { - "pk": 22101, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOURDES", - "center": "POINT (404600.6825530472560786 1791338.0959069814998657)", - "surface": 36890000, - "canton": null, - "numero_insee": "65286" - } - }, - { - "pk": 11401, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LOURES-BAROUSSE", - "center": "POINT (458440.7556287067709491 1781972.0995216090232134)", - "surface": 2190000, - "canton": null, - "numero_insee": "65287" - } - }, - { - "pk": 8680, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUBRET-SAINT-LUC", - "center": "POINT (434342.0306468750350177 1814710.5374526451341808)", - "surface": 5600000, - "canton": null, - "numero_insee": "65288" - } - }, - { - "pk": 26672, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUBY-BETMONT", - "center": "POINT (433959.8231195458793081 1812504.8535811984911561)", - "surface": 7210000, - "canton": null, - "numero_insee": "65289" - } - }, - { - "pk": 29927, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUC", - "center": "POINT (424381.7869767517549917 1796407.1893503817263991)", - "surface": 4890000, - "canton": null, - "numero_insee": "65290" - } - }, - { - "pk": 5684, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUGAGNAN", - "center": "POINT (406134.5531190007459372 1787446.2175069521181285)", - "surface": 770000, - "canton": null, - "numero_insee": "65291" - } - }, - { - "pk": 4672, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUQUET", - "center": "POINT (400246.5912869950407185 1809423.0915760742500424)", - "surface": 8240000, - "canton": null, - "numero_insee": "65292" - } - }, - { - "pk": 4565, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUSTAR", - "center": "POINT (437589.3911178151611239 1809431.3322234295774251)", - "surface": 4920000, - "canton": null, - "numero_insee": "65293" - } - }, - { - "pk": 32414, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUTILHOUS", - "center": "POINT (436111.9384173610014841 1794401.7872093503829092)", - "surface": 3360000, - "canton": null, - "numero_insee": "65294" - } - }, - { - "pk": 21719, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "LUZ-SAINT-SAUVEUR", - "center": "POINT (409852.5055249219294637 1761546.4925754172727466)", - "surface": 50900000, - "canton": null, - "numero_insee": "65295" - } - }, - { - "pk": 23230, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MADIRAN", - "center": "POINT (406286.5078775219153613 1841809.6852712179534137)", - "surface": 15150000, - "canton": null, - "numero_insee": "65296" - } - }, - { - "pk": 9307, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MANSAN", - "center": "POINT (425807.2180365319363773 1817743.4889392370823771)", - "surface": 2100000, - "canton": null, - "numero_insee": "65297" - } - }, - { - "pk": 19487, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MARQUERIE", - "center": "POINT (426883.6237387174041942 1808641.9567984146997333)", - "surface": 3510000, - "canton": null, - "numero_insee": "65298" - } - }, - { - "pk": 13278, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MARSAC", - "center": "POINT (417005.2030611518421210 1816769.7091959775425494)", - "surface": 1580000, - "canton": null, - "numero_insee": "65299" - } - }, - { - "pk": 12656, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MARSAS", - "center": "POINT (427274.2524653854779899 1785618.5524951794650406)", - "surface": 2690000, - "canton": null, - "numero_insee": "65300" - } - }, - { - "pk": 33213, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MARSEILLAN", - "center": "POINT (427346.0829534245422110 1813251.0622109496034682)", - "surface": 4500000, - "canton": null, - "numero_insee": "65301" - } - }, - { - "pk": 7353, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MASCARAS", - "center": "POINT (423841.5153283023973927 1801208.2755967138800770)", - "surface": 4810000, - "canton": null, - "numero_insee": "65303" - } - }, - { - "pk": 4707, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MAUBOURGUET", - "center": "POINT (414174.1335915155941620 1832263.9680484305135906)", - "surface": 22330000, - "canton": null, - "numero_insee": "65304" - } - }, - { - "pk": 10255, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MAULEON-BAROUSSE", - "center": "POINT (456108.6668767916853540 1773442.8037058745976537)", - "surface": 5530000, - "canton": null, - "numero_insee": "65305" - } - }, - { - "pk": 20589, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MAUVEZIN", - "center": "POINT (432418.6679568494437262 1793069.7170600527897477)", - "surface": 10050000, - "canton": null, - "numero_insee": "65306" - } - }, - { - "pk": 8714, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MAZERES-DE-NESTE", - "center": "POINT (453388.7882471750490367 1787536.7479884279891849)", - "surface": 3450000, - "canton": null, - "numero_insee": "65307" - } - }, - { - "pk": 30279, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MAZEROLLES", - "center": "POINT (433505.5530159143963829 1819008.5341432839632034)", - "surface": 6380000, - "canton": null, - "numero_insee": "65308" - } - }, - { - "pk": 32949, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MAZOUAU", - "center": "POINT (441917.6332947427872568 1782435.8799209850840271)", - "surface": 1400000, - "canton": null, - "numero_insee": "65309" - } - }, - { - "pk": 26500, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MERILHEU", - "center": "POINT (424026.8722880523419008 1790897.8718231483362615)", - "surface": 3370000, - "canton": null, - "numero_insee": "65310" - } - }, - { - "pk": 37865, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MINGOT", - "center": "POINT (424174.8770934207132086 1821434.2180412861052901)", - "surface": 1770000, - "canton": null, - "numero_insee": "65311" - } - }, - { - "pk": 10037, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MOLERE", - "center": "POINT (433842.5632582446560264 1790378.3616724330931902)", - "surface": 1750000, - "canton": null, - "numero_insee": "65312" - } - }, - { - "pk": 33357, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MOMERES", - "center": "POINT (416247.3159101525670849 1799443.5476928045973182)", - "surface": 2400000, - "canton": null, - "numero_insee": "65313" - } - }, - { - "pk": 37444, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONFAUCON", - "center": "POINT (420395.6244375974638388 1830513.3293308431748301)", - "surface": 10510000, - "canton": null, - "numero_insee": "65314" - } - }, - { - "pk": 14496, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONLEON-MAGNOAC", - "center": "POINT (451938.8528277016011998 1805445.4615773889236152)", - "surface": 19730000, - "canton": null, - "numero_insee": "65315" - } - }, - { - "pk": 26030, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONLONG", - "center": "POINT (447869.2454374212538823 1801206.8970127853099257)", - "surface": 7230000, - "canton": null, - "numero_insee": "65316" - } - }, - { - "pk": 12492, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONT", - "center": "POINT (444812.1494086107704788 1759332.6710410926025361)", - "surface": 8220000, - "canton": null, - "numero_insee": "65317" - } - }, - { - "pk": 13294, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONTASTRUC", - "center": "POINT (438040.3701179433846846 1803328.0426999577321112)", - "surface": 12580000, - "canton": null, - "numero_insee": "65318" - } - }, - { - "pk": 23091, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONTEGUT", - "center": "POINT (449908.1800201834412292 1784704.6383670300710946)", - "surface": 7020000, - "canton": null, - "numero_insee": "65319" - } - }, - { - "pk": 31116, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONTGAILLARD", - "center": "POINT (418497.6906234571943060 1793655.4221031782217324)", - "surface": 9630000, - "canton": null, - "numero_insee": "65320" - } - }, - { - "pk": 10908, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONTIGNAC", - "center": "POINT (421847.6167371488991193 1800190.6373064927756786)", - "surface": 1090000, - "canton": null, - "numero_insee": "65321" - } - }, - { - "pk": 32849, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONTOUSSE", - "center": "POINT (442986.5099765622871928 1786349.2825483137276024)", - "surface": 7940000, - "canton": null, - "numero_insee": "65322" - } - }, - { - "pk": 28657, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MONTSERIE", - "center": "POINT (444901.8609563013887964 1784763.2798201523255557)", - "surface": 2270000, - "canton": null, - "numero_insee": "65323" - } - }, - { - "pk": 19926, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MOULEDOUS", - "center": "POINT (429713.1482605673954822 1805461.6753199861850590)", - "surface": 7040000, - "canton": null, - "numero_insee": "65324" - } - }, - { - "pk": 12452, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MOUMOULOUS", - "center": "POINT (430096.1063746668514796 1819681.1282807295210660)", - "surface": 3380000, - "canton": null, - "numero_insee": "65325" - } - }, - { - "pk": 10840, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "MUN", - "center": "POINT (431971.7456664842320606 1810786.4541793551761657)", - "surface": 4850000, - "canton": null, - "numero_insee": "65326" - } - }, - { - "pk": 20956, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "NESTIER", - "center": "POINT (448297.2996128808590584 1785792.5738746295683086)", - "surface": 4980000, - "canton": null, - "numero_insee": "65327" - } - }, - { - "pk": 32649, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "NEUILH", - "center": "POINT (415036.8725862214341760 1788420.7818983118049800)", - "surface": 2370000, - "canton": null, - "numero_insee": "65328" - } - }, - { - "pk": 21072, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "NISTOS", - "center": "POINT (446858.6830714867683128 1778171.7735589672811329)", - "surface": 32710000, - "canton": null, - "numero_insee": "65329" - } - }, - { - "pk": 31247, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "NOUILHAN", - "center": "POINT (413911.8484457115409896 1827656.5828246057499200)", - "surface": 4560000, - "canton": null, - "numero_insee": "65330" - } - }, - { - "pk": 37877, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ODOS", - "center": "POINT (414226.1198945844080299 1801729.5085037774406374)", - "surface": 8760000, - "canton": null, - "numero_insee": "65331" - } - }, - { - "pk": 24141, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OLEAC-DEBAT", - "center": "POINT (421464.5455037740175612 1810198.9940022961236537)", - "surface": 1950000, - "canton": null, - "numero_insee": "65332" - } - }, - { - "pk": 7871, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OLEAC-DESSUS", - "center": "POINT (425672.4430851917713881 1797719.3663610389921814)", - "surface": 3750000, - "canton": null, - "numero_insee": "65333" - } - }, - { - "pk": 36425, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OMEX", - "center": "POINT (401713.2040884804446250 1789412.0562411553692073)", - "surface": 5640000, - "canton": null, - "numero_insee": "65334" - } - }, - { - "pk": 10152, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ORDIZAN", - "center": "POINT (420915.2059310933691449 1791873.3113744803704321)", - "surface": 5950000, - "canton": null, - "numero_insee": "65335" - } - }, - { - "pk": 10928, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ORGAN", - "center": "POINT (448998.3880197466933168 1809926.2713174605742097)", - "surface": 2720000, - "canton": null, - "numero_insee": "65336" - } - }, - { - "pk": 24480, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ORIEUX", - "center": "POINT (433815.9335543394554406 1805695.8477159044705331)", - "surface": 8150000, - "canton": null, - "numero_insee": "65337" - } - }, - { - "pk": 24166, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ORINCLES", - "center": "POINT (412788.9835230748867616 1793908.6073939560446888)", - "surface": 5810000, - "canton": null, - "numero_insee": "65339" - } - }, - { - "pk": 22992, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "ORLEIX", - "center": "POINT (419558.3564355748239905 1810683.8141669982578605)", - "surface": 8420000, - "canton": null, - "numero_insee": "65340" - } - }, - { - "pk": 7877, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OROIX", - "center": "POINT (408125.3807346657267772 1813092.2482451593969017)", - "surface": 8970000, - "canton": null, - "numero_insee": "65341" - } - }, - { - "pk": 3765, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OSMETS", - "center": "POINT (431545.6410119474167004 1813886.4848062135279179)", - "surface": 4970000, - "canton": null, - "numero_insee": "65342" - } - }, - { - "pk": 30522, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OSSEN", - "center": "POINT (403030.3257892849505879 1787520.7124661742709577)", - "surface": 6900000, - "canton": null, - "numero_insee": "65343" - } - }, - { - "pk": 9988, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OSSUN-EZ-ANGLES", - "center": "POINT (413931.5320583572029136 1788912.2330033981706947)", - "surface": 2190000, - "canton": null, - "numero_insee": "65345" - } - }, - { - "pk": 8710, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OUEILLOUX", - "center": "POINT (424457.8931725721340626 1799311.1754688527435064)", - "surface": 4450000, - "canton": null, - "numero_insee": "65346" - } - }, - { - "pk": 32146, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OURDE", - "center": "POINT (453490.0248452801024541 1775323.3256367638241500)", - "surface": 5650000, - "canton": null, - "numero_insee": "65347" - } - }, - { - "pk": 7273, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OURDIS-COTDOUSSAN", - "center": "POINT (411463.5170611907960847 1784686.9522534525021911)", - "surface": 4850000, - "canton": null, - "numero_insee": "65348" - } - }, - { - "pk": 24972, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OURDON", - "center": "POINT (408066.3928572877775878 1783857.9662410723976791)", - "surface": 2840000, - "canton": null, - "numero_insee": "65349" - } - }, - { - "pk": 33573, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OURSBELILLE", - "center": "POINT (412939.6523918408202007 1812030.7400727400090545)", - "surface": 11460000, - "canton": null, - "numero_insee": "65350" - } - }, - { - "pk": 6350, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OUSTE", - "center": "POINT (407953.0583666440797970 1785458.8982132165692747)", - "surface": 2420000, - "canton": null, - "numero_insee": "65351" - } - }, - { - "pk": 13411, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OUZOUS", - "center": "POINT (400751.7565951569704339 1784598.5274256789125502)", - "surface": 4750000, - "canton": null, - "numero_insee": "65352" - } - }, - { - "pk": 14803, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "OZON", - "center": "POINT (430270.8280610102228820 1798558.3224215316586196)", - "surface": 9140000, - "canton": null, - "numero_insee": "65353" - } - }, - { - "pk": 10028, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PAILHAC", - "center": "POINT (438820.1963406860013492 1769595.2193479263223708)", - "surface": 970000, - "canton": null, - "numero_insee": "65354" - } - }, - { - "pk": 7274, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PAREAC", - "center": "POINT (410994.4579374114982784 1792992.7417884152382612)", - "surface": 2410000, - "canton": null, - "numero_insee": "65355" - } - }, - { - "pk": 5184, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PERE", - "center": "POINT (433697.7223014815826900 1795783.4317657575011253)", - "surface": 4820000, - "canton": null, - "numero_insee": "65356" - } - }, - { - "pk": 31469, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PEYRAUBE", - "center": "POINT (430540.5143427466973662 1802264.8290729238651693)", - "surface": 3480000, - "canton": null, - "numero_insee": "65357" - } - }, - { - "pk": 29586, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PEYRET-SAINT-ANDRE", - "center": "POINT (451760.7601123665226623 1814854.7797856510151178)", - "surface": 6270000, - "canton": null, - "numero_insee": "65358" - } - }, - { - "pk": 14479, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PEYRIGUERE", - "center": "POINT (431195.7260945421876386 1807776.5867702311370522)", - "surface": 4230000, - "canton": null, - "numero_insee": "65359" - } - }, - { - "pk": 33127, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PEYROUSE", - "center": "POINT (399984.0850676128175110 1792701.6266241476405412)", - "surface": 4800000, - "canton": null, - "numero_insee": "65360" - } - }, - { - "pk": 5861, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PIERREFITTE-NESTALAS", - "center": "POINT (402823.3537455765763298 1776205.7901098644360900)", - "surface": 1750000, - "canton": null, - "numero_insee": "65362" - } - }, - { - "pk": 9134, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PINAS", - "center": "POINT (445340.2190986190689728 1792275.6405369117856026)", - "surface": 5830000, - "canton": null, - "numero_insee": "65363" - } - }, - { - "pk": 28425, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PINTAC", - "center": "POINT (409636.0908524076221511 1812003.4591662655584514)", - "surface": 1550000, - "canton": null, - "numero_insee": "65364" - } - }, - { - "pk": 34957, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "POUMAROUS", - "center": "POINT (427179.8719416258973069 1797031.0211582134943455)", - "surface": 5580000, - "canton": null, - "numero_insee": "65367" - } - }, - { - "pk": 11688, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "POUY", - "center": "POINT (455319.2978380530839786 1808276.7027516448870301)", - "surface": 1950000, - "canton": null, - "numero_insee": "65368" - } - }, - { - "pk": 37833, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "POUYASTRUC", - "center": "POINT (423871.2761153661413118 1809718.3142772545106709)", - "surface": 11810000, - "canton": null, - "numero_insee": "65369" - } - }, - { - "pk": 13762, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "POUZAC", - "center": "POINT (419938.1063480497687124 1788961.8629640813451260)", - "surface": 7550000, - "canton": null, - "numero_insee": "65370" - } - }, - { - "pk": 12184, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PRECHAC", - "center": "POINT (403196.5308553738286719 1779512.7384124724194407)", - "surface": 1630000, - "canton": null, - "numero_insee": "65371" - } - }, - { - "pk": 8678, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PUJO", - "center": "POINT (415391.9043065672740340 1818157.9819603527430445)", - "surface": 5340000, - "canton": null, - "numero_insee": "65372" - } - }, - { - "pk": 15504, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PUNTOUS", - "center": "POINT (447471.8891298442613333 1812917.0670791859738529)", - "surface": 8920000, - "canton": null, - "numero_insee": "65373" - } - }, - { - "pk": 3527, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "PUYDARRIEUX", - "center": "POINT (442577.3846747880452313 1811575.0381472166627645)", - "surface": 14200000, - "canton": null, - "numero_insee": "65374" - } - }, - { - "pk": 32745, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "RABASTENS-DE-BIGORRE", - "center": "POINT (422962.0054309049155563 1822825.7877000202424824)", - "surface": 9300000, - "canton": null, - "numero_insee": "65375" - } - }, - { - "pk": 21150, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "RECURT", - "center": "POINT (445162.9962631645612419 1801584.9413365265354514)", - "surface": 13600000, - "canton": null, - "numero_insee": "65376" - } - }, - { - "pk": 9237, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "REJAUMONT", - "center": "POINT (446497.5784211484715343 1797591.3718889991287142)", - "surface": 6830000, - "canton": null, - "numero_insee": "65377" - } - }, - { - "pk": 26306, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "RICAUD", - "center": "POINT (431793.9941680614138022 1795967.9124246137216687)", - "surface": 3330000, - "canton": null, - "numero_insee": "65378" - } - }, - { - "pk": 13302, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "RIS", - "center": "POINT (441648.1712793668266386 1766615.0981369479559362)", - "surface": 1860000, - "canton": null, - "numero_insee": "65379" - } - }, - { - "pk": 35433, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SABALOS", - "center": "POINT (421753.2852520285523497 1811602.9880410840269178)", - "surface": 2160000, - "canton": null, - "numero_insee": "65380" - } - }, - { - "pk": 18022, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SABARROS", - "center": "POINT (445528.6047819761442952 1805792.8123999098315835)", - "surface": 3680000, - "canton": null, - "numero_insee": "65381" - } - }, - { - "pk": 20523, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SACOUE", - "center": "POINT (452270.4451529906364158 1777515.7966448599472642)", - "surface": 13290000, - "canton": null, - "numero_insee": "65382" - } - }, - { - "pk": 5296, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SADOURNIN", - "center": "POINT (443452.6561240821611136 1814685.8396046631969512)", - "surface": 12560000, - "canton": null, - "numero_insee": "65383" - } - }, - { - "pk": 24120, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAILHAN", - "center": "POINT (435508.3958624900551513 1758454.6889524674043059)", - "surface": 2730000, - "canton": null, - "numero_insee": "65384" - } - }, - { - "pk": 22939, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-ARROMAN", - "center": "POINT (442102.1024366998462938 1784339.6261108205653727)", - "surface": 4350000, - "canton": null, - "numero_insee": "65385" - } - }, - { - "pk": 5406, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-CREAC", - "center": "POINT (407339.1755295444163494 1787055.6958646816201508)", - "surface": 2130000, - "canton": null, - "numero_insee": "65386" - } - }, - { - "pk": 14830, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-LANNE", - "center": "POINT (405354.1611912079388276 1845606.2641940803732723)", - "surface": 13020000, - "canton": null, - "numero_insee": "65387" - } - }, - { - "pk": 22141, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-LARY-SOULAN", - "center": "POINT (433373.0414156054612249 1750327.3893276369199157)", - "surface": 91560000, - "canton": null, - "numero_insee": "65388" - } - }, - { - "pk": 29270, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-LAURENT-DE-NESTE", - "center": "POINT (448567.7687604010570794 1789399.0073549849912524)", - "surface": 10600000, - "canton": null, - "numero_insee": "65389" - } - }, - { - "pk": 11266, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-LEZER", - "center": "POINT (412772.5743296224391088 1820138.6313041339162737)", - "surface": 11420000, - "canton": null, - "numero_insee": "65390" - } - }, - { - "pk": 9862, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINTE-MARIE", - "center": "POINT (460396.8152221377240494 1775480.7111899578012526)", - "surface": 240000, - "canton": null, - "numero_insee": "65391" - } - }, - { - "pk": 5983, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-MARTIN", - "center": "POINT (414854.0623097285861149 1798430.8805689504370093)", - "surface": 8340000, - "canton": null, - "numero_insee": "65392" - } - }, - { - "pk": 7149, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-PASTOUS", - "center": "POINT (405578.5183067886391655 1782035.3242309885099530)", - "surface": 7820000, - "canton": null, - "numero_insee": "65393" - } - }, - { - "pk": 6909, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-PAUL", - "center": "POINT (450976.2029006517259404 1788718.1496317067649215)", - "surface": 6910000, - "canton": null, - "numero_insee": "65394" - } - }, - { - "pk": 20392, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-PE-DE-BIGORRE", - "center": "POINT (396502.5512199071235955 1789969.7677821388933808)", - "surface": 42740000, - "canton": null, - "numero_insee": "65395" - } - }, - { - "pk": 25324, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-SAVIN", - "center": "POINT (401509.5254826743621379 1777696.7074481754098088)", - "surface": 3900000, - "canton": null, - "numero_insee": "65396" - } - }, - { - "pk": 31030, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAINT-SEVER-DE-RUSTAN", - "center": "POINT (428601.1199220920680091 1818867.8497811509296298)", - "surface": 9930000, - "canton": null, - "numero_insee": "65397" - } - }, - { - "pk": 14003, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SALECHAN", - "center": "POINT (460409.2700777643476613 1773979.0539282399695367)", - "surface": 4150000, - "canton": null, - "numero_insee": "65398" - } - }, - { - "pk": 30486, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SALIGOS", - "center": "POINT (407585.5792268411023542 1769336.9865064867772162)", - "surface": 4600000, - "canton": null, - "numero_insee": "65399" - } - }, - { - "pk": 20894, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SALLES", - "center": "POINT (395249.8380239866091870 1784052.5575822524260730)", - "surface": 27480000, - "canton": null, - "numero_insee": "65400" - } - }, - { - "pk": 5658, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SALLES-ADOUR", - "center": "POINT (417938.4120641665067524 1800759.0231941249221563)", - "surface": 2500000, - "canton": null, - "numero_insee": "65401" - } - }, - { - "pk": 8963, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAMURAN", - "center": "POINT (458078.5023909107549116 1777363.7126961303874850)", - "surface": 2540000, - "canton": null, - "numero_insee": "65402" - } - }, - { - "pk": 11501, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SANOUS", - "center": "POINT (410552.0273465579375625 1822322.8037795308046043)", - "surface": 1740000, - "canton": null, - "numero_insee": "65403" - } - }, - { - "pk": 35149, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SARIAC-MAGNOAC", - "center": "POINT (455075.9290759976720437 1813480.6535688196308911)", - "surface": 10920000, - "canton": null, - "numero_insee": "65404" - } - }, - { - "pk": 36504, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SARNIGUET", - "center": "POINT (417315.4511599280522205 1815570.8991747077088803)", - "surface": 2110000, - "canton": null, - "numero_insee": "65406" - } - }, - { - "pk": 14624, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SARP", - "center": "POINT (456446.8564863885403611 1780954.3975288004148751)", - "surface": 1840000, - "canton": null, - "numero_insee": "65407" - } - }, - { - "pk": 17537, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SARRANCOLIN", - "center": "POINT (444795.3397991576348431 1773449.1680422220379114)", - "surface": 32430000, - "canton": null, - "numero_insee": "65408" - } - }, - { - "pk": 13287, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SARRIAC-BIGORRE", - "center": "POINT (419855.3756630410207435 1823200.5669098747894168)", - "surface": 10850000, - "canton": null, - "numero_insee": "65409" - } - }, - { - "pk": 9003, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SARROUILLES", - "center": "POINT (420400.5884340128395706 1805685.0238245388027281)", - "surface": 4350000, - "canton": null, - "numero_insee": "65410" - } - }, - { - "pk": 6190, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SASSIS", - "center": "POINT (407307.5626162706175819 1766631.5070501198060811)", - "surface": 590000, - "canton": null, - "numero_insee": "65411" - } - }, - { - "pk": 9702, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAUVETERRE", - "center": "POINT (419173.6654365541180596 1833006.0642415247857571)", - "surface": 10400000, - "canton": null, - "numero_insee": "65412" - } - }, - { - "pk": 19198, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SAZOS", - "center": "POINT (405024.0116206967504695 1764309.9388404153287411)", - "surface": 30090000, - "canton": null, - "numero_insee": "65413" - } - }, - { - "pk": 8413, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SEGALAS", - "center": "POINT (420937.5244699550094083 1825512.1286567857023329)", - "surface": 6070000, - "canton": null, - "numero_insee": "65414" - } - }, - { - "pk": 23387, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SEGUS", - "center": "POINT (400329.8413377561373636 1787198.0792683325707912)", - "surface": 10950000, - "canton": null, - "numero_insee": "65415" - } - }, - { - "pk": 21614, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SEICH", - "center": "POINT (449957.1237973959650844 1778798.1480936314910650)", - "surface": 7370000, - "canton": null, - "numero_insee": "65416" - } - }, - { - "pk": 33326, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SEMEAC", - "center": "POINT (418704.5370589059311897 1804970.2008638556580991)", - "surface": 6230000, - "canton": null, - "numero_insee": "65417" - } - }, - { - "pk": 31867, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SENAC", - "center": "POINT (425491.1692986919661053 1819643.0465178983286023)", - "surface": 9050000, - "canton": null, - "numero_insee": "65418" - } - }, - { - "pk": 10359, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SENTOUS", - "center": "POINT (440596.7762680372688919 1808955.6531645304057747)", - "surface": 7350000, - "canton": null, - "numero_insee": "65419" - } - }, - { - "pk": 12756, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SERE-EN-LAVEDAN", - "center": "POINT (398664.3136127599864267 1782779.2025993121787906)", - "surface": 1840000, - "canton": null, - "numero_insee": "65420" - } - }, - { - "pk": 23987, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SERE-LANSO", - "center": "POINT (410537.7265733899548650 1787682.8051849917974323)", - "surface": 4240000, - "canton": null, - "numero_insee": "65421" - } - }, - { - "pk": 7197, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SERON", - "center": "POINT (402692.2957341338042170 1816351.1858398318290710)", - "surface": 9330000, - "canton": null, - "numero_insee": "65422" - } - }, - { - "pk": 12584, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SERE-RUSTAING", - "center": "POINT (433293.0279769822955132 1808394.6282383669167757)", - "surface": 5390000, - "canton": null, - "numero_insee": "65423" - } - }, - { - "pk": 31290, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SERS", - "center": "POINT (415085.6327404360054061 1770400.1074212016537786)", - "surface": 30650000, - "canton": null, - "numero_insee": "65424" - } - }, - { - "pk": 24641, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SIARROUY", - "center": "POINT (413006.6877752746222541 1816035.8779911533929408)", - "surface": 6360000, - "canton": null, - "numero_insee": "65425" - } - }, - { - "pk": 4163, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SINZOS", - "center": "POINT (427020.1569398979772814 1804238.0200232912320644)", - "surface": 4180000, - "canton": null, - "numero_insee": "65426" - } - }, - { - "pk": 9462, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SIRADAN", - "center": "POINT (459194.6598340243799612 1775570.8582770854700357)", - "surface": 2790000, - "canton": null, - "numero_insee": "65427" - } - }, - { - "pk": 35965, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SIREIX", - "center": "POINT (396310.3887559798313305 1776852.8766657477244735)", - "surface": 1730000, - "canton": null, - "numero_insee": "65428" - } - }, - { - "pk": 8281, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SOMBRUN", - "center": "POINT (410658.0086523024365306 1833736.6291363304480910)", - "surface": 9770000, - "canton": null, - "numero_insee": "65429" - } - }, - { - "pk": 11925, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SOREAC", - "center": "POINT (423029.8620921499677934 1814616.9799796626903117)", - "surface": 2390000, - "canton": null, - "numero_insee": "65430" - } - }, - { - "pk": 14564, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SOST", - "center": "POINT (454154.5883887738455087 1767619.7783425895031542)", - "surface": 32490000, - "canton": null, - "numero_insee": "65431" - } - }, - { - "pk": 34398, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SOUBLECAUSE", - "center": "POINT (408807.3338919793022797 1839628.0147803057916462)", - "surface": 6270000, - "canton": null, - "numero_insee": "65432" - } - }, - { - "pk": 13209, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SOUES", - "center": "POINT (417820.9322642433689907 1802860.4775444203987718)", - "surface": 3940000, - "canton": null, - "numero_insee": "65433" - } - }, - { - "pk": 7456, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SOULOM", - "center": "POINT (402935.0310520327184349 1774805.0682033840566874)", - "surface": 2980000, - "canton": null, - "numero_insee": "65435" - } - }, - { - "pk": 29040, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "SOUYEAUX", - "center": "POINT (423395.5631388869369403 1806710.9312697420828044)", - "surface": 6200000, - "canton": null, - "numero_insee": "65436" - } - }, - { - "pk": 8300, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TAJAN", - "center": "POINT (446481.8223474347032607 1799493.4391923933289945)", - "surface": 4920000, - "canton": null, - "numero_insee": "65437" - } - }, - { - "pk": 23151, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TALAZAC", - "center": "POINT (413196.1543923933058977 1817338.9302296633832157)", - "surface": 1570000, - "canton": null, - "numero_insee": "65438" - } - }, - { - "pk": 10851, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TARASTEIX", - "center": "POINT (409507.0532677783630788 1815506.4058655644766986)", - "surface": 9820000, - "canton": null, - "numero_insee": "65439" - } - }, - { - "pk": 24146, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TARBES", - "center": "POINT (415189.9914889234350994 1806242.6605163384228945)", - "surface": 15330000, - "canton": null, - "numero_insee": "65440" - } - }, - { - "pk": 32380, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "THEBE", - "center": "POINT (458205.1778938374482095 1774161.0095680523663759)", - "surface": 7590000, - "canton": null, - "numero_insee": "65441" - } - }, - { - "pk": 26633, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "THERMES-MAGNOAC", - "center": "POINT (459091.8590175468707457 1812112.3449035962112248)", - "surface": 11020000, - "canton": null, - "numero_insee": "65442" - } - }, - { - "pk": 13881, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "THUY", - "center": "POINT (429488.9189410943072289 1808363.1583833906333894)", - "surface": 540000, - "canton": null, - "numero_insee": "65443" - } - }, - { - "pk": 9597, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TIBIRAN-JAUNAC", - "center": "POINT (454011.0214743996039033 1784938.8753769886679947)", - "surface": 6360000, - "canton": null, - "numero_insee": "65444" - } - }, - { - "pk": 15852, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TILHOUSE", - "center": "POINT (434655.0367501946166158 1788983.4563060684595257)", - "surface": 6570000, - "canton": null, - "numero_insee": "65445" - } - }, - { - "pk": 9826, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TOSTAT", - "center": "POINT (419208.3966882248641923 1816687.7994310669600964)", - "surface": 6340000, - "canton": null, - "numero_insee": "65446" - } - }, - { - "pk": 17113, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TOURNAY", - "center": "POINT (429855.4874729258008301 1800356.9681602609343827)", - "surface": 14430000, - "canton": null, - "numero_insee": "65447" - } - }, - { - "pk": 13015, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TOURNOUS-DARRE", - "center": "POINT (439076.9237246644916013 1811145.5976190306246281)", - "surface": 5670000, - "canton": null, - "numero_insee": "65448" - } - }, - { - "pk": 8986, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TOURNOUS-DEVANT", - "center": "POINT (444115.4817179797682911 1807182.7199354174081236)", - "surface": 4730000, - "canton": null, - "numero_insee": "65449" - } - }, - { - "pk": 17050, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TRAMEZAIGUES", - "center": "POINT (428851.4253829901572317 1752292.3612279207445681)", - "surface": 35070000, - "canton": null, - "numero_insee": "65450" - } - }, - { - "pk": 33353, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TREBONS", - "center": "POINT (418122.8981973294285126 1790548.7234559715725482)", - "surface": 10350000, - "canton": null, - "numero_insee": "65451" - } - }, - { - "pk": 16454, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TRIE-SUR-BAISE", - "center": "POINT (439847.9519021573942155 1814756.1076504262164235)", - "surface": 11210000, - "canton": null, - "numero_insee": "65452" - } - }, - { - "pk": 25091, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TROUBAT", - "center": "POINT (456585.9783814089605585 1776250.0474522802978754)", - "surface": 2820000, - "canton": null, - "numero_insee": "65453" - } - }, - { - "pk": 5108, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TROULEY-LABARTHE", - "center": "POINT (430232.6476713311858475 1815277.2271313203964382)", - "surface": 4490000, - "canton": null, - "numero_insee": "65454" - } - }, - { - "pk": 34658, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "TUZAGUET", - "center": "POINT (445370.8996993409236893 1788571.5930140186101198)", - "surface": 7890000, - "canton": null, - "numero_insee": "65455" - } - }, - { - "pk": 9258, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "UGLAS", - "center": "POINT (445218.5509391800151207 1794877.6496574776247144)", - "surface": 8620000, - "canton": null, - "numero_insee": "65456" - } - }, - { - "pk": 3841, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "UGNOUAS", - "center": "POINT (418596.1703930397634394 1818084.3413259969092906)", - "surface": 1570000, - "canton": null, - "numero_insee": "65457" - } - }, - { - "pk": 8117, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "UZ", - "center": "POINT (401526.0473601898993365 1775694.4975016615353525)", - "surface": 2460000, - "canton": null, - "numero_insee": "65458" - } - }, - { - "pk": 6699, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "UZER", - "center": "POINT (425048.6600425686920062 1788403.4113816709723324)", - "surface": 3590000, - "canton": null, - "numero_insee": "65459" - } - }, - { - "pk": 24669, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIC-EN-BIGORRE", - "center": "POINT (414845.8859583293087780 1823659.7473681541159749)", - "surface": 31900000, - "canton": null, - "numero_insee": "65460" - } - }, - { - "pk": 8550, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIDOU", - "center": "POINT (437061.5085343256359920 1812730.7508635874837637)", - "surface": 5030000, - "canton": null, - "numero_insee": "65461" - } - }, - { - "pk": 3631, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIDOUZE", - "center": "POINT (406790.2181248529232107 1829299.7103203251026571)", - "surface": 16340000, - "canton": null, - "numero_insee": "65462" - } - }, - { - "pk": 13862, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIELLA", - "center": "POINT (410717.9574572501005605 1765858.7237479116301984)", - "surface": 3250000, - "canton": null, - "numero_insee": "65463" - } - }, - { - "pk": 9645, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIELLE-ADOUR", - "center": "POINT (419981.1268760694656521 1795870.2331082310993224)", - "surface": 5820000, - "canton": null, - "numero_insee": "65464" - } - }, - { - "pk": 19364, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIELLE-AURE", - "center": "POINT (425659.3649209117866121 1762978.6551068751141429)", - "surface": 35430000, - "canton": null, - "numero_insee": "65465" - } - }, - { - "pk": 36355, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIELLE-LOURON", - "center": "POINT (440994.6440625140676275 1760902.9502368951216340)", - "surface": 2840000, - "canton": null, - "numero_insee": "65466" - } - }, - { - "pk": 31066, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIER-BORDES", - "center": "POINT (406499.3437136098509654 1779640.1174035836011171)", - "surface": 9330000, - "canton": null, - "numero_insee": "65467" - } - }, - { - "pk": 33988, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIEUZOS", - "center": "POINT (446314.5448075255844742 1807601.3939951322972775)", - "surface": 4970000, - "canton": null, - "numero_insee": "65468" - } - }, - { - "pk": 14716, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIEY", - "center": "POINT (410097.4482810107874684 1768256.4310920061543584)", - "surface": 6050000, - "canton": null, - "numero_insee": "65469" - } - }, - { - "pk": 20786, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIGER", - "center": "POINT (404637.0388735518790781 1786933.2737292952369899)", - "surface": 3160000, - "canton": null, - "numero_insee": "65470" - } - }, - { - "pk": 29226, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIGNEC", - "center": "POINT (430199.1620943109155633 1758811.2311498678755015)", - "surface": 6690000, - "canton": null, - "numero_insee": "65471" - } - }, - { - "pk": 5074, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VILLEFRANQUE", - "center": "POINT (410337.8521379643352702 1836136.6999972390476614)", - "surface": 3200000, - "canton": null, - "numero_insee": "65472" - } - }, - { - "pk": 23386, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VILLELONGUE", - "center": "POINT (407448.2741312476573512 1773841.1480382471345365)", - "surface": 20160000, - "canton": null, - "numero_insee": "65473" - } - }, - { - "pk": 26196, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VILLEMBITS", - "center": "POINT (435976.8921810400206596 1810719.4795892615802586)", - "surface": 5340000, - "canton": null, - "numero_insee": "65474" - } - }, - { - "pk": 34915, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VILLEMUR", - "center": "POINT (455028.1020551372785121 1807173.0237892055884004)", - "surface": 3630000, - "canton": null, - "numero_insee": "65475" - } - }, - { - "pk": 27053, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VILLENAVE-PRES-BEARN", - "center": "POINT (402652.6452142540365458 1821156.3442526338621974)", - "surface": 3160000, - "canton": null, - "numero_insee": "65476" - } - }, - { - "pk": 5278, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VILLENAVE-PRES-MARSAC", - "center": "POINT (417297.2546277365181595 1817773.2658247682265937)", - "surface": 1120000, - "canton": null, - "numero_insee": "65477" - } - }, - { - "pk": 12528, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VISCOS", - "center": "POINT (404467.2640682586934417 1771113.3640492849517614)", - "surface": 6640000, - "canton": null, - "numero_insee": "65478" - } - }, - { - "pk": 24383, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VISKER", - "center": "POINT (415078.2633564686402678 1795529.3735421241726726)", - "surface": 4220000, - "canton": null, - "numero_insee": "65479" - } - }, - { - "pk": 26668, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "VIZOS", - "center": "POINT (408394.7333471498568542 1768342.4887369058560580)", - "surface": 2600000, - "canton": null, - "numero_insee": "65480" - } - }, - { - "pk": 17626, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "BAREGES", - "center": "POINT (417922.6570036078337580 1766318.7156706228852272)", - "surface": 44600000, - "canton": null, - "numero_insee": "65481" - } - }, - { - "pk": 6000, - "model": "ishtar_common.town", - "fields": { - "departement": 66, - "name": "CANTAOUS", - "center": "POINT (445754.7530528294155374 1790577.0989659004844725)", - "surface": 5770000, - "canton": null, - "numero_insee": "65482" - } - }, - { - "pk": 28594, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "L'ALBERE", - "center": "POINT (646087.5114119569770992 1719264.3895157417282462)", - "surface": 16290000, - "canton": null, - "numero_insee": "66001" - } - }, - { - "pk": 9704, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ALENYA", - "center": "POINT (652941.0254475757246837 1737644.2449309441726655)", - "surface": 5710000, - "canton": null, - "numero_insee": "66002" - } - }, - { - "pk": 19845, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "AMELIE-LES-BAINS-PALALDA", - "center": "POINT (628597.8495558551512659 1715512.7401774276513606)", - "surface": 29390000, - "canton": null, - "numero_insee": "66003" - } - }, - { - "pk": 14928, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LES ANGLES", - "center": "POINT (576607.6886524064466357 1730695.1052853327710181)", - "surface": 43460000, - "canton": null, - "numero_insee": "66004" - } - }, - { - "pk": 15580, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ANGOUSTRINE-VILLENEUVE-DES-ESCALDES", - "center": "POINT (568211.5687182663241401 1729022.8627328949514776)", - "surface": 87180000, - "canton": null, - "numero_insee": "66005" - } - }, - { - "pk": 11296, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ANSIGNAN", - "center": "POINT (615083.1761094456305727 1751041.9138865340501070)", - "surface": 7960000, - "canton": null, - "numero_insee": "66006" - } - }, - { - "pk": 26667, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ARBOUSSOLS", - "center": "POINT (612871.4595071461517364 1740210.4287488739937544)", - "surface": 14070000, - "canton": null, - "numero_insee": "66007" - } - }, - { - "pk": 23841, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ARGELES-SUR-MER", - "center": "POINT (656644.7305674011586234 1725861.2666456259321421)", - "surface": 59300000, - "canton": null, - "numero_insee": "66008" - } - }, - { - "pk": 18199, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ARLES-SUR-TECH", - "center": "POINT (623886.5739262021379545 1716173.9555060619022697)", - "surface": 28910000, - "canton": null, - "numero_insee": "66009" - } - }, - { - "pk": 14927, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "AYGUATEBIA-TALAU", - "center": "POINT (587345.8497636041138321 1727681.3682222820352763)", - "surface": 29920000, - "canton": null, - "numero_insee": "66010" - } - }, - { - "pk": 35652, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BAGES", - "center": "POINT (645363.6580907568568364 1733875.9274773120414466)", - "surface": 12050000, - "canton": null, - "numero_insee": "66011" - } - }, - { - "pk": 5562, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BAHO", - "center": "POINT (639665.4107852618908510 1744740.9907740254420787)", - "surface": 7720000, - "canton": null, - "numero_insee": "66012" - } - }, - { - "pk": 34002, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BAILLESTAVY", - "center": "POINT (615269.1373141729272902 1728916.9956619024742395)", - "surface": 17790000, - "canton": null, - "numero_insee": "66013" - } - }, - { - "pk": 32846, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BAIXAS", - "center": "POINT (638426.9650055344682187 1749135.8116828179918230)", - "surface": 19010000, - "canton": null, - "numero_insee": "66014" - } - }, - { - "pk": 14254, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BANYULS-DELS-ASPRES", - "center": "POINT (643601.2646980524295941 1729155.4163945720065385)", - "surface": 10680000, - "canton": null, - "numero_insee": "66015" - } - }, - { - "pk": 14751, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BANYULS-SUR-MER", - "center": "POINT (662921.0611572968773544 1717704.2833471940830350)", - "surface": 43190000, - "canton": null, - "numero_insee": "66016" - } - }, - { - "pk": 6288, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LE BARCARES", - "center": "POINT (656684.1438664512243122 1756798.6062842085957527)", - "surface": 15390000, - "canton": null, - "numero_insee": "66017" - } - }, - { - "pk": 34719, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LA BASTIDE", - "center": "POINT (619298.9313889802433550 1725947.2506923766341060)", - "surface": 15460000, - "canton": null, - "numero_insee": "66018" - } - }, - { - "pk": 21160, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BELESTA", - "center": "POINT (623532.1563844855409116 1746407.3504971880465746)", - "surface": 20480000, - "canton": null, - "numero_insee": "66019" - } - }, - { - "pk": 19187, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BOLQUERE", - "center": "POINT (577563.2301627610577270 1724195.2650721084792167)", - "surface": 17950000, - "canton": null, - "numero_insee": "66020" - } - }, - { - "pk": 26052, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BOMPAS", - "center": "POINT (649654.7085028532892466 1747428.2664647051133215)", - "surface": 5730000, - "canton": null, - "numero_insee": "66021" - } - }, - { - "pk": 12371, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BOULETERNERE", - "center": "POINT (620600.3439066688297316 1737872.5216326515655965)", - "surface": 10780000, - "canton": null, - "numero_insee": "66023" - } - }, - { - "pk": 29194, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LE BOULOU", - "center": "POINT (640734.2339237965643406 1724826.0705173518508673)", - "surface": 14620000, - "canton": null, - "numero_insee": "66024" - } - }, - { - "pk": 6421, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BOURG-MADAME", - "center": "POINT (568930.4315123540582135 1714911.8070813419762999)", - "surface": 7710000, - "canton": null, - "numero_insee": "66025" - } - }, - { - "pk": 33299, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "BROUILLA", - "center": "POINT (645995.5523679786128923 1730176.7968727140687406)", - "surface": 7970000, - "canton": null, - "numero_insee": "66026" - } - }, - { - "pk": 36495, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LA CABANASSE", - "center": "POINT (580985.5614077885402367 1722021.2802434924524277)", - "surface": 3270000, - "canton": null, - "numero_insee": "66027" - } - }, - { - "pk": 25095, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CABESTANY", - "center": "POINT (650002.3056522822007537 1741824.5034078657627106)", - "surface": 10580000, - "canton": null, - "numero_insee": "66028" - } - }, - { - "pk": 18839, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CAIXAS", - "center": "POINT (626749.3444705286528915 1732918.2336748610250652)", - "surface": 27950000, - "canton": null, - "numero_insee": "66029" - } - }, - { - "pk": 21626, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CALCE", - "center": "POINT (634419.9530345583334565 1749402.4292057265993208)", - "surface": 23880000, - "canton": null, - "numero_insee": "66030" - } - }, - { - "pk": 10626, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CALMEILLES", - "center": "POINT (627494.7809938784921542 1727618.1175521349068731)", - "surface": 13410000, - "canton": null, - "numero_insee": "66032" - } - }, - { - "pk": 37492, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CAMELAS", - "center": "POINT (628914.7686408500885591 1737341.7416468681767583)", - "surface": 12990000, - "canton": null, - "numero_insee": "66033" - } - }, - { - "pk": 14542, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CAMPOME", - "center": "POINT (603882.3290679774945602 1737631.9207795825786889)", - "surface": 5350000, - "canton": null, - "numero_insee": "66034" - } - }, - { - "pk": 8469, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CAMPOUSSY", - "center": "POINT (609439.8720209781313315 1743485.5456334371119738)", - "surface": 17360000, - "canton": null, - "numero_insee": "66035" - } - }, - { - "pk": 31084, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CANAVEILLES", - "center": "POINT (590667.2340169879607856 1725606.6867204871959984)", - "surface": 11240000, - "canton": null, - "numero_insee": "66036" - } - }, - { - "pk": 20929, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CANET-EN-ROUSSILLON", - "center": "POINT (655403.3202832150273025 1742470.7621040951926261)", - "surface": 30250000, - "canton": null, - "numero_insee": "66037" - } - }, - { - "pk": 31532, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CANOHES", - "center": "POINT (640917.3569414872908965 1738744.3527724158484489)", - "surface": 8700000, - "canton": null, - "numero_insee": "66038" - } - }, - { - "pk": 28618, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CARAMANY", - "center": "POINT (618311.1672160988673568 1748165.5938593957107514)", - "surface": 14240000, - "canton": null, - "numero_insee": "66039" - } - }, - { - "pk": 33562, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CASEFABRE", - "center": "POINT (622827.2456424012780190 1734987.7668474442325532)", - "surface": 7050000, - "canton": null, - "numero_insee": "66040" - } - }, - { - "pk": 28823, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CASES-DE-PENE", - "center": "POINT (636185.7233282822417095 1753722.4135375972837210)", - "surface": 13480000, - "canton": null, - "numero_insee": "66041" - } - }, - { - "pk": 3007, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CASSAGNES", - "center": "POINT (623611.2173447835957631 1748910.9975296976044774)", - "surface": 15270000, - "canton": null, - "numero_insee": "66042" - } - }, - { - "pk": 18686, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CASTEIL", - "center": "POINT (606814.1421912524383515 1722338.1008738910313696)", - "surface": 29730000, - "canton": null, - "numero_insee": "66043" - } - }, - { - "pk": 12886, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CASTELNOU", - "center": "POINT (630535.9542099296813831 1735052.6221929029561579)", - "surface": 19340000, - "canton": null, - "numero_insee": "66044" - } - }, - { - "pk": 25117, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CATLLAR", - "center": "POINT (606988.3522747206734493 1737357.6455148179084063)", - "surface": 8030000, - "canton": null, - "numero_insee": "66045" - } - }, - { - "pk": 20921, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CAUDIES-DE-FENOUILLEDES", - "center": "POINT (603316.2777503824327141 1757350.6661397293210030)", - "surface": 37650000, - "canton": null, - "numero_insee": "66046" - } - }, - { - "pk": 13592, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CAUDIES-DE-CONFLENT", - "center": "POINT (584032.0284522054716945 1728855.0327201248146594)", - "surface": 6560000, - "canton": null, - "numero_insee": "66047" - } - }, - { - "pk": 4233, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CERBERE", - "center": "POINT (666941.6919093537144363 1715835.9101505295839161)", - "surface": 8300000, - "canton": null, - "numero_insee": "66048" - } - }, - { - "pk": 3431, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CERET", - "center": "POINT (634275.7190881607821211 1718964.6581467136275023)", - "surface": 37990000, - "canton": null, - "numero_insee": "66049" - } - }, - { - "pk": 26644, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CLAIRA", - "center": "POINT (649822.0197484391974285 1751334.3249534026253968)", - "surface": 19430000, - "canton": null, - "numero_insee": "66050" - } - }, - { - "pk": 33822, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CLARA", - "center": "POINT (609343.0942946500144899 1731169.9713107692077756)", - "surface": 8580000, - "canton": null, - "numero_insee": "66051" - } - }, - { - "pk": 32455, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CODALET", - "center": "POINT (606425.5119846720481291 1732847.5106517397798598)", - "surface": 2840000, - "canton": null, - "numero_insee": "66052" - } - }, - { - "pk": 33253, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "COLLIOURE", - "center": "POINT (660569.4392028849106282 1723491.4724078285507858)", - "surface": 12010000, - "canton": null, - "numero_insee": "66053" - } - }, - { - "pk": 16170, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CONAT", - "center": "POINT (600101.5684513384476304 1734796.8164029812905937)", - "surface": 19230000, - "canton": null, - "numero_insee": "66054" - } - }, - { - "pk": 37550, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CORBERE", - "center": "POINT (626701.3345097455894575 1738624.6773612832184881)", - "surface": 7300000, - "canton": null, - "numero_insee": "66055" - } - }, - { - "pk": 27941, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CORBERE-LES-CABANES", - "center": "POINT (628394.8288101821672171 1739640.1251646082382649)", - "surface": 4170000, - "canton": null, - "numero_insee": "66056" - } - }, - { - "pk": 32413, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CORNEILLA-DE-CONFLENT", - "center": "POINT (603744.3104977093171328 1730221.8633233599830419)", - "surface": 11070000, - "canton": null, - "numero_insee": "66057" - } - }, - { - "pk": 11163, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CORNEILLA-LA-RIVIERE", - "center": "POINT (631852.4301373729249462 1745175.8048164085485041)", - "surface": 12640000, - "canton": null, - "numero_insee": "66058" - } - }, - { - "pk": 23528, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CORNEILLA-DEL-VERCOL", - "center": "POINT (650455.0822915713069960 1735620.8838064863812178)", - "surface": 5370000, - "canton": null, - "numero_insee": "66059" - } - }, - { - "pk": 18091, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "CORSAVY", - "center": "POINT (616747.3098359807627276 1719818.4152021906338632)", - "surface": 47380000, - "canton": null, - "numero_insee": "66060" - } - }, - { - "pk": 17226, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "COUSTOUGES", - "center": "POINT (624875.1881184293888509 1705769.5938922958448529)", - "surface": 16790000, - "canton": null, - "numero_insee": "66061" - } - }, - { - "pk": 19097, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "DORRES", - "center": "POINT (566257.0617706498596817 1723299.6165281431749463)", - "surface": 25160000, - "canton": null, - "numero_insee": "66062" - } - }, - { - "pk": 37057, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LES CLUSES", - "center": "POINT (641774.1665026770206168 1720229.2603487647138536)", - "surface": 8830000, - "canton": null, - "numero_insee": "66063" - } - }, - { - "pk": 17088, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ELNE", - "center": "POINT (652178.1065038497326896 1733132.4039172572083771)", - "surface": 22030000, - "canton": null, - "numero_insee": "66065" - } - }, - { - "pk": 20305, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ENVEITG", - "center": "POINT (563369.6739749304251745 1721373.1511126253753901)", - "surface": 30390000, - "canton": null, - "numero_insee": "66066" - } - }, - { - "pk": 8094, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ERR", - "center": "POINT (577667.2404105301247910 1711781.0858328405302018)", - "surface": 26370000, - "canton": null, - "numero_insee": "66067" - } - }, - { - "pk": 27243, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ESCARO", - "center": "POINT (598476.9496412045555189 1725572.0924006653949618)", - "surface": 15130000, - "canton": null, - "numero_insee": "66068" - } - }, - { - "pk": 12506, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ESPIRA-DE-L'AGLY", - "center": "POINT (639780.4712866755435243 1754853.9932578757870942)", - "surface": 27310000, - "canton": null, - "numero_insee": "66069" - } - }, - { - "pk": 23315, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ESPIRA-DE-CONFLENT", - "center": "POINT (612915.2066788077354431 1735004.5567516675218940)", - "surface": 6150000, - "canton": null, - "numero_insee": "66070" - } - }, - { - "pk": 30519, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ESTAGEL", - "center": "POINT (630396.9344306029379368 1751571.1858511939644814)", - "surface": 20870000, - "canton": null, - "numero_insee": "66071" - } - }, - { - "pk": 34157, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ESTAVAR", - "center": "POINT (573001.5902549653546885 1718950.7554385373368859)", - "surface": 9210000, - "canton": null, - "numero_insee": "66072" - } - }, - { - "pk": 18245, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ESTOHER", - "center": "POINT (611962.0255369246006012 1729289.6852890751324594)", - "surface": 26110000, - "canton": null, - "numero_insee": "66073" - } - }, - { - "pk": 15784, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "EUS", - "center": "POINT (608974.6318584600230679 1739276.6089600191917270)", - "surface": 20220000, - "canton": null, - "numero_insee": "66074" - } - }, - { - "pk": 3958, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "EYNE", - "center": "POINT (581129.3055194469634444 1716816.1786082435864955)", - "surface": 20520000, - "canton": null, - "numero_insee": "66075" - } - }, - { - "pk": 9623, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FELLUNS", - "center": "POINT (612381.8356638315599412 1750818.9736552997492254)", - "surface": 6730000, - "canton": null, - "numero_insee": "66076" - } - }, - { - "pk": 8604, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FENOUILLET", - "center": "POINT (602951.1355691334465519 1753142.6137426311615855)", - "surface": 18880000, - "canton": null, - "numero_insee": "66077" - } - }, - { - "pk": 35670, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FILLOLS", - "center": "POINT (606964.7584018179913983 1728246.4971134196966887)", - "surface": 8920000, - "canton": null, - "numero_insee": "66078" - } - }, - { - "pk": 17089, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FONTPEDROUSE", - "center": "POINT (588231.5525670192437246 1717576.5694066721480340)", - "surface": 64330000, - "canton": null, - "numero_insee": "66080" - } - }, - { - "pk": 18506, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FORMIGUERES", - "center": "POINT (576669.2213564898120239 1735301.1548838396556675)", - "surface": 47180000, - "canton": null, - "numero_insee": "66082" - } - }, - { - "pk": 25867, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FOSSE", - "center": "POINT (607853.2507328891661018 1753584.2575296636205167)", - "surface": 4410000, - "canton": null, - "numero_insee": "66083" - } - }, - { - "pk": 26374, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FUILLA", - "center": "POINT (601552.7408327094744891 1728901.8953253845684230)", - "surface": 9660000, - "canton": null, - "numero_insee": "66085" - } - }, - { - "pk": 5617, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "GLORIANES", - "center": "POINT (617844.3148475915659219 1732242.6190863209776580)", - "surface": 18800000, - "canton": null, - "numero_insee": "66086" - } - }, - { - "pk": 13708, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ILLE-SUR-TET", - "center": "POINT (622972.7410024541895837 1741496.7875688462518156)", - "surface": 31670000, - "canton": null, - "numero_insee": "66088" - } - }, - { - "pk": 28617, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "JOCH", - "center": "POINT (615521.5133256731787696 1734625.9803518385160714)", - "surface": 3460000, - "canton": null, - "numero_insee": "66089" - } - }, - { - "pk": 17338, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "JUJOLS", - "center": "POINT (595627.5597745397826657 1731054.8155126655474305)", - "surface": 9960000, - "canton": null, - "numero_insee": "66090" - } - }, - { - "pk": 3157, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LAMANERE", - "center": "POINT (615061.3754017614992335 1705987.4417831632308662)", - "surface": 23800000, - "canton": null, - "numero_insee": "66091" - } - }, - { - "pk": 22469, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LANSAC", - "center": "POINT (618682.9980749036185443 1751572.7700889424886554)", - "surface": 5310000, - "canton": null, - "numero_insee": "66092" - } - }, - { - "pk": 3886, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LAROQUE-DES-ALBERES", - "center": "POINT (649058.0265986889135092 1723194.1516557014547288)", - "surface": 20780000, - "canton": null, - "numero_insee": "66093" - } - }, - { - "pk": 34400, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LATOUR-BAS-ELNE", - "center": "POINT (654977.8996072352165356 1733556.4942786199972034)", - "surface": 3350000, - "canton": null, - "numero_insee": "66094" - } - }, - { - "pk": 32962, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LATOUR-DE-CAROL", - "center": "POINT (561687.8376427290495485 1718956.1689039084594697)", - "surface": 12910000, - "canton": null, - "numero_insee": "66095" - } - }, - { - "pk": 26279, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LATOUR-DE-FRANCE", - "center": "POINT (625788.4174495773622766 1751932.8844020022079349)", - "surface": 14120000, - "canton": null, - "numero_insee": "66096" - } - }, - { - "pk": 36380, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LESQUERDE", - "center": "POINT (617056.8014842048287392 1754462.5466114864684641)", - "surface": 15660000, - "canton": null, - "numero_insee": "66097" - } - }, - { - "pk": 22673, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LA LLAGONNE", - "center": "POINT (580051.8154086519498378 1725918.1721870105247945)", - "surface": 23370000, - "canton": null, - "numero_insee": "66098" - } - }, - { - "pk": 30481, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LLAURO", - "center": "POINT (633507.4977322722552344 1726967.8751642080023885)", - "surface": 8400000, - "canton": null, - "numero_insee": "66099" - } - }, - { - "pk": 5487, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LLO", - "center": "POINT (579647.7236320850206539 1714400.8453576520550996)", - "surface": 28720000, - "canton": null, - "numero_insee": "66100" - } - }, - { - "pk": 3489, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LLUPIA", - "center": "POINT (636636.1088866672944278 1735904.9356716866604984)", - "surface": 7150000, - "canton": null, - "numero_insee": "66101" - } - }, - { - "pk": 16531, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MANTET", - "center": "POINT (596550.2859896256122738 1716545.0180955100804567)", - "surface": 32240000, - "canton": null, - "numero_insee": "66102" - } - }, - { - "pk": 12243, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MARQUIXANES", - "center": "POINT (612096.6358597077196464 1737100.2003510759677738)", - "surface": 4890000, - "canton": null, - "numero_insee": "66103" - } - }, - { - "pk": 25477, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LOS MASOS", - "center": "POINT (610115.4040366258705035 1734580.5507905893027782)", - "surface": 5750000, - "canton": null, - "numero_insee": "66104" - } - }, - { - "pk": 37811, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MATEMALE", - "center": "POINT (581816.9437426050426438 1730338.2739607626572251)", - "surface": 19370000, - "canton": null, - "numero_insee": "66105" - } - }, - { - "pk": 23424, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MAUREILLAS-LAS-ILLAS", - "center": "POINT (638293.7783671078504995 1717396.5481045483611524)", - "surface": 42600000, - "canton": null, - "numero_insee": "66106" - } - }, - { - "pk": 33080, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MAURY", - "center": "POINT (622642.8497364823706448 1756912.3652951619587839)", - "surface": 34650000, - "canton": null, - "numero_insee": "66107" - } - }, - { - "pk": 8075, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MILLAS", - "center": "POINT (628959.2805666755884886 1743950.0221631333697587)", - "surface": 19450000, - "canton": null, - "numero_insee": "66108" - } - }, - { - "pk": 31335, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MOLITG-LES-BAINS", - "center": "POINT (604864.1217812367249280 1739942.9230219135060906)", - "surface": 13050000, - "canton": null, - "numero_insee": "66109" - } - }, - { - "pk": 31787, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONTALBA-LE-CHATEAU", - "center": "POINT (618746.1257312170928344 1744064.3558185803703964)", - "surface": 16060000, - "canton": null, - "numero_insee": "66111" - } - }, - { - "pk": 20870, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONTAURIOL", - "center": "POINT (631877.0288566655945033 1730358.2525923775974661)", - "surface": 11350000, - "canton": null, - "numero_insee": "66112" - } - }, - { - "pk": 18851, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONTBOLO", - "center": "POINT (624348.4086371086305007 1720783.4229328946676105)", - "surface": 22000000, - "canton": null, - "numero_insee": "66113" - } - }, - { - "pk": 9225, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONTESCOT", - "center": "POINT (648159.2326350251678377 1734800.5696529725100845)", - "surface": 6110000, - "canton": null, - "numero_insee": "66114" - } - }, - { - "pk": 3433, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONTESQUIEU-DES-ALBERES", - "center": "POINT (644245.8093755757436156 1723954.5651164739392698)", - "surface": 17270000, - "canton": null, - "numero_insee": "66115" - } - }, - { - "pk": 37648, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONTFERRER", - "center": "POINT (618686.5147894268156961 1715429.3753165008965880)", - "surface": 21980000, - "canton": null, - "numero_insee": "66116" - } - }, - { - "pk": 9602, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONT-LOUIS", - "center": "POINT (582079.2640578999416903 1722931.5362102899234742)", - "surface": 390000, - "canton": null, - "numero_insee": "66117" - } - }, - { - "pk": 33555, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MONTNER", - "center": "POINT (628819.5740541886771098 1748654.4575525224208832)", - "surface": 11080000, - "canton": null, - "numero_insee": "66118" - } - }, - { - "pk": 17512, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "MOSSET", - "center": "POINT (597345.5823499603429809 1741081.2420902843587101)", - "surface": 71100000, - "canton": null, - "numero_insee": "66119" - } - }, - { - "pk": 6659, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "NAHUJA", - "center": "POINT (572048.2360177976079285 1713235.8452647035010159)", - "surface": 5700000, - "canton": null, - "numero_insee": "66120" - } - }, - { - "pk": 35668, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "NEFIACH", - "center": "POINT (626358.8833332911599427 1743627.7838141068350524)", - "surface": 8880000, - "canton": null, - "numero_insee": "66121" - } - }, - { - "pk": 3351, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "NOHEDES", - "center": "POINT (593683.4089005006244406 1736044.5168973510153592)", - "surface": 29000000, - "canton": null, - "numero_insee": "66122" - } - }, - { - "pk": 20544, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "NYER", - "center": "POINT (594803.8197522471891716 1721836.7919060208369046)", - "surface": 37120000, - "canton": null, - "numero_insee": "66123" - } - }, - { - "pk": 15867, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "FONT-ROMEU-ODEILLO-VIA", - "center": "POINT (574467.2461141680832952 1723268.2407414414919913)", - "surface": 29910000, - "canton": null, - "numero_insee": "66124" - } - }, - { - "pk": 5097, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "OLETTE", - "center": "POINT (592211.9466180813033134 1732427.8444523175712675)", - "surface": 29190000, - "canton": null, - "numero_insee": "66125" - } - }, - { - "pk": 30904, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "OMS", - "center": "POINT (630716.1108908291207626 1725542.6883304747752845)", - "surface": 18870000, - "canton": null, - "numero_insee": "66126" - } - }, - { - "pk": 13298, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "OPOUL-PERILLOS", - "center": "POINT (642605.2727028994122520 1764188.8041253737173975)", - "surface": 48590000, - "canton": null, - "numero_insee": "66127" - } - }, - { - "pk": 9750, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "ORTAFFA", - "center": "POINT (647988.5393163698026910 1731294.9188222251832485)", - "surface": 8500000, - "canton": null, - "numero_insee": "66129" - } - }, - { - "pk": 16968, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "OSSEJA", - "center": "POINT (571974.1116165827261284 1710131.4479771945625544)", - "surface": 17070000, - "canton": null, - "numero_insee": "66130" - } - }, - { - "pk": 23455, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PALAU-DE-CERDAGNE", - "center": "POINT (570480.7708688189741224 1709117.7232807390391827)", - "surface": 11390000, - "canton": null, - "numero_insee": "66132" - } - }, - { - "pk": 9101, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PALAU-DEL-VIDRE", - "center": "POINT (651106.4017069477122277 1729619.1518930695019662)", - "surface": 10400000, - "canton": null, - "numero_insee": "66133" - } - }, - { - "pk": 19720, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PASSA", - "center": "POINT (638495.4755272009642795 1729112.4078899077139795)", - "surface": 13490000, - "canton": null, - "numero_insee": "66134" - } - }, - { - "pk": 20634, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PERPIGNAN", - "center": "POINT (646181.1532320305705070 1743794.6896316653583199)", - "surface": 68310000, - "canton": null, - "numero_insee": "66136" - } - }, - { - "pk": 23529, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LE PERTHUS", - "center": "POINT (642993.2485996772302315 1718136.9824605870526284)", - "surface": 4210000, - "canton": null, - "numero_insee": "66137" - } - }, - { - "pk": 26054, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PEYRESTORTES", - "center": "POINT (641727.2903927525039762 1749564.0865341930184513)", - "surface": 8080000, - "canton": null, - "numero_insee": "66138" - } - }, - { - "pk": 12924, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PEZILLA-DE-CONFLENT", - "center": "POINT (612505.5028179534710944 1748016.6766855886671692)", - "surface": 6740000, - "canton": null, - "numero_insee": "66139" - } - }, - { - "pk": 24494, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PEZILLA-LA-RIVIERE", - "center": "POINT (635060.2403155359206721 1744702.2110973268281668)", - "surface": 16390000, - "canton": null, - "numero_insee": "66140" - } - }, - { - "pk": 6434, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PIA", - "center": "POINT (647433.6773370872251689 1749612.1689513283781707)", - "surface": 13410000, - "canton": null, - "numero_insee": "66141" - } - }, - { - "pk": 37842, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PLANES", - "center": "POINT (584216.9066665749996901 1718744.3651540265418589)", - "surface": 14330000, - "canton": null, - "numero_insee": "66142" - } - }, - { - "pk": 14300, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PLANEZES", - "center": "POINT (623382.3639203156344593 1752313.1210418664850295)", - "surface": 6280000, - "canton": null, - "numero_insee": "66143" - } - }, - { - "pk": 28132, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "POLLESTRES", - "center": "POINT (644034.3507817414356396 1737168.6921094437129796)", - "surface": 8330000, - "canton": null, - "numero_insee": "66144" - } - }, - { - "pk": 15851, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PONTEILLA", - "center": "POINT (640234.2752497479086742 1736636.0788842020556331)", - "surface": 13960000, - "canton": null, - "numero_insee": "66145" - } - }, - { - "pk": 23099, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PORTA", - "center": "POINT (555141.0602074166527018 1723607.1008146908134222)", - "surface": 65570000, - "canton": null, - "numero_insee": "66146" - } - }, - { - "pk": 15885, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PORTE-PUYMORENS", - "center": "POINT (558708.3157246359623969 1728042.2517709448002279)", - "surface": 49870000, - "canton": null, - "numero_insee": "66147" - } - }, - { - "pk": 5417, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PORT-VENDRES", - "center": "POINT (663282.6534754161257297 1722312.9143322717864066)", - "surface": 14760000, - "canton": null, - "numero_insee": "66148" - } - }, - { - "pk": 21485, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PRADES", - "center": "POINT (607713.5296087530441582 1734460.2534131999127567)", - "surface": 11060000, - "canton": null, - "numero_insee": "66149" - } - }, - { - "pk": 14468, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PRATS-DE-MOLLO-LA-PRESTE", - "center": "POINT (608595.9748867134330794 1712841.5332187069579959)", - "surface": 119040000, - "canton": null, - "numero_insee": "66150" - } - }, - { - "pk": 31980, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PRATS-DE-SOURNIA", - "center": "POINT (609995.9697266268776730 1748796.5447034211829305)", - "surface": 8440000, - "canton": null, - "numero_insee": "66151" - } - }, - { - "pk": 11569, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PRUGNANES", - "center": "POINT (608115.7437539997044951 1758091.8033394140657037)", - "surface": 13560000, - "canton": null, - "numero_insee": "66152" - } - }, - { - "pk": 15901, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PRUNET-ET-BELPUIG", - "center": "POINT (624377.7846831622300670 1729193.8256842773407698)", - "surface": 21810000, - "canton": null, - "numero_insee": "66153" - } - }, - { - "pk": 3868, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PUYVALADOR", - "center": "POINT (580943.0416272195288911 1739041.4060857756994665)", - "surface": 19160000, - "canton": null, - "numero_insee": "66154" - } - }, - { - "pk": 5062, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "PY", - "center": "POINT (601837.8593529533827677 1718792.0712703107856214)", - "surface": 50780000, - "canton": null, - "numero_insee": "66155" - } - }, - { - "pk": 11531, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "RABOUILLET", - "center": "POINT (602802.1861508217407390 1747034.0983187081292272)", - "surface": 19650000, - "canton": null, - "numero_insee": "66156" - } - }, - { - "pk": 12446, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "RAILLEU", - "center": "POINT (585309.1642335942015052 1731769.2338702704291791)", - "surface": 10210000, - "canton": null, - "numero_insee": "66157" - } - }, - { - "pk": 26666, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "RASIGUERES", - "center": "POINT (621179.9028861917322502 1752294.5980323227122426)", - "surface": 13820000, - "canton": null, - "numero_insee": "66158" - } - }, - { - "pk": 24452, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "REAL", - "center": "POINT (584260.1932851934107020 1737467.2909420474898070)", - "surface": 10630000, - "canton": null, - "numero_insee": "66159" - } - }, - { - "pk": 4113, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "REYNES", - "center": "POINT (630369.5785752482479438 1719132.0218832439277321)", - "surface": 27850000, - "canton": null, - "numero_insee": "66160" - } - }, - { - "pk": 10787, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "RIA-SIRACH", - "center": "POINT (604310.5231764285126701 1734331.5529672526754439)", - "surface": 12900000, - "canton": null, - "numero_insee": "66161" - } - }, - { - "pk": 28387, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "RIGARDA", - "center": "POINT (616510.8629148857435212 1736035.9786842109169811)", - "surface": 3620000, - "canton": null, - "numero_insee": "66162" - } - }, - { - "pk": 15133, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "RIVESALTES", - "center": "POINT (644302.3672161075519398 1752889.7098736707121134)", - "surface": 28800000, - "canton": null, - "numero_insee": "66164" - } - }, - { - "pk": 22548, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "RODES", - "center": "POINT (617485.9029783396981657 1739147.8951102576684207)", - "surface": 18590000, - "canton": null, - "numero_insee": "66165" - } - }, - { - "pk": 12220, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAHORRE", - "center": "POINT (601790.7906774705043063 1724398.4592913656961173)", - "surface": 15140000, - "canton": null, - "numero_insee": "66166" - } - }, - { - "pk": 4673, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAILLAGOUSE", - "center": "POINT (575418.5897843305720016 1717268.9367971424944699)", - "surface": 11310000, - "canton": null, - "numero_insee": "66167" - } - }, - { - "pk": 25506, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-ANDRE", - "center": "POINT (652923.6389739194419235 1727832.3016750225797296)", - "surface": 9750000, - "canton": null, - "numero_insee": "66168" - } - }, - { - "pk": 26922, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-ARNAC", - "center": "POINT (616271.8967255437746644 1752553.6902889788616449)", - "surface": 6900000, - "canton": null, - "numero_insee": "66169" - } - }, - { - "pk": 28377, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINTE-COLOMBE-DE-LA-COMMANDERIE", - "center": "POINT (633142.2655835862969980 1734674.0785314091481268)", - "surface": 4780000, - "canton": null, - "numero_insee": "66170" - } - }, - { - "pk": 8756, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-CYPRIEN", - "center": "POINT (655862.0311556166270748 1735566.3557479162700474)", - "surface": 16240000, - "canton": null, - "numero_insee": "66171" - } - }, - { - "pk": 30115, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-ESTEVE", - "center": "POINT (641758.4942954983562231 1745859.9355412197764963)", - "surface": 11680000, - "canton": null, - "numero_insee": "66172" - } - }, - { - "pk": 11162, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-FELIU-D'AMONT", - "center": "POINT (631282.9321599182439968 1741466.5863553518429399)", - "surface": 5650000, - "canton": null, - "numero_insee": "66173" - } - }, - { - "pk": 8860, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-FELIU-D'AVALL", - "center": "POINT (633689.0064996083965525 1741086.3602877899538726)", - "surface": 10550000, - "canton": null, - "numero_insee": "66174" - } - }, - { - "pk": 8454, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-GENIS-DES-FONTAINES", - "center": "POINT (648020.6037135607330129 1727490.6059889739844948)", - "surface": 9960000, - "canton": null, - "numero_insee": "66175" - } - }, - { - "pk": 10350, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-HIPPOLYTE", - "center": "POINT (652184.1893405911978334 1756159.9454476176761091)", - "surface": 25570000, - "canton": null, - "numero_insee": "66176" - } - }, - { - "pk": 27915, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-JEAN-LASSEILLE", - "center": "POINT (643381.6378478796686977 1731456.3383627487346530)", - "surface": 2920000, - "canton": null, - "numero_insee": "66177" - } - }, - { - "pk": 11534, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-JEAN-PLA-DE-CORTS", - "center": "POINT (637640.8222000335808843 1723598.5657583009451628)", - "surface": 10650000, - "canton": null, - "numero_insee": "66178" - } - }, - { - "pk": 30270, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-LAURENT-DE-LA-SALANQUE", - "center": "POINT (654499.4195524812676013 1754677.6869892145041376)", - "surface": 17450000, - "canton": null, - "numero_insee": "66180" - } - }, - { - "pk": 37701, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINTE-LEOCADIE", - "center": "POINT (572839.0920474817976356 1714443.9284817888401449)", - "surface": 8830000, - "canton": null, - "numero_insee": "66181" - } - }, - { - "pk": 3784, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINTE-MARIE", - "center": "POINT (655864.1981488686287776 1747180.2662775653880090)", - "surface": 10380000, - "canton": null, - "numero_insee": "66182" - } - }, - { - "pk": 5076, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-MARSAL", - "center": "POINT (622812.1745842130621895 1724875.4648330379277468)", - "surface": 15560000, - "canton": null, - "numero_insee": "66183" - } - }, - { - "pk": 7729, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-MARTIN", - "center": "POINT (611558.2277541538933292 1753515.2647575028240681)", - "surface": 9350000, - "canton": null, - "numero_insee": "66184" - } - }, - { - "pk": 36606, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-MICHEL-DE-LLOTES", - "center": "POINT (623603.7307815176900476 1737897.7801040073391050)", - "surface": 8860000, - "canton": null, - "numero_insee": "66185" - } - }, - { - "pk": 8051, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-NAZAIRE", - "center": "POINT (653421.3295095902867615 1740051.1734532662667334)", - "surface": 10390000, - "canton": null, - "numero_insee": "66186" - } - }, - { - "pk": 34540, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-PAUL-DE-FENOUILLET", - "center": "POINT (613928.0976320425979793 1757439.8094318809453398)", - "surface": 44470000, - "canton": null, - "numero_insee": "66187" - } - }, - { - "pk": 9768, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAINT-PIERRE-DELS-FORCATS", - "center": "POINT (581907.5652670307317749 1719525.9781338931061327)", - "surface": 12910000, - "canton": null, - "numero_insee": "66188" - } - }, - { - "pk": 5269, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SALEILLES", - "center": "POINT (650322.8985720856580883 1739424.3306143144145608)", - "surface": 6180000, - "canton": null, - "numero_insee": "66189" - } - }, - { - "pk": 12752, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SALSES-LE-CHATEAU", - "center": "POINT (647451.1010531603824347 1759423.9593802355229855)", - "surface": 82770000, - "canton": null, - "numero_insee": "66190" - } - }, - { - "pk": 12712, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SANSA", - "center": "POINT (587084.3421155187534168 1734987.9666996363084763)", - "surface": 23110000, - "canton": null, - "numero_insee": "66191" - } - }, - { - "pk": 9769, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SAUTO", - "center": "POINT (584477.8033947744406760 1723452.2466521477326751)", - "surface": 8410000, - "canton": null, - "numero_insee": "66192" - } - }, - { - "pk": 15579, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SERDINYA", - "center": "POINT (598738.6376748853363097 1730179.8400630201213062)", - "surface": 17520000, - "canton": null, - "numero_insee": "66193" - } - }, - { - "pk": 18082, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SERRALONGUE", - "center": "POINT (618143.0618914496153593 1708616.5226061067078263)", - "surface": 23090000, - "canton": null, - "numero_insee": "66194" - } - }, - { - "pk": 32182, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LE SOLER", - "center": "POINT (637689.2976177347591147 1741620.6402312987484038)", - "surface": 10400000, - "canton": null, - "numero_insee": "66195" - } - }, - { - "pk": 14599, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SOREDE", - "center": "POINT (652973.4440032461425290 1721925.5865005461964756)", - "surface": 34720000, - "canton": null, - "numero_insee": "66196" - } - }, - { - "pk": 10845, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SOUANYAS", - "center": "POINT (595661.1624528522370383 1727050.2737131852190942)", - "surface": 4880000, - "canton": null, - "numero_insee": "66197" - } - }, - { - "pk": 20830, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "SOURNIA", - "center": "POINT (606317.8863704132381827 1745661.9502497562207282)", - "surface": 30150000, - "canton": null, - "numero_insee": "66198" - } - }, - { - "pk": 5216, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TAILLET", - "center": "POINT (628128.3156885677017272 1723718.7348024279344827)", - "surface": 10190000, - "canton": null, - "numero_insee": "66199" - } - }, - { - "pk": 26470, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TARERACH", - "center": "POINT (614255.3686420124722645 1742324.5733611527830362)", - "surface": 8230000, - "canton": null, - "numero_insee": "66201" - } - }, - { - "pk": 25035, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TARGASSONNE", - "center": "POINT (571272.8205766218015924 1722140.1561509640887380)", - "surface": 7880000, - "canton": null, - "numero_insee": "66202" - } - }, - { - "pk": 37977, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TAULIS", - "center": "POINT (623125.9885032561141998 1723276.1687605772167444)", - "surface": 6290000, - "canton": null, - "numero_insee": "66203" - } - }, - { - "pk": 16380, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TAURINYA", - "center": "POINT (608665.8484507584944367 1728360.9066010934766382)", - "surface": 13680000, - "canton": null, - "numero_insee": "66204" - } - }, - { - "pk": 12618, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TAUTAVEL", - "center": "POINT (631355.0807066931156442 1756685.3099501028191298)", - "surface": 53700000, - "canton": null, - "numero_insee": "66205" - } - }, - { - "pk": 17511, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LE TECH", - "center": "POINT (614583.5031296615488827 1715194.6418913444504142)", - "surface": 26460000, - "canton": null, - "numero_insee": "66206" - } - }, - { - "pk": 5440, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TERRATS", - "center": "POINT (634755.8754450101405382 1733285.9788595994468778)", - "surface": 7470000, - "canton": null, - "numero_insee": "66207" - } - }, - { - "pk": 29067, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "THEZA", - "center": "POINT (650038.5951553287450224 1737519.6546525219455361)", - "surface": 4860000, - "canton": null, - "numero_insee": "66208" - } - }, - { - "pk": 17339, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "THUES-ENTRE-VALLS", - "center": "POINT (591196.3545784418238327 1722207.0122715216130018)", - "surface": 20460000, - "canton": null, - "numero_insee": "66209" - } - }, - { - "pk": 24382, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "THUIR", - "center": "POINT (634717.9471104525728151 1737791.0665913331322372)", - "surface": 19970000, - "canton": null, - "numero_insee": "66210" - } - }, - { - "pk": 35665, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TORDERES", - "center": "POINT (634791.2753953955834731 1729081.2172611246351153)", - "surface": 10020000, - "canton": null, - "numero_insee": "66211" - } - }, - { - "pk": 9962, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TORREILLES", - "center": "POINT (655138.0833741375245154 1750177.7194715044461191)", - "surface": 17560000, - "canton": null, - "numero_insee": "66212" - } - }, - { - "pk": 31971, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TOULOUGES", - "center": "POINT (639999.4769529297482222 1740739.0186189308296889)", - "surface": 8020000, - "canton": null, - "numero_insee": "66213" - } - }, - { - "pk": 13573, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TRESSERRE", - "center": "POINT (641207.8168777466053143 1728033.9256830296944827)", - "surface": 11170000, - "canton": null, - "numero_insee": "66214" - } - }, - { - "pk": 14706, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TREVILLACH", - "center": "POINT (614131.6974876476451755 1745126.8815683231223375)", - "surface": 17400000, - "canton": null, - "numero_insee": "66215" - } - }, - { - "pk": 6902, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TRILLA", - "center": "POINT (615105.8950488776899874 1748338.8883105963468552)", - "surface": 9180000, - "canton": null, - "numero_insee": "66216" - } - }, - { - "pk": 18837, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "TROUILLAS", - "center": "POINT (639758.1634321693563834 1733728.5832967946771532)", - "surface": 17200000, - "canton": null, - "numero_insee": "66217" - } - }, - { - "pk": 24691, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "UR", - "center": "POINT (567406.0850372845306993 1717602.3262553759850562)", - "surface": 6760000, - "canton": null, - "numero_insee": "66218" - } - }, - { - "pk": 13957, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "URBANYA", - "center": "POINT (596873.5838904861593619 1737673.2058274152223021)", - "surface": 13930000, - "canton": null, - "numero_insee": "66219" - } - }, - { - "pk": 26914, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VALCEBOLLERE", - "center": "POINT (575692.6204803818836808 1708460.5191577910445631)", - "surface": 26190000, - "canton": null, - "numero_insee": "66220" - } - }, - { - "pk": 21674, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VALMANYA", - "center": "POINT (614608.7306491155177355 1724105.6473134385887533)", - "surface": 27880000, - "canton": null, - "numero_insee": "66221" - } - }, - { - "pk": 12599, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VERNET-LES-BAINS", - "center": "POINT (606482.6889261435717344 1726039.7920111503917724)", - "surface": 16520000, - "canton": null, - "numero_insee": "66222" - } - }, - { - "pk": 27901, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VILLEFRANCHE-DE-CONFLENT", - "center": "POINT (601822.8232135304715484 1732508.5000326798763126)", - "surface": 4610000, - "canton": null, - "numero_insee": "66223" - } - }, - { - "pk": 3974, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VILLELONGUE-DE-LA-SALANQUE", - "center": "POINT (652561.3389070555567741 1747052.2941152295097709)", - "surface": 7230000, - "canton": null, - "numero_insee": "66224" - } - }, - { - "pk": 34914, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VILLELONGUE-DELS-MONTS", - "center": "POINT (646343.1387718609767035 1724572.9640510035678744)", - "surface": 11760000, - "canton": null, - "numero_insee": "66225" - } - }, - { - "pk": 34026, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VILLEMOLAQUE", - "center": "POINT (641973.3040263331495225 1732245.4370619338005781)", - "surface": 5960000, - "canton": null, - "numero_insee": "66226" - } - }, - { - "pk": 30103, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VILLENEUVE-DE-LA-RAHO", - "center": "POINT (647135.3206475485349074 1737495.1832941868342459)", - "surface": 11590000, - "canton": null, - "numero_insee": "66227" - } - }, - { - "pk": 7009, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VILLENEUVE-LA-RIVIERE", - "center": "POINT (637863.3875808659940958 1744725.8143149572424591)", - "surface": 4430000, - "canton": null, - "numero_insee": "66228" - } - }, - { - "pk": 26075, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VINCA", - "center": "POINT (615295.2016482340404764 1737727.8011432718485594)", - "surface": 7800000, - "canton": null, - "numero_insee": "66230" - } - }, - { - "pk": 31108, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VINGRAU", - "center": "POINT (637120.2425240485463291 1761639.6500423848628998)", - "surface": 32490000, - "canton": null, - "numero_insee": "66231" - } - }, - { - "pk": 7128, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VIRA", - "center": "POINT (604670.6910121217370033 1751054.5547581850551069)", - "surface": 12990000, - "canton": null, - "numero_insee": "66232" - } - }, - { - "pk": 35602, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "VIVES", - "center": "POINT (635425.6726111285388470 1725081.7279982778709382)", - "surface": 11240000, - "canton": null, - "numero_insee": "66233" - } - }, - { - "pk": 25476, - "model": "ishtar_common.town", - "fields": { - "departement": 67, - "name": "LE VIVIER", - "center": "POINT (608674.3285156440688297 1751188.3002758258953691)", - "surface": 13000000, - "canton": null, - "numero_insee": "66234" - } - }, - { - "pk": 20846, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ACHENHEIM", - "center": "POINT (990001.7970180435804650 2411070.5652036531828344)", - "surface": 6090000, - "canton": null, - "numero_insee": "67001" - } - }, - { - "pk": 23054, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ADAMSWILLER", - "center": "POINT (956582.2941818290855736 2445203.8482571756467223)", - "surface": 3400000, - "canton": null, - "numero_insee": "67002" - } - }, - { - "pk": 30246, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ALBE", - "center": "POINT (970310.9582324887160212 2385381.1360455784015357)", - "surface": 11510000, - "canton": null, - "numero_insee": "67003" - } - }, - { - "pk": 8395, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ALLENWILLER", - "center": "POINT (970528.7479440921451896 2417906.1352271968498826)", - "surface": 5980000, - "canton": null, - "numero_insee": "67004" - } - }, - { - "pk": 37931, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ALTECKENDORF", - "center": "POINT (986294.1159318240825087 2434654.7042094878852367)", - "surface": 5930000, - "canton": null, - "numero_insee": "67005" - } - }, - { - "pk": 15357, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ALTENHEIM", - "center": "POINT (977065.0025449977256358 2425768.3662555906921625)", - "surface": 2690000, - "canton": null, - "numero_insee": "67006" - } - }, - { - "pk": 7374, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ALTORF", - "center": "POINT (984055.4726231901440769 2404414.1585369752719998)", - "surface": 10200000, - "canton": null, - "numero_insee": "67008" - } - }, - { - "pk": 14478, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ALTWILLER", - "center": "POINT (940270.7815209992695600 2445262.5255125807598233)", - "surface": 16410000, - "canton": null, - "numero_insee": "67009" - } - }, - { - "pk": 22905, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ARTOLSHEIM", - "center": "POINT (990963.5896320556057617 2369549.0094066178426147)", - "surface": 11250000, - "canton": null, - "numero_insee": "67011" - } - }, - { - "pk": 22680, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ASCHBACH", - "center": "POINT (1013252.6591652751667425 2453001.8922418947331607)", - "surface": 4280000, - "canton": null, - "numero_insee": "67012" - } - }, - { - "pk": 33216, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ASSWILLER", - "center": "POINT (958407.6936298997607082 2442417.7968527884222567)", - "surface": 6010000, - "canton": null, - "numero_insee": "67013" - } - }, - { - "pk": 35211, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "AUENHEIM", - "center": "POINT (1017082.3581241953652352 2438425.4002407742664218)", - "surface": 4220000, - "canton": null, - "numero_insee": "67014" - } - }, - { - "pk": 11782, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "AVOLSHEIM", - "center": "POINT (980520.1890674822498113 2408186.1015054164454341)", - "surface": 1790000, - "canton": null, - "numero_insee": "67016" - } - }, - { - "pk": 26403, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BAERENDORF", - "center": "POINT (948954.0373634940478951 2436331.6948560588061810)", - "surface": 7540000, - "canton": null, - "numero_insee": "67017" - } - }, - { - "pk": 32278, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BALBRONN", - "center": "POINT (973697.6393533849623054 2410228.2721404628828168)", - "surface": 10400000, - "canton": null, - "numero_insee": "67018" - } - }, - { - "pk": 37817, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BALDENHEIM", - "center": "POINT (985927.2057385419029742 2373307.9875028333626688)", - "surface": 9360000, - "canton": null, - "numero_insee": "67019" - } - }, - { - "pk": 12619, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BAREMBACH", - "center": "POINT (962707.9376694611273706 2396623.2381633287295699)", - "surface": 10000000, - "canton": null, - "numero_insee": "67020" - } - }, - { - "pk": 21718, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BARR", - "center": "POINT (974559.8317551132058725 2391622.5261147590354085)", - "surface": 21190000, - "canton": null, - "numero_insee": "67021" - } - }, - { - "pk": 4800, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BASSEMBERG", - "center": "POINT (966135.1714957260992378 2382242.6217862316407263)", - "surface": 1880000, - "canton": null, - "numero_insee": "67022" - } - }, - { - "pk": 28929, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BATZENDORF", - "center": "POINT (994707.0830025356262922 2433827.3237114152871072)", - "surface": 6710000, - "canton": null, - "numero_insee": "67023" - } - }, - { - "pk": 32205, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BEINHEIM", - "center": "POINT (1022138.2860011134762317 2443873.2185035236179829)", - "surface": 14640000, - "canton": null, - "numero_insee": "67025" - } - }, - { - "pk": 29999, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BELLEFOSSE", - "center": "POINT (962578.1708454734180123 2388516.2979317768476903)", - "surface": 7500000, - "canton": null, - "numero_insee": "67026" - } - }, - { - "pk": 25957, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BELMONT", - "center": "POINT (963862.5038694406393915 2390428.8161055459640920)", - "surface": 10130000, - "canton": null, - "numero_insee": "67027" - } - }, - { - "pk": 7658, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BENFELD", - "center": "POINT (989909.7397786801448092 2387152.6964047192595899)", - "surface": 7890000, - "canton": null, - "numero_insee": "67028" - } - }, - { - "pk": 37794, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BERG", - "center": "POINT (952494.5908757350407541 2443467.2293814630247653)", - "surface": 7660000, - "canton": null, - "numero_insee": "67029" - } - }, - { - "pk": 15549, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BERGBIETEN", - "center": "POINT (977203.3198706086259335 2409858.4618592821061611)", - "surface": 4460000, - "canton": null, - "numero_insee": "67030" - } - }, - { - "pk": 24815, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BERNARDSWILLER", - "center": "POINT (978329.2210052333539352 2395458.0171458958648145)", - "surface": 5530000, - "canton": null, - "numero_insee": "67031" - } - }, - { - "pk": 33677, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BERNARDVILLE", - "center": "POINT (975403.8294323571026325 2386626.2551818182691932)", - "surface": 2740000, - "canton": null, - "numero_insee": "67032" - } - }, - { - "pk": 3066, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BERNOLSHEIM", - "center": "POINT (993134.8570463582873344 2430511.3621446252800524)", - "surface": 3570000, - "canton": null, - "numero_insee": "67033" - } - }, - { - "pk": 15358, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BERSTETT", - "center": "POINT (989803.3194281244650483 2422376.7495141373947263)", - "surface": 18320000, - "canton": null, - "numero_insee": "67034" - } - }, - { - "pk": 8270, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BERSTHEIM", - "center": "POINT (992396.0946140775922686 2434907.9552903571166098)", - "surface": 3140000, - "canton": null, - "numero_insee": "67035" - } - }, - { - "pk": 6730, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BETTWILLER", - "center": "POINT (954799.4471835247240961 2443086.9563220655545592)", - "surface": 4190000, - "canton": null, - "numero_insee": "67036" - } - }, - { - "pk": 32744, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BIBLISHEIM", - "center": "POINT (999793.4346928477752954 2447280.7648990047164261)", - "surface": 2200000, - "canton": null, - "numero_insee": "67037" - } - }, - { - "pk": 14284, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BILWISHEIM", - "center": "POINT (991876.7452695141546428 2425597.0209133988246322)", - "surface": 2530000, - "canton": null, - "numero_insee": "67039" - } - }, - { - "pk": 34827, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BINDERNHEIM", - "center": "POINT (991386.4142233462771401 2378459.2220089859329164)", - "surface": 6820000, - "canton": null, - "numero_insee": "67040" - } - }, - { - "pk": 13130, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BIRKENWALD", - "center": "POINT (967926.2602750754449517 2417983.5958883306011558)", - "surface": 5060000, - "canton": null, - "numero_insee": "67041" - } - }, - { - "pk": 24539, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BISCHHEIM", - "center": "POINT (998668.9183928533457220 2415549.1254371562972665)", - "surface": 4380000, - "canton": null, - "numero_insee": "67043" - } - }, - { - "pk": 9812, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BISCHHOLTZ", - "center": "POINT (980800.3104160449001938 2445013.9945039092563093)", - "surface": 2370000, - "canton": null, - "numero_insee": "67044" - } - }, - { - "pk": 37243, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BISCHOFFSHEIM", - "center": "POINT (983393.3241938672726974 2400005.2692641788162291)", - "surface": 12480000, - "canton": null, - "numero_insee": "67045" - } - }, - { - "pk": 15626, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BISCHWILLER", - "center": "POINT (1005931.3737576550338417 2431923.7452055704779923)", - "surface": 17050000, - "canton": null, - "numero_insee": "67046" - } - }, - { - "pk": 11519, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BISSERT", - "center": "POINT (942841.9844600455835462 2448787.1663057422265410)", - "surface": 3280000, - "canton": null, - "numero_insee": "67047" - } - }, - { - "pk": 3659, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BITSCHHOFFEN", - "center": "POINT (987828.0350038567557931 2442373.3099958999082446)", - "surface": 2580000, - "canton": null, - "numero_insee": "67048" - } - }, - { - "pk": 31418, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BLAESHEIM", - "center": "POINT (989377.9907649497035891 2402258.9045630306936800)", - "surface": 10170000, - "canton": null, - "numero_insee": "67049" - } - }, - { - "pk": 33933, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BLANCHERUPT", - "center": "POINT (959564.9451724360696971 2389791.0806972216814756)", - "surface": 2610000, - "canton": null, - "numero_insee": "67050" - } - }, - { - "pk": 7253, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BLIENSCHWILLER", - "center": "POINT (976227.8295418662019074 2383931.4611782636493444)", - "surface": 3100000, - "canton": null, - "numero_insee": "67051" - } - }, - { - "pk": 13549, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOERSCH", - "center": "POINT (972409.7913872537901625 2397207.8574728197418153)", - "surface": 23720000, - "canton": null, - "numero_insee": "67052" - } - }, - { - "pk": 14282, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOESENBIESEN", - "center": "POINT (988045.1298314083833247 2371425.0152148399502039)", - "surface": 3800000, - "canton": null, - "numero_insee": "67053" - } - }, - { - "pk": 16136, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOLSENHEIM", - "center": "POINT (989652.1378455284284428 2393755.2130396021530032)", - "surface": 4550000, - "canton": null, - "numero_insee": "67054" - } - }, - { - "pk": 19828, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOOFZHEIM", - "center": "POINT (995741.3775787014747038 2384001.1381723782978952)", - "surface": 12010000, - "canton": null, - "numero_insee": "67055" - } - }, - { - "pk": 13198, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOOTZHEIM", - "center": "POINT (990277.0583031872520223 2367941.8542234841734171)", - "surface": 5820000, - "canton": null, - "numero_insee": "67056" - } - }, - { - "pk": 8725, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOSSELSHAUSEN", - "center": "POINT (979782.3205270455218852 2435498.6723403553478420)", - "surface": 3260000, - "canton": null, - "numero_insee": "67057" - } - }, - { - "pk": 33415, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOSSENDORF", - "center": "POINT (984306.8252080975798890 2433036.3145426562987268)", - "surface": 4070000, - "canton": null, - "numero_insee": "67058" - } - }, - { - "pk": 19552, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOURG-BRUCHE", - "center": "POINT (956111.3047462049871683 2384157.0708747697062790)", - "surface": 14970000, - "canton": null, - "numero_insee": "67059" - } - }, - { - "pk": 35097, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOURGHEIM", - "center": "POINT (981257.1834265124052763 2392481.3220298099331558)", - "surface": 2840000, - "canton": null, - "numero_insee": "67060" - } - }, - { - "pk": 21584, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BOUXWILLER", - "center": "POINT (976470.7418260688427836 2436570.6290088491514325)", - "surface": 25940000, - "canton": null, - "numero_insee": "67061" - } - }, - { - "pk": 9562, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BREITENAU", - "center": "POINT (966354.4175861958647147 2380042.9262261609546840)", - "surface": 4480000, - "canton": null, - "numero_insee": "67062" - } - }, - { - "pk": 3335, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BREITENBACH", - "center": "POINT (966598.1322863476816565 2386549.7569239195436239)", - "surface": 12840000, - "canton": null, - "numero_insee": "67063" - } - }, - { - "pk": 27625, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BREUSCHWICKERSHEIM", - "center": "POINT (988104.0853437250480056 2410653.7677267668768764)", - "surface": 5160000, - "canton": null, - "numero_insee": "67065" - } - }, - { - "pk": 14637, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BRUMATH", - "center": "POINT (995766.9531305242562667 2427031.8647515317425132)", - "surface": 31330000, - "canton": null, - "numero_insee": "67067" - } - }, - { - "pk": 36481, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BUSWILLER", - "center": "POINT (983567.2244082996621728 2437532.9626522352918983)", - "surface": 2270000, - "canton": null, - "numero_insee": "67068" - } - }, - { - "pk": 11725, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BUHL", - "center": "POINT (1016077.0323844421654940 2450424.7843400165438652)", - "surface": 4370000, - "canton": null, - "numero_insee": "67069" - } - }, - { - "pk": 35333, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BURBACH", - "center": "POINT (950089.6761145964264870 2443846.6386042051017284)", - "surface": 6320000, - "canton": null, - "numero_insee": "67070" - } - }, - { - "pk": 5808, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BUST", - "center": "POINT (959452.5949435767251998 2437323.3992344788275659)", - "surface": 6740000, - "canton": null, - "numero_insee": "67071" - } - }, - { - "pk": 23944, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BUTTEN", - "center": "POINT (959219.6363414879888296 2452631.7182044684886932)", - "surface": 15210000, - "canton": null, - "numero_insee": "67072" - } - }, - { - "pk": 17883, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "CHATENOIS", - "center": "POINT (974490.1368687269277871 2376611.0440935622900724)", - "surface": 14510000, - "canton": null, - "numero_insee": "67073" - } - }, - { - "pk": 22966, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "CLEEBOURG", - "center": "POINT (1006000.3832440094556659 2458442.3267886736430228)", - "surface": 10690000, - "canton": null, - "numero_insee": "67074" - } - }, - { - "pk": 37107, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "CLIMBACH", - "center": "POINT (1003180.4102846503956243 2460519.1432751296088099)", - "surface": 7100000, - "canton": null, - "numero_insee": "67075" - } - }, - { - "pk": 34370, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "COLROY-LA-ROCHE", - "center": "POINT (958080.4760398375801742 2387876.8297798465937376)", - "surface": 8130000, - "canton": null, - "numero_insee": "67076" - } - }, - { - "pk": 31211, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "COSSWILLER", - "center": "POINT (970472.1546070482581854 2412902.1431122762151062)", - "surface": 15970000, - "canton": null, - "numero_insee": "67077" - } - }, - { - "pk": 31619, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "CRASTATT", - "center": "POINT (974523.4109532737638801 2418841.4775123940780759)", - "surface": 3400000, - "canton": null, - "numero_insee": "67078" - } - }, - { - "pk": 13355, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "CROETTWILLER", - "center": "POINT (1017563.0844070091843605 2452138.8997296714223921)", - "surface": 2610000, - "canton": null, - "numero_insee": "67079" - } - }, - { - "pk": 18528, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DACHSTEIN", - "center": "POINT (984027.6192893781699240 2407616.1828514751978219)", - "surface": 7440000, - "canton": null, - "numero_insee": "67080" - } - }, - { - "pk": 26166, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DAHLENHEIM", - "center": "POINT (981893.2236315861809999 2411400.2987342178821564)", - "surface": 5450000, - "canton": null, - "numero_insee": "67081" - } - }, - { - "pk": 30081, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DALHUNDEN", - "center": "POINT (1015518.9264355265768245 2434108.8069861745461822)", - "surface": 7440000, - "canton": null, - "numero_insee": "67082" - } - }, - { - "pk": 32717, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DAMBACH", - "center": "POINT (987985.3822005481924862 2458785.7180655742995441)", - "surface": 30430000, - "canton": null, - "numero_insee": "67083" - } - }, - { - "pk": 17577, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DAMBACH-LA-VILLE", - "center": "POINT (977249.3538968287175521 2381538.5968173677101731)", - "surface": 29270000, - "canton": null, - "numero_insee": "67084" - } - }, - { - "pk": 31419, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DANGOLSHEIM", - "center": "POINT (977815.8765159450704232 2408462.7995935692451894)", - "surface": 4650000, - "canton": null, - "numero_insee": "67085" - } - }, - { - "pk": 27433, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DAUBENSAND", - "center": "POINT (999424.6109655734617263 2386234.8092305082827806)", - "surface": 4060000, - "canton": null, - "numero_insee": "67086" - } - }, - { - "pk": 35053, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DAUENDORF", - "center": "POINT (991156.1620072647929192 2439400.2379997028037906)", - "surface": 7690000, - "canton": null, - "numero_insee": "67087" - } - }, - { - "pk": 21582, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DEHLINGEN", - "center": "POINT (954505.5558096930617467 2453891.6727367560379207)", - "surface": 10010000, - "canton": null, - "numero_insee": "67088" - } - }, - { - "pk": 30247, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DETTWILLER", - "center": "POINT (976125.3027625306276605 2430263.3034437000751495)", - "surface": 10770000, - "canton": null, - "numero_insee": "67089" - } - }, - { - "pk": 27037, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DIEBOLSHEIM", - "center": "POINT (994588.5095348341856152 2378487.0940219755284488)", - "surface": 7080000, - "canton": null, - "numero_insee": "67090" - } - }, - { - "pk": 29609, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DIEDENDORF", - "center": "POINT (943998.1540084942243993 2442392.8712469865567982)", - "surface": 10360000, - "canton": null, - "numero_insee": "67091" - } - }, - { - "pk": 6950, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DIEFFENBACH-AU-VAL", - "center": "POINT (969856.7011366682127118 2380073.3426885427907109)", - "surface": 3060000, - "canton": null, - "numero_insee": "67092" - } - }, - { - "pk": 14132, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DIEFFENBACH-LES-WOERTH", - "center": "POINT (999763.7911735167726874 2450682.8018669518642128)", - "surface": 3640000, - "canton": null, - "numero_insee": "67093" - } - }, - { - "pk": 29769, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DIEFFENTHAL", - "center": "POINT (976264.3566455326508731 2379728.7252600556239486)", - "surface": 1490000, - "canton": null, - "numero_insee": "67094" - } - }, - { - "pk": 34135, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DIEMERINGEN", - "center": "POINT (956445.7614437948213890 2449405.4936342779546976)", - "surface": 8970000, - "canton": null, - "numero_insee": "67095" - } - }, - { - "pk": 32314, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DIMBSTHAL", - "center": "POINT (969409.8076305713038892 2419997.8778958045877516)", - "surface": 1960000, - "canton": null, - "numero_insee": "67096" - } - }, - { - "pk": 9688, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DINGSHEIM", - "center": "POINT (992361.4929189961403608 2415894.4791792691685259)", - "surface": 5150000, - "canton": null, - "numero_insee": "67097" - } - }, - { - "pk": 20301, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DINSHEIM-SUR-BRUCHE", - "center": "POINT (975431.7585350205190480 2406440.6613157084211707)", - "surface": 4940000, - "canton": null, - "numero_insee": "67098" - } - }, - { - "pk": 23546, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DOMFESSEL", - "center": "POINT (952241.5189776695333421 2449569.1470027966424823)", - "surface": 6210000, - "canton": null, - "numero_insee": "67099" - } - }, - { - "pk": 36932, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DONNENHEIM", - "center": "POINT (991765.3589344209758565 2426896.9517179760150611)", - "surface": 3740000, - "canton": null, - "numero_insee": "67100" - } - }, - { - "pk": 25958, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DORLISHEIM", - "center": "POINT (979759.7079556090757251 2403576.2310121553018689)", - "surface": 11490000, - "canton": null, - "numero_insee": "67101" - } - }, - { - "pk": 10574, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DOSSENHEIM-KOCHERSBERG", - "center": "POINT (986142.8172290450893342 2417541.5460728253237903)", - "surface": 1810000, - "canton": null, - "numero_insee": "67102" - } - }, - { - "pk": 37204, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DOSSENHEIM-SUR-ZINSEL", - "center": "POINT (970172.9987190817482769 2435815.4124205615371466)", - "surface": 17300000, - "canton": null, - "numero_insee": "67103" - } - }, - { - "pk": 10472, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DRACHENBRONN-BIRLENBACH", - "center": "POINT (1005514.9175892784260213 2456736.9575804150663316)", - "surface": 7170000, - "canton": null, - "numero_insee": "67104" - } - }, - { - "pk": 34828, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DRULINGEN", - "center": "POINT (956319.4539254899136722 2440898.6548799108713865)", - "surface": 4530000, - "canton": null, - "numero_insee": "67105" - } - }, - { - "pk": 11875, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DRUSENHEIM", - "center": "POINT (1012229.1269832764519379 2432679.1435968475416303)", - "surface": 15880000, - "canton": null, - "numero_insee": "67106" - } - }, - { - "pk": 30356, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DUNTZENHEIM", - "center": "POINT (982972.1226193418260664 2425419.4603680400177836)", - "surface": 6320000, - "canton": null, - "numero_insee": "67107" - } - }, - { - "pk": 31212, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DUPPIGHEIM", - "center": "POINT (988247.6861718130530789 2405651.4830414871685207)", - "surface": 7330000, - "canton": null, - "numero_insee": "67108" - } - }, - { - "pk": 7790, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DURNINGEN", - "center": "POINT (984600.0967871432658285 2422331.4709722879342735)", - "surface": 4130000, - "canton": null, - "numero_insee": "67109" - } - }, - { - "pk": 32279, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DURRENBACH", - "center": "POINT (997693.0455312666017562 2447162.3975380784831941)", - "surface": 5330000, - "canton": null, - "numero_insee": "67110" - } - }, - { - "pk": 3366, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DURSTEL", - "center": "POINT (956897.2373760151676834 2443505.4319727341644466)", - "surface": 4760000, - "canton": null, - "numero_insee": "67111" - } - }, - { - "pk": 17675, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "DUTTLENHEIM", - "center": "POINT (986456.1233717133291066 2404535.1140657598152757)", - "surface": 8770000, - "canton": null, - "numero_insee": "67112" - } - }, - { - "pk": 24749, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "EBERBACH-SELTZ", - "center": "POINT (1019666.0860627118963748 2451957.1213688040152192)", - "surface": 4140000, - "canton": null, - "numero_insee": "67113" - } - }, - { - "pk": 35291, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "EBERSHEIM", - "center": "POINT (982670.2773079746402800 2379584.2706260862760246)", - "surface": 13590000, - "canton": null, - "numero_insee": "67115" - } - }, - { - "pk": 7934, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "EBERSMUNSTER", - "center": "POINT (985270.2355983348097652 2379807.0289493110030890)", - "surface": 7610000, - "canton": null, - "numero_insee": "67116" - } - }, - { - "pk": 16782, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ECKARTSWILLER", - "center": "POINT (966406.3220750745385885 2431679.8792306692339480)", - "surface": 12280000, - "canton": null, - "numero_insee": "67117" - } - }, - { - "pk": 36699, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ECKBOLSHEIM", - "center": "POINT (994203.5672234965022653 2411207.2134347995743155)", - "surface": 5360000, - "canton": null, - "numero_insee": "67118" - } - }, - { - "pk": 26252, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "EICHHOFFEN", - "center": "POINT (977895.8801316044991836 2387748.7107875514775515)", - "surface": 2230000, - "canton": null, - "numero_insee": "67120" - } - }, - { - "pk": 29359, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ELSENHEIM", - "center": "POINT (983603.0743822150398046 2364381.2080090753734112)", - "surface": 9520000, - "canton": null, - "numero_insee": "67121" - } - }, - { - "pk": 18477, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WANGENBOURG-ENGENTHAL", - "center": "POINT (966159.0325710484758019 2414065.5186805981211364)", - "surface": 31490000, - "canton": null, - "numero_insee": "67122" - } - }, - { - "pk": 34137, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ENGWILLER", - "center": "POINT (987109.3248988301493227 2444468.4802348627708852)", - "surface": 3700000, - "canton": null, - "numero_insee": "67123" - } - }, - { - "pk": 13268, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ENTZHEIM", - "center": "POINT (990945.0407457060646266 2406175.3126385123468935)", - "surface": 8330000, - "canton": null, - "numero_insee": "67124" - } - }, - { - "pk": 19979, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "EPFIG", - "center": "POINT (980322.6634937926428393 2384867.7101332582533360)", - "surface": 22410000, - "canton": null, - "numero_insee": "67125" - } - }, - { - "pk": 34399, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ERCKARTSWILLER", - "center": "POINT (968106.5849164566025138 2443302.5641875122673810)", - "surface": 10560000, - "canton": null, - "numero_insee": "67126" - } - }, - { - "pk": 8810, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ERGERSHEIM", - "center": "POINT (983406.3514011077350006 2410012.4733010795898736)", - "surface": 6480000, - "canton": null, - "numero_insee": "67127" - } - }, - { - "pk": 24433, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ERNOLSHEIM-BRUCHE", - "center": "POINT (986017.5643877178663388 2408934.4130432056263089)", - "surface": 6570000, - "canton": null, - "numero_insee": "67128" - } - }, - { - "pk": 14236, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ERNOLSHEIM-LES-SAVERNE", - "center": "POINT (970297.4040672231931239 2433014.5755552272312343)", - "surface": 10940000, - "canton": null, - "numero_insee": "67129" - } - }, - { - "pk": 15352, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ERSTEIN", - "center": "POINT (995656.8651219110470265 2393707.4113835613243282)", - "surface": 36530000, - "canton": null, - "numero_insee": "67130" - } - }, - { - "pk": 1500, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ESCHAU", - "center": "POINT (998497.7228261952986941 2400737.1634121723473072)", - "surface": 11640000, - "canton": null, - "numero_insee": "67131" - } - }, - { - "pk": 30355, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ESCHBACH", - "center": "POINT (996115.6169792131986469 2444446.8274872326292098)", - "surface": 3850000, - "canton": null, - "numero_insee": "67132" - } - }, - { - "pk": 29831, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ESCHWILLER", - "center": "POINT (950227.9227079092524946 2439444.8542394456453621)", - "surface": 3590000, - "canton": null, - "numero_insee": "67134" - } - }, - { - "pk": 12436, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ETTENDORF", - "center": "POINT (985373.5419128171633929 2436948.2686285618692636)", - "surface": 6350000, - "canton": null, - "numero_insee": "67135" - } - }, - { - "pk": 34270, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "EYWILLER", - "center": "POINT (951114.5797189297154546 2441053.6316602281294763)", - "surface": 4900000, - "canton": null, - "numero_insee": "67136" - } - }, - { - "pk": 36255, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FEGERSHEIM", - "center": "POINT (995283.4852381958626211 2402110.1697004847228527)", - "surface": 6290000, - "canton": null, - "numero_insee": "67137" - } - }, - { - "pk": 34622, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FESSENHEIM-LE-BAS", - "center": "POINT (983850.9581903449725360 2416420.8372933682985604)", - "surface": 5060000, - "canton": null, - "numero_insee": "67138" - } - }, - { - "pk": 7307, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FLEXBOURG", - "center": "POINT (975311.6915239631198347 2408741.2427997849881649)", - "surface": 1800000, - "canton": null, - "numero_insee": "67139" - } - }, - { - "pk": 34526, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FORSTFELD", - "center": "POINT (1018830.1785885232966393 2444544.8158171041868627)", - "surface": 4910000, - "canton": null, - "numero_insee": "67140" - } - }, - { - "pk": 9044, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FORSTHEIM", - "center": "POINT (993895.9924590343143791 2446528.9186603291891515)", - "surface": 5090000, - "canton": null, - "numero_insee": "67141" - } - }, - { - "pk": 29592, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FORT-LOUIS", - "center": "POINT (1019692.6740394278895110 2437447.4971938179805875)", - "surface": 12250000, - "canton": null, - "numero_insee": "67142" - } - }, - { - "pk": 32938, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FOUCHY", - "center": "POINT (963953.7206850404618308 2379922.0095892027020454)", - "surface": 8250000, - "canton": null, - "numero_insee": "67143" - } - }, - { - "pk": 32313, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FOUDAY", - "center": "POINT (959051.5974339186213911 2391287.7044568313285708)", - "surface": 2280000, - "canton": null, - "numero_insee": "67144" - } - }, - { - "pk": 6154, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FRIEDOLSHEIM", - "center": "POINT (978978.3554704177659005 2424384.0326356957666576)", - "surface": 3530000, - "canton": null, - "numero_insee": "67145" - } - }, - { - "pk": 6450, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FRIESENHEIM", - "center": "POINT (994165.5989847257733345 2381085.3095160452648997)", - "surface": 12090000, - "canton": null, - "numero_insee": "67146" - } - }, - { - "pk": 27626, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FROESCHWILLER", - "center": "POINT (994155.2159541773144156 2451234.3477912973612547)", - "surface": 5830000, - "canton": null, - "numero_insee": "67147" - } - }, - { - "pk": 31444, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FROHMUHL", - "center": "POINT (962277.8960818108171225 2446153.9000131422653794)", - "surface": 1640000, - "canton": null, - "numero_insee": "67148" - } - }, - { - "pk": 3710, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "FURDENHEIM", - "center": "POINT (984872.4750713719986379 2414028.0414072843268514)", - "surface": 5970000, - "canton": null, - "numero_insee": "67150" - } - }, - { - "pk": 31147, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GAMBSHEIM", - "center": "POINT (1008195.5379839864326641 2424738.5022125383839011)", - "surface": 17230000, - "canton": null, - "numero_insee": "67151" - } - }, - { - "pk": 31673, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GEISPOLSHEIM", - "center": "POINT (992966.3421020060777664 2403891.2758451006375253)", - "surface": 22150000, - "canton": null, - "numero_insee": "67152" - } - }, - { - "pk": 7542, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GEISWILLER", - "center": "POINT (979296.8088942812755704 2433793.2850550208240747)", - "surface": 3200000, - "canton": null, - "numero_insee": "67153" - } - }, - { - "pk": 29205, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GERSTHEIM", - "center": "POINT (997396.2999739041551948 2389319.3876689327880740)", - "surface": 17880000, - "canton": null, - "numero_insee": "67154" - } - }, - { - "pk": 6174, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GERTWILLER", - "center": "POINT (980164.3063706780085340 2391571.1718510584905744)", - "surface": 4850000, - "canton": null, - "numero_insee": "67155" - } - }, - { - "pk": 21891, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GEUDERTHEIM", - "center": "POINT (998971.5409432505257428 2426759.5700534293428063)", - "surface": 11520000, - "canton": null, - "numero_insee": "67156" - } - }, - { - "pk": 24233, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GINGSHEIM", - "center": "POINT (986366.3847835282795131 2426349.6144078080542386)", - "surface": 3700000, - "canton": null, - "numero_insee": "67158" - } - }, - { - "pk": 8941, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GOERLINGEN", - "center": "POINT (948785.1542922949884087 2432727.7690996564924717)", - "surface": 3780000, - "canton": null, - "numero_insee": "67159" - } - }, - { - "pk": 20623, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GOERSDORF", - "center": "POINT (998035.7509861800353974 2453769.8301088935695589)", - "surface": 13240000, - "canton": null, - "numero_insee": "67160" - } - }, - { - "pk": 13661, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GOTTENHOUSE", - "center": "POINT (969366.3414140937384218 2425000.9721664162352681)", - "surface": 1300000, - "canton": null, - "numero_insee": "67161" - } - }, - { - "pk": 24015, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GOTTESHEIM", - "center": "POINT (978011.6765827841591090 2431980.8738843714818358)", - "surface": 5170000, - "canton": null, - "numero_insee": "67162" - } - }, - { - "pk": 12030, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GOUGENHEIM", - "center": "POINT (985481.5010527803096920 2424540.6674959100782871)", - "surface": 6810000, - "canton": null, - "numero_insee": "67163" - } - }, - { - "pk": 24471, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GOXWILLER", - "center": "POINT (980645.4863437393214554 2393776.9368226695805788)", - "surface": 3290000, - "canton": null, - "numero_insee": "67164" - } - }, - { - "pk": 21899, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GRANDFONTAINE", - "center": "POINT (953975.4707737739663571 2399649.6692391387186944)", - "surface": 39350000, - "canton": null, - "numero_insee": "67165" - } - }, - { - "pk": 9415, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GRASSENDORF", - "center": "POINT (987174.6364253892097622 2436963.9418351352214813)", - "surface": 2270000, - "canton": null, - "numero_insee": "67166" - } - }, - { - "pk": 9173, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GRENDELBRUCH", - "center": "POINT (967095.1074197844136506 2398462.6173582077026367)", - "surface": 14930000, - "canton": null, - "numero_insee": "67167" - } - }, - { - "pk": 25372, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GRESSWILLER", - "center": "POINT (974553.8010079937521368 2403831.1885326746851206)", - "surface": 9550000, - "canton": null, - "numero_insee": "67168" - } - }, - { - "pk": 10575, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GRIESHEIM-PRES-MOLSHEIM", - "center": "POINT (983676.9784396656323224 2401909.0898419781588018)", - "surface": 4670000, - "canton": null, - "numero_insee": "67172" - } - }, - { - "pk": 37970, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GRIESHEIM-SUR-SOUFFEL", - "center": "POINT (993150.6675711295101792 2417202.2604472502134740)", - "surface": 4240000, - "canton": null, - "numero_insee": "67173" - } - }, - { - "pk": 6383, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GUMBRECHTSHOFFEN", - "center": "POINT (987289.4156466915737838 2446771.6047047022730112)", - "surface": 5700000, - "canton": null, - "numero_insee": "67174" - } - }, - { - "pk": 5425, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GUNDERSHOFFEN", - "center": "POINT (991785.1474965186789632 2447611.2816045996733010)", - "surface": 17390000, - "canton": null, - "numero_insee": "67176" - } - }, - { - "pk": 14024, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GUNSTETT", - "center": "POINT (998778.0139225751627237 2448973.0662593790329993)", - "surface": 6320000, - "canton": null, - "numero_insee": "67177" - } - }, - { - "pk": 11491, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "GUNGWILLER", - "center": "POINT (953208.9017565350513905 2441872.3426951891742647)", - "surface": 1690000, - "canton": null, - "numero_insee": "67178" - } - }, - { - "pk": 25444, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HAEGEN", - "center": "POINT (966166.1058573429472744 2424773.0342229418456554)", - "surface": 20610000, - "canton": null, - "numero_insee": "67179" - } - }, - { - "pk": 20357, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HAGUENAU", - "center": "POINT (1003049.4268199118087068 2441104.9294679267331958)", - "surface": 183580000, - "canton": null, - "numero_insee": "67180" - } - }, - { - "pk": 8036, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HANDSCHUHEIM", - "center": "POINT (986382.9914889244828373 2412940.4106333106756210)", - "surface": 2440000, - "canton": null, - "numero_insee": "67181" - } - }, - { - "pk": 10277, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HANGENBIETEN", - "center": "POINT (989224.8067457743454725 2408361.8974380334839225)", - "surface": 4190000, - "canton": null, - "numero_insee": "67182" - } - }, - { - "pk": 14534, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HARSKIRCHEN", - "center": "POINT (943663.2788691720925272 2446392.6704423772171140)", - "surface": 14650000, - "canton": null, - "numero_insee": "67183" - } - }, - { - "pk": 31295, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HATTEN", - "center": "POINT (1015599.4344588583335280 2447818.8591556595638394)", - "surface": 18870000, - "canton": null, - "numero_insee": "67184" - } - }, - { - "pk": 28488, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HATTMATT", - "center": "POINT (974601.7691112260799855 2432851.8467867332510650)", - "surface": 4180000, - "canton": null, - "numero_insee": "67185" - } - }, - { - "pk": 7267, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HEGENEY", - "center": "POINT (996104.2867416969966143 2445747.6101368167437613)", - "surface": 1730000, - "canton": null, - "numero_insee": "67186" - } - }, - { - "pk": 32953, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HEIDOLSHEIM", - "center": "POINT (984366.1852314888965338 2368691.0243219397962093)", - "surface": 5870000, - "canton": null, - "numero_insee": "67187" - } - }, - { - "pk": 28033, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HEILIGENBERG", - "center": "POINT (972141.8461769919376820 2405011.0791433467529714)", - "surface": 5790000, - "canton": null, - "numero_insee": "67188" - } - }, - { - "pk": 29170, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HEILIGENSTEIN", - "center": "POINT (977553.9340597977861762 2392549.1967392549850047)", - "surface": 3930000, - "canton": null, - "numero_insee": "67189" - } - }, - { - "pk": 5865, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HENGWILLER", - "center": "POINT (967514.7122627615462989 2419280.9276073374785483)", - "surface": 2160000, - "canton": null, - "numero_insee": "67190" - } - }, - { - "pk": 16899, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HERBITZHEIM", - "center": "POINT (947069.0632342896424234 2457529.6311022709123790)", - "surface": 22040000, - "canton": null, - "numero_insee": "67191" - } - }, - { - "pk": 30795, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HERBSHEIM", - "center": "POINT (992626.2960648352745920 2385475.1082073650322855)", - "surface": 8770000, - "canton": null, - "numero_insee": "67192" - } - }, - { - "pk": 26625, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HERRLISHEIM", - "center": "POINT (1009756.3903927013743669 2429355.3005566080100834)", - "surface": 14320000, - "canton": null, - "numero_insee": "67194" - } - }, - { - "pk": 28701, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HESSENHEIM", - "center": "POINT (987365.5602099753450602 2369017.3348027169704437)", - "surface": 5260000, - "canton": null, - "numero_insee": "67195" - } - }, - { - "pk": 26923, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HILSENHEIM", - "center": "POINT (988276.5490883763413876 2379332.8175577074289322)", - "surface": 20310000, - "canton": null, - "numero_insee": "67196" - } - }, - { - "pk": 12297, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HINDISHEIM", - "center": "POINT (990612.7192728172522038 2398366.8691007015295327)", - "surface": 11920000, - "canton": null, - "numero_insee": "67197" - } - }, - { - "pk": 27823, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HINSBOURG", - "center": "POINT (963587.3652763735735789 2445164.5957144419662654)", - "surface": 3360000, - "canton": null, - "numero_insee": "67198" - } - }, - { - "pk": 36076, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HINSINGEN", - "center": "POINT (941436.8130143500166014 2449275.3229554314166307)", - "surface": 3090000, - "canton": null, - "numero_insee": "67199" - } - }, - { - "pk": 7789, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HIPSHEIM", - "center": "POINT (994913.7245864116121083 2398604.4530736752785742)", - "surface": 4470000, - "canton": null, - "numero_insee": "67200" - } - }, - { - "pk": 34136, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HIRSCHLAND", - "center": "POINT (951349.4185350195039064 2437052.9479706566780806)", - "surface": 10820000, - "canton": null, - "numero_insee": "67201" - } - }, - { - "pk": 31027, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOCHFELDEN", - "center": "POINT (984131.0780514902435243 2430232.8592035500332713)", - "surface": 12390000, - "canton": null, - "numero_insee": "67202" - } - }, - { - "pk": 7308, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOCHSTETT", - "center": "POINT (992312.5864365758607164 2433005.9236561716534197)", - "surface": 2070000, - "canton": null, - "numero_insee": "67203" - } - }, - { - "pk": 36479, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOENHEIM", - "center": "POINT (999160.5146010171156377 2416554.1089643426239491)", - "surface": 3430000, - "canton": null, - "numero_insee": "67204" - } - }, - { - "pk": 8050, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOERDT", - "center": "POINT (1000896.2526948077138513 2424074.4653013977222145)", - "surface": 16480000, - "canton": null, - "numero_insee": "67205" - } - }, - { - "pk": 24893, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOFFEN", - "center": "POINT (1009861.1034860743675381 2451771.4998124493286014)", - "surface": 9440000, - "canton": null, - "numero_insee": "67206" - } - }, - { - "pk": 10967, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOHATZENHEIM", - "center": "POINT (988068.3037519073113799 2426264.3556735082529485)", - "surface": 1990000, - "canton": null, - "numero_insee": "67207" - } - }, - { - "pk": 7063, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOHENGOEFT", - "center": "POINT (977822.8537090026075020 2419170.3691028500907123)", - "surface": 3330000, - "canton": null, - "numero_insee": "67208" - } - }, - { - "pk": 25195, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOHFRANKENHEIM", - "center": "POINT (985658.1174778289860114 2427244.0742912143468857)", - "surface": 2760000, - "canton": null, - "numero_insee": "67209" - } - }, - { - "pk": 16557, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LE HOHWALD", - "center": "POINT (968073.0309683093801141 2389564.7304541328921914)", - "surface": 20850000, - "canton": null, - "numero_insee": "67210" - } - }, - { - "pk": 32715, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HOLTZHEIM", - "center": "POINT (991625.4501091354759410 2408482.8629503315314651)", - "surface": 6870000, - "canton": null, - "numero_insee": "67212" - } - }, - { - "pk": 35467, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HUNSPACH", - "center": "POINT (1009937.6002873961115256 2454473.9824856906197965)", - "surface": 5400000, - "canton": null, - "numero_insee": "67213" - } - }, - { - "pk": 34133, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HURTIGHEIM", - "center": "POINT (988165.8340868920786306 2415057.3988457014784217)", - "surface": 4670000, - "canton": null, - "numero_insee": "67214" - } - }, - { - "pk": 37174, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HUTTENDORF", - "center": "POINT (989388.1680362937040627 2435582.2492255032993853)", - "surface": 4380000, - "canton": null, - "numero_insee": "67215" - } - }, - { - "pk": 22689, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "HUTTENHEIM", - "center": "POINT (988021.5687061464414001 2385635.1802101805806160)", - "surface": 12520000, - "canton": null, - "numero_insee": "67216" - } - }, - { - "pk": 32937, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ICHTRATZHEIM", - "center": "POINT (994701.3995490882080048 2400003.6043667085468769)", - "surface": 3150000, - "canton": null, - "numero_insee": "67217" - } - }, - { - "pk": 22745, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ILLKIRCH-GRAFFENSTADEN", - "center": "POINT (998261.8625582830281928 2404838.0271677724085748)", - "surface": 22250000, - "canton": null, - "numero_insee": "67218" - } - }, - { - "pk": 33214, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "INGENHEIM", - "center": "POINT (981552.1118600115878507 2427608.6309239841066301)", - "surface": 5370000, - "canton": null, - "numero_insee": "67220" - } - }, - { - "pk": 30154, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "INGOLSHEIM", - "center": "POINT (1009324.1532499231398106 2455969.6382643040269613)", - "surface": 4420000, - "canton": null, - "numero_insee": "67221" - } - }, - { - "pk": 29800, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "INNENHEIM", - "center": "POINT (986881.6251271869987249 2401636.7548966812901199)", - "surface": 6190000, - "canton": null, - "numero_insee": "67223" - } - }, - { - "pk": 32280, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ISSENHAUSEN", - "center": "POINT (981684.3479279000312090 2435415.1468518502078950)", - "surface": 2090000, - "canton": null, - "numero_insee": "67225" - } - }, - { - "pk": 28252, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ITTENHEIM", - "center": "POINT (988380.7627635647077113 2413358.0757423550821841)", - "surface": 6960000, - "canton": null, - "numero_insee": "67226" - } - }, - { - "pk": 26167, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ITTERSWILLER", - "center": "POINT (977107.5396826192736626 2386340.8459942499175668)", - "surface": 1180000, - "canton": null, - "numero_insee": "67227" - } - }, - { - "pk": 8663, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NEUGARTHEIM-ITTLENHEIM", - "center": "POINT (983327.1448782247025520 2419118.1678783488459885)", - "surface": 4240000, - "canton": null, - "numero_insee": "67228" - } - }, - { - "pk": 14250, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "JETTERSWILLER", - "center": "POINT (974113.5956085774814710 2419938.6823967322707176)", - "surface": 3440000, - "canton": null, - "numero_insee": "67229" - } - }, - { - "pk": 7743, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KALTENHOUSE", - "center": "POINT (1003699.5014464806299657 2435406.6973833595402539)", - "surface": 3720000, - "canton": null, - "numero_insee": "67230" - } - }, - { - "pk": 26496, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KAUFFENHEIM", - "center": "POINT (1017738.2474739679601043 2443534.6053183525800705)", - "surface": 2290000, - "canton": null, - "numero_insee": "67231" - } - }, - { - "pk": 7742, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KEFFENACH", - "center": "POINT (1006028.3001935197971761 2455240.4287940133363008)", - "surface": 2420000, - "canton": null, - "numero_insee": "67232" - } - }, - { - "pk": 19635, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KERTZFELD", - "center": "POINT (986291.7387236531358212 2388922.5173801085911691)", - "surface": 9350000, - "canton": null, - "numero_insee": "67233" - } - }, - { - "pk": 4545, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KESKASTEL", - "center": "POINT (945912.6020922905299813 2452416.2004737714305520)", - "surface": 18730000, - "canton": null, - "numero_insee": "67234" - } - }, - { - "pk": 28842, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KESSELDORF", - "center": "POINT (1019508.7653574118157849 2447052.4361248868517578)", - "surface": 7290000, - "canton": null, - "numero_insee": "67235" - } - }, - { - "pk": 33963, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KIENHEIM", - "center": "POINT (986296.7968748968560249 2422846.5809643836691976)", - "surface": 3260000, - "canton": null, - "numero_insee": "67236" - } - }, - { - "pk": 3966, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KILSTETT", - "center": "POINT (1005503.4615688050398603 2423614.2686117012053728)", - "surface": 6990000, - "canton": null, - "numero_insee": "67237" - } - }, - { - "pk": 30576, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KINDWILLER", - "center": "POINT (985729.3792311038123444 2442054.8420663578435779)", - "surface": 5850000, - "canton": null, - "numero_insee": "67238" - } - }, - { - "pk": 3205, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KINTZHEIM", - "center": "POINT (973811.4148682903032750 2374103.3165174908936024)", - "surface": 18760000, - "canton": null, - "numero_insee": "67239" - } - }, - { - "pk": 30575, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KIRCHHEIM", - "center": "POINT (979776.2425599487032741 2413183.1541981883347034)", - "surface": 2420000, - "canton": null, - "numero_insee": "67240" - } - }, - { - "pk": 27469, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KIRRBERG", - "center": "POINT (947054.6194070458877832 2436115.0875950502231717)", - "surface": 6440000, - "canton": null, - "numero_insee": "67241" - } - }, - { - "pk": 10966, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KIRRWILLER", - "center": "POINT (980968.2560275695286691 2437210.1495668431743979)", - "surface": 5030000, - "canton": null, - "numero_insee": "67242" - } - }, - { - "pk": 25391, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KLEINGOEFT", - "center": "POINT (975690.2343665997032076 2422754.3345545395277441)", - "surface": 2500000, - "canton": null, - "numero_insee": "67244" - } - }, - { - "pk": 8910, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KNOERSHEIM", - "center": "POINT (977004.0878941685659811 2421264.7136209360323846)", - "surface": 2340000, - "canton": null, - "numero_insee": "67245" - } - }, - { - "pk": 9810, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KOGENHEIM", - "center": "POINT (984942.1874432964250445 2383006.5045992685481906)", - "surface": 11650000, - "canton": null, - "numero_insee": "67246" - } - }, - { - "pk": 29156, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KOLBSHEIM", - "center": "POINT (987319.2545660729520023 2408845.6682918425649405)", - "surface": 3400000, - "canton": null, - "numero_insee": "67247" - } - }, - { - "pk": 27432, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KRAUTERGERSHEIM", - "center": "POINT (986403.9420615958515555 2399030.7451354665681720)", - "surface": 6280000, - "canton": null, - "numero_insee": "67248" - } - }, - { - "pk": 12166, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KRAUTWILLER", - "center": "POINT (992448.3666716794250533 2428904.2809507111087441)", - "surface": 1470000, - "canton": null, - "numero_insee": "67249" - } - }, - { - "pk": 12244, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KRIEGSHEIM", - "center": "POINT (996831.8980407067574561 2431143.9719579820521176)", - "surface": 4050000, - "canton": null, - "numero_insee": "67250" - } - }, - { - "pk": 6694, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KURTZENHOUSE", - "center": "POINT (1002050.7824204082135111 2429388.1978313857689500)", - "surface": 3620000, - "canton": null, - "numero_insee": "67252" - } - }, - { - "pk": 9414, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KUTTOLSHEIM", - "center": "POINT (981735.7226863806135952 2418003.5574162267148495)", - "surface": 4710000, - "canton": null, - "numero_insee": "67253" - } - }, - { - "pk": 8873, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "KUTZENHAUSEN", - "center": "POINT (1003755.7160457710269839 2451918.4001826685853302)", - "surface": 7260000, - "canton": null, - "numero_insee": "67254" - } - }, - { - "pk": 32063, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LALAYE", - "center": "POINT (962932.2210051262518391 2382314.8862419123761356)", - "surface": 8220000, - "canton": null, - "numero_insee": "67255" - } - }, - { - "pk": 14253, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LAMPERTHEIM", - "center": "POINT (994529.7586783498991281 2419716.0158654241822660)", - "surface": 6800000, - "canton": null, - "numero_insee": "67256" - } - }, - { - "pk": 32206, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LAMPERTSLOCH", - "center": "POINT (1001324.6350134365493432 2455299.4943615454249084)", - "surface": 10380000, - "canton": null, - "numero_insee": "67257" - } - }, - { - "pk": 37644, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LANDERSHEIM", - "center": "POINT (980194.7601909590885043 2422593.3609962738119066)", - "surface": 2160000, - "canton": null, - "numero_insee": "67258" - } - }, - { - "pk": 36739, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LANGENSOULTZBACH", - "center": "POINT (994720.7147602452896535 2455241.9583686557598412)", - "surface": 13160000, - "canton": null, - "numero_insee": "67259" - } - }, - { - "pk": 9435, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LAUBACH", - "center": "POINT (994612.0989110155496746 2444733.9357917821034789)", - "surface": 1700000, - "canton": null, - "numero_insee": "67260" - } - }, - { - "pk": 33824, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LAUTERBOURG", - "center": "POINT (1028131.8306826462503523 2456534.0786410607397556)", - "surface": 11360000, - "canton": null, - "numero_insee": "67261" - } - }, - { - "pk": 14480, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LEMBACH", - "center": "POINT (997283.9036276212427765 2459667.2256004679948092)", - "surface": 48740000, - "canton": null, - "numero_insee": "67263" - } - }, - { - "pk": 15712, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LEUTENHEIM", - "center": "POINT (1014533.6948181465268135 2443806.8458113805390894)", - "surface": 10400000, - "canton": null, - "numero_insee": "67264" - } - }, - { - "pk": 22622, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LICHTENBERG", - "center": "POINT (977069.3741216603666544 2448283.7774569503962994)", - "surface": 12270000, - "canton": null, - "numero_insee": "67265" - } - }, - { - "pk": 35050, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LIMERSHEIM", - "center": "POINT (991425.4239337872713804 2396972.9412147053517401)", - "surface": 5560000, - "canton": null, - "numero_insee": "67266" - } - }, - { - "pk": 11368, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LINGOLSHEIM", - "center": "POINT (994328.0250986500177532 2408406.3205303014256060)", - "surface": 5690000, - "canton": null, - "numero_insee": "67267" - } - }, - { - "pk": 19337, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LIPSHEIM", - "center": "POINT (992990.7331713126040995 2401089.4956078324466944)", - "surface": 4990000, - "canton": null, - "numero_insee": "67268" - } - }, - { - "pk": 36480, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LITTENHEIM", - "center": "POINT (979260.2681970475241542 2426487.9385473746806383)", - "surface": 4190000, - "canton": null, - "numero_insee": "67269" - } - }, - { - "pk": 13745, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LIXHAUSEN", - "center": "POINT (983294.0273782893782482 2434428.4640808380208910)", - "surface": 3410000, - "canton": null, - "numero_insee": "67270" - } - }, - { - "pk": 31146, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LOBSANN", - "center": "POINT (1003131.8096348166000098 2454614.7759114741347730)", - "surface": 2630000, - "canton": null, - "numero_insee": "67271" - } - }, - { - "pk": 8150, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LOCHWILLER", - "center": "POINT (973686.3876232902985066 2423037.1252306546084583)", - "surface": 4570000, - "canton": null, - "numero_insee": "67272" - } - }, - { - "pk": 31420, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LOHR", - "center": "POINT (961533.0184610695578158 2439743.0952452528290451)", - "surface": 10490000, - "canton": null, - "numero_insee": "67273" - } - }, - { - "pk": 35813, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LORENTZEN", - "center": "POINT (954732.5911015942692757 2450791.5666066226549447)", - "surface": 7950000, - "canton": null, - "numero_insee": "67274" - } - }, - { - "pk": 23807, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LUPSTEIN", - "center": "POINT (977848.0954644603189081 2427776.5577436331659555)", - "surface": 7800000, - "canton": null, - "numero_insee": "67275" - } - }, - { - "pk": 20775, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LUTZELHOUSE", - "center": "POINT (962039.7994993221946061 2404422.9870708328671753)", - "surface": 28550000, - "canton": null, - "numero_insee": "67276" - } - }, - { - "pk": 34030, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MACKENHEIM", - "center": "POINT (989788.0458871215814725 2366636.6380977518856525)", - "surface": 11770000, - "canton": null, - "numero_insee": "67277" - } - }, - { - "pk": 28255, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MACKWILLER", - "center": "POINT (953864.1782803244423121 2447081.5431729615665972)", - "surface": 9160000, - "canton": null, - "numero_insee": "67278" - } - }, - { - "pk": 30028, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MAENNOLSHEIM", - "center": "POINT (977887.2460331579204649 2423273.7820773608982563)", - "surface": 2790000, - "canton": null, - "numero_insee": "67279" - } - }, - { - "pk": 8216, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MAISONSGOUTTE", - "center": "POINT (964617.6887643698137254 2384130.8239599587395787)", - "surface": 5080000, - "canton": null, - "numero_insee": "67280" - } - }, - { - "pk": 13802, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MARCKOLSHEIM", - "center": "POINT (988519.3944020536728203 2362922.8577280221506953)", - "surface": 34030000, - "canton": null, - "numero_insee": "67281" - } - }, - { - "pk": 15147, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MARLENHEIM", - "center": "POINT (980963.0712909839348868 2414794.5978870159015059)", - "surface": 14470000, - "canton": null, - "numero_insee": "67282" - } - }, - { - "pk": 23119, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MARMOUTIER", - "center": "POINT (970489.6247877108398825 2422408.9286752883344889)", - "surface": 14150000, - "canton": null, - "numero_insee": "67283" - } - }, - { - "pk": 35289, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MATZENHEIM", - "center": "POINT (992192.0681596836075187 2389374.1502690515480936)", - "surface": 7130000, - "canton": null, - "numero_insee": "67285" - } - }, - { - "pk": 12165, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MEISTRATZHEIM", - "center": "POINT (986225.5782202300615609 2396527.4059381904080510)", - "surface": 12950000, - "canton": null, - "numero_insee": "67286" - } - }, - { - "pk": 37153, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MELSHEIM", - "center": "POINT (980522.7785984002985060 2430901.9542580447159708)", - "surface": 5290000, - "canton": null, - "numero_insee": "67287" - } - }, - { - "pk": 26698, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MEMMELSHOFFEN", - "center": "POINT (1005235.6756864006165415 2454332.9146094336174428)", - "surface": 1820000, - "canton": null, - "numero_insee": "67288" - } - }, - { - "pk": 8606, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MENCHHOFFEN", - "center": "POINT (978625.9621666583698243 2441892.9811835093423724)", - "surface": 4340000, - "canton": null, - "numero_insee": "67289" - } - }, - { - "pk": 10039, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MERKWILLER-PECHELBRONN", - "center": "POINT (1002365.3454079853836447 2450705.4733189656399190)", - "surface": 3760000, - "canton": null, - "numero_insee": "67290" - } - }, - { - "pk": 25759, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MIETESHEIM", - "center": "POINT (989415.0649301705416292 2443988.2103413022123277)", - "surface": 8570000, - "canton": null, - "numero_insee": "67292" - } - }, - { - "pk": 24434, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MINVERSHEIM", - "center": "POINT (988404.1057125108782202 2433672.3807927351444960)", - "surface": 5550000, - "canton": null, - "numero_insee": "67293" - } - }, - { - "pk": 21235, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MITTELBERGHEIM", - "center": "POINT (977981.1571875030640513 2389450.6790628870949149)", - "surface": 3810000, - "canton": null, - "numero_insee": "67295" - } - }, - { - "pk": 24627, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MITTELHAUSBERGEN", - "center": "POINT (994870.0263762115500867 2415115.7592777144163847)", - "surface": 1730000, - "canton": null, - "numero_insee": "67296" - } - }, - { - "pk": 28254, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MITTELHAUSEN", - "center": "POINT (989177.6912468230584636 2425273.3181379423476756)", - "surface": 5000000, - "canton": null, - "numero_insee": "67297" - } - }, - { - "pk": 10724, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MITTELSCHAEFFOLSHEIM", - "center": "POINT (991088.4462509361328557 2424189.1870600408874452)", - "surface": 2640000, - "canton": null, - "numero_insee": "67298" - } - }, - { - "pk": 28905, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MOLLKIRCH", - "center": "POINT (971471.8323990097269416 2401502.7732322840020061)", - "surface": 12760000, - "canton": null, - "numero_insee": "67299" - } - }, - { - "pk": 35051, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MOLSHEIM", - "center": "POINT (981035.2975397717673331 2406489.3789361198432744)", - "surface": 10680000, - "canton": null, - "numero_insee": "67300" - } - }, - { - "pk": 11103, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MOMMENHEIM", - "center": "POINT (990531.5199496168643236 2430688.8349841441959143)", - "surface": 8350000, - "canton": null, - "numero_insee": "67301" - } - }, - { - "pk": 12718, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MONSWILLER", - "center": "POINT (971233.6032955327536911 2428919.8908993862569332)", - "surface": 4760000, - "canton": null, - "numero_insee": "67302" - } - }, - { - "pk": 29771, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MORSBRONN-LES-BAINS", - "center": "POINT (995583.0694169118069112 2448144.6937339212745428)", - "surface": 6750000, - "canton": null, - "numero_insee": "67303" - } - }, - { - "pk": 7471, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MORSCHWILLER", - "center": "POINT (988570.2622870197519660 2437576.4986542914994061)", - "surface": 4620000, - "canton": null, - "numero_insee": "67304" - } - }, - { - "pk": 9364, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MOTHERN", - "center": "POINT (1025855.8090133818332106 2453612.2477449998259544)", - "surface": 10420000, - "canton": null, - "numero_insee": "67305" - } - }, - { - "pk": 28485, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MUHLBACH-SUR-BRUCHE", - "center": "POINT (967464.9448375434149057 2401968.3212479753419757)", - "surface": 8400000, - "canton": null, - "numero_insee": "67306" - } - }, - { - "pk": 37643, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MULHAUSEN", - "center": "POINT (982604.8748716476839036 2444629.4211447522975504)", - "surface": 3950000, - "canton": null, - "numero_insee": "67307" - } - }, - { - "pk": 27367, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MUNCHHAUSEN", - "center": "POINT (1025579.2265355130657554 2450908.0118928719311953)", - "surface": 5850000, - "canton": null, - "numero_insee": "67308" - } - }, - { - "pk": 12435, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MUNDOLSHEIM", - "center": "POINT (996145.5686226815450937 2418028.8988917903043330)", - "surface": 4310000, - "canton": null, - "numero_insee": "67309" - } - }, - { - "pk": 24712, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MUSSIG", - "center": "POINT (984743.8219437258085236 2371296.2244155001826584)", - "surface": 11680000, - "canton": null, - "numero_insee": "67310" - } - }, - { - "pk": 11798, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MUTTERSHOLTZ", - "center": "POINT (985503.4416966137941927 2376006.2810882697813213)", - "surface": 12610000, - "canton": null, - "numero_insee": "67311" - } - }, - { - "pk": 12105, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MUTZENHOUSE", - "center": "POINT (986146.2358045227592811 2428649.2889511678367853)", - "surface": 2270000, - "canton": null, - "numero_insee": "67312" - } - }, - { - "pk": 14907, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "MUTZIG", - "center": "POINT (977841.1044277641922235 2405560.9681507339701056)", - "surface": 8420000, - "canton": null, - "numero_insee": "67313" - } - }, - { - "pk": 25956, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NATZWILLER", - "center": "POINT (963426.6285105994902551 2394527.9751812350004911)", - "surface": 7300000, - "canton": null, - "numero_insee": "67314" - } - }, - { - "pk": 14145, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NEEWILLER-PRES-LAUTERBOURG", - "center": "POINT (1023343.8321201894432306 2454791.1161973318085074)", - "surface": 7250000, - "canton": null, - "numero_insee": "67315" - } - }, - { - "pk": 20228, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NEUBOIS", - "center": "POINT (969367.6736904520075768 2378768.1479595890268683)", - "surface": 11600000, - "canton": null, - "numero_insee": "67317" - } - }, - { - "pk": 13896, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NEUHAEUSEL", - "center": "POINT (1022473.4130436608102173 2439873.4158375523984432)", - "surface": 3100000, - "canton": null, - "numero_insee": "67319" - } - }, - { - "pk": 7182, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NEUVE-EGLISE", - "center": "POINT (968645.4891045987606049 2381263.6955035449936986)", - "surface": 5660000, - "canton": null, - "numero_insee": "67320" - } - }, - { - "pk": 11347, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NEUVILLER-LA-ROCHE", - "center": "POINT (964442.9078798156697303 2392735.5080834217369556)", - "surface": 9240000, - "canton": null, - "numero_insee": "67321" - } - }, - { - "pk": 19951, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NEUWILLER-LES-SAVERNE", - "center": "POINT (972262.1015349549707025 2437234.5234189312905073)", - "surface": 32130000, - "canton": null, - "numero_insee": "67322" - } - }, - { - "pk": 21339, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERBRONN-LES-BAINS", - "center": "POINT (988229.9201582805253565 2453684.4369262657128274)", - "surface": 31960000, - "canton": null, - "numero_insee": "67324" - } - }, - { - "pk": 13282, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERHASLACH", - "center": "POINT (970042.2558650312712416 2404792.6954976310953498)", - "surface": 6910000, - "canton": null, - "numero_insee": "67325" - } - }, - { - "pk": 26076, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERHAUSBERGEN", - "center": "POINT (995560.8793439872097224 2416222.5466970875859261)", - "surface": 3060000, - "canton": null, - "numero_insee": "67326" - } - }, - { - "pk": 25257, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERLAUTERBACH", - "center": "POINT (1022224.8293393999338150 2456882.7540470939129591)", - "surface": 11220000, - "canton": null, - "numero_insee": "67327" - } - }, - { - "pk": 30600, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERMODERN", - "center": "POINT (988849.5418243791209534 2439980.5676359483040869)", - "surface": 4320000, - "canton": null, - "numero_insee": "67328" - } - }, - { - "pk": 5378, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERNAI", - "center": "POINT (984032.0032129633473232 2395607.6793776275590062)", - "surface": 11170000, - "canton": null, - "numero_insee": "67329" - } - }, - { - "pk": 30934, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERROEDERN", - "center": "POINT (1018781.2692949217744172 2450148.1833503437228501)", - "surface": 7010000, - "canton": null, - "numero_insee": "67330" - } - }, - { - "pk": 29770, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERSCHAEFFOLSHEIM", - "center": "POINT (997316.5159768522717059 2432949.4323094114661217)", - "surface": 6220000, - "canton": null, - "numero_insee": "67331" - } - }, - { - "pk": 29803, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERSOULTZBACH", - "center": "POINT (976738.7349109902279451 2440275.4828784568235278)", - "surface": 4190000, - "canton": null, - "numero_insee": "67333" - } - }, - { - "pk": 14133, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NIEDERSTEINBACH", - "center": "POINT (993057.8967234140727669 2462332.2112786015495658)", - "surface": 8440000, - "canton": null, - "numero_insee": "67334" - } - }, - { - "pk": 27624, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NORDHEIM", - "center": "POINT (980443.6146958598401397 2416991.6210391931235790)", - "surface": 6440000, - "canton": null, - "numero_insee": "67335" - } - }, - { - "pk": 3089, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NORDHOUSE", - "center": "POINT (995431.4696834983769804 2396607.5298355030827224)", - "surface": 11410000, - "canton": null, - "numero_insee": "67336" - } - }, - { - "pk": 35290, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "NOTHALTEN", - "center": "POINT (975918.0681577539071441 2385029.5663437852635980)", - "surface": 4170000, - "canton": null, - "numero_insee": "67337" - } - }, - { - "pk": 37847, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBENHEIM", - "center": "POINT (996119.8557989588007331 2386506.2471810942515731)", - "surface": 7930000, - "canton": null, - "numero_insee": "67338" - } - }, - { - "pk": 3547, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "BETSCHDORF", - "center": "POINT (1009400.0735314872581512 2447264.4403231935575604)", - "surface": 27980000, - "canton": null, - "numero_insee": "67339" - } - }, - { - "pk": 19540, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERBRONN", - "center": "POINT (985254.2575914395274594 2450656.5238586692139506)", - "surface": 21160000, - "canton": null, - "numero_insee": "67340" - } - }, - { - "pk": 3877, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERDORF-SPACHBACH", - "center": "POINT (997866.1424500137800351 2450265.9985562083311379)", - "surface": 2300000, - "canton": null, - "numero_insee": "67341" - } - }, - { - "pk": 13550, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERHASLACH", - "center": "POINT (965810.0527724339626729 2408158.3388464255258441)", - "surface": 25260000, - "canton": null, - "numero_insee": "67342" - } - }, - { - "pk": 5488, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERHAUSBERGEN", - "center": "POINT (994076.4957340644905344 2414308.2880692882463336)", - "surface": 3780000, - "canton": null, - "numero_insee": "67343" - } - }, - { - "pk": 10414, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERHOFFEN-LES-WISSEMBOURG", - "center": "POINT (1007885.8015708818566054 2460259.9682053956203163)", - "surface": 3050000, - "canton": null, - "numero_insee": "67344" - } - }, - { - "pk": 35690, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERHOFFEN-SUR-MODER", - "center": "POINT (1007809.8552288557402790 2434541.9112574108876288)", - "surface": 14320000, - "canton": null, - "numero_insee": "67345" - } - }, - { - "pk": 37570, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERLAUTERBACH", - "center": "POINT (1019550.3038687515072525 2453757.3224661839194596)", - "surface": 5450000, - "canton": null, - "numero_insee": "67346" - } - }, - { - "pk": 16973, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERMODERN-ZUTZENDORF", - "center": "POINT (981841.8208245246205479 2440319.8626420013606548)", - "surface": 14410000, - "canton": null, - "numero_insee": "67347" - } - }, - { - "pk": 23231, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERNAI", - "center": "POINT (980218.2574114894960076 2396875.4433210953138769)", - "surface": 25740000, - "canton": null, - "numero_insee": "67348" - } - }, - { - "pk": 27151, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERROEDERN", - "center": "POINT (1012767.2005639960989356 2451296.5122649576514959)", - "surface": 4950000, - "canton": null, - "numero_insee": "67349" - } - }, - { - "pk": 7181, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERSCHAEFFOLSHEIM", - "center": "POINT (991491.4168672007508576 2412384.4466988076455891)", - "surface": 7630000, - "canton": null, - "numero_insee": "67350" - } - }, - { - "pk": 20600, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SEEBACH", - "center": "POINT (1013831.1916389191756025 2455508.6191092412918806)", - "surface": 17140000, - "canton": null, - "numero_insee": "67351" - } - }, - { - "pk": 6745, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERSOULTZBACH", - "center": "POINT (975037.7064900442492217 2440260.6942433291114867)", - "surface": 5150000, - "canton": null, - "numero_insee": "67352" - } - }, - { - "pk": 22560, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OBERSTEINBACH", - "center": "POINT (990057.8749385764822364 2462105.9554739268496633)", - "surface": 9120000, - "canton": null, - "numero_insee": "67353" - } - }, - { - "pk": 5611, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ODRATZHEIM", - "center": "POINT (979881.5259301650803536 2412583.6481363358907402)", - "surface": 1620000, - "canton": null, - "numero_insee": "67354" - } - }, - { - "pk": 6293, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OERMINGEN", - "center": "POINT (949992.4720771042630076 2455053.3198041510768235)", - "surface": 14790000, - "canton": null, - "numero_insee": "67355" - } - }, - { - "pk": 12519, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OFFENDORF", - "center": "POINT (1011173.8326197183923796 2427466.3467946634627879)", - "surface": 14100000, - "canton": null, - "numero_insee": "67356" - } - }, - { - "pk": 16811, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OFFWILLER", - "center": "POINT (981474.6195399259449914 2448021.8877140218392015)", - "surface": 15870000, - "canton": null, - "numero_insee": "67358" - } - }, - { - "pk": 35537, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OHLUNGEN", - "center": "POINT (993377.5360780680784956 2437118.0079610743559897)", - "surface": 8340000, - "canton": null, - "numero_insee": "67359" - } - }, - { - "pk": 11287, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OHNENHEIM", - "center": "POINT (983982.4549749293364584 2366786.2838241499848664)", - "surface": 12020000, - "canton": null, - "numero_insee": "67360" - } - }, - { - "pk": 7064, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OLWISHEIM", - "center": "POINT (992688.5646434882655740 2424303.1868718257173896)", - "surface": 2990000, - "canton": null, - "numero_insee": "67361" - } - }, - { - "pk": 13417, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ORSCHWILLER", - "center": "POINT (972421.7961670589866117 2372790.2895192997530103)", - "surface": 6230000, - "canton": null, - "numero_insee": "67362" - } - }, - { - "pk": 6498, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OSTHOFFEN", - "center": "POINT (985291.8775927298702300 2411830.1437859637662768)", - "surface": 5230000, - "canton": null, - "numero_insee": "67363" - } - }, - { - "pk": 27822, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OSTHOUSE", - "center": "POINT (993283.1970858231652528 2390484.4419411513954401)", - "surface": 9800000, - "canton": null, - "numero_insee": "67364" - } - }, - { - "pk": 33676, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OSTWALD", - "center": "POINT (996335.3872856202069670 2407723.3049249984323978)", - "surface": 7020000, - "canton": null, - "numero_insee": "67365" - } - }, - { - "pk": 25587, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OTTERSTHAL", - "center": "POINT (967926.3625273602083325 2429491.5698596155270934)", - "surface": 3050000, - "canton": null, - "numero_insee": "67366" - } - }, - { - "pk": 13399, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OTTERSWILLER", - "center": "POINT (970862.0499947230564430 2425614.3830662611871958)", - "surface": 3330000, - "canton": null, - "numero_insee": "67367" - } - }, - { - "pk": 14908, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OTTROTT", - "center": "POINT (972032.1406678963685408 2394602.7154814261011779)", - "surface": 29280000, - "canton": null, - "numero_insee": "67368" - } - }, - { - "pk": 8396, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "OTTWILLER", - "center": "POINT (958823.5687415102729574 2440620.1852203528396785)", - "surface": 5100000, - "canton": null, - "numero_insee": "67369" - } - }, - { - "pk": 11348, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PETERSBACH", - "center": "POINT (961911.5401681561488658 2442248.0798601880669594)", - "surface": 8970000, - "canton": null, - "numero_insee": "67370" - } - }, - { - "pk": 22997, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LA PETITE-PIERRE", - "center": "POINT (966022.7031998834572732 2441283.1045438153669238)", - "surface": 19880000, - "canton": null, - "numero_insee": "67371" - } - }, - { - "pk": 35330, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PFAFFENHOFFEN", - "center": "POINT (986147.0356574009638280 2440057.1153804664500058)", - "surface": 3550000, - "canton": null, - "numero_insee": "67372" - } - }, - { - "pk": 28034, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PFALZWEYER", - "center": "POINT (961477.2644657834898680 2434639.1317676641047001)", - "surface": 2270000, - "canton": null, - "numero_insee": "67373" - } - }, - { - "pk": 25020, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PFETTISHEIM", - "center": "POINT (991424.3458649453241378 2420089.2577832527458668)", - "surface": 4890000, - "canton": null, - "numero_insee": "67374" - } - }, - { - "pk": 11781, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PFULGRIESHEIM", - "center": "POINT (992440.6481934188632295 2418296.8483351846225560)", - "surface": 4790000, - "canton": null, - "numero_insee": "67375" - } - }, - { - "pk": 20971, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PLAINE", - "center": "POINT (955148.2212177981855348 2391353.9082716181874275)", - "surface": 22750000, - "canton": null, - "numero_insee": "67377" - } - }, - { - "pk": 24232, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PLOBSHEIM", - "center": "POINT (999018.9593183231772855 2398339.9890069221146405)", - "surface": 16610000, - "canton": null, - "numero_insee": "67378" - } - }, - { - "pk": 32508, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PRINTZHEIM", - "center": "POINT (977595.7714880555868149 2433778.4934381390921772)", - "surface": 4280000, - "canton": null, - "numero_insee": "67380" - } - }, - { - "pk": 28487, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "PUBERG", - "center": "POINT (964273.8813622465822846 2446771.6384785510599613)", - "surface": 4970000, - "canton": null, - "numero_insee": "67381" - } - }, - { - "pk": 36930, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "QUATZENHEIM", - "center": "POINT (986055.8142459415830672 2416039.7392461053095758)", - "surface": 3160000, - "canton": null, - "numero_insee": "67382" - } - }, - { - "pk": 13398, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RANGEN", - "center": "POINT (978411.9164208027068526 2420476.3969187047332525)", - "surface": 1670000, - "canton": null, - "numero_insee": "67383" - } - }, - { - "pk": 17312, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RANRUPT", - "center": "POINT (959798.0738702596863732 2385990.3630295973271132)", - "surface": 15140000, - "canton": null, - "numero_insee": "67384" - } - }, - { - "pk": 35540, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RATZWILLER", - "center": "POINT (960239.3424863305408508 2450439.0953802252188325)", - "surface": 8920000, - "canton": null, - "numero_insee": "67385" - } - }, - { - "pk": 12315, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RAUWILLER", - "center": "POINT (950674.1627143799560145 2434145.1104034227319062)", - "surface": 4940000, - "canton": null, - "numero_insee": "67386" - } - }, - { - "pk": 28253, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "REICHSFELD", - "center": "POINT (973510.4245863750111312 2385709.1502400226891041)", - "surface": 5020000, - "canton": null, - "numero_insee": "67387" - } - }, - { - "pk": 17384, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "REICHSHOFFEN", - "center": "POINT (991055.9789147756528109 2450907.1582236746326089)", - "surface": 17060000, - "canton": null, - "numero_insee": "67388" - } - }, - { - "pk": 26562, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "REICHSTETT", - "center": "POINT (999237.9134430284611881 2419156.6027516336180270)", - "surface": 7860000, - "canton": null, - "numero_insee": "67389" - } - }, - { - "pk": 23837, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "REINHARDSMUNSTER", - "center": "POINT (965300.3106194324791431 2420762.7389771165326238)", - "surface": 18560000, - "canton": null, - "numero_insee": "67391" - } - }, - { - "pk": 22571, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "REIPERTSWILLER", - "center": "POINT (974244.2127524786628783 2450961.0322811058722436)", - "surface": 19300000, - "canton": null, - "numero_insee": "67392" - } - }, - { - "pk": 8481, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RETSCHWILLER", - "center": "POINT (1006344.1820403395686299 2453441.9747748668305576)", - "surface": 3230000, - "canton": null, - "numero_insee": "67394" - } - }, - { - "pk": 14078, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "REUTENBOURG", - "center": "POINT (973300.9239639049628749 2421332.5938526941463351)", - "surface": 4470000, - "canton": null, - "numero_insee": "67395" - } - }, - { - "pk": 28486, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "REXINGEN", - "center": "POINT (954883.0104461733717471 2444988.9665927654132247)", - "surface": 2340000, - "canton": null, - "numero_insee": "67396" - } - }, - { - "pk": 18880, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RHINAU", - "center": "POINT (997862.7861239123158157 2381717.9374488727189600)", - "surface": 17250000, - "canton": null, - "numero_insee": "67397" - } - }, - { - "pk": 35777, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RICHTOLSHEIM", - "center": "POINT (991148.0472234033513814 2371351.9409152935259044)", - "surface": 3600000, - "canton": null, - "numero_insee": "67398" - } - }, - { - "pk": 12804, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RIEDSELTZ", - "center": "POINT (1010606.5971896841656417 2458082.2292979070916772)", - "surface": 9990000, - "canton": null, - "numero_insee": "67400" - } - }, - { - "pk": 26599, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RIMSDORF", - "center": "POINT (950259.4199490307364613 2447350.4730576812289655)", - "surface": 6070000, - "canton": null, - "numero_insee": "67401" - } - }, - { - "pk": 5786, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RINGELDORF", - "center": "POINT (986760.4607581673189998 2438561.4306153040379286)", - "surface": 2770000, - "canton": null, - "numero_insee": "67402" - } - }, - { - "pk": 32850, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RINGENDORF", - "center": "POINT (983278.3585901381447911 2436229.5607194183394313)", - "surface": 3830000, - "canton": null, - "numero_insee": "67403" - } - }, - { - "pk": 28416, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RITTERSHOFFEN", - "center": "POINT (1011496.9715811874484643 2447783.0676991669461131)", - "surface": 12260000, - "canton": null, - "numero_insee": "67404" - } - }, - { - "pk": 31770, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROESCHWOOG", - "center": "POINT (1018669.3582860401365906 2440040.3449214310385287)", - "surface": 9820000, - "canton": null, - "numero_insee": "67405" - } - }, - { - "pk": 11928, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROHR", - "center": "POINT (982591.8945737774483860 2423114.5572944688610733)", - "surface": 3440000, - "canton": null, - "numero_insee": "67406" - } - }, - { - "pk": 10162, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROHRWILLER", - "center": "POINT (1009139.4432737033348531 2431251.2327622924931347)", - "surface": 3000000, - "canton": null, - "numero_insee": "67407" - } - }, - { - "pk": 35925, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROMANSWILLER", - "center": "POINT (971541.5431153990793973 2416513.9571637529879808)", - "surface": 11720000, - "canton": null, - "numero_insee": "67408" - } - }, - { - "pk": 14975, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROPPENHEIM", - "center": "POINT (1020454.7285812437767163 2441857.1579510956071317)", - "surface": 7010000, - "canton": null, - "numero_insee": "67409" - } - }, - { - "pk": 35778, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROSENWILLER", - "center": "POINT (975869.4109259848482907 2402141.4158247751183808)", - "surface": 5640000, - "canton": null, - "numero_insee": "67410" - } - }, - { - "pk": 14375, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROSHEIM", - "center": "POINT (974987.1023732181638479 2400032.2525525381788611)", - "surface": 30030000, - "canton": null, - "numero_insee": "67411" - } - }, - { - "pk": 21406, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROSSFELD", - "center": "POINT (990942.6097308709286153 2383459.0023259688168764)", - "surface": 6300000, - "canton": null, - "numero_insee": "67412" - } - }, - { - "pk": 7912, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROSTEIG", - "center": "POINT (966258.5654489276930690 2448690.1577892364002764)", - "surface": 7740000, - "canton": null, - "numero_insee": "67413" - } - }, - { - "pk": 32507, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROTHAU", - "center": "POINT (960126.2510104748653248 2394299.1831809761933982)", - "surface": 3850000, - "canton": null, - "numero_insee": "67414" - } - }, - { - "pk": 32940, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROTHBACH", - "center": "POINT (979285.4849227075465024 2446601.9015324986539781)", - "surface": 7940000, - "canton": null, - "numero_insee": "67415" - } - }, - { - "pk": 12255, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROTT", - "center": "POINT (1007277.5945780198089778 2461155.2640078165568411)", - "surface": 3290000, - "canton": null, - "numero_insee": "67416" - } - }, - { - "pk": 32939, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROTTELSHEIM", - "center": "POINT (995029.0515625202096999 2431328.4079866409301758)", - "surface": 2410000, - "canton": null, - "numero_insee": "67417" - } - }, - { - "pk": 28932, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ROUNTZENHEIM", - "center": "POINT (1015570.0955782894743606 2439713.0933047328144312)", - "surface": 6490000, - "canton": null, - "numero_insee": "67418" - } - }, - { - "pk": 5316, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "RUSS", - "center": "POINT (964489.9738380874041468 2398840.2800548747181892)", - "surface": 11400000, - "canton": null, - "numero_insee": "67420" - } - }, - { - "pk": 14348, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAALES", - "center": "POINT (953617.4942863514879718 2383234.7864908687770367)", - "surface": 9880000, - "canton": null, - "numero_insee": "67421" - } - }, - { - "pk": 29351, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAASENHEIM", - "center": "POINT (992438.4545352775603533 2372564.0541815385222435)", - "surface": 7770000, - "canton": null, - "numero_insee": "67422" - } - }, - { - "pk": 28906, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAESSOLSHEIM", - "center": "POINT (980776.8567678646650165 2424699.8809672212228179)", - "surface": 6670000, - "canton": null, - "numero_insee": "67423" - } - }, - { - "pk": 27223, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAINT-BLAISE-LA-ROCHE", - "center": "POINT (957964.7824743576347828 2389677.1227646088227630)", - "surface": 2380000, - "canton": null, - "numero_insee": "67424" - } - }, - { - "pk": 8664, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAINT-JEAN-SAVERNE", - "center": "POINT (968807.7895233719609678 2431700.7405508146621287)", - "surface": 6490000, - "canton": null, - "numero_insee": "67425" - } - }, - { - "pk": 12181, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAINT-MAURICE", - "center": "POINT (970438.8387809928972274 2382179.9265130325220525)", - "surface": 1590000, - "canton": null, - "numero_insee": "67427" - } - }, - { - "pk": 4904, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAINT-NABOR", - "center": "POINT (975734.5129923548083752 2394634.8892384530045092)", - "surface": 1960000, - "canton": null, - "numero_insee": "67428" - } - }, - { - "pk": 12564, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAINT-PIERRE", - "center": "POINT (979690.0844526465516537 2388564.8865902516990900)", - "surface": 3210000, - "canton": null, - "numero_insee": "67429" - } - }, - { - "pk": 3442, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAINT-PIERRE-BOIS", - "center": "POINT (972536.7280661081895232 2382598.4425170347094536)", - "surface": 7620000, - "canton": null, - "numero_insee": "67430" - } - }, - { - "pk": 10621, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SALENTHAL", - "center": "POINT (970016.2656662680674344 2419302.6591271087527275)", - "surface": 1340000, - "canton": null, - "numero_insee": "67431" - } - }, - { - "pk": 15407, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SALMBACH", - "center": "POINT (1019619.7914266389561817 2457260.2779654380865395)", - "surface": 8770000, - "canton": null, - "numero_insee": "67432" - } - }, - { - "pk": 25373, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAND", - "center": "POINT (991099.1955239910166711 2388463.9880707552656531)", - "surface": 6340000, - "canton": null, - "numero_insee": "67433" - } - }, - { - "pk": 27862, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SARRE-UNION", - "center": "POINT (948043.3525875767227262 2449032.3968528271652758)", - "surface": 15460000, - "canton": null, - "numero_insee": "67434" - } - }, - { - "pk": 25601, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SARREWERDEN", - "center": "POINT (947179.2569155776873231 2444822.0741430623456836)", - "surface": 16820000, - "canton": null, - "numero_insee": "67435" - } - }, - { - "pk": 5496, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAULXURES", - "center": "POINT (954378.0866522793658078 2387844.7087924946099520)", - "surface": 12940000, - "canton": null, - "numero_insee": "67436" - } - }, - { - "pk": 19723, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SAVERNE", - "center": "POINT (968044.6779323983937502 2427391.1495683277025819)", - "surface": 26360000, - "canton": null, - "numero_insee": "67437" - } - }, - { - "pk": 30354, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHAEFFERSHEIM", - "center": "POINT (990243.8148249664809555 2394761.0802138173021376)", - "surface": 4100000, - "canton": null, - "numero_insee": "67438" - } - }, - { - "pk": 32941, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHAFFHOUSE-SUR-ZORN", - "center": "POINT (983852.6566527045797557 2427728.7118171527981758)", - "surface": 3730000, - "canton": null, - "numero_insee": "67439" - } - }, - { - "pk": 10662, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHAFFHOUSE-PRES-SELTZ", - "center": "POINT (1021482.0133815484587103 2450271.8277711230330169)", - "surface": 4470000, - "canton": null, - "numero_insee": "67440" - } - }, - { - "pk": 13281, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHALKENDORF", - "center": "POINT (983952.6679544830694795 2439237.4764163102954626)", - "surface": 5130000, - "canton": null, - "numero_insee": "67441" - } - }, - { - "pk": 23234, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHARRACHBERGHEIM-IRMSTETT", - "center": "POINT (979992.0301038069883361 2411383.7650412512011826)", - "surface": 3330000, - "canton": null, - "numero_insee": "67442" - } - }, - { - "pk": 35947, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHEIBENHARD", - "center": "POINT (1025026.4923709984868765 2456907.2208262104541063)", - "surface": 4590000, - "canton": null, - "numero_insee": "67443" - } - }, - { - "pk": 33592, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHERLENHEIM", - "center": "POINT (981921.0252372677205130 2431214.3222840572707355)", - "surface": 2270000, - "canton": null, - "numero_insee": "67444" - } - }, - { - "pk": 16734, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHERWILLER", - "center": "POINT (976576.7284533319761977 2378330.4192616348154843)", - "surface": 18850000, - "canton": null, - "numero_insee": "67445" - } - }, - { - "pk": 6153, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHILLERSDORF", - "center": "POINT (980419.2164052570005879 2442809.1882519349455833)", - "surface": 7500000, - "canton": null, - "numero_insee": "67446" - } - }, - { - "pk": 13697, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHILTIGHEIM", - "center": "POINT (997273.2715374585241079 2414936.5479861688800156)", - "surface": 7630000, - "canton": null, - "numero_insee": "67447" - } - }, - { - "pk": 14707, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHIRMECK", - "center": "POINT (959183.1223238552920520 2399194.4978132909163833)", - "surface": 11510000, - "canton": null, - "numero_insee": "67448" - } - }, - { - "pk": 24169, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHIRRHEIN", - "center": "POINT (1009794.4978478953707963 2436460.5212977430783212)", - "surface": 6600000, - "canton": null, - "numero_insee": "67449" - } - }, - { - "pk": 5101, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHIRRHOFFEN", - "center": "POINT (1010383.5190421671140939 2437766.5489034587517381)", - "surface": 640000, - "canton": null, - "numero_insee": "67450" - } - }, - { - "pk": 34974, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHLEITHAL", - "center": "POINT (1016709.3379697749624029 2458235.5429151253774762)", - "surface": 9280000, - "canton": null, - "numero_insee": "67451" - } - }, - { - "pk": 21902, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHNERSHEIM", - "center": "POINT (985324.0363361597992480 2419635.8888548603281379)", - "surface": 11090000, - "canton": null, - "numero_insee": "67452" - } - }, - { - "pk": 36021, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHOENAU", - "center": "POINT (994545.9370749862864614 2371881.8835983108729124)", - "surface": 10290000, - "canton": null, - "numero_insee": "67453" - } - }, - { - "pk": 8745, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHOENBOURG", - "center": "POINT (961753.1214308594353497 2437443.4396987035870552)", - "surface": 5090000, - "canton": null, - "numero_insee": "67454" - } - }, - { - "pk": 34508, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHOENENBOURG", - "center": "POINT (1008544.6203987310873345 2453561.2294174474664032)", - "surface": 5470000, - "canton": null, - "numero_insee": "67455" - } - }, - { - "pk": 19238, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHOPPERTEN", - "center": "POINT (945440.9335731766186655 2449109.8982082577422261)", - "surface": 4360000, - "canton": null, - "numero_insee": "67456" - } - }, - { - "pk": 23083, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHWEIGHOUSE-SUR-MODER", - "center": "POINT (996473.3210245298687369 2437845.4478172557428479)", - "surface": 9970000, - "canton": null, - "numero_insee": "67458" - } - }, - { - "pk": 8911, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHWENHEIM", - "center": "POINT (973169.5553146301535890 2424933.9508772296831012)", - "surface": 5010000, - "canton": null, - "numero_insee": "67459" - } - }, - { - "pk": 6729, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SCHWINDRATZHEIM", - "center": "POINT (987022.4076625220477581 2431458.8435690361075103)", - "surface": 9520000, - "canton": null, - "numero_insee": "67460" - } - }, - { - "pk": 17012, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SELESTAT", - "center": "POINT (980422.7143219778081402 2373360.1921896953135729)", - "surface": 47440000, - "canton": null, - "numero_insee": "67462" - } - }, - { - "pk": 14560, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SELTZ", - "center": "POINT (1022800.2664484172128141 2448281.9853568566031754)", - "surface": 20840000, - "canton": null, - "numero_insee": "67463" - } - }, - { - "pk": 27534, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SERMERSHEIM", - "center": "POINT (986430.1061436610762030 2384520.5367530360817909)", - "surface": 10070000, - "canton": null, - "numero_insee": "67464" - } - }, - { - "pk": 33842, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SESSENHEIM", - "center": "POINT (1014495.6173115263227373 2436701.6645872825756669)", - "surface": 9210000, - "canton": null, - "numero_insee": "67465" - } - }, - { - "pk": 31998, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SIEGEN", - "center": "POINT (1017538.6316974782384932 2454940.5694643086753786)", - "surface": 7970000, - "canton": null, - "numero_insee": "67466" - } - }, - { - "pk": 33935, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SIEWILLER", - "center": "POINT (957245.1815694603137672 2438004.7164601176045835)", - "surface": 6240000, - "canton": null, - "numero_insee": "67467" - } - }, - { - "pk": 28950, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SILTZHEIM", - "center": "POINT (947431.1191978307906538 2461935.6899770870804787)", - "surface": 7220000, - "canton": null, - "numero_insee": "67468" - } - }, - { - "pk": 31618, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SINGRIST", - "center": "POINT (971713.8441227161092684 2419717.6879349313676357)", - "surface": 3530000, - "canton": null, - "numero_insee": "67469" - } - }, - { - "pk": 28700, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SOLBACH", - "center": "POINT (959741.6265098052099347 2392494.5545566370710731)", - "surface": 2750000, - "canton": null, - "numero_insee": "67470" - } - }, - { - "pk": 19446, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SOUFFELWEYERSHEIM", - "center": "POINT (998252.9794394870987162 2417346.7639523446559906)", - "surface": 4620000, - "canton": null, - "numero_insee": "67471" - } - }, - { - "pk": 18711, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SOUFFLENHEIM", - "center": "POINT (1012582.2394527703290805 2438085.9319286928512156)", - "surface": 13320000, - "canton": null, - "numero_insee": "67472" - } - }, - { - "pk": 34371, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SOULTZ-LES-BAINS", - "center": "POINT (979313.3418854095507413 2408876.1015952443704009)", - "surface": 3490000, - "canton": null, - "numero_insee": "67473" - } - }, - { - "pk": 14753, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SOULTZ-SOUS-FORETS", - "center": "POINT (1005853.4802198648685589 2452336.9568976219743490)", - "surface": 15420000, - "canton": null, - "numero_insee": "67474" - } - }, - { - "pk": 27020, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SPARSBACH", - "center": "POINT (971310.2512461240403354 2443130.2657688204199076)", - "surface": 13660000, - "canton": null, - "numero_insee": "67475" - } - }, - { - "pk": 30724, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STATTMATTEN", - "center": "POINT (1017196.3902028733864427 2436825.2990088947117329)", - "surface": 3940000, - "canton": null, - "numero_insee": "67476" - } - }, - { - "pk": 31645, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STEIGE", - "center": "POINT (962408.4433829316403717 2385012.2964444705285132)", - "surface": 10250000, - "canton": null, - "numero_insee": "67477" - } - }, - { - "pk": 33190, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STEINBOURG", - "center": "POINT (973121.7247839316260070 2430437.3327535651624203)", - "surface": 12600000, - "canton": null, - "numero_insee": "67478" - } - }, - { - "pk": 30269, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STEINSELTZ", - "center": "POINT (1008991.6870505977421999 2459669.2125108214095235)", - "surface": 5440000, - "canton": null, - "numero_insee": "67479" - } - }, - { - "pk": 23545, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STILL", - "center": "POINT (971012.4603047484997660 2408303.5995014202781022)", - "surface": 23130000, - "canton": null, - "numero_insee": "67480" - } - }, - { - "pk": 15074, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STOTZHEIM", - "center": "POINT (982799.0498041347600520 2387791.3428901717998087)", - "surface": 13630000, - "canton": null, - "numero_insee": "67481" - } - }, - { - "pk": 19072, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STRASBOURG", - "center": "POINT (1000611.9518946472089738 2410762.6748081324622035)", - "surface": 78090000, - "canton": null, - "numero_insee": "67482" - } - }, - { - "pk": 9625, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STRUTH", - "center": "POINT (961593.9835026401560754 2444246.6774128214456141)", - "surface": 4100000, - "canton": null, - "numero_insee": "67483" - } - }, - { - "pk": 29051, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STUNDWILLER", - "center": "POINT (1014570.0229215644067153 2451112.1064625396393239)", - "surface": 3310000, - "canton": null, - "numero_insee": "67484" - } - }, - { - "pk": 10082, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "STUTZHEIM-OFFENHEIM", - "center": "POINT (989857.3174910133238882 2416172.8910902817733586)", - "surface": 7340000, - "canton": null, - "numero_insee": "67485" - } - }, - { - "pk": 22935, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SUNDHOUSE", - "center": "POINT (992527.1982460786821321 2373865.7817290155217052)", - "surface": 15900000, - "canton": null, - "numero_insee": "67486" - } - }, - { - "pk": 25311, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "SURBOURG", - "center": "POINT (1002983.1466588706243783 2448709.5086025563068688)", - "surface": 10420000, - "canton": null, - "numero_insee": "67487" - } - }, - { - "pk": 10027, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "THAL-DRULINGEN", - "center": "POINT (951876.0016103432280943 2445563.2823134618811309)", - "surface": 5330000, - "canton": null, - "numero_insee": "67488" - } - }, - { - "pk": 23407, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "THAL-MARMOUTIER", - "center": "POINT (968287.3939379747025669 2422489.8654384389519691)", - "surface": 3440000, - "canton": null, - "numero_insee": "67489" - } - }, - { - "pk": 10965, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "THANVILLE", - "center": "POINT (971446.4441683399491012 2381388.0982717354781926)", - "surface": 2050000, - "canton": null, - "numero_insee": "67490" - } - }, - { - "pk": 25118, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "TIEFFENBACH", - "center": "POINT (959686.7608543466776609 2444930.5923297577537596)", - "surface": 5100000, - "canton": null, - "numero_insee": "67491" - } - }, - { - "pk": 30794, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "TRAENHEIM", - "center": "POINT (978087.3568361186189577 2411767.4853894235566258)", - "surface": 3100000, - "canton": null, - "numero_insee": "67492" - } - }, - { - "pk": 8269, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "TRIEMBACH-AU-VAL", - "center": "POINT (970228.2779482011683285 2383378.9685405781492591)", - "surface": 2980000, - "canton": null, - "numero_insee": "67493" - } - }, - { - "pk": 31769, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "TRIMBACH", - "center": "POINT (1016054.3296196988085285 2453026.3383851512335241)", - "surface": 3980000, - "canton": null, - "numero_insee": "67494" - } - }, - { - "pk": 22319, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "TRUCHTERSHEIM", - "center": "POINT (988827.9546431886265054 2419466.2396048614755273)", - "surface": 10110000, - "canton": null, - "numero_insee": "67495" - } - }, - { - "pk": 10153, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "UBERACH", - "center": "POINT (988438.8484368694480509 2441177.8102365764789283)", - "surface": 2020000, - "canton": null, - "numero_insee": "67496" - } - }, - { - "pk": 20521, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "UHLWILLER", - "center": "POINT (991869.6542670929338783 2437905.4256636491045356)", - "surface": 7430000, - "canton": null, - "numero_insee": "67497" - } - }, - { - "pk": 25561, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "UHRWILLER", - "center": "POINT (984410.3112147023202851 2444144.7899718717671931)", - "surface": 11010000, - "canton": null, - "numero_insee": "67498" - } - }, - { - "pk": 24888, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "URBEIS", - "center": "POINT (960637.6727506222669035 2381494.3890035399235785)", - "surface": 12330000, - "canton": null, - "numero_insee": "67499" - } - }, - { - "pk": 12587, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "URMATT", - "center": "POINT (966038.8554200646467507 2404857.9931242661550641)", - "surface": 13630000, - "canton": null, - "numero_insee": "67500" - } - }, - { - "pk": 6624, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "UTTENHEIM", - "center": "POINT (989063.0721531452145427 2392449.1523669692687690)", - "surface": 4830000, - "canton": null, - "numero_insee": "67501" - } - }, - { - "pk": 12990, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "UTTENHOFFEN", - "center": "POINT (989098.3352185224648565 2445886.7408247594721615)", - "surface": 2000000, - "canton": null, - "numero_insee": "67502" - } - }, - { - "pk": 31029, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "UTTWILLER", - "center": "POINT (978642.4948679606895894 2439991.8325278204865754)", - "surface": 2900000, - "canton": null, - "numero_insee": "67503" - } - }, - { - "pk": 37642, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "VALFF", - "center": "POINT (983954.5684032109566033 2393005.1401338293217123)", - "surface": 10970000, - "canton": null, - "numero_insee": "67504" - } - }, - { - "pk": 14192, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LA VANCELLE", - "center": "POINT (969588.6639429058413953 2376368.3154695876874030)", - "surface": 8140000, - "canton": null, - "numero_insee": "67505" - } - }, - { - "pk": 19248, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "VENDENHEIM", - "center": "POINT (997718.6762862550094724 2421244.8345087948255241)", - "surface": 16340000, - "canton": null, - "numero_insee": "67506" - } - }, - { - "pk": 29352, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "VILLE", - "center": "POINT (968028.5863360220100731 2383159.7175508621148765)", - "surface": 3100000, - "canton": null, - "numero_insee": "67507" - } - }, - { - "pk": 20086, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "VOELLERDINGEN", - "center": "POINT (951418.4735168250044808 2452163.7509055947884917)", - "surface": 13500000, - "canton": null, - "numero_insee": "67508" - } - }, - { - "pk": 25222, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "VOLKSBERG", - "center": "POINT (963349.8803155901841819 2449465.4326522760093212)", - "surface": 9490000, - "canton": null, - "numero_insee": "67509" - } - }, - { - "pk": 5463, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WAHLENHEIM", - "center": "POINT (993122.6594897699542344 2431912.2203112817369401)", - "surface": 2540000, - "canton": null, - "numero_insee": "67510" - } - }, - { - "pk": 15633, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WALBOURG", - "center": "POINT (999307.0835621699225157 2445675.4439533855766058)", - "surface": 5330000, - "canton": null, - "numero_insee": "67511" - } - }, - { - "pk": 5899, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LA WALCK", - "center": "POINT (987038.0017654350958765 2441165.6180592225864530)", - "surface": 680000, - "canton": null, - "numero_insee": "67512" - } - }, - { - "pk": 6382, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WALDERSBACH", - "center": "POINT (961155.5538080987753347 2391005.7490042378194630)", - "surface": 3340000, - "canton": null, - "numero_insee": "67513" - } - }, - { - "pk": 21887, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WALDHAMBACH", - "center": "POINT (958562.6491034940117970 2447622.6561750667169690)", - "surface": 12660000, - "canton": null, - "numero_insee": "67514" - } - }, - { - "pk": 4875, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WALDOLWISHEIM", - "center": "POINT (975050.7225886745145544 2427251.8927293177694082)", - "surface": 5690000, - "canton": null, - "numero_insee": "67515" - } - }, - { - "pk": 11784, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WALTENHEIM-SUR-ZORN", - "center": "POINT (988544.2276317789219320 2429070.4335579094476998)", - "surface": 4960000, - "canton": null, - "numero_insee": "67516" - } - }, - { - "pk": 13683, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WANGEN", - "center": "POINT (977862.8724427230190486 2414567.5000755726359785)", - "surface": 4030000, - "canton": null, - "numero_insee": "67517" - } - }, - { - "pk": 19916, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "LA WANTZENAU", - "center": "POINT (1004627.3234839917859063 2420804.6811812454834580)", - "surface": 25320000, - "canton": null, - "numero_insee": "67519" - } - }, - { - "pk": 30029, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WASSELONNE", - "center": "POINT (976143.5426404962781817 2416654.0235731387510896)", - "surface": 14960000, - "canton": null, - "numero_insee": "67520" - } - }, - { - "pk": 28388, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WEISLINGEN", - "center": "POINT (960569.9269192627398297 2446939.6100261854007840)", - "surface": 6960000, - "canton": null, - "numero_insee": "67522" - } - }, - { - "pk": 4805, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WEITBRUCH", - "center": "POINT (1000026.8859905269928277 2431972.3560053389519453)", - "surface": 15090000, - "canton": null, - "numero_insee": "67523" - } - }, - { - "pk": 33934, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WEITERSWILLER", - "center": "POINT (972134.2131310540717095 2440435.5928533351980150)", - "surface": 7950000, - "canton": null, - "numero_insee": "67524" - } - }, - { - "pk": 18559, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WESTHOFFEN", - "center": "POINT (974376.3376511300448328 2412735.9292053477838635)", - "surface": 20660000, - "canton": null, - "numero_insee": "67525" - } - }, - { - "pk": 24626, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WESTHOUSE", - "center": "POINT (987469.8781374071259052 2391534.6418414134532213)", - "surface": 11990000, - "canton": null, - "numero_insee": "67526" - } - }, - { - "pk": 22740, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WESTHOUSE-MARMOUTIER", - "center": "POINT (976698.6824371191905811 2421862.4758330145850778)", - "surface": 3990000, - "canton": null, - "numero_insee": "67527" - } - }, - { - "pk": 23066, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WEYER", - "center": "POINT (954027.6156248077750206 2439778.0203309822827578)", - "surface": 11870000, - "canton": null, - "numero_insee": "67528" - } - }, - { - "pk": 18944, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WEYERSHEIM", - "center": "POINT (1004071.1986067921388894 2427204.2837709742598236)", - "surface": 19610000, - "canton": null, - "numero_insee": "67529" - } - }, - { - "pk": 6517, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WICKERSHEIM-WILSHAUSEN", - "center": "POINT (981806.1679389006458223 2432914.4919548174366355)", - "surface": 5480000, - "canton": null, - "numero_insee": "67530" - } - }, - { - "pk": 7541, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WILDERSBACH", - "center": "POINT (961437.5069855665788054 2393109.7043009190820158)", - "surface": 3390000, - "canton": null, - "numero_insee": "67531" - } - }, - { - "pk": 34372, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WILLGOTTHEIM", - "center": "POINT (981311.1062147954944521 2420801.8174908850342035)", - "surface": 9210000, - "canton": null, - "numero_insee": "67532" - } - }, - { - "pk": 25777, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WILWISHEIM", - "center": "POINT (979532.6079786744667217 2429692.5164704835042357)", - "surface": 5410000, - "canton": null, - "numero_insee": "67534" - } - }, - { - "pk": 20039, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WIMMENAU", - "center": "POINT (972469.2299907538108528 2447943.5840721074491739)", - "surface": 20900000, - "canton": null, - "numero_insee": "67535" - } - }, - { - "pk": 33678, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WINDSTEIN", - "center": "POINT (992103.4877030851785094 2457020.3697229847311974)", - "surface": 11950000, - "canton": null, - "numero_insee": "67536" - } - }, - { - "pk": 3617, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WINGEN", - "center": "POINT (1000357.8309525080258027 2462896.1384617052972317)", - "surface": 16680000, - "canton": null, - "numero_insee": "67537" - } - }, - { - "pk": 31875, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WINGEN-SUR-MODER", - "center": "POINT (968765.2763903262093663 2448111.5310730636119843)", - "surface": 17250000, - "canton": null, - "numero_insee": "67538" - } - }, - { - "pk": 35189, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WINGERSHEIM", - "center": "POINT (989857.2201708488864824 2427680.8945427983999252)", - "surface": 8060000, - "canton": null, - "numero_insee": "67539" - } - }, - { - "pk": 3980, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WINTERSHOUSE", - "center": "POINT (994392.9577806738670915 2435425.6860754233784974)", - "surface": 3630000, - "canton": null, - "numero_insee": "67540" - } - }, - { - "pk": 4511, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WINTZENHEIM-KOCHERSBERG", - "center": "POINT (980825.5896516724023968 2419096.4099076027050614)", - "surface": 1960000, - "canton": null, - "numero_insee": "67542" - } - }, - { - "pk": 32976, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WISCHES", - "center": "POINT (960463.9743318185210228 2401507.2508490597829223)", - "surface": 19220000, - "canton": null, - "numero_insee": "67543" - } - }, - { - "pk": 32878, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WISSEMBOURG", - "center": "POINT (1011278.2080733075272292 2461390.2894472423940897)", - "surface": 47810000, - "canton": null, - "numero_insee": "67544" - } - }, - { - "pk": 34134, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WITTERSHEIM", - "center": "POINT (990708.1238215866032988 2433392.2300388612784445)", - "surface": 7080000, - "canton": null, - "numero_insee": "67546" - } - }, - { - "pk": 5725, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WITTISHEIM", - "center": "POINT (989809.7475002398714423 2375643.4528326913714409)", - "surface": 11450000, - "canton": null, - "numero_insee": "67547" - } - }, - { - "pk": 29132, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WIWERSHEIM", - "center": "POINT (987546.3024311799090356 2417253.5486320271156728)", - "surface": 3380000, - "canton": null, - "numero_insee": "67548" - } - }, - { - "pk": 20304, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WOERTH", - "center": "POINT (996052.8640419102739543 2451651.1451722504571080)", - "surface": 6570000, - "canton": null, - "numero_insee": "67550" - } - }, - { - "pk": 26795, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WOLFISHEIM", - "center": "POINT (992795.7176765142939985 2411995.5196126876398921)", - "surface": 5680000, - "canton": null, - "numero_insee": "67551" - } - }, - { - "pk": 8058, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WOLFSKIRCHEN", - "center": "POINT (947910.0463464048225433 2441326.0424478473141789)", - "surface": 10650000, - "canton": null, - "numero_insee": "67552" - } - }, - { - "pk": 13761, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WOLSCHHEIM", - "center": "POINT (976277.5575518265832216 2424260.4811833328567445)", - "surface": 3660000, - "canton": null, - "numero_insee": "67553" - } - }, - { - "pk": 26796, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "WOLXHEIM", - "center": "POINT (981411.1842874874128029 2409294.6264934213832021)", - "surface": 3170000, - "canton": null, - "numero_insee": "67554" - } - }, - { - "pk": 12702, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ZEHNACKER", - "center": "POINT (976513.3465397355612367 2420159.6814495734870434)", - "surface": 2300000, - "canton": null, - "numero_insee": "67555" - } - }, - { - "pk": 9118, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ZEINHEIM", - "center": "POINT (979205.4523128098808229 2421283.8538959342986345)", - "surface": 2470000, - "canton": null, - "numero_insee": "67556" - } - }, - { - "pk": 24642, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ZELLWILLER", - "center": "POINT (982976.5524923463817686 2390394.7628754824399948)", - "surface": 8800000, - "canton": null, - "numero_insee": "67557" - } - }, - { - "pk": 8529, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ZINSWILLER", - "center": "POINT (984276.2969139601336792 2448046.2620670427568257)", - "surface": 7210000, - "canton": null, - "numero_insee": "67558" - } - }, - { - "pk": 32716, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ZITTERSHEIM", - "center": "POINT (966589.1669634889112785 2445190.6680652541108429)", - "surface": 7900000, - "canton": null, - "numero_insee": "67559" - } - }, - { - "pk": 5448, - "model": "ishtar_common.town", - "fields": { - "departement": 68, - "name": "ZOEBERSDORF", - "center": "POINT (980993.4949099710211158 2434308.3840560577809811)", - "surface": 1880000, - "canton": null, - "numero_insee": "67560" - } - }, - { - "pk": 10087, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ALGOLSHEIM", - "center": "POINT (988761.3616187979932874 2346612.7536671757698059)", - "surface": 7230000, - "canton": null, - "numero_insee": "68001" - } - }, - { - "pk": 27914, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ALTENACH", - "center": "POINT (958642.5545352597255260 2300015.3481889339163899)", - "surface": 6140000, - "canton": null, - "numero_insee": "68002" - } - }, - { - "pk": 25650, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ALTKIRCH", - "center": "POINT (968627.1174015849828720 2302704.0413921931758523)", - "surface": 9570000, - "canton": null, - "numero_insee": "68004" - } - }, - { - "pk": 3071, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "AMMERSCHWIHR", - "center": "POINT (966344.5651486773276702 2358126.7115217423997819)", - "surface": 19710000, - "canton": null, - "numero_insee": "68005" - } - }, - { - "pk": 32980, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "AMMERZWILLER", - "center": "POINT (962555.9792986027896404 2310357.3967937263660133)", - "surface": 3030000, - "canton": null, - "numero_insee": "68006" - } - }, - { - "pk": 25460, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ANDOLSHEIM", - "center": "POINT (979799.6443472750252113 2352939.6400308059528470)", - "surface": 11530000, - "canton": null, - "numero_insee": "68007" - } - }, - { - "pk": 4019, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "APPENWIHR", - "center": "POINT (981338.9340293693821877 2348549.7136757136322558)", - "surface": 7690000, - "canton": null, - "numero_insee": "68008" - } - }, - { - "pk": 12709, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ARTZENHEIM", - "center": "POINT (987352.5427882908843458 2359009.8047611857764423)", - "surface": 9650000, - "canton": null, - "numero_insee": "68009" - } - }, - { - "pk": 27116, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ASPACH", - "center": "POINT (967605.5557246418902650 2305097.0635519321076572)", - "surface": 4210000, - "canton": null, - "numero_insee": "68010" - } - }, - { - "pk": 29778, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ASPACH-LE-BAS", - "center": "POINT (960684.3832873450592160 2318447.4688228559680283)", - "surface": 8080000, - "canton": null, - "numero_insee": "68011" - } - }, - { - "pk": 13950, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ASPACH-LE-HAUT", - "center": "POINT (958871.8374445030931383 2319732.7524386728182435)", - "surface": 8650000, - "canton": null, - "numero_insee": "68012" - } - }, - { - "pk": 30696, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ATTENSCHWILLER", - "center": "POINT (985882.0241937401005998 2297950.0767219415865839)", - "surface": 5160000, - "canton": null, - "numero_insee": "68013" - } - }, - { - "pk": 5262, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "AUBURE", - "center": "POINT (962161.9174371708650142 2367297.2233449975028634)", - "surface": 4910000, - "canton": null, - "numero_insee": "68014" - } - }, - { - "pk": 24242, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BALDERSHEIM", - "center": "POINT (980257.2429949759971350 2323321.0747010735794902)", - "surface": 12830000, - "canton": null, - "numero_insee": "68015" - } - }, - { - "pk": 32289, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BALGAU", - "center": "POINT (987934.7371524898335338 2338099.1136580076999962)", - "surface": 9450000, - "canton": null, - "numero_insee": "68016" - } - }, - { - "pk": 36359, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BALLERSDORF", - "center": "POINT (962025.8840421952772886 2302246.4348978535272181)", - "surface": 10730000, - "canton": null, - "numero_insee": "68017" - } - }, - { - "pk": 13731, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BALSCHWILLER", - "center": "POINT (962174.7987552204867825 2308152.3663337337784469)", - "surface": 9810000, - "canton": null, - "numero_insee": "68018" - } - }, - { - "pk": 7187, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BALTZENHEIM", - "center": "POINT (988268.8153493087738752 2357216.4321494321338832)", - "surface": 6500000, - "canton": null, - "numero_insee": "68019" - } - }, - { - "pk": 28711, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BANTZENHEIM", - "center": "POINT (986536.4010363939451054 2326277.9052882576361299)", - "surface": 21250000, - "canton": null, - "numero_insee": "68020" - } - }, - { - "pk": 29454, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BARTENHEIM", - "center": "POINT (986816.6082798580173403 2305564.2098254789598286)", - "surface": 13000000, - "canton": null, - "numero_insee": "68021" - } - }, - { - "pk": 11412, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BATTENHEIM", - "center": "POINT (980037.9690954246325418 2325520.8680012347176671)", - "surface": 16930000, - "canton": null, - "numero_insee": "68022" - } - }, - { - "pk": 9816, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BEBLENHEIM", - "center": "POINT (972107.5938048143871129 2362880.2556091165170074)", - "surface": 5560000, - "canton": null, - "numero_insee": "68023" - } - }, - { - "pk": 19218, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BELLEMAGNY", - "center": "POINT (954256.1862390714231879 2309584.8583954973146319)", - "surface": 2140000, - "canton": null, - "numero_insee": "68024" - } - }, - { - "pk": 8327, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BENDORF", - "center": "POINT (972059.8201092842500657 2287721.9270837847143412)", - "surface": 7370000, - "canton": null, - "numero_insee": "68025" - } - }, - { - "pk": 28263, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BENNWIHR", - "center": "POINT (972126.7179933427833021 2360678.7880910295061767)", - "surface": 6560000, - "canton": null, - "numero_insee": "68026" - } - }, - { - "pk": 8323, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BERENTZWILLER", - "center": "POINT (979668.0099535793997347 2298996.9350590342655778)", - "surface": 6150000, - "canton": null, - "numero_insee": "68027" - } - }, - { - "pk": 17069, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BERGHEIM", - "center": "POINT (972956.0313544543460011 2368892.0625995579175651)", - "surface": 19440000, - "canton": null, - "numero_insee": "68028" - } - }, - { - "pk": 37180, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BERGHOLTZ", - "center": "POINT (966736.7014109061565250 2336013.4566446961835027)", - "surface": 4260000, - "canton": null, - "numero_insee": "68029" - } - }, - { - "pk": 37985, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BERGHOLTZZELL", - "center": "POINT (965130.3903979746391997 2336599.9697188436985016)", - "surface": 2270000, - "canton": null, - "numero_insee": "68030" - } - }, - { - "pk": 27918, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BERNWILLER", - "center": "POINT (964049.2238591114291921 2311271.0584742939099669)", - "surface": 7520000, - "canton": null, - "numero_insee": "68031" - } - }, - { - "pk": 3341, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BERRWILLER", - "center": "POINT (965108.4960844323504716 2327592.8903268612921238)", - "surface": 7630000, - "canton": null, - "numero_insee": "68032" - } - }, - { - "pk": 14010, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BETTENDORF", - "center": "POINT (971864.1599757233634591 2298728.9862088086083531)", - "surface": 4710000, - "canton": null, - "numero_insee": "68033" - } - }, - { - "pk": 28363, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BIEDERTHAL", - "center": "POINT (984075.4818959544645622 2287025.6785944299772382)", - "surface": 4100000, - "canton": null, - "numero_insee": "68035" - } - }, - { - "pk": 27832, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BIESHEIM", - "center": "POINT (987415.2155817553866655 2351804.9610950127243996)", - "surface": 16450000, - "canton": null, - "numero_insee": "68036" - } - }, - { - "pk": 10262, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BILTZHEIM", - "center": "POINT (975598.4752668531145900 2341194.3020273428410292)", - "surface": 7100000, - "canton": null, - "numero_insee": "68037" - } - }, - { - "pk": 35302, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BISCHWIHR", - "center": "POINT (978972.1413880474865437 2356034.7680811434984207)", - "surface": 3090000, - "canton": null, - "numero_insee": "68038" - } - }, - { - "pk": 25455, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BISEL", - "center": "POINT (967406.1055555572966114 2293486.1539674531668425)", - "surface": 8050000, - "canton": null, - "numero_insee": "68039" - } - }, - { - "pk": 25459, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BITSCHWILLER-LES-THANN", - "center": "POINT (954124.2970337849110365 2324795.5184438307769597)", - "surface": 12560000, - "canton": null, - "numero_insee": "68040" - } - }, - { - "pk": 34835, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BLODELSHEIM", - "center": "POINT (987877.3183748737210408 2333194.8707113587297499)", - "surface": 20480000, - "canton": null, - "numero_insee": "68041" - } - }, - { - "pk": 36586, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BLOTZHEIM", - "center": "POINT (987547.5649202219210565 2302067.8053610986098647)", - "surface": 15030000, - "canton": null, - "numero_insee": "68042" - } - }, - { - "pk": 37292, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BOLLWILLER", - "center": "POINT (967601.5423211592715234 2328615.3007914498448372)", - "surface": 8610000, - "canton": null, - "numero_insee": "68043" - } - }, - { - "pk": 29231, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LE BONHOMME", - "center": "POINT (953999.8811627883696929 2362222.7113666059449315)", - "surface": 21970000, - "canton": null, - "numero_insee": "68044" - } - }, - { - "pk": 34379, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BOURBACH-LE-BAS", - "center": "POINT (953276.5970576712861657 2318683.4531772769987583)", - "surface": 6020000, - "canton": null, - "numero_insee": "68045" - } - }, - { - "pk": 30800, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BOURBACH-LE-HAUT", - "center": "POINT (951350.9774298719130456 2321468.9267743751406670)", - "surface": 6830000, - "canton": null, - "numero_insee": "68046" - } - }, - { - "pk": 22947, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BOUXWILLER", - "center": "POINT (976641.4222521940246224 2290263.7183366734534502)", - "surface": 6360000, - "canton": null, - "numero_insee": "68049" - } - }, - { - "pk": 24038, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BRECHAUMONT", - "center": "POINT (954181.2775067732436582 2306681.9363797572441399)", - "surface": 6470000, - "canton": null, - "numero_insee": "68050" - } - }, - { - "pk": 35896, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BREITENBACH-HAUT-RHIN", - "center": "POINT (955546.6271198289468884 2345423.5619974983856082)", - "surface": 9330000, - "canton": null, - "numero_insee": "68051" - } - }, - { - "pk": 25657, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BRETTEN", - "center": "POINT (954541.6476226757513359 2311288.6626726849935949)", - "surface": 4210000, - "canton": null, - "numero_insee": "68052" - } - }, - { - "pk": 8971, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BRINCKHEIM", - "center": "POINT (984730.7741759084165096 2303744.6552353734150529)", - "surface": 3380000, - "canton": null, - "numero_insee": "68054" - } - }, - { - "pk": 31729, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BRUEBACH", - "center": "POINT (976652.0402436386793852 2312081.0383960474282503)", - "surface": 6920000, - "canton": null, - "numero_insee": "68055" - } - }, - { - "pk": 31103, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BRUNSTATT", - "center": "POINT (974137.2363214327488095 2313560.3635057928040624)", - "surface": 9600000, - "canton": null, - "numero_insee": "68056" - } - }, - { - "pk": 7973, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BUETHWILLER", - "center": "POINT (960187.2713991142809391 2306533.8674853909760714)", - "surface": 3870000, - "canton": null, - "numero_insee": "68057" - } - }, - { - "pk": 8275, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BUHL", - "center": "POINT (961732.3981653864029795 2336070.0976286712102592)", - "surface": 8750000, - "canton": null, - "numero_insee": "68058" - } - }, - { - "pk": 13327, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BURNHAUPT-LE-BAS", - "center": "POINT (961232.4865033542737365 2312947.9447402586229146)", - "surface": 11780000, - "canton": null, - "numero_insee": "68059" - } - }, - { - "pk": 33533, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BURNHAUPT-LE-HAUT", - "center": "POINT (959115.3811328813899308 2314730.9811847931705415)", - "surface": 12510000, - "canton": null, - "numero_insee": "68060" - } - }, - { - "pk": 12776, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "BUSCHWILLER", - "center": "POINT (988193.2477330956608057 2296869.3007936999201775)", - "surface": 4110000, - "canton": null, - "numero_insee": "68061" - } - }, - { - "pk": 35650, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "CARSPACH", - "center": "POINT (964924.4788168843369931 2302671.9025706243701279)", - "surface": 17160000, - "canton": null, - "numero_insee": "68062" - } - }, - { - "pk": 28261, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "CERNAY", - "center": "POINT (962557.9269466426922008 2321666.2042259359732270)", - "surface": 17910000, - "canton": null, - "numero_insee": "68063" - } - }, - { - "pk": 28262, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "CHALAMPE", - "center": "POINT (989927.4491789949825034 2327608.4023944502696395)", - "surface": 4800000, - "canton": null, - "numero_insee": "68064" - } - }, - { - "pk": 31522, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "CHAVANNES-SUR-L'ETANG", - "center": "POINT (952504.3617439083755016 2303865.1978632840327919)", - "surface": 6080000, - "canton": null, - "numero_insee": "68065" - } - }, - { - "pk": 20944, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "COLMAR", - "center": "POINT (975656.0118492649635300 2357607.1428892840631306)", - "surface": 66450000, - "canton": null, - "numero_insee": "68066" - } - }, - { - "pk": 33796, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "COURTAVON", - "center": "POINT (966373.0585348496679217 2285670.9573956537060440)", - "surface": 9700000, - "canton": null, - "numero_insee": "68067" - } - }, - { - "pk": 13331, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DANNEMARIE", - "center": "POINT (959420.5574486968107522 2302624.1484034969471395)", - "surface": 4340000, - "canton": null, - "numero_insee": "68068" - } - }, - { - "pk": 11907, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DESSENHEIM", - "center": "POINT (983889.3563829890917987 2342967.6560279037803411)", - "surface": 19080000, - "canton": null, - "numero_insee": "68069" - } - }, - { - "pk": 4850, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DIDENHEIM", - "center": "POINT (971633.7359784648288041 2313738.7760011684149504)", - "surface": 4470000, - "canton": null, - "numero_insee": "68070" - } - }, - { - "pk": 6320, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DIEFMATTEN", - "center": "POINT (957341.8885160433128476 2311513.1024241801351309)", - "surface": 3170000, - "canton": null, - "numero_insee": "68071" - } - }, - { - "pk": 35419, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DIETWILLER", - "center": "POINT (981652.0924612729577348 2312524.8020010548643768)", - "surface": 10920000, - "canton": null, - "numero_insee": "68072" - } - }, - { - "pk": 37062, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DOLLEREN", - "center": "POINT (943151.3241000308189541 2320697.3307106383144855)", - "surface": 8250000, - "canton": null, - "numero_insee": "68073" - } - }, - { - "pk": 27721, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DURLINSDORF", - "center": "POINT (968751.3467989518539980 2288393.7626595017500222)", - "surface": 7740000, - "canton": null, - "numero_insee": "68074" - } - }, - { - "pk": 6389, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "DURRENENTZEN", - "center": "POINT (984971.8218019166961312 2356587.3059777775779366)", - "surface": 6190000, - "canton": null, - "numero_insee": "68076" - } - }, - { - "pk": 3374, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "EGLINGEN", - "center": "POINT (963791.5639253931585699 2306364.9827892878092825)", - "surface": 3780000, - "canton": null, - "numero_insee": "68077" - } - }, - { - "pk": 16239, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "EGUISHEIM", - "center": "POINT (969925.1256297249346972 2349151.0645374902524054)", - "surface": 14010000, - "canton": null, - "numero_insee": "68078" - } - }, - { - "pk": 10772, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ELBACH", - "center": "POINT (955402.9547055542934686 2304290.6435240241698921)", - "surface": 3140000, - "canton": null, - "numero_insee": "68079" - } - }, - { - "pk": 14117, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "EMLINGEN", - "center": "POINT (972120.9234264136757702 2303735.1657629194669425)", - "surface": 2460000, - "canton": null, - "numero_insee": "68080" - } - }, - { - "pk": 8849, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINT-BERNARD", - "center": "POINT (965283.0754746377933770 2307478.7904112492688000)", - "surface": 6020000, - "canton": null, - "numero_insee": "68081" - } - }, - { - "pk": 36708, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ENSISHEIM", - "center": "POINT (976604.3018389784265310 2329093.8006731821224093)", - "surface": 36680000, - "canton": null, - "numero_insee": "68082" - } - }, - { - "pk": 6636, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ESCHBACH-AU-VAL", - "center": "POINT (958537.3790028955554590 2346750.4853171571157873)", - "surface": 4810000, - "canton": null, - "numero_insee": "68083" - } - }, - { - "pk": 10615, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ESCHENTZWILLER", - "center": "POINT (979043.2998482327675447 2313302.7539006671868265)", - "surface": 3220000, - "canton": null, - "numero_insee": "68084" - } - }, - { - "pk": 25099, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ETEIMBES", - "center": "POINT (952940.5181802654406056 2311274.7805348248220980)", - "surface": 4960000, - "canton": null, - "numero_insee": "68085" - } - }, - { - "pk": 6511, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FALKWILLER", - "center": "POINT (959666.9505575307412073 2308831.1576195987872779)", - "surface": 3540000, - "canton": null, - "numero_insee": "68086" - } - }, - { - "pk": 36587, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FELDBACH", - "center": "POINT (970111.5259196357801557 2293109.3215389568358660)", - "surface": 5030000, - "canton": null, - "numero_insee": "68087" - } - }, - { - "pk": 33685, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FELDKIRCH", - "center": "POINT (969099.1060822545550764 2329028.6106137200258672)", - "surface": 4220000, - "canton": null, - "numero_insee": "68088" - } - }, - { - "pk": 29649, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FELLERING", - "center": "POINT (943841.7831959500908852 2333413.0692839585244656)", - "surface": 21150000, - "canton": null, - "numero_insee": "68089" - } - }, - { - "pk": 27638, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FERRETTE", - "center": "POINT (974851.4200102211907506 2288947.1307999780401587)", - "surface": 1960000, - "canton": null, - "numero_insee": "68090" - } - }, - { - "pk": 35787, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FESSENHEIM", - "center": "POINT (988051.3438894893042743 2336198.6785916537046432)", - "surface": 18670000, - "canton": null, - "numero_insee": "68091" - } - }, - { - "pk": 9612, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FISLIS", - "center": "POINT (979733.2294615571154281 2291491.5388923422433436)", - "surface": 7440000, - "canton": null, - "numero_insee": "68092" - } - }, - { - "pk": 6869, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FLAXLANDEN", - "center": "POINT (974259.9070528763113543 2310959.3971779737621546)", - "surface": 4310000, - "canton": null, - "numero_insee": "68093" - } - }, - { - "pk": 29658, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FOLGENSBOURG", - "center": "POINT (984010.2384623757097870 2294531.1022220375016332)", - "surface": 6860000, - "canton": null, - "numero_insee": "68094" - } - }, - { - "pk": 9866, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FORTSCHWIHR", - "center": "POINT (980880.3775270499754697 2355250.7578268190845847)", - "surface": 4790000, - "canton": null, - "numero_insee": "68095" - } - }, - { - "pk": 8456, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FRANKEN", - "center": "POINT (977054.8447768173646182 2300275.2586800223216414)", - "surface": 6280000, - "canton": null, - "numero_insee": "68096" - } - }, - { - "pk": 26457, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FRELAND", - "center": "POINT (960581.6991915609687567 2364881.7364086396992207)", - "surface": 19170000, - "canton": null, - "numero_insee": "68097" - } - }, - { - "pk": 24467, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FRIESEN", - "center": "POINT (962082.3192472974769771 2295741.7819380401633680)", - "surface": 8400000, - "canton": null, - "numero_insee": "68098" - } - }, - { - "pk": 7004, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FROENINGEN", - "center": "POINT (969055.3623754926957190 2311014.2782039861194789)", - "surface": 4470000, - "canton": null, - "numero_insee": "68099" - } - }, - { - "pk": 27115, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "FULLEREN", - "center": "POINT (962353.8824397143907845 2299046.7530675181187689)", - "surface": 5310000, - "canton": null, - "numero_insee": "68100" - } - }, - { - "pk": 5171, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GALFINGUE", - "center": "POINT (966346.5053869553375989 2311791.3877478712238371)", - "surface": 5330000, - "canton": null, - "numero_insee": "68101" - } - }, - { - "pk": 29503, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GEISHOUSE", - "center": "POINT (953865.1535274607595056 2331598.4933371897786856)", - "surface": 7180000, - "canton": null, - "numero_insee": "68102" - } - }, - { - "pk": 3736, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GEISPITZEN", - "center": "POINT (982778.9661609244067222 2309532.2485609599389136)", - "surface": 6110000, - "canton": null, - "numero_insee": "68103" - } - }, - { - "pk": 12092, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GEISWASSER", - "center": "POINT (993086.0560720541980118 2344148.4913621013984084)", - "surface": 8100000, - "canton": null, - "numero_insee": "68104" - } - }, - { - "pk": 27251, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GILDWILLER", - "center": "POINT (960251.7489290405064821 2310637.6395756159909070)", - "surface": 4960000, - "canton": null, - "numero_insee": "68105" - } - }, - { - "pk": 6160, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GOLDBACH-ALTENBACH", - "center": "POINT (956474.7589871064992622 2330720.4353759149089456)", - "surface": 9090000, - "canton": null, - "numero_insee": "68106" - } - }, - { - "pk": 31100, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GOMMERSDORF", - "center": "POINT (960105.4306633408414200 2304431.5068987053819001)", - "surface": 4170000, - "canton": null, - "numero_insee": "68107" - } - }, - { - "pk": 8420, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GRENTZINGEN", - "center": "POINT (972485.4468015531310812 2296332.4785648509860039)", - "surface": 5190000, - "canton": null, - "numero_insee": "68108" - } - }, - { - "pk": 9949, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GRIESBACH-AU-VAL", - "center": "POINT (960430.8531155242817476 2347667.5918200872838497)", - "surface": 4860000, - "canton": null, - "numero_insee": "68109" - } - }, - { - "pk": 13061, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GRUSSENHEIM", - "center": "POINT (983322.0184725965373218 2362177.1314691007137299)", - "surface": 7650000, - "canton": null, - "numero_insee": "68110" - } - }, - { - "pk": 31012, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GUEBERSCHWIHR", - "center": "POINT (967053.5715713864192367 2345623.4916292619891465)", - "surface": 8940000, - "canton": null, - "numero_insee": "68111" - } - }, - { - "pk": 26367, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GUEBWILLER", - "center": "POINT (964047.0059725388418883 2334589.0406909408047795)", - "surface": 9570000, - "canton": null, - "numero_insee": "68112" - } - }, - { - "pk": 16794, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GUEMAR", - "center": "POINT (977274.5308312143897638 2367128.2609000024385750)", - "surface": 18110000, - "canton": null, - "numero_insee": "68113" - } - }, - { - "pk": 27264, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GUEVENATTEN", - "center": "POINT (956164.4725850571412593 2308800.7793705016374588)", - "surface": 2130000, - "canton": null, - "numero_insee": "68114" - } - }, - { - "pk": 13460, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GUEWENHEIM", - "center": "POINT (956299.5260751820169389 2316307.8027211343869567)", - "surface": 8570000, - "canton": null, - "numero_insee": "68115" - } - }, - { - "pk": 5507, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GUNDOLSHEIM", - "center": "POINT (970529.7529405069071800 2337147.2302899789065123)", - "surface": 8260000, - "canton": null, - "numero_insee": "68116" - } - }, - { - "pk": 32952, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "GUNSBACH", - "center": "POINT (959699.1216163230128586 2351263.9483315800316632)", - "surface": 6150000, - "canton": null, - "numero_insee": "68117" - } - }, - { - "pk": 10774, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HABSHEIM", - "center": "POINT (982028.0189376240596175 2315330.2553801401518285)", - "surface": 15590000, - "canton": null, - "numero_insee": "68118" - } - }, - { - "pk": 37529, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HAGENBACH", - "center": "POINT (962301.7863883140962571 2305051.0338814835995436)", - "surface": 4820000, - "canton": null, - "numero_insee": "68119" - } - }, - { - "pk": 5999, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HAGENTHAL-LE-BAS", - "center": "POINT (987118.5624474752694368 2293857.5692363963462412)", - "surface": 6500000, - "canton": null, - "numero_insee": "68120" - } - }, - { - "pk": 13867, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HAGENTHAL-LE-HAUT", - "center": "POINT (985229.3730688202194870 2292440.0276031065732241)", - "surface": 5020000, - "canton": null, - "numero_insee": "68121" - } - }, - { - "pk": 32598, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HARTMANNSWILLER", - "center": "POINT (963595.2971039105905220 2328980.8326089945621789)", - "surface": 4740000, - "canton": null, - "numero_insee": "68122" - } - }, - { - "pk": 3216, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HATTSTATT", - "center": "POINT (968046.4310618079034612 2346532.7914816578850150)", - "surface": 6040000, - "canton": null, - "numero_insee": "68123" - } - }, - { - "pk": 3935, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HAUSGAUEN", - "center": "POINT (974245.0189645127393305 2301151.5618143733590841)", - "surface": 5830000, - "canton": null, - "numero_insee": "68124" - } - }, - { - "pk": 30592, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HECKEN", - "center": "POINT (958454.8169820343609899 2310121.6609192728064954)", - "surface": 2450000, - "canton": null, - "numero_insee": "68125" - } - }, - { - "pk": 25456, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HEGENHEIM", - "center": "POINT (990189.4624297444242984 2297487.1386418547481298)", - "surface": 7000000, - "canton": null, - "numero_insee": "68126" - } - }, - { - "pk": 5878, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HEIDWILLER", - "center": "POINT (967591.6566153892781585 2306698.2006401713006198)", - "surface": 4420000, - "canton": null, - "numero_insee": "68127" - } - }, - { - "pk": 26736, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HEIMERSDORF", - "center": "POINT (968482.5737989536719397 2296297.7233743364922702)", - "surface": 7600000, - "canton": null, - "numero_insee": "68128" - } - }, - { - "pk": 31952, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HEIMSBRUNN", - "center": "POINT (966026.3157607151661068 2314090.4036920396611094)", - "surface": 10540000, - "canton": null, - "numero_insee": "68129" - } - }, - { - "pk": 30583, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HEITEREN", - "center": "POINT (988801.4053597596939653 2342009.6187027473933995)", - "surface": 22450000, - "canton": null, - "numero_insee": "68130" - } - }, - { - "pk": 20306, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HEIWILLER", - "center": "POINT (974526.1105079624103382 2303355.7398070301860571)", - "surface": 2020000, - "canton": null, - "numero_insee": "68131" - } - }, - { - "pk": 33056, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HELFRANTZKIRCH", - "center": "POINT (981545.8879360092105344 2301715.3910547671839595)", - "surface": 6390000, - "canton": null, - "numero_insee": "68132" - } - }, - { - "pk": 8730, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HENFLINGEN", - "center": "POINT (972574.2210350993555039 2297634.2807911476120353)", - "surface": 2620000, - "canton": null, - "numero_insee": "68133" - } - }, - { - "pk": 13586, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HERRLISHEIM-PRES-COLMAR", - "center": "POINT (971942.9944422431290150 2347267.1595565918833017)", - "surface": 7740000, - "canton": null, - "numero_insee": "68134" - } - }, - { - "pk": 23926, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HESINGUE", - "center": "POINT (989272.2793746772222221 2299380.6682769265025854)", - "surface": 9070000, - "canton": null, - "numero_insee": "68135" - } - }, - { - "pk": 34380, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HETTENSCHLAG", - "center": "POINT (981755.7347517242887989 2346651.9041595403105021)", - "surface": 7730000, - "canton": null, - "numero_insee": "68136" - } - }, - { - "pk": 26260, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HINDLINGEN", - "center": "POINT (961273.9311133119044825 2296635.4826032514683902)", - "surface": 8020000, - "canton": null, - "numero_insee": "68137" - } - }, - { - "pk": 18163, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HIRSINGUE", - "center": "POINT (969458.0965959909372032 2299208.4906059466302395)", - "surface": 12970000, - "canton": null, - "numero_insee": "68138" - } - }, - { - "pk": 29872, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HIRTZBACH", - "center": "POINT (966155.7341349618509412 2299179.8240687642246485)", - "surface": 13800000, - "canton": null, - "numero_insee": "68139" - } - }, - { - "pk": 26366, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HIRTZFELDEN", - "center": "POINT (981750.4910212617833167 2335743.5824303082190454)", - "surface": 22090000, - "canton": null, - "numero_insee": "68140" - } - }, - { - "pk": 27117, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HOCHSTATT", - "center": "POINT (969741.9549069881904870 2312621.4900275240652263)", - "surface": 8490000, - "canton": null, - "numero_insee": "68141" - } - }, - { - "pk": 10261, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HOHROD", - "center": "POINT (957296.6341298117768019 2351343.1798288421705365)", - "surface": 5480000, - "canton": null, - "numero_insee": "68142" - } - }, - { - "pk": 4936, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HOLTZWIHR", - "center": "POINT (978149.8604710499057546 2358529.4871038794517517)", - "surface": 6370000, - "canton": null, - "numero_insee": "68143" - } - }, - { - "pk": 9692, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HOMBOURG", - "center": "POINT (986099.5784637853503227 2318968.4558104160241783)", - "surface": 15300000, - "canton": null, - "numero_insee": "68144" - } - }, - { - "pk": 32514, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HORBOURG-WIHR", - "center": "POINT (977282.3048762222751975 2354719.1086680786684155)", - "surface": 9420000, - "canton": null, - "numero_insee": "68145" - } - }, - { - "pk": 9553, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HOUSSEN", - "center": "POINT (974734.5410265498794615 2360000.9241591412574053)", - "surface": 6850000, - "canton": null, - "numero_insee": "68146" - } - }, - { - "pk": 9050, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HUNAWIHR", - "center": "POINT (969183.9355487512657419 2365356.7124049514532089)", - "surface": 4810000, - "canton": null, - "numero_insee": "68147" - } - }, - { - "pk": 33297, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HUNDSBACH", - "center": "POINT (975750.4375062622129917 2300664.2431339956820011)", - "surface": 4050000, - "canton": null, - "numero_insee": "68148" - } - }, - { - "pk": 11997, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HUNINGUE", - "center": "POINT (994163.6010646867798641 2300824.3279560161754489)", - "surface": 2850000, - "canton": null, - "numero_insee": "68149" - } - }, - { - "pk": 28710, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HUSSEREN-LES-CHATEAUX", - "center": "POINT (968224.8439066854771227 2349036.2240455532446504)", - "surface": 1210000, - "canton": null, - "numero_insee": "68150" - } - }, - { - "pk": 37251, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "HUSSEREN-WESSERLING", - "center": "POINT (947571.2138596018776298 2330343.0139999175444245)", - "surface": 5300000, - "canton": null, - "numero_insee": "68151" - } - }, - { - "pk": 20150, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ILLFURTH", - "center": "POINT (969874.1744148100260645 2308919.7431377428583801)", - "surface": 9090000, - "canton": null, - "numero_insee": "68152" - } - }, - { - "pk": 3945, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ILLHAEUSERN", - "center": "POINT (980188.6329169609816745 2365752.5566152227111161)", - "surface": 10610000, - "canton": null, - "numero_insee": "68153" - } - }, - { - "pk": 6741, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ILLZACH", - "center": "POINT (976181.3355604019016027 2320183.2554264124482870)", - "surface": 7430000, - "canton": null, - "numero_insee": "68154" - } - }, - { - "pk": 27632, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "INGERSHEIM", - "center": "POINT (970262.8212033375166357 2356359.3941886578686535)", - "surface": 7400000, - "canton": null, - "numero_insee": "68155" - } - }, - { - "pk": 18486, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ISSENHEIM", - "center": "POINT (967653.8273238178808242 2334119.9687829455360770)", - "surface": 8160000, - "canton": null, - "numero_insee": "68156" - } - }, - { - "pk": 13418, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "JEBSHEIM", - "center": "POINT (982744.2411070244852453 2359570.1732298107817769)", - "surface": 14760000, - "canton": null, - "numero_insee": "68157" - } - }, - { - "pk": 31316, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "JETTINGEN", - "center": "POINT (978953.5955007185693830 2300591.9934685281477869)", - "surface": 6300000, - "canton": null, - "numero_insee": "68158" - } - }, - { - "pk": 27026, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "JUNGHOLTZ", - "center": "POINT (962666.8847839757800102 2332175.2284290064126253)", - "surface": 4020000, - "canton": null, - "numero_insee": "68159" - } - }, - { - "pk": 30892, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KAPPELEN", - "center": "POINT (983437.6764963836176321 2302832.7035698350518942)", - "surface": 5160000, - "canton": null, - "numero_insee": "68160" - } - }, - { - "pk": 12855, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KATZENTHAL", - "center": "POINT (968056.9998961165547371 2356840.6111120893619955)", - "surface": 3450000, - "canton": null, - "numero_insee": "68161" - } - }, - { - "pk": 32826, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KEMBS", - "center": "POINT (987474.4639563489472494 2310473.7796882744878531)", - "surface": 16450000, - "canton": null, - "numero_insee": "68163" - } - }, - { - "pk": 13720, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KIENTZHEIM", - "center": "POINT (967620.2371000311104581 2361039.9456445882096887)", - "surface": 4740000, - "canton": null, - "numero_insee": "68164" - } - }, - { - "pk": 31921, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KIFFIS", - "center": "POINT (978402.6441393459681422 2283373.4888490382581949)", - "surface": 6600000, - "canton": null, - "numero_insee": "68165" - } - }, - { - "pk": 25981, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KINGERSHEIM", - "center": "POINT (973265.3989249884616584 2321759.1640580180101097)", - "surface": 6620000, - "canton": null, - "numero_insee": "68166" - } - }, - { - "pk": 36136, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KIRCHBERG", - "center": "POINT (944761.1108067946042866 2319710.5025902232155204)", - "surface": 6750000, - "canton": null, - "numero_insee": "68167" - } - }, - { - "pk": 26259, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KNOERINGUE", - "center": "POINT (980885.3940761126577854 2297106.0079377023503184)", - "surface": 4780000, - "canton": null, - "numero_insee": "68168" - } - }, - { - "pk": 13865, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KOESTLACH", - "center": "POINT (971433.3173408567672595 2290718.8849293980747461)", - "surface": 8170000, - "canton": null, - "numero_insee": "68169" - } - }, - { - "pk": 34932, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KOETZINGUE", - "center": "POINT (979502.7173717542318627 2306501.4177090679295361)", - "surface": 5180000, - "canton": null, - "numero_insee": "68170" - } - }, - { - "pk": 32808, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "KRUTH", - "center": "POINT (945402.9987869366304949 2338030.0990992793813348)", - "surface": 22040000, - "canton": null, - "numero_insee": "68171" - } - }, - { - "pk": 25275, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LABAROCHE", - "center": "POINT (961652.7077886239858344 2356785.0150546114891768)", - "surface": 13510000, - "canton": null, - "numero_insee": "68173" - } - }, - { - "pk": 12630, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LANDSER", - "center": "POINT (978665.6268633417785168 2310697.4389057932421565)", - "surface": 3080000, - "canton": null, - "numero_insee": "68174" - } - }, - { - "pk": 38057, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LARGITZEN", - "center": "POINT (965183.6778470980934799 2295868.7724389894865453)", - "surface": 5700000, - "canton": null, - "numero_insee": "68176" - } - }, - { - "pk": 29232, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LAUTENBACH", - "center": "POINT (960404.5892319413833320 2339160.9349105367437005)", - "surface": 13300000, - "canton": null, - "numero_insee": "68177" - } - }, - { - "pk": 18826, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LAUTENBACHZELL", - "center": "POINT (955529.8763059912016615 2335816.1371820154599845)", - "surface": 23200000, - "canton": null, - "numero_insee": "68178" - } - }, - { - "pk": 34447, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LAUW", - "center": "POINT (950986.2636967906728387 2317362.5891272150911391)", - "surface": 4600000, - "canton": null, - "numero_insee": "68179" - } - }, - { - "pk": 37271, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LEIMBACH", - "center": "POINT (956357.9385560962837189 2321112.0316223376430571)", - "surface": 3560000, - "canton": null, - "numero_insee": "68180" - } - }, - { - "pk": 11558, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LEVONCOURT", - "center": "POINT (965994.4800208082888275 2283165.6650228141807020)", - "surface": 5230000, - "canton": null, - "numero_insee": "68181" - } - }, - { - "pk": 31641, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LEYMEN", - "center": "POINT (987547.5670747330877930 2290558.6667411192320287)", - "surface": 11630000, - "canton": null, - "numero_insee": "68182" - } - }, - { - "pk": 30104, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LIEBENSWILLER", - "center": "POINT (984946.5562021515797824 2290435.9722496392205358)", - "surface": 3890000, - "canton": null, - "numero_insee": "68183" - } - }, - { - "pk": 6640, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LIEBSDORF", - "center": "POINT (968063.8695980005431920 2286886.5944728474132717)", - "surface": 4270000, - "canton": null, - "numero_insee": "68184" - } - }, - { - "pk": 16971, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LIEPVRE", - "center": "POINT (966501.4035329042235389 2374640.2606195686385036)", - "surface": 12390000, - "canton": null, - "numero_insee": "68185" - } - }, - { - "pk": 36582, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LIGSDORF", - "center": "POINT (973977.7108088887762278 2285837.0597853190265596)", - "surface": 10020000, - "canton": null, - "numero_insee": "68186" - } - }, - { - "pk": 8457, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LINSDORF", - "center": "POINT (981532.7903842632658780 2291707.3370718304067850)", - "surface": 3400000, - "canton": null, - "numero_insee": "68187" - } - }, - { - "pk": 22183, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LINTHAL", - "center": "POINT (955103.5662765267770737 2338814.7225387319922447)", - "surface": 21010000, - "canton": null, - "numero_insee": "68188" - } - }, - { - "pk": 23692, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LOGELHEIM", - "center": "POINT (978842.4580599553883076 2347927.5605855155736208)", - "surface": 4360000, - "canton": null, - "numero_insee": "68189" - } - }, - { - "pk": 20203, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LUCELLE", - "center": "POINT (972305.1517534259473905 2282519.8843403011560440)", - "surface": 10350000, - "canton": null, - "numero_insee": "68190" - } - }, - { - "pk": 30689, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LUEMSCHWILLER", - "center": "POINT (972292.3869668541010469 2307039.2510514175519347)", - "surface": 7300000, - "canton": null, - "numero_insee": "68191" - } - }, - { - "pk": 29875, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "VALDIEU-LUTRAN", - "center": "POINT (954417.8610888817347586 2302480.6847465513274074)", - "surface": 5200000, - "canton": null, - "numero_insee": "68192" - } - }, - { - "pk": 25656, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LUTTER", - "center": "POINT (979386.8518593009794131 2285283.5667956261895597)", - "surface": 8600000, - "canton": null, - "numero_insee": "68194" - } - }, - { - "pk": 32729, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "LUTTERBACH", - "center": "POINT (969791.6288413461297750 2318426.4377860375680029)", - "surface": 8520000, - "canton": null, - "numero_insee": "68195" - } - }, - { - "pk": 6673, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MAGSTATT-LE-BAS", - "center": "POINT (981112.5520042194984853 2305514.6215639351867139)", - "surface": 3340000, - "canton": null, - "numero_insee": "68197" - } - }, - { - "pk": 24921, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MAGSTATT-LE-HAUT", - "center": "POINT (979823.8020566586637869 2304102.3186524985358119)", - "surface": 3900000, - "canton": null, - "numero_insee": "68198" - } - }, - { - "pk": 6159, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MALMERSPACH", - "center": "POINT (950392.2317771266680211 2328165.7775968969799578)", - "surface": 2650000, - "canton": null, - "numero_insee": "68199" - } - }, - { - "pk": 9227, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MANSPACH", - "center": "POINT (957332.9464866772759706 2301004.7796903108246624)", - "surface": 5360000, - "canton": null, - "numero_insee": "68200" - } - }, - { - "pk": 15860, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MASEVAUX", - "center": "POINT (948870.0478141854982823 2319045.5651282817125320)", - "surface": 23180000, - "canton": null, - "numero_insee": "68201" - } - }, - { - "pk": 7476, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MERTZEN", - "center": "POINT (960257.5879068591166288 2298428.0918003269471228)", - "surface": 2010000, - "canton": null, - "numero_insee": "68202" - } - }, - { - "pk": 22341, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MERXHEIM", - "center": "POINT (970948.2781683830544353 2335049.2634658464230597)", - "surface": 9020000, - "canton": null, - "numero_insee": "68203" - } - }, - { - "pk": 17592, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "METZERAL", - "center": "POINT (950537.1587989715626463 2346080.6514893700368702)", - "surface": 30690000, - "canton": null, - "numero_insee": "68204" - } - }, - { - "pk": 29779, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MEYENHEIM", - "center": "POINT (976443.3675650963559747 2336097.7623736751265824)", - "surface": 12950000, - "canton": null, - "numero_insee": "68205" - } - }, - { - "pk": 27913, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MICHELBACH", - "center": "POINT (957888.4976991845760494 2317722.6716144587844610)", - "surface": 3340000, - "canton": null, - "numero_insee": "68206" - } - }, - { - "pk": 12777, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MICHELBACH-LE-BAS", - "center": "POINT (985357.3039128303062171 2300747.7326877028681338)", - "surface": 4980000, - "canton": null, - "numero_insee": "68207" - } - }, - { - "pk": 12095, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MICHELBACH-LE-HAUT", - "center": "POINT (983586.4630904390942305 2297229.5643165227957070)", - "surface": 7390000, - "canton": null, - "numero_insee": "68208" - } - }, - { - "pk": 12570, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MITTELWIHR", - "center": "POINT (969914.8194227681960911 2361860.4667459023185074)", - "surface": 2390000, - "canton": null, - "numero_insee": "68209" - } - }, - { - "pk": 30274, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MITTLACH", - "center": "POINT (949361.4997970563126728 2343168.2709074066951871)", - "surface": 11230000, - "canton": null, - "numero_insee": "68210" - } - }, - { - "pk": 28137, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MITZACH", - "center": "POINT (948590.1179245379753411 2328250.2342401915229857)", - "surface": 6370000, - "canton": null, - "numero_insee": "68211" - } - }, - { - "pk": 13199, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MOERNACH", - "center": "POINT (969534.5507197652477771 2290402.1598379327915609)", - "surface": 6760000, - "canton": null, - "numero_insee": "68212" - } - }, - { - "pk": 25277, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MOLLAU", - "center": "POINT (946191.9246310981689021 2327829.1443701386451721)", - "surface": 8750000, - "canton": null, - "numero_insee": "68213" - } - }, - { - "pk": 10138, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MONTREUX-JEUNE", - "center": "POINT (952238.8473910903558135 2299859.7425083913840353)", - "surface": 3380000, - "canton": null, - "numero_insee": "68214" - } - }, - { - "pk": 33296, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MONTREUX-VIEUX", - "center": "POINT (951923.0188376456499100 2301658.4254465862177312)", - "surface": 4170000, - "canton": null, - "numero_insee": "68215" - } - }, - { - "pk": 14657, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MOOSLARGUE", - "center": "POINT (967032.7437864264938980 2290380.4427338899113238)", - "surface": 5570000, - "canton": null, - "numero_insee": "68216" - } - }, - { - "pk": 14004, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MOOSCH", - "center": "POINT (951003.0571136223152280 2326970.1506799045018852)", - "surface": 15280000, - "canton": null, - "numero_insee": "68217" - } - }, - { - "pk": 23133, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MORSCHWILLER-LE-BAS", - "center": "POINT (969417.4148797926027328 2315420.8557508774101734)", - "surface": 7530000, - "canton": null, - "numero_insee": "68218" - } - }, - { - "pk": 22238, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MORTZWILLER", - "center": "POINT (952008.6526655415073037 2314869.5087612229399383)", - "surface": 4320000, - "canton": null, - "numero_insee": "68219" - } - }, - { - "pk": 9879, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MUESPACH", - "center": "POINT (978798.6681644754717126 2295386.5243449411354959)", - "surface": 11360000, - "canton": null, - "numero_insee": "68221" - } - }, - { - "pk": 14012, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MUESPACH-LE-HAUT", - "center": "POINT (981607.6403268855065107 2294610.2982594640925527)", - "surface": 6870000, - "canton": null, - "numero_insee": "68222" - } - }, - { - "pk": 31852, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MUHLBACH-SUR-MUNSTER", - "center": "POINT (952829.1747283667791635 2347201.3524918700568378)", - "surface": 7850000, - "canton": null, - "numero_insee": "68223" - } - }, - { - "pk": 33451, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MUNCHHOUSE", - "center": "POINT (982201.2231573477620259 2329943.0589291462674737)", - "surface": 24080000, - "canton": null, - "numero_insee": "68225" - } - }, - { - "pk": 35645, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MUNSTER", - "center": "POINT (958015.3369709493126720 2349247.8379568029195070)", - "surface": 8800000, - "canton": null, - "numero_insee": "68226" - } - }, - { - "pk": 37802, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MUNTZENHEIM", - "center": "POINT (981965.4567585969343781 2357061.5370971160009503)", - "surface": 6500000, - "canton": null, - "numero_insee": "68227" - } - }, - { - "pk": 35410, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MUNWILLER", - "center": "POINT (974125.2692646770738065 2337979.0702045541256666)", - "surface": 6680000, - "canton": null, - "numero_insee": "68228" - } - }, - { - "pk": 24521, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "MURBACH", - "center": "POINT (958338.7440888192504644 2335039.8908816408365965)", - "surface": 6430000, - "canton": null, - "numero_insee": "68229" - } - }, - { - "pk": 10016, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NAMBSHEIM", - "center": "POINT (990321.5840218344237655 2339821.1718621901236475)", - "surface": 10100000, - "canton": null, - "numero_insee": "68230" - } - }, - { - "pk": 14913, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NEUF-BRISACH", - "center": "POINT (986946.2120650397846475 2348198.1719149290584028)", - "surface": 1240000, - "canton": null, - "numero_insee": "68231" - } - }, - { - "pk": 13991, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NEUWILLER", - "center": "POINT (989425.4425974900368601 2293277.1523665832355618)", - "surface": 3860000, - "canton": null, - "numero_insee": "68232" - } - }, - { - "pk": 6211, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NIEDERBRUCK", - "center": "POINT (946269.0959319670218974 2318922.9484565146267414)", - "surface": 3790000, - "canton": null, - "numero_insee": "68233" - } - }, - { - "pk": 30695, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NIEDERENTZEN", - "center": "POINT (977814.7626029138918966 2339512.2691824063658714)", - "surface": 8840000, - "canton": null, - "numero_insee": "68234" - } - }, - { - "pk": 20257, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NIEDERHERGHEIM", - "center": "POINT (976872.4068398880772293 2344307.7206403138116002)", - "surface": 12330000, - "canton": null, - "numero_insee": "68235" - } - }, - { - "pk": 30584, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NIEDERMORSCHWIHR", - "center": "POINT (966362.8101104821544141 2356025.3034385433420539)", - "surface": 3410000, - "canton": null, - "numero_insee": "68237" - } - }, - { - "pk": 33061, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "NIFFER", - "center": "POINT (987041.1116391699761152 2314272.9831944508478045)", - "surface": 8680000, - "canton": null, - "numero_insee": "68238" - } - }, - { - "pk": 30080, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERBRUCK", - "center": "POINT (943328.9253219498787075 2323300.8769677225500345)", - "surface": 4230000, - "canton": null, - "numero_insee": "68239" - } - }, - { - "pk": 11415, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERDORF", - "center": "POINT (974487.7527021579444408 2296249.7889951020479202)", - "surface": 4130000, - "canton": null, - "numero_insee": "68240" - } - }, - { - "pk": 25026, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERENTZEN", - "center": "POINT (976621.7667351916898042 2338601.2175354883074760)", - "surface": 8870000, - "canton": null, - "numero_insee": "68241" - } - }, - { - "pk": 36806, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERHERGHEIM", - "center": "POINT (977792.1519861302804202 2342114.0470150117762387)", - "surface": 19880000, - "canton": null, - "numero_insee": "68242" - } - }, - { - "pk": 31098, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERLARG", - "center": "POINT (968791.3072203178890049 2283790.4223331478424370)", - "surface": 8280000, - "canton": null, - "numero_insee": "68243" - } - }, - { - "pk": 5176, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERMORSCHWIHR", - "center": "POINT (969638.8270343865733594 2347547.3733780211769044)", - "surface": 1430000, - "canton": null, - "numero_insee": "68244" - } - }, - { - "pk": 4479, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERMORSCHWILLER", - "center": "POINT (973908.2991379378363490 2305351.9488988299854100)", - "surface": 6120000, - "canton": null, - "numero_insee": "68245" - } - }, - { - "pk": 14198, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OBERSAASHEIM", - "center": "POINT (989378.3102360430639237 2344716.6840525623410940)", - "surface": 12970000, - "canton": null, - "numero_insee": "68246" - } - }, - { - "pk": 19708, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ODEREN", - "center": "POINT (947824.5891916548134759 2335749.3344398234039545)", - "surface": 19090000, - "canton": null, - "numero_insee": "68247" - } - }, - { - "pk": 10424, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OLTINGUE", - "center": "POINT (981257.7947785209398717 2288802.6299696071073413)", - "surface": 13320000, - "canton": null, - "numero_insee": "68248" - } - }, - { - "pk": 17591, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ORBEY", - "center": "POINT (957047.0194777001161128 2357045.2764106658287346)", - "surface": 45760000, - "canton": null, - "numero_insee": "68249" - } - }, - { - "pk": 23763, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ORSCHWIHR", - "center": "POINT (965320.1039685346186161 2337802.5302985748276114)", - "surface": 7080000, - "canton": null, - "numero_insee": "68250" - } - }, - { - "pk": 22561, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OSENBACH", - "center": "POINT (963966.2308518368517980 2343895.4059508899226785)", - "surface": 5730000, - "canton": null, - "numero_insee": "68251" - } - }, - { - "pk": 36034, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OSTHEIM", - "center": "POINT (974409.9955493072047830 2362800.1846191417425871)", - "surface": 8110000, - "canton": null, - "numero_insee": "68252" - } - }, - { - "pk": 31428, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "OTTMARSHEIM", - "center": "POINT (986070.8618404632434249 2322270.7656786064617336)", - "surface": 25650000, - "canton": null, - "numero_insee": "68253" - } - }, - { - "pk": 11414, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "PETIT-LANDAU", - "center": "POINT (987520.5771243006456643 2316679.0242309835739434)", - "surface": 17510000, - "canton": null, - "numero_insee": "68254" - } - }, - { - "pk": 22747, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "PFAFFENHEIM", - "center": "POINT (968571.1005768051836640 2343735.2320725885219872)", - "surface": 14690000, - "canton": null, - "numero_insee": "68255" - } - }, - { - "pk": 11228, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "PFASTATT", - "center": "POINT (971384.0599850323051214 2319441.0421067201532423)", - "surface": 5250000, - "canton": null, - "numero_insee": "68256" - } - }, - { - "pk": 37289, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "PFETTERHOUSE", - "center": "POINT (963736.4372588281985372 2289651.2775753741152585)", - "surface": 14280000, - "canton": null, - "numero_insee": "68257" - } - }, - { - "pk": 10841, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "PULVERSHEIM", - "center": "POINT (971214.4657962570199743 2327445.7500134594738483)", - "surface": 8450000, - "canton": null, - "numero_insee": "68258" - } - }, - { - "pk": 37528, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RAEDERSDORF", - "center": "POINT (977973.6619181263959035 2286672.4114699140191078)", - "surface": 7330000, - "canton": null, - "numero_insee": "68259" - } - }, - { - "pk": 25570, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RAEDERSHEIM", - "center": "POINT (969271.4389090760378167 2332232.5609470633789897)", - "surface": 5670000, - "canton": null, - "numero_insee": "68260" - } - }, - { - "pk": 5787, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RAMMERSMATT", - "center": "POINT (953656.0532168345525861 2321088.6017998182214797)", - "surface": 5480000, - "canton": null, - "numero_insee": "68261" - } - }, - { - "pk": 23271, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RANSPACH", - "center": "POINT (950048.6528969994978979 2333166.6283604404889047)", - "surface": 11250000, - "canton": null, - "numero_insee": "68262" - } - }, - { - "pk": 31524, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RANSPACH-LE-BAS", - "center": "POINT (983963.2619314263574779 2299934.9800847065635026)", - "surface": 4540000, - "canton": null, - "numero_insee": "68263" - } - }, - { - "pk": 32596, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RANSPACH-LE-HAUT", - "center": "POINT (982069.7297635169234127 2299017.8078633439727128)", - "surface": 4430000, - "canton": null, - "numero_insee": "68264" - } - }, - { - "pk": 10896, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RANTZWILLER", - "center": "POINT (977902.4498208356089890 2306387.4336319831199944)", - "surface": 5270000, - "canton": null, - "numero_insee": "68265" - } - }, - { - "pk": 29795, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "REGUISHEIM", - "center": "POINT (976166.6374109298922122 2333393.2949976017698646)", - "surface": 23680000, - "canton": null, - "numero_insee": "68266" - } - }, - { - "pk": 34144, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "REININGUE", - "center": "POINT (965895.8442303328774869 2317591.9950486281886697)", - "surface": 18500000, - "canton": null, - "numero_insee": "68267" - } - }, - { - "pk": 6561, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RETZWILLER", - "center": "POINT (956816.1005388426128775 2302901.7957402295432985)", - "surface": 4110000, - "canton": null, - "numero_insee": "68268" - } - }, - { - "pk": 16665, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIBEAUVILLE", - "center": "POINT (967760.4129123078892007 2367946.2701608845964074)", - "surface": 32160000, - "canton": null, - "numero_insee": "68269" - } - }, - { - "pk": 11356, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RICHWILLER", - "center": "POINT (970369.4562396984547377 2321033.4713919456116855)", - "surface": 5540000, - "canton": null, - "numero_insee": "68270" - } - }, - { - "pk": 21381, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIEDISHEIM", - "center": "POINT (976913.9959512471687049 2316486.7465933887287974)", - "surface": 6940000, - "canton": null, - "numero_insee": "68271" - } - }, - { - "pk": 35301, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIEDWIHR", - "center": "POINT (979536.0107487537898123 2360242.8019958743825555)", - "surface": 3100000, - "canton": null, - "numero_insee": "68272" - } - }, - { - "pk": 26728, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIESPACH", - "center": "POINT (972509.7796734634321183 2293530.4641574583947659)", - "surface": 7600000, - "canton": null, - "numero_insee": "68273" - } - }, - { - "pk": 37179, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIMBACH-PRES-GUEBWILLER", - "center": "POINT (959851.0620000204071403 2333752.0185961150564253)", - "surface": 4840000, - "canton": null, - "numero_insee": "68274" - } - }, - { - "pk": 37296, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIMBACH-PRES-MASEVAUX", - "center": "POINT (944515.0223005695734173 2325012.4622515984810889)", - "surface": 16510000, - "canton": null, - "numero_insee": "68275" - } - }, - { - "pk": 34682, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIQUEWIHR", - "center": "POINT (966887.6215268621454015 2364736.3274364117532969)", - "surface": 16970000, - "canton": null, - "numero_insee": "68277" - } - }, - { - "pk": 34605, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RIXHEIM", - "center": "POINT (979904.7983062430284917 2317813.7472002217546105)", - "surface": 19630000, - "canton": null, - "numero_insee": "68278" - } - }, - { - "pk": 32068, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RODEREN", - "center": "POINT (955872.3426001133630052 2319406.5040572616271675)", - "surface": 7170000, - "canton": null, - "numero_insee": "68279" - } - }, - { - "pk": 19621, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RODERN", - "center": "POINT (968220.7693853614619002 2372553.6520468448288739)", - "surface": 6900000, - "canton": null, - "numero_insee": "68280" - } - }, - { - "pk": 27851, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ROGGENHOUSE", - "center": "POINT (983974.6269762278534472 2333160.9312404305674136)", - "surface": 6580000, - "canton": null, - "numero_insee": "68281" - } - }, - { - "pk": 22490, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ROMAGNY", - "center": "POINT (955433.3252727214712650 2300788.1486814739182591)", - "surface": 2860000, - "canton": null, - "numero_insee": "68282" - } - }, - { - "pk": 15632, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ROMBACH-LE-FRANC", - "center": "POINT (963876.2416709291283041 2377319.4419857384636998)", - "surface": 17850000, - "canton": null, - "numero_insee": "68283" - } - }, - { - "pk": 34255, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ROPPENTZWILLER", - "center": "POINT (975609.4055944557767361 2293857.6238652216270566)", - "surface": 4030000, - "canton": null, - "numero_insee": "68284" - } - }, - { - "pk": 17562, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RORSCHWIHR", - "center": "POINT (973449.4067424209788442 2369696.9385334057733417)", - "surface": 2450000, - "canton": null, - "numero_insee": "68285" - } - }, - { - "pk": 7117, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ROSENAU", - "center": "POINT (990815.1029711519367993 2306099.3796079675666988)", - "surface": 6350000, - "canton": null, - "numero_insee": "68286" - } - }, - { - "pk": 18484, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ROUFFACH", - "center": "POINT (970995.3321446536574513 2341154.3148398227058351)", - "surface": 39990000, - "canton": null, - "numero_insee": "68287" - } - }, - { - "pk": 5138, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RUEDERBACH", - "center": "POINT (970090.6737133428687230 2295511.0490981019102037)", - "surface": 4460000, - "canton": null, - "numero_insee": "68288" - } - }, - { - "pk": 21081, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RUELISHEIM", - "center": "POINT (975333.8296424963045865 2325580.0680429218336940)", - "surface": 7160000, - "canton": null, - "numero_insee": "68289" - } - }, - { - "pk": 22407, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RUSTENHART", - "center": "POINT (983620.4751377416541800 2339362.5841599511913955)", - "surface": 12170000, - "canton": null, - "numero_insee": "68290" - } - }, - { - "pk": 33950, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "RUMERSHEIM-LE-HAUT", - "center": "POINT (987406.5652105994522572 2329788.1676998282782733)", - "surface": 16750000, - "canton": null, - "numero_insee": "68291" - } - }, - { - "pk": 28260, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINT-AMARIN", - "center": "POINT (951665.3706947974860668 2331379.2673195973038673)", - "surface": 11590000, - "canton": null, - "numero_insee": "68292" - } - }, - { - "pk": 36138, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINT-COSME", - "center": "POINT (953865.4473208137787879 2308480.6093367640860379)", - "surface": 2770000, - "canton": null, - "numero_insee": "68293" - } - }, - { - "pk": 15715, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINTE-CROIX-AUX-MINES", - "center": "POINT (961499.8576851647812873 2374396.6945679672062397)", - "surface": 27960000, - "canton": null, - "numero_insee": "68294" - } - }, - { - "pk": 20493, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINTE-CROIX-EN-PLAINE", - "center": "POINT (977151.7405224854592234 2346711.9615752743557096)", - "surface": 25830000, - "canton": null, - "numero_insee": "68295" - } - }, - { - "pk": 29163, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINT-HIPPOLYTE", - "center": "POINT (971830.0941832319367677 2371784.4147919514216483)", - "surface": 17890000, - "canton": null, - "numero_insee": "68296" - } - }, - { - "pk": 17633, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINT-LOUIS", - "center": "POINT (990950.8648966312175617 2301997.3263570219278336)", - "surface": 16950000, - "canton": null, - "numero_insee": "68297" - } - }, - { - "pk": 19985, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINTE-MARIE-AUX-MINES", - "center": "POINT (958838.0255493936128914 2369770.2194758853875101)", - "surface": 45080000, - "canton": null, - "numero_insee": "68298" - } - }, - { - "pk": 24520, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAINT-ULRICH", - "center": "POINT (958954.0529159994330257 2298717.0220865779556334)", - "surface": 3900000, - "canton": null, - "numero_insee": "68299" - } - }, - { - "pk": 10711, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SAUSHEIM", - "center": "POINT (979172.9993548200000077 2321410.1810872014611959)", - "surface": 16960000, - "canton": null, - "numero_insee": "68300" - } - }, - { - "pk": 10263, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SCHLIERBACH", - "center": "POINT (982068.9019891195930541 2310626.9383205743506551)", - "surface": 11910000, - "canton": null, - "numero_insee": "68301" - } - }, - { - "pk": 32069, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SCHWEIGHOUSE-THANN", - "center": "POINT (962602.2131026914576069 2316562.6334627186879516)", - "surface": 10730000, - "canton": null, - "numero_insee": "68302" - } - }, - { - "pk": 10517, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SCHWOBEN", - "center": "POINT (972840.5421686100307852 2301539.6796592338941991)", - "surface": 2410000, - "canton": null, - "numero_insee": "68303" - } - }, - { - "pk": 28937, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SENTHEIM", - "center": "POINT (953193.8793572169961408 2316681.1837624209001660)", - "surface": 6100000, - "canton": null, - "numero_insee": "68304" - } - }, - { - "pk": 26642, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SEPPOIS-LE-BAS", - "center": "POINT (963505.9015052927425131 2293152.0672873440198600)", - "surface": 6720000, - "canton": null, - "numero_insee": "68305" - } - }, - { - "pk": 35646, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SEPPOIS-LE-HAUT", - "center": "POINT (965113.1333672150503844 2292465.4569153762422502)", - "surface": 6250000, - "canton": null, - "numero_insee": "68306" - } - }, - { - "pk": 24522, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SEWEN", - "center": "POINT (940139.6971533114556223 2321772.0963721708394587)", - "surface": 21530000, - "canton": null, - "numero_insee": "68307" - } - }, - { - "pk": 36033, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SICKERT", - "center": "POINT (948156.5496114159468561 2320540.5429170383140445)", - "surface": 5120000, - "canton": null, - "numero_insee": "68308" - } - }, - { - "pk": 29012, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SIERENTZ", - "center": "POINT (984990.9656312540173531 2308350.5372891728766263)", - "surface": 13170000, - "canton": null, - "numero_insee": "68309" - } - }, - { - "pk": 28523, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SIGOLSHEIM", - "center": "POINT (970432.5357469271402806 2359863.4769777241162956)", - "surface": 5850000, - "canton": null, - "numero_insee": "68310" - } - }, - { - "pk": 27230, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SONDERNACH", - "center": "POINT (953478.1749040185241029 2341602.7510908562690020)", - "surface": 24920000, - "canton": null, - "numero_insee": "68311" - } - }, - { - "pk": 7432, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SONDERSDORF", - "center": "POINT (976367.2844588262960315 2287258.9371824827976525)", - "surface": 8420000, - "canton": null, - "numero_insee": "68312" - } - }, - { - "pk": 28368, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SOPPE-LE-BAS", - "center": "POINT (956429.1033813888207078 2312906.2789255897514522)", - "surface": 5620000, - "canton": null, - "numero_insee": "68313" - } - }, - { - "pk": 13058, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SOPPE-LE-HAUT", - "center": "POINT (954218.0085579338483512 2313987.9627989162690938)", - "surface": 7500000, - "canton": null, - "numero_insee": "68314" - } - }, - { - "pk": 16792, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SOULTZ-HAUT-RHIN", - "center": "POINT (959470.7544009785633534 2331446.9600853589363396)", - "surface": 29470000, - "canton": null, - "numero_insee": "68315" - } - }, - { - "pk": 28498, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SOULTZBACH-LES-BAINS", - "center": "POINT (962831.6110908109694719 2347788.5011286828666925)", - "surface": 7020000, - "canton": null, - "numero_insee": "68316" - } - }, - { - "pk": 33713, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SOULTZEREN", - "center": "POINT (954177.1862988513894379 2353317.6209328090772033)", - "surface": 18360000, - "canton": null, - "numero_insee": "68317" - } - }, - { - "pk": 20485, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SOULTZMATT", - "center": "POINT (963994.0247751463903114 2340693.2234235149808228)", - "surface": 20040000, - "canton": null, - "numero_insee": "68318" - } - }, - { - "pk": 24714, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SPECHBACH-LE-BAS", - "center": "POINT (967276.6761054564267397 2308396.8005318334326148)", - "surface": 4140000, - "canton": null, - "numero_insee": "68319" - } - }, - { - "pk": 7362, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SPECHBACH-LE-HAUT", - "center": "POINT (966263.8069749637506902 2309789.1055196798406541)", - "surface": 3920000, - "canton": null, - "numero_insee": "68320" - } - }, - { - "pk": 9419, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STAFFELFELDEN", - "center": "POINT (967826.8760600858367980 2325715.0256038773804903)", - "surface": 7450000, - "canton": null, - "numero_insee": "68321" - } - }, - { - "pk": 10086, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STEINBACH", - "center": "POINT (959330.5176508156582713 2324540.4416135163046420)", - "surface": 6120000, - "canton": null, - "numero_insee": "68322" - } - }, - { - "pk": 8972, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STEINBRUNN-LE-BAS", - "center": "POINT (977175.8688036140520126 2309383.4759111697785556)", - "surface": 8560000, - "canton": null, - "numero_insee": "68323" - } - }, - { - "pk": 37533, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STEINBRUNN-LE-HAUT", - "center": "POINT (975591.2527395266806707 2307468.2184313880279660)", - "surface": 9200000, - "canton": null, - "numero_insee": "68324" - } - }, - { - "pk": 35902, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STEINSOULTZ", - "center": "POINT (976789.4052694648271427 2296269.7824600958265364)", - "surface": 4070000, - "canton": null, - "numero_insee": "68325" - } - }, - { - "pk": 27720, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STERNENBERG", - "center": "POINT (956652.6765897498698905 2310206.1089268224313855)", - "surface": 3420000, - "canton": null, - "numero_insee": "68326" - } - }, - { - "pk": 24920, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STETTEN", - "center": "POINT (981727.7653714037733153 2303818.6293962313793600)", - "surface": 4360000, - "canton": null, - "numero_insee": "68327" - } - }, - { - "pk": 11650, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STORCKENSOHN", - "center": "POINT (944386.3430574580561370 2328313.8839269713498652)", - "surface": 5090000, - "canton": null, - "numero_insee": "68328" - } - }, - { - "pk": 34657, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STOSSWIHR", - "center": "POINT (952003.4708453097846359 2350096.3731621736660600)", - "surface": 26260000, - "canton": null, - "numero_insee": "68329" - } - }, - { - "pk": 25248, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "STRUETH", - "center": "POINT (959269.0238913081120700 2297018.4078645696863532)", - "surface": 4350000, - "canton": null, - "numero_insee": "68330" - } - }, - { - "pk": 8153, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "SUNDHOFFEN", - "center": "POINT (978920.7817909743171185 2350430.1234890413470566)", - "surface": 12750000, - "canton": null, - "numero_insee": "68331" - } - }, - { - "pk": 26058, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "TAGOLSHEIM", - "center": "POINT (969894.1586639871820807 2306618.1117167244665325)", - "surface": 3210000, - "canton": null, - "numero_insee": "68332" - } - }, - { - "pk": 10637, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "TAGSDORF", - "center": "POINT (972828.3749408539151773 2302940.6789081231690943)", - "surface": 2500000, - "canton": null, - "numero_insee": "68333" - } - }, - { - "pk": 6734, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "THANN", - "center": "POINT (956137.8379911520751193 2323411.8999731284566224)", - "surface": 12430000, - "canton": null, - "numero_insee": "68334" - } - }, - { - "pk": 8149, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "THANNENKIRCH", - "center": "POINT (968034.5417258514789864 2370950.8595939390361309)", - "surface": 4630000, - "canton": null, - "numero_insee": "68335" - } - }, - { - "pk": 29237, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "TRAUBACH-LE-BAS", - "center": "POINT (957091.1461042294977233 2305806.4625363508239388)", - "surface": 6790000, - "canton": null, - "numero_insee": "68336" - } - }, - { - "pk": 29450, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "TRAUBACH-LE-HAUT", - "center": "POINT (957176.4630986545234919 2307508.5368491057306528)", - "surface": 6890000, - "canton": null, - "numero_insee": "68337" - } - }, - { - "pk": 19548, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "TURCKHEIM", - "center": "POINT (965876.3746431360486895 2354419.8843878800980747)", - "surface": 16380000, - "canton": null, - "numero_insee": "68338" - } - }, - { - "pk": 9472, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "UEBERSTRASS", - "center": "POINT (962297.2229288872331381 2294042.2960217762738466)", - "surface": 5160000, - "canton": null, - "numero_insee": "68340" - } - }, - { - "pk": 16884, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "UFFHEIM", - "center": "POINT (983007.8146874806843698 2306231.6461023287847638)", - "surface": 4330000, - "canton": null, - "numero_insee": "68341" - } - }, - { - "pk": 4160, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "UFFHOLTZ", - "center": "POINT (961224.0251758331432939 2325457.5633065276779234)", - "surface": 11890000, - "canton": null, - "numero_insee": "68342" - } - }, - { - "pk": 28296, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "UNGERSHEIM", - "center": "POINT (971383.3174214735627174 2331049.9814450880512595)", - "surface": 13610000, - "canton": null, - "numero_insee": "68343" - } - }, - { - "pk": 29240, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "URBES", - "center": "POINT (943269.9777273321524262 2330105.5924436151981354)", - "surface": 12520000, - "canton": null, - "numero_insee": "68344" - } - }, - { - "pk": 9950, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "URSCHENHEIM", - "center": "POINT (983785.8087604666361585 2354875.7203497858718038)", - "surface": 6390000, - "canton": null, - "numero_insee": "68345" - } - }, - { - "pk": 30389, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "VIEUX-FERRETTE", - "center": "POINT (973936.8623180523281917 2290540.4660643734969199)", - "surface": 6630000, - "canton": null, - "numero_insee": "68347" - } - }, - { - "pk": 11931, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "VIEUX-THANN", - "center": "POINT (958647.3919389664661139 2322532.9718761905096471)", - "surface": 5120000, - "canton": null, - "numero_insee": "68348" - } - }, - { - "pk": 32391, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "VILLAGE-NEUF", - "center": "POINT (993042.7885185226332396 2303116.3943522404879332)", - "surface": 6800000, - "canton": null, - "numero_insee": "68349" - } - }, - { - "pk": 13139, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "VOEGTLINSHOFFEN", - "center": "POINT (967137.1318233542842790 2347525.6501828809268773)", - "surface": 4050000, - "canton": null, - "numero_insee": "68350" - } - }, - { - "pk": 9876, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "VOGELGRUN", - "center": "POINT (991254.3537204365711659 2347635.1986439153552055)", - "surface": 4940000, - "canton": null, - "numero_insee": "68351" - } - }, - { - "pk": 25966, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "VOLGELSHEIM", - "center": "POINT (988140.9327306899940595 2348909.0918530928902328)", - "surface": 8780000, - "canton": null, - "numero_insee": "68352" - } - }, - { - "pk": 29236, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WAHLBACH", - "center": "POINT (976220.3676722338423133 2304171.0879016644321382)", - "surface": 6230000, - "canton": null, - "numero_insee": "68353" - } - }, - { - "pk": 31884, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WALBACH", - "center": "POINT (962790.7915723968762904 2352491.6775137903168797)", - "surface": 5520000, - "canton": null, - "numero_insee": "68354" - } - }, - { - "pk": 12778, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WALDIGHOFEN", - "center": "POINT (974599.9933068589307368 2294849.6515394141897559)", - "surface": 4120000, - "canton": null, - "numero_insee": "68355" - } - }, - { - "pk": 7846, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WALHEIM", - "center": "POINT (970408.4163683389779180 2305021.3188282973133028)", - "surface": 4780000, - "canton": null, - "numero_insee": "68356" - } - }, - { - "pk": 28808, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WALTENHEIM", - "center": "POINT (981796.5237802719930187 2307422.0605549444444478)", - "surface": 2350000, - "canton": null, - "numero_insee": "68357" - } - }, - { - "pk": 26808, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WASSERBOURG", - "center": "POINT (959261.2952516966033727 2344054.7281738324090838)", - "surface": 9510000, - "canton": null, - "numero_insee": "68358" - } - }, - { - "pk": 28135, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WATTWILLER", - "center": "POINT (961911.4867682233452797 2326964.6832747394219041)", - "surface": 13600000, - "canton": null, - "numero_insee": "68359" - } - }, - { - "pk": 11355, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WECKOLSHEIM", - "center": "POINT (984860.4515612840186805 2346378.6732643172144890)", - "surface": 6990000, - "canton": null, - "numero_insee": "68360" - } - }, - { - "pk": 24924, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WEGSCHEID", - "center": "POINT (947234.2418596800416708 2323034.4817784857004881)", - "surface": 10150000, - "canton": null, - "numero_insee": "68361" - } - }, - { - "pk": 11286, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WENTZWILLER", - "center": "POINT (986401.5256837944034487 2295752.8465022249147296)", - "surface": 4710000, - "canton": null, - "numero_insee": "68362" - } - }, - { - "pk": 32599, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WERENTZHOUSE", - "center": "POINT (978226.0596616531256586 2292179.0015315134078264)", - "surface": 4530000, - "canton": null, - "numero_insee": "68363" - } - }, - { - "pk": 12351, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WESTHALTEN", - "center": "POINT (966991.7308073537424207 2341219.6251944787800312)", - "surface": 11160000, - "canton": null, - "numero_insee": "68364" - } - }, - { - "pk": 20017, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WETTOLSHEIM", - "center": "POINT (970310.6218532837228850 2350855.6904367413371801)", - "surface": 8740000, - "canton": null, - "numero_insee": "68365" - } - }, - { - "pk": 37803, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WICKERSCHWIHR", - "center": "POINT (979755.2816185802221298 2358043.0689251576550305)", - "surface": 2320000, - "canton": null, - "numero_insee": "68366" - } - }, - { - "pk": 22606, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WIDENSOLEN", - "center": "POINT (983307.2254312271252275 2352369.6847061295993626)", - "surface": 10590000, - "canton": null, - "numero_insee": "68367" - } - }, - { - "pk": 10681, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WIHR-AU-VAL", - "center": "POINT (962105.9519149073166773 2350684.3837591740302742)", - "surface": 12400000, - "canton": null, - "numero_insee": "68368" - } - }, - { - "pk": 30109, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WILDENSTEIN", - "center": "POINT (945267.3799096085131168 2342132.0324644120410085)", - "surface": 9850000, - "canton": null, - "numero_insee": "68370" - } - }, - { - "pk": 5524, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WILLER", - "center": "POINT (974968.1195431142114103 2298555.7855467475019395)", - "surface": 6220000, - "canton": null, - "numero_insee": "68371" - } - }, - { - "pk": 17006, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WILLER-SUR-THUR", - "center": "POINT (954800.4860460180789232 2327603.5366675257682800)", - "surface": 18050000, - "canton": null, - "numero_insee": "68372" - } - }, - { - "pk": 24715, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WINKEL", - "center": "POINT (971184.3654925024602562 2284812.0009383680298924)", - "surface": 7750000, - "canton": null, - "numero_insee": "68373" - } - }, - { - "pk": 6017, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WINTZENHEIM", - "center": "POINT (967599.2402744422433898 2351932.9703521914780140)", - "surface": 18960000, - "canton": null, - "numero_insee": "68374" - } - }, - { - "pk": 22204, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WITTELSHEIM", - "center": "POINT (967054.9878594169858843 2322405.7771763871423900)", - "surface": 23580000, - "canton": null, - "numero_insee": "68375" - } - }, - { - "pk": 8553, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WITTENHEIM", - "center": "POINT (972444.8498195665888488 2324053.8151492616161704)", - "surface": 19120000, - "canton": null, - "numero_insee": "68376" - } - }, - { - "pk": 9105, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WITTERSDORF", - "center": "POINT (970832.1622420009225607 2302322.8706512553617358)", - "surface": 4820000, - "canton": null, - "numero_insee": "68377" - } - }, - { - "pk": 31730, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WOLFERSDORF", - "center": "POINT (958103.1397784358123317 2304514.2175335744395852)", - "surface": 3680000, - "canton": null, - "numero_insee": "68378" - } - }, - { - "pk": 8532, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WOLFGANTZEN", - "center": "POINT (984635.9498330533970147 2349178.8329514171928167)", - "surface": 9410000, - "canton": null, - "numero_insee": "68379" - } - }, - { - "pk": 12360, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WOLSCHWILLER", - "center": "POINT (981989.6124466492328793 2285206.1043852386064827)", - "surface": 10180000, - "canton": null, - "numero_insee": "68380" - } - }, - { - "pk": 5622, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "WUENHEIM", - "center": "POINT (962485.8515229241456836 2329971.9718928332440555)", - "surface": 6210000, - "canton": null, - "numero_insee": "68381" - } - }, - { - "pk": 34707, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ZAESSINGUE", - "center": "POINT (978230.4876154398079962 2303187.7638095770962536)", - "surface": 5130000, - "canton": null, - "numero_insee": "68382" - } - }, - { - "pk": 16152, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ZELLENBERG", - "center": "POINT (971893.5522157271625474 2364479.5819315831176937)", - "surface": 4930000, - "canton": null, - "numero_insee": "68383" - } - }, - { - "pk": 29010, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ZILLISHEIM", - "center": "POINT (972564.7889377437531948 2310244.1262587299570441)", - "surface": 8260000, - "canton": null, - "numero_insee": "68384" - } - }, - { - "pk": 13284, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ZIMMERBACH", - "center": "POINT (964387.5267710210755467 2353005.9115700935944915)", - "surface": 2240000, - "canton": null, - "numero_insee": "68385" - } - }, - { - "pk": 13060, - "model": "ishtar_common.town", - "fields": { - "departement": 69, - "name": "ZIMMERSHEIM", - "center": "POINT (978234.9095541642745957 2314196.4316982026211917)", - "surface": 3100000, - "canton": null, - "numero_insee": "68386" - } - }, - { - "pk": 30881, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AFFOUX", - "center": "POINT (761325.1686571489553899 2095844.7503506585489959)", - "surface": 10680000, - "canton": null, - "numero_insee": "69001" - } - }, - { - "pk": 25895, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AIGUEPERSE", - "center": "POINT (760712.4829705152660608 2144284.0994868702255189)", - "surface": 12900000, - "canton": null, - "numero_insee": "69002" - } - }, - { - "pk": 10374, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ALBIGNY-SUR-SAONE", - "center": "POINT (793628.3744353116489947 2099022.9480120451189578)", - "surface": 2660000, - "canton": null, - "numero_insee": "69003" - } - }, - { - "pk": 11138, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AMBERIEUX", - "center": "POINT (786462.4411877783713862 2105968.3136447314172983)", - "surface": 4610000, - "canton": null, - "numero_insee": "69005" - } - }, - { - "pk": 21749, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AMPLEPUIS", - "center": "POINT (754205.8171625812537968 2109096.5658925264142454)", - "surface": 38750000, - "canton": null, - "numero_insee": "69006" - } - }, - { - "pk": 36956, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AMPUIS", - "center": "POINT (792669.9557566090952605 2058876.5586770549416542)", - "surface": 15470000, - "canton": null, - "numero_insee": "69007" - } - }, - { - "pk": 6763, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ANCY", - "center": "POINT (768341.4685865303035825 2094703.3893157236743718)", - "surface": 11880000, - "canton": null, - "numero_insee": "69008" - } - }, - { - "pk": 6554, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ANSE", - "center": "POINT (783848.2509354462381452 2107347.3088480862788856)", - "surface": 15360000, - "canton": null, - "numero_insee": "69009" - } - }, - { - "pk": 10761, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "L'ARBRESLE", - "center": "POINT (776444.2283782872837037 2095272.9268404557369649)", - "surface": 3310000, - "canton": null, - "numero_insee": "69010" - } - }, - { - "pk": 34457, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LES ARDILLATS", - "center": "POINT (769705.1671830981504172 2134351.6486681387759745)", - "surface": 22860000, - "canton": null, - "numero_insee": "69012" - } - }, - { - "pk": 14266, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ARNAS", - "center": "POINT (783775.6590785958105698 2115854.5760232000611722)", - "surface": 17780000, - "canton": null, - "numero_insee": "69013" - } - }, - { - "pk": 26038, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AVEIZE", - "center": "POINT (766584.7756548284087330 2077672.3301176999229938)", - "surface": 16880000, - "canton": null, - "numero_insee": "69014" - } - }, - { - "pk": 24114, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AVENAS", - "center": "POINT (774601.5906632966361940 2135294.2074956423602998)", - "surface": 9490000, - "canton": null, - "numero_insee": "69015" - } - }, - { - "pk": 11065, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "AZOLETTE", - "center": "POINT (760195.5069899001391605 2134470.8169913352467120)", - "surface": 4270000, - "canton": null, - "numero_insee": "69016" - } - }, - { - "pk": 35857, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BAGNOLS", - "center": "POINT (777074.8486863964935765 2103485.9867927990853786)", - "surface": 7480000, - "canton": null, - "numero_insee": "69017" - } - }, - { - "pk": 31935, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BEAUJEU", - "center": "POINT (773538.2141505909385160 2130881.1315752556547523)", - "surface": 17810000, - "canton": null, - "numero_insee": "69018" - } - }, - { - "pk": 4166, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BELLEVILLE", - "center": "POINT (785097.4168414530577138 2125174.4215821865946054)", - "surface": 10320000, - "canton": null, - "numero_insee": "69019" - } - }, - { - "pk": 33036, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BELMONT-D'AZERGUES", - "center": "POINT (781016.6272781623993069 2099015.3967118160799146)", - "surface": 1540000, - "canton": null, - "numero_insee": "69020" - } - }, - { - "pk": 19999, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BESSENAY", - "center": "POINT (771899.1026348395971581 2088327.6751218030694872)", - "surface": 14030000, - "canton": null, - "numero_insee": "69021" - } - }, - { - "pk": 13184, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BIBOST", - "center": "POINT (771977.0093736569397151 2090930.7938612475991249)", - "surface": 5310000, - "canton": null, - "numero_insee": "69022" - } - }, - { - "pk": 14584, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BLACE", - "center": "POINT (777956.2082994617521763 2117506.5020824028179049)", - "surface": 11010000, - "canton": null, - "numero_insee": "69023" - } - }, - { - "pk": 30300, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LE BOIS-D'OINGT", - "center": "POINT (773863.5610023188637570 2104459.5392790595069528)", - "surface": 5210000, - "canton": null, - "numero_insee": "69024" - } - }, - { - "pk": 24508, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LE BREUIL", - "center": "POINT (774890.0211933345999569 2101465.4881414962001145)", - "surface": 5640000, - "canton": null, - "numero_insee": "69026" - } - }, - { - "pk": 5779, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BRIGNAIS", - "center": "POINT (788201.2295100408373401 2078156.9474270418286324)", - "surface": 10320000, - "canton": null, - "numero_insee": "69027" - } - }, - { - "pk": 13190, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BRINDAS", - "center": "POINT (784158.4244093296583742 2082726.8225900516845286)", - "surface": 11390000, - "canton": null, - "numero_insee": "69028" - } - }, - { - "pk": 4390, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BRON", - "center": "POINT (800356.3798838357906789 2084766.9350826495792717)", - "surface": 10260000, - "canton": null, - "numero_insee": "69029" - } - }, - { - "pk": 9852, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BRUSSIEU", - "center": "POINT (769622.6836034368025139 2085305.4356048724148422)", - "surface": 6840000, - "canton": null, - "numero_insee": "69031" - } - }, - { - "pk": 26890, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "BULLY", - "center": "POINT (774220.1354451114311814 2097856.4051142837852240)", - "surface": 12750000, - "canton": null, - "numero_insee": "69032" - } - }, - { - "pk": 28332, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CAILLOUX-SUR-FONTAINES", - "center": "POINT (797734.4845954637276009 2098757.7394583071582019)", - "surface": 8380000, - "canton": null, - "numero_insee": "69033" - } - }, - { - "pk": 36318, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CALUIRE-ET-CUIRE", - "center": "POINT (795393.1046316173160449 2091631.0606343529652804)", - "surface": 10400000, - "canton": null, - "numero_insee": "69034" - } - }, - { - "pk": 22361, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CENVES", - "center": "POINT (779025.1082402798347175 2144740.4493365474045277)", - "surface": 26330000, - "canton": null, - "numero_insee": "69035" - } - }, - { - "pk": 7607, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CERCIE", - "center": "POINT (780070.9958162499824539 2127733.9175860323011875)", - "surface": 4990000, - "canton": null, - "numero_insee": "69036" - } - }, - { - "pk": 19874, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAMBOST-ALLIERES", - "center": "POINT (768268.4283970270771533 2115021.6968980752862990)", - "surface": 13920000, - "canton": null, - "numero_insee": "69037" - } - }, - { - "pk": 5123, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAMBOST-LONGESSAIGNE", - "center": "POINT (758789.3794567595468834 2088015.8110050582326949)", - "surface": 15400000, - "canton": null, - "numero_insee": "69038" - } - }, - { - "pk": 20988, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAMELET", - "center": "POINT (767496.7414634650340304 2111611.9726811605505645)", - "surface": 14720000, - "canton": null, - "numero_insee": "69039" - } - }, - { - "pk": 7232, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAMPAGNE-AU-MONT-D'OR", - "center": "POINT (790388.7536320446524769 2091588.3268006732687354)", - "surface": 2590000, - "canton": null, - "numero_insee": "69040" - } - }, - { - "pk": 7347, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LA CHAPELLE-SUR-COISE", - "center": "POINT (768313.5618120189756155 2074484.0056332638487220)", - "surface": 6660000, - "canton": null, - "numero_insee": "69042" - } - }, - { - "pk": 11529, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAPONOST", - "center": "POINT (787471.5688075358048081 2081553.9561094935052097)", - "surface": 16140000, - "canton": null, - "numero_insee": "69043" - } - }, - { - "pk": 10872, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHARBONNIERES-LES-BAINS", - "center": "POINT (787103.8210922888247296 2089458.3038030525203794)", - "surface": 4110000, - "canton": null, - "numero_insee": "69044" - } - }, - { - "pk": 24880, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHARLY", - "center": "POINT (791129.4178981221048161 2075179.0809965808875859)", - "surface": 5140000, - "canton": null, - "numero_insee": "69046" - } - }, - { - "pk": 29412, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHARNAY", - "center": "POINT (780293.8249587188474834 2101611.6653365474194288)", - "surface": 7280000, - "canton": null, - "numero_insee": "69047" - } - }, - { - "pk": 23093, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHASSAGNY", - "center": "POINT (786769.0980990716489032 2070036.9787779999896884)", - "surface": 9200000, - "canton": null, - "numero_insee": "69048" - } - }, - { - "pk": 11006, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHASSELAY", - "center": "POINT (788914.9125800975598395 2100083.7339671137742698)", - "surface": 12890000, - "canton": null, - "numero_insee": "69049" - } - }, - { - "pk": 30655, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHATILLON", - "center": "POINT (778912.2511148785706609 2099297.7280571889132261)", - "surface": 10770000, - "canton": null, - "numero_insee": "69050" - } - }, - { - "pk": 34459, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAUSSAN", - "center": "POINT (779133.3392674116184935 2073375.0918767165858299)", - "surface": 7930000, - "canton": null, - "numero_insee": "69051" - } - }, - { - "pk": 13992, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAZAY-D'AZERGUES", - "center": "POINT (784110.7667601886205375 2100042.7319678212516010)", - "surface": 5940000, - "canton": null, - "numero_insee": "69052" - } - }, - { - "pk": 7027, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHENAS", - "center": "POINT (782888.0407974745612592 2137767.0688083968125284)", - "surface": 8190000, - "canton": null, - "numero_insee": "69053" - } - }, - { - "pk": 7391, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHENELETTE", - "center": "POINT (766321.0797652681358159 2132120.8073327732272446)", - "surface": 11010000, - "canton": null, - "numero_insee": "69054" - } - }, - { - "pk": 5600, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LES CHERES", - "center": "POINT (786696.7821222881320864 2101966.5789523278363049)", - "surface": 5530000, - "canton": null, - "numero_insee": "69055" - } - }, - { - "pk": 35392, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHEVINAY", - "center": "POINT (775702.4176657878560945 2088360.0978987466078252)", - "surface": 8700000, - "canton": null, - "numero_insee": "69057" - } - }, - { - "pk": 36415, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHIROUBLES", - "center": "POINT (778913.7259232349460945 2134330.0716564520262182)", - "surface": 7340000, - "canton": null, - "numero_insee": "69058" - } - }, - { - "pk": 12228, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CIVRIEUX-D'AZERGUES", - "center": "POINT (784330.5824400549754500 2097742.4514915170148015)", - "surface": 4990000, - "canton": null, - "numero_insee": "69059" - } - }, - { - "pk": 22910, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CLAVEISOLLES", - "center": "POINT (768089.8814769992604852 2124228.6516813938505948)", - "surface": 28090000, - "canton": null, - "numero_insee": "69060" - } - }, - { - "pk": 8078, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "COGNY", - "center": "POINT (776099.8249496243661270 2112185.7676098854281008)", - "surface": 5800000, - "canton": null, - "numero_insee": "69061" - } - }, - { - "pk": 4998, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "COISE", - "center": "POINT (766246.6662587620085105 2070362.4728848491795361)", - "surface": 9070000, - "canton": null, - "numero_insee": "69062" - } - }, - { - "pk": 26620, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "COLLONGES-AU-MONT-D'OR", - "center": "POINT (794669.4154940971639007 2094327.4236526035238057)", - "surface": 3810000, - "canton": null, - "numero_insee": "69063" - } - }, - { - "pk": 12862, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CONDRIEU", - "center": "POINT (789195.0171850010519847 2055543.6950040557421744)", - "surface": 9180000, - "canton": null, - "numero_insee": "69064" - } - }, - { - "pk": 3811, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CORCELLES-EN-BEAUJOLAIS", - "center": "POINT (784447.3724026181735098 2130974.1832621092908084)", - "surface": 9280000, - "canton": null, - "numero_insee": "69065" - } - }, - { - "pk": 18714, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "COURZIEU", - "center": "POINT (773731.3888978434260935 2084739.8863938141148537)", - "surface": 26780000, - "canton": null, - "numero_insee": "69067" - } - }, - { - "pk": 13840, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "COUZON-AU-MONT-D'OR", - "center": "POINT (793043.2402395806275308 2097216.2621246976777911)", - "surface": 3100000, - "canton": null, - "numero_insee": "69068" - } - }, - { - "pk": 28551, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CRAPONNE", - "center": "POINT (785935.2325018695555627 2085644.7354343752376735)", - "surface": 4680000, - "canton": null, - "numero_insee": "69069" - } - }, - { - "pk": 15855, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CUBLIZE", - "center": "POINT (758752.6643386324867606 2115841.4770551766268909)", - "surface": 15620000, - "canton": null, - "numero_insee": "69070" - } - }, - { - "pk": 26875, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CURIS-AU-MONT-D'OR", - "center": "POINT (792623.2364818433998153 2099514.8331630085594952)", - "surface": 3090000, - "canton": null, - "numero_insee": "69071" - } - }, - { - "pk": 12350, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DARDILLY", - "center": "POINT (787274.0965734401252121 2092963.0588065236806870)", - "surface": 13990000, - "canton": null, - "numero_insee": "69072" - } - }, - { - "pk": 4179, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DAREIZE", - "center": "POINT (766871.1834174620453268 2102798.4525148561224341)", - "surface": 6530000, - "canton": null, - "numero_insee": "69073" - } - }, - { - "pk": 8699, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DENICE", - "center": "POINT (779185.4000871755415574 2114213.9351880727335811)", - "surface": 9430000, - "canton": null, - "numero_insee": "69074" - } - }, - { - "pk": 8074, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DIEME", - "center": "POINT (764616.4295619716867805 2108985.0202896627597511)", - "surface": 8870000, - "canton": null, - "numero_insee": "69075" - } - }, - { - "pk": 13864, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DOMMARTIN", - "center": "POINT (784748.8640681337565184 2095644.0485809820238501)", - "surface": 7250000, - "canton": null, - "numero_insee": "69076" - } - }, - { - "pk": 11064, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DRACE", - "center": "POINT (788150.4814022900536656 2131005.7901583593338728)", - "surface": 14870000, - "canton": null, - "numero_insee": "69077" - } - }, - { - "pk": 24700, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DUERNE", - "center": "POINT (770285.4740490708500147 2078004.1482437280938029)", - "surface": 11370000, - "canton": null, - "numero_insee": "69078" - } - }, - { - "pk": 20672, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ECHALAS", - "center": "POINT (786821.2029933767626062 2063931.5578464320860803)", - "surface": 20910000, - "canton": null, - "numero_insee": "69080" - } - }, - { - "pk": 8186, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ECULLY", - "center": "POINT (789303.1757149870973080 2089777.3603316426742822)", - "surface": 8410000, - "canton": null, - "numero_insee": "69081" - } - }, - { - "pk": 11310, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "EMERINGES", - "center": "POINT (780177.2482883145567030 2138744.8484917264431715)", - "surface": 3000000, - "canton": null, - "numero_insee": "69082" - } - }, - { - "pk": 6306, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "EVEUX", - "center": "POINT (777555.4245610176585615 2094081.2739414151292294)", - "surface": 3380000, - "canton": null, - "numero_insee": "69083" - } - }, - { - "pk": 8879, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FLEURIE", - "center": "POINT (781706.6784118425566703 2135454.8987683341838419)", - "surface": 13830000, - "canton": null, - "numero_insee": "69084" - } - }, - { - "pk": 10614, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FLEURIEU-SUR-SAONE", - "center": "POINT (795134.8005120120942593 2098435.2511047762818635)", - "surface": 2910000, - "canton": null, - "numero_insee": "69085" - } - }, - { - "pk": 10128, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FLEURIEUX-SUR-L'ARBRESLE", - "center": "POINT (779842.9083554156823084 2095802.3817030400969088)", - "surface": 9490000, - "canton": null, - "numero_insee": "69086" - } - }, - { - "pk": 6196, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FONTAINES-SAINT-MARTIN", - "center": "POINT (795449.5929853431880474 2096736.3439370393753052)", - "surface": 2700000, - "canton": null, - "numero_insee": "69087" - } - }, - { - "pk": 26026, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FONTAINES-SUR-SAONE", - "center": "POINT (795764.3862015664344653 2095037.4346412981394678)", - "surface": 2340000, - "canton": null, - "numero_insee": "69088" - } - }, - { - "pk": 11820, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FRANCHEVILLE", - "center": "POINT (788144.8453963953070343 2084762.7409196083899587)", - "surface": 8230000, - "canton": null, - "numero_insee": "69089" - } - }, - { - "pk": 23565, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FRONTENAS", - "center": "POINT (778062.9060304160229862 2104995.8128359862603247)", - "surface": 3500000, - "canton": null, - "numero_insee": "69090" - } - }, - { - "pk": 22720, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GIVORS", - "center": "POINT (788893.1722682031104341 2067452.6110580330714583)", - "surface": 17470000, - "canton": null, - "numero_insee": "69091" - } - }, - { - "pk": 10616, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GLEIZE", - "center": "POINT (782100.6819261774653569 2112737.4146972908638418)", - "surface": 10420000, - "canton": null, - "numero_insee": "69092" - } - }, - { - "pk": 19760, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GRANDRIS", - "center": "POINT (764247.9690231867134571 2116989.2917340206913650)", - "surface": 15130000, - "canton": null, - "numero_insee": "69093" - } - }, - { - "pk": 9222, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GREZIEU-LA-VARENNE", - "center": "POINT (783031.8423033698927611 2085720.0559339176397771)", - "surface": 7490000, - "canton": null, - "numero_insee": "69094" - } - }, - { - "pk": 15849, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GREZIEU-LE-MARCHE", - "center": "POINT (762398.1254522379022092 2075634.7623686187434942)", - "surface": 11520000, - "canton": null, - "numero_insee": "69095" - } - }, - { - "pk": 6993, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GRIGNY", - "center": "POINT (791069.4915066286921501 2070474.0700400923378766)", - "surface": 5740000, - "canton": null, - "numero_insee": "69096" - } - }, - { - "pk": 24250, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LES HAIES", - "center": "POINT (787657.7935908662620932 2059734.6427441928535700)", - "surface": 15870000, - "canton": null, - "numero_insee": "69097" - } - }, - { - "pk": 29841, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LES HALLES", - "center": "POINT (763347.8613410268444568 2081648.5637299702502787)", - "surface": 3060000, - "canton": null, - "numero_insee": "69098" - } - }, - { - "pk": 3105, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "HAUTE-RIVOIRE", - "center": "POINT (761047.5481157380854711 2081428.7842749536503106)", - "surface": 20510000, - "canton": null, - "numero_insee": "69099" - } - }, - { - "pk": 29190, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "IRIGNY", - "center": "POINT (793308.2830629971576855 2077900.2624788174871355)", - "surface": 8890000, - "canton": null, - "numero_insee": "69100" - } - }, - { - "pk": 12895, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "JARNIOUX", - "center": "POINT (777818.3487453090492636 2110198.5668053491972387)", - "surface": 4240000, - "canton": null, - "numero_insee": "69101" - } - }, - { - "pk": 15155, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "JOUX", - "center": "POINT (757578.5094221357721835 2100917.6300342222675681)", - "surface": 25020000, - "canton": null, - "numero_insee": "69102" - } - }, - { - "pk": 26242, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "JULIENAS", - "center": "POINT (782462.9418575000017881 2140666.0714408345520496)", - "surface": 7560000, - "canton": null, - "numero_insee": "69103" - } - }, - { - "pk": 12393, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "JULLIE", - "center": "POINT (779459.5896035365294665 2140740.5392377953976393)", - "surface": 9750000, - "canton": null, - "numero_insee": "69104" - } - }, - { - "pk": 11394, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LACENAS", - "center": "POINT (779003.1563528182450682 2112110.4350663484074175)", - "surface": 3320000, - "canton": null, - "numero_insee": "69105" - } - }, - { - "pk": 28554, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LACHASSAGNE", - "center": "POINT (781660.8784629099536687 2105627.0623119450174272)", - "surface": 3530000, - "canton": null, - "numero_insee": "69106" - } - }, - { - "pk": 28653, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LANCIE", - "center": "POINT (784429.4362860217224807 2133075.9461620892398059)", - "surface": 6570000, - "canton": null, - "numero_insee": "69108" - } - }, - { - "pk": 9504, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LANTIGNIE", - "center": "POINT (776240.4826175215421245 2130904.1726556373760104)", - "surface": 7390000, - "canton": null, - "numero_insee": "69109" - } - }, - { - "pk": 17383, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LARAJASSE", - "center": "POINT (769854.9727216631872579 2069792.6410655488725752)", - "surface": 33560000, - "canton": null, - "numero_insee": "69110" - } - }, - { - "pk": 28773, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LEGNY", - "center": "POINT (773576.9547021216712892 2102855.6022166875191033)", - "surface": 4060000, - "canton": null, - "numero_insee": "69111" - } - }, - { - "pk": 24103, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LENTILLY", - "center": "POINT (781368.9691064411308616 2092912.6709303278476000)", - "surface": 18600000, - "canton": null, - "numero_insee": "69112" - } - }, - { - "pk": 30091, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LETRA", - "center": "POINT (769610.4775740292388946 2110228.6854850226081908)", - "surface": 14700000, - "canton": null, - "numero_insee": "69113" - } - }, - { - "pk": 33780, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LIERGUES", - "center": "POINT (780321.3423088415293023 2110119.8227179725654423)", - "surface": 5460000, - "canton": null, - "numero_insee": "69114" - } - }, - { - "pk": 37272, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LIMAS", - "center": "POINT (784619.8987398268654943 2110757.0547018120996654)", - "surface": 5570000, - "canton": null, - "numero_insee": "69115" - } - }, - { - "pk": 30426, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LIMONEST", - "center": "POINT (789157.8054688700940460 2095081.1145137476269156)", - "surface": 9120000, - "canton": null, - "numero_insee": "69116" - } - }, - { - "pk": 34212, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LISSIEU", - "center": "POINT (787032.9191412822110578 2097765.5133235957473516)", - "surface": 5670000, - "canton": null, - "numero_insee": "69117" - } - }, - { - "pk": 32867, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LOIRE-SUR-RHONE", - "center": "POINT (791027.5085406929720193 2063667.1725257551297545)", - "surface": 16470000, - "canton": null, - "numero_insee": "69118" - } - }, - { - "pk": 17468, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LONGES", - "center": "POINT (783062.2196100050350651 2058694.4615457779727876)", - "surface": 23910000, - "canton": null, - "numero_insee": "69119" - } - }, - { - "pk": 4676, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LONGESSAIGNE", - "center": "POINT (762481.5265738080488518 2089348.4773705205880105)", - "surface": 12000000, - "canton": null, - "numero_insee": "69120" - } - }, - { - "pk": 36137, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LOZANNE", - "center": "POINT (782331.4132573435781524 2097425.1125430474057794)", - "surface": 5490000, - "canton": null, - "numero_insee": "69121" - } - }, - { - "pk": 36541, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LUCENAY", - "center": "POINT (783975.6655280841514468 2104145.4128017104230821)", - "surface": 6400000, - "canton": null, - "numero_insee": "69122" - } - }, - { - "pk": 32804, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MARCHAMPT", - "center": "POINT (771882.0022784275934100 2125562.1634845128282905)", - "surface": 17700000, - "canton": null, - "numero_insee": "69124" - } - }, - { - "pk": 22331, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MARCILLY-D'AZERGUES", - "center": "POINT (785819.9224430111935362 2099156.4738536295481026)", - "surface": 4240000, - "canton": null, - "numero_insee": "69125" - } - }, - { - "pk": 13838, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MARCY", - "center": "POINT (781473.5140896451193839 2104124.0645996322855353)", - "surface": 3320000, - "canton": null, - "numero_insee": "69126" - } - }, - { - "pk": 5663, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MARCY-L'ETOILE", - "center": "POINT (784697.4586853003129363 2089938.2400749276857823)", - "surface": 5360000, - "canton": null, - "numero_insee": "69127" - } - }, - { - "pk": 28855, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MEAUX-LA-MONTAGNE", - "center": "POINT (761334.4221101584844291 2118265.6761888908222318)", - "surface": 9140000, - "canton": null, - "numero_insee": "69130" - } - }, - { - "pk": 7698, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MESSIMY", - "center": "POINT (781776.8119297819212079 2080304.2222589463926852)", - "surface": 11030000, - "canton": null, - "numero_insee": "69131" - } - }, - { - "pk": 5723, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MEYS", - "center": "POINT (760777.9654027458745986 2077823.0638371589593589)", - "surface": 14680000, - "canton": null, - "numero_insee": "69132" - } - }, - { - "pk": 10388, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MILLERY", - "center": "POINT (790447.5983120150631294 2072971.1560747134499252)", - "surface": 9030000, - "canton": null, - "numero_insee": "69133" - } - }, - { - "pk": 37240, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MOIRE", - "center": "POINT (775657.4288211363600567 2105375.6730594593100250)", - "surface": 2020000, - "canton": null, - "numero_insee": "69134" - } - }, - { - "pk": 25504, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MONSOLS", - "center": "POINT (767871.2515012098010629 2138139.4731153878383338)", - "surface": 19850000, - "canton": null, - "numero_insee": "69135" - } - }, - { - "pk": 30602, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MONTAGNY", - "center": "POINT (788151.5446799499914050 2072250.8862970168702304)", - "surface": 8140000, - "canton": null, - "numero_insee": "69136" - } - }, - { - "pk": 37517, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MONTMELAS-SAINT-SORLIN", - "center": "POINT (775370.2117327654268593 2115582.6943012457340956)", - "surface": 4240000, - "canton": null, - "numero_insee": "69137" - } - }, - { - "pk": 28967, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MONTROMANT", - "center": "POINT (771158.1164716442581266 2081314.7255124931689352)", - "surface": 11190000, - "canton": null, - "numero_insee": "69138" - } - }, - { - "pk": 22847, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MONTROTTIER", - "center": "POINT (765269.4726765535306185 2091073.8273906861431897)", - "surface": 22930000, - "canton": null, - "numero_insee": "69139" - } - }, - { - "pk": 7955, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MORANCE", - "center": "POINT (783292.9964673974318430 2102037.6258942428976297)", - "surface": 9260000, - "canton": null, - "numero_insee": "69140" - } - }, - { - "pk": 14671, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MORNANT", - "center": "POINT (782255.7172999378526583 2071099.5227686997968704)", - "surface": 15740000, - "canton": null, - "numero_insee": "69141" - } - }, - { - "pk": 13572, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LA MULATIERE", - "center": "POINT (792654.7668254843447357 2084100.5794745588209480)", - "surface": 1850000, - "canton": null, - "numero_insee": "69142" - } - }, - { - "pk": 13707, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "NEUVILLE-SUR-SAONE", - "center": "POINT (794511.2015014680800959 2101132.4551014443859458)", - "surface": 5420000, - "canton": null, - "numero_insee": "69143" - } - }, - { - "pk": 6348, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ODENAS", - "center": "POINT (778400.2940697560552508 2124116.3662385828793049)", - "surface": 9060000, - "canton": null, - "numero_insee": "69145" - } - }, - { - "pk": 35599, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "OINGT", - "center": "POINT (774335.8322885518427938 2107766.6402872200123966)", - "surface": 3890000, - "canton": null, - "numero_insee": "69146" - } - }, - { - "pk": 22819, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LES OLMES", - "center": "POINT (769693.2128393516177312 2100520.3486074814572930)", - "surface": 2740000, - "canton": null, - "numero_insee": "69147" - } - }, - { - "pk": 6048, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ORLIENAS", - "center": "POINT (785716.1111121235881001 2076133.8301983845885843)", - "surface": 10370000, - "canton": null, - "numero_insee": "69148" - } - }, - { - "pk": 6540, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "OULLINS", - "center": "POINT (791968.6818084624828771 2082393.1070530095603317)", - "surface": 4360000, - "canton": null, - "numero_insee": "69149" - } - }, - { - "pk": 16635, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "OUROUX", - "center": "POINT (773172.2617844187188894 2138585.0186391277238727)", - "surface": 20900000, - "canton": null, - "numero_insee": "69150" - } - }, - { - "pk": 10760, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LE PERREON", - "center": "POINT (773520.0430469756247476 2121272.1775152403861284)", - "surface": 14450000, - "canton": null, - "numero_insee": "69151" - } - }, - { - "pk": 30065, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "PIERRE-BENITE", - "center": "POINT (793882.3146759032970294 2081008.1168785018380731)", - "surface": 4440000, - "canton": null, - "numero_insee": "69152" - } - }, - { - "pk": 11962, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "POLEYMIEUX-AU-MONT-D'OR", - "center": "POINT (790835.3534138539107516 2097898.0666067148558795)", - "surface": 6350000, - "canton": null, - "numero_insee": "69153" - } - }, - { - "pk": 12765, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "POLLIONNAY", - "center": "POINT (780610.1074544296134263 2088001.5732752622570843)", - "surface": 15750000, - "canton": null, - "numero_insee": "69154" - } - }, - { - "pk": 9599, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "POMEYS", - "center": "POINT (764414.3816638682037592 2073950.3107505845837295)", - "surface": 13300000, - "canton": null, - "numero_insee": "69155" - } - }, - { - "pk": 12885, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "POMMIERS", - "center": "POINT (782231.5077306015882641 2109135.1890075635164976)", - "surface": 7790000, - "canton": null, - "numero_insee": "69156" - } - }, - { - "pk": 3159, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "PONTCHARRA-SUR-TURDINE", - "center": "POINT (767598.2225227660965174 2099701.7478452762588859)", - "surface": 4720000, - "canton": null, - "numero_insee": "69157" - } - }, - { - "pk": 28656, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "PONT-TRAMBOUZE", - "center": "POINT (752705.8240787582471967 2120694.5256053409539163)", - "surface": 4050000, - "canton": null, - "numero_insee": "69158" - } - }, - { - "pk": 22569, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "POUILLY-LE-MONIAL", - "center": "POINT (778932.0949836388463154 2108706.6717183711007237)", - "surface": 3790000, - "canton": null, - "numero_insee": "69159" - } - }, - { - "pk": 17014, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "POULE-LES-ECHARMEAUX", - "center": "POINT (764044.7262433858122677 2129098.6758881029672921)", - "surface": 31240000, - "canton": null, - "numero_insee": "69160" - } - }, - { - "pk": 16490, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "PROPIERES", - "center": "POINT (763196.3138073696754873 2134696.5556965945288539)", - "surface": 16250000, - "canton": null, - "numero_insee": "69161" - } - }, - { - "pk": 23781, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "QUINCIE-EN-BEAUJOLAIS", - "center": "POINT (775479.9209048764314502 2126193.3877566801384091)", - "surface": 22010000, - "canton": null, - "numero_insee": "69162" - } - }, - { - "pk": 30648, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "QUINCIEUX", - "center": "POINT (788978.2597689345711842 2104388.2955199382267892)", - "surface": 17890000, - "canton": null, - "numero_insee": "69163" - } - }, - { - "pk": 27890, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "RANCHAL", - "center": "POINT (759559.6885508955456316 2126858.4660935625433922)", - "surface": 15100000, - "canton": null, - "numero_insee": "69164" - } - }, - { - "pk": 8487, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "REGNIE-DURETTE", - "center": "POINT (778050.5310874190181494 2129918.6958562927320600)", - "surface": 11690000, - "canton": null, - "numero_insee": "69165" - } - }, - { - "pk": 7959, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "RIVERIE", - "center": "POINT (775666.9401435417821631 2069041.4130900057498366)", - "surface": 390000, - "canton": null, - "numero_insee": "69166" - } - }, - { - "pk": 18674, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "RIVOLET", - "center": "POINT (773679.8560482581378892 2114267.0798107944428921)", - "surface": 16120000, - "canton": null, - "numero_insee": "69167" - } - }, - { - "pk": 24303, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "ROCHETAILLEE-SUR-SAONE", - "center": "POINT (794248.5533482121536508 2096726.0859415745362639)", - "surface": 1360000, - "canton": null, - "numero_insee": "69168" - } - }, - { - "pk": 36331, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "RONNO", - "center": "POINT (758987.7724701000843197 2111739.6841867715120316)", - "surface": 22950000, - "canton": null, - "numero_insee": "69169" - } - }, - { - "pk": 27079, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "RONTALON", - "center": "POINT (777814.2666140524670482 2075465.8497651729267091)", - "surface": 12650000, - "canton": null, - "numero_insee": "69170" - } - }, - { - "pk": 26416, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAIN-BEL", - "center": "POINT (775765.8094010454369709 2092664.6956710603553802)", - "surface": 3820000, - "canton": null, - "numero_insee": "69171" - } - }, - { - "pk": 11993, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SALLES-ARBUISSONNAS-EN-BEAUJOLAIS", - "center": "POINT (777545.6254645352018997 2118704.1077248645015061)", - "surface": 4360000, - "canton": null, - "numero_insee": "69172" - } - }, - { - "pk": 29657, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SARCEY", - "center": "POINT (772094.4312354562571272 2100640.9075964684598148)", - "surface": 10070000, - "canton": null, - "numero_insee": "69173" - } - }, - { - "pk": 7076, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LES SAUVAGES", - "center": "POINT (757947.3285214535426348 2104624.2249621157534420)", - "surface": 12510000, - "canton": null, - "numero_insee": "69174" - } - }, - { - "pk": 15150, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAVIGNY", - "center": "POINT (773155.8709527908358723 2093543.2921306663192809)", - "surface": 21290000, - "canton": null, - "numero_insee": "69175" - } - }, - { - "pk": 12086, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SOUCIEU-EN-JARREST", - "center": "POINT (783498.8002392648486421 2077916.6275152559392154)", - "surface": 14220000, - "canton": null, - "numero_insee": "69176" - } - }, - { - "pk": 35594, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SOURCIEUX-LES-MINES", - "center": "POINT (778380.8729190847370774 2091185.5816175041254610)", - "surface": 9950000, - "canton": null, - "numero_insee": "69177" - } - }, - { - "pk": 35625, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SOUZY", - "center": "POINT (764660.0847304859198630 2080358.5048555564135313)", - "surface": 5070000, - "canton": null, - "numero_insee": "69178" - } - }, - { - "pk": 29411, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ANDEOL-LE-CHATEAU", - "center": "POINT (783981.9877828242024407 2068211.4679942259099334)", - "surface": 9900000, - "canton": null, - "numero_insee": "69179" - } - }, - { - "pk": 12749, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ANDRE-LA-COTE", - "center": "POINT (776136.6618012264370918 2072648.8681217483244836)", - "surface": 4830000, - "canton": null, - "numero_insee": "69180" - } - }, - { - "pk": 29858, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-APPOLINAIRE", - "center": "POINT (761899.6265011737123132 2110663.4590343041345477)", - "surface": 5690000, - "canton": null, - "numero_insee": "69181" - } - }, - { - "pk": 28769, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-BONNET-DES-BRUYERES", - "center": "POINT (764527.5726661777589470 2142915.3303547911345959)", - "surface": 21240000, - "canton": null, - "numero_insee": "69182" - } - }, - { - "pk": 33347, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-BONNET-LE-TRONCY", - "center": "POINT (761105.2735395191702992 2121666.8557915529236197)", - "surface": 15430000, - "canton": null, - "numero_insee": "69183" - } - }, - { - "pk": 26415, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINTE-CATHERINE", - "center": "POINT (774362.3741337262326851 2069430.6749687101691961)", - "surface": 13740000, - "canton": null, - "numero_insee": "69184" - } - }, - { - "pk": 33769, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (769342.6495694083860144 2141655.1831452720798552)", - "surface": 14590000, - "canton": null, - "numero_insee": "69185" - } - }, - { - "pk": 17009, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-CLEMENT-LES-PLACES", - "center": "POINT (762109.3054361606482416 2086042.1878932565450668)", - "surface": 12450000, - "canton": null, - "numero_insee": "69187" - } - }, - { - "pk": 24911, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-CLEMENT-SUR-VALSONNE", - "center": "POINT (764651.3846514739561826 2104881.5015609976835549)", - "surface": 14590000, - "canton": null, - "numero_insee": "69188" - } - }, - { - "pk": 34159, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINTE-COLOMBE", - "center": "POINT (797052.5196634514722973 2061416.4035812551155686)", - "surface": 1580000, - "canton": null, - "numero_insee": "69189" - } - }, - { - "pk": 11004, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINTE-CONSORCE", - "center": "POINT (783206.3989994367584586 2088724.3839375316165388)", - "surface": 5940000, - "canton": null, - "numero_insee": "69190" - } - }, - { - "pk": 36323, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-CYR-AU-MONT-D'OR", - "center": "POINT (792770.3299911192152649 2094010.9230363452807069)", - "surface": 7220000, - "canton": null, - "numero_insee": "69191" - } - }, - { - "pk": 12943, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-CYR-LE-CHATOUX", - "center": "POINT (770454.0957745369523764 2116942.0791516052559018)", - "surface": 6220000, - "canton": null, - "numero_insee": "69192" - } - }, - { - "pk": 9823, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-CYR-SUR-LE-RHONE", - "center": "POINT (794959.1921996079618111 2060397.5581100448034704)", - "surface": 6080000, - "canton": null, - "numero_insee": "69193" - } - }, - { - "pk": 25837, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-DIDIER-AU-MONT-D'OR", - "center": "POINT (791274.1547723296098411 2093397.5826432728208601)", - "surface": 8310000, - "canton": null, - "numero_insee": "69194" - } - }, - { - "pk": 18036, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-DIDIER-SOUS-RIVERIE", - "center": "POINT (776974.0672746971249580 2068351.8861381171736866)", - "surface": 13980000, - "canton": null, - "numero_insee": "69195" - } - }, - { - "pk": 30170, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-DIDIER-SUR-BEAUJEU", - "center": "POINT (769745.2573627857491374 2129647.7040469986386597)", - "surface": 14480000, - "canton": null, - "numero_insee": "69196" - } - }, - { - "pk": 31724, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ETIENNE-DES-OULLIERES", - "center": "POINT (779430.1654082946479321 2120722.0241695167496800)", - "surface": 9660000, - "canton": null, - "numero_insee": "69197" - } - }, - { - "pk": 5781, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ETIENNE-LA-VARENNE", - "center": "POINT (776715.0734593616798520 2122200.2480342863127589)", - "surface": 6500000, - "canton": null, - "numero_insee": "69198" - } - }, - { - "pk": 26870, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-FONS", - "center": "POINT (795684.7503432834055275 2080923.4154864551965147)", - "surface": 6060000, - "canton": null, - "numero_insee": "69199" - } - }, - { - "pk": 24099, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-FORGEUX", - "center": "POINT (765118.2305456442991272 2097078.1825354436878115)", - "surface": 22210000, - "canton": null, - "numero_insee": "69200" - } - }, - { - "pk": 4705, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINTE-FOY-LES-LYON", - "center": "POINT (791148.3258419500198215 2084688.2860088259913027)", - "surface": 6840000, - "canton": null, - "numero_insee": "69202" - } - }, - { - "pk": 21366, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-GENIS-L'ARGENTIERE", - "center": "POINT (768053.6902404746506363 2081488.4609679917339236)", - "surface": 10810000, - "canton": null, - "numero_insee": "69203" - } - }, - { - "pk": 27080, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-GENIS-LAVAL", - "center": "POINT (790988.3130533033981919 2079982.4541771751828492)", - "surface": 12930000, - "canton": null, - "numero_insee": "69204" - } - }, - { - "pk": 17578, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-GENIS-LES-OLLIERES", - "center": "POINT (785820.6247353050857782 2087345.3670441994909197)", - "surface": 3770000, - "canton": null, - "numero_insee": "69205" - } - }, - { - "pk": 14541, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-GEORGES-DE-RENEINS", - "center": "POINT (784438.6757329554529861 2120264.2947189216502011)", - "surface": 27380000, - "canton": null, - "numero_insee": "69206" - } - }, - { - "pk": 26238, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-GERMAIN-AU-MONT-D'OR", - "center": "POINT (791310.1489939728053287 2100904.9322862392291427)", - "surface": 5390000, - "canton": null, - "numero_insee": "69207" - } - }, - { - "pk": 37599, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-GERMAIN-NUELLES", - "center": "POINT (777020.8510559266433120 2098080.4728387375362217)", - "surface": 8640000, - "canton": null, - "numero_insee": "69208" - } - }, - { - "pk": 15832, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-IGNY-DE-VERS", - "center": "POINT (762254.6441067411797121 2139492.8930930886417627)", - "surface": 27130000, - "canton": null, - "numero_insee": "69209" - } - }, - { - "pk": 26108, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JACQUES-DES-ARRETS", - "center": "POINT (774944.7481998656876385 2142003.2107761809602380)", - "surface": 7470000, - "canton": null, - "numero_insee": "69210" - } - }, - { - "pk": 9905, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JEAN-D'ARDIERES", - "center": "POINT (784272.8268507376778871 2127969.9508363641798496)", - "surface": 12430000, - "canton": null, - "numero_insee": "69211" - } - }, - { - "pk": 6194, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JEAN-DES-VIGNES", - "center": "POINT (782010.6607642008457333 2099824.6263216822408140)", - "surface": 2580000, - "canton": null, - "numero_insee": "69212" - } - }, - { - "pk": 9584, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JEAN-DE-TOUSLAS", - "center": "POINT (782296.7016852266388014 2066295.2636284299660474)", - "surface": 5500000, - "canton": null, - "numero_insee": "69213" - } - }, - { - "pk": 28761, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JEAN-LA-BUSSIERE", - "center": "POINT (754570.3838154323166236 2113303.5635167653672397)", - "surface": 15650000, - "canton": null, - "numero_insee": "69214" - } - }, - { - "pk": 27683, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JULIEN", - "center": "POINT (779168.3265654160641134 2116215.6394971660338342)", - "surface": 6920000, - "canton": null, - "numero_insee": "69215" - } - }, - { - "pk": 16352, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JULIEN-SUR-BIBOST", - "center": "POINT (768871.7525829363148659 2091204.6125742921140045)", - "surface": 13270000, - "canton": null, - "numero_insee": "69216" - } - }, - { - "pk": 3183, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-JUST-D'AVRAY", - "center": "POINT (763880.0243722186423838 2113182.6438458878546953)", - "surface": 17540000, - "canton": null, - "numero_insee": "69217" - } - }, - { - "pk": 25097, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-LAGER", - "center": "POINT (780785.2467121293302625 2126138.5448545631952584)", - "surface": 7690000, - "canton": null, - "numero_insee": "69218" - } - }, - { - "pk": 28998, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-LAURENT-D'AGNY", - "center": "POINT (782931.5741232449654490 2074008.0646951964590698)", - "surface": 10600000, - "canton": null, - "numero_insee": "69219" - } - }, - { - "pk": 16349, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-LAURENT-DE-CHAMOUSSET", - "center": "POINT (765528.4763723314972594 2084169.5100497398525476)", - "surface": 17270000, - "canton": null, - "numero_insee": "69220" - } - }, - { - "pk": 27081, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-LAURENT-DE-VAUX", - "center": "POINT (778363.5821159112965688 2081476.2504237079992890)", - "surface": 2610000, - "canton": null, - "numero_insee": "69221" - } - }, - { - "pk": 23458, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-LAURENT-D'OINGT", - "center": "POINT (772642.9058966970769688 2106751.2772138649597764)", - "surface": 9140000, - "canton": null, - "numero_insee": "69222" - } - }, - { - "pk": 32351, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-LOUP", - "center": "POINT (766982.3550985131878406 2101498.1848052390851080)", - "surface": 9640000, - "canton": null, - "numero_insee": "69223" - } - }, - { - "pk": 5762, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-MARCEL-L'ECLAIRE", - "center": "POINT (761896.7088459994411096 2099252.8062599138356745)", - "surface": 11820000, - "canton": null, - "numero_insee": "69225" - } - }, - { - "pk": 23312, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-MARTIN-EN-HAUT", - "center": "POINT (773109.2674786990974098 2075525.8310786937363446)", - "surface": 38960000, - "canton": null, - "numero_insee": "69227" - } - }, - { - "pk": 3985, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-MAURICE-SUR-DARGOIRE", - "center": "POINT (779790.2106905560940504 2066774.3644590494222939)", - "surface": 16210000, - "canton": null, - "numero_insee": "69228" - } - }, - { - "pk": 19292, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-NIZIER-D'AZERGUES", - "center": "POINT (764301.1634892771253362 2122494.8111241613514721)", - "surface": 24140000, - "canton": null, - "numero_insee": "69229" - } - }, - { - "pk": 4833, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINTE-PAULE", - "center": "POINT (772412.0206161332316697 2110352.6564719914458692)", - "surface": 7670000, - "canton": null, - "numero_insee": "69230" - } - }, - { - "pk": 27703, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-PIERRE-LA-PALUD", - "center": "POINT (777195.1913779583992437 2089373.7714127895887941)", - "surface": 7470000, - "canton": null, - "numero_insee": "69231" - } - }, - { - "pk": 35598, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ROMAIN-AU-MONT-D'OR", - "center": "POINT (792955.1192913987906650 2095814.1943053689319640)", - "surface": 2610000, - "canton": null, - "numero_insee": "69233" - } - }, - { - "pk": 36782, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ROMAIN-DE-POPEY", - "center": "POINT (770220.0866023564012721 2097421.9339929432608187)", - "surface": 17080000, - "canton": null, - "numero_insee": "69234" - } - }, - { - "pk": 9006, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ROMAIN-EN-GAL", - "center": "POINT (794440.7956869796616957 2062495.1595166740007699)", - "surface": 13540000, - "canton": null, - "numero_insee": "69235" - } - }, - { - "pk": 22710, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-ROMAIN-EN-GIER", - "center": "POINT (784805.7566926662111655 2065515.9004009489435703)", - "surface": 4070000, - "canton": null, - "numero_insee": "69236" - } - }, - { - "pk": 11535, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-SORLIN", - "center": "POINT (778850.1459144278196618 2071370.7620629069861025)", - "surface": 4720000, - "canton": null, - "numero_insee": "69237" - } - }, - { - "pk": 5575, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-SYMPHORIEN-SUR-COISE", - "center": "POINT (764729.1395460853818804 2072251.3658968778327107)", - "surface": 4060000, - "canton": null, - "numero_insee": "69238" - } - }, - { - "pk": 22979, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-VERAND", - "center": "POINT (769257.0454271109774709 2104720.5554375615902245)", - "surface": 17480000, - "canton": null, - "numero_insee": "69239" - } - }, - { - "pk": 21040, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-VINCENT-DE-REINS", - "center": "POINT (758505.6277264428790659 2121344.4440521113574505)", - "surface": 13810000, - "canton": null, - "numero_insee": "69240" - } - }, - { - "pk": 7835, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TALUYERS", - "center": "POINT (786139.5256047702860087 2073434.8631508285179734)", - "surface": 8150000, - "canton": null, - "numero_insee": "69241" - } - }, - { - "pk": 35477, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TAPONAS", - "center": "POINT (787376.2930632848292589 2127896.3467637370340526)", - "surface": 7580000, - "canton": null, - "numero_insee": "69242" - } - }, - { - "pk": 31283, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TARARE", - "center": "POINT (761869.4337313669966534 2102455.5671910033561289)", - "surface": 14070000, - "canton": null, - "numero_insee": "69243" - } - }, - { - "pk": 3934, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TASSIN-LA-DEMI-LUNE", - "center": "POINT (788120.9247420865576714 2087565.1888331016525626)", - "surface": 7950000, - "canton": null, - "numero_insee": "69244" - } - }, - { - "pk": 20704, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TERNAND", - "center": "POINT (769332.3967784447595477 2107623.8990575904026628)", - "surface": 10740000, - "canton": null, - "numero_insee": "69245" - } - }, - { - "pk": 22925, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "THEIZE", - "center": "POINT (777545.4053095881827176 2106993.2632776973769069)", - "surface": 11880000, - "canton": null, - "numero_insee": "69246" - } - }, - { - "pk": 36186, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "THEL", - "center": "POINT (757366.3542514955624938 2125838.8760347585193813)", - "surface": 10330000, - "canton": null, - "numero_insee": "69247" - } - }, - { - "pk": 17817, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "THIZY-LES-BOURGS", - "center": "POINT (753726.2619920147117227 2118401.0911220391280949)", - "surface": 44450000, - "canton": null, - "numero_insee": "69248" - } - }, - { - "pk": 31946, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "THURINS", - "center": "POINT (778289.1010554392123595 2078472.7605426840018481)", - "surface": 19270000, - "canton": null, - "numero_insee": "69249" - } - }, - { - "pk": 13705, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LA TOUR-DE-SALVAGNY", - "center": "POINT (784573.4581689015030861 2092739.8228502224665135)", - "surface": 8470000, - "canton": null, - "numero_insee": "69250" - } - }, - { - "pk": 11273, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TRADES", - "center": "POINT (771725.8768666561227292 2143877.4849797706119716)", - "surface": 8050000, - "canton": null, - "numero_insee": "69251" - } - }, - { - "pk": 34160, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TREVES", - "center": "POINT (783733.8120432570576668 2062103.4770925980992615)", - "surface": 7680000, - "canton": null, - "numero_insee": "69252" - } - }, - { - "pk": 37436, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TUPIN-ET-SEMONS", - "center": "POINT (790480.8037510719150305 2057356.4160321315284818)", - "surface": 8220000, - "canton": null, - "numero_insee": "69253" - } - }, - { - "pk": 23712, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VALSONNE", - "center": "POINT (761628.3493587796110660 2107257.9893617080524564)", - "surface": 18350000, - "canton": null, - "numero_insee": "69254" - } - }, - { - "pk": 17561, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VAUGNERAY", - "center": "POINT (779544.1474986453540623 2083888.5979428640566766)", - "surface": 22500000, - "canton": null, - "numero_insee": "69255" - } - }, - { - "pk": 23348, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VAULX-EN-VELIN", - "center": "POINT (801307.6475591142661870 2090580.5530591274145991)", - "surface": 20960000, - "canton": null, - "numero_insee": "69256" - } - }, - { - "pk": 20442, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VAUX-EN-BEAUJOLAIS", - "center": "POINT (773342.0577872884459794 2118668.2650085585191846)", - "surface": 17710000, - "canton": null, - "numero_insee": "69257" - } - }, - { - "pk": 6312, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VAUXRENARD", - "center": "POINT (777482.6779924001311883 2137821.0478617381304502)", - "surface": 19050000, - "canton": null, - "numero_insee": "69258" - } - }, - { - "pk": 12069, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VENISSIEUX", - "center": "POINT (798083.4381004865281284 2081344.2858154827263206)", - "surface": 15370000, - "canton": null, - "numero_insee": "69259" - } - }, - { - "pk": 9744, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VERNAISON", - "center": "POINT (792731.6846409107092768 2075092.6659764000214636)", - "surface": 4100000, - "canton": null, - "numero_insee": "69260" - } - }, - { - "pk": 33597, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VERNAY", - "center": "POINT (769027.6100649352883920 2131643.4139743675477803)", - "surface": 5540000, - "canton": null, - "numero_insee": "69261" - } - }, - { - "pk": 25441, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VILLECHENEVE", - "center": "POINT (760850.3031903575174510 2092837.8858448120299727)", - "surface": 14060000, - "canton": null, - "numero_insee": "69263" - } - }, - { - "pk": 26422, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VILLEFRANCHE-SUR-SAONE", - "center": "POINT (785506.1482136088889092 2112466.1952049061655998)", - "surface": 9450000, - "canton": null, - "numero_insee": "69264" - } - }, - { - "pk": 27882, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VILLE-SUR-JARNIOUX", - "center": "POINT (775216.1233982718549669 2110176.3766586934216321)", - "surface": 10270000, - "canton": null, - "numero_insee": "69265" - } - }, - { - "pk": 23746, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VILLEURBANNE", - "center": "POINT (798420.5129876936553046 2088754.1830199798569083)", - "surface": 14850000, - "canton": null, - "numero_insee": "69266" - } - }, - { - "pk": 25821, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VILLIE-MORGON", - "center": "POINT (780239.5745139607461169 2131438.7378058959729970)", - "surface": 18520000, - "canton": null, - "numero_insee": "69267" - } - }, - { - "pk": 36780, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "VOURLES", - "center": "POINT (789421.0824454003013670 2075965.2610996181610972)", - "surface": 5570000, - "canton": null, - "numero_insee": "69268" - } - }, - { - "pk": 33759, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "YZERON", - "center": "POINT (775863.0948433452285826 2081254.7381081087514758)", - "surface": 10670000, - "canton": null, - "numero_insee": "69269" - } - }, - { - "pk": 28072, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHAPONNAY", - "center": "POINT (803759.3591733572538942 2073084.8662274465896189)", - "surface": 18900000, - "canton": null, - "numero_insee": "69270" - } - }, - { - "pk": 36042, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CHASSIEU", - "center": "POINT (804255.5167496437206864 2085300.7324132639914751)", - "surface": 11540000, - "canton": null, - "numero_insee": "69271" - } - }, - { - "pk": 18068, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "COMMUNAY", - "center": "POINT (795181.6727259837789461 2069508.2245545831974596)", - "surface": 10380000, - "canton": null, - "numero_insee": "69272" - } - }, - { - "pk": 15112, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "CORBAS", - "center": "POINT (800318.7231844078050926 2077459.6685475059784949)", - "surface": 11880000, - "canton": null, - "numero_insee": "69273" - } - }, - { - "pk": 23561, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "DECINES-CHARPIEU", - "center": "POINT (804122.9195479939226061 2089103.1971005711238831)", - "surface": 17030000, - "canton": null, - "numero_insee": "69275" - } - }, - { - "pk": 27297, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "FEYZIN", - "center": "POINT (796311.7796511633787304 2077825.8183838997501880)", - "surface": 10410000, - "canton": null, - "numero_insee": "69276" - } - }, - { - "pk": 35798, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GENAS", - "center": "POINT (808466.0392100184690207 2084535.9706322469282895)", - "surface": 24100000, - "canton": null, - "numero_insee": "69277" - } - }, - { - "pk": 35151, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "GENAY", - "center": "POINT (794096.3249374277656898 2102830.5019947960972786)", - "surface": 8620000, - "canton": null, - "numero_insee": "69278" - } - }, - { - "pk": 35070, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "JONAGE", - "center": "POINT (810208.5530886701308191 2091457.4023400428704917)", - "surface": 12050000, - "canton": null, - "numero_insee": "69279" - } - }, - { - "pk": 10511, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "JONS", - "center": "POINT (813101.6596858102129772 2092583.1863220080267638)", - "surface": 7280000, - "canton": null, - "numero_insee": "69280" - } - }, - { - "pk": 31273, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MARENNES", - "center": "POINT (800461.5721877652686089 2072456.1092654704116285)", - "surface": 12430000, - "canton": null, - "numero_insee": "69281" - } - }, - { - "pk": 37017, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MEYZIEU", - "center": "POINT (807520.7507082782685757 2089732.8124179989099503)", - "surface": 23530000, - "canton": null, - "numero_insee": "69282" - } - }, - { - "pk": 25089, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MIONS", - "center": "POINT (803524.1087785547133535 2077186.7748773768544197)", - "surface": 11600000, - "canton": null, - "numero_insee": "69283" - } - }, - { - "pk": 14098, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "MONTANAY", - "center": "POINT (796417.9710312236566097 2100548.1799664730206132)", - "surface": 7210000, - "canton": null, - "numero_insee": "69284" - } - }, - { - "pk": 7429, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "PUSIGNAN", - "center": "POINT (812345.4831400116672739 2087371.8035948723554611)", - "surface": 13200000, - "canton": null, - "numero_insee": "69285" - } - }, - { - "pk": 3654, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "RILLIEUX-LA-PAPE", - "center": "POINT (798973.1487499391660094 2094364.1877042616251856)", - "surface": 14550000, - "canton": null, - "numero_insee": "69286" - } - }, - { - "pk": 32352, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-BONNET-DE-MURE", - "center": "POINT (809098.2323535291943699 2080837.8600567360408604)", - "surface": 16620000, - "canton": null, - "numero_insee": "69287" - } - }, - { - "pk": 37939, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-LAURENT-DE-MURE", - "center": "POINT (812111.9975933704990894 2079562.3969653928652406)", - "surface": 18810000, - "canton": null, - "numero_insee": "69288" - } - }, - { - "pk": 15054, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-PIERRE-DE-CHANDIEU", - "center": "POINT (808246.2227451567305252 2075125.1370884149800986)", - "surface": 29170000, - "canton": null, - "numero_insee": "69289" - } - }, - { - "pk": 19702, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-PRIEST", - "center": "POINT (803389.8027015158440918 2081189.4384924930054694)", - "surface": 29660000, - "canton": null, - "numero_insee": "69290" - } - }, - { - "pk": 5741, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SAINT-SYMPHORIEN-D'OZON", - "center": "POINT (797341.7298194655450061 2074431.3692062781192362)", - "surface": 13430000, - "canton": null, - "numero_insee": "69291" - } - }, - { - "pk": 7824, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SATHONAY-CAMP", - "center": "POINT (797067.2241620281711221 2094848.3754168895538896)", - "surface": 1910000, - "canton": null, - "numero_insee": "69292" - } - }, - { - "pk": 7097, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SATHONAY-VILLAGE", - "center": "POINT (797954.3241455038078129 2096457.4582992345094681)", - "surface": 5090000, - "canton": null, - "numero_insee": "69293" - } - }, - { - "pk": 13701, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SEREZIN-DU-RHONE", - "center": "POINT (793953.2572804614901543 2072700.8015657574869692)", - "surface": 3830000, - "canton": null, - "numero_insee": "69294" - } - }, - { - "pk": 27513, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SIMANDRES", - "center": "POINT (797671.0649499853607267 2071030.9267963131424040)", - "surface": 9450000, - "canton": null, - "numero_insee": "69295" - } - }, - { - "pk": 27078, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "SOLAIZE", - "center": "POINT (794936.1909024833003059 2074811.2049921108409762)", - "surface": 8100000, - "canton": null, - "numero_insee": "69296" - } - }, - { - "pk": 28557, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TERNAY", - "center": "POINT (792673.4731526868417859 2070187.4772159329149872)", - "surface": 7930000, - "canton": null, - "numero_insee": "69297" - } - }, - { - "pk": 10002, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "TOUSSIEU", - "center": "POINT (806132.3896232822444290 2076508.4021311576943845)", - "surface": 5090000, - "canton": null, - "numero_insee": "69298" - } - }, - { - "pk": 29161, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "COLOMBIER-SAUGNIEU", - "center": "POINT (815281.4148292524041608 2083493.2212062012404203)", - "surface": 27720000, - "canton": null, - "numero_insee": "69299" - } - }, - { - "pk": 14381, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--1ER-ARRONDISSEMENT", - "center": "POINT (793818.2093260027468204 2088514.6824068527203053)", - "surface": 1530000, - "canton": null, - "numero_insee": "69381" - } - }, - { - "pk": 38086, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--2E--ARRONDISSEMENT", - "center": "POINT (793637.6935020169476047 2086210.9640288292430341)", - "surface": 3400000, - "canton": null, - "numero_insee": "69382" - } - }, - { - "pk": 14382, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--3E--ARRONDISSEMENT", - "center": "POINT (796935.4488560411846265 2086839.6985074249096215)", - "surface": 6320000, - "canton": null, - "numero_insee": "69383" - } - }, - { - "pk": 38087, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--4E--ARRONDISSEMENT", - "center": "POINT (793409.3131864914903417 2089512.1356918558012694)", - "surface": 2880000, - "canton": null, - "numero_insee": "69384" - } - }, - { - "pk": 38088, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--5E--ARRONDISSEMENT", - "center": "POINT (791730.0503087632823735 2086895.3374487087130547)", - "surface": 6220000, - "canton": null, - "numero_insee": "69385" - } - }, - { - "pk": 14383, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--6E--ARRONDISSEMENT", - "center": "POINT (795616.3604219087865204 2088930.4179550465196371)", - "surface": 3780000, - "canton": null, - "numero_insee": "69386" - } - }, - { - "pk": 38089, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--7E--ARRONDISSEMENT", - "center": "POINT (794553.0118173781083897 2084517.1694237436167896)", - "surface": 9460000, - "canton": null, - "numero_insee": "69387" - } - }, - { - "pk": 14384, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--8E--ARRONDISSEMENT", - "center": "POINT (797054.3458140451693907 2084638.6291027241386473)", - "surface": 6820000, - "canton": null, - "numero_insee": "69388" - } - }, - { - "pk": 38090, - "model": "ishtar_common.town", - "fields": { - "departement": 70, - "name": "LYON--9E--ARRONDISSEMENT", - "center": "POINT (792105.6160227359505370 2089801.2865754161030054)", - "surface": 7490000, - "canton": null, - "numero_insee": "69389" - } - }, - { - "pk": 11704, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ABELCOURT", - "center": "POINT (895139.4241761715384200 2317780.4050562051124871)", - "surface": 7600000, - "canton": null, - "numero_insee": "70001" - } - }, - { - "pk": 32164, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ABONCOURT-GESINCOURT", - "center": "POINT (872455.4364345083013177 2313882.1005293577909470)", - "surface": 10680000, - "canton": null, - "numero_insee": "70002" - } - }, - { - "pk": 30482, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ACHEY", - "center": "POINT (845927.4603962696855888 2291436.6701177097856998)", - "surface": 7000000, - "canton": null, - "numero_insee": "70003" - } - }, - { - "pk": 23059, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ADELANS-ET-LE-VAL-DE-BITHAINE", - "center": "POINT (904326.1148580703884363 2308552.4426055932417512)", - "surface": 17260000, - "canton": null, - "numero_insee": "70004" - } - }, - { - "pk": 30910, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AILLEVANS", - "center": "POINT (906738.3218203975120559 2295763.2059907452203333)", - "surface": 5800000, - "canton": null, - "numero_insee": "70005" - } - }, - { - "pk": 23217, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AILLEVILLERS-ET-LYAUMONT", - "center": "POINT (898401.0723130451515317 2334121.0411718003451824)", - "surface": 36710000, - "canton": null, - "numero_insee": "70006" - } - }, - { - "pk": 3722, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AILLONCOURT", - "center": "POINT (903677.3226315508363768 2314151.2029890636913478)", - "surface": 9440000, - "canton": null, - "numero_insee": "70007" - } - }, - { - "pk": 36140, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AINVELLE", - "center": "POINT (892285.6961019535083324 2323760.4201629282906651)", - "surface": 6800000, - "canton": null, - "numero_insee": "70008" - } - }, - { - "pk": 6195, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AISEY-ET-RICHECOURT", - "center": "POINT (870539.6402710534166545 2327175.8539588749408722)", - "surface": 7880000, - "canton": null, - "numero_insee": "70009" - } - }, - { - "pk": 26274, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ALAINCOURT", - "center": "POINT (880988.2769080919679254 2334071.0004352950491011)", - "surface": 5930000, - "canton": null, - "numero_insee": "70010" - } - }, - { - "pk": 10001, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AMAGE", - "center": "POINT (911294.5643817498348653 2324424.8539054533466697)", - "surface": 6550000, - "canton": null, - "numero_insee": "70011" - } - }, - { - "pk": 3171, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AMANCE", - "center": "POINT (878336.3061444049235433 2316634.8206042358651757)", - "surface": 17700000, - "canton": null, - "numero_insee": "70012" - } - }, - { - "pk": 37483, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AMBIEVILLERS", - "center": "POINT (883741.0488080391660333 2339799.0351907317526639)", - "surface": 12100000, - "canton": null, - "numero_insee": "70013" - } - }, - { - "pk": 7719, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AMBLANS-ET-VELOTTE", - "center": "POINT (906250.7823073193430901 2305866.9455568292178214)", - "surface": 9840000, - "canton": null, - "numero_insee": "70014" - } - }, - { - "pk": 11855, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AMONCOURT", - "center": "POINT (879290.3680806555785239 2310438.2267617047764361)", - "surface": 4100000, - "canton": null, - "numero_insee": "70015" - } - }, - { - "pk": 6891, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ANCHENONCOURT-ET-CHAZEL", - "center": "POINT (882569.4824815969914198 2324777.5215056538581848)", - "surface": 14110000, - "canton": null, - "numero_insee": "70017" - } - }, - { - "pk": 5139, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ANCIER", - "center": "POINT (848755.7235406672116369 2276749.2308848001994193)", - "surface": 4510000, - "canton": null, - "numero_insee": "70018" - } - }, - { - "pk": 36120, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ANDELARRE", - "center": "POINT (882229.3992887185886502 2294551.0665232632309198)", - "surface": 4150000, - "canton": null, - "numero_insee": "70019" - } - }, - { - "pk": 33548, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ANDELARROT", - "center": "POINT (882841.0357052783947438 2293255.3064609365537763)", - "surface": 5680000, - "canton": null, - "numero_insee": "70020" - } - }, - { - "pk": 7850, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ANDORNAY", - "center": "POINT (919976.9246877897530794 2304084.0256238379515707)", - "surface": 1460000, - "canton": null, - "numero_insee": "70021" - } - }, - { - "pk": 10634, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ANGIREY", - "center": "POINT (859049.4757647210499272 2278438.9504447882063687)", - "surface": 8910000, - "canton": null, - "numero_insee": "70022" - } - }, - { - "pk": 37695, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ANJEUX", - "center": "POINT (889552.7666607387363911 2327339.6186348898336291)", - "surface": 8750000, - "canton": null, - "numero_insee": "70023" - } - }, - { - "pk": 25446, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "APREMONT", - "center": "POINT (840901.4843532770173624 2270676.9774390137754381)", - "surface": 14470000, - "canton": null, - "numero_insee": "70024" - } - }, - { - "pk": 24122, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ARBECEY", - "center": "POINT (869586.1233552078483626 2310054.4567820401862264)", - "surface": 16560000, - "canton": null, - "numero_insee": "70025" - } - }, - { - "pk": 28155, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ARC-LES-GRAY", - "center": "POINT (844535.4796997138764709 2278714.6028433791361749)", - "surface": 11900000, - "canton": null, - "numero_insee": "70026" - } - }, - { - "pk": 12640, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ARGILLIERES", - "center": "POINT (846944.0438053524121642 2301253.1201066002249718)", - "surface": 9590000, - "canton": null, - "numero_insee": "70027" - } - }, - { - "pk": 31966, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AROZ", - "center": "POINT (875704.0667324300156906 2296896.7705089473165572)", - "surface": 6580000, - "canton": null, - "numero_insee": "70028" - } - }, - { - "pk": 30470, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ARPENANS", - "center": "POINT (906208.5919309197925031 2299161.3175605959258974)", - "surface": 12050000, - "canton": null, - "numero_insee": "70029" - } - }, - { - "pk": 9027, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ARSANS", - "center": "POINT (848728.6929717549355701 2268242.1428168118000031)", - "surface": 2500000, - "canton": null, - "numero_insee": "70030" - } - }, - { - "pk": 14492, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ATHESANS-ETROITEFONTAINE", - "center": "POINT (914036.6358574992045760 2296626.8651190358214080)", - "surface": 12870000, - "canton": null, - "numero_insee": "70031" - } - }, - { - "pk": 5654, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ATTRICOURT", - "center": "POINT (831606.3578444750746712 2280905.5263765323907137)", - "surface": 6080000, - "canton": null, - "numero_insee": "70032" - } - }, - { - "pk": 32799, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUGICOURT", - "center": "POINT (866351.1599974685814232 2313829.5766710177995265)", - "surface": 9150000, - "canton": null, - "numero_insee": "70035" - } - }, - { - "pk": 8980, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AULX-LES-CROMARY", - "center": "POINT (883835.5764497892232612 2270745.8602200881578028)", - "surface": 4220000, - "canton": null, - "numero_insee": "70036" - } - }, - { - "pk": 26268, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUTET", - "center": "POINT (853161.0006569524994120 2288196.1754064904525876)", - "surface": 11340000, - "canton": null, - "numero_insee": "70037" - } - }, - { - "pk": 32609, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUTHOISON", - "center": "POINT (886825.7557108975015581 2283782.0790042686276138)", - "surface": 16060000, - "canton": null, - "numero_insee": "70038" - } - }, - { - "pk": 32384, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUTOREILLE", - "center": "POINT (863331.6976683363318443 2269268.3479980747215450)", - "surface": 10100000, - "canton": null, - "numero_insee": "70039" - } - }, - { - "pk": 11825, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUTREY-LES-CERRE", - "center": "POINT (901214.5223228967515752 2298017.3480171659030020)", - "surface": 5510000, - "canton": null, - "numero_insee": "70040" - } - }, - { - "pk": 20720, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUTREY-LES-GRAY", - "center": "POINT (835729.9337769023841247 2278538.9670135695487261)", - "surface": 32190000, - "canton": null, - "numero_insee": "70041" - } - }, - { - "pk": 22703, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUTREY-LE-VAY", - "center": "POINT (905489.2186066382564604 2289747.6639171545393765)", - "surface": 2870000, - "canton": null, - "numero_insee": "70042" - } - }, - { - "pk": 11861, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUVET-ET-LA-CHAPELOTTE", - "center": "POINT (840191.9920801913831383 2283381.0843949094414711)", - "surface": 14420000, - "canton": null, - "numero_insee": "70043" - } - }, - { - "pk": 37494, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AUXON", - "center": "POINT (886430.7239826424047351 2306396.5412695743143559)", - "surface": 12610000, - "canton": null, - "numero_insee": "70044" - } - }, - { - "pk": 34105, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "AVRIGNEY-VIREY", - "center": "POINT (859760.0154774151742458 2265634.7235656594857574)", - "surface": 22260000, - "canton": null, - "numero_insee": "70045" - } - }, - { - "pk": 9303, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LES AYNANS", - "center": "POINT (909012.3184678149409592 2298985.3664589701220393)", - "surface": 7870000, - "canton": null, - "numero_insee": "70046" - } - }, - { - "pk": 14124, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BAIGNES", - "center": "POINT (879038.3092302192235366 2293222.5546763543970883)", - "surface": 2900000, - "canton": null, - "numero_insee": "70047" - } - }, - { - "pk": 11662, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BARD-LES-PESMES", - "center": "POINT (848813.7642048848792911 2258334.8173460448160768)", - "surface": 5200000, - "canton": null, - "numero_insee": "70048" - } - }, - { - "pk": 20539, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BARGES", - "center": "POINT (861953.4928733782144263 2324800.2318834662437439)", - "surface": 8010000, - "canton": null, - "numero_insee": "70049" - } - }, - { - "pk": 32595, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA BARRE", - "center": "POINT (889206.7722770844120532 2274595.2104344647377729)", - "surface": 1960000, - "canton": null, - "numero_insee": "70050" - } - }, - { - "pk": 24928, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA BASSE-VAIVRE", - "center": "POINT (877585.0844533396884799 2334141.7650635582394898)", - "surface": 3510000, - "canton": null, - "numero_insee": "70051" - } - }, - { - "pk": 30700, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BASSIGNEY", - "center": "POINT (887906.7934089340269566 2320920.5155861414968967)", - "surface": 6130000, - "canton": null, - "numero_insee": "70052" - } - }, - { - "pk": 18817, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LES BATIES", - "center": "POINT (868007.8247180611360818 2284120.4628679924644530)", - "surface": 7660000, - "canton": null, - "numero_insee": "70053" - } - }, - { - "pk": 23454, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BATTRANS", - "center": "POINT (849271.5570239470107481 2274952.2133171227760613)", - "surface": 5410000, - "canton": null, - "numero_insee": "70054" - } - }, - { - "pk": 31735, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BAUDONCOURT", - "center": "POINT (900158.4605638263747096 2316022.3092351746745408)", - "surface": 7650000, - "canton": null, - "numero_insee": "70055" - } - }, - { - "pk": 10353, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BAULAY", - "center": "POINT (875537.7947910361690447 2316210.4148613940924406)", - "surface": 8280000, - "canton": null, - "numero_insee": "70056" - } - }, - { - "pk": 30422, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BAY", - "center": "POINT (855500.6916955607011914 2260493.9681330821476877)", - "surface": 4930000, - "canton": null, - "numero_insee": "70057" - } - }, - { - "pk": 17769, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BEAUJEU-SAINT-VALLIER-PIERREJUX-ET-QUITTEUR", - "center": "POINT (852805.4154137477744371 2282988.9785749372094870)", - "surface": 35510000, - "canton": null, - "numero_insee": "70058" - } - }, - { - "pk": 16989, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BEAUMOTTE-AUBERTANS", - "center": "POINT (888381.1763418323826045 2277490.4311363790184259)", - "surface": 13630000, - "canton": null, - "numero_insee": "70059" - } - }, - { - "pk": 26140, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BEAUMOTTE-LES-PIN", - "center": "POINT (864082.1216401245910674 2263470.0912558743730187)", - "surface": 8230000, - "canton": null, - "numero_insee": "70060" - } - }, - { - "pk": 35421, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BELFAHY", - "center": "POINT (929156.2708848380716518 2318874.8623864217661321)", - "surface": 3120000, - "canton": null, - "numero_insee": "70061" - } - }, - { - "pk": 5910, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BELMONT", - "center": "POINT (911657.0075515741482377 2317222.4291878398507833)", - "surface": 4520000, - "canton": null, - "numero_insee": "70062" - } - }, - { - "pk": 20502, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BELONCHAMP", - "center": "POINT (919966.2762520126998425 2316893.9183661164715886)", - "surface": 7040000, - "canton": null, - "numero_insee": "70063" - } - }, - { - "pk": 32835, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BELVERNE", - "center": "POINT (924408.6053913049399853 2300819.7432194524444640)", - "surface": 6160000, - "canton": null, - "numero_insee": "70064" - } - }, - { - "pk": 21554, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BESNANS", - "center": "POINT (895068.8088138268794864 2279549.6896311491727829)", - "surface": 2960000, - "canton": null, - "numero_insee": "70065" - } - }, - { - "pk": 9208, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BETAUCOURT", - "center": "POINT (867860.1605241057695821 2324550.8068945808336139)", - "surface": 7190000, - "canton": null, - "numero_insee": "70066" - } - }, - { - "pk": 24518, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BETONCOURT-LES-BROTTE", - "center": "POINT (900294.7960463096387684 2311820.2245029117912054)", - "surface": 3040000, - "canton": null, - "numero_insee": "70067" - } - }, - { - "pk": 32612, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BETONCOURT-SAINT-PANCRAS", - "center": "POINT (887317.6089389226399362 2331223.3310256185941398)", - "surface": 6330000, - "canton": null, - "numero_insee": "70069" - } - }, - { - "pk": 5547, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BETONCOURT-SUR-MANCE", - "center": "POINT (855781.8812732299556956 2320944.2604666538536549)", - "surface": 3720000, - "canton": null, - "numero_insee": "70070" - } - }, - { - "pk": 15219, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BEULOTTE-SAINT-LAURENT", - "center": "POINT (924275.8973144022747874 2327739.5052506173960865)", - "surface": 14300000, - "canton": null, - "numero_insee": "70071" - } - }, - { - "pk": 7356, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BEVEUGE", - "center": "POINT (912469.2001481038751081 2292710.2365895290859044)", - "surface": 5230000, - "canton": null, - "numero_insee": "70072" - } - }, - { - "pk": 16865, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BLONDEFONTAINE", - "center": "POINT (864239.5929927967954427 2326621.2702512703835964)", - "surface": 13340000, - "canton": null, - "numero_insee": "70074" - } - }, - { - "pk": 12737, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BONBOILLON", - "center": "POINT (853755.5855126066599041 2265583.1276968731544912)", - "surface": 4450000, - "canton": null, - "numero_insee": "70075" - } - }, - { - "pk": 33309, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BONNEVENT-VELLOREILLE", - "center": "POINT (871213.4000759948976338 2272138.4052276266738772)", - "surface": 5430000, - "canton": null, - "numero_insee": "70076" - } - }, - { - "pk": 6078, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOREY", - "center": "POINT (901846.0379588222131133 2294419.9520852616988122)", - "surface": 14530000, - "canton": null, - "numero_insee": "70077" - } - }, - { - "pk": 24531, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOUGEY", - "center": "POINT (864137.5689485720358789 2315211.6213767505250871)", - "surface": 8510000, - "canton": null, - "numero_insee": "70078" - } - }, - { - "pk": 31114, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOUGNON", - "center": "POINT (882929.1103621249785647 2306266.2928340383805335)", - "surface": 9160000, - "canton": null, - "numero_insee": "70079" - } - }, - { - "pk": 26468, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOUHANS-ET-FEURG", - "center": "POINT (839123.8223146983655170 2279568.8821195429190993)", - "surface": 9970000, - "canton": null, - "numero_insee": "70080" - } - }, - { - "pk": 32604, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOUHANS-LES-LURE", - "center": "POINT (907637.0858561303466558 2307580.2442627814598382)", - "surface": 8940000, - "canton": null, - "numero_insee": "70081" - } - }, - { - "pk": 31115, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOUHANS-LES-MONTBOZON", - "center": "POINT (897034.8785484173567966 2283669.9310753089375794)", - "surface": 5110000, - "canton": null, - "numero_insee": "70082" - } - }, - { - "pk": 25469, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOULIGNEY", - "center": "POINT (892224.4318167609162629 2330865.3277397360652685)", - "surface": 14250000, - "canton": null, - "numero_insee": "70083" - } - }, - { - "pk": 37620, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOULOT", - "center": "POINT (873551.2598516526632011 2267955.1234819530509412)", - "surface": 7160000, - "canton": null, - "numero_insee": "70084" - } - }, - { - "pk": 30733, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOULT", - "center": "POINT (876624.2539863926358521 2271384.3271653512492776)", - "surface": 14610000, - "canton": null, - "numero_insee": "70085" - } - }, - { - "pk": 37693, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOURBEVELLE", - "center": "POINT (869614.0466206050477922 2330070.1032990100793540)", - "surface": 5320000, - "canton": null, - "numero_insee": "70086" - } - }, - { - "pk": 9594, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOURGUIGNON-LES-CONFLANS", - "center": "POINT (886014.9569588493322954 2319803.3630701517686248)", - "surface": 7950000, - "canton": null, - "numero_insee": "70087" - } - }, - { - "pk": 35945, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOURGUIGNON-LES-LA-CHARITE", - "center": "POINT (873204.7009157924912870 2284965.8171271090395749)", - "surface": 4250000, - "canton": null, - "numero_insee": "70088" - } - }, - { - "pk": 9883, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOURGUIGNON-LES-MOREY", - "center": "POINT (852806.1085429175291210 2306207.3016889337450266)", - "surface": 9720000, - "canton": null, - "numero_insee": "70089" - } - }, - { - "pk": 8460, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOURSIERES", - "center": "POINT (878104.9198881904594600 2297017.5200005685910583)", - "surface": 2280000, - "canton": null, - "numero_insee": "70090" - } - }, - { - "pk": 7723, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BOUSSERAUCOURT", - "center": "POINT (868666.9307256850879639 2335466.0592843000777066)", - "surface": 7620000, - "canton": null, - "numero_insee": "70091" - } - }, - { - "pk": 25930, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BRESILLEY", - "center": "POINT (849329.6040977707598358 2256537.7738250917755067)", - "surface": 3660000, - "canton": null, - "numero_insee": "70092" - } - }, - { - "pk": 5763, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BREUCHES", - "center": "POINT (898935.1726222634315491 2318613.7663365146145225)", - "surface": 9240000, - "canton": null, - "numero_insee": "70093" - } - }, - { - "pk": 22596, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BREUCHOTTE", - "center": "POINT (908708.3146626623347402 2322601.1326823290437460)", - "surface": 4360000, - "canton": null, - "numero_insee": "70094" - } - }, - { - "pk": 20489, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BREUREY-LES-FAVERNEY", - "center": "POINT (885482.6612263133283705 2311892.6591475629247725)", - "surface": 19530000, - "canton": null, - "numero_insee": "70095" - } - }, - { - "pk": 23682, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BREVILLIERS", - "center": "POINT (935258.7481735835317522 2296009.7370389122515917)", - "surface": 6470000, - "canton": null, - "numero_insee": "70096" - } - }, - { - "pk": 36513, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BRIAUCOURT", - "center": "POINT (892612.6538334054639563 2320660.8536287569440901)", - "surface": 9800000, - "canton": null, - "numero_insee": "70097" - } - }, - { - "pk": 29459, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BROTTE-LES-RAY", - "center": "POINT (855502.5370510950451717 2295221.8366543040610850)", - "surface": 5010000, - "canton": null, - "numero_insee": "70099" - } - }, - { - "pk": 21737, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BROYE-LES-LOUPS-ET-VERFONTAINE", - "center": "POINT (833025.3945325351087376 2278816.0132802664302289)", - "surface": 6750000, - "canton": null, - "numero_insee": "70100" - } - }, - { - "pk": 20471, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BROYE-AUBIGNEY-MONTSEUGNY", - "center": "POINT (840360.2914612226886675 2263766.7421488873660564)", - "surface": 25430000, - "canton": null, - "numero_insee": "70101" - } - }, - { - "pk": 35023, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BRUSSEY", - "center": "POINT (862392.0480541003635153 2262154.5011054715141654)", - "surface": 7460000, - "canton": null, - "numero_insee": "70102" - } - }, - { - "pk": 7239, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA BRUYERE", - "center": "POINT (909425.2213352269027382 2320705.8591622901149094)", - "surface": 6240000, - "canton": null, - "numero_insee": "70103" - } - }, - { - "pk": 16979, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BUCEY-LES-GY", - "center": "POINT (865799.9715294609777629 2273192.7251390512101352)", - "surface": 21290000, - "canton": null, - "numero_insee": "70104" - } - }, - { - "pk": 7246, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BUCEY-LES-TRAVES", - "center": "POINT (874089.1416892249835655 2298484.1298061194829643)", - "surface": 2800000, - "canton": null, - "numero_insee": "70105" - } - }, - { - "pk": 28347, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BUFFIGNECOURT", - "center": "POINT (875913.0890603092266247 2319115.8860667003318667)", - "surface": 6370000, - "canton": null, - "numero_insee": "70106" - } - }, - { - "pk": 14281, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BUSSIERES", - "center": "POINT (875462.1353813596069813 2266870.6772832204587758)", - "surface": 6140000, - "canton": null, - "numero_insee": "70107" - } - }, - { - "pk": 3317, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "BUTHIERS", - "center": "POINT (879051.8667691464070231 2268402.7983026430010796)", - "surface": 5670000, - "canton": null, - "numero_insee": "70109" - } - }, - { - "pk": 21050, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CALMOUTIER", - "center": "POINT (896382.6107683607842773 2301278.2626191740855575)", - "surface": 14090000, - "canton": null, - "numero_insee": "70111" - } - }, - { - "pk": 23279, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CEMBOING", - "center": "POINT (863180.1411574283847585 2321808.4778788671828806)", - "surface": 10370000, - "canton": null, - "numero_insee": "70112" - } - }, - { - "pk": 27729, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CENANS", - "center": "POINT (890383.4989244739990681 2277407.6081207697279751)", - "surface": 5020000, - "canton": null, - "numero_insee": "70113" - } - }, - { - "pk": 35435, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CENDRECOURT", - "center": "POINT (869486.2400416871532798 2321662.5711006005294621)", - "surface": 9350000, - "canton": null, - "numero_insee": "70114" - } - }, - { - "pk": 26265, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CERRE-LES-NOROY", - "center": "POINT (899238.1300395773723722 2295098.0049530770629644)", - "surface": 10040000, - "canton": null, - "numero_insee": "70115" - } - }, - { - "pk": 25649, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAGEY", - "center": "POINT (930416.3468819474801421 2300471.3902158108539879)", - "surface": 7050000, - "canton": null, - "numero_insee": "70116" - } - }, - { - "pk": 27523, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHALONVILLARS", - "center": "POINT (933401.1672224525827914 2302498.7924753897823393)", - "surface": 7650000, - "canton": null, - "numero_insee": "70117" - } - }, - { - "pk": 30474, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAMBORNAY-LES-BELLEVAUX", - "center": "POINT (884115.9692625580355525 2273050.1351033356040716)", - "surface": 6020000, - "canton": null, - "numero_insee": "70118" - } - }, - { - "pk": 9673, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAMBORNAY-LES-PIN", - "center": "POINT (869964.9651776910759509 2266022.7223064745776355)", - "surface": 4960000, - "canton": null, - "numero_insee": "70119" - } - }, - { - "pk": 13016, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAMPAGNEY", - "center": "POINT (926443.4607716806931421 2308543.3837330886162817)", - "surface": 37160000, - "canton": null, - "numero_insee": "70120" - } - }, - { - "pk": 9477, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAMPEY", - "center": "POINT (926444.6496158785885200 2296834.1923927720636129)", - "surface": 11230000, - "canton": null, - "numero_insee": "70121" - } - }, - { - "pk": 22662, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAMPLITTE", - "center": "POINT (838671.6343899025814608 2297279.0530077400617301)", - "surface": 129330000, - "canton": null, - "numero_insee": "70122" - } - }, - { - "pk": 30405, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAMPTONNAY", - "center": "POINT (850921.7175252500455827 2269261.7853618441149592)", - "surface": 5230000, - "canton": null, - "numero_insee": "70124" - } - }, - { - "pk": 36603, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAMPVANS", - "center": "POINT (845599.7798576788045466 2271317.7858101497404277)", - "surface": 7270000, - "canton": null, - "numero_insee": "70125" - } - }, - { - "pk": 7527, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHANCEY", - "center": "POINT (852471.8176812474848703 2263570.4741929275915027)", - "surface": 7730000, - "canton": null, - "numero_insee": "70126" - } - }, - { - "pk": 22646, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHANTES", - "center": "POINT (869692.8920068888692185 2297645.6663496973924339)", - "surface": 6530000, - "canton": null, - "numero_insee": "70127" - } - }, - { - "pk": 4978, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA CHAPELLE-LES-LUXEUIL", - "center": "POINT (902960.4214597918326035 2316046.4892002819105983)", - "surface": 7820000, - "canton": null, - "numero_insee": "70128" - } - }, - { - "pk": 32390, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA CHAPELLE-SAINT-QUILLAIN", - "center": "POINT (862222.5533428145572543 2281868.9513890803791583)", - "surface": 10290000, - "canton": null, - "numero_insee": "70129" - } - }, - { - "pk": 26432, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHARCENNE", - "center": "POINT (859732.4901135687250644 2268837.0824839882552624)", - "surface": 7160000, - "canton": null, - "numero_insee": "70130" - } - }, - { - "pk": 20480, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHARGEY-LES-GRAY", - "center": "POINT (844206.9145624395459890 2282014.4234890392981470)", - "surface": 16590000, - "canton": null, - "numero_insee": "70132" - } - }, - { - "pk": 3011, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHARGEY-LES-PORT", - "center": "POINT (874493.8805517471628264 2309596.3054789695888758)", - "surface": 13070000, - "canton": null, - "numero_insee": "70133" - } - }, - { - "pk": 17518, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHARIEZ", - "center": "POINT (881201.1013766273390502 2297744.7357967817224562)", - "surface": 7570000, - "canton": null, - "numero_insee": "70134" - } - }, - { - "pk": 25468, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHARMES-SAINT-VALBERT", - "center": "POINT (852782.8958150534890592 2308909.2066894820891321)", - "surface": 5150000, - "canton": null, - "numero_insee": "70135" - } - }, - { - "pk": 26065, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHARMOILLE", - "center": "POINT (883351.8082106740912423 2303667.8993158359080553)", - "surface": 5000000, - "canton": null, - "numero_insee": "70136" - } - }, - { - "pk": 6676, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHASSEY-LES-MONTBOZON", - "center": "POINT (900300.1474228878505528 2288001.5306946877390146)", - "surface": 15580000, - "canton": null, - "numero_insee": "70137" - } - }, - { - "pk": 8211, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHASSEY-LES-SCEY", - "center": "POINT (874075.3597430865047500 2300085.2699626260437071)", - "surface": 4410000, - "canton": null, - "numero_insee": "70138" - } - }, - { - "pk": 10763, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHATENEY", - "center": "POINT (898732.5200689894845709 2307303.2362564047798514)", - "surface": 2620000, - "canton": null, - "numero_insee": "70140" - } - }, - { - "pk": 26460, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHATENOIS", - "center": "POINT (898845.5406832739245147 2305803.0380812473595142)", - "surface": 5730000, - "canton": null, - "numero_insee": "70141" - } - }, - { - "pk": 6004, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAUMERCENNE", - "center": "POINT (848691.3482616599649191 2260935.8892832109704614)", - "surface": 4960000, - "canton": null, - "numero_insee": "70142" - } - }, - { - "pk": 19759, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAUVIREY-LE-CHATEL", - "center": "POINT (855130.4112022118642926 2315234.2656276007182896)", - "surface": 12060000, - "canton": null, - "numero_insee": "70143" - } - }, - { - "pk": 35174, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAUVIREY-LE-VIEIL", - "center": "POINT (856336.4108845927985385 2314644.1654696175828576)", - "surface": 3330000, - "canton": null, - "numero_insee": "70144" - } - }, - { - "pk": 10900, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAUX-LA-LOTIERE", - "center": "POINT (874024.9285317305475473 2271061.7107168119400740)", - "surface": 8970000, - "canton": null, - "numero_insee": "70145" - } - }, - { - "pk": 27336, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAUX-LES-PORT", - "center": "POINT (878206.8281298605725169 2308427.3377371560782194)", - "surface": 4210000, - "canton": null, - "numero_insee": "70146" - } - }, - { - "pk": 27521, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHAVANNE", - "center": "POINT (925074.7990790023468435 2293219.4937026053667068)", - "surface": 2300000, - "canton": null, - "numero_insee": "70147" - } - }, - { - "pk": 24722, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHEMILLY", - "center": "POINT (876477.9300529055763036 2300005.8739641965366900)", - "surface": 3800000, - "canton": null, - "numero_insee": "70148" - } - }, - { - "pk": 26258, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHENEBIER", - "center": "POINT (928194.0028359363786876 2302854.0550851062871516)", - "surface": 9080000, - "canton": null, - "numero_insee": "70149" - } - }, - { - "pk": 18130, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHENEVREY-ET-MOROGNE", - "center": "POINT (857115.6384365459671244 2258906.5375543907284737)", - "surface": 8890000, - "canton": null, - "numero_insee": "70150" - } - }, - { - "pk": 11763, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHEVIGNEY", - "center": "POINT (845563.2772647941019386 2263911.4765766332857311)", - "surface": 5200000, - "canton": null, - "numero_insee": "70151" - } - }, - { - "pk": 23888, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CHOYE", - "center": "POINT (858108.9514324414776638 2271425.2314264043234289)", - "surface": 14360000, - "canton": null, - "numero_insee": "70152" - } - }, - { - "pk": 29669, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CINTREY", - "center": "POINT (855962.7906010460574180 2311538.5513672055676579)", - "surface": 6190000, - "canton": null, - "numero_insee": "70153" - } - }, - { - "pk": 16246, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CIREY", - "center": "POINT (886301.1998270871117711 2274970.4946869066916406)", - "surface": 12920000, - "canton": null, - "numero_insee": "70154" - } - }, - { - "pk": 14685, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CITERS", - "center": "POINT (905979.8008932784432545 2314071.0006477083079517)", - "surface": 15180000, - "canton": null, - "numero_insee": "70155" - } - }, - { - "pk": 13873, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CITEY", - "center": "POINT (860264.9738650860963389 2276748.0332141024991870)", - "surface": 5780000, - "canton": null, - "numero_insee": "70156" - } - }, - { - "pk": 36555, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CLAIREGOUTTE", - "center": "POINT (922873.7934259199537337 2304709.5391252329573035)", - "surface": 10430000, - "canton": null, - "numero_insee": "70157" - } - }, - { - "pk": 6088, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CLANS", - "center": "POINT (877619.2105082925409079 2295311.9959724750369787)", - "surface": 4440000, - "canton": null, - "numero_insee": "70158" - } - }, - { - "pk": 16062, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COGNIERES", - "center": "POINT (897422.2215159460902214 2285174.4709175336174667)", - "surface": 3970000, - "canton": null, - "numero_insee": "70159" - } - }, - { - "pk": 12364, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COISEVAUX", - "center": "POINT (928547.8848439743742347 2296652.2252838900312781)", - "surface": 4330000, - "canton": null, - "numero_insee": "70160" - } - }, - { - "pk": 37891, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COLOMBE-LES-VESOUL", - "center": "POINT (891912.1933842715807259 2297436.7204804252833128)", - "surface": 8040000, - "canton": null, - "numero_insee": "70162" - } - }, - { - "pk": 25636, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COLOMBIER", - "center": "POINT (891356.6216211528517306 2303836.9639497934840620)", - "surface": 14100000, - "canton": null, - "numero_insee": "70163" - } - }, - { - "pk": 28815, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COLOMBOTTE", - "center": "POINT (896564.6272318342234939 2303381.4817485315725207)", - "surface": 4320000, - "canton": null, - "numero_insee": "70164" - } - }, - { - "pk": 10901, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COMBEAUFONTAINE", - "center": "POINT (867009.2574148664716631 2307130.0272237909957767)", - "surface": 12260000, - "canton": null, - "numero_insee": "70165" - } - }, - { - "pk": 10892, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COMBERJON", - "center": "POINT (890380.0663708136416972 2301026.3472500783391297)", - "surface": 3540000, - "canton": null, - "numero_insee": "70166" - } - }, - { - "pk": 7715, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CONFLANDEY", - "center": "POINT (877291.5450625400990248 2310120.7808830323629081)", - "surface": 5330000, - "canton": null, - "numero_insee": "70167" - } - }, - { - "pk": 23699, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CONFLANS-SUR-LANTERNE", - "center": "POINT (890221.3348498302511871 2319439.3104481003247201)", - "surface": 13080000, - "canton": null, - "numero_insee": "70168" - } - }, - { - "pk": 26270, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CONFRACOURT", - "center": "POINT (866643.4071390340104699 2303123.7526168306358159)", - "surface": 19550000, - "canton": null, - "numero_insee": "70169" - } - }, - { - "pk": 10779, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CONTREGLISE", - "center": "POINT (876286.6581076114671305 2322221.4898138688877225)", - "surface": 9650000, - "canton": null, - "numero_insee": "70170" - } - }, - { - "pk": 13996, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA CORBIERE", - "center": "POINT (910745.1419661720283329 2318515.5591982710175216)", - "surface": 3200000, - "canton": null, - "numero_insee": "70172" - } - }, - { - "pk": 34249, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CORDONNET", - "center": "POINT (873490.1111494665965438 2275060.3364252452738583)", - "surface": 10410000, - "canton": null, - "numero_insee": "70174" - } - }, - { - "pk": 26912, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CORNOT", - "center": "POINT (862826.0830778041854501 2304792.2525186380371451)", - "surface": 11120000, - "canton": null, - "numero_insee": "70175" - } - }, - { - "pk": 26844, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CORRE", - "center": "POINT (873212.2178670119028538 2330601.4524396928027272)", - "surface": 9190000, - "canton": null, - "numero_insee": "70177" - } - }, - { - "pk": 29663, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA COTE", - "center": "POINT (917846.8944179562386125 2307368.2025129408575594)", - "surface": 6910000, - "canton": null, - "numero_insee": "70178" - } - }, - { - "pk": 12621, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COULEVON", - "center": "POINT (888675.4064482992980629 2301411.9679547306150198)", - "surface": 2570000, - "canton": null, - "numero_insee": "70179" - } - }, - { - "pk": 12497, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COURCHATON", - "center": "POINT (917516.0314117635134608 2287749.8586158626712859)", - "surface": 13670000, - "canton": null, - "numero_insee": "70180" - } - }, - { - "pk": 22832, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COURCUIRE", - "center": "POINT (863654.2906446243869141 2266669.0139797367155552)", - "surface": 7110000, - "canton": null, - "numero_insee": "70181" - } - }, - { - "pk": 6565, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COURMONT", - "center": "POINT (923622.7440918454667553 2299111.6078428309410810)", - "surface": 6360000, - "canton": null, - "numero_insee": "70182" - } - }, - { - "pk": 20183, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COURTESOULT-ET-GATEY", - "center": "POINT (846196.7452899505151436 2295041.8272790117189288)", - "surface": 10220000, - "canton": null, - "numero_insee": "70183" - } - }, - { - "pk": 32398, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "COUTHENANS", - "center": "POINT (929946.2906337627209723 2296964.5595213198103011)", - "surface": 1650000, - "canton": null, - "numero_insee": "70184" - } - }, - { - "pk": 33501, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CRESANCEY", - "center": "POINT (849898.6374838826013729 2271855.1001422540284693)", - "surface": 9650000, - "canton": null, - "numero_insee": "70185" - } - }, - { - "pk": 3471, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA CREUSE", - "center": "POINT (901148.0331920436583459 2305722.8257935075089335)", - "surface": 5110000, - "canton": null, - "numero_insee": "70186" - } - }, - { - "pk": 23105, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CREVANS-ET-LA-CHAPELLE-LES-GRANGES", - "center": "POINT (920282.5929331278894097 2291877.0317446542903781)", - "surface": 3850000, - "canton": null, - "numero_insee": "70187" - } - }, - { - "pk": 31328, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CREVENEY", - "center": "POINT (896848.4401078318478540 2305285.4189428482204676)", - "surface": 2510000, - "canton": null, - "numero_insee": "70188" - } - }, - { - "pk": 28881, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CROMARY", - "center": "POINT (881745.2373083245474845 2269426.8026850102469325)", - "surface": 5370000, - "canton": null, - "numero_insee": "70189" - } - }, - { - "pk": 23887, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CUBRY-LES-FAVERNEY", - "center": "POINT (884214.5648324694484472 2319687.7720822850242257)", - "surface": 5580000, - "canton": null, - "numero_insee": "70190" - } - }, - { - "pk": 37766, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CUGNEY", - "center": "POINT (855434.4849483082070947 2268199.6606971970759332)", - "surface": 11440000, - "canton": null, - "numero_insee": "70192" - } - }, - { - "pk": 6533, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CULT", - "center": "POINT (857483.2567472193622962 2262712.7973267911002040)", - "surface": 6910000, - "canton": null, - "numero_insee": "70193" - } - }, - { - "pk": 33809, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "CUVE", - "center": "POINT (890224.7805214086547494 2330647.9339054482989013)", - "surface": 8020000, - "canton": null, - "numero_insee": "70194" - } - }, - { - "pk": 7977, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DAMBENOIT-LES-COLOMBE", - "center": "POINT (903009.6508046449162066 2310342.4843354765325785)", - "surface": 8720000, - "canton": null, - "numero_insee": "70195" - } - }, - { - "pk": 3546, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DAMPIERRE-LES-CONFLANS", - "center": "POINT (887487.5402506159152836 2323118.5950500094331801)", - "surface": 10340000, - "canton": null, - "numero_insee": "70196" - } - }, - { - "pk": 3301, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DAMPIERRE-SUR-LINOTTE", - "center": "POINT (893888.6229894247371703 2288746.8675905610434711)", - "surface": 32970000, - "canton": null, - "numero_insee": "70197" - } - }, - { - "pk": 18072, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DAMPIERRE-SUR-SALON", - "center": "POINT (851134.6322393874870613 2291081.0693674837239087)", - "surface": 18900000, - "canton": null, - "numero_insee": "70198" - } - }, - { - "pk": 32401, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DAMPVALLEY-LES-COLOMBE", - "center": "POINT (893600.4647659058682621 2298952.4595245048403740)", - "surface": 6250000, - "canton": null, - "numero_insee": "70199" - } - }, - { - "pk": 7975, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DAMPVALLEY-SAINT-PANCRAS", - "center": "POINT (888722.8851743697887287 2330735.0627118907868862)", - "surface": 4640000, - "canton": null, - "numero_insee": "70200" - } - }, - { - "pk": 35644, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DELAIN", - "center": "POINT (848714.0020065287826583 2293262.0206574080511928)", - "surface": 12190000, - "canton": null, - "numero_insee": "70201" - } - }, - { - "pk": 11407, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DEMANGEVELLE", - "center": "POINT (876601.6323953301180154 2332131.7756548211909831)", - "surface": 14700000, - "canton": null, - "numero_insee": "70202" - } - }, - { - "pk": 31736, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA DEMIE", - "center": "POINT (888338.9452317323302850 2294003.2325122826732695)", - "surface": 6290000, - "canton": null, - "numero_insee": "70203" - } - }, - { - "pk": 11703, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "DENEVRE", - "center": "POINT (848849.3082324054557830 2289159.9353273119777441)", - "surface": 5790000, - "canton": null, - "numero_insee": "70204" - } - }, - { - "pk": 10265, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ECHAVANNE", - "center": "POINT (929381.0054350480204448 2304465.5804630345664918)", - "surface": 3270000, - "canton": null, - "numero_insee": "70205" - } - }, - { - "pk": 37538, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ECHENANS-SOUS-MONT-VAUDOIS", - "center": "POINT (932932.8520420823479071 2298791.8227768596261740)", - "surface": 5450000, - "canton": null, - "numero_insee": "70206" - } - }, - { - "pk": 28379, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ECHENOZ-LA-MELINE", - "center": "POINT (885727.5958692003041506 2295081.5992854684591293)", - "surface": 8180000, - "canton": null, - "numero_insee": "70207" - } - }, - { - "pk": 10398, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ECHENOZ-LE-SEC", - "center": "POINT (884889.8911280703032389 2287768.5901519185863435)", - "surface": 15410000, - "canton": null, - "numero_insee": "70208" - } - }, - { - "pk": 28371, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ECROMAGNY", - "center": "POINT (916546.6005106791853905 2318865.9112474797293544)", - "surface": 6890000, - "canton": null, - "numero_insee": "70210" - } - }, - { - "pk": 36843, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ECUELLE", - "center": "POINT (841649.2790075634839013 2288497.6485467967577279)", - "surface": 5620000, - "canton": null, - "numero_insee": "70211" - } - }, - { - "pk": 7124, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "EHUNS", - "center": "POINT (897366.8587446530582383 2314797.2945680324919522)", - "surface": 5610000, - "canton": null, - "numero_insee": "70213" - } - }, - { - "pk": 17587, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "EQUEVILLEY", - "center": "POINT (887948.1939353122143075 2316117.1653476590290666)", - "surface": 9460000, - "canton": null, - "numero_insee": "70214" - } - }, - { - "pk": 3417, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ERREVET", - "center": "POINT (932653.0407137396978214 2307996.6347104310989380)", - "surface": 3310000, - "canton": null, - "numero_insee": "70215" - } - }, - { - "pk": 6778, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ESBOZ-BREST", - "center": "POINT (907234.0565024041570723 2319486.0118065588176250)", - "surface": 9700000, - "canton": null, - "numero_insee": "70216" - } - }, - { - "pk": 16410, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ESMOULIERES", - "center": "POINT (920090.2926328326575458 2325701.7806149604730308)", - "surface": 19940000, - "canton": null, - "numero_insee": "70217" - } - }, - { - "pk": 12789, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ESMOULINS", - "center": "POINT (843084.2037139520980418 2272897.4840204096399248)", - "surface": 4410000, - "canton": null, - "numero_insee": "70218" - } - }, - { - "pk": 24328, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ESPRELS", - "center": "POINT (902682.8821096364408731 2290223.8411662299185991)", - "surface": 14990000, - "canton": null, - "numero_insee": "70219" - } - }, - { - "pk": 14130, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ESSERTENNE-ET-CECEY", - "center": "POINT (836191.1679825721075758 2271437.2134754648432136)", - "surface": 11280000, - "canton": null, - "numero_insee": "70220" - } - }, - { - "pk": 28811, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ETOBON", - "center": "POINT (925993.3029816821217537 2302734.9424680755473673)", - "surface": 12250000, - "canton": null, - "numero_insee": "70221" - } - }, - { - "pk": 8581, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ETRELLES-ET-LA-MONTBLEUSE", - "center": "POINT (865133.2645694036036730 2280893.1799336271360517)", - "surface": 6270000, - "canton": null, - "numero_insee": "70222" - } - }, - { - "pk": 26986, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ETUZ", - "center": "POINT (871747.3500554321799427 2268239.8434404507279396)", - "surface": 5280000, - "canton": null, - "numero_insee": "70224" - } - }, - { - "pk": 12389, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FAHY-LES-AUTREY", - "center": "POINT (836485.0210547235328704 2283849.6802436257712543)", - "surface": 6200000, - "canton": null, - "numero_insee": "70225" - } - }, - { - "pk": 28334, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FALLON", - "center": "POINT (911719.6172923890408128 2286799.0670244488865137)", - "surface": 5670000, - "canton": null, - "numero_insee": "70226" - } - }, - { - "pk": 18832, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FAUCOGNEY-ET-LA-MER", - "center": "POINT (917809.4548399127088487 2323280.2202061666175723)", - "surface": 14100000, - "canton": null, - "numero_insee": "70227" - } - }, - { - "pk": 17630, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FAVERNEY", - "center": "POINT (880460.1841923764441162 2314051.0985931679606438)", - "surface": 18450000, - "canton": null, - "numero_insee": "70228" - } - }, - { - "pk": 11854, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FAYMONT", - "center": "POINT (920228.1004182400647551 2298181.5511882225982845)", - "surface": 7970000, - "canton": null, - "numero_insee": "70229" - } - }, - { - "pk": 25108, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FEDRY", - "center": "POINT (866099.7908635635394603 2296513.8890230143442750)", - "surface": 8780000, - "canton": null, - "numero_insee": "70230" - } - }, - { - "pk": 34683, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FERRIERES-LES-RAY", - "center": "POINT (859930.6315927009563893 2292357.6024652449414134)", - "surface": 3990000, - "canton": null, - "numero_insee": "70231" - } - }, - { - "pk": 6079, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FERRIERES-LES-SCEY", - "center": "POINT (875359.9172353697940707 2301997.8198656374588609)", - "surface": 6260000, - "canton": null, - "numero_insee": "70232" - } - }, - { - "pk": 8853, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LES FESSEY", - "center": "POINT (912928.5251995982835069 2320636.0413032518699765)", - "surface": 5550000, - "canton": null, - "numero_insee": "70233" - } - }, - { - "pk": 13336, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FILAIN", - "center": "POINT (889093.7857126310700551 2287704.7364215515553951)", - "surface": 15650000, - "canton": null, - "numero_insee": "70234" - } - }, - { - "pk": 26244, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FLAGY", - "center": "POINT (888826.3839542279019952 2307117.7351193670183420)", - "surface": 9630000, - "canton": null, - "numero_insee": "70235" - } - }, - { - "pk": 11682, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FLEUREY-LES-LAVONCOURT", - "center": "POINT (858851.6377041629748419 2301455.4981397534720600)", - "surface": 9380000, - "canton": null, - "numero_insee": "70237" - } - }, - { - "pk": 7851, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FLEUREY-LES-SAINT-LOUP", - "center": "POINT (895514.6196165037108585 2332294.7703800508752465)", - "surface": 3600000, - "canton": null, - "numero_insee": "70238" - } - }, - { - "pk": 14991, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FONDREMAND", - "center": "POINT (878140.9897343035554513 2281205.2721054749563336)", - "surface": 16660000, - "canton": null, - "numero_insee": "70239" - } - }, - { - "pk": 6175, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FONTENOIS-LA-VILLE", - "center": "POINT (886697.3596381664974615 2333519.7364170169457793)", - "surface": 12390000, - "canton": null, - "numero_insee": "70242" - } - }, - { - "pk": 4986, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FONTENOIS-LES-MONTBOZON", - "center": "POINT (893531.4768275804817677 2283739.7993888873606920)", - "surface": 14530000, - "canton": null, - "numero_insee": "70243" - } - }, - { - "pk": 31313, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FOUCHECOURT", - "center": "POINT (873335.3948329740669578 2316291.5329468017444015)", - "surface": 4520000, - "canton": null, - "numero_insee": "70244" - } - }, - { - "pk": 17643, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FOUGEROLLES", - "center": "POINT (904639.0169242774136364 2330271.9036554591730237)", - "surface": 51380000, - "canton": null, - "numero_insee": "70245" - } - }, - { - "pk": 19449, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FOUVENT-SAINT-ANDOCHE", - "center": "POINT (850459.4229692744556814 2299782.1324190357699990)", - "surface": 34970000, - "canton": null, - "numero_insee": "70247" - } - }, - { - "pk": 21782, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRAHIER-ET-CHATEBIER", - "center": "POINT (931379.8285288051702082 2304783.1092180376872420)", - "surface": 17420000, - "canton": null, - "numero_insee": "70248" - } - }, - { - "pk": 27530, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRANCALMONT", - "center": "POINT (894400.9620043500326574 2322177.4306514337658882)", - "surface": 6930000, - "canton": null, - "numero_insee": "70249" - } - }, - { - "pk": 31072, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRANCHEVELLE", - "center": "POINT (909192.4173351852223277 2312897.8066772343590856)", - "surface": 10330000, - "canton": null, - "numero_insee": "70250" - } - }, - { - "pk": 5218, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRANCOURT", - "center": "POINT (855057.5369835370220244 2300422.1058408101089299)", - "surface": 7070000, - "canton": null, - "numero_insee": "70251" - } - }, - { - "pk": 12104, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRAMONT", - "center": "POINT (843932.0375030551804230 2290718.9858601968735456)", - "surface": 11670000, - "canton": null, - "numero_insee": "70252" - } - }, - { - "pk": 18240, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRASNE-LE-CHATEAU", - "center": "POINT (867843.8349660285748541 2279915.6924558812752366)", - "surface": 12520000, - "canton": null, - "numero_insee": "70253" - } - }, - { - "pk": 29244, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FREDERIC-FONTAINE", - "center": "POINT (922584.8277117742691189 2303406.0200326647609472)", - "surface": 3430000, - "canton": null, - "numero_insee": "70254" - } - }, - { - "pk": 37887, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRESNE-SAINT-MAMES", - "center": "POINT (864858.2456270356196910 2289597.7513387138023973)", - "surface": 9980000, - "canton": null, - "numero_insee": "70255" - } - }, - { - "pk": 9861, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRESSE", - "center": "POINT (925079.3674972940934822 2315837.2732966542243958)", - "surface": 27720000, - "canton": null, - "numero_insee": "70256" - } - }, - { - "pk": 20259, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FRETIGNEY-ET-VELLOREILLE", - "center": "POINT (871221.3367152735590935 2282847.0719567169435322)", - "surface": 22370000, - "canton": null, - "numero_insee": "70257" - } - }, - { - "pk": 34670, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FROIDECONCHE", - "center": "POINT (905503.4977739147143438 2322873.6924186819233000)", - "surface": 16100000, - "canton": null, - "numero_insee": "70258" - } - }, - { - "pk": 9755, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FROIDETERRE", - "center": "POINT (914135.6310694070998579 2308336.9168829824775457)", - "surface": 2910000, - "canton": null, - "numero_insee": "70259" - } - }, - { - "pk": 10267, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FROTEY-LES-LURE", - "center": "POINT (916177.6845214690547436 2303650.8782708165235817)", - "surface": 7240000, - "canton": null, - "numero_insee": "70260" - } - }, - { - "pk": 37056, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "FROTEY-LES-VESOUL", - "center": "POINT (889795.1661587371490896 2299219.8891604994423687)", - "surface": 7790000, - "canton": null, - "numero_insee": "70261" - } - }, - { - "pk": 34300, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GENEVREUILLE", - "center": "POINT (903355.6374002383090556 2305041.3286877586506307)", - "surface": 6390000, - "canton": null, - "numero_insee": "70262" - } - }, - { - "pk": 34713, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GENEVREY", - "center": "POINT (899209.5627782801166177 2310009.4592510177753866)", - "surface": 12070000, - "canton": null, - "numero_insee": "70263" - } - }, - { - "pk": 5542, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GEORFANS", - "center": "POINT (914194.6275976634351537 2289922.9154422893188894)", - "surface": 3000000, - "canton": null, - "numero_insee": "70264" - } - }, - { - "pk": 5070, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GERMIGNEY", - "center": "POINT (841422.4613263093633577 2268279.5071946135722101)", - "surface": 15200000, - "canton": null, - "numero_insee": "70265" - } - }, - { - "pk": 20593, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GEVIGNEY-ET-MERCEY", - "center": "POINT (870228.9216363085433841 2316765.1840124111622572)", - "surface": 19550000, - "canton": null, - "numero_insee": "70267" - } - }, - { - "pk": 5150, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GEZIER-ET-FONTENELAY", - "center": "POINT (868342.2629277340602130 2268510.7914134748280048)", - "surface": 12280000, - "canton": null, - "numero_insee": "70268" - } - }, - { - "pk": 23928, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GIREFONTAINE", - "center": "POINT (886638.6884675998007879 2328715.5713228639215231)", - "surface": 3600000, - "canton": null, - "numero_insee": "70269" - } - }, - { - "pk": 26443, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GOUHENANS", - "center": "POINT (911719.4319010982289910 2298408.2713931039907038)", - "surface": 8550000, - "canton": null, - "numero_insee": "70271" - } - }, - { - "pk": 12948, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GOURGEON", - "center": "POINT (863299.7600141677539796 2307898.7461730269715190)", - "surface": 13730000, - "canton": null, - "numero_insee": "70272" - } - }, - { - "pk": 12232, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRAMMONT", - "center": "POINT (914414.6549396505579352 2287622.9836903987452388)", - "surface": 5820000, - "canton": null, - "numero_insee": "70273" - } - }, - { - "pk": 5544, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRANDECOURT", - "center": "POINT (864678.9959822536911815 2298803.4807236269116402)", - "surface": 3330000, - "canton": null, - "numero_insee": "70274" - } - }, - { - "pk": 9253, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRANDVELLE-ET-LE-PERRENOT", - "center": "POINT (875895.4558655706932768 2286290.0143329068087041)", - "surface": 10500000, - "canton": null, - "numero_insee": "70275" - } - }, - { - "pk": 13863, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRANGES-LA-VILLE", - "center": "POINT (918063.7137592436047271 2293859.4426754326559603)", - "surface": 2560000, - "canton": null, - "numero_insee": "70276" - } - }, - { - "pk": 31323, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRANGES-LE-BOURG", - "center": "POINT (919655.3488640764262527 2294974.0698482017032802)", - "surface": 10350000, - "canton": null, - "numero_insee": "70277" - } - }, - { - "pk": 29460, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRATTERY", - "center": "POINT (881150.2475323069375008 2303648.9348292606882751)", - "surface": 6270000, - "canton": null, - "numero_insee": "70278" - } - }, - { - "pk": 14992, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRAY", - "center": "POINT (846866.3662265116581693 2275331.8828837778419256)", - "surface": 20330000, - "canton": null, - "numero_insee": "70279" - } - }, - { - "pk": 20355, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GRAY-LA-VILLE", - "center": "POINT (843857.3031094177858904 2276106.6949199661612511)", - "surface": 3960000, - "canton": null, - "numero_insee": "70280" - } - }, - { - "pk": 14018, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GREUCOURT", - "center": "POINT (865279.1892722721677274 2287199.4638776560314000)", - "surface": 2690000, - "canton": null, - "numero_insee": "70281" - } - }, - { - "pk": 14767, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "GY", - "center": "POINT (861700.4090716931968927 2272757.1517695388756692)", - "surface": 24870000, - "canton": null, - "numero_insee": "70282" - } - }, - { - "pk": 5429, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "HAUT-DU-THEM-CHATEAU-LAMBERT", - "center": "POINT (929908.3447200324153528 2324485.6911298488266766)", - "surface": 25270000, - "canton": null, - "numero_insee": "70283" - } - }, - { - "pk": 26275, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "HAUTEVELLE", - "center": "POINT (896193.5818326869048178 2323193.6614012825302780)", - "surface": 7800000, - "canton": null, - "numero_insee": "70284" - } - }, - { - "pk": 4358, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "HERICOURT", - "center": "POINT (932966.6243523431476206 2294889.0287817209027708)", - "surface": 18040000, - "canton": null, - "numero_insee": "70285" - } - }, - { - "pk": 19261, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "HUGIER", - "center": "POINT (854684.6222071407828480 2262288.4246463896706700)", - "surface": 7150000, - "canton": null, - "numero_insee": "70286" - } - }, - { - "pk": 5338, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "HURECOURT", - "center": "POINT (878026.7236971533857286 2329341.9130714382044971)", - "surface": 4940000, - "canton": null, - "numero_insee": "70287" - } - }, - { - "pk": 12655, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "HYET", - "center": "POINT (881738.4348081357311457 2281836.7320446758531034)", - "surface": 6380000, - "canton": null, - "numero_insee": "70288" - } - }, - { - "pk": 37925, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "IGNY", - "center": "POINT (857523.4423290264094248 2281328.1582792866975069)", - "surface": 10120000, - "canton": null, - "numero_insee": "70289" - } - }, - { - "pk": 28816, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "JASNEY", - "center": "POINT (887163.1827836245065555 2325917.9486967301927507)", - "surface": 13080000, - "canton": null, - "numero_insee": "70290" - } - }, - { - "pk": 13575, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "JONVELLE", - "center": "POINT (867199.4808039711788297 2331550.4705442637205124)", - "surface": 12490000, - "canton": null, - "numero_insee": "70291" - } - }, - { - "pk": 17517, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "JUSSEY", - "center": "POINT (866006.1886225920170546 2319030.6289092754013836)", - "surface": 33680000, - "canton": null, - "numero_insee": "70292" - } - }, - { - "pk": 13594, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LAMBREY", - "center": "POINT (869157.4279883691342548 2313353.3317304984666407)", - "surface": 6090000, - "canton": null, - "numero_insee": "70293" - } - }, - { - "pk": 34259, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LANTENOT", - "center": "POINT (912281.6308087571524084 2314425.6531182904727757)", - "surface": 8390000, - "canton": null, - "numero_insee": "70294" - } - }, - { - "pk": 32136, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA LANTERNE-ET-LES-ARMONTS", - "center": "POINT (913951.7006197257433087 2318042.8712343438528478)", - "surface": 9970000, - "canton": null, - "numero_insee": "70295" - } - }, - { - "pk": 37730, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LARIANS-ET-MUNANS", - "center": "POINT (893593.6008085056673735 2276534.5570830139331520)", - "surface": 2500000, - "canton": null, - "numero_insee": "70296" - } - }, - { - "pk": 11568, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LARRET", - "center": "POINT (847579.7013213755562901 2297155.3567960928194225)", - "surface": 5590000, - "canton": null, - "numero_insee": "70297" - } - }, - { - "pk": 9471, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LAVIGNEY", - "center": "POINT (860104.3847813300089911 2307070.6478345822542906)", - "surface": 10160000, - "canton": null, - "numero_insee": "70298" - } - }, - { - "pk": 36596, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LAVONCOURT", - "center": "POINT (858389.1288426434621215 2297048.0636437362991273)", - "surface": 5590000, - "canton": null, - "numero_insee": "70299" - } - }, - { - "pk": 23498, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LIEFFRANS", - "center": "POINT (873391.0651808397378772 2286568.6966584515757859)", - "surface": 4390000, - "canton": null, - "numero_insee": "70301" - } - }, - { - "pk": 34351, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LIEUCOURT", - "center": "POINT (847635.6163482337724417 2267332.0280448161065578)", - "surface": 4810000, - "canton": null, - "numero_insee": "70302" - } - }, - { - "pk": 24527, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LINEXERT", - "center": "POINT (910992.8185237253783271 2313013.4330782173201442)", - "surface": 1950000, - "canton": null, - "numero_insee": "70304" - } - }, - { - "pk": 13878, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LOEUILLEY", - "center": "POINT (830826.3679528229404241 2278496.9182900912128389)", - "surface": 5630000, - "canton": null, - "numero_insee": "70305" - } - }, - { - "pk": 23087, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LOMONT", - "center": "POINT (920209.0710259664338082 2300383.1221069525927305)", - "surface": 11380000, - "canton": null, - "numero_insee": "70306" - } - }, - { - "pk": 13201, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LONGEVELLE", - "center": "POINT (909137.4487861002562568 2296084.1569387265481055)", - "surface": 4250000, - "canton": null, - "numero_insee": "70307" - } - }, - { - "pk": 11831, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA LONGINE", - "center": "POINT (916944.9024236067198217 2330678.4244277384132147)", - "surface": 11880000, - "canton": null, - "numero_insee": "70308" - } - }, - { - "pk": 34702, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LOULANS-VERCHAMP", - "center": "POINT (891572.2976509598083794 2278818.9810592168942094)", - "surface": 8240000, - "canton": null, - "numero_insee": "70309" - } - }, - { - "pk": 18848, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LURE", - "center": "POINT (912148.9118957982864231 2306618.4253260763362050)", - "surface": 24640000, - "canton": null, - "numero_insee": "70310" - } - }, - { - "pk": 14674, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LUXEUIL-LES-BAINS", - "center": "POINT (901411.8746285366360098 2321537.3748850701376796)", - "surface": 22040000, - "canton": null, - "numero_insee": "70311" - } - }, - { - "pk": 16327, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LUZE", - "center": "POINT (929230.2072356336284429 2298759.7875195480883121)", - "surface": 10580000, - "canton": null, - "numero_insee": "70312" - } - }, - { - "pk": 25465, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LYOFFANS", - "center": "POINT (919291.1310217200079933 2302376.7624231274239719)", - "surface": 4490000, - "canton": null, - "numero_insee": "70313" - } - }, - { - "pk": 31109, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAGNIVRAY", - "center": "POINT (909155.2583271926268935 2317200.8225269126705825)", - "surface": 4770000, - "canton": null, - "numero_insee": "70314" - } - }, - { - "pk": 10122, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAGNONCOURT", - "center": "POINT (895433.5399156105704606 2330092.3930549896322191)", - "surface": 6600000, - "canton": null, - "numero_insee": "70315" - } - }, - { - "pk": 32400, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LE MAGNORAY", - "center": "POINT (882592.5408837664872408 2287248.4010378555394709)", - "surface": 3640000, - "canton": null, - "numero_insee": "70316" - } - }, - { - "pk": 19391, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LES MAGNY", - "center": "POINT (908898.5825164017733186 2288976.4602327514439821)", - "surface": 11560000, - "canton": null, - "numero_insee": "70317" - } - }, - { - "pk": 5061, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAGNY-DANIGON", - "center": "POINT (920755.0019755833782256 2306692.7898235982283950)", - "surface": 7740000, - "canton": null, - "numero_insee": "70318" - } - }, - { - "pk": 8088, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAGNY-JOBERT", - "center": "POINT (921088.0866635669954121 2302892.6878087148070335)", - "surface": 3750000, - "canton": null, - "numero_insee": "70319" - } - }, - { - "pk": 29889, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAGNY-LES-JUSSEY", - "center": "POINT (872371.0293642501346767 2323688.9340637354180217)", - "surface": 9360000, - "canton": null, - "numero_insee": "70320" - } - }, - { - "pk": 25464, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAGNY-VERNOIS", - "center": "POINT (910263.9867926685838029 2304700.6571484189480543)", - "surface": 6490000, - "canton": null, - "numero_insee": "70321" - } - }, - { - "pk": 33968, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAILLEY-ET-CHAZELOT", - "center": "POINT (879485.9933413199614733 2287722.0437591909430921)", - "surface": 24920000, - "canton": null, - "numero_insee": "70324" - } - }, - { - "pk": 36834, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAIZIERES", - "center": "POINT (876517.4275280683068559 2283793.3738994528539479)", - "surface": 11640000, - "canton": null, - "numero_insee": "70325" - } - }, - { - "pk": 14149, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA MALACHERE", - "center": "POINT (881558.1132259361911565 2279533.3354073464870453)", - "surface": 5450000, - "canton": null, - "numero_insee": "70326" - } - }, - { - "pk": 5344, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MALANS", - "center": "POINT (846523.2220952515490353 2257014.0880536609329283)", - "surface": 6760000, - "canton": null, - "numero_insee": "70327" - } - }, - { - "pk": 11562, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MALBOUHANS", - "center": "POINT (918325.6267999671399593 2309874.2934236461296678)", - "surface": 7660000, - "canton": null, - "numero_insee": "70328" - } - }, - { - "pk": 34717, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MALVILLERS", - "center": "POINT (858781.1016093401703984 2309661.2978066760115325)", - "surface": 7150000, - "canton": null, - "numero_insee": "70329" - } - }, - { - "pk": 33509, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MANDREVILLARS", - "center": "POINT (933120.0053121950477362 2300294.6261773947626352)", - "surface": 2960000, - "canton": null, - "numero_insee": "70330" - } - }, - { - "pk": 5601, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MANTOCHE", - "center": "POINT (840168.3414494520984590 2274473.7502451119944453)", - "surface": 16960000, - "canton": null, - "numero_insee": "70331" - } - }, - { - "pk": 24919, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MARAST", - "center": "POINT (904169.2801063605584204 2291938.0195070132613182)", - "surface": 3060000, - "canton": null, - "numero_insee": "70332" - } - }, - { - "pk": 9449, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MARNAY", - "center": "POINT (859700.3687886046245694 2260930.3843244807794690)", - "surface": 10380000, - "canton": null, - "numero_insee": "70334" - } - }, - { - "pk": 30121, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MAUSSANS", - "center": "POINT (894781.5340890751685947 2278046.0070534986443818)", - "surface": 3980000, - "canton": null, - "numero_insee": "70335" - } - }, - { - "pk": 35865, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MELIN", - "center": "POINT (861275.9785823258571327 2310483.3684032093733549)", - "surface": 5680000, - "canton": null, - "numero_insee": "70337" - } - }, - { - "pk": 27341, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MELINCOURT", - "center": "POINT (883545.1718088930938393 2327688.1491746511310339)", - "surface": 14900000, - "canton": null, - "numero_insee": "70338" - } - }, - { - "pk": 21110, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MELISEY", - "center": "POINT (916377.5911516026826575 2315261.6616579480469227)", - "surface": 21170000, - "canton": null, - "numero_insee": "70339" - } - }, - { - "pk": 37507, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MEMBREY", - "center": "POINT (856623.9636842019390315 2292829.5772060938179493)", - "surface": 11090000, - "canton": null, - "numero_insee": "70340" - } - }, - { - "pk": 24129, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MERCEY-SUR-SAONE", - "center": "POINT (855281.4312587766908109 2286012.6435471158474684)", - "surface": 7680000, - "canton": null, - "numero_insee": "70342" - } - }, - { - "pk": 15289, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MERSUAY", - "center": "POINT (885043.5776995617197827 2316392.3658939646556973)", - "surface": 11810000, - "canton": null, - "numero_insee": "70343" - } - }, - { - "pk": 5081, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MEURCOURT", - "center": "POINT (892064.8686233191983774 2314551.4137252829968929)", - "surface": 11820000, - "canton": null, - "numero_insee": "70344" - } - }, - { - "pk": 29876, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MIELLIN", - "center": "POINT (930336.3296544674085453 2321286.9273974290117621)", - "surface": 13490000, - "canton": null, - "numero_insee": "70345" - } - }, - { - "pk": 12234, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MIGNAVILLERS", - "center": "POINT (917043.9719495838508010 2296052.3733212044462562)", - "surface": 7710000, - "canton": null, - "numero_insee": "70347" - } - }, - { - "pk": 9478, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MOFFANS-ET-VACHERESSE", - "center": "POINT (916405.4964827637886629 2300450.3299930691719055)", - "surface": 14060000, - "canton": null, - "numero_insee": "70348" - } - }, - { - "pk": 26901, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MOIMAY", - "center": "POINT (905566.8318209941498935 2292350.3996666306629777)", - "surface": 6250000, - "canton": null, - "numero_insee": "70349" - } - }, - { - "pk": 15914, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MOLAY", - "center": "POINT (855281.2173543763346970 2309330.9842193350195885)", - "surface": 7750000, - "canton": null, - "numero_insee": "70350" - } - }, - { - "pk": 32360, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MOLLANS", - "center": "POINT (904279.5965243158861995 2302347.1848853458650410)", - "surface": 13550000, - "canton": null, - "numero_insee": "70351" - } - }, - { - "pk": 5737, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA MONTAGNE", - "center": "POINT (917721.2369590462185442 2333487.2705243378877640)", - "surface": 12480000, - "canton": null, - "numero_insee": "70352" - } - }, - { - "pk": 28351, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTAGNEY", - "center": "POINT (851007.6653334784787148 2259254.3928770781494677)", - "surface": 9320000, - "canton": null, - "numero_insee": "70353" - } - }, - { - "pk": 30911, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTARLOT-LES-RIOZ", - "center": "POINT (876192.0861026198836043 2275083.5931949769146740)", - "surface": 9670000, - "canton": null, - "numero_insee": "70355" - } - }, - { - "pk": 14062, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTBOILLON", - "center": "POINT (870026.2953477946575731 2270526.8981122416444123)", - "surface": 8490000, - "canton": null, - "numero_insee": "70356" - } - }, - { - "pk": 20396, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTBOZON", - "center": "POINT (895359.5346850208006799 2280653.0795099195092916)", - "surface": 8580000, - "canton": null, - "numero_insee": "70357" - } - }, - { - "pk": 5545, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTCEY", - "center": "POINT (893075.9480201443657279 2301750.1396813904866576)", - "surface": 8100000, - "canton": null, - "numero_insee": "70358" - } - }, - { - "pk": 3936, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTCOURT", - "center": "POINT (870799.3709625945193693 2331881.6750160716474056)", - "surface": 4990000, - "canton": null, - "numero_insee": "70359" - } - }, - { - "pk": 12501, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTDORE", - "center": "POINT (879609.7265902634244412 2331457.1479843235574663)", - "surface": 7720000, - "canton": null, - "numero_insee": "70360" - } - }, - { - "pk": 5670, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTESSAUX", - "center": "POINT (916900.4256985331885517 2312664.1589705473743379)", - "surface": 3230000, - "canton": null, - "numero_insee": "70361" - } - }, - { - "pk": 19944, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTIGNY-LES-CHERLIEU", - "center": "POINT (860632.5385123084997758 2315481.7137369173578918)", - "surface": 21290000, - "canton": null, - "numero_insee": "70362" - } - }, - { - "pk": 35092, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTIGNY-LES-VESOUL", - "center": "POINT (880478.1929430747404695 2300340.5562624288722873)", - "surface": 6500000, - "canton": null, - "numero_insee": "70363" - } - }, - { - "pk": 10898, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTJUSTIN-ET-VELOTTE", - "center": "POINT (903410.0484308162704110 2298736.8465164657682180)", - "surface": 7540000, - "canton": null, - "numero_insee": "70364" - } - }, - { - "pk": 12236, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-CHEMIN-ET-MONT-LES-ETRELLES", - "center": "POINT (866864.6262433857191354 2277405.2633490334264934)", - "surface": 7420000, - "canton": null, - "numero_insee": "70366" - } - }, - { - "pk": 34940, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONT-LE-VERNOIS", - "center": "POINT (880217.6242518012877554 2295734.6874315617606044)", - "surface": 7790000, - "canton": null, - "numero_insee": "70367" - } - }, - { - "pk": 31687, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTOT", - "center": "POINT (846651.1615279139950871 2288740.7429744959808886)", - "surface": 10090000, - "canton": null, - "numero_insee": "70368" - } - }, - { - "pk": 6441, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONT-SAINT-LEGER", - "center": "POINT (860175.7890762131428346 2298764.7600181465968490)", - "surface": 4930000, - "canton": null, - "numero_insee": "70369" - } - }, - { - "pk": 10268, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTUREUX-ET-PRANTIGNY", - "center": "POINT (847996.7812489481875673 2283548.1581167983822525)", - "surface": 12190000, - "canton": null, - "numero_insee": "70371" - } - }, - { - "pk": 16409, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MONTUREUX-LES-BAULAY", - "center": "POINT (872705.6904551296029240 2319688.7378929746337235)", - "surface": 6450000, - "canton": null, - "numero_insee": "70372" - } - }, - { - "pk": 19474, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA ROCHE-MOREY", - "center": "POINT (856318.9017438696464524 2305036.5483809593133628)", - "surface": 29610000, - "canton": null, - "numero_insee": "70373" - } - }, - { - "pk": 12684, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MOTEY-BESUCHE", - "center": "POINT (851589.2018194001866505 2261461.1828671395778656)", - "surface": 6210000, - "canton": null, - "numero_insee": "70374" - } - }, - { - "pk": 12635, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "MOTEY-SUR-SAONE", - "center": "POINT (856684.1626200359314680 2285824.5379694453440607)", - "surface": 2930000, - "canton": null, - "numero_insee": "70375" - } - }, - { - "pk": 28154, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NANTILLY", - "center": "POINT (840538.5794245041906834 2277979.7388816066086292)", - "surface": 9940000, - "canton": null, - "numero_insee": "70376" - } - }, - { - "pk": 11159, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NAVENNE", - "center": "POINT (887519.3985537763219327 2296197.9087875657714903)", - "surface": 4000000, - "canton": null, - "numero_insee": "70378" - } - }, - { - "pk": 25452, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NEUREY-EN-VAUX", - "center": "POINT (889786.5472329870099202 2311829.6749364729039371)", - "surface": 5290000, - "canton": null, - "numero_insee": "70380" - } - }, - { - "pk": 13809, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NEUREY-LES-LA-DEMIE", - "center": "POINT (890257.5600885831518099 2292018.1848934558220208)", - "surface": 9690000, - "canton": null, - "numero_insee": "70381" - } - }, - { - "pk": 5411, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NEUVELLE-LES-CROMARY", - "center": "POINT (881503.7202345882542431 2274228.6030897516757250)", - "surface": 6260000, - "canton": null, - "numero_insee": "70383" - } - }, - { - "pk": 21445, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NEUVELLE-LES-LA-CHARITE", - "center": "POINT (872674.1961002363823354 2288464.0391839276999235)", - "surface": 13200000, - "canton": null, - "numero_insee": "70384" - } - }, - { - "pk": 35910, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA NEUVELLE-LES-LURE", - "center": "POINT (916220.6861065137200058 2310256.4152709967456758)", - "surface": 4880000, - "canton": null, - "numero_insee": "70385" - } - }, - { - "pk": 30912, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA NEUVELLE-LES-SCEY", - "center": "POINT (870318.4769417294301093 2306357.8739117197692394)", - "surface": 6440000, - "canton": null, - "numero_insee": "70386" - } - }, - { - "pk": 17083, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NOIDANS-LE-FERROUX", - "center": "POINT (871646.7792826886288822 2291557.6585434968583286)", - "surface": 14270000, - "canton": null, - "numero_insee": "70387" - } - }, - { - "pk": 34494, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NOIDANS-LES-VESOUL", - "center": "POINT (884211.8649976868182421 2296769.8825279013253748)", - "surface": 8560000, - "canton": null, - "numero_insee": "70388" - } - }, - { - "pk": 30122, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NOIRON", - "center": "POINT (848213.7172254251781851 2269939.0965721192769706)", - "surface": 5750000, - "canton": null, - "numero_insee": "70389" - } - }, - { - "pk": 20210, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "NOROY-LE-BOURG", - "center": "POINT (897021.8799858277197927 2296780.2307998538017273)", - "surface": 31740000, - "canton": null, - "numero_insee": "70390" - } - }, - { - "pk": 37954, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "OIGNEY", - "center": "POINT (863363.6868300421629101 2312102.5632153567858040)", - "surface": 8060000, - "canton": null, - "numero_insee": "70392" - } - }, - { - "pk": 22767, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "OISELAY-ET-GRACHAUX", - "center": "POINT (870682.0359369874931872 2275736.7360732462257147)", - "surface": 23260000, - "canton": null, - "numero_insee": "70393" - } - }, - { - "pk": 31520, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ONAY", - "center": "POINT (852707.5678477392066270 2271078.5798412957228720)", - "surface": 6820000, - "canton": null, - "numero_insee": "70394" - } - }, - { - "pk": 12780, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "OPPENANS", - "center": "POINT (904344.3761987591860816 2294841.8294558967463672)", - "surface": 3530000, - "canton": null, - "numero_insee": "70395" - } - }, - { - "pk": 33547, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ORMENANS", - "center": "POINT (892159.7942400588653982 2280325.2499829647131264)", - "surface": 3520000, - "canton": null, - "numero_insee": "70397" - } - }, - { - "pk": 9232, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ORMOICHE", - "center": "POINT (896819.8950533326715231 2320196.7533210846595466)", - "surface": 5750000, - "canton": null, - "numero_insee": "70398" - } - }, - { - "pk": 19799, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ORMOY", - "center": "POINT (873444.2274491221178323 2326900.6240346548147500)", - "surface": 19620000, - "canton": null, - "numero_insee": "70399" - } - }, - { - "pk": 7361, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "OUGE", - "center": "POINT (851917.8564104898832738 2316407.5906713516451418)", - "surface": 13580000, - "canton": null, - "numero_insee": "70400" - } - }, - { - "pk": 10269, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "OVANCHES", - "center": "POINT (871888.4338931130478159 2298365.1102418228983879)", - "surface": 6770000, - "canton": null, - "numero_insee": "70401" - } - }, - { - "pk": 31275, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "OYRIERES", - "center": "POINT (843672.1934949408750981 2286013.0234328676015139)", - "surface": 14000000, - "canton": null, - "numero_insee": "70402" - } - }, - { - "pk": 6895, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PALANTE", - "center": "POINT (918670.8121338638011366 2304673.2076917560771108)", - "surface": 3570000, - "canton": null, - "numero_insee": "70403" - } - }, - { - "pk": 31531, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PENNESIERES", - "center": "POINT (883120.4871382302371785 2284050.3959676553495228)", - "surface": 9090000, - "canton": null, - "numero_insee": "70405" - } - }, - { - "pk": 4512, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PERCEY-LE-GRAND", - "center": "POINT (830077.5123243232956156 2295804.2430844954214990)", - "surface": 13880000, - "canton": null, - "numero_insee": "70406" - } - }, - { - "pk": 16701, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PERROUSE", - "center": "POINT (879942.1889703851193190 2269611.4372561709024012)", - "surface": 4420000, - "canton": null, - "numero_insee": "70407" - } - }, - { - "pk": 22807, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PESMES", - "center": "POINT (844699.5481627117842436 2259600.5589031325653195)", - "surface": 18880000, - "canton": null, - "numero_insee": "70408" - } - }, - { - "pk": 36581, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PIERRECOURT", - "center": "POINT (844063.4596742184367031 2298726.4267818056978285)", - "surface": 15600000, - "canton": null, - "numero_insee": "70409" - } - }, - { - "pk": 30980, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PIN", - "center": "POINT (866062.9463908954057842 2265889.0770330624654889)", - "surface": 13950000, - "canton": null, - "numero_insee": "70410" - } - }, - { - "pk": 14125, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA PISSEURE", - "center": "POINT (891071.0589281590655446 2325351.1756470059044659)", - "surface": 2250000, - "canton": null, - "numero_insee": "70411" - } - }, - { - "pk": 4979, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PLAINEMONT", - "center": "POINT (890386.1030327705666423 2323543.8882742570713162)", - "surface": 3300000, - "canton": null, - "numero_insee": "70412" - } - }, - { - "pk": 20202, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PLANCHER-BAS", - "center": "POINT (929718.0899850293062627 2311774.2080163415521383)", - "surface": 29110000, - "canton": null, - "numero_insee": "70413" - } - }, - { - "pk": 18834, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PLANCHER-LES-MINES", - "center": "POINT (932258.4380491685587913 2318901.7040819954127073)", - "surface": 25510000, - "canton": null, - "numero_insee": "70414" - } - }, - { - "pk": 15782, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "POLAINCOURT-ET-CLAIREFONTAINE", - "center": "POINT (878854.8534835050813854 2326146.5979857505299151)", - "surface": 21670000, - "canton": null, - "numero_insee": "70415" - } - }, - { - "pk": 11069, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "POMOY", - "center": "POINT (901070.4131954571930692 2303120.1178428055718541)", - "surface": 7550000, - "canton": null, - "numero_insee": "70416" - } - }, - { - "pk": 6426, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LE PONT-DE-PLANCHES", - "center": "POINT (869874.7604822262655944 2288139.7114576473832130)", - "surface": 6900000, - "canton": null, - "numero_insee": "70418" - } - }, - { - "pk": 8421, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PONT-DU-BOIS", - "center": "POINT (882655.8184391096001491 2337988.3236635597422719)", - "surface": 8420000, - "canton": null, - "numero_insee": "70419" - } - }, - { - "pk": 24718, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PONT-SUR-L'OGNON", - "center": "POINT (905006.1331324605271220 2287741.9015340022742748)", - "surface": 4110000, - "canton": null, - "numero_insee": "70420" - } - }, - { - "pk": 5857, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PORT-SUR-SAONE", - "center": "POINT (877329.4576037166407332 2305717.6747275418601930)", - "surface": 24590000, - "canton": null, - "numero_insee": "70421" - } - }, - { - "pk": 29033, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "POYANS", - "center": "POINT (836749.5464396999450400 2276345.9476472265087068)", - "surface": 12080000, - "canton": null, - "numero_insee": "70422" - } - }, - { - "pk": 32825, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PREIGNEY", - "center": "POINT (858152.2938818249385804 2312958.4558408795855939)", - "surface": 12250000, - "canton": null, - "numero_insee": "70423" - } - }, - { - "pk": 7452, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA PROISELIERE-ET-LANGLE", - "center": "POINT (911025.4721163188805804 2320819.7570815500803292)", - "surface": 7030000, - "canton": null, - "numero_insee": "70425" - } - }, - { - "pk": 13052, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PROVENCHERE", - "center": "POINT (884004.0233194499742240 2309277.8949783379212022)", - "surface": 5910000, - "canton": null, - "numero_insee": "70426" - } - }, - { - "pk": 14769, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PURGEROT", - "center": "POINT (873873.6458944494370371 2311892.7553896503522992)", - "surface": 14210000, - "canton": null, - "numero_insee": "70427" - } - }, - { - "pk": 31737, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PUSEY", - "center": "POINT (884171.3434609298128635 2301473.2337203603237867)", - "surface": 8180000, - "canton": null, - "numero_insee": "70428" - } - }, - { - "pk": 30686, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "PUSY-ET-EPENOUX", - "center": "POINT (886256.4526433583814651 2303392.6908514089882374)", - "surface": 10060000, - "canton": null, - "numero_insee": "70429" - } - }, - { - "pk": 17668, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA QUARTE", - "center": "POINT (852142.9273628330556676 2313507.2807878488674760)", - "surface": 3170000, - "canton": null, - "numero_insee": "70430" - } - }, - { - "pk": 27518, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "QUENOCHE", - "center": "POINT (884150.5234782354673371 2280656.5479870061390102)", - "surface": 9640000, - "canton": null, - "numero_insee": "70431" - } - }, - { - "pk": 34490, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "QUERS", - "center": "POINT (907807.8499849329236895 2310984.3721188446506858)", - "surface": 9970000, - "canton": null, - "numero_insee": "70432" - } - }, - { - "pk": 28141, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "QUINCEY", - "center": "POINT (890430.9622594935353845 2295122.1345039359293878)", - "surface": 12990000, - "canton": null, - "numero_insee": "70433" - } - }, - { - "pk": 24334, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RADDON-ET-CHAPENDU", - "center": "POINT (907884.4278425432275981 2325296.0944727729074657)", - "surface": 12480000, - "canton": null, - "numero_insee": "70435" - } - }, - { - "pk": 7980, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RAINCOURT", - "center": "POINT (865565.4537210948765278 2323730.4526506182737648)", - "surface": 8250000, - "canton": null, - "numero_insee": "70436" - } - }, - { - "pk": 6568, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RANZEVELLE", - "center": "POINT (872522.9336222315905616 2329294.5277630831114948)", - "surface": 2380000, - "canton": null, - "numero_insee": "70437" - } - }, - { - "pk": 29458, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RAY-SUR-SAONE", - "center": "POINT (861520.5949002638226375 2293672.2997144651599228)", - "surface": 8010000, - "canton": null, - "numero_insee": "70438" - } - }, - { - "pk": 23172, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RAZE", - "center": "POINT (875735.9417641503969207 2293194.1214827108196914)", - "surface": 10030000, - "canton": null, - "numero_insee": "70439" - } - }, - { - "pk": 6566, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RECOLOGNE", - "center": "POINT (858427.8349612232996151 2292544.8431233083829284)", - "surface": 1120000, - "canton": null, - "numero_insee": "70440" - } - }, - { - "pk": 14689, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RENAUCOURT", - "center": "POINT (857370.3536086310632527 2299140.9600861058570445)", - "surface": 6140000, - "canton": null, - "numero_insee": "70442" - } - }, - { - "pk": 3591, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA GRANDE-RESIE", - "center": "POINT (843755.9340076735243201 2264596.5321532557718456)", - "surface": 4690000, - "canton": null, - "numero_insee": "70443" - } - }, - { - "pk": 5418, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA RESIE-SAINT-MARTIN", - "center": "POINT (847281.7179735302925110 2261924.6012969361618161)", - "surface": 3270000, - "canton": null, - "numero_insee": "70444" - } - }, - { - "pk": 29706, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RIGNOVELLE", - "center": "POINT (910071.4442911832593381 2315407.3396311970427632)", - "surface": 4360000, - "canton": null, - "numero_insee": "70445" - } - }, - { - "pk": 22422, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RIGNY", - "center": "POINT (848322.7779791296925396 2280548.5599911883473396)", - "surface": 12740000, - "canton": null, - "numero_insee": "70446" - } - }, - { - "pk": 14687, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RIOZ", - "center": "POINT (880775.6291683684103191 2277424.9095642478205264)", - "surface": 17200000, - "canton": null, - "numero_insee": "70447" - } - }, - { - "pk": 19848, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ROCHE-ET-RAUCOURT", - "center": "POINT (853188.8557949541136622 2296603.0613282676786184)", - "surface": 13380000, - "canton": null, - "numero_insee": "70448" - } - }, - { - "pk": 13588, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ROCHE-SUR-LINOTTE-ET-SORANS-LES-CORDIERS", - "center": "POINT (890842.4581200766842812 2282215.4167867633514106)", - "surface": 9310000, - "canton": null, - "numero_insee": "70449" - } - }, - { - "pk": 30309, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA ROCHELLE", - "center": "POINT (853963.1052954024635255 2311321.2126471623778343)", - "surface": 4270000, - "canton": null, - "numero_insee": "70450" - } - }, - { - "pk": 4660, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RONCHAMP", - "center": "POINT (922322.3935881520155817 2310609.3880084813572466)", - "surface": 23380000, - "canton": null, - "numero_insee": "70451" - } - }, - { - "pk": 12100, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ROSEY", - "center": "POINT (877157.6242726061027497 2290804.4589348710142076)", - "surface": 14850000, - "canton": null, - "numero_insee": "70452" - } - }, - { - "pk": 23337, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA ROSIERE", - "center": "POINT (920134.9974283385090530 2332107.0673227957449853)", - "surface": 9000000, - "canton": null, - "numero_insee": "70453" - } - }, - { - "pk": 7388, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ROSIERES-SUR-MANCE", - "center": "POINT (859483.5931113229598850 2321076.1553262770175934)", - "surface": 5330000, - "canton": null, - "numero_insee": "70454" - } - }, - { - "pk": 9083, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "ROYE", - "center": "POINT (915557.3717857933370396 2305947.3224382917396724)", - "surface": 10440000, - "canton": null, - "numero_insee": "70455" - } - }, - { - "pk": 8832, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RUHANS", - "center": "POINT (886357.2974291790742427 2280075.0795024991966784)", - "surface": 4950000, - "canton": null, - "numero_insee": "70456" - } - }, - { - "pk": 24532, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "RUPT-SUR-SAONE", - "center": "POINT (869767.1323196615558118 2300648.6651284443214536)", - "surface": 10280000, - "canton": null, - "numero_insee": "70457" - } - }, - { - "pk": 8727, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-BARTHELEMY", - "center": "POINT (919897.3462559632025659 2313290.5272672362625599)", - "surface": 13810000, - "canton": null, - "numero_insee": "70459" - } - }, - { - "pk": 16921, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-BRESSON", - "center": "POINT (911763.7928570812800899 2328031.6694942745380104)", - "surface": 26710000, - "canton": null, - "numero_insee": "70460" - } - }, - { - "pk": 22236, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-BROING", - "center": "POINT (851946.0236901892349124 2278177.7542702592909336)", - "surface": 10170000, - "canton": null, - "numero_insee": "70461" - } - }, - { - "pk": 29020, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-FERJEUX", - "center": "POINT (913783.1014118385501206 2291220.3944378108717501)", - "surface": 1750000, - "canton": null, - "numero_insee": "70462" - } - }, - { - "pk": 29852, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-GAND", - "center": "POINT (863300.1186066637746990 2284580.3732572058215737)", - "surface": 16090000, - "canton": null, - "numero_insee": "70463" - } - }, - { - "pk": 17770, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-GERMAIN", - "center": "POINT (913611.0718886232934892 2311134.5702069676481187)", - "surface": 14220000, - "canton": null, - "numero_insee": "70464" - } - }, - { - "pk": 4735, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-LOUP-NANTOUARD", - "center": "POINT (855771.1488320515491068 2275608.5274863317608833)", - "surface": 7740000, - "canton": null, - "numero_insee": "70466" - } - }, - { - "pk": 8856, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-MARCEL", - "center": "POINT (860696.4726355525199324 2319685.5053576091304421)", - "surface": 7190000, - "canton": null, - "numero_insee": "70468" - } - }, - { - "pk": 27520, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINTE-MARIE-EN-CHANOIS", - "center": "POINT (913001.7957907388918102 2323739.0630756486207247)", - "surface": 4800000, - "canton": null, - "numero_insee": "70469" - } - }, - { - "pk": 25835, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINTE-MARIE-EN-CHAUX", - "center": "POINT (896737.0894082422601059 2318194.4946912489831448)", - "surface": 2440000, - "canton": null, - "numero_insee": "70470" - } - }, - { - "pk": 9956, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINTE-REINE", - "center": "POINT (859006.4683759461622685 2283442.5828772559762001)", - "surface": 6250000, - "canton": null, - "numero_insee": "70471" - } - }, - { - "pk": 17085, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-REMY", - "center": "POINT (882292.5508694858290255 2322073.0615386008284986)", - "surface": 9120000, - "canton": null, - "numero_insee": "70472" - } - }, - { - "pk": 31521, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-SAUVEUR", - "center": "POINT (903940.3915524755138904 2318456.8050978267565370)", - "surface": 12110000, - "canton": null, - "numero_insee": "70473" - } - }, - { - "pk": 13065, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAINT-SULPICE", - "center": "POINT (909356.6024354211986065 2293884.3076648162677884)", - "surface": 3530000, - "canton": null, - "numero_insee": "70474" - } - }, - { - "pk": 11292, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAPONCOURT", - "center": "POINT (875359.3250595101853833 2325315.8854396855458617)", - "surface": 4880000, - "canton": null, - "numero_insee": "70476" - } - }, - { - "pk": 16407, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAULNOT", - "center": "POINT (922762.7637873257044703 2294400.4552840590476990)", - "surface": 26690000, - "canton": null, - "numero_insee": "70477" - } - }, - { - "pk": 17631, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAULX", - "center": "POINT (895633.7806234267773107 2306876.1941986600868404)", - "surface": 15130000, - "canton": null, - "numero_insee": "70478" - } - }, - { - "pk": 37341, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAUVIGNEY-LES-GRAY", - "center": "POINT (855945.4979713987559080 2278612.4354227744042873)", - "surface": 10440000, - "canton": null, - "numero_insee": "70479" - } - }, - { - "pk": 25933, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAUVIGNEY-LES-PESMES", - "center": "POINT (844284.6489250068552792 2261298.3845160286873579)", - "surface": 6340000, - "canton": null, - "numero_insee": "70480" - } - }, - { - "pk": 12918, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SAVOYEUX", - "center": "POINT (855760.2947051051305607 2288518.7466731993481517)", - "surface": 6190000, - "canton": null, - "numero_insee": "70481" - } - }, - { - "pk": 16238, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SCEY-SUR-SAONE-ET-SAINT-ALBIN", - "center": "POINT (872239.6287842022720724 2304072.6079908041283488)", - "surface": 28470000, - "canton": null, - "numero_insee": "70482" - } - }, - { - "pk": 29885, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SCYE", - "center": "POINT (879362.7593948256690055 2302032.2852800078690052)", - "surface": 5770000, - "canton": null, - "numero_insee": "70483" - } - }, - { - "pk": 13463, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SECENANS", - "center": "POINT (918282.0181639885995537 2291759.6622913773171604)", - "surface": 2850000, - "canton": null, - "numero_insee": "70484" - } - }, - { - "pk": 12636, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SELLES", - "center": "POINT (880262.8001369198318571 2336966.9513078359887004)", - "surface": 14470000, - "canton": null, - "numero_insee": "70485" - } - }, - { - "pk": 23254, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SEMMADON", - "center": "POINT (865679.9347979939775541 2310421.1632929230108857)", - "surface": 10850000, - "canton": null, - "numero_insee": "70486" - } - }, - { - "pk": 18128, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SENARGENT-MIGNAFANS", - "center": "POINT (915364.3684728116495535 2293535.8808360667899251)", - "surface": 10800000, - "canton": null, - "numero_insee": "70487" - } - }, - { - "pk": 24132, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SENONCOURT", - "center": "POINT (878491.6336285171564668 2321840.1691586868837476)", - "surface": 11380000, - "canton": null, - "numero_insee": "70488" - } - }, - { - "pk": 17650, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SERVANCE", - "center": "POINT (925518.2705169430701062 2322946.5599622623994946)", - "surface": 39560000, - "canton": null, - "numero_insee": "70489" - } - }, - { - "pk": 32810, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SERVIGNEY", - "center": "POINT (897000.2431675228290260 2310891.1011837492696941)", - "surface": 5780000, - "canton": null, - "numero_insee": "70490" - } - }, - { - "pk": 31704, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SEVEUX", - "center": "POINT (858271.5571374358842149 2287439.4538597366772592)", - "surface": 17080000, - "canton": null, - "numero_insee": "70491" - } - }, - { - "pk": 22177, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SOING-CUBRY-CHARENTENAY", - "center": "POINT (867028.8405909931752831 2293219.2737158038653433)", - "surface": 28910000, - "canton": null, - "numero_insee": "70492" - } - }, - { - "pk": 31965, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SORANS-LES-BREUREY", - "center": "POINT (879914.6130862657446414 2272813.7880709781311452)", - "surface": 14440000, - "canton": null, - "numero_insee": "70493" - } - }, - { - "pk": 25929, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "SORNAY", - "center": "POINT (854013.3335607219487429 2258879.8830952979624271)", - "surface": 6290000, - "canton": null, - "numero_insee": "70494" - } - }, - { - "pk": 34720, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TARTECOURT", - "center": "POINT (872386.5328602796653286 2321887.6845715050585568)", - "surface": 2230000, - "canton": null, - "numero_insee": "70496" - } - }, - { - "pk": 7122, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TAVEY", - "center": "POINT (931173.1244425168260932 2293972.7965265889652073)", - "surface": 2970000, - "canton": null, - "numero_insee": "70497" - } - }, - { - "pk": 20546, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TERNUAY-MELAY-ET-SAINT-HILAIRE", - "center": "POINT (921644.9728281529387459 2319510.4429437471553683)", - "surface": 25900000, - "canton": null, - "numero_insee": "70498" - } - }, - { - "pk": 27529, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "THEULEY", - "center": "POINT (861690.6244003507308662 2297176.5239200135692954)", - "surface": 7460000, - "canton": null, - "numero_insee": "70499" - } - }, - { - "pk": 7123, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "THIEFFRANS", - "center": "POINT (898715.3938337457366288 2286086.3440938228741288)", - "surface": 9410000, - "canton": null, - "numero_insee": "70500" - } - }, - { - "pk": 26724, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "THIENANS", - "center": "POINT (896950.3418813911266625 2281867.7608846751973033)", - "surface": 4220000, - "canton": null, - "numero_insee": "70501" - } - }, - { - "pk": 11034, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TINCEY-ET-PONTREBEAU", - "center": "POINT (859207.7641810129862279 2294953.4440413494594395)", - "surface": 6830000, - "canton": null, - "numero_insee": "70502" - } - }, - { - "pk": 31327, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TRAITIEFONTAINE", - "center": "POINT (883491.3923419730272144 2275847.0130006284452975)", - "surface": 5990000, - "canton": null, - "numero_insee": "70503" - } - }, - { - "pk": 7142, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TRAVES", - "center": "POINT (872510.3928859544685110 2295868.4919601352885365)", - "surface": 12230000, - "canton": null, - "numero_insee": "70504" - } - }, - { - "pk": 5376, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LE TREMBLOIS", - "center": "POINT (845317.5999001488089561 2269213.6662780153565109)", - "surface": 5560000, - "canton": null, - "numero_insee": "70505" - } - }, - { - "pk": 32130, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TREMOINS", - "center": "POINT (928469.4532405370846391 2294149.5662491512484848)", - "surface": 4110000, - "canton": null, - "numero_insee": "70506" - } - }, - { - "pk": 28939, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TRESILLEY", - "center": "POINT (878266.9116342938505113 2278203.9498112481087446)", - "surface": 11190000, - "canton": null, - "numero_insee": "70507" - } - }, - { - "pk": 8784, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "TROMAREY", - "center": "POINT (855762.2212090110406280 2264999.8800736684352160)", - "surface": 6060000, - "canton": null, - "numero_insee": "70509" - } - }, - { - "pk": 32530, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VADANS", - "center": "POINT (844841.2845722669735551 2266407.3093646410852671)", - "surface": 12840000, - "canton": null, - "numero_insee": "70510" - } - }, - { - "pk": 34715, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VAITE", - "center": "POINT (854023.8187651796033606 2292607.0766308549791574)", - "surface": 9390000, - "canton": null, - "numero_insee": "70511" - } - }, - { - "pk": 11418, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA VAIVRE", - "center": "POINT (901126.2416405481053516 2331442.4999057515524328)", - "surface": 3080000, - "canton": null, - "numero_insee": "70512" - } - }, - { - "pk": 29442, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VAIVRE-ET-MONTOILLE", - "center": "POINT (883187.8740157302236184 2299463.1885717255063355)", - "surface": 8480000, - "canton": null, - "numero_insee": "70513" - } - }, - { - "pk": 15667, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VALAY", - "center": "POINT (849359.2121463844086975 2264744.7176946317777038)", - "surface": 17310000, - "canton": null, - "numero_insee": "70514" - } - }, - { - "pk": 11289, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LE VAL-DE-GOUHENANS", - "center": "POINT (911807.4029198400676250 2299810.1351671349257231)", - "surface": 3870000, - "canton": null, - "numero_insee": "70515" - } - }, - { - "pk": 17015, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VALLEROIS-LE-BOIS", - "center": "POINT (898071.7990669342689216 2291084.7730400925502181)", - "surface": 12550000, - "canton": null, - "numero_insee": "70516" - } - }, - { - "pk": 9259, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VALLEROIS-LORIOZ", - "center": "POINT (887155.3321579562034458 2291991.4476730735041201)", - "surface": 6300000, - "canton": null, - "numero_insee": "70517" - } - }, - { - "pk": 10642, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LE VAL-SAINT-ELOI", - "center": "POINT (887883.4861473446944728 2312013.4268964859656990)", - "surface": 7060000, - "canton": null, - "numero_insee": "70518" - } - }, - { - "pk": 33308, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VANDELANS", - "center": "POINT (888413.9482078161090612 2273687.6515195085667074)", - "surface": 3100000, - "canton": null, - "numero_insee": "70519" - } - }, - { - "pk": 29457, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VANNE", - "center": "POINT (863808.4742461282294244 2295293.2361038690432906)", - "surface": 9700000, - "canton": null, - "numero_insee": "70520" - } - }, - { - "pk": 29026, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VANTOUX-ET-LONGEVELLE", - "center": "POINT (863958.2083752515027300 2277880.6695291190408170)", - "surface": 9730000, - "canton": null, - "numero_insee": "70521" - } - }, - { - "pk": 34716, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VAROGNE", - "center": "POINT (890309.3283278744202107 2309232.1570630110800266)", - "surface": 4550000, - "canton": null, - "numero_insee": "70522" - } - }, - { - "pk": 37235, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VARS", - "center": "POINT (839562.3637577658519149 2286778.3898587264120579)", - "surface": 16020000, - "canton": null, - "numero_insee": "70523" - } - }, - { - "pk": 27931, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VAUCHOUX", - "center": "POINT (877563.2036809256533161 2301816.6321669858880341)", - "surface": 4680000, - "canton": null, - "numero_insee": "70524" - } - }, - { - "pk": 32163, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VAUCONCOURT-NERVEZAIN", - "center": "POINT (862457.6373803557362407 2301086.1856897254474461)", - "surface": 18370000, - "canton": null, - "numero_insee": "70525" - } - }, - { - "pk": 35913, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VAUVILLERS", - "center": "POINT (881806.0668338392861187 2332076.5240638204850256)", - "surface": 9550000, - "canton": null, - "numero_insee": "70526" - } - }, - { - "pk": 29246, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VAUX-LE-MONCELOT", - "center": "POINT (868732.4370864997617900 2281324.4580434276722372)", - "surface": 6970000, - "canton": null, - "numero_insee": "70527" - } - }, - { - "pk": 20145, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELESMES-ECHEVANNE", - "center": "POINT (852978.5596962899435312 2274483.6498712981119752)", - "surface": 22310000, - "canton": null, - "numero_insee": "70528" - } - }, - { - "pk": 6572, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELET", - "center": "POINT (843470.7539309881394729 2274502.0903932438232005)", - "surface": 6130000, - "canton": null, - "numero_insee": "70529" - } - }, - { - "pk": 30674, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLECLAIRE", - "center": "POINT (866780.9073304014746100 2275503.0152523219585419)", - "surface": 4150000, - "canton": null, - "numero_insee": "70531" - } - }, - { - "pk": 26514, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLEFAUX", - "center": "POINT (886066.6136142554460093 2290580.9552069944329560)", - "surface": 10110000, - "canton": null, - "numero_insee": "70532" - } - }, - { - "pk": 14656, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLEFREY-ET-VELLEFRANGE", - "center": "POINT (862162.0585408911574632 2277264.7438558372668922)", - "surface": 7200000, - "canton": null, - "numero_insee": "70533" - } - }, - { - "pk": 28606, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLEFRIE", - "center": "POINT (891425.6337080155499279 2307440.3760256427340209)", - "surface": 5920000, - "canton": null, - "numero_insee": "70534" - } - }, - { - "pk": 25664, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLEGUINDRY-ET-LEVRECEY", - "center": "POINT (882362.2268320239381865 2290749.2000691904686391)", - "surface": 10580000, - "canton": null, - "numero_insee": "70535" - } - }, - { - "pk": 37516, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLE-LE-CHATEL", - "center": "POINT (879631.8453953950665891 2294028.2989988434128463)", - "surface": 3030000, - "canton": null, - "numero_insee": "70536" - } - }, - { - "pk": 28376, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLEMINFROY", - "center": "POINT (898868.8503760800231248 2303101.1229465110227466)", - "surface": 6090000, - "canton": null, - "numero_insee": "70537" - } - }, - { - "pk": 25213, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLEMOZ", - "center": "POINT (860329.7768035004846752 2280851.8790185619145632)", - "surface": 4250000, - "canton": null, - "numero_insee": "70538" - } - }, - { - "pk": 5503, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELLOREILLE-LES-CHOYE", - "center": "POINT (855609.6964526927331463 2271103.5123976003378630)", - "surface": 4160000, - "canton": null, - "numero_insee": "70540" - } - }, - { - "pk": 6214, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VELORCEY", - "center": "POINT (893145.7929684880655259 2316862.5159949688240886)", - "surface": 6190000, - "canton": null, - "numero_insee": "70541" - } - }, - { - "pk": 32040, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VENERE", - "center": "POINT (852238.1460456839995459 2267471.6343977469950914)", - "surface": 8070000, - "canton": null, - "numero_insee": "70542" - } - }, - { - "pk": 24327, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA VERGENNE", - "center": "POINT (914316.9669516055146232 2298931.1031530611217022)", - "surface": 2930000, - "canton": null, - "numero_insee": "70544" - } - }, - { - "pk": 5105, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VENISEY", - "center": "POINT (874191.2293997253291309 2321502.9112742408178747)", - "surface": 6870000, - "canton": null, - "numero_insee": "70545" - } - }, - { - "pk": 10372, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VEREUX", - "center": "POINT (848475.6599101125029847 2286054.2627117093652487)", - "surface": 8970000, - "canton": null, - "numero_insee": "70546" - } - }, - { - "pk": 13898, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VERLANS", - "center": "POINT (929464.9775210189400241 2294758.6534992493689060)", - "surface": 1630000, - "canton": null, - "numero_insee": "70547" - } - }, - { - "pk": 30071, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VERNOIS-SUR-MANCE", - "center": "POINT (857478.7623618744546548 2321459.2290820907801390)", - "surface": 7980000, - "canton": null, - "numero_insee": "70548" - } - }, - { - "pk": 3671, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA VERNOTTE", - "center": "POINT (866100.4237575549632311 2284804.6147814067080617)", - "surface": 5550000, - "canton": null, - "numero_insee": "70549" - } - }, - { - "pk": 26911, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VESOUL", - "center": "POINT (886791.3022613506764174 2299394.1573332254774868)", - "surface": 9080000, - "canton": null, - "numero_insee": "70550" - } - }, - { - "pk": 5324, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VEZET", - "center": "POINT (867770.6635623968904838 2288421.8482310096733272)", - "surface": 11600000, - "canton": null, - "numero_insee": "70551" - } - }, - { - "pk": 3499, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLAFANS", - "center": "POINT (911147.5236670544836670 2295100.7238229247741401)", - "surface": 6370000, - "canton": null, - "numero_insee": "70552" - } - }, - { - "pk": 25662, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLARGENT", - "center": "POINT (912186.2708737961947918 2290706.2042130837216973)", - "surface": 2900000, - "canton": null, - "numero_insee": "70553" - } - }, - { - "pk": 9481, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLARS-LE-PAUTEL", - "center": "POINT (867831.7488592129666358 2327853.0883748265914619)", - "surface": 12270000, - "canton": null, - "numero_insee": "70554" - } - }, - { - "pk": 29027, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA VILLEDIEU-EN-FONTENETTE", - "center": "POINT (889758.9427585301455110 2315031.9213548474945128)", - "surface": 9740000, - "canton": null, - "numero_insee": "70555" - } - }, - { - "pk": 10778, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLEFRANCON", - "center": "POINT (856889.1517108904663473 2273616.5239393389783800)", - "surface": 5720000, - "canton": null, - "numero_insee": "70557" - } - }, - { - "pk": 18207, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA VILLENEUVE-BELLENOYE-ET-LA-MAIZE", - "center": "POINT (892818.8573901751078665 2308353.0910797053948045)", - "surface": 9320000, - "canton": null, - "numero_insee": "70558" - } - }, - { - "pk": 37113, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-BOUTON", - "center": "POINT (874261.4113267152570188 2278469.7092351303435862)", - "surface": 5280000, - "canton": null, - "numero_insee": "70560" - } - }, - { - "pk": 26461, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-LA-VILLE", - "center": "POINT (910678.2766240952769294 2291493.8164312634617090)", - "surface": 5850000, - "canton": null, - "numero_insee": "70562" - } - }, - { - "pk": 8459, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-LE-SEC", - "center": "POINT (893340.8054005019366741 2294246.5091256578452885)", - "surface": 11100000, - "canton": null, - "numero_insee": "70563" - } - }, - { - "pk": 8817, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-LES-LUXEUIL", - "center": "POINT (895462.9373279147548601 2315081.1047602607868612)", - "surface": 9080000, - "canton": null, - "numero_insee": "70564" - } - }, - { - "pk": 31513, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-PATER", - "center": "POINT (888743.5201708115637302 2281897.0853857081383467)", - "surface": 4720000, - "canton": null, - "numero_insee": "70565" - } - }, - { - "pk": 8735, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-SUR-PORT", - "center": "POINT (881010.5276457078289241 2308251.3278236105106771)", - "surface": 10230000, - "canton": null, - "numero_insee": "70566" - } - }, - { - "pk": 14121, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-SUR-SAULNOT", - "center": "POINT (924284.6071330202976242 2292011.7080392814241350)", - "surface": 2320000, - "canton": null, - "numero_insee": "70567" - } - }, - { - "pk": 15213, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILLERS-VAUDEY", - "center": "POINT (856639.7545237445738167 2302637.4278620146214962)", - "surface": 5530000, - "canton": null, - "numero_insee": "70568" - } - }, - { - "pk": 12899, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VILORY", - "center": "POINT (891398.8883220806019381 2310542.5631635426543653)", - "surface": 3820000, - "canton": null, - "numero_insee": "70569" - } - }, - { - "pk": 35659, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VISONCOURT", - "center": "POINT (896979.5263617068994790 2313292.7890514731407166)", - "surface": 4500000, - "canton": null, - "numero_insee": "70571" - } - }, - { - "pk": 4222, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VITREY-SUR-MANCE", - "center": "POINT (856107.0303958505392075 2318044.8212396814487875)", - "surface": 13730000, - "canton": null, - "numero_insee": "70572" - } - }, - { - "pk": 21997, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "LA VOIVRE", - "center": "POINT (915721.8302039117552340 2321660.9464868064969778)", - "surface": 12070000, - "canton": null, - "numero_insee": "70573" - } - }, - { - "pk": 10514, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VOLON", - "center": "POINT (855484.4788919027196243 2297323.3369846092537045)", - "surface": 5680000, - "canton": null, - "numero_insee": "70574" - } - }, - { - "pk": 23539, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VORAY-SUR-L'OGNON", - "center": "POINT (877657.7278010270092636 2267590.1460306965745986)", - "surface": 6820000, - "canton": null, - "numero_insee": "70575" - } - }, - { - "pk": 37902, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VOUGECOURT", - "center": "POINT (873086.3074084906838834 2333602.6516808844171464)", - "surface": 8820000, - "canton": null, - "numero_insee": "70576" - } - }, - { - "pk": 20389, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VOUHENANS", - "center": "POINT (912190.4012202967423946 2301815.0176713103428483)", - "surface": 8390000, - "canton": null, - "numero_insee": "70577" - } - }, - { - "pk": 37767, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VREGILLE", - "center": "POINT (868172.2443350348621607 2265006.4875966245308518)", - "surface": 4430000, - "canton": null, - "numero_insee": "70578" - } - }, - { - "pk": 37499, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VYANS-LE-VAL", - "center": "POINT (932885.6032388147432357 2292686.5815052110701799)", - "surface": 3270000, - "canton": null, - "numero_insee": "70579" - } - }, - { - "pk": 4269, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VY-LE-FERROUX", - "center": "POINT (872928.7656005647731945 2293770.4332774486392736)", - "surface": 5740000, - "canton": null, - "numero_insee": "70580" - } - }, - { - "pk": 14677, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VY-LES-LURE", - "center": "POINT (908281.5771103419829160 2302481.8117958218790591)", - "surface": 15940000, - "canton": null, - "numero_insee": "70581" - } - }, - { - "pk": 16518, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VY-LES-RUPT", - "center": "POINT (867076.4023802131414413 2299324.4945207810960710)", - "surface": 8290000, - "canton": null, - "numero_insee": "70582" - } - }, - { - "pk": 32811, - "model": "ishtar_common.town", - "fields": { - "departement": 71, - "name": "VY-LES-FILAIN", - "center": "POINT (890512.9115207270951942 2285615.2941629695706069)", - "surface": 5330000, - "canton": null, - "numero_insee": "70583" - } - }, - { - "pk": 27410, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "L'ABERGEMENT-DE-CUISERY", - "center": "POINT (801056.1893333245534450 2178558.4706716369837523)", - "surface": 8120000, - "canton": null, - "numero_insee": "71001" - } - }, - { - "pk": 23874, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "L'ABERGEMENT-SAINTE-COLOMBE", - "center": "POINT (805591.3731813007034361 2198314.3811254091560841)", - "surface": 19560000, - "canton": null, - "numero_insee": "71002" - } - }, - { - "pk": 3875, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ALLEREY-SUR-SAONE", - "center": "POINT (800836.3220387058099732 2215988.8681440302170813)", - "surface": 16600000, - "canton": null, - "numero_insee": "71003" - } - }, - { - "pk": 5347, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ALLERIOT", - "center": "POINT (799844.9608017140999436 2203169.4687641425989568)", - "surface": 13530000, - "canton": null, - "numero_insee": "71004" - } - }, - { - "pk": 10953, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ALUZE", - "center": "POINT (779382.8354870141483843 2208399.3564527295529842)", - "surface": 6030000, - "canton": null, - "numero_insee": "71005" - } - }, - { - "pk": 9161, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "AMANZE", - "center": "POINT (746258.8249058963265270 2149065.5020630904473364)", - "surface": 11300000, - "canton": null, - "numero_insee": "71006" - } - }, - { - "pk": 8515, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "AMEUGNY", - "center": "POINT (778793.7502017861697823 2171862.6543984827585518)", - "surface": 6510000, - "canton": null, - "numero_insee": "71007" - } - }, - { - "pk": 11992, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ANGLURE-SOUS-DUN", - "center": "POINT (756851.8475256942911074 2139246.7065889658406377)", - "surface": 7110000, - "canton": null, - "numero_insee": "71008" - } - }, - { - "pk": 21302, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ANOST", - "center": "POINT (733241.2240760819986463 2232226.9267583512701094)", - "surface": 51930000, - "canton": null, - "numero_insee": "71009" - } - }, - { - "pk": 16109, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ANTULLY", - "center": "POINT (757430.7962562305619940 2212315.7469647605903447)", - "surface": 37390000, - "canton": null, - "numero_insee": "71010" - } - }, - { - "pk": 14892, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ANZY-LE-DUC", - "center": "POINT (733551.7362230519065633 2148557.1285844049416482)", - "surface": 25080000, - "canton": null, - "numero_insee": "71011" - } - }, - { - "pk": 10007, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "AUTHUMES", - "center": "POINT (826273.1723865676904097 2214204.8598418533802032)", - "surface": 12890000, - "canton": null, - "numero_insee": "71013" - } - }, - { - "pk": 15665, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "AUTUN", - "center": "POINT (750175.8049600644735619 2218058.9096267377026379)", - "surface": 61640000, - "canton": null, - "numero_insee": "71014" - } - }, - { - "pk": 20512, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "AUXY", - "center": "POINT (758385.5537140587111935 2217728.4569956348277628)", - "surface": 37150000, - "canton": null, - "numero_insee": "71015" - } - }, - { - "pk": 8305, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "AZE", - "center": "POINT (785384.4312664598692209 2161910.0341066685505211)", - "surface": 15040000, - "canton": null, - "numero_insee": "71016" - } - }, - { - "pk": 16110, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BALLORE", - "center": "POINT (756368.8145339002367109 2172472.2576009933836758)", - "surface": 10900000, - "canton": null, - "numero_insee": "71017" - } - }, - { - "pk": 21323, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BANTANGES", - "center": "POINT (813236.8848440693691373 2182065.6226659337989986)", - "surface": 10960000, - "canton": null, - "numero_insee": "71018" - } - }, - { - "pk": 36462, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BARIZEY", - "center": "POINT (778239.0986810587346554 2201683.8612028481438756)", - "surface": 5680000, - "canton": null, - "numero_insee": "71019" - } - }, - { - "pk": 19494, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BARON", - "center": "POINT (749303.0954475668258965 2167707.9767383886501193)", - "surface": 13290000, - "canton": null, - "numero_insee": "71021" - } - }, - { - "pk": 10479, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BAUDEMONT", - "center": "POINT (750092.6178973938804120 2145494.8752002348192036)", - "surface": 7900000, - "canton": null, - "numero_insee": "71022" - } - }, - { - "pk": 17863, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BAUDRIERES", - "center": "POINT (803873.8099144102307037 2188491.2067104461602867)", - "surface": 26980000, - "canton": null, - "numero_insee": "71023" - } - }, - { - "pk": 26149, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BAUGY", - "center": "POINT (730565.4078628616407514 2146630.0533144325017929)", - "surface": 12660000, - "canton": null, - "numero_insee": "71024" - } - }, - { - "pk": 16391, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BEAUBERY", - "center": "POINT (758186.9320266228169203 2158775.5980955683626235)", - "surface": 23260000, - "canton": null, - "numero_insee": "71025" - } - }, - { - "pk": 30558, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BEAUMONT-SUR-GROSNE", - "center": "POINT (793164.4312964207492769 2188499.7725630174390972)", - "surface": 7340000, - "canton": null, - "numero_insee": "71026" - } - }, - { - "pk": 8718, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BEAUREPAIRE-EN-BRESSE", - "center": "POINT (833889.1361665525473654 2189749.0528628616593778)", - "surface": 10410000, - "canton": null, - "numero_insee": "71027" - } - }, - { - "pk": 14396, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BEAUVERNOIS", - "center": "POINT (836624.9503393112681806 2209189.2428716332651675)", - "surface": 8820000, - "canton": null, - "numero_insee": "71028" - } - }, - { - "pk": 4248, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BELLEVESVRE", - "center": "POINT (830815.2714664246886969 2209739.9466974851675332)", - "surface": 7220000, - "canton": null, - "numero_insee": "71029" - } - }, - { - "pk": 31154, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BERGESSERIN", - "center": "POINT (771106.8783128291834146 2157784.6863554939627647)", - "surface": 7270000, - "canton": null, - "numero_insee": "71030" - } - }, - { - "pk": 9254, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BERZE-LE-CHATEL", - "center": "POINT (780315.2731508715078235 2157763.1240520444698632)", - "surface": 5520000, - "canton": null, - "numero_insee": "71031" - } - }, - { - "pk": 29282, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BERZE-LA-VILLE", - "center": "POINT (781943.0571837485767901 2154674.2411193014122546)", - "surface": 5480000, - "canton": null, - "numero_insee": "71032" - } - }, - { - "pk": 22738, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BEY", - "center": "POINT (800824.3592444000532851 2205679.9841182390227914)", - "surface": 8910000, - "canton": null, - "numero_insee": "71033" - } - }, - { - "pk": 17286, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BISSEY-SOUS-CRUCHAUD", - "center": "POINT (779999.3515244449954480 2194792.9330395436845720)", - "surface": 11270000, - "canton": null, - "numero_insee": "71034" - } - }, - { - "pk": 27408, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BISSY-LA-MACONNAISE", - "center": "POINT (787234.7209536684677005 2167931.1523389844223857)", - "surface": 4980000, - "canton": null, - "numero_insee": "71035" - } - }, - { - "pk": 26772, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BISSY-SOUS-UXELLES", - "center": "POINT (783153.7522623948752880 2177004.3421858330257237)", - "surface": 3140000, - "canton": null, - "numero_insee": "71036" - } - }, - { - "pk": 37894, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BISSY-SUR-FLEY", - "center": "POINT (774758.3121875313809142 2187341.8118606037460268)", - "surface": 4770000, - "canton": null, - "numero_insee": "71037" - } - }, - { - "pk": 31825, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BLANOT", - "center": "POINT (784437.5719610824016854 2167306.7455522948876023)", - "surface": 11580000, - "canton": null, - "numero_insee": "71039" - } - }, - { - "pk": 37275, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BLANZY", - "center": "POINT (757208.5761798771563917 2191395.9170928685925901)", - "surface": 40120000, - "canton": null, - "numero_insee": "71040" - } - }, - { - "pk": 27764, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOIS-SAINTE-MARIE", - "center": "POINT (755159.3611643519252539 2149941.9511967259459198)", - "surface": 2670000, - "canton": null, - "numero_insee": "71041" - } - }, - { - "pk": 17861, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BONNAY", - "center": "POINT (775467.1831423887051642 2174636.7476034518331289)", - "surface": 12060000, - "canton": null, - "numero_insee": "71042" - } - }, - { - "pk": 36295, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LES BORDES", - "center": "POINT (806553.5814952119253576 2214536.4797575669363141)", - "surface": 2220000, - "canton": null, - "numero_insee": "71043" - } - }, - { - "pk": 16264, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOSJEAN", - "center": "POINT (829789.0324992118403316 2201023.6885084537789226)", - "surface": 18620000, - "canton": null, - "numero_insee": "71044" - } - }, - { - "pk": 14648, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOUHANS", - "center": "POINT (825579.7232233948307112 2201688.2232082663103938)", - "surface": 10180000, - "canton": null, - "numero_insee": "71045" - } - }, - { - "pk": 22902, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA BOULAYE", - "center": "POINT (738665.8205498822499067 2194541.0242940345779061)", - "surface": 13860000, - "canton": null, - "numero_insee": "71046" - } - }, - { - "pk": 19294, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOURBON-LANCY", - "center": "POINT (709655.6437081798212603 2180983.2116690860129893)", - "surface": 55850000, - "canton": null, - "numero_insee": "71047" - } - }, - { - "pk": 36915, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOURG-LE-COMTE", - "center": "POINT (726859.7962327417917550 2146898.8561245622113347)", - "surface": 11490000, - "canton": null, - "numero_insee": "71048" - } - }, - { - "pk": 12219, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOURGVILAIN", - "center": "POINT (776943.2142537266481668 2154131.1422150428406894)", - "surface": 11810000, - "canton": null, - "numero_insee": "71050" - } - }, - { - "pk": 11377, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOUZERON", - "center": "POINT (782146.5899914780166000 2212926.7735096039250493)", - "surface": 3660000, - "canton": null, - "numero_insee": "71051" - } - }, - { - "pk": 23509, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BOYER", - "center": "POINT (796532.0479313707910478 2180921.9112491034902632)", - "surface": 17040000, - "canton": null, - "numero_insee": "71052" - } - }, - { - "pk": 30222, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRAGNY-SUR-SAONE", - "center": "POINT (805131.9542495566420257 2216926.3593111382797360)", - "surface": 14810000, - "canton": null, - "numero_insee": "71054" - } - }, - { - "pk": 22046, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRANDON", - "center": "POINT (772051.9818797409534454 2152588.0921773011796176)", - "surface": 10170000, - "canton": null, - "numero_insee": "71055" - } - }, - { - "pk": 17749, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRANGES", - "center": "POINT (816293.1125589977018535 2187496.4930415037088096)", - "surface": 24710000, - "canton": null, - "numero_insee": "71056" - } - }, - { - "pk": 8200, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRAY", - "center": "POINT (781814.1103783843573183 2169786.5691035958006978)", - "surface": 9910000, - "canton": null, - "numero_insee": "71057" - } - }, - { - "pk": 32491, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRESSE-SUR-GROSNE", - "center": "POINT (783128.9841146654216573 2179906.6738853398710489)", - "surface": 10060000, - "canton": null, - "numero_insee": "71058" - } - }, - { - "pk": 15243, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LE BREUIL", - "center": "POINT (764627.5555894467979670 2201667.9032148220576346)", - "surface": 28890000, - "canton": null, - "numero_insee": "71059" - } - }, - { - "pk": 16389, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRIANT", - "center": "POINT (739678.0441870141075924 2146106.9398084138520062)", - "surface": 13570000, - "canton": null, - "numero_insee": "71060" - } - }, - { - "pk": 13694, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRIENNE", - "center": "POINT (805978.9582699314923957 2176398.6253835489042103)", - "surface": 5650000, - "canton": null, - "numero_insee": "71061" - } - }, - { - "pk": 18733, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRION", - "center": "POINT (745000.7253026043763384 2214612.0040506380610168)", - "surface": 16690000, - "canton": null, - "numero_insee": "71062" - } - }, - { - "pk": 20181, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BRUAILLES", - "center": "POINT (823750.4473735791398212 2181555.1041095335967839)", - "surface": 22480000, - "canton": null, - "numero_insee": "71064" - } - }, - { - "pk": 35090, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BUFFIERES", - "center": "POINT (769076.2380084958858788 2161170.4077972234226763)", - "surface": 12180000, - "canton": null, - "numero_insee": "71065" - } - }, - { - "pk": 10251, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BURGY", - "center": "POINT (791457.7898771309992298 2165665.1725795934908092)", - "surface": 2870000, - "canton": null, - "numero_insee": "71066" - } - }, - { - "pk": 9277, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BURNAND", - "center": "POINT (775917.2287879711948335 2180545.7621553367935121)", - "surface": 6480000, - "canton": null, - "numero_insee": "71067" - } - }, - { - "pk": 29905, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BURZY", - "center": "POINT (772221.9394823500188068 2179613.4646501899696887)", - "surface": 5320000, - "canton": null, - "numero_insee": "71068" - } - }, - { - "pk": 36641, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BUSSIERES", - "center": "POINT (782676.0846085520461202 2150877.0890575079247355)", - "surface": 4040000, - "canton": null, - "numero_insee": "71069" - } - }, - { - "pk": 16108, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "BUXY", - "center": "POINT (781615.9894825585652143 2193005.1698631513863802)", - "surface": 11880000, - "canton": null, - "numero_insee": "71070" - } - }, - { - "pk": 16438, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CERON", - "center": "POINT (723285.6991226318059489 2143465.4527695635333657)", - "surface": 23410000, - "canton": null, - "numero_insee": "71071" - } - }, - { - "pk": 31696, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CERSOT", - "center": "POINT (775519.6884691383456811 2191952.2982157575897872)", - "surface": 6030000, - "canton": null, - "numero_insee": "71072" - } - }, - { - "pk": 30068, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAGNY", - "center": "POINT (785642.4768003404606134 2213757.2918505538254976)", - "surface": 18800000, - "canton": null, - "numero_insee": "71073" - } - }, - { - "pk": 10420, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAINTRE", - "center": "POINT (787550.9568107400555164 2142611.2146731484681368)", - "surface": 3320000, - "canton": null, - "numero_insee": "71074" - } - }, - { - "pk": 31039, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHALMOUX", - "center": "POINT (716085.3910293179797009 2178135.2009653011336923)", - "surface": 38670000, - "canton": null, - "numero_insee": "71075" - } - }, - { - "pk": 12419, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHALON-SUR-SAONE", - "center": "POINT (791949.0145119242370129 2201900.9735351060517132)", - "surface": 15290000, - "canton": null, - "numero_insee": "71076" - } - }, - { - "pk": 28014, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAMBILLY", - "center": "POINT (727987.0508493458619341 2143805.6348562766797841)", - "surface": 13670000, - "canton": null, - "numero_insee": "71077" - } - }, - { - "pk": 21579, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAMILLY", - "center": "POINT (778668.6283558807335794 2209994.6284012789838016)", - "surface": 4680000, - "canton": null, - "numero_insee": "71078" - } - }, - { - "pk": 3462, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAMPAGNAT", - "center": "POINT (832763.9641082911984995 2169221.4140629414469004)", - "surface": 13250000, - "canton": null, - "numero_insee": "71079" - } - }, - { - "pk": 6719, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAMPFORGEUIL", - "center": "POINT (789823.4340062059927732 2204685.2229345808736980)", - "surface": 7210000, - "canton": null, - "numero_insee": "71081" - } - }, - { - "pk": 16719, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAMPLECY", - "center": "POINT (745228.7064671469852328 2164270.3084042752161622)", - "surface": 22840000, - "canton": null, - "numero_insee": "71082" - } - }, - { - "pk": 33034, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHANES", - "center": "POINT (786662.1684973104856908 2141202.3609980442561209)", - "surface": 2290000, - "canton": null, - "numero_insee": "71084" - } - }, - { - "pk": 27989, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHANGE", - "center": "POINT (774404.7580256555229425 2217064.2929943501949310)", - "surface": 6550000, - "canton": null, - "numero_insee": "71085" - } - }, - { - "pk": 9568, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAPAIZE", - "center": "POINT (783868.8359871031716466 2175308.9510159566998482)", - "surface": 13720000, - "canton": null, - "numero_insee": "71087" - } - }, - { - "pk": 3656, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-AU-MANS", - "center": "POINT (725559.0376557006966323 2182219.0925788097083569)", - "surface": 27620000, - "canton": null, - "numero_insee": "71088" - } - }, - { - "pk": 19047, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-DE-BRAGNY", - "center": "POINT (785506.9918042714707553 2182729.4191394424997270)", - "surface": 15800000, - "canton": null, - "numero_insee": "71089" - } - }, - { - "pk": 29272, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-DE-GUINCHAY", - "center": "POINT (786988.0474226309452206 2138202.4228544654324651)", - "surface": 12640000, - "canton": null, - "numero_insee": "71090" - } - }, - { - "pk": 3540, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-DU-MONT-DE-FRANCE", - "center": "POINT (769522.6269078613258898 2155769.3965356061235070)", - "surface": 9140000, - "canton": null, - "numero_insee": "71091" - } - }, - { - "pk": 22487, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-SAINT-SAUVEUR", - "center": "POINT (823212.7659447373589501 2209274.4643377214670181)", - "surface": 27490000, - "canton": null, - "numero_insee": "71093" - } - }, - { - "pk": 34113, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-SOUS-BRANCION", - "center": "POINT (787768.5634535688441247 2175742.5902420012280345)", - "surface": 10040000, - "canton": null, - "numero_insee": "71094" - } - }, - { - "pk": 20860, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-SOUS-DUN", - "center": "POINT (751221.6319406006950885 2142201.5031177611090243)", - "surface": 8470000, - "canton": null, - "numero_insee": "71095" - } - }, - { - "pk": 23886, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-SOUS-UCHON", - "center": "POINT (745377.5671968837268651 2205607.5446779588237405)", - "surface": 16630000, - "canton": null, - "numero_insee": "71096" - } - }, - { - "pk": 3746, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAPELLE-THECLE", - "center": "POINT (811982.0817988034104928 2176650.1495097614824772)", - "surface": 16610000, - "canton": null, - "numero_insee": "71097" - } - }, - { - "pk": 20365, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHARBONNAT", - "center": "POINT (735623.4759346903301775 2199219.2170044933445752)", - "surface": 22240000, - "canton": null, - "numero_insee": "71098" - } - }, - { - "pk": 14297, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHARBONNIERES", - "center": "POINT (791829.8295596138341352 2157260.8724781945347786)", - "surface": 4190000, - "canton": null, - "numero_insee": "71099" - } - }, - { - "pk": 6485, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHARDONNAY", - "center": "POINT (792716.1084137486759573 2170680.3444566922262311)", - "surface": 6380000, - "canton": null, - "numero_insee": "71100" - } - }, - { - "pk": 4272, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHARETTE-VARENNES", - "center": "POINT (817858.0750403570709750 2215133.6379047790542245)", - "surface": 16380000, - "canton": null, - "numero_insee": "71101" - } - }, - { - "pk": 28889, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHARMEE", - "center": "POINT (787911.5854058235418051 2194159.8575699212960899)", - "surface": 14190000, - "canton": null, - "numero_insee": "71102" - } - }, - { - "pk": 24605, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHARNAY-LES-CHALON", - "center": "POINT (809121.3554695429047570 2218561.8375179097056389)", - "surface": 9190000, - "canton": null, - "numero_insee": "71104" - } - }, - { - "pk": 34664, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHARNAY-LES-MACON", - "center": "POINT (788707.5232572925742716 2147825.7808842239901423)", - "surface": 12270000, - "canton": null, - "numero_insee": "71105" - } - }, - { - "pk": 22167, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAROLLES", - "center": "POINT (749246.4387941251043230 2162602.9751213365234435)", - "surface": 19960000, - "canton": null, - "numero_insee": "71106" - } - }, - { - "pk": 22175, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHARRECEY", - "center": "POINT (777796.9526944365352392 2206584.2891329363919795)", - "surface": 5520000, - "canton": null, - "numero_insee": "71107" - } - }, - { - "pk": 10538, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHASSELAS", - "center": "POINT (783528.8419716396601871 2144778.8739224914461374)", - "surface": 2610000, - "canton": null, - "numero_insee": "71108" - } - }, - { - "pk": 33169, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHASSEY-LE-CAMP", - "center": "POINT (780249.3822408267296851 2212410.1590622030198574)", - "surface": 8580000, - "canton": null, - "numero_insee": "71109" - } - }, - { - "pk": 26503, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHASSIGNY-SOUS-DUN", - "center": "POINT (750745.9112246455624700 2139294.8313402854837477)", - "surface": 13260000, - "canton": null, - "numero_insee": "71110" - } - }, - { - "pk": 14849, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHASSY", - "center": "POINT (736009.0350709618069232 2177403.5677733593620360)", - "surface": 13410000, - "canton": null, - "numero_insee": "71111" - } - }, - { - "pk": 4108, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHATEAU", - "center": "POINT (773386.5776998436776921 2160406.4387917853891850)", - "surface": 14130000, - "canton": null, - "numero_insee": "71112" - } - }, - { - "pk": 26623, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHATEAUNEUF", - "center": "POINT (748369.4518393245525658 2136271.8924982640892267)", - "surface": 1340000, - "canton": null, - "numero_insee": "71113" - } - }, - { - "pk": 28887, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHATEL-MORON", - "center": "POINT (775538.6832565832883120 2201460.6559651824645698)", - "surface": 6560000, - "canton": null, - "numero_insee": "71115" - } - }, - { - "pk": 33598, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHATENAY", - "center": "POINT (757599.6857122678775340 2145458.6766612837091088)", - "surface": 8290000, - "canton": null, - "numero_insee": "71116" - } - }, - { - "pk": 18448, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHATENOY-EN-BRESSE", - "center": "POINT (796648.4338612917345017 2202441.5500874500721693)", - "surface": 6620000, - "canton": null, - "numero_insee": "71117" - } - }, - { - "pk": 7576, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHATENOY-LE-ROYAL", - "center": "POINT (788447.9720287912059575 2201670.9034267216920853)", - "surface": 12460000, - "canton": null, - "numero_insee": "71118" - } - }, - { - "pk": 36463, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAUDENAY", - "center": "POINT (787227.4854283626191318 2215672.4368521282449365)", - "surface": 8170000, - "canton": null, - "numero_insee": "71119" - } - }, - { - "pk": 15176, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHAUFFAILLES", - "center": "POINT (754678.1245207478059456 2135925.2091520745307207)", - "surface": 22740000, - "canton": null, - "numero_insee": "71120" - } - }, - { - "pk": 28315, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CHAUX", - "center": "POINT (823935.6014330937759951 2206678.4314598864875734)", - "surface": 11010000, - "canton": null, - "numero_insee": "71121" - } - }, - { - "pk": 27795, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHEILLY-LES-MARANGES", - "center": "POINT (777442.9357368913479149 2212886.6416017566807568)", - "surface": 7010000, - "canton": null, - "numero_insee": "71122" - } - }, - { - "pk": 4889, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHENAY-LE-CHATEL", - "center": "POINT (723534.2852735834894702 2137762.4079956947825849)", - "surface": 32020000, - "canton": null, - "numero_insee": "71123" - } - }, - { - "pk": 33954, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHENOVES", - "center": "POINT (780859.7588495739037171 2187794.2050803382880986)", - "surface": 10510000, - "canton": null, - "numero_insee": "71124" - } - }, - { - "pk": 12288, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHERIZET", - "center": "POINT (771095.1994708421407267 2170896.2114403923042119)", - "surface": 2860000, - "canton": null, - "numero_insee": "71125" - } - }, - { - "pk": 13492, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHEVAGNY-LES-CHEVRIERES", - "center": "POINT (787377.3995124298380688 2151217.4827894102782011)", - "surface": 3800000, - "canton": null, - "numero_insee": "71126" - } - }, - { - "pk": 26107, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHIDDES", - "center": "POINT (767149.1008075677091256 2164156.6503526438027620)", - "surface": 7540000, - "canton": null, - "numero_insee": "71128" - } - }, - { - "pk": 17406, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHISSEY-EN-MORVAN", - "center": "POINT (742504.9087663377868012 2237409.9147893949411809)", - "surface": 29900000, - "canton": null, - "numero_insee": "71129" - } - }, - { - "pk": 10508, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CHISSEY-LES-MACON", - "center": "POINT (784699.3775944813387468 2171812.9569489890709519)", - "surface": 15440000, - "canton": null, - "numero_insee": "71130" - } - }, - { - "pk": 30825, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CIEL", - "center": "POINT (806879.4931797741446644 2211536.7139390460215509)", - "surface": 17230000, - "canton": null, - "numero_insee": "71131" - } - }, - { - "pk": 23051, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CIRY-LE-NOBLE", - "center": "POINT (750205.9790422117803246 2179225.7769837295636535)", - "surface": 33070000, - "canton": null, - "numero_insee": "71132" - } - }, - { - "pk": 23148, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CLAYETTE", - "center": "POINT (752097.6820302535779774 2145111.5752596640959382)", - "surface": 3120000, - "canton": null, - "numero_insee": "71133" - } - }, - { - "pk": 28979, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CLERMAIN", - "center": "POINT (773339.3999794622650370 2154200.5011280891485512)", - "surface": 5840000, - "canton": null, - "numero_insee": "71134" - } - }, - { - "pk": 10877, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CLESSE", - "center": "POINT (791000.9700045310892165 2160556.7381478790193796)", - "surface": 10050000, - "canton": null, - "numero_insee": "71135" - } - }, - { - "pk": 28210, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CLESSY", - "center": "POINT (734033.7862102299695835 2174284.0632259524427354)", - "surface": 16910000, - "canton": null, - "numero_insee": "71136" - } - }, - { - "pk": 24748, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CLUX", - "center": "POINT (817701.4483797227730975 2221737.8891074117273092)", - "surface": 7960000, - "canton": null, - "numero_insee": "71138" - } - }, - { - "pk": 34017, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "COLLONGE-EN-CHAROLLAIS", - "center": "POINT (767974.2153039335971698 2184781.8003479046747088)", - "surface": 12130000, - "canton": null, - "numero_insee": "71139" - } - }, - { - "pk": 8776, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "COLLONGE-LA-MADELEINE", - "center": "POINT (766591.0436411991249770 2217898.4429290345869958)", - "surface": 5310000, - "canton": null, - "numero_insee": "71140" - } - }, - { - "pk": 34073, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "COLOMBIER-EN-BRIONNAIS", - "center": "POINT (753643.6427418126258999 2151630.5757328048348427)", - "surface": 13380000, - "canton": null, - "numero_insee": "71141" - } - }, - { - "pk": 24317, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA COMELLE", - "center": "POINT (735827.6080350027186796 2210530.6180195580236614)", - "surface": 22730000, - "canton": null, - "numero_insee": "71142" - } - }, - { - "pk": 22308, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CONDAL", - "center": "POINT (826177.4668090509949252 2166963.0243236985988915)", - "surface": 16600000, - "canton": null, - "numero_insee": "71143" - } - }, - { - "pk": 25712, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CORDESSE", - "center": "POINT (751684.2043725956464186 2228980.9176841741427779)", - "surface": 10530000, - "canton": null, - "numero_insee": "71144" - } - }, - { - "pk": 6609, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CORMATIN", - "center": "POINT (780883.4946091132005677 2173281.7163341157138348)", - "surface": 9160000, - "canton": null, - "numero_insee": "71145" - } - }, - { - "pk": 35515, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CORTAMBERT", - "center": "POINT (781245.2187288694549352 2166078.4408707399852574)", - "surface": 16000000, - "canton": null, - "numero_insee": "71146" - } - }, - { - "pk": 22737, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CORTEVAIX", - "center": "POINT (776787.8643419810105115 2172345.9857116369530559)", - "surface": 10430000, - "canton": null, - "numero_insee": "71147" - } - }, - { - "pk": 30169, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "COUBLANC", - "center": "POINT (749507.8348200066247955 2131877.5731836650520563)", - "surface": 8790000, - "canton": null, - "numero_insee": "71148" - } - }, - { - "pk": 18696, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "COUCHES", - "center": "POINT (769760.8360290525015444 2210018.7505378955975175)", - "surface": 19920000, - "canton": null, - "numero_insee": "71149" - } - }, - { - "pk": 30510, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CRECHES-SUR-SAONE", - "center": "POINT (788867.4178484202129766 2140820.8240115740336478)", - "surface": 9420000, - "canton": null, - "numero_insee": "71150" - } - }, - { - "pk": 7170, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CREOT", - "center": "POINT (773217.4828636327292770 2215452.8122628787532449)", - "surface": 2150000, - "canton": null, - "numero_insee": "71151" - } - }, - { - "pk": 3382, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CRESSY-SUR-SOMME", - "center": "POINT (716985.1618248295271769 2190053.1982704000547528)", - "surface": 28140000, - "canton": null, - "numero_insee": "71152" - } - }, - { - "pk": 19496, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LE CREUSOT", - "center": "POINT (759413.2413882344262674 2202824.5164479981176555)", - "surface": 18060000, - "canton": null, - "numero_insee": "71153" - } - }, - { - "pk": 25179, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CRISSEY", - "center": "POINT (794324.3971371984807774 2205023.9242220437154174)", - "surface": 11210000, - "canton": null, - "numero_insee": "71154" - } - }, - { - "pk": 23447, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CRONAT", - "center": "POINT (705057.8988048395840451 2192053.8864425388164818)", - "surface": 60700000, - "canton": null, - "numero_insee": "71155" - } - }, - { - "pk": 9189, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CUISERY", - "center": "POINT (803677.1045525847002864 2176378.9435747317038476)", - "surface": 11440000, - "canton": null, - "numero_insee": "71158" - } - }, - { - "pk": 24793, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CULLES-LES-ROCHES", - "center": "POINT (777177.2977606831118464 2185360.7009803932160139)", - "surface": 8880000, - "canton": null, - "numero_insee": "71159" - } - }, - { - "pk": 24837, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CURBIGNY", - "center": "POINT (752476.7214336699107662 2147617.0522791184484959)", - "surface": 9620000, - "canton": null, - "numero_insee": "71160" - } - }, - { - "pk": 26525, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CURDIN", - "center": "POINT (727193.4601239081239328 2178329.5605752314440906)", - "surface": 7950000, - "canton": null, - "numero_insee": "71161" - } - }, - { - "pk": 17177, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CURGY", - "center": "POINT (755539.0833174644503742 2222908.6093607703223825)", - "surface": 31740000, - "canton": null, - "numero_insee": "71162" - } - }, - { - "pk": 32647, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CURTIL-SOUS-BUFFIERES", - "center": "POINT (768301.1717139466200024 2158161.1296938718296587)", - "surface": 5260000, - "canton": null, - "numero_insee": "71163" - } - }, - { - "pk": 32743, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CURTIL-SOUS-BURNAND", - "center": "POINT (775734.9919887870782986 2178442.3685561246238649)", - "surface": 8390000, - "canton": null, - "numero_insee": "71164" - } - }, - { - "pk": 14999, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CUSSY-EN-MORVAN", - "center": "POINT (738629.1752989779924974 2234174.3008555788546801)", - "surface": 35030000, - "canton": null, - "numero_insee": "71165" - } - }, - { - "pk": 19259, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "CUZY", - "center": "POINT (729437.2931079197442159 2196964.7693059910088778)", - "surface": 18020000, - "canton": null, - "numero_insee": "71166" - } - }, - { - "pk": 24607, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DAMEREY", - "center": "POINT (802612.9351627858122811 2207196.5582716129720211)", - "surface": 11690000, - "canton": null, - "numero_insee": "71167" - } - }, - { - "pk": 3486, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DAMPIERRE-EN-BRESSE", - "center": "POINT (818628.0238080080598593 2207033.3208318077959120)", - "surface": 11070000, - "canton": null, - "numero_insee": "71168" - } - }, - { - "pk": 10667, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DAVAYE", - "center": "POINT (785706.7492475204635412 2147599.9852876025252044)", - "surface": 4160000, - "canton": null, - "numero_insee": "71169" - } - }, - { - "pk": 20511, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DEMIGNY", - "center": "POINT (791230.5874615643406287 2215706.6209189207293093)", - "surface": 29620000, - "canton": null, - "numero_insee": "71170" - } - }, - { - "pk": 36912, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DENNEVY", - "center": "POINT (775867.2987197871552780 2209870.6476285485550761)", - "surface": 4600000, - "canton": null, - "numero_insee": "71171" - } - }, - { - "pk": 3564, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DETTEY", - "center": "POINT (741238.9473783618304878 2197965.8300768309272826)", - "surface": 22460000, - "canton": null, - "numero_insee": "71172" - } - }, - { - "pk": 4878, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DEVROUZE", - "center": "POINT (816089.3804474045755342 2199605.2322851466014981)", - "surface": 14550000, - "canton": null, - "numero_insee": "71173" - } - }, - { - "pk": 24398, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DEZIZE-LES-MARANGES", - "center": "POINT (776813.4453377689933404 2216284.1586357392370701)", - "surface": 5080000, - "canton": null, - "numero_insee": "71174" - } - }, - { - "pk": 3663, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DICONNE", - "center": "POINT (812371.9055011679884046 2201274.8809906626120210)", - "surface": 16070000, - "canton": null, - "numero_insee": "71175" - } - }, - { - "pk": 37751, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DIGOIN", - "center": "POINT (729593.0538234463892877 2166839.8172577619552612)", - "surface": 35130000, - "canton": null, - "numero_insee": "71176" - } - }, - { - "pk": 17569, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DOMMARTIN-LES-CUISEAUX", - "center": "POINT (826544.3544859313406050 2170869.6210636463947594)", - "surface": 19090000, - "canton": null, - "numero_insee": "71177" - } - }, - { - "pk": 14627, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DOMPIERRE-LES-ORMES", - "center": "POINT (764944.4290891510900110 2152727.6997656929306686)", - "surface": 30300000, - "canton": null, - "numero_insee": "71178" - } - }, - { - "pk": 3578, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DOMPIERRE-SOUS-SANVIGNES", - "center": "POINT (744438.4195072620641440 2186583.1719591096043587)", - "surface": 13630000, - "canton": null, - "numero_insee": "71179" - } - }, - { - "pk": 30512, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DONZY-LE-NATIONAL", - "center": "POINT (771159.1848226084839553 2163390.1176022356376052)", - "surface": 10390000, - "canton": null, - "numero_insee": "71180" - } - }, - { - "pk": 27908, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DONZY-LE-PERTUIS", - "center": "POINT (782867.8710431975778192 2163590.0682942885905504)", - "surface": 6080000, - "canton": null, - "numero_insee": "71181" - } - }, - { - "pk": 24658, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DRACY-LES-COUCHES", - "center": "POINT (769837.8802266980055720 2212721.7057419684715569)", - "surface": 8280000, - "canton": null, - "numero_insee": "71183" - } - }, - { - "pk": 26437, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "DYO", - "center": "POINT (749625.8712134963134304 2153297.9104050574824214)", - "surface": 15720000, - "canton": null, - "numero_insee": "71185" - } - }, - { - "pk": 28883, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ECUELLES", - "center": "POINT (808005.0954477734630927 2220353.8117816457524896)", - "surface": 9980000, - "canton": null, - "numero_insee": "71186" - } - }, - { - "pk": 27783, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "EPERTULLY", - "center": "POINT (772290.3326902349945158 2218547.5324698369950056)", - "surface": 3330000, - "canton": null, - "numero_insee": "71188" - } - }, - { - "pk": 6486, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "EPERVANS", - "center": "POINT (795993.2037357565714046 2197131.3884399244561791)", - "surface": 12570000, - "canton": null, - "numero_insee": "71189" - } - }, - { - "pk": 21802, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "EPINAC", - "center": "POINT (765942.8218734716065228 2223497.6452811947092414)", - "surface": 25950000, - "canton": null, - "numero_insee": "71190" - } - }, - { - "pk": 16282, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ESSERTENNE", - "center": "POINT (768215.0316230219323188 2203500.0184459555894136)", - "surface": 12840000, - "canton": null, - "numero_insee": "71191" - } - }, - { - "pk": 20758, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ETANG-SUR-ARROUX", - "center": "POINT (740451.6104917700868100 2208167.8769190050661564)", - "surface": 34560000, - "canton": null, - "numero_insee": "71192" - } - }, - { - "pk": 17285, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ETRIGNY", - "center": "POINT (788037.1906972834840417 2179448.1311980648897588)", - "surface": 19270000, - "canton": null, - "numero_insee": "71193" - } - }, - { - "pk": 16710, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FARGES-LES-CHALON", - "center": "POINT (788305.1677381463814527 2206673.9708160450682044)", - "surface": 3970000, - "canton": null, - "numero_insee": "71194" - } - }, - { - "pk": 35030, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FARGES-LES-MACON", - "center": "POINT (797516.5764562409603968 2171121.7074077106080949)", - "surface": 5780000, - "canton": null, - "numero_insee": "71195" - } - }, - { - "pk": 23551, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FLACEY-EN-BRESSE", - "center": "POINT (833157.9903851586859673 2181635.7138213347643614)", - "surface": 13660000, - "canton": null, - "numero_insee": "71198" - } - }, - { - "pk": 32523, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FLAGY", - "center": "POINT (776621.8450824238825589 2168341.0379935018718243)", - "surface": 8420000, - "canton": null, - "numero_insee": "71199" - } - }, - { - "pk": 8872, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FLEURY-LA-MONTAGNE", - "center": "POINT (737972.6682871391531080 2134782.2210645754821599)", - "surface": 8810000, - "canton": null, - "numero_insee": "71200" - } - }, - { - "pk": 24999, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FLEY", - "center": "POINT (776047.3987573803169653 2188754.0224908106029034)", - "surface": 8530000, - "canton": null, - "numero_insee": "71201" - } - }, - { - "pk": 18688, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FONTAINES", - "center": "POINT (786287.3699987276922911 2208558.3672829912975430)", - "surface": 24900000, - "canton": null, - "numero_insee": "71202" - } - }, - { - "pk": 7026, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FONTENAY", - "center": "POINT (750719.5603313751053065 2165918.4355692323297262)", - "surface": 2500000, - "canton": null, - "numero_insee": "71203" - } - }, - { - "pk": 14347, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FRAGNES", - "center": "POINT (791609.4593672420596704 2206502.0175111475400627)", - "surface": 3890000, - "canton": null, - "numero_insee": "71204" - } - }, - { - "pk": 36567, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FRANGY-EN-BRESSE", - "center": "POINT (828937.2080922026652843 2195311.4678743346594274)", - "surface": 23750000, - "canton": null, - "numero_insee": "71205" - } - }, - { - "pk": 18925, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA FRETTE", - "center": "POINT (807599.0127140891272575 2185920.7980056358501315)", - "surface": 11250000, - "canton": null, - "numero_insee": "71206" - } - }, - { - "pk": 9676, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FRETTERANS", - "center": "POINT (824640.2073515251977369 2217894.0125227482058108)", - "surface": 10450000, - "canton": null, - "numero_insee": "71207" - } - }, - { - "pk": 36735, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FRONTENARD", - "center": "POINT (815258.6260919605847448 2214811.1305774226784706)", - "surface": 12380000, - "canton": null, - "numero_insee": "71208" - } - }, - { - "pk": 34758, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FUISSE", - "center": "POINT (785629.7302295920671895 2144896.8936529085040092)", - "surface": 4900000, - "canton": null, - "numero_insee": "71210" - } - }, - { - "pk": 5055, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GENELARD", - "center": "POINT (746619.2625949407229200 2177293.5990233393386006)", - "surface": 22260000, - "canton": null, - "numero_insee": "71212" - } - }, - { - "pk": 16463, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA GENETE", - "center": "POINT (807986.5620525958947837 2175715.1788905556313694)", - "surface": 11670000, - "canton": null, - "numero_insee": "71213" - } - }, - { - "pk": 34234, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GENOUILLY", - "center": "POINT (770766.2147346572019160 2186006.6433733492158353)", - "surface": 10870000, - "canton": null, - "numero_insee": "71214" - } - }, - { - "pk": 3670, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GERGY", - "center": "POINT (796967.5055026166373864 2211952.4016484241001308)", - "surface": 39210000, - "canton": null, - "numero_insee": "71215" - } - }, - { - "pk": 9796, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GERMAGNY", - "center": "POINT (772948.3443926448235288 2188327.2477950793690979)", - "surface": 3510000, - "canton": null, - "numero_insee": "71216" - } - }, - { - "pk": 9132, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GERMOLLES-SUR-GROSNE", - "center": "POINT (774023.5198298380710185 2144397.5245195520110428)", - "surface": 7160000, - "canton": null, - "numero_insee": "71217" - } - }, - { - "pk": 35135, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GIBLES", - "center": "POINT (757273.8753967345692217 2148458.6036764811724424)", - "surface": 19590000, - "canton": null, - "numero_insee": "71218" - } - }, - { - "pk": 11677, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GIGNY-SUR-SAONE", - "center": "POINT (799081.9603645873721689 2187049.0268708118237555)", - "surface": 14500000, - "canton": null, - "numero_insee": "71219" - } - }, - { - "pk": 19735, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GILLY-SUR-LOIRE", - "center": "POINT (711625.0534949264256284 2172992.8986494927667081)", - "surface": 22670000, - "canton": null, - "numero_insee": "71220" - } - }, - { - "pk": 17582, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GIVRY", - "center": "POINT (784563.6983724900055677 2199435.8514105137437582)", - "surface": 26180000, - "canton": null, - "numero_insee": "71221" - } - }, - { - "pk": 21754, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA GRANDE-VERRIERE", - "center": "POINT (737245.4175775864860043 2220350.9713417398743331)", - "surface": 46500000, - "canton": null, - "numero_insee": "71223" - } - }, - { - "pk": 36068, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GRANGES", - "center": "POINT (784495.2252323358552530 2195732.0764809460379183)", - "surface": 10900000, - "canton": null, - "numero_insee": "71225" - } - }, - { - "pk": 26144, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GREVILLY", - "center": "POINT (790410.8266943980706856 2171061.0102025726810098)", - "surface": 2640000, - "canton": null, - "numero_insee": "71226" - } - }, - { - "pk": 23506, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GRURY", - "center": "POINT (720621.9931834907038137 2186080.5840769810602069)", - "surface": 45890000, - "canton": null, - "numero_insee": "71227" - } - }, - { - "pk": 22511, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GUERFAND", - "center": "POINT (805463.9078879605513066 2201516.0467537697404623)", - "surface": 6400000, - "canton": null, - "numero_insee": "71228" - } - }, - { - "pk": 5536, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LES GUERREAUX", - "center": "POINT (721639.9224314179737121 2172277.1499730488285422)", - "surface": 20370000, - "canton": null, - "numero_insee": "71229" - } - }, - { - "pk": 23440, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "GUEUGNON", - "center": "POINT (731195.8237849923316389 2178463.6385841113515198)", - "surface": 28610000, - "canton": null, - "numero_insee": "71230" - } - }, - { - "pk": 32806, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA GUICHE", - "center": "POINT (761377.1177085641538724 2172014.4637488331645727)", - "surface": 27620000, - "canton": null, - "numero_insee": "71231" - } - }, - { - "pk": 29331, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "HAUTEFOND", - "center": "POINT (740952.4311425001360476 2161031.1059181434102356)", - "surface": 13590000, - "canton": null, - "numero_insee": "71232" - } - }, - { - "pk": 37395, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "L'HOPITAL-LE-MERCIER", - "center": "POINT (728582.2472933419048786 2156221.8151183198206127)", - "surface": 16470000, - "canton": null, - "numero_insee": "71233" - } - }, - { - "pk": 34629, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "HUILLY-SUR-SEILLE", - "center": "POINT (808033.5717668281868100 2181921.0208127321675420)", - "surface": 12260000, - "canton": null, - "numero_insee": "71234" - } - }, - { - "pk": 26109, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "HURIGNY", - "center": "POINT (789271.2763241122011095 2152134.4590335781686008)", - "surface": 9190000, - "canton": null, - "numero_insee": "71235" - } - }, - { - "pk": 36640, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "IGE", - "center": "POINT (784309.1569243490230292 2158898.1845755362883210)", - "surface": 14650000, - "canton": null, - "numero_insee": "71236" - } - }, - { - "pk": 16773, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "IGORNAY", - "center": "POINT (755074.0246338287834078 2230511.0270322109572589)", - "surface": 21680000, - "canton": null, - "numero_insee": "71237" - } - }, - { - "pk": 37752, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ISSY-L'EVEQUE", - "center": "POINT (727180.5174168404191732 2191641.0284678591415286)", - "surface": 71060000, - "canton": null, - "numero_insee": "71239" - } - }, - { - "pk": 35146, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "JALOGNY", - "center": "POINT (776597.7297363068209961 2159432.9302387624047697)", - "surface": 10140000, - "canton": null, - "numero_insee": "71240" - } - }, - { - "pk": 20483, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "JONCY", - "center": "POINT (769501.8578135108109564 2181692.1145170410163701)", - "surface": 15040000, - "canton": null, - "numero_insee": "71242" - } - }, - { - "pk": 31308, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "JOUVENCON", - "center": "POINT (808060.9632783902343363 2178718.4510998539626598)", - "surface": 6350000, - "canton": null, - "numero_insee": "71244" - } - }, - { - "pk": 24794, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "JUGY", - "center": "POINT (793326.0610486941877753 2181294.8727295268326998)", - "surface": 7760000, - "canton": null, - "numero_insee": "71245" - } - }, - { - "pk": 31936, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "JUIF", - "center": "POINT (816064.6846508970484138 2190797.4080013590864837)", - "surface": 11880000, - "canton": null, - "numero_insee": "71246" - } - }, - { - "pk": 28794, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "JULLY-LES-BUXY", - "center": "POINT (782440.5368707278976217 2190209.7789221829734743)", - "surface": 16710000, - "canton": null, - "numero_insee": "71247" - } - }, - { - "pk": 28749, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LACROST", - "center": "POINT (799162.3590078818378970 2177641.4944598586298525)", - "surface": 10450000, - "canton": null, - "numero_insee": "71248" - } - }, - { - "pk": 5777, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LAIVES", - "center": "POINT (791179.0777391118463129 2186581.1622330597601831)", - "surface": 12660000, - "canton": null, - "numero_insee": "71249" - } - }, - { - "pk": 12214, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LAIZE", - "center": "POINT (789734.0886387961218134 2156542.3509419532492757)", - "surface": 10600000, - "canton": null, - "numero_insee": "71250" - } - }, - { - "pk": 22017, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LAIZY", - "center": "POINT (740602.4172531263902783 2213974.0934996325522661)", - "surface": 31230000, - "canton": null, - "numero_insee": "71251" - } - }, - { - "pk": 36002, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LALHEUE", - "center": "POINT (787879.0080198249779642 2186252.7218067683279514)", - "surface": 6860000, - "canton": null, - "numero_insee": "71252" - } - }, - { - "pk": 27409, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LANS", - "center": "POINT (798176.9810652352171019 2199251.8594828988425434)", - "surface": 8150000, - "canton": null, - "numero_insee": "71253" - } - }, - { - "pk": 6939, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LAYS-SUR-LE-DOUBS", - "center": "POINT (821241.8595623662695289 2217364.4802846489474177)", - "surface": 10450000, - "canton": null, - "numero_insee": "71254" - } - }, - { - "pk": 5142, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LESME", - "center": "POINT (705926.3859657045686617 2184054.3047347320243716)", - "surface": 5230000, - "canton": null, - "numero_insee": "71255" - } - }, - { - "pk": 23550, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LESSARD-EN-BRESSE", - "center": "POINT (809805.8177617155015469 2197049.3061046358197927)", - "surface": 8190000, - "canton": null, - "numero_insee": "71256" - } - }, - { - "pk": 31713, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LESSARD-LE-NATIONAL", - "center": "POINT (791169.8282229449832812 2211102.1904848697595298)", - "surface": 10560000, - "canton": null, - "numero_insee": "71257" - } - }, - { - "pk": 5894, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LEYNES", - "center": "POINT (784342.3174392634537071 2143284.4610686418600380)", - "surface": 4810000, - "canton": null, - "numero_insee": "71258" - } - }, - { - "pk": 21129, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LIGNY-EN-BRIONNAIS", - "center": "POINT (743738.3749853183981031 2139435.4083171249367297)", - "surface": 15990000, - "canton": null, - "numero_insee": "71259" - } - }, - { - "pk": 16461, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LOISY", - "center": "POINT (804945.6339999025221914 2180193.1247950713150203)", - "surface": 14780000, - "canton": null, - "numero_insee": "71261" - } - }, - { - "pk": 22839, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LONGEPIERRE", - "center": "POINT (818226.6825547837652266 2218839.9329347922466695)", - "surface": 12230000, - "canton": null, - "numero_insee": "71262" - } - }, - { - "pk": 16599, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LOUHANS", - "center": "POINT (822113.1666370355524123 2185744.7532760887406766)", - "surface": 22720000, - "canton": null, - "numero_insee": "71263" - } - }, - { - "pk": 9998, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LOURNAND", - "center": "POINT (777549.0380241568200290 2165246.2004478271119297)", - "surface": 11150000, - "canton": null, - "numero_insee": "71264" - } - }, - { - "pk": 24206, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA LOYERE", - "center": "POINT (789998.8060678231995553 2207589.2026078724302351)", - "surface": 5770000, - "canton": null, - "numero_insee": "71265" - } - }, - { - "pk": 14887, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LUCENAY-L'EVEQUE", - "center": "POINT (746042.4651858524885029 2233336.5905102454125881)", - "surface": 25350000, - "canton": null, - "numero_insee": "71266" - } - }, - { - "pk": 37774, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LUGNY", - "center": "POINT (790541.6741519535426050 2167458.9445433141663671)", - "surface": 13930000, - "canton": null, - "numero_insee": "71267" - } - }, - { - "pk": 16963, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LUGNY-LES-CHAROLLES", - "center": "POINT (743476.5995451621711254 2158450.2525895116850734)", - "surface": 16840000, - "canton": null, - "numero_insee": "71268" - } - }, - { - "pk": 14885, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LUX", - "center": "POINT (792788.1115729974117130 2197404.2664131829515100)", - "surface": 6170000, - "canton": null, - "numero_insee": "71269" - } - }, - { - "pk": 17560, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MACON", - "center": "POINT (790611.6593084298074245 2147541.7685244623571634)", - "surface": 27030000, - "canton": null, - "numero_insee": "71270" - } - }, - { - "pk": 12344, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MAILLY", - "center": "POINT (736845.3826987262582406 2137875.4556348999030888)", - "surface": 5490000, - "canton": null, - "numero_insee": "71271" - } - }, - { - "pk": 4916, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MALAY", - "center": "POINT (780053.8179247460793704 2176677.6280469140037894)", - "surface": 12210000, - "canton": null, - "numero_insee": "71272" - } - }, - { - "pk": 15483, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MALTAT", - "center": "POINT (712606.2782520992914215 2187113.5421207249164581)", - "surface": 31430000, - "canton": null, - "numero_insee": "71273" - } - }, - { - "pk": 4348, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MANCEY", - "center": "POINT (792258.5149763085646555 2177382.3360627330839634)", - "surface": 9910000, - "canton": null, - "numero_insee": "71274" - } - }, - { - "pk": 35273, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARCIGNY", - "center": "POINT (731195.6567138349637389 2143132.2519121263176203)", - "surface": 8080000, - "canton": null, - "numero_insee": "71275" - } - }, - { - "pk": 37253, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARCILLY-LA-GUEURCE", - "center": "POINT (751296.6120328156976029 2156915.3438531933352351)", - "surface": 11010000, - "canton": null, - "numero_insee": "71276" - } - }, - { - "pk": 23460, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARCILLY-LES-BUXY", - "center": "POINT (772296.6707877845037729 2194326.8921216106973588)", - "surface": 18960000, - "canton": null, - "numero_insee": "71277" - } - }, - { - "pk": 20514, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARIGNY", - "center": "POINT (763134.5731876767240465 2188944.2177198822610080)", - "surface": 22460000, - "canton": null, - "numero_insee": "71278" - } - }, - { - "pk": 21190, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARIZY", - "center": "POINT (758134.4788180890027434 2176690.9830374978482723)", - "surface": 30720000, - "canton": null, - "numero_insee": "71279" - } - }, - { - "pk": 28304, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARLY-SOUS-ISSY", - "center": "POINT (722062.0320748675148934 2193299.0461253658868372)", - "surface": 21510000, - "canton": null, - "numero_insee": "71280" - } - }, - { - "pk": 5468, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARLY-SUR-ARROUX", - "center": "POINT (737375.2875829320400953 2181518.7659825519658625)", - "surface": 25720000, - "canton": null, - "numero_insee": "71281" - } - }, - { - "pk": 13998, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARMAGNE", - "center": "POINT (755076.6397071953397244 2206690.9307302967645228)", - "surface": 31080000, - "canton": null, - "numero_insee": "71282" - } - }, - { - "pk": 7903, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARNAY", - "center": "POINT (797939.1767255708109587 2191943.5184507025405765)", - "surface": 5070000, - "canton": null, - "numero_insee": "71283" - } - }, - { - "pk": 30678, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARTAILLY-LES-BRANCION", - "center": "POINT (788691.5057894464116544 2173148.1816739691421390)", - "surface": 8840000, - "canton": null, - "numero_insee": "71284" - } - }, - { - "pk": 14939, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARTIGNY-LE-COMTE", - "center": "POINT (753164.5247121052816510 2172645.1586367967538536)", - "surface": 37050000, - "canton": null, - "numero_insee": "71285" - } - }, - { - "pk": 18609, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MARY", - "center": "POINT (765703.0765150375664234 2181159.3040105621330440)", - "surface": 14540000, - "canton": null, - "numero_insee": "71286" - } - }, - { - "pk": 4018, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MASSILLY", - "center": "POINT (779024.6468189673032612 2168261.4444575877860188)", - "surface": 5540000, - "canton": null, - "numero_insee": "71287" - } - }, - { - "pk": 4258, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MASSY", - "center": "POINT (774422.6196377334417775 2168022.0180000755935907)", - "surface": 5030000, - "canton": null, - "numero_insee": "71288" - } - }, - { - "pk": 12898, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MAZILLE", - "center": "POINT (773915.1466911225579679 2157108.0028374437242746)", - "surface": 9530000, - "canton": null, - "numero_insee": "71290" - } - }, - { - "pk": 15401, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MELAY", - "center": "POINT (729366.3220559067558497 2134609.0163824157789350)", - "surface": 36430000, - "canton": null, - "numero_insee": "71291" - } - }, - { - "pk": 24509, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MELLECEY", - "center": "POINT (784625.3369922724086791 2203940.2436692244373262)", - "surface": 14170000, - "canton": null, - "numero_insee": "71292" - } - }, - { - "pk": 18560, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MENETREUIL", - "center": "POINT (813657.7595087180379778 2179667.1217348086647689)", - "surface": 15080000, - "canton": null, - "numero_insee": "71293" - } - }, - { - "pk": 12474, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MERCUREY", - "center": "POINT (782101.1708659920841455 2206520.9274074919521809)", - "surface": 15550000, - "canton": null, - "numero_insee": "71294" - } - }, - { - "pk": 20939, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MERVANS", - "center": "POINT (817258.6273561730049551 2203318.4243702744133770)", - "surface": 28630000, - "canton": null, - "numero_insee": "71295" - } - }, - { - "pk": 15839, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MESVRES", - "center": "POINT (746044.9156958196545020 2209516.5499804378487170)", - "surface": 23460000, - "canton": null, - "numero_insee": "71297" - } - }, - { - "pk": 10296, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MILLY-LAMARTINE", - "center": "POINT (781561.5144278084626421 2152469.0147341880947351)", - "surface": 2850000, - "canton": null, - "numero_insee": "71299" - } - }, - { - "pk": 17958, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LE MIROIR", - "center": "POINT (830105.2474277322180569 2175804.4549316889606416)", - "surface": 18380000, - "canton": null, - "numero_insee": "71300" - } - }, - { - "pk": 21594, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONT", - "center": "POINT (714148.2151394513202831 2182322.4405539650470018)", - "surface": 16230000, - "canton": null, - "numero_insee": "71301" - } - }, - { - "pk": 31599, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTAGNY-LES-BUXY", - "center": "POINT (778321.0567136883037165 2192076.2788650756701827)", - "surface": 5250000, - "canton": null, - "numero_insee": "71302" - } - }, - { - "pk": 34862, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTAGNY-PRES-LOUHANS", - "center": "POINT (825493.5930447420105338 2188375.9735319968312979)", - "surface": 9530000, - "canton": null, - "numero_insee": "71303" - } - }, - { - "pk": 24504, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTAGNY-SUR-GROSNE", - "center": "POINT (769848.4638996095163748 2152769.4885957371443510)", - "surface": 6810000, - "canton": null, - "numero_insee": "71304" - } - }, - { - "pk": 5403, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTBELLET", - "center": "POINT (795153.1067356751300395 2166597.5336105860769749)", - "surface": 19470000, - "canton": null, - "numero_insee": "71305" - } - }, - { - "pk": 26894, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTCEAU-LES-MINES", - "center": "POINT (754333.5345570584759116 2188168.6654382147826254)", - "surface": 16710000, - "canton": null, - "numero_insee": "71306" - } - }, - { - "pk": 15404, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTCEAUX-L'ETOILE", - "center": "POINT (731420.2480318159796298 2152042.1622953484766185)", - "surface": 9770000, - "canton": null, - "numero_insee": "71307" - } - }, - { - "pk": 30863, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTCEAUX-RAGNY", - "center": "POINT (791809.4726498137461022 2183083.4930869638919830)", - "surface": 2520000, - "canton": null, - "numero_insee": "71308" - } - }, - { - "pk": 27210, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTCENIS", - "center": "POINT (756830.7984712887555361 2200500.5520866243168712)", - "surface": 12340000, - "canton": null, - "numero_insee": "71309" - } - }, - { - "pk": 19593, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTCHANIN", - "center": "POINT (763271.6419005446368828 2196351.7900453214533627)", - "surface": 8020000, - "canton": null, - "numero_insee": "71310" - } - }, - { - "pk": 13722, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTCONY", - "center": "POINT (826359.1567149031907320 2192486.9520415063016117)", - "surface": 10660000, - "canton": null, - "numero_insee": "71311" - } - }, - { - "pk": 6639, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTCOY", - "center": "POINT (803049.1851996346376836 2202996.6883206199854612)", - "surface": 9080000, - "canton": null, - "numero_insee": "71312" - } - }, - { - "pk": 20820, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTHELON", - "center": "POINT (743358.6328072553733364 2219402.1006446443498135)", - "surface": 24650000, - "canton": null, - "numero_insee": "71313" - } - }, - { - "pk": 34927, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTJAY", - "center": "POINT (826053.5368979959748685 2204794.9461681554093957)", - "surface": 11080000, - "canton": null, - "numero_insee": "71314" - } - }, - { - "pk": 8049, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONT-LES-SEURRE", - "center": "POINT (812405.9242737763561308 2220691.7174347890540957)", - "surface": 6520000, - "canton": null, - "numero_insee": "71315" - } - }, - { - "pk": 33349, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTMELARD", - "center": "POINT (759853.0136103443801403 2151182.9887727685272694)", - "surface": 22430000, - "canton": null, - "numero_insee": "71316" - } - }, - { - "pk": 4536, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTMORT", - "center": "POINT (734358.1670656302012503 2195004.8474768530577421)", - "surface": 31660000, - "canton": null, - "numero_insee": "71317" - } - }, - { - "pk": 20673, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTPONT-EN-BRESSE", - "center": "POINT (817599.4456409109989181 2175196.9032890959642828)", - "surface": 37970000, - "canton": null, - "numero_insee": "71318" - } - }, - { - "pk": 19863, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONTRET", - "center": "POINT (812361.7427312859799713 2190765.7183384066447616)", - "surface": 14770000, - "canton": null, - "numero_insee": "71319" - } - }, - { - "pk": 6030, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MONT-SAINT-VINCENT", - "center": "POINT (764968.4077438609674573 2185156.5356871900148690)", - "surface": 13620000, - "canton": null, - "numero_insee": "71320" - } - }, - { - "pk": 34018, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MOREY", - "center": "POINT (771734.8423513096058741 2201528.3061695289798081)", - "surface": 13530000, - "canton": null, - "numero_insee": "71321" - } - }, - { - "pk": 19230, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MORLET", - "center": "POINT (764977.8677903257776052 2219285.8802579399198294)", - "surface": 6640000, - "canton": null, - "numero_insee": "71322" - } - }, - { - "pk": 14884, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MORNAY", - "center": "POINT (756902.4487272843252867 2168573.3597958600148559)", - "surface": 20170000, - "canton": null, - "numero_insee": "71323" - } - }, - { - "pk": 3655, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MOROGES", - "center": "POINT (778577.7534802420996130 2197182.8770296010188758)", - "surface": 8680000, - "canton": null, - "numero_insee": "71324" - } - }, - { - "pk": 18195, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MOUTHIER-EN-BRESSE", - "center": "POINT (832000.7665936596458778 2211551.6451908154413104)", - "surface": 30090000, - "canton": null, - "numero_insee": "71326" - } - }, - { - "pk": 11544, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "MUSSY-SOUS-DUN", - "center": "POINT (754048.6617171021644026 2139322.9365745433606207)", - "surface": 8740000, - "canton": null, - "numero_insee": "71327" - } - }, - { - "pk": 4812, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "NANTON", - "center": "POINT (789809.5806385062169284 2182866.2395740831270814)", - "surface": 14180000, - "canton": null, - "numero_insee": "71328" - } - }, - { - "pk": 33903, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "NAVILLY", - "center": "POINT (813729.1968757666181773 2218100.8411525045521557)", - "surface": 9760000, - "canton": null, - "numero_insee": "71329" - } - }, - { - "pk": 19403, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "NEUVY-GRANDCHAMP", - "center": "POINT (721890.0513266243506223 2178184.4522166769020259)", - "surface": 49470000, - "canton": null, - "numero_insee": "71330" - } - }, - { - "pk": 3268, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "NOCHIZE", - "center": "POINT (740480.9494665496749803 2157624.0702973883599043)", - "surface": 11120000, - "canton": null, - "numero_insee": "71331" - } - }, - { - "pk": 8280, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ORMES", - "center": "POINT (801303.3912998185260221 2184766.0087141506373882)", - "surface": 9790000, - "canton": null, - "numero_insee": "71332" - } - }, - { - "pk": 6024, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "OSLON", - "center": "POINT (798964.7818501021247357 2200759.8834699345752597)", - "surface": 4820000, - "canton": null, - "numero_insee": "71333" - } - }, - { - "pk": 15010, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "OUDRY", - "center": "POINT (740112.3324165040394291 2177438.4431901383213699)", - "surface": 20780000, - "canton": null, - "numero_insee": "71334" - } - }, - { - "pk": 7145, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "OUROUX-SOUS-LE-BOIS-SAINTE-MARIE", - "center": "POINT (751829.3846608864841983 2153116.4801996396854520)", - "surface": 4780000, - "canton": null, - "numero_insee": "71335" - } - }, - { - "pk": 14454, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "OUROUX-SUR-SAONE", - "center": "POINT (799715.8000420567113906 2194861.2131018457002938)", - "surface": 22700000, - "canton": null, - "numero_insee": "71336" - } - }, - { - "pk": 29216, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "OZENAY", - "center": "POINT (792190.9153903489932418 2173578.4167533065192401)", - "surface": 13390000, - "canton": null, - "numero_insee": "71338" - } - }, - { - "pk": 15801, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "OZOLLES", - "center": "POINT (755614.6212485269643366 2155250.5748849124647677)", - "surface": 27260000, - "canton": null, - "numero_insee": "71339" - } - }, - { - "pk": 20294, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PALINGES", - "center": "POINT (743448.1765668994048610 2173563.3805188932456076)", - "surface": 36620000, - "canton": null, - "numero_insee": "71340" - } - }, - { - "pk": 33721, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PALLEAU", - "center": "POINT (804989.0855283022392541 2221929.3681212607771158)", - "surface": 10790000, - "canton": null, - "numero_insee": "71341" - } - }, - { - "pk": 5071, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PARAY-LE-MONIAL", - "center": "POINT (736441.9517481336370111 2161793.4797456548549235)", - "surface": 25250000, - "canton": null, - "numero_insee": "71342" - } - }, - { - "pk": 8136, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PARIS-L'HOPITAL", - "center": "POINT (775322.5254240975482389 2215070.4244270329363644)", - "surface": 2760000, - "canton": null, - "numero_insee": "71343" - } - }, - { - "pk": 30987, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PASSY", - "center": "POINT (768570.9987343779066578 2173476.9877464473247528)", - "surface": 4380000, - "canton": null, - "numero_insee": "71344" - } - }, - { - "pk": 35701, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PERONNE", - "center": "POINT (789278.2167744911275804 2163044.2524548014625907)", - "surface": 10580000, - "canton": null, - "numero_insee": "71345" - } - }, - { - "pk": 19675, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PERRECY-LES-FORGES", - "center": "POINT (744678.5821974643040448 2181881.1184438960626721)", - "surface": 33720000, - "canton": null, - "numero_insee": "71346" - } - }, - { - "pk": 6166, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PERREUIL", - "center": "POINT (770105.4318640456767753 2204817.2455150894820690)", - "surface": 7610000, - "canton": null, - "numero_insee": "71347" - } - }, - { - "pk": 25227, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PERRIGNY-SUR-LOIRE", - "center": "POINT (716132.9315035446779802 2172530.6892403992824256)", - "surface": 15310000, - "canton": null, - "numero_insee": "71348" - } - }, - { - "pk": 24697, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PIERRECLOS", - "center": "POINT (779675.3169471296714619 2150651.3075922857969999)", - "surface": 12340000, - "canton": null, - "numero_insee": "71350" - } - }, - { - "pk": 18774, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PIERRE-DE-BRESSE", - "center": "POINT (822177.6995687518501654 2213269.0108716990798712)", - "surface": 28210000, - "canton": null, - "numero_insee": "71351" - } - }, - { - "pk": 6975, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LE PLANOIS", - "center": "POINT (827869.5275884876027703 2203109.0458917012438178)", - "surface": 5040000, - "canton": null, - "numero_insee": "71352" - } - }, - { - "pk": 33392, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PLOTTES", - "center": "POINT (795394.3557045675115660 2173505.6921573788858950)", - "surface": 10050000, - "canton": null, - "numero_insee": "71353" - } - }, - { - "pk": 34798, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PONTOUX", - "center": "POINT (812047.5772468976210803 2215784.4994072867557406)", - "surface": 13970000, - "canton": null, - "numero_insee": "71355" - } - }, - { - "pk": 26338, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "POUILLOUX", - "center": "POINT (754400.8328458203468472 2180262.3515772637911141)", - "surface": 18580000, - "canton": null, - "numero_insee": "71356" - } - }, - { - "pk": 18617, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "POURLANS", - "center": "POINT (820600.2572919816011563 2222163.0482870694249868)", - "surface": 16140000, - "canton": null, - "numero_insee": "71357" - } - }, - { - "pk": 6136, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PRESSY-SOUS-DONDIN", - "center": "POINT (766330.5408775696996599 2166251.5372146586887538)", - "surface": 12370000, - "canton": null, - "numero_insee": "71358" - } - }, - { - "pk": 25355, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PRETY", - "center": "POINT (800791.8757347527425736 2174352.5197490174323320)", - "surface": 12300000, - "canton": null, - "numero_insee": "71359" - } - }, - { - "pk": 12810, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PRISSE", - "center": "POINT (785587.0195388578576967 2149901.0326323839835823)", - "surface": 10900000, - "canton": null, - "numero_insee": "71360" - } - }, - { - "pk": 35939, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PRIZY", - "center": "POINT (744733.7550447238609195 2151855.0444680145010352)", - "surface": 4280000, - "canton": null, - "numero_insee": "71361" - } - }, - { - "pk": 25893, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "PRUZILLY", - "center": "POINT (781946.3008270364953205 2142563.3827947136014700)", - "surface": 4360000, - "canton": null, - "numero_insee": "71362" - } - }, - { - "pk": 13387, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LE PULEY", - "center": "POINT (770443.7943362221121788 2188606.1563620148226619)", - "surface": 5250000, - "canton": null, - "numero_insee": "71363" - } - }, - { - "pk": 29004, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA RACINEUSE", - "center": "POINT (815322.8711303987074643 2207305.2837787577882409)", - "surface": 7130000, - "canton": null, - "numero_insee": "71364" - } - }, - { - "pk": 36745, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "RANCY", - "center": "POINT (810339.6967241056263447 2181440.3095178361982107)", - "surface": 5780000, - "canton": null, - "numero_insee": "71365" - } - }, - { - "pk": 13968, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "RATENELLE", - "center": "POINT (804308.3928457703441381 2172781.1710811406373978)", - "surface": 8100000, - "canton": null, - "numero_insee": "71366" - } - }, - { - "pk": 19448, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "RATTE", - "center": "POINT (827212.0976223218021914 2186388.9533775625750422)", - "surface": 9060000, - "canton": null, - "numero_insee": "71367" - } - }, - { - "pk": 9897, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "RECLESNE", - "center": "POINT (747978.8206392138963565 2229249.6385732819326222)", - "surface": 20890000, - "canton": null, - "numero_insee": "71368" - } - }, - { - "pk": 28643, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "REMIGNY", - "center": "POINT (781829.2761461755726486 2214925.7649281402118504)", - "surface": 2450000, - "canton": null, - "numero_insee": "71369" - } - }, - { - "pk": 4767, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "RIGNY-SUR-ARROUX", - "center": "POINT (728943.2712975492468104 2172639.4159103576093912)", - "surface": 48030000, - "canton": null, - "numero_insee": "71370" - } - }, - { - "pk": 17563, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA ROCHE-VINEUSE", - "center": "POINT (785561.3930134668480605 2152903.5068654138594866)", - "surface": 12010000, - "canton": null, - "numero_insee": "71371" - } - }, - { - "pk": 7709, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ROMANECHE-THORINS", - "center": "POINT (785714.2967172143980861 2134988.6422620578669012)", - "surface": 9790000, - "canton": null, - "numero_insee": "71372" - } - }, - { - "pk": 17395, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ROMENAY", - "center": "POINT (810521.9686968356836587 2171833.4290396329015493)", - "surface": 48980000, - "canton": null, - "numero_insee": "71373" - } - }, - { - "pk": 5537, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ROSEY", - "center": "POINT (781590.3700495171360672 2196007.5449673286639154)", - "surface": 4220000, - "canton": null, - "numero_insee": "71374" - } - }, - { - "pk": 23555, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LE ROUSSET", - "center": "POINT (763633.7910154928686097 2177338.3461394072510302)", - "surface": 24660000, - "canton": null, - "numero_insee": "71375" - } - }, - { - "pk": 3766, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ROUSSILLON-EN-MORVAN", - "center": "POINT (734294.7095669186674058 2226030.6906785820610821)", - "surface": 30600000, - "canton": null, - "numero_insee": "71376" - } - }, - { - "pk": 22771, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "ROYER", - "center": "POINT (790570.8207505668979138 2175766.5171149815432727)", - "surface": 5980000, - "canton": null, - "numero_insee": "71377" - } - }, - { - "pk": 10697, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "RULLY", - "center": "POINT (783965.9275248663034290 2210840.5131113505922258)", - "surface": 15710000, - "canton": null, - "numero_insee": "71378" - } - }, - { - "pk": 16227, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAGY", - "center": "POINT (828856.2548569381469861 2181398.6702489228919148)", - "surface": 34320000, - "canton": null, - "numero_insee": "71379" - } - }, - { - "pk": 4403, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAILLENARD", - "center": "POINT (832059.3938063024543226 2193036.2340298411436379)", - "surface": 17740000, - "canton": null, - "numero_insee": "71380" - } - }, - { - "pk": 8022, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAILLY", - "center": "POINT (770679.5196273928740993 2172694.2550475862808526)", - "surface": 9070000, - "canton": null, - "numero_insee": "71381" - } - }, - { - "pk": 5527, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-AGNAN", - "center": "POINT (718963.2153070252388716 2169251.7925207051448524)", - "surface": 25990000, - "canton": null, - "numero_insee": "71382" - } - }, - { - "pk": 26426, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-ALBAIN", - "center": "POINT (794499.5578873315826058 2161087.0642918520607054)", - "surface": 5610000, - "canton": null, - "numero_insee": "71383" - } - }, - { - "pk": 33040, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-AMBREUIL", - "center": "POINT (789850.6930981384357437 2189772.6011689635924995)", - "surface": 18300000, - "canton": null, - "numero_insee": "71384" - } - }, - { - "pk": 30736, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-AMOUR-BELLEVUE", - "center": "POINT (785265.2738796903286129 2140689.9854118959046900)", - "surface": 5170000, - "canton": null, - "numero_insee": "71385" - } - }, - { - "pk": 10728, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-ANDRE-EN-BRESSE", - "center": "POINT (810391.8312200240325183 2187045.6460983320139349)", - "surface": 4860000, - "canton": null, - "numero_insee": "71386" - } - }, - { - "pk": 29749, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-ANDRE-LE-DESERT", - "center": "POINT (768609.3814696281915531 2168973.3456487264484167)", - "surface": 17990000, - "canton": null, - "numero_insee": "71387" - } - }, - { - "pk": 15485, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-AUBIN-EN-CHAROLLAIS", - "center": "POINT (743691.7412013073917478 2168460.9555959082208574)", - "surface": 19740000, - "canton": null, - "numero_insee": "71388" - } - }, - { - "pk": 29089, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-AUBIN-SUR-LOIRE", - "center": "POINT (709204.4507419487927109 2175174.3091312474571168)", - "surface": 10970000, - "canton": null, - "numero_insee": "71389" - } - }, - { - "pk": 17835, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-BERAIN-SOUS-SANVIGNES", - "center": "POINT (749393.0187194314785302 2192430.3489894671365619)", - "surface": 45240000, - "canton": null, - "numero_insee": "71390" - } - }, - { - "pk": 5027, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-BERAIN-SUR-DHEUNE", - "center": "POINT (773712.5197679676348343 2204347.5706440987996757)", - "surface": 12810000, - "canton": null, - "numero_insee": "71391" - } - }, - { - "pk": 33393, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-BOIL", - "center": "POINT (780782.7345971602480859 2185091.1969031281769276)", - "surface": 11740000, - "canton": null, - "numero_insee": "71392" - } - }, - { - "pk": 28561, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-BONNET-DE-CRAY", - "center": "POINT (740971.7754228533012792 2135208.0762980650179088)", - "surface": 22330000, - "canton": null, - "numero_insee": "71393" - } - }, - { - "pk": 17862, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-BONNET-DE-JOUX", - "center": "POINT (760925.2978435662807897 2166305.5800940101034939)", - "surface": 29490000, - "canton": null, - "numero_insee": "71394" - } - }, - { - "pk": 5703, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-BONNET-DE-VIEILLE-VIGNE", - "center": "POINT (748367.4573547418694943 2171803.6357639194466174)", - "surface": 17830000, - "canton": null, - "numero_insee": "71395" - } - }, - { - "pk": 19904, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-BONNET-EN-BRESSE", - "center": "POINT (816597.3306865368504077 2210418.8421551715582609)", - "surface": 17660000, - "canton": null, - "numero_insee": "71396" - } - }, - { - "pk": 17530, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINTE-CECILE", - "center": "POINT (776723.4181215122807771 2156431.3249035924673080)", - "surface": 7230000, - "canton": null, - "numero_insee": "71397" - } - }, - { - "pk": 14380, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-CHRISTOPHE-EN-BRESSE", - "center": "POINT (802697.6407168558798730 2197288.7757552317343652)", - "surface": 20500000, - "canton": null, - "numero_insee": "71398" - } - }, - { - "pk": 5224, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-CLEMENT-SUR-GUYE", - "center": "POINT (772304.1015727896010503 2181716.0024712043814361)", - "surface": 7330000, - "canton": null, - "numero_insee": "71400" - } - }, - { - "pk": 15636, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINTE-CROIX", - "center": "POINT (822386.1784772872924805 2177239.6468815230764449)", - "surface": 21250000, - "canton": null, - "numero_insee": "71401" - } - }, - { - "pk": 6137, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-CYR", - "center": "POINT (796056.4801437197020277 2189725.5219717649742961)", - "surface": 13190000, - "canton": null, - "numero_insee": "71402" - } - }, - { - "pk": 8647, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-DENIS-DE-VAUX", - "center": "POINT (780439.9742491813376546 2201802.7238141004927456)", - "surface": 3720000, - "canton": null, - "numero_insee": "71403" - } - }, - { - "pk": 36001, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-DESERT", - "center": "POINT (781474.0654601812129840 2197908.1916410624980927)", - "surface": 4970000, - "canton": null, - "numero_insee": "71404" - } - }, - { - "pk": 20764, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-DIDIER-EN-BRIONNAIS", - "center": "POINT (737540.5818105353973806 2150292.5481725852005184)", - "surface": 11490000, - "canton": null, - "numero_insee": "71406" - } - }, - { - "pk": 5354, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-DIDIER-SUR-ARROUX", - "center": "POINT (734472.4378483620239422 2205114.4953143573366106)", - "surface": 28080000, - "canton": null, - "numero_insee": "71407" - } - }, - { - "pk": 7413, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-EDMOND", - "center": "POINT (744573.0846242285333574 2135438.8773216260597110)", - "surface": 10270000, - "canton": null, - "numero_insee": "71408" - } - }, - { - "pk": 19313, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-EMILAND", - "center": "POINT (762732.3601867898833007 2212661.1548525807447731)", - "surface": 24240000, - "canton": null, - "numero_insee": "71409" - } - }, - { - "pk": 19555, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-ETIENNE-EN-BRESSE", - "center": "POINT (808338.0177624701755121 2193133.3770016222260892)", - "surface": 19620000, - "canton": null, - "numero_insee": "71410" - } - }, - { - "pk": 4054, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-EUGENE", - "center": "POINT (743875.8919265391305089 2193884.7162332665175200)", - "surface": 35340000, - "canton": null, - "numero_insee": "71411" - } - }, - { - "pk": 18176, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-EUSEBE", - "center": "POINT (761796.0306921125156805 2193336.6287829373031855)", - "surface": 21320000, - "canton": null, - "numero_insee": "71412" - } - }, - { - "pk": 15856, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-FIRMIN", - "center": "POINT (762076.1459830128587782 2207451.1339263138361275)", - "surface": 15860000, - "canton": null, - "numero_insee": "71413" - } - }, - { - "pk": 29115, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINTE-FOY", - "center": "POINT (738299.0004924276145175 2143492.8747193361632526)", - "surface": 8260000, - "canton": null, - "numero_insee": "71415" - } - }, - { - "pk": 32646, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GENGOUX-DE-SCISSE", - "center": "POINT (786957.5446661843452603 2165226.3936703116632998)", - "surface": 11030000, - "canton": null, - "numero_insee": "71416" - } - }, - { - "pk": 15615, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GENGOUX-LE-NATIONAL", - "center": "POINT (778107.8958623802755028 2181865.5839303787797689)", - "surface": 9450000, - "canton": null, - "numero_insee": "71417" - } - }, - { - "pk": 23494, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GERMAIN-DU-BOIS", - "center": "POINT (822113.8242246331647038 2197354.8289249679073691)", - "surface": 30350000, - "canton": null, - "numero_insee": "71419" - } - }, - { - "pk": 21186, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GERMAIN-DU-PLAIN", - "center": "POINT (802346.0923500093631446 2191580.8383853770792484)", - "surface": 19560000, - "canton": null, - "numero_insee": "71420" - } - }, - { - "pk": 25003, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GERMAIN-EN-BRIONNAIS", - "center": "POINT (747340.1535522898193449 2151376.7637150185182691)", - "surface": 5910000, - "canton": null, - "numero_insee": "71421" - } - }, - { - "pk": 13118, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GERMAIN-LES-BUXY", - "center": "POINT (786234.1602627999382094 2191343.1120217214338481)", - "surface": 13370000, - "canton": null, - "numero_insee": "71422" - } - }, - { - "pk": 19387, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GERVAIS-EN-VALLIERE", - "center": "POINT (799805.6068097271490842 2219483.0230504684150219)", - "surface": 16430000, - "canton": null, - "numero_insee": "71423" - } - }, - { - "pk": 4882, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GERVAIS-SUR-COUCHES", - "center": "POINT (769808.8746725339442492 2216124.3448434965685010)", - "surface": 20550000, - "canton": null, - "numero_insee": "71424" - } - }, - { - "pk": 9402, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-GILLES", - "center": "POINT (777357.3705636356025934 2211184.4650513110682368)", - "surface": 3540000, - "canton": null, - "numero_insee": "71425" - } - }, - { - "pk": 37836, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINTE-HELENE", - "center": "POINT (775469.3312260347884148 2197856.9669029652141035)", - "surface": 14370000, - "canton": null, - "numero_insee": "71426" - } - }, - { - "pk": 10563, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-HURUGE", - "center": "POINT (771436.6543074545916170 2177805.1923780734650791)", - "surface": 4030000, - "canton": null, - "numero_insee": "71427" - } - }, - { - "pk": 34757, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-IGNY-DE-ROCHE", - "center": "POINT (751793.5839653857983649 2133798.7514276313595474)", - "surface": 7940000, - "canton": null, - "numero_insee": "71428" - } - }, - { - "pk": 7293, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-JEAN-DE-VAUX", - "center": "POINT (780025.9978604660136625 2203400.5649965624324977)", - "surface": 2290000, - "canton": null, - "numero_insee": "71430" - } - }, - { - "pk": 20326, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-JULIEN-DE-CIVRY", - "center": "POINT (744913.4929415716324002 2154258.7217601947486401)", - "surface": 21080000, - "canton": null, - "numero_insee": "71433" - } - }, - { - "pk": 28888, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-JULIEN-SUR-DHEUNE", - "center": "POINT (768751.2500091245165095 2199300.9812749503180385)", - "surface": 5420000, - "canton": null, - "numero_insee": "71435" - } - }, - { - "pk": 6204, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LAURENT-D'ANDENAY", - "center": "POINT (766189.2832937837811187 2194575.0946543053723872)", - "surface": 11410000, - "canton": null, - "numero_insee": "71436" - } - }, - { - "pk": 5500, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LAURENT-EN-BRIONNAIS", - "center": "POINT (747912.9294310113182291 2142873.9865821721032262)", - "surface": 12900000, - "canton": null, - "numero_insee": "71437" - } - }, - { - "pk": 23734, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LEGER-DU-BOIS", - "center": "POINT (759208.6905826560687274 2226843.1343320305459201)", - "surface": 21320000, - "canton": null, - "numero_insee": "71438" - } - }, - { - "pk": 35726, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LEGER-LES-PARAY", - "center": "POINT (736602.1416232850169763 2166499.0083746248856187)", - "surface": 13490000, - "canton": null, - "numero_insee": "71439" - } - }, - { - "pk": 4953, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LEGER-SOUS-BEUVRAY", - "center": "POINT (733690.2591818603686988 2214716.0237497682683170)", - "surface": 35040000, - "canton": null, - "numero_insee": "71440" - } - }, - { - "pk": 28654, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LEGER-SOUS-LA-BUSSIERE", - "center": "POINT (771389.7963384473696351 2148078.4059701496735215)", - "surface": 8590000, - "canton": null, - "numero_insee": "71441" - } - }, - { - "pk": 24013, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LEGER-SUR-DHEUNE", - "center": "POINT (775693.6027130201691762 2206766.5194386728107929)", - "surface": 12220000, - "canton": null, - "numero_insee": "71442" - } - }, - { - "pk": 21066, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LOUP-GEANGES", - "center": "POINT (795810.2118584517156705 2218548.1165039059706032)", - "surface": 25880000, - "canton": null, - "numero_insee": "71443" - } - }, - { - "pk": 11406, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-LOUP-DE-VARENNES", - "center": "POINT (792211.5721168656600639 2194596.9234457025304437)", - "surface": 8350000, - "canton": null, - "numero_insee": "71444" - } - }, - { - "pk": 11765, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARCEL", - "center": "POINT (794664.8171182526275516 2200322.7966822772286832)", - "surface": 10120000, - "canton": null, - "numero_insee": "71445" - } - }, - { - "pk": 22572, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARCELIN-DE-CRAY", - "center": "POINT (767547.1634849273832515 2176170.6364117003977299)", - "surface": 13700000, - "canton": null, - "numero_insee": "71446" - } - }, - { - "pk": 30556, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARD-DE-VAUX", - "center": "POINT (778118.5306227313121781 2204084.8919780487194657)", - "surface": 6690000, - "canton": null, - "numero_insee": "71447" - } - }, - { - "pk": 22388, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-BELLE-ROCHE", - "center": "POINT (793638.9997862937161699 2156375.5197227080352604)", - "surface": 4520000, - "canton": null, - "numero_insee": "71448" - } - }, - { - "pk": 7941, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-D'AUXY", - "center": "POINT (769200.1878130133263767 2193599.8902048440650105)", - "surface": 7320000, - "canton": null, - "numero_insee": "71449" - } - }, - { - "pk": 16626, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-DE-COMMUNE", - "center": "POINT (766126.4753582674311474 2213690.9233079808764160)", - "surface": 14800000, - "canton": null, - "numero_insee": "71450" - } - }, - { - "pk": 10956, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-DE-LIXY", - "center": "POINT (746781.7345170618500561 2134656.9334558420814574)", - "surface": 4270000, - "canton": null, - "numero_insee": "71451" - } - }, - { - "pk": 29107, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-DE-SALENCEY", - "center": "POINT (765389.7320499812485650 2170947.6758131287060678)", - "surface": 15890000, - "canton": null, - "numero_insee": "71452" - } - }, - { - "pk": 32134, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-DU-LAC", - "center": "POINT (732422.1577824014239013 2140139.9586514867842197)", - "surface": 13910000, - "canton": null, - "numero_insee": "71453" - } - }, - { - "pk": 4720, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-DU-MONT", - "center": "POINT (826430.3214799787383527 2184180.3347782948985696)", - "surface": 5290000, - "canton": null, - "numero_insee": "71454" - } - }, - { - "pk": 31238, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-DU-TARTRE", - "center": "POINT (773671.9425269273342565 2185631.0682723745703697)", - "surface": 8040000, - "canton": null, - "numero_insee": "71455" - } - }, - { - "pk": 16487, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-EN-BRESSE", - "center": "POINT (807744.3172183514107019 2204037.6972634717822075)", - "surface": 34930000, - "canton": null, - "numero_insee": "71456" - } - }, - { - "pk": 33391, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-EN-GATINOIS", - "center": "POINT (803209.9456590041518211 2219311.9573274613358080)", - "surface": 7380000, - "canton": null, - "numero_insee": "71457" - } - }, - { - "pk": 33648, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-LA-PATROUILLE", - "center": "POINT (769231.4727515879785642 2178186.7460232735611498)", - "surface": 7020000, - "canton": null, - "numero_insee": "71458" - } - }, - { - "pk": 34581, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MARTIN-SOUS-MONTAIGU", - "center": "POINT (781019.9510779411066324 2204209.7317512384615839)", - "surface": 3680000, - "canton": null, - "numero_insee": "71459" - } - }, - { - "pk": 37579, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MAURICE-DE-SATONNAY", - "center": "POINT (788011.3328155110357329 2159029.8746144627220929)", - "surface": 10340000, - "canton": null, - "numero_insee": "71460" - } - }, - { - "pk": 30335, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MAURICE-DES-CHAMPS", - "center": "POINT (775296.2639162163250148 2182942.5645068702287972)", - "surface": 5810000, - "canton": null, - "numero_insee": "71461" - } - }, - { - "pk": 30101, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MAURICE-EN-RIVIERE", - "center": "POINT (804700.0297166752861813 2208915.8567777820862830)", - "surface": 18740000, - "canton": null, - "numero_insee": "71462" - } - }, - { - "pk": 26999, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MAURICE-LES-CHATEAUNEUF", - "center": "POINT (747653.5432175311725587 2138067.4362839036621153)", - "surface": 10850000, - "canton": null, - "numero_insee": "71463" - } - }, - { - "pk": 23409, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MAURICE-LES-COUCHES", - "center": "POINT (772554.4857772771501914 2211043.4194081677123904)", - "surface": 4840000, - "canton": null, - "numero_insee": "71464" - } - }, - { - "pk": 22234, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-MICAUD", - "center": "POINT (767426.9071753162425011 2190281.9185093822889030)", - "surface": 21010000, - "canton": null, - "numero_insee": "71465" - } - }, - { - "pk": 23401, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-NIZIER-SUR-ARROUX", - "center": "POINT (738992.9754386430140585 2203151.2023404673673213)", - "surface": 10210000, - "canton": null, - "numero_insee": "71466" - } - }, - { - "pk": 15859, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-PIERRE-DE-VARENNES", - "center": "POINT (765578.8810949015896767 2207480.9760862444527447)", - "surface": 23580000, - "canton": null, - "numero_insee": "71468" - } - }, - { - "pk": 37580, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-PIERRE-LE-VIEUX", - "center": "POINT (768610.5093944508116692 2145352.2854770785197616)", - "surface": 15800000, - "canton": null, - "numero_insee": "71469" - } - }, - { - "pk": 36500, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-PRIVE", - "center": "POINT (771122.1691337691154331 2191214.1955472072586417)", - "surface": 5210000, - "canton": null, - "numero_insee": "71471" - } - }, - { - "pk": 19674, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-PRIX", - "center": "POINT (731139.0129242031835020 2220499.2533472767099738)", - "surface": 34250000, - "canton": null, - "numero_insee": "71472" - } - }, - { - "pk": 8113, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-RACHO", - "center": "POINT (757026.4533760978374630 2142250.9080166085623205)", - "surface": 10530000, - "canton": null, - "numero_insee": "71473" - } - }, - { - "pk": 20571, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINTE-RADEGONDE", - "center": "POINT (733202.2819995899917558 2189690.4421601332724094)", - "surface": 23140000, - "canton": null, - "numero_insee": "71474" - } - }, - { - "pk": 32366, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-ROMAIN-SOUS-GOURDON", - "center": "POINT (758892.5118618279229850 2181701.8161493143998086)", - "surface": 18860000, - "canton": null, - "numero_insee": "71477" - } - }, - { - "pk": 10814, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-ROMAIN-SOUS-VERSIGNY", - "center": "POINT (741447.9401337365852669 2185156.5249194544740021)", - "surface": 17750000, - "canton": null, - "numero_insee": "71478" - } - }, - { - "pk": 13693, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-SERNIN-DU-BOIS", - "center": "POINT (759183.2548298533074558 2206325.5546516017057002)", - "surface": 14780000, - "canton": null, - "numero_insee": "71479" - } - }, - { - "pk": 14543, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-SERNIN-DU-PLAIN", - "center": "POINT (773740.9125208387849852 2212754.9826281745918095)", - "surface": 14510000, - "canton": null, - "numero_insee": "71480" - } - }, - { - "pk": 11874, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-SYMPHORIEN-D'ANCELLES", - "center": "POINT (787910.1580362196546048 2135708.0224521956406534)", - "surface": 6350000, - "canton": null, - "numero_insee": "71481" - } - }, - { - "pk": 22486, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-SYMPHORIEN-DE-MARMAGNE", - "center": "POINT (751087.1383729742374271 2205055.6064488040283322)", - "surface": 37540000, - "canton": null, - "numero_insee": "71482" - } - }, - { - "pk": 22332, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-SYMPHORIEN-DES-BOIS", - "center": "POINT (749961.0295724944444373 2149197.0849163131788373)", - "surface": 10600000, - "canton": null, - "numero_insee": "71483" - } - }, - { - "pk": 23548, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-USUGE", - "center": "POINT (822060.8849124216940254 2191849.6138485115952790)", - "surface": 32060000, - "canton": null, - "numero_insee": "71484" - } - }, - { - "pk": 6720, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-VALLERIN", - "center": "POINT (778340.6923751644790173 2189774.4517441759817302)", - "surface": 6780000, - "canton": null, - "numero_insee": "71485" - } - }, - { - "pk": 5986, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-VALLIER", - "center": "POINT (754865.4535568844294176 2184469.9737582514062524)", - "surface": 24310000, - "canton": null, - "numero_insee": "71486" - } - }, - { - "pk": 6464, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-VERAND", - "center": "POINT (784253.3376861317083240 2141982.5261358455754817)", - "surface": 2460000, - "canton": null, - "numero_insee": "71487" - } - }, - { - "pk": 13765, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-VINCENT-DES-PRES", - "center": "POINT (770334.6464357820805162 2166185.5728172217495739)", - "surface": 6360000, - "canton": null, - "numero_insee": "71488" - } - }, - { - "pk": 9439, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-VINCENT-EN-BRESSE", - "center": "POINT (808371.4028856244403869 2189230.2776162712834775)", - "surface": 15840000, - "canton": null, - "numero_insee": "71489" - } - }, - { - "pk": 23516, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-VINCENT-BRAGNY", - "center": "POINT (737264.4355848843697459 2171008.6109876935370266)", - "surface": 40900000, - "canton": null, - "numero_insee": "71490" - } - }, - { - "pk": 17297, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-YAN", - "center": "POINT (732272.5302345096133649 2157754.4954609200358391)", - "surface": 26220000, - "canton": null, - "numero_insee": "71491" - } - }, - { - "pk": 30683, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAINT-YTHAIRE", - "center": "POINT (773647.8106613984564319 2176723.0788418175652623)", - "surface": 9360000, - "canton": null, - "numero_insee": "71492" - } - }, - { - "pk": 30451, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAISY", - "center": "POINT (768873.2027341813081875 2220219.8377607339061797)", - "surface": 17180000, - "canton": null, - "numero_insee": "71493" - } - }, - { - "pk": 33118, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA SALLE", - "center": "POINT (794011.9722788361832500 2159581.5627128123305738)", - "surface": 5750000, - "canton": null, - "numero_insee": "71494" - } - }, - { - "pk": 37215, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SALORNAY-SUR-GUYE", - "center": "POINT (773696.4511691057123244 2171018.4766499246470630)", - "surface": 11220000, - "canton": null, - "numero_insee": "71495" - } - }, - { - "pk": 16864, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAMPIGNY-LES-MARANGES", - "center": "POINT (776433.6221345188096166 2213878.8822027873247862)", - "surface": 2670000, - "canton": null, - "numero_insee": "71496" - } - }, - { - "pk": 30511, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SANCE", - "center": "POINT (792276.3132278608391061 2151859.8501644111238420)", - "surface": 6560000, - "canton": null, - "numero_insee": "71497" - } - }, - { - "pk": 12973, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SANTILLY", - "center": "POINT (781303.6286260180640966 2182693.5469046104699373)", - "surface": 7220000, - "canton": null, - "numero_insee": "71498" - } - }, - { - "pk": 32026, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SANVIGNES-LES-MINES", - "center": "POINT (748637.5108891011914238 2187119.3242570701986551)", - "surface": 35540000, - "canton": null, - "numero_insee": "71499" - } - }, - { - "pk": 30563, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SARRY", - "center": "POINT (736267.5743503277190030 2146978.7650458430871367)", - "surface": 9660000, - "canton": null, - "numero_insee": "71500" - } - }, - { - "pk": 7169, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SASSANGY", - "center": "POINT (776202.3190940635977313 2194059.9377897987142205)", - "surface": 6210000, - "canton": null, - "numero_insee": "71501" - } - }, - { - "pk": 32764, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SASSENAY", - "center": "POINT (796810.9636347243795171 2206846.7107141450978816)", - "surface": 19040000, - "canton": null, - "numero_insee": "71502" - } - }, - { - "pk": 10593, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAUNIERES", - "center": "POINT (808242.0609131322707981 2216052.1960077476687729)", - "surface": 7580000, - "canton": null, - "numero_insee": "71504" - } - }, - { - "pk": 24254, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAVIANGES", - "center": "POINT (773232.3699851145502180 2190231.3193682343699038)", - "surface": 6570000, - "canton": null, - "numero_insee": "71505" - } - }, - { - "pk": 33273, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAVIGNY-EN-REVERMONT", - "center": "POINT (833720.7216578623047099 2186044.3852157630026340)", - "surface": 27520000, - "canton": null, - "numero_insee": "71506" - } - }, - { - "pk": 19451, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAVIGNY-SUR-GROSNE", - "center": "POINT (778338.7895970580866560 2178264.4015156016685069)", - "surface": 6540000, - "canton": null, - "numero_insee": "71507" - } - }, - { - "pk": 35391, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SAVIGNY-SUR-SEILLE", - "center": "POINT (811709.1377454500179738 2185155.2595732146874070)", - "surface": 14560000, - "canton": null, - "numero_insee": "71508" - } - }, - { - "pk": 4644, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA CELLE-EN-MORVAN", - "center": "POINT (740010.9918853077106178 2224678.1004125289618969)", - "surface": 20160000, - "canton": null, - "numero_insee": "71509" - } - }, - { - "pk": 31287, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SEMUR-EN-BRIONNAIS", - "center": "POINT (735098.8951204940676689 2143165.4101857100613415)", - "surface": 15500000, - "canton": null, - "numero_insee": "71510" - } - }, - { - "pk": 28188, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SENOZAN", - "center": "POINT (794323.3315239887451753 2158283.0624859659001231)", - "surface": 4850000, - "canton": null, - "numero_insee": "71513" - } - }, - { - "pk": 20031, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SENS-SUR-SEILLE", - "center": "POINT (826909.9002804926130921 2198296.6894157300703228)", - "surface": 11730000, - "canton": null, - "numero_insee": "71514" - } - }, - { - "pk": 9795, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SERCY", - "center": "POINT (780521.7733438826398924 2180484.9521217145957053)", - "surface": 5830000, - "canton": null, - "numero_insee": "71515" - } - }, - { - "pk": 13966, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SERMESSE", - "center": "POINT (809959.6471474769059569 2214165.2752131470479071)", - "surface": 8460000, - "canton": null, - "numero_insee": "71517" - } - }, - { - "pk": 28655, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SERRIERES", - "center": "POINT (779395.5592118932399899 2148246.7635928671807051)", - "surface": 9840000, - "canton": null, - "numero_insee": "71518" - } - }, - { - "pk": 34628, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SERRIGNY-EN-BRESSE", - "center": "POINT (812427.4530799975618720 2206479.8195659406483173)", - "surface": 12440000, - "canton": null, - "numero_insee": "71519" - } - }, - { - "pk": 29439, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SEVREY", - "center": "POINT (790399.0363688366487622 2195882.5670395363122225)", - "surface": 8560000, - "canton": null, - "numero_insee": "71520" - } - }, - { - "pk": 8381, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SIGY-LE-CHATEL", - "center": "POINT (771258.6756104176165536 2175201.3921219445765018)", - "surface": 6980000, - "canton": null, - "numero_insee": "71521" - } - }, - { - "pk": 23681, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SIMANDRE", - "center": "POINT (802924.3492330412846059 2182477.8563813944347203)", - "surface": 22920000, - "canton": null, - "numero_insee": "71522" - } - }, - { - "pk": 16288, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SIMARD", - "center": "POINT (817433.2421295992098749 2194612.4175559380091727)", - "surface": 22190000, - "canton": null, - "numero_insee": "71523" - } - }, - { - "pk": 7464, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SIVIGNON", - "center": "POINT (766177.2796679959865287 2160745.3479251903481781)", - "surface": 12610000, - "canton": null, - "numero_insee": "71524" - } - }, - { - "pk": 28186, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SOLOGNY", - "center": "POINT (779638.6049024905078113 2154954.8490083292126656)", - "surface": 10680000, - "canton": null, - "numero_insee": "71525" - } - }, - { - "pk": 13307, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SOLUTRE-POUILLY", - "center": "POINT (783814.5716190690873191 2146482.8456043307669461)", - "surface": 6210000, - "canton": null, - "numero_insee": "71526" - } - }, - { - "pk": 19050, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SOMMANT", - "center": "POINT (742269.3572687549749389 2229801.5777088981121778)", - "surface": 20540000, - "canton": null, - "numero_insee": "71527" - } - }, - { - "pk": 16868, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SORNAY", - "center": "POINT (816923.5747639307519421 2183998.8363004713319242)", - "surface": 18060000, - "canton": null, - "numero_insee": "71528" - } - }, - { - "pk": 23868, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "SULLY", - "center": "POINT (761242.6168410546379164 2223057.2636641850695014)", - "surface": 31840000, - "canton": null, - "numero_insee": "71530" - } - }, - { - "pk": 27903, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA TAGNIERE", - "center": "POINT (743312.5186891177436337 2201286.2983060600236058)", - "surface": 34000000, - "canton": null, - "numero_insee": "71531" - } - }, - { - "pk": 10068, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TAIZE", - "center": "POINT (779206.0264564937679097 2170464.9360090172849596)", - "surface": 3150000, - "canton": null, - "numero_insee": "71532" - } - }, - { - "pk": 19913, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TANCON", - "center": "POINT (749179.4861101399874315 2135177.7838416062295437)", - "surface": 9460000, - "canton": null, - "numero_insee": "71533" - } - }, - { - "pk": 8053, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LE TARTRE", - "center": "POINT (830315.1582104756962508 2198025.6108135110698640)", - "surface": 3840000, - "canton": null, - "numero_insee": "71534" - } - }, - { - "pk": 21410, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TAVERNAY", - "center": "POINT (744313.4427878725109622 2224814.7695062216371298)", - "surface": 25780000, - "canton": null, - "numero_insee": "71535" - } - }, - { - "pk": 10058, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "THIL-SUR-ARROUX", - "center": "POINT (733899.1784792130347341 2201906.8838293305598199)", - "surface": 13330000, - "canton": null, - "numero_insee": "71537" - } - }, - { - "pk": 18810, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "THUREY", - "center": "POINT (813005.7773273254279047 2197376.9439293728210032)", - "surface": 18420000, - "canton": null, - "numero_insee": "71538" - } - }, - { - "pk": 17249, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TINTRY", - "center": "POINT (763897.4818363308440894 2216874.6446685339324176)", - "surface": 9770000, - "canton": null, - "numero_insee": "71539" - } - }, - { - "pk": 21671, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TOULON-SUR-ARROUX", - "center": "POINT (738516.7023511324077845 2188534.5623557018116117)", - "surface": 43680000, - "canton": null, - "numero_insee": "71542" - } - }, - { - "pk": 36501, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TOURNUS", - "center": "POINT (796464.4612713858950883 2177118.0016275276429951)", - "surface": 14700000, - "canton": null, - "numero_insee": "71543" - } - }, - { - "pk": 34019, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TOUTENANT", - "center": "POINT (811683.2326231360202655 2211577.8085983982309699)", - "surface": 13640000, - "canton": null, - "numero_insee": "71544" - } - }, - { - "pk": 4975, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TRAMAYES", - "center": "POINT (774597.5631752095650882 2147505.2136849337257445)", - "surface": 18630000, - "canton": null, - "numero_insee": "71545" - } - }, - { - "pk": 7461, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TRAMBLY", - "center": "POINT (768969.8995191925205290 2150159.6681381133385003)", - "surface": 12110000, - "canton": null, - "numero_insee": "71546" - } - }, - { - "pk": 35217, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TRIVY", - "center": "POINT (765310.6513267674017698 2156734.3980554314330220)", - "surface": 11760000, - "canton": null, - "numero_insee": "71547" - } - }, - { - "pk": 27111, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "TRONCHY", - "center": "POINT (809118.1060623767552897 2195542.1270261551253498)", - "surface": 7770000, - "canton": null, - "numero_insee": "71548" - } - }, - { - "pk": 31826, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA TRUCHERE", - "center": "POINT (801013.4230316347675398 2171852.2095253118313849)", - "surface": 5150000, - "canton": null, - "numero_insee": "71549" - } - }, - { - "pk": 16711, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "UCHIZY", - "center": "POINT (795627.8629735937574878 2169604.2450543786399066)", - "surface": 12580000, - "canton": null, - "numero_insee": "71550" - } - }, - { - "pk": 36209, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "UCHON", - "center": "POINT (746903.4296545600518584 2202718.0406560287810862)", - "surface": 11890000, - "canton": null, - "numero_insee": "71551" - } - }, - { - "pk": 5012, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "UXEAU", - "center": "POINT (730735.9978674412705004 2185465.8431839845143259)", - "surface": 32780000, - "canton": null, - "numero_insee": "71552" - } - }, - { - "pk": 12888, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VAREILLES", - "center": "POINT (747184.2555628519039601 2146170.7646939568221569)", - "surface": 8600000, - "canton": null, - "numero_insee": "71553" - } - }, - { - "pk": 11769, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VARENNE-L'ARCONCE", - "center": "POINT (740040.0919817371759564 2150614.0618609292432666)", - "surface": 8330000, - "canton": null, - "numero_insee": "71554" - } - }, - { - "pk": 27371, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VARENNES-LES-MACON", - "center": "POINT (790343.0300948959775269 2143836.1368252541869879)", - "surface": 4760000, - "canton": null, - "numero_insee": "71556" - } - }, - { - "pk": 5659, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VARENNE-SAINT-GERMAIN", - "center": "POINT (729842.5149261562619358 2161036.7931533893570304)", - "surface": 15730000, - "canton": null, - "numero_insee": "71557" - } - }, - { - "pk": 15166, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VARENNES-SAINT-SAUVEUR", - "center": "POINT (822641.1931983439717442 2170836.1890177601017058)", - "surface": 30490000, - "canton": null, - "numero_insee": "71558" - } - }, - { - "pk": 18705, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VARENNES-SOUS-DUN", - "center": "POINT (754209.6448794414754957 2143928.4662902480922639)", - "surface": 17550000, - "canton": null, - "numero_insee": "71559" - } - }, - { - "pk": 3059, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VAUBAN", - "center": "POINT (745316.7275458709336817 2142151.2727159373462200)", - "surface": 13630000, - "canton": null, - "numero_insee": "71561" - } - }, - { - "pk": 23306, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VAUDEBARRIER", - "center": "POINT (751777.4341328330338001 2159221.4861502223648131)", - "surface": 8050000, - "canton": null, - "numero_insee": "71562" - } - }, - { - "pk": 30557, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VAUX-EN-PRE", - "center": "POINT (773396.4497312777675688 2182726.1896695890463889)", - "surface": 4420000, - "canton": null, - "numero_insee": "71563" - } - }, - { - "pk": 23255, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VENDENESSE-LES-CHAROLLES", - "center": "POINT (755156.3628836907446384 2162052.7349907509051263)", - "surface": 27420000, - "canton": null, - "numero_insee": "71564" - } - }, - { - "pk": 35727, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VENDENESSE-SUR-ARROUX", - "center": "POINT (732461.1599592296406627 2182678.0579487001523376)", - "surface": 16100000, - "canton": null, - "numero_insee": "71565" - } - }, - { - "pk": 34917, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VERDUN-SUR-LE-DOUBS", - "center": "POINT (803860.0416947582270950 2213512.5952625595964491)", - "surface": 7390000, - "canton": null, - "numero_insee": "71566" - } - }, - { - "pk": 27377, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VERGISSON", - "center": "POINT (782699.1424614775460213 2148174.8585073286667466)", - "surface": 5790000, - "canton": null, - "numero_insee": "71567" - } - }, - { - "pk": 36054, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VERISSEY", - "center": "POINT (813335.1325689175864682 2193976.8225374068133533)", - "surface": 8360000, - "canton": null, - "numero_insee": "71568" - } - }, - { - "pk": 13255, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VERJUX", - "center": "POINT (801170.7753838370554149 2211988.3264834890142083)", - "surface": 12160000, - "canton": null, - "numero_insee": "71570" - } - }, - { - "pk": 14550, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VEROSVRES", - "center": "POINT (761703.4360432893736288 2157204.1166297229938209)", - "surface": 23120000, - "canton": null, - "numero_insee": "71571" - } - }, - { - "pk": 31824, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VERS", - "center": "POINT (792946.2560934163630009 2178889.5262971194460988)", - "surface": 4170000, - "canton": null, - "numero_insee": "71572" - } - }, - { - "pk": 3322, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VERSAUGUES", - "center": "POINT (733310.7597730709239841 2153359.3853812455199659)", - "surface": 10820000, - "canton": null, - "numero_insee": "71573" - } - }, - { - "pk": 20702, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VERZE", - "center": "POINT (784534.9451219369657338 2155897.4323944728821516)", - "surface": 19960000, - "canton": null, - "numero_insee": "71574" - } - }, - { - "pk": 7678, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VILLEGAUDIN", - "center": "POINT (811050.3321892824023962 2203665.6356474049389362)", - "surface": 8970000, - "canton": null, - "numero_insee": "71577" - } - }, - { - "pk": 37569, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA VILLENEUVE", - "center": "POINT (815403.1007781143998727 2221317.8759663747623563)", - "surface": 7400000, - "canton": null, - "numero_insee": "71578" - } - }, - { - "pk": 19046, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VILLENEUVE-EN-MONTAGNE", - "center": "POINT (771963.1567439690697938 2198227.4141330006532371)", - "surface": 15580000, - "canton": null, - "numero_insee": "71579" - } - }, - { - "pk": 7866, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VINCELLES", - "center": "POINT (820884.7842192195821553 2188937.0222689933143556)", - "surface": 5650000, - "canton": null, - "numero_insee": "71580" - } - }, - { - "pk": 13651, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VINDECY", - "center": "POINT (728520.4092999952845275 2151717.2658296809531748)", - "surface": 16480000, - "canton": null, - "numero_insee": "71581" - } - }, - { - "pk": 28776, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "LA VINEUSE", - "center": "POINT (773850.2928718073526397 2164714.2144131064414978)", - "surface": 15830000, - "canton": null, - "numero_insee": "71582" - } - }, - { - "pk": 12392, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VINZELLES", - "center": "POINT (788041.9742168878437951 2143716.4007032234221697)", - "surface": 4420000, - "canton": null, - "numero_insee": "71583" - } - }, - { - "pk": 27372, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VIRE", - "center": "POINT (792976.9616555933607742 2163576.2827635039575398)", - "surface": 11290000, - "canton": null, - "numero_insee": "71584" - } - }, - { - "pk": 6314, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VIREY-LE-GRAND", - "center": "POINT (793090.1160377005580813 2208916.7160839368589222)", - "surface": 12760000, - "canton": null, - "numero_insee": "71585" - } - }, - { - "pk": 16932, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VIRY", - "center": "POINT (753625.3257298567332327 2165542.8091570003889501)", - "surface": 20190000, - "canton": null, - "numero_insee": "71586" - } - }, - { - "pk": 12016, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VITRY-LES-CLUNY", - "center": "POINT (772519.3706154688261449 2168205.9673095131292939)", - "surface": 4790000, - "canton": null, - "numero_insee": "71587" - } - }, - { - "pk": 16120, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VITRY-EN-CHAROLLAIS", - "center": "POINT (732321.6021248638862744 2163760.2472853260114789)", - "surface": 21320000, - "canton": null, - "numero_insee": "71588" - } - }, - { - "pk": 16841, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VITRY-SUR-LOIRE", - "center": "POINT (705597.3095666480949149 2187454.4721606676466763)", - "surface": 28140000, - "canton": null, - "numero_insee": "71589" - } - }, - { - "pk": 23421, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "VOLESVRES", - "center": "POINT (740516.3710362972924486 2165231.1265642065554857)", - "surface": 21600000, - "canton": null, - "numero_insee": "71590" - } - }, - { - "pk": 27964, - "model": "ishtar_common.town", - "fields": { - "departement": 72, - "name": "FLEURVILLE", - "center": "POINT (795381.4839691236848012 2163296.5555024025961757)", - "surface": 3950000, - "canton": null, - "numero_insee": "71591" - } - }, - { - "pk": 1826, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AIGNE", - "center": "POINT (433675.5568563974229619 2343206.0369211593642831)", - "surface": 12760000, - "canton": null, - "numero_insee": "72001" - } - }, - { - "pk": 2804, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AILLIERES-BEAUVOIR", - "center": "POINT (450685.8561372105614282 2379773.3449083641171455)", - "surface": 15110000, - "canton": null, - "numero_insee": "72002" - } - }, - { - "pk": 1804, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ALLONNES", - "center": "POINT (436177.2549489061348140 2331117.6165001536719501)", - "surface": 18140000, - "canton": null, - "numero_insee": "72003" - } - }, - { - "pk": 2446, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AMNE", - "center": "POINT (422489.4300590027705766 2340511.7154360543936491)", - "surface": 16030000, - "canton": null, - "numero_insee": "72004" - } - }, - { - "pk": 2023, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ANCINNES", - "center": "POINT (439711.8013738138834015 2375679.7031515343114734)", - "surface": 27350000, - "canton": null, - "numero_insee": "72005" - } - }, - { - "pk": 1803, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ARCONNAY", - "center": "POINT (432873.4700410305522382 2379726.1427565962076187)", - "surface": 8000000, - "canton": null, - "numero_insee": "72006" - } - }, - { - "pk": 2932, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ARDENAY-SUR-MERIZE", - "center": "POINT (457466.2088536309893243 2334396.0820182343013585)", - "surface": 11650000, - "canton": null, - "numero_insee": "72007" - } - }, - { - "pk": 2640, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ARNAGE", - "center": "POINT (439608.5497525818645954 2327643.3285280149430037)", - "surface": 10860000, - "canton": null, - "numero_insee": "72008" - } - }, - { - "pk": 2761, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ARTHEZE", - "center": "POINT (416613.1177893028361723 2312842.2476273099891841)", - "surface": 8680000, - "canton": null, - "numero_insee": "72009" - } - }, - { - "pk": 2954, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ASNIERES-SUR-VEGRE", - "center": "POINT (408315.7888520999113098 2323882.3343075909651816)", - "surface": 12560000, - "canton": null, - "numero_insee": "72010" - } - }, - { - "pk": 2363, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ASSE-LE-BOISNE", - "center": "POINT (426434.5113862890284508 2371767.2689455375075340)", - "surface": 28840000, - "canton": null, - "numero_insee": "72011" - } - }, - { - "pk": 2303, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ASSE-LE-RIBOUL", - "center": "POINT (432149.7791205468820408 2358304.6183749046176672)", - "surface": 16780000, - "canton": null, - "numero_insee": "72012" - } - }, - { - "pk": 2248, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AUBIGNE-RACAN", - "center": "POINT (443337.7421893157879822 2300253.0780019564554095)", - "surface": 32230000, - "canton": null, - "numero_insee": "72013" - } - }, - { - "pk": 2290, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LES AULNEAUX", - "center": "POINT (452452.2407210608944297 2383990.9700763998553157)", - "surface": 8250000, - "canton": null, - "numero_insee": "72015" - } - }, - { - "pk": 2115, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AUVERS-LE-HAMON", - "center": "POINT (399490.7197684478596784 2326111.3710811063647270)", - "surface": 48290000, - "canton": null, - "numero_insee": "72016" - } - }, - { - "pk": 1860, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AUVERS-SOUS-MONTFAUCON", - "center": "POINT (420022.4092121643479913 2336288.2020215461961925)", - "surface": 7540000, - "canton": null, - "numero_insee": "72017" - } - }, - { - "pk": 2706, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AVESNES-EN-SAOSNOIS", - "center": "POINT (453111.5874549740692601 2364782.5675880005583167)", - "surface": 5730000, - "canton": null, - "numero_insee": "72018" - } - }, - { - "pk": 2583, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AVESSE", - "center": "POINT (405447.8725098700961098 2331864.7722857720218599)", - "surface": 18740000, - "canton": null, - "numero_insee": "72019" - } - }, - { - "pk": 1567, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AVEZE", - "center": "POINT (476361.7760734594194219 2360772.1623711134307086)", - "surface": 20980000, - "canton": null, - "numero_insee": "72020" - } - }, - { - "pk": 2601, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "AVOISE", - "center": "POINT (410642.9631279443856329 2320799.1523116081953049)", - "surface": 24340000, - "canton": null, - "numero_insee": "72021" - } - }, - { - "pk": 2729, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE BAILLEUL", - "center": "POINT (411423.4903339408338070 2311098.1323018157854676)", - "surface": 27730000, - "canton": null, - "numero_insee": "72022" - } - }, - { - "pk": 1742, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BALLON", - "center": "POINT (442988.4215948156779632 2354591.4048385540954769)", - "surface": 13540000, - "canton": null, - "numero_insee": "72023" - } - }, - { - "pk": 1974, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA BAZOGE", - "center": "POINT (436646.1644824614049867 2347033.4169891835190356)", - "surface": 22970000, - "canton": null, - "numero_insee": "72024" - } - }, - { - "pk": 2156, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BAZOUGES-SUR-LE-LOIR", - "center": "POINT (411603.6047072469955310 2301392.0881263585761189)", - "surface": 30010000, - "canton": null, - "numero_insee": "72025" - } - }, - { - "pk": 1692, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BEAUFAY", - "center": "POINT (451523.9234700467204675 2351059.3586349505931139)", - "surface": 24030000, - "canton": null, - "numero_insee": "72026" - } - }, - { - "pk": 2312, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BEAUMONT-SUR-DEME", - "center": "POINT (468058.6333192657912150 2300057.4732964653521776)", - "surface": 13550000, - "canton": null, - "numero_insee": "72027" - } - }, - { - "pk": 2626, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BEAUMONT-PIED-DE-BOEUF", - "center": "POINT (453579.6218835313920863 2308243.9689897741191089)", - "surface": 24740000, - "canton": null, - "numero_insee": "72028" - } - }, - { - "pk": 2818, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BEAUMONT-SUR-SARTHE", - "center": "POINT (434731.6678500724374317 2360727.7112659113481641)", - "surface": 6640000, - "canton": null, - "numero_insee": "72029" - } - }, - { - "pk": 1980, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BEILLE", - "center": "POINT (463790.1582184764556587 2344155.7383417924866080)", - "surface": 8600000, - "canton": null, - "numero_insee": "72031" - } - }, - { - "pk": 1852, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BERFAY", - "center": "POINT (481581.0396840779576451 2334796.1661891583353281)", - "surface": 18300000, - "canton": null, - "numero_insee": "72032" - } - }, - { - "pk": 2652, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BERNAY-EN-CHAMPAGNE", - "center": "POINT (421659.1539411632693373 2344107.5545992385596037)", - "surface": 10300000, - "canton": null, - "numero_insee": "72033" - } - }, - { - "pk": 1788, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BERUS", - "center": "POINT (431790.9396023829467595 2377515.6189262587577105)", - "surface": 6870000, - "canton": null, - "numero_insee": "72034" - } - }, - { - "pk": 2051, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BESSE-SUR-BRAYE", - "center": "POINT (479042.7865357702830806 2315060.1177448527887464)", - "surface": 20590000, - "canton": null, - "numero_insee": "72035" - } - }, - { - "pk": 1798, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BETHON", - "center": "POINT (433602.0325733539648354 2376329.7160303238779306)", - "surface": 3900000, - "canton": null, - "numero_insee": "72036" - } - }, - { - "pk": 2975, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BLEVES", - "center": "POINT (451941.9802507375134155 2385187.6036039944738150)", - "surface": 2060000, - "canton": null, - "numero_insee": "72037" - } - }, - { - "pk": 2951, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BOESSE-LE-SEC", - "center": "POINT (467545.4502092089969665 2349891.0976333087310195)", - "surface": 11950000, - "canton": null, - "numero_insee": "72038" - } - }, - { - "pk": 1572, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BONNETABLE", - "center": "POINT (459792.1999444137327373 2355631.1397933084517717)", - "surface": 40150000, - "canton": null, - "numero_insee": "72039" - } - }, - { - "pk": 2893, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA BOSSE", - "center": "POINT (466818.4387853488442488 2353087.4388806908391416)", - "surface": 10890000, - "canton": null, - "numero_insee": "72040" - } - }, - { - "pk": 2214, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BOUER", - "center": "POINT (473104.7507813987904228 2343232.2092663007788360)", - "surface": 11990000, - "canton": null, - "numero_insee": "72041" - } - }, - { - "pk": 2463, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BOULOIRE", - "center": "POINT (466598.9801015420816839 2331269.3329457188956439)", - "surface": 27000000, - "canton": null, - "numero_insee": "72042" - } - }, - { - "pk": 1702, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BOURG-LE-ROI", - "center": "POINT (436522.1168175750644878 2374152.2570014824159443)", - "surface": 370000, - "canton": null, - "numero_insee": "72043" - } - }, - { - "pk": 1888, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BOUSSE", - "center": "POINT (420042.7599611650221050 2309567.9982462194748223)", - "surface": 12040000, - "canton": null, - "numero_insee": "72044" - } - }, - { - "pk": 2889, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BRAINS-SUR-GEE", - "center": "POINT (423618.2642181413830258 2337118.4816212900914252)", - "surface": 15920000, - "canton": null, - "numero_insee": "72045" - } - }, - { - "pk": 1627, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE BREIL-SUR-MERIZE", - "center": "POINT (462869.0766632641316392 2334540.9122506328858435)", - "surface": 18330000, - "canton": null, - "numero_insee": "72046" - } - }, - { - "pk": 2774, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BRETTE-LES-PINS", - "center": "POINT (449735.3971360865980387 2325325.2697901292704046)", - "surface": 14670000, - "canton": null, - "numero_insee": "72047" - } - }, - { - "pk": 2507, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BRIOSNE-LES-SABLES", - "center": "POINT (455397.5456515554687940 2354594.0101912175305188)", - "surface": 9950000, - "canton": null, - "numero_insee": "72048" - } - }, - { - "pk": 2732, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA BRUERE-SUR-LOIR", - "center": "POINT (451275.6693649289663881 2296415.7092752694152296)", - "surface": 11560000, - "canton": null, - "numero_insee": "72049" - } - }, - { - "pk": 1600, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "BRULON", - "center": "POINT (408329.2470539392670617 2334390.4078957969322801)", - "surface": 16150000, - "canton": null, - "numero_insee": "72050" - } - }, - { - "pk": 2585, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CERANS-FOULLETOURTE", - "center": "POINT (430286.3711301663424820 2317358.5067502646706998)", - "surface": 32470000, - "canton": null, - "numero_insee": "72051" - } - }, - { - "pk": 1845, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHAHAIGNES", - "center": "POINT (463293.9251101514091715 2307423.7331541450694203)", - "surface": 22650000, - "canton": null, - "numero_insee": "72052" - } - }, - { - "pk": 2329, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHALLES", - "center": "POINT (457420.8354178667068481 2327790.7169458074495196)", - "surface": 25970000, - "canton": null, - "numero_insee": "72053" - } - }, - { - "pk": 2859, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHAMPAGNE", - "center": "POINT (450539.1231727728154510 2337040.7663208651356399)", - "surface": 13960000, - "canton": null, - "numero_insee": "72054" - } - }, - { - "pk": 1792, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHAMPFLEUR", - "center": "POINT (436186.3634171820012853 2378452.5810320740565658)", - "surface": 13150000, - "canton": null, - "numero_insee": "72056" - } - }, - { - "pk": 2955, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHAMPROND", - "center": "POINT (481506.2865284785511903 2343802.2885274826548994)", - "surface": 6030000, - "canton": null, - "numero_insee": "72057" - } - }, - { - "pk": 2020, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHANGE", - "center": "POINT (447671.0882435834500939 2332913.9463797067292035)", - "surface": 35300000, - "canton": null, - "numero_insee": "72058" - } - }, - { - "pk": 2526, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHANTENAY-VILLEDIEU", - "center": "POINT (413790.7220192720415071 2327430.1398040447384119)", - "surface": 27830000, - "canton": null, - "numero_insee": "72059" - } - }, - { - "pk": 2430, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-AUX-CHOUX", - "center": "POINT (441687.0140650918474421 2294134.6508708782494068)", - "surface": 14540000, - "canton": null, - "numero_insee": "72060" - } - }, - { - "pk": 1589, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-D'ALIGNE", - "center": "POINT (406752.3468855767278001 2307156.6042322097346187)", - "surface": 33410000, - "canton": null, - "numero_insee": "72061" - } - }, - { - "pk": 2815, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-DU-BOIS", - "center": "POINT (469663.1375484432792291 2360016.0966330403462052)", - "surface": 16510000, - "canton": null, - "numero_insee": "72062" - } - }, - { - "pk": 2990, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-GAUGAIN", - "center": "POINT (475452.7213226179592311 2313529.1764545282348990)", - "surface": 10670000, - "canton": null, - "numero_insee": "72063" - } - }, - { - "pk": 2433, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-HUON", - "center": "POINT (478913.6512309208628722 2318561.7302468460984528)", - "surface": 18700000, - "canton": null, - "numero_insee": "72064" - } - }, - { - "pk": 2716, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-SAINT-AUBIN", - "center": "POINT (437407.8429027615347877 2339634.1872308468446136)", - "surface": 5970000, - "canton": null, - "numero_insee": "72065" - } - }, - { - "pk": 1729, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-SAINT-FRAY", - "center": "POINT (432736.9164879235904664 2347801.7087740153074265)", - "surface": 6360000, - "canton": null, - "numero_insee": "72066" - } - }, - { - "pk": 2195, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHAPELLE-SAINT-REMY", - "center": "POINT (460568.0978958845371380 2346530.8310874886810780)", - "surface": 19320000, - "canton": null, - "numero_insee": "72067" - } - }, - { - "pk": 2758, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA CHARTRE-SUR-LE-LOIR", - "center": "POINT (468319.0237294425023720 2304863.3677339856512845)", - "surface": 8740000, - "canton": null, - "numero_insee": "72068" - } - }, - { - "pk": 2894, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHASSE", - "center": "POINT (442430.0617665224708617 2385809.4181678644381464)", - "surface": 7340000, - "canton": null, - "numero_insee": "72069" - } - }, - { - "pk": 1923, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHASSILLE", - "center": "POINT (416199.9975042231380939 2338658.4693289278075099)", - "surface": 7290000, - "canton": null, - "numero_insee": "72070" - } - }, - { - "pk": 2908, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHATEAU-DU-LOIR", - "center": "POINT (456934.1601995222154073 2301966.8544339551590383)", - "surface": 11750000, - "canton": null, - "numero_insee": "72071" - } - }, - { - "pk": 1869, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHATEAU-L'HERMITAGE", - "center": "POINT (439825.2764019166352227 2313534.3412840985693038)", - "surface": 9410000, - "canton": null, - "numero_insee": "72072" - } - }, - { - "pk": 2192, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHAUFOUR-NOTRE-DAME", - "center": "POINT (430317.0572816047351807 2337874.3221399695612490)", - "surface": 11210000, - "canton": null, - "numero_insee": "72073" - } - }, - { - "pk": 2455, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHEMIRE-EN-CHARNIE", - "center": "POINT (410665.7171959569677711 2342315.6024264250881970)", - "surface": 11480000, - "canton": null, - "numero_insee": "72074" - } - }, - { - "pk": 2069, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHEMIRE-LE-GAUDIN", - "center": "POINT (424393.9189789968077093 2328018.0111695169471204)", - "surface": 22910000, - "canton": null, - "numero_insee": "72075" - } - }, - { - "pk": 1932, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHENAY", - "center": "POINT (438931.1140366150648333 2385380.2068969588726759)", - "surface": 2200000, - "canton": null, - "numero_insee": "72076" - } - }, - { - "pk": 2126, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHENU", - "center": "POINT (451018.5272876124363393 2291209.4974850206635892)", - "surface": 30780000, - "canton": null, - "numero_insee": "72077" - } - }, - { - "pk": 2667, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHERANCE", - "center": "POINT (439584.4637049450539052 2366872.2745670331642032)", - "surface": 10360000, - "canton": null, - "numero_insee": "72078" - } - }, - { - "pk": 2868, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHERISAY", - "center": "POINT (435217.1324459048919380 2374641.8343151328153908)", - "surface": 7930000, - "canton": null, - "numero_insee": "72079" - } - }, - { - "pk": 1724, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHERRE", - "center": "POINT (475033.8901445702649653 2351954.6719313059002161)", - "surface": 18420000, - "canton": null, - "numero_insee": "72080" - } - }, - { - "pk": 1962, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHERREAU", - "center": "POINT (477297.2418700096313842 2356576.8404883788898587)", - "surface": 11230000, - "canton": null, - "numero_insee": "72081" - } - }, - { - "pk": 1824, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE CHEVAIN", - "center": "POINT (437349.9294801192590967 2382965.4238514616154134)", - "surface": 5710000, - "canton": null, - "numero_insee": "72082" - } - }, - { - "pk": 1658, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CHEVILLE", - "center": "POINT (409166.0924690937972628 2329993.9800597499124706)", - "surface": 14200000, - "canton": null, - "numero_insee": "72083" - } - }, - { - "pk": 2015, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CLERMONT-CREANS", - "center": "POINT (422871.9950223335763440 2306288.7936324351467192)", - "surface": 18050000, - "canton": null, - "numero_insee": "72084" - } - }, - { - "pk": 2136, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COGNERS", - "center": "POINT (474103.6667863935581408 2319322.4356137779541314)", - "surface": 13610000, - "canton": null, - "numero_insee": "72085" - } - }, - { - "pk": 2920, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COMMERVEIL", - "center": "POINT (452866.7293744945200160 2370184.4684201921336353)", - "surface": 5690000, - "canton": null, - "numero_insee": "72086" - } - }, - { - "pk": 2365, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CONFLANS-SUR-ANILLE", - "center": "POINT (479807.2142668553860858 2331478.9555747765116394)", - "surface": 31020000, - "canton": null, - "numero_insee": "72087" - } - }, - { - "pk": 2869, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CONGE-SUR-ORNE", - "center": "POINT (445256.0255377648863941 2358713.1766202030703425)", - "surface": 11220000, - "canton": null, - "numero_insee": "72088" - } - }, - { - "pk": 2638, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CONLIE", - "center": "POINT (425016.8487886032671668 2349539.2883604038506746)", - "surface": 17250000, - "canton": null, - "numero_insee": "72089" - } - }, - { - "pk": 1904, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CONNERRE", - "center": "POINT (460617.0048040117835626 2340626.8342970311641693)", - "surface": 16630000, - "canton": null, - "numero_insee": "72090" - } - }, - { - "pk": 2325, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CONTILLY", - "center": "POINT (453476.9059654913726263 2381097.3764229817315936)", - "surface": 12540000, - "canton": null, - "numero_insee": "72091" - } - }, - { - "pk": 2215, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CORMES", - "center": "POINT (478925.7099934816360474 2353287.9205259019508958)", - "surface": 18830000, - "canton": null, - "numero_insee": "72093" - } - }, - { - "pk": 2992, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COUDRECIEUX", - "center": "POINT (472287.9571991946431808 2333117.8584442776627839)", - "surface": 24450000, - "canton": null, - "numero_insee": "72094" - } - }, - { - "pk": 1848, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COULAINES", - "center": "POINT (441414.7044230974279344 2339166.9376024994999170)", - "surface": 3920000, - "canton": null, - "numero_insee": "72095" - } - }, - { - "pk": 2383, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COULANS-SUR-GEE", - "center": "POINT (426910.6041975780390203 2338346.5648321993649006)", - "surface": 27470000, - "canton": null, - "numero_insee": "72096" - } - }, - { - "pk": 2812, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COULOMBIERS", - "center": "POINT (435968.8581146857468411 2368443.5548358550295234)", - "surface": 12330000, - "canton": null, - "numero_insee": "72097" - } - }, - { - "pk": 2953, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COULONGE", - "center": "POINT (439125.6510141567559913 2301319.1043642750009894)", - "surface": 15160000, - "canton": null, - "numero_insee": "72098" - } - }, - { - "pk": 2104, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURCEBOEUFS", - "center": "POINT (447034.1457142118597403 2349421.0217018323019147)", - "surface": 16840000, - "canton": null, - "numero_insee": "72099" - } - }, - { - "pk": 2226, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURCELLES-LA-FORET", - "center": "POINT (423115.2071554323192686 2313196.1368954097852111)", - "surface": 19640000, - "canton": null, - "numero_insee": "72100" - } - }, - { - "pk": 1569, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURCEMONT", - "center": "POINT (451691.7578354652505368 2354963.6289489823393524)", - "surface": 19320000, - "canton": null, - "numero_insee": "72101" - } - }, - { - "pk": 1947, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURCIVAL", - "center": "POINT (455441.2753782736836001 2361399.3688140287995338)", - "surface": 8940000, - "canton": null, - "numero_insee": "72102" - } - }, - { - "pk": 2620, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURDEMANCHE", - "center": "POINT (466538.1897984694223851 2314456.0224590203724802)", - "surface": 24150000, - "canton": null, - "numero_insee": "72103" - } - }, - { - "pk": 2052, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURGAINS", - "center": "POINT (447082.7874502197373658 2367734.8646295177750289)", - "surface": 14760000, - "canton": null, - "numero_insee": "72104" - } - }, - { - "pk": 2651, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURGENARD", - "center": "POINT (481137.1486499573220499 2352105.3865016372874379)", - "surface": 11390000, - "canton": null, - "numero_insee": "72105" - } - }, - { - "pk": 1655, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "COURTILLERS", - "center": "POINT (401382.6451993004884571 2315118.5376647082157433)", - "surface": 7440000, - "canton": null, - "numero_insee": "72106" - } - }, - { - "pk": 2964, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CRANNES-EN-CHAMPAGNE", - "center": "POINT (422745.7321889367303811 2333708.7187217874452472)", - "surface": 12010000, - "canton": null, - "numero_insee": "72107" - } - }, - { - "pk": 1823, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CRE", - "center": "POINT (413930.8294958339538425 2298308.8595363176427782)", - "surface": 17260000, - "canton": null, - "numero_insee": "72108" - } - }, - { - "pk": 2419, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CRISSE", - "center": "POINT (421359.9192797435680404 2356113.9840495330281556)", - "surface": 20940000, - "canton": null, - "numero_insee": "72109" - } - }, - { - "pk": 2452, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CROSMIERES", - "center": "POINT (413158.5253867254359648 2307009.2669956847093999)", - "surface": 20560000, - "canton": null, - "numero_insee": "72110" - } - }, - { - "pk": 2742, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "CURES", - "center": "POINT (427152.9675285429693758 2345353.8020080132409930)", - "surface": 11570000, - "canton": null, - "numero_insee": "72111" - } - }, - { - "pk": 2901, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DANGEUL", - "center": "POINT (445820.0054298773757182 2363121.0651448122225702)", - "surface": 14020000, - "canton": null, - "numero_insee": "72112" - } - }, - { - "pk": 2594, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DEGRE", - "center": "POINT (431286.3278373139910400 2341685.1769323712214828)", - "surface": 9860000, - "canton": null, - "numero_insee": "72113" - } - }, - { - "pk": 2177, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DEHAULT", - "center": "POINT (469079.3301931672031060 2358009.7890917076729238)", - "surface": 9010000, - "canton": null, - "numero_insee": "72114" - } - }, - { - "pk": 2141, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DISSAY-SOUS-COURCILLON", - "center": "POINT (460870.9212640759069473 2297896.2641163864172995)", - "surface": 35060000, - "canton": null, - "numero_insee": "72115" - } - }, - { - "pk": 2717, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DISSE-SOUS-BALLON", - "center": "POINT (448537.5244151490624063 2361242.1563859237357974)", - "surface": 3640000, - "canton": null, - "numero_insee": "72116" - } - }, - { - "pk": 2712, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DISSE-SOUS-LE-LUDE", - "center": "POINT (435696.7743405068758875 2292383.7898512026295066)", - "surface": 22520000, - "canton": null, - "numero_insee": "72117" - } - }, - { - "pk": 2531, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DOLLON", - "center": "POINT (469939.0886544965906069 2338802.6674572583287954)", - "surface": 25420000, - "canton": null, - "numero_insee": "72118" - } - }, - { - "pk": 1744, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DOMFRONT-EN-CHAMPAGNE", - "center": "POINT (429332.9687903061858378 2347973.7396661536768079)", - "surface": 21060000, - "canton": null, - "numero_insee": "72119" - } - }, - { - "pk": 2737, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DOUCELLES", - "center": "POINT (440107.9565728462766856 2364074.5606607794761658)", - "surface": 4460000, - "canton": null, - "numero_insee": "72120" - } - }, - { - "pk": 1539, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DOUILLET", - "center": "POINT (422773.3768506781198084 2366733.4152228268794715)", - "surface": 19220000, - "canton": null, - "numero_insee": "72121" - } - }, - { - "pk": 1527, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DUNEAU", - "center": "POINT (465706.3721999139524996 2342370.2746490896679461)", - "surface": 12920000, - "canton": null, - "numero_insee": "72122" - } - }, - { - "pk": 2655, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "DUREIL", - "center": "POINT (414974.8486481214058585 2317332.1947220955044031)", - "surface": 8110000, - "canton": null, - "numero_insee": "72123" - } - }, - { - "pk": 2283, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ECOMMOY", - "center": "POINT (446310.7944353499915451 2315889.7488827714696527)", - "surface": 28710000, - "canton": null, - "numero_insee": "72124" - } - }, - { - "pk": 2482, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ECORPAIN", - "center": "POINT (473032.4238059310591780 2327820.0245108208619058)", - "surface": 21450000, - "canton": null, - "numero_insee": "72125" - } - }, - { - "pk": 2060, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "EPINEU-LE-CHEVREUIL", - "center": "POINT (415882.4588075730134733 2340757.4247846300713718)", - "surface": 14770000, - "canton": null, - "numero_insee": "72126" - } - }, - { - "pk": 2005, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ETIVAL-LES-LE-MANS", - "center": "POINT (431268.9238765569170937 2331677.5133904763497412)", - "surface": 10350000, - "canton": null, - "numero_insee": "72127" - } - }, - { - "pk": 2545, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "EVAILLE", - "center": "POINT (472165.8285689743934199 2323709.7216446017846465)", - "surface": 19460000, - "canton": null, - "numero_insee": "72128" - } - }, - { - "pk": 2011, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FATINES", - "center": "POINT (450711.1020462293527089 2340444.7397446981631219)", - "surface": 5420000, - "canton": null, - "numero_insee": "72129" - } - }, - { - "pk": 2875, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FAY", - "center": "POINT (430933.9992469770368189 2335877.9145796173252165)", - "surface": 9420000, - "canton": null, - "numero_insee": "72130" - } - }, - { - "pk": 2653, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FERCE-SUR-SARTHE", - "center": "POINT (422620.7595215007895604 2324600.7889109752140939)", - "surface": 12180000, - "canton": null, - "numero_insee": "72131" - } - }, - { - "pk": 2905, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA FERTE-BERNARD", - "center": "POINT (473405.4302072582067922 2355243.6005420270375907)", - "surface": 15640000, - "canton": null, - "numero_insee": "72132" - } - }, - { - "pk": 2107, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FILLE", - "center": "POINT (433926.9390486694755964 2324894.3158329385332763)", - "surface": 10140000, - "canton": null, - "numero_insee": "72133" - } - }, - { - "pk": 1626, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FLEE", - "center": "POINT (459009.1261755197774619 2305186.5283286729827523)", - "surface": 17530000, - "canton": null, - "numero_insee": "72134" - } - }, - { - "pk": 2748, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA FONTAINE-SAINT-MARTIN", - "center": "POINT (428421.4085463592200540 2312939.7192806121893227)", - "surface": 13840000, - "canton": null, - "numero_insee": "72135" - } - }, - { - "pk": 2885, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FONTENAY-SUR-VEGRE", - "center": "POINT (409197.4400374642573297 2326191.3537070788443089)", - "surface": 11420000, - "canton": null, - "numero_insee": "72136" - } - }, - { - "pk": 2279, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA FRESNAYE-SUR-CHEDOUET", - "center": "POINT (444545.4835181405069306 2384125.6980502847582102)", - "surface": 31470000, - "canton": null, - "numero_insee": "72137" - } - }, - { - "pk": 1847, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FRESNAY-SUR-SARTHE", - "center": "POINT (428173.6364174276823178 2367178.2882151496596634)", - "surface": 2100000, - "canton": null, - "numero_insee": "72138" - } - }, - { - "pk": 2442, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "FYE", - "center": "POINT (432739.4710558836231939 2371719.2666940232738853)", - "surface": 16330000, - "canton": null, - "numero_insee": "72139" - } - }, - { - "pk": 2687, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "GESNES-LE-GANDELIN", - "center": "POINT (429003.9895577575080097 2375691.3042804030701518)", - "surface": 13020000, - "canton": null, - "numero_insee": "72141" - } - }, - { - "pk": 1877, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "GRANDCHAMP", - "center": "POINT (440061.6307325657107867 2369678.2545501161366701)", - "surface": 5520000, - "canton": null, - "numero_insee": "72142" - } - }, - { - "pk": 2190, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE GRAND-LUCE", - "center": "POINT (459784.5908659264096059 2320304.5837537101469934)", - "surface": 27430000, - "canton": null, - "numero_insee": "72143" - } - }, - { - "pk": 1695, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "GREEZ-SUR-ROC", - "center": "POINT (487362.0785804704646580 2349655.2169506107456982)", - "surface": 25390000, - "canton": null, - "numero_insee": "72144" - } - }, - { - "pk": 1733, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE GREZ", - "center": "POINT (414644.7097375454031862 2357359.5419897628016770)", - "surface": 7380000, - "canton": null, - "numero_insee": "72145" - } - }, - { - "pk": 1834, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "GUECELARD", - "center": "POINT (435845.6232491296250373 2322808.5715179289691150)", - "surface": 12150000, - "canton": null, - "numero_insee": "72146" - } - }, - { - "pk": 2989, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA GUIERCHE", - "center": "POINT (440935.8302582061151043 2348670.0661415299400687)", - "surface": 7910000, - "canton": null, - "numero_insee": "72147" - } - }, - { - "pk": 1639, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "JAUZE", - "center": "POINT (454763.1784121660166420 2358691.7752531943842769)", - "surface": 5720000, - "canton": null, - "numero_insee": "72148" - } - }, - { - "pk": 1984, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "JOUE-EN-CHARNIE", - "center": "POINT (411100.6410354975378141 2338116.0399741614237428)", - "surface": 23560000, - "canton": null, - "numero_insee": "72149" - } - }, - { - "pk": 2760, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "JOUE-L'ABBE", - "center": "POINT (443048.0034281067783013 2347386.5658913752995431)", - "surface": 10460000, - "canton": null, - "numero_insee": "72150" - } - }, - { - "pk": 1592, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "JUIGNE-SUR-SARTHE", - "center": "POINT (403327.1569538527401164 2322039.8483013524673879)", - "surface": 20510000, - "canton": null, - "numero_insee": "72151" - } - }, - { - "pk": 2979, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "JUILLE", - "center": "POINT (435714.1402614376274869 2362937.4403077014721930)", - "surface": 5730000, - "canton": null, - "numero_insee": "72152" - } - }, - { - "pk": 2835, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "JUPILLES", - "center": "POINT (455650.4435350221465342 2311963.9728791783563793)", - "surface": 26540000, - "canton": null, - "numero_insee": "72153" - } - }, - { - "pk": 2162, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA FLECHE", - "center": "POINT (419708.5443821571534500 2301559.0273033031262457)", - "surface": 79130000, - "canton": null, - "numero_insee": "72154" - } - }, - { - "pk": 2603, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LAIGNE-EN-BELIN", - "center": "POINT (442666.8961375281214714 2320863.4387405961751938)", - "surface": 12760000, - "canton": null, - "numero_insee": "72155" - } - }, - { - "pk": 1756, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LAMNAY", - "center": "POINT (478782.8699759860755876 2346381.6228341688401997)", - "surface": 22210000, - "canton": null, - "numero_insee": "72156" - } - }, - { - "pk": 1812, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LAVARDIN", - "center": "POINT (430556.9221428435994312 2345181.7651282977312803)", - "surface": 7570000, - "canton": null, - "numero_insee": "72157" - } - }, - { - "pk": 1585, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LAVARE", - "center": "POINT (474723.2654675900121219 2341144.0648337788879871)", - "surface": 23060000, - "canton": null, - "numero_insee": "72158" - } - }, - { - "pk": 1922, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LAVENAY", - "center": "POINT (476378.2593679816927761 2310534.5429775952361524)", - "surface": 7740000, - "canton": null, - "numero_insee": "72159" - } - }, - { - "pk": 2264, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LAVERNAT", - "center": "POINT (450613.1204307038569823 2303916.0775577886961401)", - "surface": 22830000, - "canton": null, - "numero_insee": "72160" - } - }, - { - "pk": 2199, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LHOMME", - "center": "POINT (467089.9702934140805155 2308255.8141003041528165)", - "surface": 18340000, - "canton": null, - "numero_insee": "72161" - } - }, - { - "pk": 2629, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LIGNIERES-LA-CARELLE", - "center": "POINT (439845.7564874993986450 2383686.5535163609310985)", - "surface": 6790000, - "canton": null, - "numero_insee": "72162" - } - }, - { - "pk": 2915, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LIGRON", - "center": "POINT (423838.8306198487989604 2310399.9499941989779472)", - "surface": 13650000, - "canton": null, - "numero_insee": "72163" - } - }, - { - "pk": 1699, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LIVET-EN-SAOSNOIS", - "center": "POINT (442418.5278355363989249 2375101.6485229320824146)", - "surface": 1660000, - "canton": null, - "numero_insee": "72164" - } - }, - { - "pk": 2242, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LOMBRON", - "center": "POINT (456580.3122764669824392 2344696.4638592367991805)", - "surface": 24160000, - "canton": null, - "numero_insee": "72165" - } - }, - { - "pk": 2654, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LONGNES", - "center": "POINT (419303.7647437501582317 2338483.9256218895316124)", - "surface": 6470000, - "canton": null, - "numero_insee": "72166" - } - }, - { - "pk": 1889, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LOUAILLES", - "center": "POINT (406908.7728932715253904 2312461.9932783595286310)", - "surface": 10540000, - "canton": null, - "numero_insee": "72167" - } - }, - { - "pk": 1674, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LOUE", - "center": "POINT (415320.8432094297022559 2336049.2630305942147970)", - "surface": 15820000, - "canton": null, - "numero_insee": "72168" - } - }, - { - "pk": 2271, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LOUPLANDE", - "center": "POINT (428986.3513875856297091 2329356.9185078130103648)", - "surface": 18450000, - "canton": null, - "numero_insee": "72169" - } - }, - { - "pk": 2931, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LOUVIGNY", - "center": "POINT (441636.2070581401931122 2372893.5908294245600700)", - "surface": 8720000, - "canton": null, - "numero_insee": "72170" - } - }, - { - "pk": 2811, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LOUZES", - "center": "POINT (448758.9581380237359554 2382859.6220562895759940)", - "surface": 8270000, - "canton": null, - "numero_insee": "72171" - } - }, - { - "pk": 2550, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE LUART", - "center": "POINT (470298.7056009799125604 2343709.3133145542815328)", - "surface": 12350000, - "canton": null, - "numero_insee": "72172" - } - }, - { - "pk": 2230, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LUCEAU", - "center": "POINT (454017.1871782147791237 2303744.1010241531766951)", - "surface": 17720000, - "canton": null, - "numero_insee": "72173" - } - }, - { - "pk": 2685, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LUCE-SOUS-BALLON", - "center": "POINT (442051.4122039955691434 2358986.8946883864700794)", - "surface": 6830000, - "canton": null, - "numero_insee": "72174" - } - }, - { - "pk": 2598, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LUCHE-PRINGE", - "center": "POINT (431807.2299784200731665 2302859.8648300124332309)", - "surface": 49440000, - "canton": null, - "numero_insee": "72175" - } - }, - { - "pk": 2078, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE LUDE", - "center": "POINT (435757.1442665404174477 2297188.0555792115628719)", - "surface": 46140000, - "canton": null, - "numero_insee": "72176" - } - }, - { - "pk": 1607, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAIGNE", - "center": "POINT (421281.0411666579311714 2329293.3023141804151237)", - "surface": 11460000, - "canton": null, - "numero_insee": "72177" - } - }, - { - "pk": 2735, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAISONCELLES", - "center": "POINT (468527.6616741829784587 2327982.8226404208689928)", - "surface": 11320000, - "canton": null, - "numero_insee": "72178" - } - }, - { - "pk": 2066, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MALICORNE-SUR-SARTHE", - "center": "POINT (418393.7402034661499783 2315358.8636502046138048)", - "surface": 15180000, - "canton": null, - "numero_insee": "72179" - } - }, - { - "pk": 1754, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAMERS", - "center": "POINT (454231.2011467405245639 2374598.9460093094967306)", - "surface": 5150000, - "canton": null, - "numero_insee": "72180" - } - }, - { - "pk": 2251, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE MANS", - "center": "POINT (440454.5638255334924906 2334255.3150207749567926)", - "surface": 52600000, - "canton": null, - "numero_insee": "72181" - } - }, - { - "pk": 2461, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MANSIGNE", - "center": "POINT (434776.2796752263093367 2306887.5060639777220786)", - "surface": 36470000, - "canton": null, - "numero_insee": "72182" - } - }, - { - "pk": 2231, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MARCON", - "center": "POINT (464138.4430705899139866 2302126.6160864359699190)", - "surface": 30350000, - "canton": null, - "numero_insee": "72183" - } - }, - { - "pk": 1849, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAREIL-EN-CHAMPAGNE", - "center": "POINT (412133.5046467711217701 2334221.6205653264187276)", - "surface": 7910000, - "canton": null, - "numero_insee": "72184" - } - }, - { - "pk": 2741, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAREIL-SUR-LOIR", - "center": "POINT (425286.0875882224063389 2304807.5593766672536731)", - "surface": 12040000, - "canton": null, - "numero_insee": "72185" - } - }, - { - "pk": 1942, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MARESCHE", - "center": "POINT (437352.4179403446614742 2358447.6813084618188441)", - "surface": 14950000, - "canton": null, - "numero_insee": "72186" - } - }, - { - "pk": 2047, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MARIGNE-LAILLE", - "center": "POINT (451321.7462253172416240 2315030.5231849919073284)", - "surface": 33430000, - "canton": null, - "numero_insee": "72187" - } - }, - { - "pk": 1748, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAROLLETTE", - "center": "POINT (453710.1671024907263927 2377096.4347274680621922)", - "surface": 5770000, - "canton": null, - "numero_insee": "72188" - } - }, - { - "pk": 2436, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAROLLES-LES-BRAULTS", - "center": "POINT (450219.6074197529815137 2363557.7569398321211338)", - "surface": 20640000, - "canton": null, - "numero_insee": "72189" - } - }, - { - "pk": 1515, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAROLLES-LES-SAINT-CALAIS", - "center": "POINT (484561.9529561945819296 2325313.7262623962014914)", - "surface": 12070000, - "canton": null, - "numero_insee": "72190" - } - }, - { - "pk": 1529, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MAYET", - "center": "POINT (445765.8406565091572702 2309180.0769012533128262)", - "surface": 54150000, - "canton": null, - "numero_insee": "72191" - } - }, - { - "pk": 2666, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LES MEES", - "center": "POINT (444059.2946809838758782 2370311.7445793151855469)", - "surface": 6830000, - "canton": null, - "numero_insee": "72192" - } - }, - { - "pk": 2218, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MELLERAY", - "center": "POINT (486499.6979961872566491 2345044.6385373994708061)", - "surface": 25800000, - "canton": null, - "numero_insee": "72193" - } - }, - { - "pk": 2500, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MEURCE", - "center": "POINT (441326.9525591581477784 2361883.0304621434770525)", - "surface": 6150000, - "canton": null, - "numero_insee": "72194" - } - }, - { - "pk": 2065, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MEZERAY", - "center": "POINT (423884.3760013181599788 2317005.4089937219396234)", - "surface": 33210000, - "canton": null, - "numero_insee": "72195" - } - }, - { - "pk": 2611, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MEZIERES-SUR-PONTHOUIN", - "center": "POINT (448365.5409831437282264 2357838.2389346761628985)", - "surface": 18070000, - "canton": null, - "numero_insee": "72196" - } - }, - { - "pk": 2746, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MEZIERES-SOUS-LAVARDIN", - "center": "POINT (429690.2618683346081525 2353180.5441130781546235)", - "surface": 15330000, - "canton": null, - "numero_insee": "72197" - } - }, - { - "pk": 1610, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA MILESSE", - "center": "POINT (435977.9442185508669354 2343124.9878569897264242)", - "surface": 10490000, - "canton": null, - "numero_insee": "72198" - } - }, - { - "pk": 2127, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MOITRON-SUR-SARTHE", - "center": "POINT (430907.6520436064456590 2363298.0227004634216428)", - "surface": 10340000, - "canton": null, - "numero_insee": "72199" - } - }, - { - "pk": 2676, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONCE-EN-BELIN", - "center": "POINT (439936.8869886853499338 2324243.4582016658969223)", - "surface": 17570000, - "canton": null, - "numero_insee": "72200" - } - }, - { - "pk": 2843, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONCE-EN-SAOSNOIS", - "center": "POINT (455307.2421231134212576 2365501.2541060680523515)", - "surface": 8920000, - "canton": null, - "numero_insee": "72201" - } - }, - { - "pk": 1796, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONHOUDOU", - "center": "POINT (450789.3649253186304122 2367265.1691605974920094)", - "surface": 7560000, - "canton": null, - "numero_insee": "72202" - } - }, - { - "pk": 1597, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTABON", - "center": "POINT (454051.9854183198185638 2299541.1169278039596975)", - "surface": 7620000, - "canton": null, - "numero_insee": "72203" - } - }, - { - "pk": 1613, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTAILLE", - "center": "POINT (476619.9615648867329583 2329651.1474017035216093)", - "surface": 30550000, - "canton": null, - "numero_insee": "72204" - } - }, - { - "pk": 2785, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTBIZOT", - "center": "POINT (439702.7581053597386926 2352562.7609255001880229)", - "surface": 11400000, - "canton": null, - "numero_insee": "72205" - } - }, - { - "pk": 1844, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTIGNY", - "center": "POINT (440727.3115050925407559 2385995.4828178943134844)", - "surface": 3850000, - "canton": null, - "numero_insee": "72207" - } - }, - { - "pk": 2176, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTMIRAIL", - "center": "POINT (483385.9734046275261790 2346419.8275614064186811)", - "surface": 12580000, - "canton": null, - "numero_insee": "72208" - } - }, - { - "pk": 2949, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTREUIL-LE-CHETIF", - "center": "POINT (423506.0507705437485129 2362836.6156128342263401)", - "surface": 14720000, - "canton": null, - "numero_insee": "72209" - } - }, - { - "pk": 1522, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTREUIL-LE-HENRI", - "center": "POINT (467897.6911439179675654 2319471.1265391828492284)", - "surface": 14410000, - "canton": null, - "numero_insee": "72210" - } - }, - { - "pk": 2204, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONT-SAINT-JEAN", - "center": "POINT (417998.2744384240941145 2363291.5319762490689754)", - "surface": 42440000, - "canton": null, - "numero_insee": "72211" - } - }, - { - "pk": 2203, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MOULINS-LE-CARBONNEL", - "center": "POINT (425887.0954615164082497 2377466.8657305226661265)", - "surface": 16340000, - "canton": null, - "numero_insee": "72212" - } - }, - { - "pk": 2838, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MULSANNE", - "center": "POINT (443522.0017496640793979 2326374.7020225450396538)", - "surface": 15270000, - "canton": null, - "numero_insee": "72213" - } - }, - { - "pk": 2506, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NAUVAY", - "center": "POINT (455624.8383070221752860 2363402.3512086751870811)", - "surface": 2740000, - "canton": null, - "numero_insee": "72214" - } - }, - { - "pk": 2514, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NEUFCHATEL-EN-SAOSNOIS", - "center": "POINT (444992.0869426753488369 2378525.3792659621685743)", - "surface": 23360000, - "canton": null, - "numero_insee": "72215" - } - }, - { - "pk": 2537, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NEUVILLALAIS", - "center": "POINT (425587.5115648995852098 2353146.6655376413837075)", - "surface": 18970000, - "canton": null, - "numero_insee": "72216" - } - }, - { - "pk": 1907, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NEUVILLE-SUR-SARTHE", - "center": "POINT (441776.0865129059529863 2343873.4413700732402503)", - "surface": 22990000, - "canton": null, - "numero_insee": "72217" - } - }, - { - "pk": 2061, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NEUVILLETTE-EN-CHARNIE", - "center": "POINT (410434.2319131119293161 2346116.5304742604494095)", - "surface": 14610000, - "canton": null, - "numero_insee": "72218" - } - }, - { - "pk": 2012, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NEUVY-EN-CHAMPAGNE", - "center": "POINT (424255.1344721353962086 2344829.5041756192222238)", - "surface": 14910000, - "canton": null, - "numero_insee": "72219" - } - }, - { - "pk": 2096, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NOGENT-LE-BERNARD", - "center": "POINT (463745.9520417198073119 2361568.2258663382381201)", - "surface": 30410000, - "canton": null, - "numero_insee": "72220" - } - }, - { - "pk": 1930, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NOGENT-SUR-LOIR", - "center": "POINT (454373.7417285852134228 2296941.7483905502595007)", - "surface": 10840000, - "canton": null, - "numero_insee": "72221" - } - }, - { - "pk": 1841, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NOUANS", - "center": "POINT (443328.2795071348082274 2361899.5792459817603230)", - "surface": 10100000, - "canton": null, - "numero_insee": "72222" - } - }, - { - "pk": 2910, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NOYEN-SUR-SARTHE", - "center": "POINT (417650.3166042922530323 2320556.7177833858877420)", - "surface": 42870000, - "canton": null, - "numero_insee": "72223" - } - }, - { - "pk": 1894, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NUILLE-LE-JALAIS", - "center": "POINT (461946.0760639255167916 2337235.2956528207287192)", - "surface": 5740000, - "canton": null, - "numero_insee": "72224" - } - }, - { - "pk": 2772, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "OISSEAU-LE-PETIT", - "center": "POINT (432215.1714567015878856 2374617.0327079901471734)", - "surface": 8540000, - "canton": null, - "numero_insee": "72225" - } - }, - { - "pk": 1931, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "OIZE", - "center": "POINT (433118.9213204670813866 2313679.0644754944369197)", - "surface": 16850000, - "canton": null, - "numero_insee": "72226" - } - }, - { - "pk": 1883, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PANON", - "center": "POINT (448940.1582004858646542 2373054.0740742208436131)", - "surface": 2360000, - "canton": null, - "numero_insee": "72227" - } - }, - { - "pk": 2412, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PARCE-SUR-SARTHE", - "center": "POINT (410477.4766083886497654 2316594.5685966727323830)", - "surface": 40680000, - "canton": null, - "numero_insee": "72228" - } - }, - { - "pk": 1762, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PARENNES", - "center": "POINT (412208.2216907455585897 2349433.6106491396203637)", - "surface": 14530000, - "canton": null, - "numero_insee": "72229" - } - }, - { - "pk": 2699, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PARIGNE-LE-POLIN", - "center": "POINT (434470.2861774913035333 2319694.8369479929096997)", - "surface": 13960000, - "canton": null, - "numero_insee": "72230" - } - }, - { - "pk": 1969, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PARIGNE-L'EVEQUE", - "center": "POINT (453119.5253082398558035 2327554.9510522549971938)", - "surface": 63530000, - "canton": null, - "numero_insee": "72231" - } - }, - { - "pk": 1991, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "NOTRE-DAME-DU-PE", - "center": "POINT (399453.7742529122624546 2306295.8469065856188536)", - "surface": 7710000, - "canton": null, - "numero_insee": "72232" - } - }, - { - "pk": 2529, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PERAY", - "center": "POINT (453927.0264297880348749 2362988.0032477234490216)", - "surface": 2440000, - "canton": null, - "numero_insee": "72233" - } - }, - { - "pk": 2786, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PEZE-LE-ROBERT", - "center": "POINT (423141.3002900544088334 2358530.4522083285264671)", - "surface": 16300000, - "canton": null, - "numero_insee": "72234" - } - }, - { - "pk": 2902, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PIACE", - "center": "POINT (434993.8317664070054889 2365333.2407702291384339)", - "surface": 10120000, - "canton": null, - "numero_insee": "72235" - } - }, - { - "pk": 2799, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PINCE", - "center": "POINT (397386.4310906543978490 2314285.0075284671038389)", - "surface": 5790000, - "canton": null, - "numero_insee": "72236" - } - }, - { - "pk": 2068, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PIRMIL", - "center": "POINT (418604.7745540039613843 2326168.8638653610832989)", - "surface": 17600000, - "canton": null, - "numero_insee": "72237" - } - }, - { - "pk": 2555, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PIZIEUX", - "center": "POINT (451357.4631316409213468 2371172.7018816061317921)", - "surface": 4480000, - "canton": null, - "numero_insee": "72238" - } - }, - { - "pk": 2250, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "POILLE-SUR-VEGRE", - "center": "POINT (404985.4599697738303803 2327257.4746025344356894)", - "surface": 17560000, - "canton": null, - "numero_insee": "72239" - } - }, - { - "pk": 1749, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PONCE-SUR-LE-LOIR", - "center": "POINT (474084.9432765337405726 2309514.7457628552801907)", - "surface": 6830000, - "canton": null, - "numero_insee": "72240" - } - }, - { - "pk": 1751, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "MONTFORT-LE-GESNOIS", - "center": "POINT (455805.4561343324603513 2341587.7337308414280415)", - "surface": 18740000, - "canton": null, - "numero_insee": "72241" - } - }, - { - "pk": 1573, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PONTVALLAIN", - "center": "POINT (439764.9207180103985593 2308730.1371984900906682)", - "surface": 35320000, - "canton": null, - "numero_insee": "72243" - } - }, - { - "pk": 2788, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PRECIGNE", - "center": "POINT (401020.2845249496749602 2310512.0046192142181098)", - "surface": 58400000, - "canton": null, - "numero_insee": "72244" - } - }, - { - "pk": 1643, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PREVAL", - "center": "POINT (472365.7605949874268845 2359938.4323726091533899)", - "surface": 7620000, - "canton": null, - "numero_insee": "72245" - } - }, - { - "pk": 2397, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PREVELLES", - "center": "POINT (461422.2824348292779177 2352142.0597160221077502)", - "surface": 4830000, - "canton": null, - "numero_insee": "72246" - } - }, - { - "pk": 2008, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PRUILLE-LE-CHETIF", - "center": "POINT (433443.9780878828605637 2334897.8978952667675912)", - "surface": 10440000, - "canton": null, - "numero_insee": "72247" - } - }, - { - "pk": 2558, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "PRUILLE-L'EGUILLE", - "center": "POINT (456608.0536090737441555 2317175.9011564194224775)", - "surface": 21230000, - "canton": null, - "numero_insee": "72248" - } - }, - { - "pk": 1870, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA QUINTE", - "center": "POINT (428885.5228113399934955 2341565.2721017501316965)", - "surface": 8850000, - "canton": null, - "numero_insee": "72249" - } - }, - { - "pk": 1685, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "RAHAY", - "center": "POINT (486026.4268856894923374 2329729.2234581941738725)", - "surface": 18920000, - "canton": null, - "numero_insee": "72250" - } - }, - { - "pk": 1828, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "RENE", - "center": "POINT (442591.4070778308669105 2366296.6984951877966523)", - "surface": 12610000, - "canton": null, - "numero_insee": "72251" - } - }, - { - "pk": 2018, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "REQUEIL", - "center": "POINT (436736.3356525060953572 2311907.5724004721269011)", - "surface": 14090000, - "canton": null, - "numero_insee": "72252" - } - }, - { - "pk": 2503, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ROEZE-SUR-SARTHE", - "center": "POINT (430632.0921331244171597 2323966.4087906912900507)", - "surface": 26840000, - "canton": null, - "numero_insee": "72253" - } - }, - { - "pk": 2665, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ROUESSE-FONTAINE", - "center": "POINT (437648.4742726372787729 2371059.3228572183288634)", - "surface": 12520000, - "canton": null, - "numero_insee": "72254" - } - }, - { - "pk": 2185, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ROUESSE-VASSE", - "center": "POINT (411272.9638756371568888 2353629.0101548940874636)", - "surface": 31760000, - "canton": null, - "numero_insee": "72255" - } - }, - { - "pk": 1570, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ROUEZ", - "center": "POINT (417094.1898299910826609 2351575.4639576082117856)", - "surface": 33570000, - "canton": null, - "numero_insee": "72256" - } - }, - { - "pk": 2713, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ROUILLON", - "center": "POINT (436239.2796491619665176 2335721.5996225280687213)", - "surface": 9170000, - "canton": null, - "numero_insee": "72257" - } - }, - { - "pk": 1565, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ROULLEE", - "center": "POINT (449230.3042666127439588 2386366.0201921211555600)", - "surface": 20120000, - "canton": null, - "numero_insee": "72258" - } - }, - { - "pk": 2569, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "ROUPERROUX-LE-COQUET", - "center": "POINT (458951.0561679763486609 2360527.7729458976536989)", - "surface": 12130000, - "canton": null, - "numero_insee": "72259" - } - }, - { - "pk": 1768, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "RUAUDIN", - "center": "POINT (445300.8963377529871650 2329091.4645609077997506)", - "surface": 13870000, - "canton": null, - "numero_insee": "72260" - } - }, - { - "pk": 1676, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "RUILLE-EN-CHAMPAGNE", - "center": "POINT (417168.4846639758907259 2342569.3803028808906674)", - "surface": 15010000, - "canton": null, - "numero_insee": "72261" - } - }, - { - "pk": 2114, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "RUILLE-SUR-LOIR", - "center": "POINT (471171.2842553823138587 2310891.6615108712576330)", - "surface": 39710000, - "canton": null, - "numero_insee": "72262" - } - }, - { - "pk": 2075, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SABLE-SUR-SARTHE", - "center": "POINT (398550.1874275936279446 2318798.0493195033632219)", - "surface": 36940000, - "canton": null, - "numero_insee": "72264" - } - }, - { - "pk": 2684, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-AIGNAN", - "center": "POINT (452054.7553212333004922 2359469.9428736856207252)", - "surface": 15190000, - "canton": null, - "numero_insee": "72265" - } - }, - { - "pk": 2779, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-AUBIN-DE-LOCQUENAY", - "center": "POINT (427093.5662622305098921 2364667.5473926370032132)", - "surface": 17510000, - "canton": null, - "numero_insee": "72266" - } - }, - { - "pk": 1604, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-AUBIN-DES-COUDRAIS", - "center": "POINT (469206.7727500486653298 2354708.4171537919901311)", - "surface": 17390000, - "canton": null, - "numero_insee": "72267" - } - }, - { - "pk": 2793, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-BIEZ-EN-BELIN", - "center": "POINT (442813.3114925433183089 2315260.3577381260693073)", - "surface": 9300000, - "canton": null, - "numero_insee": "72268" - } - }, - { - "pk": 2376, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-CALAIS", - "center": "POINT (481252.1965605907607824 2326186.9339593830518425)", - "surface": 22810000, - "canton": null, - "numero_insee": "72269" - } - }, - { - "pk": 2701, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-CALEZ-EN-SAOSNOIS", - "center": "POINT (449669.5959961034823209 2369557.5743338628672063)", - "surface": 7290000, - "canton": null, - "numero_insee": "72270" - } - }, - { - "pk": 1578, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-CELERIN", - "center": "POINT (458244.9980157378595322 2349113.5207816590555012)", - "surface": 13510000, - "canton": null, - "numero_insee": "72271" - } - }, - { - "pk": 2134, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINTE-CEROTTE", - "center": "POINT (476269.4986684867762960 2323643.6845480022020638)", - "surface": 14360000, - "canton": null, - "numero_insee": "72272" - } - }, - { - "pk": 1506, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-CHRISTOPHE-DU-JAMBET", - "center": "POINT (430919.2235419497592375 2361897.0941061466000974)", - "surface": 11180000, - "canton": null, - "numero_insee": "72273" - } - }, - { - "pk": 2696, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-CHRISTOPHE-EN-CHAMPAGNE", - "center": "POINT (415152.0708482830086723 2332245.0047235684469342)", - "surface": 7680000, - "canton": null, - "numero_insee": "72274" - } - }, - { - "pk": 1660, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-CORNEILLE", - "center": "POINT (451383.4189706820761785 2343852.8449798380024731)", - "surface": 11170000, - "canton": null, - "numero_insee": "72275" - } - }, - { - "pk": 2499, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-COSME-EN-VAIRAIS", - "center": "POINT (460510.6749754773918539 2365544.3444147850386798)", - "surface": 32910000, - "canton": null, - "numero_insee": "72276" - } - }, - { - "pk": 1865, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-DENIS-DES-COUDRAIS", - "center": "POINT (463817.2585661601042375 2352962.4935520910657942)", - "surface": 7130000, - "canton": null, - "numero_insee": "72277" - } - }, - { - "pk": 2441, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-DENIS-D'ORQUES", - "center": "POINT (405180.1178334209835157 2340068.7408305467106402)", - "surface": 47210000, - "canton": null, - "numero_insee": "72278" - } - }, - { - "pk": 1656, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GEORGES-DE-LA-COUEE", - "center": "POINT (469231.7831599015044048 2315479.1207800963893533)", - "surface": 11780000, - "canton": null, - "numero_insee": "72279" - } - }, - { - "pk": 1765, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GEORGES-DU-BOIS", - "center": "POINT (433062.7203124687657692 2332593.0130049241706729)", - "surface": 7260000, - "canton": null, - "numero_insee": "72280" - } - }, - { - "pk": 2152, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GEORGES-DU-ROSAY", - "center": "POINT (465184.1966179516166449 2357076.8425063788890839)", - "surface": 17340000, - "canton": null, - "numero_insee": "72281" - } - }, - { - "pk": 2154, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GEORGES-LE-GAULTIER", - "center": "POINT (418351.4842478382633999 2368998.6010919776745141)", - "surface": 23350000, - "canton": null, - "numero_insee": "72282" - } - }, - { - "pk": 1524, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GERMAIN-D'ARCE", - "center": "POINT (445891.6796778910793364 2293969.2730521089397371)", - "surface": 29300000, - "canton": null, - "numero_insee": "72283" - } - }, - { - "pk": 1646, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GERMAIN-SUR-SARTHE", - "center": "POINT (432278.8208702243864536 2366911.9754525348544121)", - "surface": 14790000, - "canton": null, - "numero_insee": "72284" - } - }, - { - "pk": 2324, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GERVAIS-DE-VIC", - "center": "POINT (479990.3325084598036483 2321472.8822763967327774)", - "surface": 16150000, - "canton": null, - "numero_insee": "72286" - } - }, - { - "pk": 1862, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-GERVAIS-EN-BELIN", - "center": "POINT (440163.5018758941441774 2321042.8907086956314743)", - "surface": 9520000, - "canton": null, - "numero_insee": "72287" - } - }, - { - "pk": 2777, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-HILAIRE-LE-LIERRU", - "center": "POINT (466768.9651016747811809 2346982.5092267873696983)", - "surface": 4600000, - "canton": null, - "numero_insee": "72288" - } - }, - { - "pk": 2524, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINTE-JAMME-SUR-SARTHE", - "center": "POINT (437813.8899929256876931 2351046.0370258432812989)", - "surface": 8590000, - "canton": null, - "numero_insee": "72289" - } - }, - { - "pk": 2186, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-JEAN-D'ASSE", - "center": "POINT (435193.1234086510376073 2353326.0788533743470907)", - "surface": 21290000, - "canton": null, - "numero_insee": "72290" - } - }, - { - "pk": 2530, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-JEAN-DE-LA-MOTTE", - "center": "POINT (428954.8213141426676884 2308941.0360328522510827)", - "surface": 32410000, - "canton": null, - "numero_insee": "72291" - } - }, - { - "pk": 2644, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-JEAN-DES-ECHELLES", - "center": "POINT (480561.6611029842752032 2349098.3893263535574079)", - "surface": 10580000, - "canton": null, - "numero_insee": "72292" - } - }, - { - "pk": 2707, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-JEAN-DU-BOIS", - "center": "POINT (422650.4958361802855507 2320998.2874164907261729)", - "surface": 14640000, - "canton": null, - "numero_insee": "72293" - } - }, - { - "pk": 2070, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-LEONARD-DES-BOIS", - "center": "POINT (420299.1329380903625861 2375519.3769713696092367)", - "surface": 27450000, - "canton": null, - "numero_insee": "72294" - } - }, - { - "pk": 2916, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-LONGIS", - "center": "POINT (451729.5683214107993990 2374578.2398864566348493)", - "surface": 11200000, - "canton": null, - "numero_insee": "72295" - } - }, - { - "pk": 2683, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MAIXENT", - "center": "POINT (474575.8857186525128782 2346847.0921646999195218)", - "surface": 22420000, - "canton": null, - "numero_insee": "72296" - } - }, - { - "pk": 1807, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MARCEAU", - "center": "POINT (435270.8640296142548323 2356028.7131333081051707)", - "surface": 8940000, - "canton": null, - "numero_insee": "72297" - } - }, - { - "pk": 2377, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MARS-DE-LOCQUENAY", - "center": "POINT (463128.9131682058796287 2327337.6220028488896787)", - "surface": 21770000, - "canton": null, - "numero_insee": "72298" - } - }, - { - "pk": 1817, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MARS-D'OUTILLE", - "center": "POINT (450774.1869946222286671 2320730.3597942902706563)", - "surface": 38400000, - "canton": null, - "numero_insee": "72299" - } - }, - { - "pk": 2232, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MARS-LA-BRIERE", - "center": "POINT (453940.6161403983132914 2337168.9964957954362035)", - "surface": 34600000, - "canton": null, - "numero_insee": "72300" - } - }, - { - "pk": 1620, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MARS-SOUS-BALLON", - "center": "POINT (446392.3522841124795377 2354419.4109925660304725)", - "surface": 18250000, - "canton": null, - "numero_insee": "72301" - } - }, - { - "pk": 1927, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MARTIN-DES-MONTS", - "center": "POINT (470533.3619739225832745 2351617.1265879487618804)", - "surface": 5720000, - "canton": null, - "numero_insee": "72302" - } - }, - { - "pk": 2217, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-MICHEL-DE-CHAVAIGNES", - "center": "POINT (468362.0563146421918646 2335887.4154262896627188)", - "surface": 18530000, - "canton": null, - "numero_insee": "72303" - } - }, - { - "pk": 1614, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINTE-OSMANE", - "center": "POINT (470790.5821230183355510 2320595.9525209078565240)", - "surface": 11960000, - "canton": null, - "numero_insee": "72304" - } - }, - { - "pk": 1797, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-OUEN-DE-MIMBRE", - "center": "POINT (430366.8229561069165356 2368197.1281092106364667)", - "surface": 10700000, - "canton": null, - "numero_insee": "72305" - } - }, - { - "pk": 2762, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-OUEN-EN-BELIN", - "center": "POINT (440895.4319560926523991 2317246.0333839212544262)", - "surface": 15270000, - "canton": null, - "numero_insee": "72306" - } - }, - { - "pk": 2844, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-OUEN-EN-CHAMPAGNE", - "center": "POINT (412154.1334545320132747 2331719.9025236694142222)", - "surface": 11230000, - "canton": null, - "numero_insee": "72307" - } - }, - { - "pk": 1914, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-PATERNE", - "center": "POINT (435459.4490518918610178 2381648.8707877085544169)", - "surface": 7210000, - "canton": null, - "numero_insee": "72308" - } - }, - { - "pk": 1564, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-PAUL-LE-GAULTIER", - "center": "POINT (418022.3944380272878334 2372498.4249406196177006)", - "surface": 15180000, - "canton": null, - "numero_insee": "72309" - } - }, - { - "pk": 1835, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-PAVACE", - "center": "POINT (440306.5087395230075344 2340058.4493111083284020)", - "surface": 5190000, - "canton": null, - "numero_insee": "72310" - } - }, - { - "pk": 2658, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-PIERRE-DE-CHEVILLE", - "center": "POINT (456995.4890070287510753 2294561.5777923176065087)", - "surface": 11440000, - "canton": null, - "numero_insee": "72311" - } - }, - { - "pk": 2680, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-PIERRE-DES-BOIS", - "center": "POINT (415272.7747084223665297 2329744.1084545077756047)", - "surface": 7510000, - "canton": null, - "numero_insee": "72312" - } - }, - { - "pk": 2295, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-PIERRE-DES-ORMES", - "center": "POINT (457790.6623905246960931 2367723.4184333160519600)", - "surface": 10210000, - "canton": null, - "numero_insee": "72313" - } - }, - { - "pk": 2518, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-PIERRE-DU-LOROUER", - "center": "POINT (462953.0822642327984795 2312324.6942002912983298)", - "surface": 16670000, - "canton": null, - "numero_insee": "72314" - } - }, - { - "pk": 2533, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-REMY-DE-SILLE", - "center": "POINT (418555.5700864846585318 2356391.0652861404232681)", - "surface": 11430000, - "canton": null, - "numero_insee": "72315" - } - }, - { - "pk": 1856, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-REMY-DES-MONTS", - "center": "POINT (455062.3749030660837889 2370903.1511969775892794)", - "surface": 10250000, - "canton": null, - "numero_insee": "72316" - } - }, - { - "pk": 2349, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-REMY-DU-VAL", - "center": "POINT (445327.8702121548121795 2374225.0586988190189004)", - "surface": 16660000, - "canton": null, - "numero_insee": "72317" - } - }, - { - "pk": 1988, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-RIGOMER-DES-BOIS", - "center": "POINT (439674.5781284448457882 2380182.6321549462154508)", - "surface": 17790000, - "canton": null, - "numero_insee": "72318" - } - }, - { - "pk": 1795, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINTE-SABINE-SUR-LONGEVE", - "center": "POINT (432712.1149083810742013 2350803.7299117995426059)", - "surface": 11870000, - "canton": null, - "numero_insee": "72319" - } - }, - { - "pk": 1816, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-SATURNIN", - "center": "POINT (438688.0480072068748996 2342146.6408009626902640)", - "surface": 9710000, - "canton": null, - "numero_insee": "72320" - } - }, - { - "pk": 2207, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (415346.6273001895751804 2345056.2187714138999581)", - "surface": 22680000, - "canton": null, - "numero_insee": "72321" - } - }, - { - "pk": 2525, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-ULPHACE", - "center": "POINT (488644.6673607671982609 2351867.4972693375311792)", - "surface": 16150000, - "canton": null, - "numero_insee": "72322" - } - }, - { - "pk": 1924, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-VICTEUR", - "center": "POINT (429442.2644183897646144 2371091.5976622398011386)", - "surface": 7150000, - "canton": null, - "numero_insee": "72323" - } - }, - { - "pk": 2806, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-VINCENT-DES-PRES", - "center": "POINT (454285.0442183299455792 2368094.6840865733101964)", - "surface": 10550000, - "canton": null, - "numero_insee": "72324" - } - }, - { - "pk": 2179, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAINT-VINCENT-DU-LOROUER", - "center": "POINT (461028.5353633532067761 2315110.9032658822834492)", - "surface": 26940000, - "canton": null, - "numero_insee": "72325" - } - }, - { - "pk": 1644, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAOSNES", - "center": "POINT (448051.1592222787439823 2371645.7059370758943260)", - "surface": 11400000, - "canton": null, - "numero_insee": "72326" - } - }, - { - "pk": 1763, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SARCE", - "center": "POINT (441800.2611714034574106 2304643.7883754912763834)", - "surface": 11010000, - "canton": null, - "numero_insee": "72327" - } - }, - { - "pk": 1761, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SARGE-LES-LE-MANS", - "center": "POINT (444209.1633597477339208 2340090.7217167126946151)", - "surface": 13970000, - "canton": null, - "numero_insee": "72328" - } - }, - { - "pk": 2439, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAVIGNE-L'EVEQUE", - "center": "POINT (447274.0181417464045808 2344619.4370250725187361)", - "surface": 28410000, - "canton": null, - "numero_insee": "72329" - } - }, - { - "pk": 1625, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SAVIGNE-SOUS-LE-LUDE", - "center": "POINT (429773.5229901438578963 2294636.6535417940467596)", - "surface": 33930000, - "canton": null, - "numero_insee": "72330" - } - }, - { - "pk": 1681, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SCEAUX-SUR-HUISNE", - "center": "POINT (469178.0503350435174070 2346101.8099242998287082)", - "surface": 11710000, - "canton": null, - "numero_insee": "72331" - } - }, - { - "pk": 1601, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SEGRIE", - "center": "POINT (427536.7969410284422338 2359467.4005821500904858)", - "surface": 22180000, - "canton": null, - "numero_insee": "72332" - } - }, - { - "pk": 1805, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SEMUR-EN-VALLON", - "center": "POINT (475757.9799194398801774 2337049.5754376770928502)", - "surface": 15240000, - "canton": null, - "numero_insee": "72333" - } - }, - { - "pk": 2266, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SILLE-LE-GUILLAUME", - "center": "POINT (416349.1467489697970450 2356973.3054842990823090)", - "surface": 12990000, - "canton": null, - "numero_insee": "72334" - } - }, - { - "pk": 2903, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SILLE-LE-PHILIPPE", - "center": "POINT (451957.3215362666524015 2347059.9781195996329188)", - "surface": 10670000, - "canton": null, - "numero_insee": "72335" - } - }, - { - "pk": 2800, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOLESMES", - "center": "POINT (404049.9072499334579334 2319343.7377473074011505)", - "surface": 11540000, - "canton": null, - "numero_insee": "72336" - } - }, - { - "pk": 2391, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOUGE-LE-GANELON", - "center": "POINT (423338.2584885537507944 2371041.2024005181156099)", - "surface": 18290000, - "canton": null, - "numero_insee": "72337" - } - }, - { - "pk": 2798, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOUILLE", - "center": "POINT (438932.0006693899631500 2348953.7225274923257530)", - "surface": 4590000, - "canton": null, - "numero_insee": "72338" - } - }, - { - "pk": 2019, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOULIGNE-FLACE", - "center": "POINT (426560.7340089946519583 2332239.0816414444707334)", - "surface": 16490000, - "canton": null, - "numero_insee": "72339" - } - }, - { - "pk": 2568, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOULIGNE-SOUS-BALLON", - "center": "POINT (443721.1654532301472500 2350694.5816958844661713)", - "surface": 12730000, - "canton": null, - "numero_insee": "72340" - } - }, - { - "pk": 2819, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOULITRE", - "center": "POINT (458541.2695007931906730 2337507.3170705274678767)", - "surface": 10990000, - "canton": null, - "numero_insee": "72341" - } - }, - { - "pk": 2515, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOUVIGNE-SUR-MEME", - "center": "POINT (474476.2851590053760447 2358855.1292181028984487)", - "surface": 6500000, - "canton": null, - "numero_insee": "72342" - } - }, - { - "pk": 1648, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SOUVIGNE-SUR-SARTHE", - "center": "POINT (394257.8917080343235284 2317461.7094592661596835)", - "surface": 17240000, - "canton": null, - "numero_insee": "72343" - } - }, - { - "pk": 2930, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SPAY", - "center": "POINT (436608.9593055658042431 2327318.3050571414642036)", - "surface": 14130000, - "canton": null, - "numero_insee": "72344" - } - }, - { - "pk": 1842, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "SURFONDS", - "center": "POINT (460082.0805688505060971 2332716.4660937190055847)", - "surface": 4890000, - "canton": null, - "numero_insee": "72345" - } - }, - { - "pk": 1976, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LA SUZE-SUR-SARTHE", - "center": "POINT (427043.6426669693319127 2322235.4744629510678351)", - "surface": 21470000, - "canton": null, - "numero_insee": "72346" - } - }, - { - "pk": 1705, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TASSE", - "center": "POINT (414020.5719337688060477 2323829.2959174304269254)", - "surface": 10750000, - "canton": null, - "numero_insee": "72347" - } - }, - { - "pk": 1720, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TASSILLE", - "center": "POINT (418532.9417063379078172 2334874.8575501409359276)", - "surface": 6550000, - "canton": null, - "numero_insee": "72348" - } - }, - { - "pk": 2183, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TEILLE", - "center": "POINT (440174.1383160646073520 2356069.2406935254111886)", - "surface": 11630000, - "canton": null, - "numero_insee": "72349" - } - }, - { - "pk": 2551, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TELOCHE", - "center": "POINT (446050.2209726239088923 2323193.1791059067472816)", - "surface": 22830000, - "canton": null, - "numero_insee": "72350" - } - }, - { - "pk": 2062, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TENNIE", - "center": "POINT (419522.2250945258419961 2348393.1222971021197736)", - "surface": 33180000, - "canton": null, - "numero_insee": "72351" - } - }, - { - "pk": 2994, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TERREHAULT", - "center": "POINT (456471.7670517286751419 2357805.2603382458910346)", - "surface": 5830000, - "canton": null, - "numero_insee": "72352" - } - }, - { - "pk": 2194, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "THELIGNY", - "center": "POINT (484627.0319976955652237 2353635.4640389150008559)", - "surface": 14490000, - "canton": null, - "numero_insee": "72353" - } - }, - { - "pk": 2646, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "THOIGNE", - "center": "POINT (445086.4357857898576185 2367117.9148242278024554)", - "surface": 7320000, - "canton": null, - "numero_insee": "72354" - } - }, - { - "pk": 2840, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "THOIRE-SOUS-CONTENSOR", - "center": "POINT (441857.8497022718656808 2370293.5403636144474149)", - "surface": 6050000, - "canton": null, - "numero_insee": "72355" - } - }, - { - "pk": 2940, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "THOIRE-SUR-DINAN", - "center": "POINT (459478.8091055743861943 2308893.2856500111520290)", - "surface": 17750000, - "canton": null, - "numero_insee": "72356" - } - }, - { - "pk": 2936, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "THOREE-LES-PINS", - "center": "POINT (427036.8775857662549242 2298817.3402645005844533)", - "surface": 28120000, - "canton": null, - "numero_insee": "72357" - } - }, - { - "pk": 1619, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "THORIGNE-SUR-DUE", - "center": "POINT (464439.4893616089248098 2338256.7063685166649520)", - "surface": 19300000, - "canton": null, - "numero_insee": "72358" - } - }, - { - "pk": 2233, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TORCE-EN-VALLEE", - "center": "POINT (455236.3506066499394365 2349889.2007306660525501)", - "surface": 17010000, - "canton": null, - "numero_insee": "72359" - } - }, - { - "pk": 2637, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TRANGE", - "center": "POINT (434311.5192491052439436 2338908.0732739446684718)", - "surface": 11240000, - "canton": null, - "numero_insee": "72360" - } - }, - { - "pk": 2219, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TRESSON", - "center": "POINT (466858.8388089352520183 2324066.0254991115070879)", - "surface": 29500000, - "canton": null, - "numero_insee": "72361" - } - }, - { - "pk": 2846, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "LE TRONCHET", - "center": "POINT (432270.5122556990245357 2355803.7759874677285552)", - "surface": 3890000, - "canton": null, - "numero_insee": "72362" - } - }, - { - "pk": 1668, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "TUFFE", - "center": "POINT (463855.4002660526894033 2348359.4034724943339825)", - "surface": 24770000, - "canton": null, - "numero_insee": "72363" - } - }, - { - "pk": 2897, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VAAS", - "center": "POINT (448152.7517798913177103 2298891.8193190437741578)", - "surface": 30370000, - "canton": null, - "numero_insee": "72364" - } - }, - { - "pk": 1519, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VALENNES", - "center": "POINT (485681.3501499055419117 2335130.4326502671465278)", - "surface": 26710000, - "canton": null, - "numero_insee": "72366" - } - }, - { - "pk": 1714, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VALLON-SUR-GEE", - "center": "POINT (419159.7754380723345093 2331677.6139943981543183)", - "surface": 17290000, - "canton": null, - "numero_insee": "72367" - } - }, - { - "pk": 1989, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VANCE", - "center": "POINT (474428.7781089861528017 2316322.8339090188965201)", - "surface": 12600000, - "canton": null, - "numero_insee": "72368" - } - }, - { - "pk": 1891, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VERNEIL-LE-CHETIF", - "center": "POINT (447108.1554955515312031 2304187.3060386679135263)", - "surface": 14790000, - "canton": null, - "numero_insee": "72369" - } - }, - { - "pk": 2969, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VERNIE", - "center": "POINT (427564.0643470527138561 2356165.1989532364532351)", - "surface": 9940000, - "canton": null, - "numero_insee": "72370" - } - }, - { - "pk": 2795, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VEZOT", - "center": "POINT (448626.7154157200129703 2374652.6364927911199629)", - "surface": 6360000, - "canton": null, - "numero_insee": "72372" - } - }, - { - "pk": 2487, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VIBRAYE", - "center": "POINT (480938.2713942116242833 2339894.6599521734751761)", - "surface": 43780000, - "canton": null, - "numero_insee": "72373" - } - }, - { - "pk": 2488, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VILLAINES-LA-CARELLE", - "center": "POINT (448695.3204879086697474 2378455.9409166942350566)", - "surface": 14790000, - "canton": null, - "numero_insee": "72374" - } - }, - { - "pk": 2477, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VILLAINES-LA-GONAIS", - "center": "POINT (471350.4937941811513156 2349622.4212001198902726)", - "surface": 10400000, - "canton": null, - "numero_insee": "72375" - } - }, - { - "pk": 2109, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VILLAINES-SOUS-LUCE", - "center": "POINT (462775.0695760787348263 2321730.4282860714010894)", - "surface": 25520000, - "canton": null, - "numero_insee": "72376" - } - }, - { - "pk": 2166, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VILLAINES-SOUS-MALICORNE", - "center": "POINT (416943.0502092206734233 2309242.1890613008290529)", - "surface": 19440000, - "canton": null, - "numero_insee": "72377" - } - }, - { - "pk": 2770, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VION", - "center": "POINT (405178.7135120878228918 2315950.4302276931703091)", - "surface": 20250000, - "canton": null, - "numero_insee": "72378" - } - }, - { - "pk": 1609, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VIRE-EN-CHAMPAGNE", - "center": "POINT (403817.9137897047912702 2335353.9837081911973655)", - "surface": 11290000, - "canton": null, - "numero_insee": "72379" - } - }, - { - "pk": 1532, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VIVOIN", - "center": "POINT (438420.8925777251715772 2362359.3720574439503253)", - "surface": 18340000, - "canton": null, - "numero_insee": "72380" - } - }, - { - "pk": 1533, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VOIVRES-LES-LE-MANS", - "center": "POINT (431701.4401109163882211 2327778.1324428911320865)", - "surface": 11580000, - "canton": null, - "numero_insee": "72381" - } - }, - { - "pk": 2043, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VOLNAY", - "center": "POINT (460508.0525902649387717 2329617.6515598567202687)", - "surface": 19810000, - "canton": null, - "numero_insee": "72382" - } - }, - { - "pk": 1833, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VOUVRAY-SUR-HUISNE", - "center": "POINT (467090.7328033099765889 2344383.2409438262693584)", - "surface": 3350000, - "canton": null, - "numero_insee": "72383" - } - }, - { - "pk": 1884, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "VOUVRAY-SUR-LOIR", - "center": "POINT (458943.8695576611207798 2300982.7206152263097465)", - "surface": 8110000, - "canton": null, - "numero_insee": "72384" - } - }, - { - "pk": 1815, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "YVRE-LE-POLIN", - "center": "POINT (436992.7070023446576670 2317213.7685135882347822)", - "surface": 21870000, - "canton": null, - "numero_insee": "72385" - } - }, - { - "pk": 2388, - "model": "ishtar_common.town", - "fields": { - "departement": 73, - "name": "YVRE-L'EVEQUE", - "center": "POINT (446728.2496339187491685 2338009.9845923976972699)", - "surface": 27700000, - "canton": null, - "numero_insee": "72386" - } - }, - { - "pk": 6349, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AIGUEBELETTE-LE-LAC", - "center": "POINT (871478.5504303369671106 2066758.7540559945628047)", - "surface": 7840000, - "canton": null, - "numero_insee": "73001" - } - }, - { - "pk": 13250, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AIGUEBELLE", - "center": "POINT (909814.4012774287257344 2066888.7149784183129668)", - "surface": 3960000, - "canton": null, - "numero_insee": "73002" - } - }, - { - "pk": 3716, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AIGUEBLANCHE", - "center": "POINT (926235.0785238989628851 2066329.7926382338628173)", - "surface": 19570000, - "canton": null, - "numero_insee": "73003" - } - }, - { - "pk": 29296, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AILLON-LE-VIEUX", - "center": "POINT (892291.9881201117532328 2079149.5860708516556770)", - "surface": 21410000, - "canton": null, - "numero_insee": "73005" - } - }, - { - "pk": 16354, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AIME", - "center": "POINT (934207.6088519061449915 2070402.5537318547721952)", - "surface": 50590000, - "canton": null, - "numero_insee": "73006" - } - }, - { - "pk": 10781, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AITON", - "center": "POINT (905872.9465413972502574 2071258.9624641609843820)", - "surface": 16260000, - "canton": null, - "numero_insee": "73007" - } - }, - { - "pk": 37898, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AIX-LES-BAINS", - "center": "POINT (877738.7345612018834800 2083728.7897466118447483)", - "surface": 15780000, - "canton": null, - "numero_insee": "73008" - } - }, - { - "pk": 8579, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ALBENS", - "center": "POINT (879851.9590011511463672 2094056.7385524141136557)", - "surface": 15370000, - "canton": null, - "numero_insee": "73010" - } - }, - { - "pk": 35619, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ALBERTVILLE", - "center": "POINT (916787.6797649164218456 2082363.6804658174514771)", - "surface": 17300000, - "canton": null, - "numero_insee": "73011" - } - }, - { - "pk": 5921, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ALBIEZ-LE-JEUNE", - "center": "POINT (915699.2664741654880345 2034507.7933161673136055)", - "surface": 12430000, - "canton": null, - "numero_insee": "73012" - } - }, - { - "pk": 20342, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ALBIEZ-MONTROND", - "center": "POINT (914546.5326659393031150 2028892.2875700977165252)", - "surface": 48800000, - "canton": null, - "numero_insee": "73013" - } - }, - { - "pk": 11186, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ALLONDAZ", - "center": "POINT (914044.7050830367952585 2087044.4834521228913218)", - "surface": 4060000, - "canton": null, - "numero_insee": "73014" - } - }, - { - "pk": 21027, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES ALLUES", - "center": "POINT (932882.7597643926274031 2049971.2700910675339401)", - "surface": 86100000, - "canton": null, - "numero_insee": "73015" - } - }, - { - "pk": 30772, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "APREMONT", - "center": "POINT (881228.5306692369049415 2062037.9776280862279236)", - "surface": 17660000, - "canton": null, - "numero_insee": "73017" - } - }, - { - "pk": 10671, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ARBIN", - "center": "POINT (892025.2599303333554417 2063632.3788178178947419)", - "surface": 1720000, - "canton": null, - "numero_insee": "73018" - } - }, - { - "pk": 31919, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ARGENTINE", - "center": "POINT (912257.1300938513595611 2062205.2403209540061653)", - "surface": 27890000, - "canton": null, - "numero_insee": "73019" - } - }, - { - "pk": 15460, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ARITH", - "center": "POINT (890022.8134620904456824 2086937.4758181720972061)", - "surface": 23960000, - "canton": null, - "numero_insee": "73020" - } - }, - { - "pk": 21962, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ARVILLARD", - "center": "POINT (900026.3487582256784663 2052790.7207481933292001)", - "surface": 29430000, - "canton": null, - "numero_insee": "73021" - } - }, - { - "pk": 29857, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ATTIGNAT-ONCIN", - "center": "POINT (868908.9280693233013153 2062932.9930229161400348)", - "surface": 18570000, - "canton": null, - "numero_insee": "73022" - } - }, - { - "pk": 23252, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AUSSOIS", - "center": "POINT (944698.9964142902754247 2037861.4373401852790266)", - "surface": 42710000, - "canton": null, - "numero_insee": "73023" - } - }, - { - "pk": 20286, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES AVANCHERS-VALMOREL", - "center": "POINT (921089.2071904032491148 2059478.7553832347039133)", - "surface": 27430000, - "canton": null, - "numero_insee": "73024" - } - }, - { - "pk": 29938, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AVRESSIEUX", - "center": "POINT (861950.3148116110824049 2068979.0824285647831857)", - "surface": 8090000, - "canton": null, - "numero_insee": "73025" - } - }, - { - "pk": 19418, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AVRIEUX", - "center": "POINT (946474.1656478185905144 2029368.3592978564556688)", - "surface": 38560000, - "canton": null, - "numero_insee": "73026" - } - }, - { - "pk": 14224, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "AYN", - "center": "POINT (866352.5047586513683200 2069217.1000567604787648)", - "surface": 7450000, - "canton": null, - "numero_insee": "73027" - } - }, - { - "pk": 35228, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA BALME", - "center": "POINT (862348.4333462085342035 2080893.9037745029199868)", - "surface": 9370000, - "canton": null, - "numero_insee": "73028" - } - }, - { - "pk": 26312, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BARBERAZ", - "center": "POINT (881180.2996696571353823 2067642.9744233889505267)", - "surface": 3660000, - "canton": null, - "numero_insee": "73029" - } - }, - { - "pk": 7747, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BARBY", - "center": "POINT (884564.3726307370234281 2069874.2187960161827505)", - "surface": 2520000, - "canton": null, - "numero_insee": "73030" - } - }, - { - "pk": 9229, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BASSENS", - "center": "POINT (881051.7887622291455045 2070945.0466439581941813)", - "surface": 3070000, - "canton": null, - "numero_insee": "73031" - } - }, - { - "pk": 28349, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA BATHIE", - "center": "POINT (922419.4056538792792708 2079309.3433996450621635)", - "surface": 22200000, - "canton": null, - "numero_insee": "73032" - } - }, - { - "pk": 26774, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA BAUCHE", - "center": "POINT (868339.3625330197392032 2059324.6100682970136404)", - "surface": 6580000, - "canton": null, - "numero_insee": "73033" - } - }, - { - "pk": 14583, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BEAUFORT", - "center": "POINT (932178.7426968233194202 2085099.1117266693618149)", - "surface": 152750000, - "canton": null, - "numero_insee": "73034" - } - }, - { - "pk": 17814, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BELLECOMBE-EN-BAUGES", - "center": "POINT (896210.1326750519219786 2089092.7718435737770051)", - "surface": 22590000, - "canton": null, - "numero_insee": "73036" - } - }, - { - "pk": 19523, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BELLENTRE", - "center": "POINT (943226.8743577657733113 2069179.3004010049626231)", - "surface": 23240000, - "canton": null, - "numero_insee": "73038" - } - }, - { - "pk": 26951, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BELMONT-TRAMONET", - "center": "POINT (860655.1777072448749095 2068267.2830044683068991)", - "surface": 5440000, - "canton": null, - "numero_insee": "73039" - } - }, - { - "pk": 15114, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BESSANS", - "center": "POINT (969175.4158511641435325 2043378.6568148531951010)", - "surface": 154140000, - "canton": null, - "numero_insee": "73040" - } - }, - { - "pk": 12645, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BETTON-BETTONET", - "center": "POINT (900214.4705124631291255 2065804.9694250032771379)", - "surface": 3370000, - "canton": null, - "numero_insee": "73041" - } - }, - { - "pk": 5096, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA BIOLLE", - "center": "POINT (878379.9320246055722237 2090640.8575902052689344)", - "surface": 12990000, - "canton": null, - "numero_insee": "73043" - } - }, - { - "pk": 10726, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE BOIS", - "center": "POINT (925268.7689499007537961 2062317.5705677836667746)", - "surface": 5530000, - "canton": null, - "numero_insee": "73045" - } - }, - { - "pk": 24293, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BONNEVAL", - "center": "POINT (919533.4202145386952907 2065771.4315292974933982)", - "surface": 19660000, - "canton": null, - "numero_insee": "73046" - } - }, - { - "pk": 21101, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BONNEVAL-SUR-ARC", - "center": "POINT (972186.2287239537108690 2054015.1794211950618774)", - "surface": 112310000, - "canton": null, - "numero_insee": "73047" - } - }, - { - "pk": 35479, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BONVILLARD", - "center": "POINT (911567.6465207267319784 2072509.2390170022845268)", - "surface": 16920000, - "canton": null, - "numero_insee": "73048" - } - }, - { - "pk": 9906, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BONVILLARET", - "center": "POINT (910485.6670956395100802 2070297.7861556177958846)", - "surface": 8900000, - "canton": null, - "numero_insee": "73049" - } - }, - { - "pk": 30182, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BOURDEAU", - "center": "POINT (873956.0568894165335223 2081293.9658398805186152)", - "surface": 7850000, - "canton": null, - "numero_insee": "73050" - } - }, - { - "pk": 26272, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE BOURGET-DU-LAC", - "center": "POINT (873487.4638753917533904 2077586.4020110766869038)", - "surface": 22280000, - "canton": null, - "numero_insee": "73051" - } - }, - { - "pk": 29071, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BOURGET-EN-HUILE", - "center": "POINT (902859.0714730459731072 2060923.0215256670489907)", - "surface": 6840000, - "canton": null, - "numero_insee": "73052" - } - }, - { - "pk": 35031, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BOURGNEUF", - "center": "POINT (905192.1757694678381085 2068950.8759429713245481)", - "surface": 6500000, - "canton": null, - "numero_insee": "73053" - } - }, - { - "pk": 15250, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BOURG-SAINT-MAURICE", - "center": "POINT (945004.7147366029676050 2083508.4187793582677841)", - "surface": 181800000, - "canton": null, - "numero_insee": "73054" - } - }, - { - "pk": 4669, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BOZEL", - "center": "POINT (937295.9602260775864124 2060519.6692987994756550)", - "surface": 28710000, - "canton": null, - "numero_insee": "73055" - } - }, - { - "pk": 22062, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BRAMANS", - "center": "POINT (953968.9400612253230065 2030834.6222638126928359)", - "surface": 98510000, - "canton": null, - "numero_insee": "73056" - } - }, - { - "pk": 4065, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BRIDES-LES-BAINS", - "center": "POINT (930900.5984333569649607 2059263.2180367372930050)", - "surface": 2640000, - "canton": null, - "numero_insee": "73057" - } - }, - { - "pk": 23941, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA BRIDOIRE", - "center": "POINT (865692.3077589527238160 2064506.8943798791151494)", - "surface": 6240000, - "canton": null, - "numero_insee": "73058" - } - }, - { - "pk": 24578, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "BRISON-SAINT-INNOCENT", - "center": "POINT (875797.4641801897669211 2088316.4615991448517889)", - "surface": 16910000, - "canton": null, - "numero_insee": "73059" - } - }, - { - "pk": 13314, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CESARCHES", - "center": "POINT (917354.5101311750477180 2086272.2914791717194021)", - "surface": 2900000, - "canton": null, - "numero_insee": "73061" - } - }, - { - "pk": 26117, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CESSENS", - "center": "POINT (875728.5896366452798247 2096323.4332734316121787)", - "surface": 13270000, - "canton": null, - "numero_insee": "73062" - } - }, - { - "pk": 29189, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHALLES-LES-EAUX", - "center": "POINT (884684.2768853912129998 2067573.0345699866302311)", - "surface": 5610000, - "canton": null, - "numero_insee": "73064" - } - }, - { - "pk": 27849, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA CHAMBRE", - "center": "POINT (909873.1763045056723058 2048471.3196320815477520)", - "surface": 3010000, - "canton": null, - "numero_insee": "73067" - } - }, - { - "pk": 9255, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHAMOUSSET", - "center": "POINT (901978.9742431655758992 2070124.3284346736036241)", - "surface": 6370000, - "canton": null, - "numero_insee": "73068" - } - }, - { - "pk": 27679, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHAMOUX-SUR-GELON", - "center": "POINT (903009.2022229565773159 2066729.9305444061756134)", - "surface": 10610000, - "canton": null, - "numero_insee": "73069" - } - }, - { - "pk": 14049, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHAMPAGNEUX", - "center": "POINT (859695.9198095276951790 2075065.5746483178809285)", - "surface": 10740000, - "canton": null, - "numero_insee": "73070" - } - }, - { - "pk": 14815, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHAMPAGNY-EN-VANOISE", - "center": "POINT (947311.8633722503436729 2059805.5348784590605646)", - "surface": 97300000, - "canton": null, - "numero_insee": "73071" - } - }, - { - "pk": 35516, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHAMP-LAURENT", - "center": "POINT (902434.5532052497146651 2063722.0754297964740545)", - "surface": 4960000, - "canton": null, - "numero_insee": "73072" - } - }, - { - "pk": 9509, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHANAZ", - "center": "POINT (868832.9230421390384436 2095063.0039197001606226)", - "surface": 7350000, - "canton": null, - "numero_insee": "73073" - } - }, - { - "pk": 24263, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA CHAPELLE", - "center": "POINT (909620.3301150018814951 2054575.1017257759813219)", - "surface": 12190000, - "canton": null, - "numero_insee": "73074" - } - }, - { - "pk": 6139, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA CHAPELLE-BLANCHE", - "center": "POINT (892284.0603686297545210 2056828.0098535597790033)", - "surface": 4210000, - "canton": null, - "numero_insee": "73075" - } - }, - { - "pk": 27379, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA CHAPELLE-DU-MONT-DU-CHAT", - "center": "POINT (873820.6776340617798269 2085396.7055890224874020)", - "surface": 12040000, - "canton": null, - "numero_insee": "73076" - } - }, - { - "pk": 17788, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES CHAPELLES", - "center": "POINT (941058.3376332785701379 2076867.9548186759930104)", - "surface": 17240000, - "canton": null, - "numero_insee": "73077" - } - }, - { - "pk": 29294, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA CHAPELLE-SAINT-MARTIN", - "center": "POINT (866277.6698174173943698 2077924.8024813740048558)", - "surface": 2560000, - "canton": null, - "numero_insee": "73078" - } - }, - { - "pk": 22515, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHATEAUNEUF", - "center": "POINT (900094.5393675630912185 2068106.1565555634442717)", - "surface": 7030000, - "canton": null, - "numero_insee": "73079" - } - }, - { - "pk": 17371, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE CHATEL", - "center": "POINT (916918.3894013261888176 2044027.6913593653589487)", - "surface": 15280000, - "canton": null, - "numero_insee": "73080" - } - }, - { - "pk": 7469, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE CHATELARD", - "center": "POINT (895363.6762278731912374 2082779.4860261215362698)", - "surface": 17870000, - "canton": null, - "numero_insee": "73081" - } - }, - { - "pk": 11244, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA CHAVANNE", - "center": "POINT (891441.9644449031911790 2061625.4180355838034302)", - "surface": 3050000, - "canton": null, - "numero_insee": "73082" - } - }, - { - "pk": 8284, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES CHAVANNES-EN-MAURIENNE", - "center": "POINT (909351.1402343069203198 2050969.2639442293439060)", - "surface": 4550000, - "canton": null, - "numero_insee": "73083" - } - }, - { - "pk": 26773, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHIGNIN", - "center": "POINT (887110.5416747499257326 2064791.2176041095517576)", - "surface": 8250000, - "canton": null, - "numero_insee": "73084" - } - }, - { - "pk": 8236, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CHINDRIEUX", - "center": "POINT (872525.8108064258703962 2096295.8870737648103386)", - "surface": 20280000, - "canton": null, - "numero_insee": "73085" - } - }, - { - "pk": 32370, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CLERY", - "center": "POINT (906702.0989096891134977 2079574.0770491629373282)", - "surface": 10870000, - "canton": null, - "numero_insee": "73086" - } - }, - { - "pk": 7217, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "COGNIN", - "center": "POINT (877470.9792527673998848 2068311.7353444469626993)", - "surface": 4440000, - "canton": null, - "numero_insee": "73087" - } - }, - { - "pk": 24165, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "COHENNOZ", - "center": "POINT (923399.3453005407936871 2093331.1356698153540492)", - "surface": 13720000, - "canton": null, - "numero_insee": "73088" - } - }, - { - "pk": 27604, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "COISE-SAINT-JEAN-PIED-GAUTHIER", - "center": "POINT (896313.5788125216495246 2065471.0622975965961814)", - "surface": 10460000, - "canton": null, - "numero_insee": "73089" - } - }, - { - "pk": 7395, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA COMPOTE", - "center": "POINT (896885.6948361448012292 2080390.3102959527168423)", - "surface": 7430000, - "canton": null, - "numero_insee": "73090" - } - }, - { - "pk": 6592, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CONJUX", - "center": "POINT (870943.3541162264300510 2094080.2046925940085202)", - "surface": 4100000, - "canton": null, - "numero_insee": "73091" - } - }, - { - "pk": 27351, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CORBEL", - "center": "POINT (873183.2534965116064996 2054761.7821510119829327)", - "surface": 10250000, - "canton": null, - "numero_insee": "73092" - } - }, - { - "pk": 5651, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA COTE-D'AIME", - "center": "POINT (937653.5974910410586745 2077038.6989164142869413)", - "surface": 25640000, - "canton": null, - "numero_insee": "73093" - } - }, - { - "pk": 9865, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CREST-VOLAND", - "center": "POINT (924775.4917816715314984 2096245.7658077315427363)", - "surface": 9990000, - "canton": null, - "numero_insee": "73094" - } - }, - { - "pk": 20665, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA CROIX-DE-LA-ROCHETTE", - "center": "POINT (895562.0182909457944334 2059759.0654772799462080)", - "surface": 3110000, - "canton": null, - "numero_insee": "73095" - } - }, - { - "pk": 14379, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CRUET", - "center": "POINT (893306.5913853792008013 2065945.6395547580905259)", - "surface": 9940000, - "canton": null, - "numero_insee": "73096" - } - }, - { - "pk": 8488, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "CURIENNE", - "center": "POINT (886775.8062238788697869 2068792.1963973788078874)", - "surface": 8510000, - "canton": null, - "numero_insee": "73097" - } - }, - { - "pk": 4903, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES DESERTS", - "center": "POINT (885196.9286427849438041 2077787.2462480710819364)", - "surface": 33410000, - "canton": null, - "numero_insee": "73098" - } - }, - { - "pk": 27651, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "DETRIER", - "center": "POINT (894188.3543687645578757 2056544.1210423316806555)", - "surface": 2250000, - "canton": null, - "numero_insee": "73099" - } - }, - { - "pk": 13119, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "DOMESSIN", - "center": "POINT (862783.7015218068845570 2065182.5788543105591089)", - "surface": 9750000, - "canton": null, - "numero_insee": "73100" - } - }, - { - "pk": 9385, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "DOUCY-EN-BAUGES", - "center": "POINT (898951.3135812145192176 2084612.1181427177507430)", - "surface": 12500000, - "canton": null, - "numero_insee": "73101" - } - }, - { - "pk": 6117, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "DRUMETTAZ-CLARAFOND", - "center": "POINT (880574.7822800861904398 2079849.4722092060837895)", - "surface": 11310000, - "canton": null, - "numero_insee": "73103" - } - }, - { - "pk": 22413, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "DULLIN", - "center": "POINT (866372.2884718363638967 2066915.0542622532229871)", - "surface": 5200000, - "canton": null, - "numero_insee": "73104" - } - }, - { - "pk": 4777, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES ECHELLES", - "center": "POINT (866367.6751379388151690 2055804.2650359752587974)", - "surface": 3700000, - "canton": null, - "numero_insee": "73105" - } - }, - { - "pk": 14816, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ECOLE", - "center": "POINT (900217.0725559117272496 2077115.8648029526229948)", - "surface": 29540000, - "canton": null, - "numero_insee": "73106" - } - }, - { - "pk": 14889, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ENTREMONT-LE-VIEUX", - "center": "POINT (877463.8759625834645703 2057501.2230864730663598)", - "surface": 33020000, - "canton": null, - "numero_insee": "73107" - } - }, - { - "pk": 21460, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "EPERSY", - "center": "POINT (881700.0397251229733229 2088667.5315719530917704)", - "surface": 3190000, - "canton": null, - "numero_insee": "73108" - } - }, - { - "pk": 37234, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "EPIERRE", - "center": "POINT (911792.0880098952911794 2058097.2460543948691338)", - "surface": 19410000, - "canton": null, - "numero_insee": "73109" - } - }, - { - "pk": 7230, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ESSERTS-BLAY", - "center": "POINT (918128.5719136944971979 2077770.8562055428046733)", - "surface": 15350000, - "canton": null, - "numero_insee": "73110" - } - }, - { - "pk": 3781, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ETABLE", - "center": "POINT (897672.5258164403494447 2058776.2791651373263448)", - "surface": 2720000, - "canton": null, - "numero_insee": "73111" - } - }, - { - "pk": 16795, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FEISSONS-SUR-ISERE", - "center": "POINT (924081.3342127334326506 2072316.9777573861647397)", - "surface": 12090000, - "canton": null, - "numero_insee": "73112" - } - }, - { - "pk": 15202, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FEISSONS-SUR-SALINS", - "center": "POINT (930182.6712925063911825 2061258.9577401394490153)", - "surface": 4790000, - "canton": null, - "numero_insee": "73113" - } - }, - { - "pk": 3020, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FLUMET", - "center": "POINT (925632.1742689239326864 2101357.9749043453484774)", - "surface": 16940000, - "canton": null, - "numero_insee": "73114" - } - }, - { - "pk": 9909, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FONTAINE-LE-PUITS", - "center": "POINT (926087.6424429371254519 2060222.6051311828196049)", - "surface": 4420000, - "canton": null, - "numero_insee": "73115" - } - }, - { - "pk": 18531, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FONTCOUVERTE-LA-TOUSSUIRE", - "center": "POINT (911589.4669869899516925 2035173.0262570269405842)", - "surface": 21440000, - "canton": null, - "numero_insee": "73116" - } - }, - { - "pk": 28291, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FOURNEAUX", - "center": "POINT (937968.9359680882189423 2028994.4964035679586232)", - "surface": 5040000, - "canton": null, - "numero_insee": "73117" - } - }, - { - "pk": 37393, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FRANCIN", - "center": "POINT (888641.1822799139190465 2061401.1052190202753991)", - "surface": 6900000, - "canton": null, - "numero_insee": "73118" - } - }, - { - "pk": 5905, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FRENEY", - "center": "POINT (935962.7681222818791866 2029477.6500403881072998)", - "surface": 11090000, - "canton": null, - "numero_insee": "73119" - } - }, - { - "pk": 34773, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FRETERIVE", - "center": "POINT (902052.3146527823992074 2073227.9432720798067749)", - "surface": 10950000, - "canton": null, - "numero_insee": "73120" - } - }, - { - "pk": 29930, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "FRONTENEX", - "center": "POINT (909817.7848399328067899 2078099.5168123580515385)", - "surface": 1680000, - "canton": null, - "numero_insee": "73121" - } - }, - { - "pk": 34718, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "GERBAIX", - "center": "POINT (865217.9840285925893113 2073111.0984927522949874)", - "surface": 6820000, - "canton": null, - "numero_insee": "73122" - } - }, - { - "pk": 20250, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA GIETTAZ", - "center": "POINT (923793.4379186993464828 2105646.1282629026100039)", - "surface": 35550000, - "canton": null, - "numero_insee": "73123" - } - }, - { - "pk": 7271, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "GILLY-SUR-ISERE", - "center": "POINT (912700.4814124116674066 2080426.5896038736682385)", - "surface": 7080000, - "canton": null, - "numero_insee": "73124" - } - }, - { - "pk": 10765, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "GRANIER", - "center": "POINT (934160.0188882418442518 2075907.4357539224438369)", - "surface": 29800000, - "canton": null, - "numero_insee": "73126" - } - }, - { - "pk": 7876, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "GRESIN", - "center": "POINT (861015.9840757560450584 2072874.8043106591794640)", - "surface": 5030000, - "canton": null, - "numero_insee": "73127" - } - }, - { - "pk": 24573, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "GRESY-SUR-ISERE", - "center": "POINT (904846.1663904462475330 2074252.9924945423845202)", - "surface": 8910000, - "canton": null, - "numero_insee": "73129" - } - }, - { - "pk": 34985, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "GRIGNON", - "center": "POINT (915312.2759130494669080 2079348.0776767923962325)", - "surface": 9240000, - "canton": null, - "numero_insee": "73130" - } - }, - { - "pk": 3940, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "HAUTELUCE", - "center": "POINT (932603.9086579058784992 2093811.0529491568449885)", - "surface": 62530000, - "canton": null, - "numero_insee": "73132" - } - }, - { - "pk": 12348, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "HAUTEVILLE", - "center": "POINT (899013.4000410913722590 2065794.6175944828428328)", - "surface": 2460000, - "canton": null, - "numero_insee": "73133" - } - }, - { - "pk": 18140, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "HERMILLON", - "center": "POINT (917737.2592904772609472 2041932.6922493060119450)", - "surface": 14080000, - "canton": null, - "numero_insee": "73135" - } - }, - { - "pk": 3016, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "JACOB-BELLECOMBETTE", - "center": "POINT (879479.6475764262722805 2067528.2448440189473331)", - "surface": 2420000, - "canton": null, - "numero_insee": "73137" - } - }, - { - "pk": 33354, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "JARRIER", - "center": "POINT (911450.5199183487566188 2039676.2743922835215926)", - "surface": 17510000, - "canton": null, - "numero_insee": "73138" - } - }, - { - "pk": 37259, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "JARSY", - "center": "POINT (901978.9709104781504720 2081735.4519402650184929)", - "surface": 32380000, - "canton": null, - "numero_insee": "73139" - } - }, - { - "pk": 7008, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "JONGIEUX", - "center": "POINT (869497.1181758521124721 2087661.7136397478170693)", - "surface": 6460000, - "canton": null, - "numero_insee": "73140" - } - }, - { - "pk": 10826, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LAISSAUD", - "center": "POINT (888978.5096822897903621 2057099.8349294178187847)", - "surface": 6540000, - "canton": null, - "numero_insee": "73141" - } - }, - { - "pk": 5520, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LANDRY", - "center": "POINT (945301.8962393542751670 2072300.2452107283752412)", - "surface": 10530000, - "canton": null, - "numero_insee": "73142" - } - }, - { - "pk": 25616, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LANSLEBOURG-MONT-CENIS", - "center": "POINT (960117.4172046014573425 2037494.4232036706525832)", - "surface": 100860000, - "canton": null, - "numero_insee": "73143" - } - }, - { - "pk": 15116, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LANSLEVILLARD", - "center": "POINT (960364.7973592923954129 2043602.5936857040505856)", - "surface": 42420000, - "canton": null, - "numero_insee": "73144" - } - }, - { - "pk": 10279, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LEPIN-LE-LAC", - "center": "POINT (869789.0822813240811229 2065342.8784086983650923)", - "surface": 5070000, - "canton": null, - "numero_insee": "73145" - } - }, - { - "pk": 13098, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LOISIEUX", - "center": "POINT (864178.3976423118729144 2077606.4757284321822226)", - "surface": 9270000, - "canton": null, - "numero_insee": "73147" - } - }, - { - "pk": 13465, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LUCEY", - "center": "POINT (868873.3623863989487290 2090358.9102940284647048)", - "surface": 6210000, - "canton": null, - "numero_insee": "73149" - } - }, - { - "pk": 4524, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MACOT-LA-PLAGNE", - "center": "POINT (940239.7845204358454794 2067351.7209127394016832)", - "surface": 37660000, - "canton": null, - "numero_insee": "73150" - } - }, - { - "pk": 36238, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES MARCHES", - "center": "POINT (885639.3588217366486788 2061275.1646017222665250)", - "surface": 15180000, - "canton": null, - "numero_insee": "73151" - } - }, - { - "pk": 33607, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MARCIEUX", - "center": "POINT (868412.2148507388774306 2074139.5104989507235587)", - "surface": 4440000, - "canton": null, - "numero_insee": "73152" - } - }, - { - "pk": 36549, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MARTHOD", - "center": "POINT (915726.3247401799308136 2089361.1833189865574241)", - "surface": 14720000, - "canton": null, - "numero_insee": "73153" - } - }, - { - "pk": 18967, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MERCURY", - "center": "POINT (912066.2705871830694377 2084324.8396477364003658)", - "surface": 22220000, - "canton": null, - "numero_insee": "73154" - } - }, - { - "pk": 34990, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MERY", - "center": "POINT (880398.7208928342442960 2077045.2800033073872328)", - "surface": 9060000, - "canton": null, - "numero_insee": "73155" - } - }, - { - "pk": 12813, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MEYRIEUX-TROUET", - "center": "POINT (868781.5957083194516599 2077746.1328924344852567)", - "surface": 11050000, - "canton": null, - "numero_insee": "73156" - } - }, - { - "pk": 18604, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MODANE", - "center": "POINT (938873.2265985484700650 2028601.9169737841002643)", - "surface": 74550000, - "canton": null, - "numero_insee": "73157" - } - }, - { - "pk": 9007, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MOGNARD", - "center": "POINT (881188.4052196859847754 2089964.3608529358170927)", - "surface": 4140000, - "canton": null, - "numero_insee": "73158" - } - }, - { - "pk": 5362, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LES MOLLETTES", - "center": "POINT (890967.3765668654814363 2058618.4197053364478052)", - "surface": 5460000, - "canton": null, - "numero_insee": "73159" - } - }, - { - "pk": 28573, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTAGNOLE", - "center": "POINT (879105.9859802067512646 2064422.0370521252043545)", - "surface": 11290000, - "canton": null, - "numero_insee": "73160" - } - }, - { - "pk": 23283, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTAGNY", - "center": "POINT (933189.6864412399008870 2060784.4607287880498916)", - "surface": 13240000, - "canton": null, - "numero_insee": "73161" - } - }, - { - "pk": 29031, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTAILLEUR", - "center": "POINT (906329.3683026614598930 2076367.7981734657660127)", - "surface": 15200000, - "canton": null, - "numero_insee": "73162" - } - }, - { - "pk": 17373, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTAIMONT", - "center": "POINT (915369.5182814144063741 2049519.7214597098063678)", - "surface": 28380000, - "canton": null, - "numero_insee": "73163" - } - }, - { - "pk": 23993, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTCEL", - "center": "POINT (884430.8323575705289841 2085387.9015717399306595)", - "surface": 15180000, - "canton": null, - "numero_insee": "73164" - } - }, - { - "pk": 9203, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTENDRY", - "center": "POINT (904821.1634219310944900 2065544.3937750984914601)", - "surface": 8300000, - "canton": null, - "numero_insee": "73166" - } - }, - { - "pk": 24278, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTGELLAFREY", - "center": "POINT (912829.2579841176047921 2053902.1026003630831838)", - "surface": 19200000, - "canton": null, - "numero_insee": "73167" - } - }, - { - "pk": 9001, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTGILBERT", - "center": "POINT (907509.7610368810128421 2067169.1256896848790348)", - "surface": 9480000, - "canton": null, - "numero_insee": "73168" - } - }, - { - "pk": 7147, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTGIROD", - "center": "POINT (931020.3323799854842946 2068573.2665807744488120)", - "surface": 13650000, - "canton": null, - "numero_insee": "73169" - } - }, - { - "pk": 10421, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTHION", - "center": "POINT (914630.6622682156739756 2077140.0877420527394861)", - "surface": 6170000, - "canton": null, - "numero_insee": "73170" - } - }, - { - "pk": 8516, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTMELIAN", - "center": "POINT (890526.5056432595010847 2063319.1804421343840659)", - "surface": 5630000, - "canton": null, - "numero_insee": "73171" - } - }, - { - "pk": 19458, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTRICHER-ALBANNE", - "center": "POINT (919724.5320433368906379 2032040.0572537768166512)", - "surface": 27890000, - "canton": null, - "numero_insee": "73173" - } - }, - { - "pk": 36776, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTSAPEY", - "center": "POINT (914617.8171943830093369 2067030.2570400561671704)", - "surface": 26340000, - "canton": null, - "numero_insee": "73175" - } - }, - { - "pk": 31781, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTVALEZAN", - "center": "POINT (953639.1552616982953623 2080480.1999344094656408)", - "surface": 25920000, - "canton": null, - "numero_insee": "73176" - } - }, - { - "pk": 31446, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MONTVERNIER", - "center": "POINT (913308.2086140846367925 2044797.3232242842204869)", - "surface": 6620000, - "canton": null, - "numero_insee": "73177" - } - }, - { - "pk": 23364, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA MOTTE-EN-BAUGES", - "center": "POINT (895335.2174850509036332 2086082.3832541636656970)", - "surface": 9810000, - "canton": null, - "numero_insee": "73178" - } - }, - { - "pk": 20933, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA MOTTE-SERVOLEX", - "center": "POINT (874328.6263934049056843 2072889.1318817497231066)", - "surface": 29560000, - "canton": null, - "numero_insee": "73179" - } - }, - { - "pk": 33126, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MOTZ", - "center": "POINT (872023.9032990542473271 2108102.6384223103523254)", - "surface": 9960000, - "canton": null, - "numero_insee": "73180" - } - }, - { - "pk": 30066, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MOUTIERS", - "center": "POINT (928168.7715398387517780 2062642.9148022378794849)", - "surface": 3130000, - "canton": null, - "numero_insee": "73181" - } - }, - { - "pk": 6808, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MOUXY", - "center": "POINT (881258.1726434651063755 2081857.2617103336378932)", - "surface": 6290000, - "canton": null, - "numero_insee": "73182" - } - }, - { - "pk": 8023, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "MYANS", - "center": "POINT (884413.3011513196397573 2064167.4185567961540073)", - "surface": 3580000, - "canton": null, - "numero_insee": "73183" - } - }, - { - "pk": 9380, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "NANCES", - "center": "POINT (870441.5200787079520524 2070953.8827639054507017)", - "surface": 9910000, - "canton": null, - "numero_insee": "73184" - } - }, - { - "pk": 23420, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "NOTRE-DAME-DE-BELLECOMBE", - "center": "POINT (927971.3566177643369883 2097074.1339374450035393)", - "surface": 21300000, - "canton": null, - "numero_insee": "73186" - } - }, - { - "pk": 21438, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA LECHERE", - "center": "POINT (924399.7557227741926908 2070217.7049769510049373)", - "surface": 97320000, - "canton": null, - "numero_insee": "73187" - } - }, - { - "pk": 11149, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "NOTRE-DAME-DES-MILLIERES", - "center": "POINT (913439.1024552595335990 2076028.7496658309828490)", - "surface": 10270000, - "canton": null, - "numero_insee": "73188" - } - }, - { - "pk": 26388, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "NOTRE-DAME-DU-CRUET", - "center": "POINT (911065.6281326381722465 2049482.5856437701731920)", - "surface": 1910000, - "canton": null, - "numero_insee": "73189" - } - }, - { - "pk": 27073, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "NOTRE-DAME-DU-PRE", - "center": "POINT (933454.4829509961418808 2064890.7272085151635110)", - "surface": 18200000, - "canton": null, - "numero_insee": "73190" - } - }, - { - "pk": 31457, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "NOVALAISE", - "center": "POINT (867937.5810952060855925 2071132.5506938486360013)", - "surface": 16160000, - "canton": null, - "numero_insee": "73191" - } - }, - { - "pk": 13094, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE NOYER", - "center": "POINT (889674.1804317282512784 2080928.7589423302561045)", - "surface": 12390000, - "canton": null, - "numero_insee": "73192" - } - }, - { - "pk": 29854, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ONTEX", - "center": "POINT (871185.6966874646022916 2089177.6537419646047056)", - "surface": 4570000, - "canton": null, - "numero_insee": "73193" - } - }, - { - "pk": 4204, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ORELLE", - "center": "POINT (931746.7935123855713755 2030842.6034011202864349)", - "surface": 73420000, - "canton": null, - "numero_insee": "73194" - } - }, - { - "pk": 20179, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PEISEY-NANCROIX", - "center": "POINT (949756.0592888016253710 2066533.1934511109720916)", - "surface": 72430000, - "canton": null, - "numero_insee": "73197" - } - }, - { - "pk": 17322, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA PERRIERE", - "center": "POINT (932924.8876371569931507 2056678.1817625323310494)", - "surface": 9900000, - "canton": null, - "numero_insee": "73198" - } - }, - { - "pk": 32527, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PLANAISE", - "center": "POINT (893530.0489143868908286 2063244.9533437865320593)", - "surface": 4130000, - "canton": null, - "numero_insee": "73200" - } - }, - { - "pk": 9505, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PLANCHERINE", - "center": "POINT (908173.2047888493398204 2083090.1085864373017102)", - "surface": 6780000, - "canton": null, - "numero_insee": "73202" - } - }, - { - "pk": 20854, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PONTAMAFREY-MONTPASCAL", - "center": "POINT (915400.6143823643215001 2045916.4594681402668357)", - "surface": 11530000, - "canton": null, - "numero_insee": "73203" - } - }, - { - "pk": 10323, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE PONT-DE-BEAUVOISIN", - "center": "POINT (861183.9946252040099353 2064968.6433329086285084)", - "surface": 1840000, - "canton": null, - "numero_insee": "73204" - } - }, - { - "pk": 5404, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE PONTET", - "center": "POINT (904745.2390808933414519 2062741.0290025006979704)", - "surface": 8610000, - "canton": null, - "numero_insee": "73205" - } - }, - { - "pk": 15609, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PRALOGNAN-LA-VANOISE", - "center": "POINT (943406.9833297071745619 2048360.6065624898765236)", - "surface": 106050000, - "canton": null, - "numero_insee": "73206" - } - }, - { - "pk": 20911, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PRESLE", - "center": "POINT (899695.8862581956200302 2056291.2847002458292991)", - "surface": 11540000, - "canton": null, - "numero_insee": "73207" - } - }, - { - "pk": 36866, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PUGNY-CHATENOD", - "center": "POINT (881745.6920246242079884 2083362.8867978702764958)", - "surface": 5340000, - "canton": null, - "numero_insee": "73208" - } - }, - { - "pk": 6876, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "PUYGROS", - "center": "POINT (889068.3714252181816846 2069912.9954300865065306)", - "surface": 10220000, - "canton": null, - "numero_insee": "73210" - } - }, - { - "pk": 27161, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "QUEIGE", - "center": "POINT (921352.8330448898486793 2086907.3857194550801069)", - "surface": 32410000, - "canton": null, - "numero_insee": "73211" - } - }, - { - "pk": 29929, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "RANDENS", - "center": "POINT (911603.9162758986931294 2068305.5053040259517729)", - "surface": 10410000, - "canton": null, - "numero_insee": "73212" - } - }, - { - "pk": 32452, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA RAVOIRE", - "center": "POINT (882776.5555813518585637 2068257.2897526973392814)", - "surface": 6600000, - "canton": null, - "numero_insee": "73213" - } - }, - { - "pk": 28857, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ROCHEFORT", - "center": "POINT (863442.1884130972903222 2070092.9578779279254377)", - "surface": 5580000, - "canton": null, - "numero_insee": "73214" - } - }, - { - "pk": 9585, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA ROCHETTE", - "center": "POINT (895176.3187905377708375 2058054.0910979772452265)", - "surface": 4640000, - "canton": null, - "numero_insee": "73215" - } - }, - { - "pk": 31088, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ROGNAIX", - "center": "POINT (918882.7662208322435617 2071571.4117532228119671)", - "surface": 8820000, - "canton": null, - "numero_insee": "73216" - } - }, - { - "pk": 12689, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "ROTHERENS", - "center": "POINT (897065.0879163914360106 2059571.8219663321506232)", - "surface": 1720000, - "canton": null, - "numero_insee": "73217" - } - }, - { - "pk": 7228, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "RUFFIEUX", - "center": "POINT (872188.5410801364341751 2100597.0320105152204633)", - "surface": 13580000, - "canton": null, - "numero_insee": "73218" - } - }, - { - "pk": 9719, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-ALBAN-DE-MONTBEL", - "center": "POINT (868773.5649518752470613 2067035.7892821140121669)", - "surface": 4530000, - "canton": null, - "numero_insee": "73219" - } - }, - { - "pk": 34209, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-ALBAN-DES-HURTIERES", - "center": "POINT (905873.8424998428672552 2059547.6563536678440869)", - "surface": 19460000, - "canton": null, - "numero_insee": "73220" - } - }, - { - "pk": 22458, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-ALBAN-DES-VILLARDS", - "center": "POINT (905621.0659619474317878 2042428.7565064067021012)", - "surface": 24020000, - "canton": null, - "numero_insee": "73221" - } - }, - { - "pk": 33128, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-ALBAN-LEYSSE", - "center": "POINT (882446.1404929340351373 2071757.8151367607060820)", - "surface": 8400000, - "canton": null, - "numero_insee": "73222" - } - }, - { - "pk": 33497, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-ANDRE", - "center": "POINT (936023.9228693996556103 2033982.6495379800908267)", - "surface": 30310000, - "canton": null, - "numero_insee": "73223" - } - }, - { - "pk": 14353, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-AVRE", - "center": "POINT (911691.2125379677163437 2046585.1398587804287672)", - "surface": 3550000, - "canton": null, - "numero_insee": "73224" - } - }, - { - "pk": 9707, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-BALDOPH", - "center": "POINT (881801.5053578984225169 2065246.0035727110225707)", - "surface": 6110000, - "canton": null, - "numero_insee": "73225" - } - }, - { - "pk": 8517, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-BERON", - "center": "POINT (864713.7762970002368093 2061895.9716980310622603)", - "surface": 8550000, - "canton": null, - "numero_insee": "73226" - } - }, - { - "pk": 20191, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-BON-TARENTAISE", - "center": "POINT (937466.1521771806292236 2052413.2425837141927332)", - "surface": 58810000, - "canton": null, - "numero_insee": "73227" - } - }, - { - "pk": 19873, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-CASSIN", - "center": "POINT (876707.2877007618080825 2064001.0155431802850217)", - "surface": 15100000, - "canton": null, - "numero_insee": "73228" - } - }, - { - "pk": 21179, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (869769.0099113630130887 2056033.6935603234451264)", - "surface": 11010000, - "canton": null, - "numero_insee": "73229" - } - }, - { - "pk": 19604, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-COLOMBAN-DES-VILLARDS", - "center": "POINT (901764.9685879447497427 2036890.0893130807671696)", - "surface": 80430000, - "canton": null, - "numero_insee": "73230" - } - }, - { - "pk": 20548, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-ETIENNE-DE-CUINES", - "center": "POINT (907392.4924924407387152 2045947.4720854170154780)", - "surface": 20530000, - "canton": null, - "numero_insee": "73231" - } - }, - { - "pk": 18071, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINTE-FOY-TARENTAISE", - "center": "POINT (959189.1036838128929958 2075323.2814527712762356)", - "surface": 110070000, - "canton": null, - "numero_insee": "73232" - } - }, - { - "pk": 29980, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-FRANC", - "center": "POINT (866130.5102437478490174 2060106.4021555311046541)", - "surface": 7280000, - "canton": null, - "numero_insee": "73233" - } - }, - { - "pk": 25323, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-FRANCOIS-DE-SALES", - "center": "POINT (888159.0704531681258231 2082517.2382203754968941)", - "surface": 14410000, - "canton": null, - "numero_insee": "73234" - } - }, - { - "pk": 24295, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-FRANCOIS-LONGCHAMP", - "center": "POINT (915932.9162132047349587 2053828.7879025568254292)", - "surface": 12980000, - "canton": null, - "numero_insee": "73235" - } - }, - { - "pk": 24172, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-GENIX-SUR-GUIERS", - "center": "POINT (858925.2990905686747283 2071555.5987389020156115)", - "surface": 12220000, - "canton": null, - "numero_insee": "73236" - } - }, - { - "pk": 27878, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-GEORGES-DES-HURTIERES", - "center": "POINT (908437.3259070646017790 2064074.1285701782908291)", - "surface": 11850000, - "canton": null, - "numero_insee": "73237" - } - }, - { - "pk": 12078, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-GERMAIN-LA-CHAMBOTTE", - "center": "POINT (875360.0957896127365530 2092616.7712130611762404)", - "surface": 13100000, - "canton": null, - "numero_insee": "73238" - } - }, - { - "pk": 18960, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-GIROD", - "center": "POINT (882162.5747776157222688 2093075.6784944660030305)", - "surface": 6350000, - "canton": null, - "numero_insee": "73239" - } - }, - { - "pk": 28012, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINTE-HELENE-DU-LAC", - "center": "POINT (890654.1779706820379943 2060117.1787688273470849)", - "surface": 6990000, - "canton": null, - "numero_insee": "73240" - } - }, - { - "pk": 14105, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINTE-HELENE-SUR-ISERE", - "center": "POINT (911148.2936197919771075 2074707.7352320223581046)", - "surface": 14500000, - "canton": null, - "numero_insee": "73241" - } - }, - { - "pk": 23899, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEAN-D'ARVES", - "center": "POINT (909365.9198306428734213 2026044.8083561551757157)", - "surface": 75960000, - "canton": null, - "numero_insee": "73242" - } - }, - { - "pk": 3476, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEAN-D'ARVEY", - "center": "POINT (885038.9696802843827754 2072881.1889896772336215)", - "surface": 12890000, - "canton": null, - "numero_insee": "73243" - } - }, - { - "pk": 18530, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEAN-DE-BELLEVILLE", - "center": "POINT (921442.1962579099927098 2053375.8595273173414171)", - "surface": 59250000, - "canton": null, - "numero_insee": "73244" - } - }, - { - "pk": 35480, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEAN-DE-CHEVELU", - "center": "POINT (871737.7701492886990309 2083176.7008314509876072)", - "surface": 12670000, - "canton": null, - "numero_insee": "73245" - } - }, - { - "pk": 36292, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEAN-DE-COUZ", - "center": "POINT (871857.9887673681369051 2057553.1104399345349520)", - "surface": 7750000, - "canton": null, - "numero_insee": "73246" - } - }, - { - "pk": 31917, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEAN-DE-LA-PORTE", - "center": "POINT (895280.7802940319525078 2069165.7346662280615419)", - "surface": 15890000, - "canton": null, - "numero_insee": "73247" - } - }, - { - "pk": 22750, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEAN-DE-MAURIENNE", - "center": "POINT (914467.0749183003790677 2038100.7213259749114513)", - "surface": 11480000, - "canton": null, - "numero_insee": "73248" - } - }, - { - "pk": 28074, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JEOIRE-PRIEURE", - "center": "POINT (885200.2303424796555191 2065775.7385197642724961)", - "surface": 5380000, - "canton": null, - "numero_insee": "73249" - } - }, - { - "pk": 14814, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-JULIEN-MONT-DENIS", - "center": "POINT (920061.8202731711789966 2039350.1948091175872833)", - "surface": 32900000, - "canton": null, - "numero_insee": "73250" - } - }, - { - "pk": 31648, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-LEGER", - "center": "POINT (907101.6777431184891611 2056455.2298770744819194)", - "surface": 11030000, - "canton": null, - "numero_insee": "73252" - } - }, - { - "pk": 35360, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-MARCEL", - "center": "POINT (930457.8564175197388977 2064164.1491017136722803)", - "surface": 8830000, - "canton": null, - "numero_insee": "73253" - } - }, - { - "pk": 10175, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINTE-MARIE-D'ALVEY", - "center": "POINT (863529.3778597736964002 2071595.1488042471464723)", - "surface": 2580000, - "canton": null, - "numero_insee": "73254" - } - }, - { - "pk": 35318, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINTE-MARIE-DE-CUINES", - "center": "POINT (910219.2073968732729554 2043169.1007191282697022)", - "surface": 14920000, - "canton": null, - "numero_insee": "73255" - } - }, - { - "pk": 18060, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-MARTIN-D'ARC", - "center": "POINT (923834.3463393535930663 2031374.8470025649294257)", - "surface": 4890000, - "canton": null, - "numero_insee": "73256" - } - }, - { - "pk": 19954, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-MARTIN-DE-BELLEVILLE", - "center": "POINT (927514.1902262322837487 2045720.7588345075491816)", - "surface": 162590000, - "canton": null, - "numero_insee": "73257" - } - }, - { - "pk": 19752, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-MARTIN-DE-LA-PORTE", - "center": "POINT (923479.6169475434580818 2037678.0261745948810130)", - "surface": 19220000, - "canton": null, - "numero_insee": "73258" - } - }, - { - "pk": 8052, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-MARTIN-SUR-LA-CHAMBRE", - "center": "POINT (912169.2138787013245746 2049191.8127460586838424)", - "surface": 4590000, - "canton": null, - "numero_insee": "73259" - } - }, - { - "pk": 10300, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-MAURICE-DE-ROTHERENS", - "center": "POINT (862402.6061490890569985 2074588.3465405006427318)", - "surface": 8010000, - "canton": null, - "numero_insee": "73260" - } - }, - { - "pk": 18546, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-MICHEL-DE-MAURIENNE", - "center": "POINT (926305.5189515794627368 2034999.7606557400431484)", - "surface": 36240000, - "canton": null, - "numero_insee": "73261" - } - }, - { - "pk": 19825, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-NICOLAS-LA-CHAPELLE", - "center": "POINT (921740.0342149391071871 2100023.1300593069754541)", - "surface": 23530000, - "canton": null, - "numero_insee": "73262" - } - }, - { - "pk": 26243, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-OFFENGE-DESSOUS", - "center": "POINT (885803.6247424202738330 2088702.8540623874869198)", - "surface": 7810000, - "canton": null, - "numero_insee": "73263" - } - }, - { - "pk": 24970, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-OFFENGE-DESSUS", - "center": "POINT (886329.0516606615856290 2085804.6234154165722430)", - "surface": 7740000, - "canton": null, - "numero_insee": "73264" - } - }, - { - "pk": 5606, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-OURS", - "center": "POINT (883386.0191562126856297 2090483.7486560803372413)", - "surface": 4630000, - "canton": null, - "numero_insee": "73265" - } - }, - { - "pk": 5591, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-OYEN", - "center": "POINT (923544.7711888024350628 2064905.1996165374293923)", - "surface": 2080000, - "canton": null, - "numero_insee": "73266" - } - }, - { - "pk": 8934, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PANCRACE", - "center": "POINT (910970.7860443440731615 2037269.7662445202004164)", - "surface": 5690000, - "canton": null, - "numero_insee": "73267" - } - }, - { - "pk": 12666, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PAUL", - "center": "POINT (869157.8573849921813235 2080552.0418135910294950)", - "surface": 13160000, - "canton": null, - "numero_insee": "73269" - } - }, - { - "pk": 5605, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PIERRE-D'ALBIGNY", - "center": "POINT (898266.1973142919596285 2071193.3856428640428931)", - "surface": 19160000, - "canton": null, - "numero_insee": "73270" - } - }, - { - "pk": 24130, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PIERRE-D'ALVEY", - "center": "POINT (865300.0105432540876791 2075213.8168031421955675)", - "surface": 7690000, - "canton": null, - "numero_insee": "73271" - } - }, - { - "pk": 21313, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PIERRE-DE-BELLEVILLE", - "center": "POINT (906688.3706506772432476 2057953.1253013308160007)", - "surface": 7290000, - "canton": null, - "numero_insee": "73272" - } - }, - { - "pk": 37997, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PIERRE-DE-CURTILLE", - "center": "POINT (871570.5551782289985567 2090982.6675828022416681)", - "surface": 16550000, - "canton": null, - "numero_insee": "73273" - } - }, - { - "pk": 33279, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PIERRE-D'ENTREMONT", - "center": "POINT (877205.7927313253749162 2052594.2325403345748782)", - "surface": 18440000, - "canton": null, - "numero_insee": "73274" - } - }, - { - "pk": 32264, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PIERRE-DE-GENEBROZ", - "center": "POINT (867558.4308736599050462 2057015.6650500728283077)", - "surface": 6170000, - "canton": null, - "numero_insee": "73275" - } - }, - { - "pk": 33651, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-PIERRE-DE-SOUCY", - "center": "POINT (894448.9606792980339378 2061150.8346163732931018)", - "surface": 9040000, - "canton": null, - "numero_insee": "73276" - } - }, - { - "pk": 10541, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINTE-REINE", - "center": "POINT (896835.6303457552567124 2074584.3251535142771900)", - "surface": 14430000, - "canton": null, - "numero_insee": "73277" - } - }, - { - "pk": 5331, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-REMY-DE-MAURIENNE", - "center": "POINT (905350.9787018881179392 2050534.3749799770303071)", - "surface": 44190000, - "canton": null, - "numero_insee": "73278" - } - }, - { - "pk": 21780, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-SORLIN-D'ARVES", - "center": "POINT (903628.7390507094096392 2029699.0206322646699846)", - "surface": 44390000, - "canton": null, - "numero_insee": "73280" - } - }, - { - "pk": 32448, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-SULPICE", - "center": "POINT (873763.3844361761584878 2068780.3282798945438117)", - "surface": 8780000, - "canton": null, - "numero_insee": "73281" - } - }, - { - "pk": 8827, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-THIBAUD-DE-COUZ", - "center": "POINT (873130.7541280025616288 2060867.2559563079848886)", - "surface": 24020000, - "canton": null, - "numero_insee": "73282" - } - }, - { - "pk": 10805, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SAINT-VITAL", - "center": "POINT (908923.8971405160846189 2077291.0392746159341186)", - "surface": 3610000, - "canton": null, - "numero_insee": "73283" - } - }, - { - "pk": 15756, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SALINS-LES-THERMES", - "center": "POINT (927782.2494758863467723 2061038.0222431030124426)", - "surface": 4190000, - "canton": null, - "numero_insee": "73284" - } - }, - { - "pk": 17602, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SEEZ", - "center": "POINT (950523.4208282477920875 2081954.6572389812208712)", - "surface": 42510000, - "canton": null, - "numero_insee": "73285" - } - }, - { - "pk": 16337, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SOLLIERES-SARDIERES", - "center": "POINT (951407.7229327176464722 2037619.1976687181740999)", - "surface": 33380000, - "canton": null, - "numero_insee": "73287" - } - }, - { - "pk": 9653, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "SONNAZ", - "center": "POINT (879113.9345869834069163 2075132.4053395413793623)", - "surface": 6790000, - "canton": null, - "numero_insee": "73288" - } - }, - { - "pk": 4513, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA TABLE", - "center": "POINT (900867.6326544356998056 2059704.6899034627713263)", - "surface": 14800000, - "canton": null, - "numero_insee": "73289" - } - }, - { - "pk": 21881, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "TERMIGNON", - "center": "POINT (953417.7832013914594427 2048247.0505597796291113)", - "surface": 180100000, - "canton": null, - "numero_insee": "73290" - } - }, - { - "pk": 11449, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "THENESOL", - "center": "POINT (915139.6220682003768161 2087754.5991414326708764)", - "surface": 5430000, - "canton": null, - "numero_insee": "73292" - } - }, - { - "pk": 21264, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "THOIRY", - "center": "POINT (889140.0181365857133642 2073216.7858953820541501)", - "surface": 17520000, - "canton": null, - "numero_insee": "73293" - } - }, - { - "pk": 28420, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA THUILE", - "center": "POINT (890395.3857225712854415 2066921.5308641297742724)", - "surface": 18220000, - "canton": null, - "numero_insee": "73294" - } - }, - { - "pk": 19358, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "TIGNES", - "center": "POINT (959388.0473066335543990 2063913.9892118445131928)", - "surface": 91130000, - "canton": null, - "numero_insee": "73296" - } - }, - { - "pk": 8629, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "TOURNON", - "center": "POINT (911013.6633189835119992 2078710.4085950576700270)", - "surface": 4880000, - "canton": null, - "numero_insee": "73297" - } - }, - { - "pk": 25428, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "TOURS-EN-SAVOIE", - "center": "POINT (921291.6406024855095893 2082402.5678112418390810)", - "surface": 15210000, - "canton": null, - "numero_insee": "73298" - } - }, - { - "pk": 32651, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "TRAIZE", - "center": "POINT (864855.7931428011506796 2080314.8754147440195084)", - "surface": 9430000, - "canton": null, - "numero_insee": "73299" - } - }, - { - "pk": 30181, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "TRESSERVE", - "center": "POINT (876760.2420808474998921 2081117.8942828828003258)", - "surface": 7680000, - "canton": null, - "numero_insee": "73300" - } - }, - { - "pk": 14050, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "TREVIGNIN", - "center": "POINT (882734.5102874025469646 2084772.7297692918218672)", - "surface": 6830000, - "canton": null, - "numero_insee": "73301" - } - }, - { - "pk": 5143, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LA TRINITE", - "center": "POINT (898035.7963010146049783 2063083.5806348863989115)", - "surface": 4790000, - "canton": null, - "numero_insee": "73302" - } - }, - { - "pk": 22654, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "UGINE", - "center": "POINT (918388.9361715537961572 2093988.5289644438307732)", - "surface": 57530000, - "canton": null, - "numero_insee": "73303" - } - }, - { - "pk": 19697, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VAL-D'ISERE", - "center": "POINT (964638.6822130634682253 2058654.3328817123547196)", - "surface": 107650000, - "canton": null, - "numero_insee": "73304" - } - }, - { - "pk": 7620, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VALEZAN", - "center": "POINT (939570.8610496745677665 2075253.5516194049268961)", - "surface": 7930000, - "canton": null, - "numero_insee": "73305" - } - }, - { - "pk": 20912, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VALLOIRE", - "center": "POINT (921513.3738101663766429 2021945.4373429878614843)", - "surface": 137590000, - "canton": null, - "numero_insee": "73306" - } - }, - { - "pk": 23049, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VALMEINIER", - "center": "POINT (927989.1275909417308867 2025504.8587812804616988)", - "surface": 54780000, - "canton": null, - "numero_insee": "73307" - } - }, - { - "pk": 6804, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VENTHON", - "center": "POINT (917770.4143972820602357 2084474.1674874634481966)", - "surface": 2510000, - "canton": null, - "numero_insee": "73308" - } - }, - { - "pk": 32875, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VEREL-DE-MONTBEL", - "center": "POINT (864368.7878527659922838 2067098.0306297787465155)", - "surface": 3710000, - "canton": null, - "numero_insee": "73309" - } - }, - { - "pk": 33129, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VEREL-PRAGONDRAN", - "center": "POINT (881913.8271426309365779 2075456.7854926681611687)", - "surface": 6480000, - "canton": null, - "numero_insee": "73310" - } - }, - { - "pk": 29534, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "LE VERNEIL", - "center": "POINT (900987.5652008559554815 2057403.4882541587576270)", - "surface": 7470000, - "canton": null, - "numero_insee": "73311" - } - }, - { - "pk": 22014, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VERRENS-ARVEY", - "center": "POINT (907988.5688751959241927 2081286.7978864174801856)", - "surface": 10730000, - "canton": null, - "numero_insee": "73312" - } - }, - { - "pk": 25153, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VERTHEMEX", - "center": "POINT (869800.5472194910980761 2075652.8825029453728348)", - "surface": 9210000, - "canton": null, - "numero_insee": "73313" - } - }, - { - "pk": 5512, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLARD-D'HERY", - "center": "POINT (897024.5528287698980421 2064276.0280696619302034)", - "surface": 4830000, - "canton": null, - "numero_insee": "73314" - } - }, - { - "pk": 14587, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLARD-LEGER", - "center": "POINT (899739.0415305132046342 2062898.0658283098600805)", - "surface": 6870000, - "canton": null, - "numero_insee": "73315" - } - }, - { - "pk": 9535, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLARD-SALLET", - "center": "POINT (896851.1097021043533459 2061171.5308157382532954)", - "surface": 3090000, - "canton": null, - "numero_insee": "73316" - } - }, - { - "pk": 5733, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLARD-SUR-DORON", - "center": "POINT (925334.7242436930537224 2089444.1559144190978259)", - "surface": 22140000, - "canton": null, - "numero_insee": "73317" - } - }, - { - "pk": 30603, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLAREMBERT", - "center": "POINT (908294.2153556677512825 2034243.7121408691164106)", - "surface": 9520000, - "canton": null, - "numero_insee": "73318" - } - }, - { - "pk": 11508, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLARGONDRAN", - "center": "POINT (917186.8184214771026745 2036122.2152967548463494)", - "surface": 6110000, - "canton": null, - "numero_insee": "73320" - } - }, - { - "pk": 35844, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLARLURIN", - "center": "POINT (927700.3193933847360313 2058935.2731456081382930)", - "surface": 5470000, - "canton": null, - "numero_insee": "73321" - } - }, - { - "pk": 21774, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLARODIN-BOURGET", - "center": "POINT (941931.9308912756387144 2033733.4388112020678818)", - "surface": 32930000, - "canton": null, - "numero_insee": "73322" - } - }, - { - "pk": 16937, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLAROGER", - "center": "POINT (953711.9620430113282055 2072072.7577752626966685)", - "surface": 34360000, - "canton": null, - "numero_insee": "73323" - } - }, - { - "pk": 24608, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VILLAROUX", - "center": "POINT (892572.2605280927382410 2058231.8534344122745097)", - "surface": 3020000, - "canton": null, - "numero_insee": "73324" - } - }, - { - "pk": 36047, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VIMINES", - "center": "POINT (874388.8799918873701245 2065882.9110603963490576)", - "surface": 14100000, - "canton": null, - "numero_insee": "73326" - } - }, - { - "pk": 27772, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VIONS", - "center": "POINT (869606.9435326294042170 2098172.5784537056460977)", - "surface": 5760000, - "canton": null, - "numero_insee": "73327" - } - }, - { - "pk": 31561, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VIVIERS-DU-LAC", - "center": "POINT (877484.1057560632470995 2078421.5427167234010994)", - "surface": 5030000, - "canton": null, - "numero_insee": "73328" - } - }, - { - "pk": 5116, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "VOGLANS", - "center": "POINT (877106.1387622915208340 2075815.8030150320846587)", - "surface": 4660000, - "canton": null, - "numero_insee": "73329" - } - }, - { - "pk": 16351, - "model": "ishtar_common.town", - "fields": { - "departement": 74, - "name": "YENNE", - "center": "POINT (866828.3056707869982347 2083735.0670317539479584)", - "surface": 23270000, - "canton": null, - "numero_insee": "73330" - } - }, - { - "pk": 17282, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ABONDANCE", - "center": "POINT (938623.0023677896242589 2150115.1316545591689646)", - "surface": 58710000, - "canton": null, - "numero_insee": "74001" - } - }, - { - "pk": 6114, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ALBY-SUR-CHERAN", - "center": "POINT (885830.4680572915822268 2097211.1213936707936227)", - "surface": 6530000, - "canton": null, - "numero_insee": "74002" - } - }, - { - "pk": 31331, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ALEX", - "center": "POINT (902576.8782361499033868 2105262.8313041236251593)", - "surface": 16810000, - "canton": null, - "numero_insee": "74003" - } - }, - { - "pk": 13576, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ALLEVES", - "center": "POINT (891588.0059784846380353 2091154.9409581194631755)", - "surface": 8770000, - "canton": null, - "numero_insee": "74004" - } - }, - { - "pk": 9794, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ALLINGES", - "center": "POINT (917649.4912767547648400 2156439.7036703308112919)", - "surface": 15040000, - "canton": null, - "numero_insee": "74005" - } - }, - { - "pk": 35872, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ALLONZIER-LA-CAILLE", - "center": "POINT (891756.4281433944124728 2118081.5938278036192060)", - "surface": 9520000, - "canton": null, - "numero_insee": "74006" - } - }, - { - "pk": 11276, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "AMANCY", - "center": "POINT (908795.8815806442871690 2126936.5337743056006730)", - "surface": 8600000, - "canton": null, - "numero_insee": "74007" - } - }, - { - "pk": 11430, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "AMBILLY", - "center": "POINT (899872.8103486821055412 2140271.8410546169616282)", - "surface": 1210000, - "canton": null, - "numero_insee": "74008" - } - }, - { - "pk": 12379, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ANDILLY", - "center": "POINT (888788.4442302605602890 2125663.0489648748189211)", - "surface": 6050000, - "canton": null, - "numero_insee": "74009" - } - }, - { - "pk": 15755, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ANNECY", - "center": "POINT (893863.3396709940861911 2105888.3829804556444287)", - "surface": 15990000, - "canton": null, - "numero_insee": "74010" - } - }, - { - "pk": 17500, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ANNECY-LE-VIEUX", - "center": "POINT (896536.3398287249729037 2109314.5944754155352712)", - "surface": 17750000, - "canton": null, - "numero_insee": "74011" - } - }, - { - "pk": 18445, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ANNEMASSE", - "center": "POINT (901378.3791280873119831 2139784.3672685017809272)", - "surface": 4940000, - "canton": null, - "numero_insee": "74012" - } - }, - { - "pk": 11616, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ANTHY-SUR-LEMAN", - "center": "POINT (914628.8737252783030272 2158515.5069746403023601)", - "surface": 4600000, - "canton": null, - "numero_insee": "74013" - } - }, - { - "pk": 17601, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ARACHES-LA-FRASSE", - "center": "POINT (934548.7946991049684584 2123555.6576900421641767)", - "surface": 37420000, - "canton": null, - "numero_insee": "74014" - } - }, - { - "pk": 18255, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ARBUSIGNY", - "center": "POINT (899178.2682594300713390 2127954.6000934410840273)", - "surface": 12190000, - "canton": null, - "numero_insee": "74015" - } - }, - { - "pk": 35400, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ARCHAMPS", - "center": "POINT (893740.9337115251692012 2131711.2254803813993931)", - "surface": 10720000, - "canton": null, - "numero_insee": "74016" - } - }, - { - "pk": 27205, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ARENTHON", - "center": "POINT (909271.2611315324902534 2129843.3024269421584904)", - "surface": 11420000, - "canton": null, - "numero_insee": "74018" - } - }, - { - "pk": 8632, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ARGONAY", - "center": "POINT (895409.5206964637618512 2112307.6810379698872566)", - "surface": 5180000, - "canton": null, - "numero_insee": "74019" - } - }, - { - "pk": 13649, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ARMOY", - "center": "POINT (921132.4906586471479386 2158771.8522868538275361)", - "surface": 4960000, - "canton": null, - "numero_insee": "74020" - } - }, - { - "pk": 26142, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ARTHAZ-PONT-NOTRE-DAME", - "center": "POINT (903508.6195937816519290 2136499.7281257500872016)", - "surface": 5940000, - "canton": null, - "numero_insee": "74021" - } - }, - { - "pk": 22334, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "AYSE", - "center": "POINT (917586.0451858059968799 2129014.2451202608644962)", - "surface": 10410000, - "canton": null, - "numero_insee": "74024" - } - }, - { - "pk": 3857, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BALLAISON", - "center": "POINT (908584.3095070349518210 2151457.0382849369198084)", - "surface": 13250000, - "canton": null, - "numero_insee": "74025" - } - }, - { - "pk": 9864, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA BALME-DE-SILLINGY", - "center": "POINT (887283.6197222615592182 2114439.7286741039715707)", - "surface": 16270000, - "canton": null, - "numero_insee": "74026" - } - }, - { - "pk": 17214, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA BALME-DE-THUY", - "center": "POINT (906250.7179647495504469 2108697.6954435859806836)", - "surface": 17800000, - "canton": null, - "numero_insee": "74027" - } - }, - { - "pk": 14313, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BASSY", - "center": "POINT (870353.6820380224380642 2116095.7193730715662241)", - "surface": 7590000, - "canton": null, - "numero_insee": "74029" - } - }, - { - "pk": 37391, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA BAUME", - "center": "POINT (929002.0624674428254366 2151533.2862973324954510)", - "surface": 16920000, - "canton": null, - "numero_insee": "74030" - } - }, - { - "pk": 7734, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BEAUMONT", - "center": "POINT (892463.9833498704247177 2128897.6539707370102406)", - "surface": 9710000, - "canton": null, - "numero_insee": "74031" - } - }, - { - "pk": 18861, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BELLEVAUX", - "center": "POINT (925054.0991287551587448 2145093.3712464966811240)", - "surface": 48800000, - "canton": null, - "numero_insee": "74032" - } - }, - { - "pk": 20563, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BERNEX", - "center": "POINT (935534.8137211080174893 2159997.3339123083278537)", - "surface": 22260000, - "canton": null, - "numero_insee": "74033" - } - }, - { - "pk": 34109, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LE BIOT", - "center": "POINT (931513.6516653484432027 2150454.0057168141938746)", - "surface": 13070000, - "canton": null, - "numero_insee": "74034" - } - }, - { - "pk": 8001, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BLOYE", - "center": "POINT (880622.5093846536474302 2097566.6700887102633715)", - "surface": 4440000, - "canton": null, - "numero_insee": "74035" - } - }, - { - "pk": 8000, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BLUFFY", - "center": "POINT (901590.6853780710371211 2103552.7345466222614050)", - "surface": 3730000, - "canton": null, - "numero_insee": "74036" - } - }, - { - "pk": 6370, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BOGEVE", - "center": "POINT (916482.3674176624044776 2140915.6040716953575611)", - "surface": 6960000, - "canton": null, - "numero_insee": "74038" - } - }, - { - "pk": 32908, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BONNE", - "center": "POINT (907399.8026765031972900 2137934.5707682245410979)", - "surface": 8570000, - "canton": null, - "numero_insee": "74040" - } - }, - { - "pk": 37829, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BONNEVAUX", - "center": "POINT (933293.5072633839445189 2152971.6534258243627846)", - "surface": 7760000, - "canton": null, - "numero_insee": "74041" - } - }, - { - "pk": 14877, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BONNEVILLE", - "center": "POINT (914797.5033404489513487 2127388.6976819708943367)", - "surface": 27240000, - "canton": null, - "numero_insee": "74042" - } - }, - { - "pk": 19043, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BONS-EN-CHABLAIS", - "center": "POINT (910013.1062901455443352 2148266.4769691228866577)", - "surface": 18980000, - "canton": null, - "numero_insee": "74043" - } - }, - { - "pk": 6055, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BOSSEY", - "center": "POINT (896215.4360672652255744 2134935.4790823650546372)", - "surface": 3860000, - "canton": null, - "numero_insee": "74044" - } - }, - { - "pk": 32780, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LE BOUCHET", - "center": "POINT (914455.3026709695113823 2097457.8779014190658927)", - "surface": 18370000, - "canton": null, - "numero_insee": "74045" - } - }, - { - "pk": 11996, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BOUSSY", - "center": "POINT (883095.3873008431401104 2100991.1510138162411749)", - "surface": 5270000, - "canton": null, - "numero_insee": "74046" - } - }, - { - "pk": 8514, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BRENTHONNE", - "center": "POINT (912609.2172838957048953 2148989.5163432210683823)", - "surface": 8390000, - "canton": null, - "numero_insee": "74048" - } - }, - { - "pk": 22844, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BRIZON", - "center": "POINT (917035.6589185316115618 2123204.1467563225887716)", - "surface": 10310000, - "canton": null, - "numero_insee": "74049" - } - }, - { - "pk": 28820, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "BURDIGNIN", - "center": "POINT (915245.0734442683169618 2145108.7385200504213572)", - "surface": 9790000, - "canton": null, - "numero_insee": "74050" - } - }, - { - "pk": 25642, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CERCIER", - "center": "POINT (887233.6313167847692966 2120244.6752793132327497)", - "surface": 11530000, - "canton": null, - "numero_insee": "74051" - } - }, - { - "pk": 29262, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CERNEX", - "center": "POINT (886294.0842091310769320 2124740.7389281936921179)", - "surface": 12630000, - "canton": null, - "numero_insee": "74052" - } - }, - { - "pk": 12287, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CERVENS", - "center": "POINT (916599.5728765582898632 2150525.3216528836637735)", - "surface": 6360000, - "canton": null, - "numero_insee": "74053" - } - }, - { - "pk": 25507, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHAINAZ-LES-FRASSES", - "center": "POINT (883965.0042364250402898 2092991.0980985153000802)", - "surface": 5530000, - "canton": null, - "numero_insee": "74054" - } - }, - { - "pk": 33086, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHALLONGES", - "center": "POINT (870124.2518676496110857 2119496.8952048467472196)", - "surface": 7830000, - "canton": null, - "numero_insee": "74055" - } - }, - { - "pk": 17858, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHAMONIX-MONT-BLANC", - "center": "POINT (955553.2617726961616427 2113728.1662633009254932)", - "surface": 245450000, - "canton": null, - "numero_insee": "74056" - } - }, - { - "pk": 3998, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHAMPANGES", - "center": "POINT (924216.0144568023970351 2161000.4652523212134838)", - "surface": 3670000, - "canton": null, - "numero_insee": "74057" - } - }, - { - "pk": 22880, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA CHAPELLE-D'ABONDANCE", - "center": "POINT (943091.2207962682005018 2154257.4990925174206495)", - "surface": 37760000, - "canton": null, - "numero_insee": "74058" - } - }, - { - "pk": 32044, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA CHAPELLE-RAMBAUD", - "center": "POINT (901691.6000839916523546 2126675.0731070567853749)", - "surface": 4280000, - "canton": null, - "numero_insee": "74059" - } - }, - { - "pk": 9004, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA CHAPELLE-SAINT-MAURICE", - "center": "POINT (896778.7443268935894594 2092801.1771536648739129)", - "surface": 6490000, - "canton": null, - "numero_insee": "74060" - } - }, - { - "pk": 10629, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHAPEIRY", - "center": "POINT (887508.6741502769291401 2099928.1125210612080991)", - "surface": 5800000, - "canton": null, - "numero_insee": "74061" - } - }, - { - "pk": 6702, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHARVONNEX", - "center": "POINT (895875.4485833618091419 2116315.4151045167818666)", - "surface": 4770000, - "canton": null, - "numero_insee": "74062" - } - }, - { - "pk": 16707, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHATEL", - "center": "POINT (945242.3402316933497787 2148570.9670717488043010)", - "surface": 32140000, - "canton": null, - "numero_insee": "74063" - } - }, - { - "pk": 28230, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHATILLON-SUR-CLUSES", - "center": "POINT (927788.6097888323711231 2129803.0247062630951405)", - "surface": 9050000, - "canton": null, - "numero_insee": "74064" - } - }, - { - "pk": 29689, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHAUMONT", - "center": "POINT (879106.9327571045141667 2122476.8423986067064106)", - "surface": 12330000, - "canton": null, - "numero_insee": "74065" - } - }, - { - "pk": 8748, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHAVANNAZ", - "center": "POINT (884605.5692784449784085 2123224.8174983249045908)", - "surface": 3210000, - "canton": null, - "numero_insee": "74066" - } - }, - { - "pk": 37010, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHAVANOD", - "center": "POINT (888165.3235987182706594 2105038.5526162739843130)", - "surface": 13270000, - "canton": null, - "numero_insee": "74067" - } - }, - { - "pk": 31756, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHENE-EN-SEMINE", - "center": "POINT (872498.7493184930644929 2122720.2699514017440379)", - "surface": 9420000, - "canton": null, - "numero_insee": "74068" - } - }, - { - "pk": 36850, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHENEX", - "center": "POINT (882353.7346698299515992 2129010.7695616283454001)", - "surface": 5370000, - "canton": null, - "numero_insee": "74069" - } - }, - { - "pk": 12110, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHESSENAZ", - "center": "POINT (876209.6378097166307271 2121851.3595401919446886)", - "surface": 5240000, - "canton": null, - "numero_insee": "74071" - } - }, - { - "pk": 4609, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHEVALINE", - "center": "POINT (901220.5450416032690555 2088435.2921025061514229)", - "surface": 13970000, - "canton": null, - "numero_insee": "74072" - } - }, - { - "pk": 31291, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHEVENOZ", - "center": "POINT (931155.4266438875347376 2157156.9476157655008137)", - "surface": 10490000, - "canton": null, - "numero_insee": "74073" - } - }, - { - "pk": 29289, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHEVRIER", - "center": "POINT (876241.6989768791245297 2129758.9051425335928798)", - "surface": 5320000, - "canton": null, - "numero_insee": "74074" - } - }, - { - "pk": 23426, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHILLY", - "center": "POINT (880361.3549614674411714 2116281.9011648762971163)", - "surface": 18510000, - "canton": null, - "numero_insee": "74075" - } - }, - { - "pk": 14721, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CHOISY", - "center": "POINT (887857.4134902231162414 2117547.5470745190978050)", - "surface": 16480000, - "canton": null, - "numero_insee": "74076" - } - }, - { - "pk": 6089, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CLARAFOND-ARCINE", - "center": "POINT (875176.9327241682913154 2125545.8860347871668637)", - "surface": 16920000, - "canton": null, - "numero_insee": "74077" - } - }, - { - "pk": 13633, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CLERMONT", - "center": "POINT (876774.6429753047414124 2114349.2748768711462617)", - "surface": 6960000, - "canton": null, - "numero_insee": "74078" - } - }, - { - "pk": 22494, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LES CLEFS", - "center": "POINT (909815.0390222540590912 2101621.7895022281445563)", - "surface": 18450000, - "canton": null, - "numero_insee": "74079" - } - }, - { - "pk": 15758, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA CLUSAZ", - "center": "POINT (919866.7369593409821391 2108314.7413361477665603)", - "surface": 40670000, - "canton": null, - "numero_insee": "74080" - } - }, - { - "pk": 29326, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CLUSES", - "center": "POINT (928013.8634319733828306 2126902.3019322589971125)", - "surface": 10450000, - "canton": null, - "numero_insee": "74081" - } - }, - { - "pk": 10154, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "COLLONGES-SOUS-SALEVE", - "center": "POINT (895328.4807536795269698 2133326.3714119298383594)", - "surface": 6120000, - "canton": null, - "numero_insee": "74082" - } - }, - { - "pk": 27702, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CONS-SAINTE-COLOMBE", - "center": "POINT (910713.3153163142269477 2090318.8703084401786327)", - "surface": 3470000, - "canton": null, - "numero_insee": "74084" - } - }, - { - "pk": 31509, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LES CONTAMINES-MONTJOIE", - "center": "POINT (941483.9619781805668026 2097090.8750746804289520)", - "surface": 81490000, - "canton": null, - "numero_insee": "74085" - } - }, - { - "pk": 6658, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CONTAMINE-SARZIN", - "center": "POINT (882131.0162959545850754 2120000.5593838281929493)", - "surface": 6800000, - "canton": null, - "numero_insee": "74086" - } - }, - { - "pk": 9793, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CONTAMINE-SUR-ARVE", - "center": "POINT (909037.4133288150187582 2133744.8612567014060915)", - "surface": 6710000, - "canton": null, - "numero_insee": "74087" - } - }, - { - "pk": 36165, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "COPPONEX", - "center": "POINT (888812.5803841028828174 2122860.6755060143768787)", - "surface": 9230000, - "canton": null, - "numero_insee": "74088" - } - }, - { - "pk": 35264, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CORNIER", - "center": "POINT (905677.7191161394584924 2128711.2898659599013627)", - "surface": 6770000, - "canton": null, - "numero_insee": "74090" - } - }, - { - "pk": 14876, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA COTE-D'ARBROZ", - "center": "POINT (931301.6629913884680718 2140242.9133391231298447)", - "surface": 12190000, - "canton": null, - "numero_insee": "74091" - } - }, - { - "pk": 3798, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CRAN-GEVRIER", - "center": "POINT (891851.2700930834980682 2107072.1712392573244870)", - "surface": 4690000, - "canton": null, - "numero_insee": "74093" - } - }, - { - "pk": 34992, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CREMPIGNY-BONNEGUETE", - "center": "POINT (876400.1320599410682917 2111343.2627631803043187)", - "surface": 5930000, - "canton": null, - "numero_insee": "74095" - } - }, - { - "pk": 18289, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CRUSEILLES", - "center": "POINT (892322.4491239602211863 2122090.1709458958357573)", - "surface": 25440000, - "canton": null, - "numero_insee": "74096" - } - }, - { - "pk": 14568, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CUSY", - "center": "POINT (887486.1515042493119836 2090919.4257573366630822)", - "surface": 17630000, - "canton": null, - "numero_insee": "74097" - } - }, - { - "pk": 24167, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "CUVAT", - "center": "POINT (892179.1873283928725868 2115482.8238277384079993)", - "surface": 4750000, - "canton": null, - "numero_insee": "74098" - } - }, - { - "pk": 13437, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DEMI-QUARTIER", - "center": "POINT (933398.2607173819560558 2106129.5095478519797325)", - "surface": 8860000, - "canton": null, - "numero_insee": "74099" - } - }, - { - "pk": 26478, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DESINGY", - "center": "POINT (874948.1372608996462077 2117236.2526449905708432)", - "surface": 18850000, - "canton": null, - "numero_insee": "74100" - } - }, - { - "pk": 33781, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DINGY-EN-VUACHE", - "center": "POINT (879265.7607807269087061 2127282.6302059479057789)", - "surface": 7200000, - "canton": null, - "numero_insee": "74101" - } - }, - { - "pk": 30074, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DINGY-SAINT-CLAIR", - "center": "POINT (903431.0488053564913571 2110675.2448321981355548)", - "surface": 33810000, - "canton": null, - "numero_insee": "74102" - } - }, - { - "pk": 33778, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DOMANCY", - "center": "POINT (935567.2700124966213480 2109951.8218074818141758)", - "surface": 7360000, - "canton": null, - "numero_insee": "74103" - } - }, - { - "pk": 17005, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DOUSSARD", - "center": "POINT (902081.6386086593847722 2093047.0755536807700992)", - "surface": 22620000, - "canton": null, - "numero_insee": "74104" - } - }, - { - "pk": 36233, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DOUVAINE", - "center": "POINT (905070.1899325256235898 2152727.8924397910013795)", - "surface": 10550000, - "canton": null, - "numero_insee": "74105" - } - }, - { - "pk": 37623, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DRAILLANT", - "center": "POINT (918486.4532994409091771 2152243.1502946591936052)", - "surface": 10370000, - "canton": null, - "numero_insee": "74106" - } - }, - { - "pk": 23656, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DROISY", - "center": "POINT (874583.9541097411420196 2113029.2213646429590881)", - "surface": 4560000, - "canton": null, - "numero_insee": "74107" - } - }, - { - "pk": 32016, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "DUINGT", - "center": "POINT (899733.0453488561324775 2098431.9260468930006027)", - "surface": 6090000, - "canton": null, - "numero_insee": "74108" - } - }, - { - "pk": 31755, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ELOISE", - "center": "POINT (871365.9707624246366322 2126413.9357406394556165)", - "surface": 8900000, - "canton": null, - "numero_insee": "74109" - } - }, - { - "pk": 37497, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ENTREMONT", - "center": "POINT (912915.0180061901919544 2113559.6720989169552922)", - "surface": 18000000, - "canton": null, - "numero_insee": "74110" - } - }, - { - "pk": 34770, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ENTREVERNES", - "center": "POINT (898874.5361205148510635 2093519.9017205894924700)", - "surface": 8040000, - "canton": null, - "numero_insee": "74111" - } - }, - { - "pk": 25817, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "EPAGNY", - "center": "POINT (890309.4612922626547515 2111763.2763574062846601)", - "surface": 6670000, - "canton": null, - "numero_insee": "74112" - } - }, - { - "pk": 30682, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ESSERT-ROMAND", - "center": "POINT (933482.7332803981844336 2142663.9577747494913638)", - "surface": 6730000, - "canton": null, - "numero_insee": "74114" - } - }, - { - "pk": 8380, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ETAUX", - "center": "POINT (904204.9369506898801774 2125395.5494290771894157)", - "surface": 13720000, - "canton": null, - "numero_insee": "74116" - } - }, - { - "pk": 28552, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ETERCY", - "center": "POINT (884756.3608037105295807 2105709.8555962550453842)", - "surface": 4440000, - "canton": null, - "numero_insee": "74117" - } - }, - { - "pk": 36677, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ETREMBIERES", - "center": "POINT (898797.7751338207162917 2137259.8388442294672132)", - "surface": 5370000, - "canton": null, - "numero_insee": "74118" - } - }, - { - "pk": 30555, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "EVIAN-LES-BAINS", - "center": "POINT (926596.3595279944129288 2163523.2727648518048227)", - "surface": 4440000, - "canton": null, - "numero_insee": "74119" - } - }, - { - "pk": 15073, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "EVIRES", - "center": "POINT (900520.7859881713520736 2123161.7514849808067083)", - "surface": 19400000, - "canton": null, - "numero_insee": "74120" - } - }, - { - "pk": 28104, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "EXCENEVEX", - "center": "POINT (908032.0821870905347168 2157457.6722018122673035)", - "surface": 6670000, - "canton": null, - "numero_insee": "74121" - } - }, - { - "pk": 7409, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "FAUCIGNY", - "center": "POINT (911555.0636547331232578 2131964.9375747125595808)", - "surface": 4940000, - "canton": null, - "numero_insee": "74122" - } - }, - { - "pk": 4167, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "FAVERGES", - "center": "POINT (907104.9895152350654826 2090888.3111968468874693)", - "surface": 25850000, - "canton": null, - "numero_insee": "74123" - } - }, - { - "pk": 26679, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "FEIGERES", - "center": "POINT (888649.5693058923352510 2130165.9889673236757517)", - "surface": 7740000, - "canton": null, - "numero_insee": "74124" - } - }, - { - "pk": 25092, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "FESSY", - "center": "POINT (914808.4502485583070666 2149308.7725854390300810)", - "surface": 8520000, - "canton": null, - "numero_insee": "74126" - } - }, - { - "pk": 16107, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "FILLINGES", - "center": "POINT (909806.1317113717086613 2137454.8768893252126873)", - "surface": 11660000, - "canton": null, - "numero_insee": "74128" - } - }, - { - "pk": 20513, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA FORCLAZ", - "center": "POINT (929369.5169128582347184 2155339.8886351841501892)", - "surface": 3910000, - "canton": null, - "numero_insee": "74129" - } - }, - { - "pk": 26286, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "FRANCLENS", - "center": "POINT (869803.3432865852955729 2121896.3531471672467887)", - "surface": 5260000, - "canton": null, - "numero_insee": "74130" - } - }, - { - "pk": 34512, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "FRANGY", - "center": "POINT (877527.1033657060470432 2119960.9389653615653515)", - "surface": 9690000, - "canton": null, - "numero_insee": "74131" - } - }, - { - "pk": 28627, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "GAILLARD", - "center": "POINT (898686.4749793305527419 2138560.0649197967723012)", - "surface": 3900000, - "canton": null, - "numero_insee": "74133" - } - }, - { - "pk": 18784, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LES GETS", - "center": "POINT (933728.7698060411494225 2137361.2519666836597025)", - "surface": 30000000, - "canton": null, - "numero_insee": "74134" - } - }, - { - "pk": 12394, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "GIEZ", - "center": "POINT (904113.5892135447356850 2089561.2798644129652530)", - "surface": 12670000, - "canton": null, - "numero_insee": "74135" - } - }, - { - "pk": 17547, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LE GRAND-BORNAND", - "center": "POINT (920713.0553116619121283 2114627.9278067387640476)", - "surface": 61040000, - "canton": null, - "numero_insee": "74136" - } - }, - { - "pk": 19530, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "GROISY", - "center": "POINT (897042.8312960225157440 2120229.0903758569620550)", - "surface": 21320000, - "canton": null, - "numero_insee": "74137" - } - }, - { - "pk": 13851, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "GRUFFY", - "center": "POINT (889663.0742893693968654 2093840.9156303445342928)", - "surface": 14400000, - "canton": null, - "numero_insee": "74138" - } - }, - { - "pk": 34468, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "HABERE-LULLIN", - "center": "POINT (918045.6762848568614572 2145333.1021627457812428)", - "surface": 8830000, - "canton": null, - "numero_insee": "74139" - } - }, - { - "pk": 5421, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "HABERE-POCHE", - "center": "POINT (918724.6504007104085758 2147841.2314310218207538)", - "surface": 11950000, - "canton": null, - "numero_insee": "74140" - } - }, - { - "pk": 29069, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "HAUTEVILLE-SUR-FIER", - "center": "POINT (882442.3185993719380349 2107091.2451378637924790)", - "surface": 5060000, - "canton": null, - "numero_insee": "74141" - } - }, - { - "pk": 30177, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "HERY-SUR-ALBY", - "center": "POINT (885552.6113125872798264 2094606.2768660672008991)", - "surface": 7360000, - "canton": null, - "numero_insee": "74142" - } - }, - { - "pk": 15437, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LES HOUCHES", - "center": "POINT (946181.5847479739459231 2109443.0910775717347860)", - "surface": 46890000, - "canton": null, - "numero_insee": "74143" - } - }, - { - "pk": 6224, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "JONZIER-EPAGNY", - "center": "POINT (882378.7189476001076400 2126108.3191127958707511)", - "surface": 7110000, - "canton": null, - "numero_insee": "74144" - } - }, - { - "pk": 6608, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "JUVIGNY", - "center": "POINT (904856.2710906652500853 2142716.9992927662096918)", - "surface": 2660000, - "canton": null, - "numero_insee": "74145" - } - }, - { - "pk": 9534, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LARRINGES", - "center": "POINT (926918.2307367564644665 2161023.8179330276325345)", - "surface": 7970000, - "canton": null, - "numero_insee": "74146" - } - }, - { - "pk": 37124, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LATHUILE", - "center": "POINT (899978.0827145427465439 2093229.1302346007432789)", - "surface": 8750000, - "canton": null, - "numero_insee": "74147" - } - }, - { - "pk": 13095, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LESCHAUX", - "center": "POINT (893973.7168462863191962 2093077.2910627950914204)", - "surface": 12300000, - "canton": null, - "numero_insee": "74148" - } - }, - { - "pk": 28231, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LOISIN", - "center": "POINT (905594.7772848790045828 2149929.8918923386372626)", - "surface": 7810000, - "canton": null, - "numero_insee": "74150" - } - }, - { - "pk": 24765, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LORNAY", - "center": "POINT (875533.7990297618089244 2107332.0793883390724659)", - "surface": 9630000, - "canton": null, - "numero_insee": "74151" - } - }, - { - "pk": 26714, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LOVAGNY", - "center": "POINT (886746.0187900584423915 2107128.2955991844646633)", - "surface": 5390000, - "canton": null, - "numero_insee": "74152" - } - }, - { - "pk": 30330, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LUCINGES", - "center": "POINT (908078.8013106954749674 2140442.7074237400665879)", - "surface": 7660000, - "canton": null, - "numero_insee": "74153" - } - }, - { - "pk": 35999, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LUGRIN", - "center": "POINT (933398.4670351746026427 2163982.4380926000885665)", - "surface": 13370000, - "canton": null, - "numero_insee": "74154" - } - }, - { - "pk": 34799, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LULLIN", - "center": "POINT (921503.6330195032060146 2150567.6764333229511976)", - "surface": 13220000, - "canton": null, - "numero_insee": "74155" - } - }, - { - "pk": 26337, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LULLY", - "center": "POINT (913586.7197436329443008 2151700.3928132792934775)", - "surface": 4830000, - "canton": null, - "numero_insee": "74156" - } - }, - { - "pk": 26991, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LYAUD", - "center": "POINT (921951.3057606009533629 2156677.0402602092362940)", - "surface": 9160000, - "canton": null, - "numero_insee": "74157" - } - }, - { - "pk": 30332, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MACHILLY", - "center": "POINT (907119.3339220413472503 2147240.6028376794420183)", - "surface": 5850000, - "canton": null, - "numero_insee": "74158" - } - }, - { - "pk": 14878, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MAGLAND", - "center": "POINT (932675.7360968102002516 2120236.4073900124058127)", - "surface": 40290000, - "canton": null, - "numero_insee": "74159" - } - }, - { - "pk": 18962, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MANIGOD", - "center": "POINT (915512.1965296231210232 2102571.8015777710825205)", - "surface": 44000000, - "canton": null, - "numero_insee": "74160" - } - }, - { - "pk": 4846, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARCELLAZ-ALBANAIS", - "center": "POINT (884276.6085837269201875 2103303.4774775803089142)", - "surface": 14580000, - "canton": null, - "numero_insee": "74161" - } - }, - { - "pk": 12686, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARCELLAZ", - "center": "POINT (910426.4993475096998736 2135158.1287686564028263)", - "surface": 4150000, - "canton": null, - "numero_insee": "74162" - } - }, - { - "pk": 36797, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARGENCEL", - "center": "POINT (914449.4465463787782937 2156111.8028777278959751)", - "surface": 7410000, - "canton": null, - "numero_insee": "74163" - } - }, - { - "pk": 12417, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARIGNIER", - "center": "POINT (921280.5266862056450918 2130047.0704513951204717)", - "surface": 20620000, - "canton": null, - "numero_insee": "74164" - } - }, - { - "pk": 38042, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARIGNY-SAINT-MARCEL", - "center": "POINT (883315.3753106296062469 2098690.8822766458615661)", - "surface": 7320000, - "canton": null, - "numero_insee": "74165" - } - }, - { - "pk": 30331, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARIN", - "center": "POINT (921912.3973966457415372 2161180.7407547361217439)", - "surface": 5540000, - "canton": null, - "numero_insee": "74166" - } - }, - { - "pk": 24058, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARLENS", - "center": "POINT (912192.1706505265319720 2092934.0944398716092110)", - "surface": 15150000, - "canton": null, - "numero_insee": "74167" - } - }, - { - "pk": 18992, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARLIOZ", - "center": "POINT (884126.6862247512908652 2120718.3859973726794124)", - "surface": 8120000, - "canton": null, - "numero_insee": "74168" - } - }, - { - "pk": 24892, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MARNAZ", - "center": "POINT (923722.3274186446797103 2125463.9283414673991501)", - "surface": 9050000, - "canton": null, - "numero_insee": "74169" - } - }, - { - "pk": 30420, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MASSINGY", - "center": "POINT (878015.0869695664150640 2098144.7989317388273776)", - "surface": 12360000, - "canton": null, - "numero_insee": "74170" - } - }, - { - "pk": 12418, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MASSONGY", - "center": "POINT (906954.4908535317517817 2154745.9486102261580527)", - "surface": 9800000, - "canton": null, - "numero_insee": "74171" - } - }, - { - "pk": 23441, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MAXILLY-SUR-LEMAN", - "center": "POINT (930296.7940304110525176 2163855.5287196598947048)", - "surface": 4090000, - "canton": null, - "numero_insee": "74172" - } - }, - { - "pk": 21489, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MEGEVE", - "center": "POINT (932830.6234557176940143 2102321.0338032925501466)", - "surface": 43780000, - "canton": null, - "numero_insee": "74173" - } - }, - { - "pk": 37392, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MEGEVETTE", - "center": "POINT (922071.4859973234124482 2142765.5123597737401724)", - "surface": 21620000, - "canton": null, - "numero_insee": "74174" - } - }, - { - "pk": 33647, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MEILLERIE", - "center": "POINT (937693.3298218406271189 2165020.4811723660677671)", - "surface": 3930000, - "canton": null, - "numero_insee": "74175" - } - }, - { - "pk": 35705, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MENTHON-SAINT-BERNARD", - "center": "POINT (899389.6480693428311497 2103433.6659255521371961)", - "surface": 6630000, - "canton": null, - "numero_insee": "74176" - } - }, - { - "pk": 7986, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MENTHONNEX-EN-BORNES", - "center": "POINT (897202.4574514389969409 2124934.8067763098515570)", - "surface": 8520000, - "canton": null, - "numero_insee": "74177" - } - }, - { - "pk": 7394, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MENTHONNEX-SOUS-CLERMONT", - "center": "POINT (878886.7728398826438934 2113166.3325464222580194)", - "surface": 10160000, - "canton": null, - "numero_insee": "74178" - } - }, - { - "pk": 7960, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MESIGNY", - "center": "POINT (884166.3214980741031468 2116114.4669709154404700)", - "surface": 6770000, - "canton": null, - "numero_insee": "74179" - } - }, - { - "pk": 7901, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MESSERY", - "center": "POINT (904832.0387241323478520 2157129.7950786221772432)", - "surface": 9240000, - "canton": null, - "numero_insee": "74180" - } - }, - { - "pk": 7459, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "METZ-TESSY", - "center": "POINT (892116.1775186865124851 2111178.2806320604868233)", - "surface": 5210000, - "canton": null, - "numero_insee": "74181" - } - }, - { - "pk": 22339, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MEYTHET", - "center": "POINT (891534.6307034741621464 2108971.2187847341410816)", - "surface": 3290000, - "canton": null, - "numero_insee": "74182" - } - }, - { - "pk": 20756, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MIEUSSY", - "center": "POINT (924032.7377142063342035 2135876.1634396510198712)", - "surface": 44450000, - "canton": null, - "numero_insee": "74183" - } - }, - { - "pk": 27354, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MINZIER", - "center": "POINT (882599.5650337901897728 2123708.0093781002797186)", - "surface": 8740000, - "canton": null, - "numero_insee": "74184" - } - }, - { - "pk": 36123, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MONNETIER-MORNEX", - "center": "POINT (899214.5041387469973415 2135361.6963477572426200)", - "surface": 11480000, - "canton": null, - "numero_insee": "74185" - } - }, - { - "pk": 6115, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MONTAGNY-LES-LANCHES", - "center": "POINT (887990.1458199101034552 2102134.3252879702486098)", - "surface": 4410000, - "canton": null, - "numero_insee": "74186" - } - }, - { - "pk": 27685, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MONTMIN", - "center": "POINT (905453.5278190968092531 2096679.5524905710481107)", - "surface": 16220000, - "canton": null, - "numero_insee": "74187" - } - }, - { - "pk": 17503, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MONTRIOND", - "center": "POINT (939881.1508060239721090 2143520.0304138585925102)", - "surface": 24730000, - "canton": null, - "numero_insee": "74188" - } - }, - { - "pk": 33748, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MONT-SAXONNEX", - "center": "POINT (920536.9028015921358019 2123434.5662381858564913)", - "surface": 25640000, - "canton": null, - "numero_insee": "74189" - } - }, - { - "pk": 8646, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MORILLON", - "center": "POINT (935317.4495686249574646 2127265.7202189331874251)", - "surface": 14390000, - "canton": null, - "numero_insee": "74190" - } - }, - { - "pk": 18178, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MORZINE", - "center": "POINT (940013.2742762840352952 2139817.8028667401522398)", - "surface": 44020000, - "canton": null, - "numero_insee": "74191" - } - }, - { - "pk": 31945, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MOYE", - "center": "POINT (876172.1988863090518862 2102933.4533590106293559)", - "surface": 23580000, - "canton": null, - "numero_insee": "74192" - } - }, - { - "pk": 22425, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA MURAZ", - "center": "POINT (898145.5020596999675035 2131649.0942733716219664)", - "surface": 14230000, - "canton": null, - "numero_insee": "74193" - } - }, - { - "pk": 35606, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MURES", - "center": "POINT (887639.7870876623783261 2096325.8517198753543198)", - "surface": 5220000, - "canton": null, - "numero_insee": "74194" - } - }, - { - "pk": 34053, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "MUSIEGES", - "center": "POINT (880137.0669867789838463 2119082.5652374550700188)", - "surface": 2950000, - "canton": null, - "numero_insee": "74195" - } - }, - { - "pk": 7528, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NANCY-SUR-CLUSES", - "center": "POINT (927851.7525275675579906 2122496.8384034680202603)", - "surface": 14160000, - "canton": null, - "numero_insee": "74196" - } - }, - { - "pk": 10067, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NANGY", - "center": "POINT (906520.6332997144199908 2135424.7030367762781680)", - "surface": 4310000, - "canton": null, - "numero_insee": "74197" - } - }, - { - "pk": 29720, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NAVES-PARMELAN", - "center": "POINT (899225.7183936038054526 2110839.1740744975395501)", - "surface": 5480000, - "canton": null, - "numero_insee": "74198" - } - }, - { - "pk": 12835, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NERNIER", - "center": "POINT (905216.8276053990703076 2158934.7288891682401299)", - "surface": 1820000, - "canton": null, - "numero_insee": "74199" - } - }, - { - "pk": 24415, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NEUVECELLE", - "center": "POINT (928397.8337079058401287 2163538.8440198046155274)", - "surface": 4010000, - "canton": null, - "numero_insee": "74200" - } - }, - { - "pk": 33023, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NEYDENS", - "center": "POINT (891043.8332061616238207 2131087.4380151843652129)", - "surface": 6960000, - "canton": null, - "numero_insee": "74201" - } - }, - { - "pk": 26956, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NONGLARD", - "center": "POINT (886127.4055344442604110 2109224.9304424198344350)", - "surface": 4140000, - "canton": null, - "numero_insee": "74202" - } - }, - { - "pk": 34800, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "NOVEL", - "center": "POINT (940432.7793383661191911 2160740.3362132604233921)", - "surface": 9390000, - "canton": null, - "numero_insee": "74203" - } - }, - { - "pk": 32568, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LES OLLIERES", - "center": "POINT (898277.4979296319652349 2116336.1177274035289884)", - "surface": 11600000, - "canton": null, - "numero_insee": "74204" - } - }, - { - "pk": 37974, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "ORCIER", - "center": "POINT (920570.0359826810890809 2154363.0390253877267241)", - "surface": 9340000, - "canton": null, - "numero_insee": "74206" - } - }, - { - "pk": 21686, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PASSY", - "center": "POINT (941224.5454249074682593 2115505.8868349380791187)", - "surface": 80040000, - "canton": null, - "numero_insee": "74208" - } - }, - { - "pk": 12971, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PEILLONNEX", - "center": "POINT (912440.2730479108868167 2133774.2269841660745442)", - "surface": 6390000, - "canton": null, - "numero_insee": "74209" - } - }, - { - "pk": 32692, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PERRIGNIER", - "center": "POINT (915574.5488752276869491 2153318.9969715490005910)", - "surface": 7840000, - "canton": null, - "numero_insee": "74210" - } - }, - { - "pk": 18785, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PERS-JUSSY", - "center": "POINT (903065.1655731447972357 2129889.8598038079217076)", - "surface": 18570000, - "canton": null, - "numero_insee": "74211" - } - }, - { - "pk": 20470, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LE PETIT-BORNAND-LES-GLIERES", - "center": "POINT (913971.0378834549337626 2118773.6179995895363390)", - "surface": 53490000, - "canton": null, - "numero_insee": "74212" - } - }, - { - "pk": 26513, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "POISY", - "center": "POINT (888933.2585757275810465 2108848.7190288743004203)", - "surface": 11430000, - "canton": null, - "numero_insee": "74213" - } - }, - { - "pk": 15838, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PRAZ-SUR-ARLY", - "center": "POINT (929540.7423420837149024 2100791.1849147155880928)", - "surface": 22580000, - "canton": null, - "numero_insee": "74215" - } - }, - { - "pk": 25643, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PRESILLY", - "center": "POINT (890174.9734792017843574 2127376.5560036958195269)", - "surface": 8600000, - "canton": null, - "numero_insee": "74216" - } - }, - { - "pk": 26509, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PRINGY", - "center": "POINT (892298.2420788656454533 2113281.8045243276283145)", - "surface": 8930000, - "canton": null, - "numero_insee": "74217" - } - }, - { - "pk": 25178, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "PUBLIER", - "center": "POINT (923197.8989096451550722 2162993.4576013446785510)", - "surface": 9030000, - "canton": null, - "numero_insee": "74218" - } - }, - { - "pk": 22993, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "QUINTAL", - "center": "POINT (891616.5357439812505618 2099463.0211071283556521)", - "surface": 9140000, - "canton": null, - "numero_insee": "74219" - } - }, - { - "pk": 17280, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "REIGNIER-ESERY", - "center": "POINT (903132.4515465334989130 2133693.9239322752691805)", - "surface": 25000000, - "canton": null, - "numero_insee": "74220" - } - }, - { - "pk": 15113, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LE REPOSOIR", - "center": "POINT (924375.5824186070822179 2119363.9304829076863825)", - "surface": 37210000, - "canton": null, - "numero_insee": "74221" - } - }, - { - "pk": 8513, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA RIVIERE-ENVERSE", - "center": "POINT (932090.5114111872389913 2130040.3947476064786315)", - "surface": 7960000, - "canton": null, - "numero_insee": "74223" - } - }, - { - "pk": 31087, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA ROCHE-SUR-FORON", - "center": "POINT (906722.5956727578304708 2123615.6048095570877194)", - "surface": 17920000, - "canton": null, - "numero_insee": "74224" - } - }, - { - "pk": 23579, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "RUMILLY", - "center": "POINT (879789.0875749434344471 2101363.0713088512420654)", - "surface": 16960000, - "canton": null, - "numero_insee": "74225" - } - }, - { - "pk": 10873, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-ANDRE-DE-BOEGE", - "center": "POINT (912081.2814274264965206 2140577.3377793692052364)", - "surface": 12520000, - "canton": null, - "numero_insee": "74226" - } - }, - { - "pk": 7223, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-BLAISE", - "center": "POINT (890392.3851753901690245 2125376.5880456240847707)", - "surface": 2550000, - "canton": null, - "numero_insee": "74228" - } - }, - { - "pk": 34354, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-CERGUES", - "center": "POINT (907542.9805078182835132 2144541.8109097359701991)", - "surface": 12500000, - "canton": null, - "numero_insee": "74229" - } - }, - { - "pk": 35707, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-EUSEBE", - "center": "POINT (881118.8041237732395530 2109682.2812231546267867)", - "surface": 6890000, - "canton": null, - "numero_insee": "74231" - } - }, - { - "pk": 9257, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-EUSTACHE", - "center": "POINT (896455.1953696894925088 2095500.9404029606375843)", - "surface": 10500000, - "canton": null, - "numero_insee": "74232" - } - }, - { - "pk": 33356, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-FELIX", - "center": "POINT (882836.4788589084055275 2096184.4053018433041871)", - "surface": 6560000, - "canton": null, - "numero_insee": "74233" - } - }, - { - "pk": 29062, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-FERREOL", - "center": "POINT (908573.4901237504091114 2094704.5751316105015576)", - "surface": 16730000, - "canton": null, - "numero_insee": "74234" - } - }, - { - "pk": 27136, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-GERMAIN-SUR-RHONE", - "center": "POINT (869778.3869944063480943 2124798.8118785191327333)", - "surface": 7840000, - "canton": null, - "numero_insee": "74235" - } - }, - { - "pk": 15842, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-GERVAIS-LES-BAINS", - "center": "POINT (941818.4981709092389792 2104700.9280502782203257)", - "surface": 86420000, - "canton": null, - "numero_insee": "74236" - } - }, - { - "pk": 10587, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-GINGOLPH", - "center": "POINT (941406.7509738655062392 2163851.5403908253647387)", - "surface": 7330000, - "canton": null, - "numero_insee": "74237" - } - }, - { - "pk": 14879, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-JEAN-D'AULPS", - "center": "POINT (933357.5516941631212831 2145565.5109009472653270)", - "surface": 40450000, - "canton": null, - "numero_insee": "74238" - } - }, - { - "pk": 7100, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-JEAN-DE-SIXT", - "center": "POINT (915741.6084471105132252 2110781.4601160348393023)", - "surface": 12250000, - "canton": null, - "numero_insee": "74239" - } - }, - { - "pk": 33904, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-JEAN-DE-THOLOME", - "center": "POINT (915062.3325909640407190 2131494.7522341948933899)", - "surface": 12280000, - "canton": null, - "numero_insee": "74240" - } - }, - { - "pk": 25680, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-JORIOZ", - "center": "POINT (896129.0600171220721677 2098500.9584196330979466)", - "surface": 22820000, - "canton": null, - "numero_insee": "74242" - } - }, - { - "pk": 8988, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-JULIEN-EN-GENEVOIS", - "center": "POINT (889022.3211385400500149 2133372.1313892696052790)", - "surface": 10610000, - "canton": null, - "numero_insee": "74243" - } - }, - { - "pk": 29106, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-LAURENT", - "center": "POINT (910730.3088428762275726 2123149.7208660198375583)", - "surface": 10930000, - "canton": null, - "numero_insee": "74244" - } - }, - { - "pk": 22957, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-MARTIN-BELLEVUE", - "center": "POINT (894485.4645343520678580 2115002.2299367547966540)", - "surface": 9280000, - "canton": null, - "numero_insee": "74245" - } - }, - { - "pk": 22371, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-PAUL-EN-CHABLAIS", - "center": "POINT (930620.4028827658621594 2161155.9108872036449611)", - "surface": 14380000, - "canton": null, - "numero_insee": "74249" - } - }, - { - "pk": 30224, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-SIGISMOND", - "center": "POINT (930903.3412971941288561 2128428.6592940948903561)", - "surface": 7830000, - "canton": null, - "numero_insee": "74252" - } - }, - { - "pk": 8308, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-SIXT", - "center": "POINT (908424.9019253202714026 2123530.1981803807429969)", - "surface": 5170000, - "canton": null, - "numero_insee": "74253" - } - }, - { - "pk": 32659, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAINT-SYLVESTRE", - "center": "POINT (885506.0804716892307624 2100010.9638529196381569)", - "surface": 5350000, - "canton": null, - "numero_insee": "74254" - } - }, - { - "pk": 27309, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SALES", - "center": "POINT (881164.4571354748914018 2104377.7205950608476996)", - "surface": 9160000, - "canton": null, - "numero_insee": "74255" - } - }, - { - "pk": 16941, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SALLANCHES", - "center": "POINT (930926.9779377563390881 2114115.6214184397831559)", - "surface": 65580000, - "canton": null, - "numero_insee": "74256" - } - }, - { - "pk": 22048, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SALLENOVES", - "center": "POINT (882949.7893282101722434 2117905.6633383100852370)", - "surface": 3690000, - "canton": null, - "numero_insee": "74257" - } - }, - { - "pk": 18738, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAMOENS", - "center": "POINT (940595.9597143298014998 2130314.1421121908351779)", - "surface": 97080000, - "canton": null, - "numero_insee": "74258" - } - }, - { - "pk": 27740, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LE SAPPEY", - "center": "POINT (895574.3633577665314078 2128023.6286112200468779)", - "surface": 13590000, - "canton": null, - "numero_insee": "74259" - } - }, - { - "pk": 4184, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAVIGNY", - "center": "POINT (879484.0171794871566817 2125182.5763942920602858)", - "surface": 10230000, - "canton": null, - "numero_insee": "74260" - } - }, - { - "pk": 7168, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SAXEL", - "center": "POINT (913432.3435474091675133 2146394.2681058840826154)", - "surface": 5610000, - "canton": null, - "numero_insee": "74261" - } - }, - { - "pk": 29976, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SCIENTRIER", - "center": "POINT (907549.1035743849352002 2132230.6461721686646342)", - "surface": 7220000, - "canton": null, - "numero_insee": "74262" - } - }, - { - "pk": 28007, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SCIONZIER", - "center": "POINT (925626.5326901472872123 2125180.1037784260697663)", - "surface": 10530000, - "canton": null, - "numero_insee": "74264" - } - }, - { - "pk": 4902, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SERRAVAL", - "center": "POINT (910646.8203825342934579 2098025.5775020485743880)", - "surface": 19680000, - "canton": null, - "numero_insee": "74265" - } - }, - { - "pk": 9256, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SERVOZ", - "center": "POINT (944734.4710619901306927 2114735.5145452409051359)", - "surface": 13450000, - "canton": null, - "numero_insee": "74266" - } - }, - { - "pk": 29847, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SEVRIER", - "center": "POINT (895097.1457771821878850 2102095.4514668667688966)", - "surface": 18280000, - "canton": null, - "numero_insee": "74267" - } - }, - { - "pk": 28658, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SEYSSEL", - "center": "POINT (872485.6000114229973406 2112610.8018310633487999)", - "surface": 16760000, - "canton": null, - "numero_insee": "74269" - } - }, - { - "pk": 17007, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SEYTHENEX", - "center": "POINT (907445.8270146617433056 2086186.7876108519267291)", - "surface": 33270000, - "canton": null, - "numero_insee": "74270" - } - }, - { - "pk": 10195, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SEYTROUX", - "center": "POINT (928844.2878160966793075 2146627.4887229870073497)", - "surface": 18520000, - "canton": null, - "numero_insee": "74271" - } - }, - { - "pk": 33274, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SILLINGY", - "center": "POINT (886003.1904689132934436 2112026.4708390315063298)", - "surface": 14780000, - "canton": null, - "numero_insee": "74272" - } - }, - { - "pk": 16535, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "SIXT-FER-A-CHEVAL", - "center": "POINT (946130.0623733151005581 2126958.9039587210863829)", - "surface": 118740000, - "canton": null, - "numero_insee": "74273" - } - }, - { - "pk": 24577, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VAL-DE-FIER", - "center": "POINT (875717.6125915145967156 2109235.4341738647781312)", - "surface": 10170000, - "canton": null, - "numero_insee": "74274" - } - }, - { - "pk": 24105, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "TALLOIRES", - "center": "POINT (902319.7677133439574391 2100255.9207122153602540)", - "surface": 25500000, - "canton": null, - "numero_insee": "74275" - } - }, - { - "pk": 21104, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "TANINGES", - "center": "POINT (929854.0475610918365419 2134024.7320786798372865)", - "surface": 42510000, - "canton": null, - "numero_insee": "74276" - } - }, - { - "pk": 35514, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "THYEZ", - "center": "POINT (924588.5012606661766768 2129475.0958691514097154)", - "surface": 9700000, - "canton": null, - "numero_insee": "74278" - } - }, - { - "pk": 27206, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "THOLLON-LES-MEMISES", - "center": "POINT (937610.5648444432299584 2163017.9773526666685939)", - "surface": 13890000, - "canton": null, - "numero_insee": "74279" - } - }, - { - "pk": 3556, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "THONES", - "center": "POINT (908975.4904180293669924 2106118.7681491221301258)", - "surface": 52230000, - "canton": null, - "numero_insee": "74280" - } - }, - { - "pk": 18185, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "THONON-LES-BAINS", - "center": "POINT (918714.0935867845546454 2160652.6659478149376810)", - "surface": 16390000, - "canton": null, - "numero_insee": "74281" - } - }, - { - "pk": 16355, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "THORENS-GLIERES", - "center": "POINT (905971.1245340402238071 2117903.8484470881521702)", - "surface": 62700000, - "canton": null, - "numero_insee": "74282" - } - }, - { - "pk": 7458, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "THUSY", - "center": "POINT (881098.9922570902854204 2111984.2537462883628905)", - "surface": 10750000, - "canton": null, - "numero_insee": "74283" - } - }, - { - "pk": 13254, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA TOUR", - "center": "POINT (916240.8771975820418447 2134107.3102406575344503)", - "surface": 7740000, - "canton": null, - "numero_insee": "74284" - } - }, - { - "pk": 30886, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "USINENS", - "center": "POINT (872032.7540801955619827 2118712.5666488264687359)", - "surface": 7430000, - "canton": null, - "numero_insee": "74285" - } - }, - { - "pk": 16706, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VACHERESSE", - "center": "POINT (936267.4206912757363170 2156300.3471751045435667)", - "surface": 30790000, - "canton": null, - "numero_insee": "74286" - } - }, - { - "pk": 19343, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VAILLY", - "center": "POINT (924590.6354491519741714 2152395.9723103451542556)", - "surface": 18700000, - "canton": null, - "numero_insee": "74287" - } - }, - { - "pk": 5293, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VALLEIRY", - "center": "POINT (880741.1861950410529971 2130298.0824180622585118)", - "surface": 6890000, - "canton": null, - "numero_insee": "74288" - } - }, - { - "pk": 36424, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VALLIERES", - "center": "POINT (879640.7706464418442920 2106967.0407332591712475)", - "surface": 8960000, - "canton": null, - "numero_insee": "74289" - } - }, - { - "pk": 19042, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VALLORCINE", - "center": "POINT (953161.1348465605406091 2124117.1062709116376936)", - "surface": 44370000, - "canton": null, - "numero_insee": "74290" - } - }, - { - "pk": 27741, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VANZY", - "center": "POINT (874014.6568053712835535 2121031.7388819167390466)", - "surface": 5610000, - "canton": null, - "numero_insee": "74291" - } - }, - { - "pk": 14082, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VAULX", - "center": "POINT (883923.7927015838213265 2109406.1453148094005883)", - "surface": 11170000, - "canton": null, - "numero_insee": "74292" - } - }, - { - "pk": 17281, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VEIGY-FONCENEX", - "center": "POINT (902802.8148896323982626 2148704.7260148366913199)", - "surface": 13010000, - "canton": null, - "numero_insee": "74293" - } - }, - { - "pk": 19217, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VERCHAIX", - "center": "POINT (936161.9465277181006968 2133778.9990247460082173)", - "surface": 15920000, - "canton": null, - "numero_insee": "74294" - } - }, - { - "pk": 29748, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LA VERNAZ", - "center": "POINT (927878.6598289386602119 2154125.9208445134572685)", - "surface": 7780000, - "canton": null, - "numero_insee": "74295" - } - }, - { - "pk": 29901, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VERS", - "center": "POINT (885068.9391694506630301 2127532.7668700707145035)", - "surface": 5970000, - "canton": null, - "numero_insee": "74296" - } - }, - { - "pk": 35538, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VERSONNEX", - "center": "POINT (878420.7922258785692975 2109158.5973327648825943)", - "surface": 4200000, - "canton": null, - "numero_insee": "74297" - } - }, - { - "pk": 35748, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VETRAZ-MONTHOUX", - "center": "POINT (902989.2115138971712440 2138697.2559519293718040)", - "surface": 7100000, - "canton": null, - "numero_insee": "74298" - } - }, - { - "pk": 37593, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VEYRIER-DU-LAC", - "center": "POINT (897869.3745477960910648 2105622.6238899040035903)", - "surface": 13220000, - "canton": null, - "numero_insee": "74299" - } - }, - { - "pk": 25266, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VILLARD", - "center": "POINT (917265.7516911029815674 2142924.1878132191486657)", - "surface": 7380000, - "canton": null, - "numero_insee": "74301" - } - }, - { - "pk": 33352, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "LES VILLARDS-SUR-THONES", - "center": "POINT (913150.6054993332363665 2109457.8817181768827140)", - "surface": 13210000, - "canton": null, - "numero_insee": "74302" - } - }, - { - "pk": 20449, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VILLAZ", - "center": "POINT (899505.2690736914519221 2113243.8197248200885952)", - "surface": 15200000, - "canton": null, - "numero_insee": "74303" - } - }, - { - "pk": 30329, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VILLE-EN-SALLAZ", - "center": "POINT (915529.0556528123561293 2135402.3542781639844179)", - "surface": 3330000, - "canton": null, - "numero_insee": "74304" - } - }, - { - "pk": 9677, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VILLE-LA-GRAND", - "center": "POINT (902666.5196513847913593 2141296.8405502443201840)", - "surface": 4450000, - "canton": null, - "numero_insee": "74305" - } - }, - { - "pk": 37560, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VILLY-LE-BOUVERET", - "center": "POINT (895716.7119259289465845 2123120.3414841722697020)", - "surface": 3460000, - "canton": null, - "numero_insee": "74306" - } - }, - { - "pk": 27353, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VILLY-LE-PELLOUX", - "center": "POINT (894157.6115979594178498 2118202.3743341621011496)", - "surface": 2900000, - "canton": null, - "numero_insee": "74307" - } - }, - { - "pk": 8700, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VINZIER", - "center": "POINT (928743.0674439806025475 2158337.1701292158104479)", - "surface": 6550000, - "canton": null, - "numero_insee": "74308" - } - }, - { - "pk": 32142, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VIRY", - "center": "POINT (884938.6941861511440948 2131034.8582554659806192)", - "surface": 25870000, - "canton": null, - "numero_insee": "74309" - } - }, - { - "pk": 27773, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VIUZ-LA-CHIESAZ", - "center": "POINT (890437.0473380665061995 2096950.5073193165007979)", - "surface": 13840000, - "canton": null, - "numero_insee": "74310" - } - }, - { - "pk": 20193, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VIUZ-EN-SALLAZ", - "center": "POINT (914210.6842644626740366 2137392.8005059440620244)", - "surface": 20920000, - "canton": null, - "numero_insee": "74311" - } - }, - { - "pk": 29977, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VOUGY", - "center": "POINT (920806.9023314539808780 2126940.1272763265296817)", - "surface": 4050000, - "canton": null, - "numero_insee": "74312" - } - }, - { - "pk": 37674, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VOVRAY-EN-BORNES", - "center": "POINT (894197.3281750055029988 2125209.1850301832892001)", - "surface": 6470000, - "canton": null, - "numero_insee": "74313" - } - }, - { - "pk": 30490, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "VULBENS", - "center": "POINT (878145.0233757786918432 2129575.0981528628617525)", - "surface": 12390000, - "canton": null, - "numero_insee": "74314" - } - }, - { - "pk": 10824, - "model": "ishtar_common.town", - "fields": { - "departement": 75, - "name": "YVOIRE", - "center": "POINT (907315.9628304342040792 2159253.1075706356205046)", - "surface": 3130000, - "canton": null, - "numero_insee": "74315" - } - }, - { - "pk": 20816, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-1ER-ARRONDISSEMENT", - "center": "POINT (599976.9837326267734170 2429351.2226647692732513)", - "surface": 1810000, - "canton": null, - "numero_insee": "75101" - } - }, - { - "pk": 22896, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-2E-ARRONDISSEMENT", - "center": "POINT (600473.0877706506289542 2429855.7253260849975049)", - "surface": 990000, - "canton": null, - "numero_insee": "75102" - } - }, - { - "pk": 38072, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-3E-ARRONDISSEMENT", - "center": "POINT (601678.0154293630039319 2429365.5011298307217658)", - "surface": 1160000, - "canton": null, - "numero_insee": "75103" - } - }, - { - "pk": 25887, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-4E-ARRONDISSEMENT", - "center": "POINT (601486.2936798104783520 2428363.2138993307016790)", - "surface": 1600000, - "canton": null, - "numero_insee": "75104" - } - }, - { - "pk": 12732, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-5E-ARRONDISSEMENT", - "center": "POINT (600895.1681502530118451 2427257.5053104185499251)", - "surface": 2520000, - "canton": null, - "numero_insee": "75105" - } - }, - { - "pk": 14359, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-6E-ARRONDISSEMENT", - "center": "POINT (599690.2387659068917856 2427747.7310835830867290)", - "surface": 2150000, - "canton": null, - "numero_insee": "75106" - } - }, - { - "pk": 14358, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-7E-ARRONDISSEMENT", - "center": "POINT (598181.7691884895320982 2428635.6817564675584435)", - "surface": 4110000, - "canton": null, - "numero_insee": "75107" - } - }, - { - "pk": 23474, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-8E-ARRONDISSEMENT", - "center": "POINT (598166.6546361116925254 2430436.7739602401852608)", - "surface": 3850000, - "canton": null, - "numero_insee": "75108" - } - }, - { - "pk": 5160, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-9E-ARRONDISSEMENT", - "center": "POINT (600063.6068458552472293 2430953.0325446911156178)", - "surface": 2180000, - "canton": null, - "numero_insee": "75109" - } - }, - { - "pk": 38071, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-10E-ARRONDISSEMENT", - "center": "POINT (601766.3163304346380755 2430767.1899686120450497)", - "surface": 2880000, - "canton": null, - "numero_insee": "75110" - } - }, - { - "pk": 4985, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-11E-ARRONDISSEMENT", - "center": "POINT (603082.2253904002718627 2428977.0187909351661801)", - "surface": 3660000, - "canton": null, - "numero_insee": "75111" - } - }, - { - "pk": 38069, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-13E-ARRONDISSEMENT", - "center": "POINT (601809.9956780604552478 2425564.0291664553806186)", - "surface": 7130000, - "canton": null, - "numero_insee": "75113" - } - }, - { - "pk": 14360, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-14E-ARRONDISSEMENT", - "center": "POINT (599308.4708669810788706 2425543.0318839838728309)", - "surface": 5600000, - "canton": null, - "numero_insee": "75114" - } - }, - { - "pk": 14357, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-15E-ARRONDISSEMENT", - "center": "POINT (596796.0312872079666704 2426822.8319242373108864)", - "surface": 8460000, - "canton": null, - "numero_insee": "75115" - } - }, - { - "pk": 38070, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-16E-ARRONDISSEMENT", - "center": "POINT (594475.3243972619529814 2429104.9220581250265241)", - "surface": 16410000, - "canton": null, - "numero_insee": "75116" - } - }, - { - "pk": 4582, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-17E-ARRONDISSEMENT", - "center": "POINT (597853.0380910410312936 2432035.2235864424146712)", - "surface": 5630000, - "canton": null, - "numero_insee": "75117" - } - }, - { - "pk": 38073, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-18E-ARRONDISSEMENT", - "center": "POINT (600849.8128583220532164 2432660.7799757001921535)", - "surface": 6040000, - "canton": null, - "numero_insee": "75118" - } - }, - { - "pk": 38075, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-19E-ARRONDISSEMENT", - "center": "POINT (603457.2646515722153708 2431982.1971615185029805)", - "surface": 6740000, - "canton": null, - "numero_insee": "75119" - } - }, - { - "pk": 38074, - "model": "ishtar_common.town", - "fields": { - "departement": 76, - "name": "PARIS-20E-ARRONDISSEMENT", - "center": "POINT (604679.8359684076858684 2429390.7040621549822390)", - "surface": 5960000, - "canton": null, - "numero_insee": "75120" - } - }, - { - "pk": 5314, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ALLOUVILLE-BELLEFOSSE", - "center": "POINT (479009.0984219281235710 2512095.7292807186022401)", - "surface": 15050000, - "canton": null, - "numero_insee": "76001" - } - }, - { - "pk": 26318, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ALVIMARE", - "center": "POINT (476596.1801584385684691 2513476.5710669457912445)", - "surface": 6680000, - "canton": null, - "numero_insee": "76002" - } - }, - { - "pk": 29274, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AMBRUMESNIL", - "center": "POINT (502583.2546693390468135 2541008.6982587832026184)", - "surface": 5260000, - "canton": null, - "numero_insee": "76004" - } - }, - { - "pk": 36471, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AMFREVILLE-LA-MI-VOIE", - "center": "POINT (511910.8289656151318923 2490255.3993951408192515)", - "surface": 3920000, - "canton": null, - "numero_insee": "76005" - } - }, - { - "pk": 27006, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AMFREVILLE-LES-CHAMPS", - "center": "POINT (490922.5406756087904796 2523401.4016788019798696)", - "surface": 4570000, - "canton": null, - "numero_insee": "76006" - } - }, - { - "pk": 28025, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANCEAUMEVILLE", - "center": "POINT (507954.7205443276907317 2508733.9725606045685709)", - "surface": 4680000, - "canton": null, - "numero_insee": "76007" - } - }, - { - "pk": 27960, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANCOURT", - "center": "POINT (516647.2450725328526460 2546328.7460919069126248)", - "surface": 12480000, - "canton": null, - "numero_insee": "76008" - } - }, - { - "pk": 9285, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANCOURTEVILLE-SUR-HERICOURT", - "center": "POINT (478920.2943827569833957 2522801.4854017049074173)", - "surface": 3540000, - "canton": null, - "numero_insee": "76009" - } - }, - { - "pk": 10569, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANCRETTEVILLE-SUR-MER", - "center": "POINT (467820.7443135599605739 2534016.2245883159339428)", - "surface": 3160000, - "canton": null, - "numero_insee": "76011" - } - }, - { - "pk": 32052, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANGERVILLE-BAILLEUL", - "center": "POINT (463929.6897529410780407 2520575.9643216156400740)", - "surface": 4590000, - "canton": null, - "numero_insee": "76012" - } - }, - { - "pk": 28241, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANGERVILLE-LA-MARTEL", - "center": "POINT (467640.5349426532047801 2531613.3047711793333292)", - "surface": 10210000, - "canton": null, - "numero_insee": "76013" - } - }, - { - "pk": 36651, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANGERVILLE-L'ORCHER", - "center": "POINT (451994.4447171738138422 2511871.9352354556322098)", - "surface": 9920000, - "canton": null, - "numero_insee": "76014" - } - }, - { - "pk": 30342, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANGIENS", - "center": "POINT (489196.2453063247376122 2538496.0619822298176587)", - "surface": 6980000, - "canton": null, - "numero_insee": "76015" - } - }, - { - "pk": 33402, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANGLESQUEVILLE-LA-BRAS-LONG", - "center": "POINT (487846.1842620291281492 2532381.2416478148661554)", - "surface": 3560000, - "canton": null, - "numero_insee": "76016" - } - }, - { - "pk": 33103, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANGLESQUEVILLE-L'ESNEVAL", - "center": "POINT (448050.9536305266665295 2516842.3649573181755841)", - "surface": 4240000, - "canton": null, - "numero_insee": "76017" - } - }, - { - "pk": 17013, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VAL-DE-SAANE", - "center": "POINT (501021.2667187046026811 2524285.7898723050020635)", - "surface": 13660000, - "canton": null, - "numero_insee": "76018" - } - }, - { - "pk": 20746, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANNEVILLE-SUR-SCIE", - "center": "POINT (510407.2745739874662831 2538672.3586159334518015)", - "surface": 5510000, - "canton": null, - "numero_insee": "76019" - } - }, - { - "pk": 25903, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANNEVILLE-AMBOURVILLE", - "center": "POINT (495155.7640140393632464 2495619.5214320332743227)", - "surface": 20420000, - "canton": null, - "numero_insee": "76020" - } - }, - { - "pk": 29926, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANNOUVILLE-VILMESNIL", - "center": "POINT (462318.0608501760289073 2521863.4018605989404023)", - "surface": 5840000, - "canton": null, - "numero_insee": "76021" - } - }, - { - "pk": 35478, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANQUETIERVILLE", - "center": "POINT (476560.8478572657331824 2505671.4949482306838036)", - "surface": 4210000, - "canton": null, - "numero_insee": "76022" - } - }, - { - "pk": 27887, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ANVEVILLE", - "center": "POINT (485317.0651399893104099 2523655.0438438672572374)", - "surface": 4260000, - "canton": null, - "numero_insee": "76023" - } - }, - { - "pk": 6062, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ARDOUVAL", - "center": "POINT (523207.2278113409411162 2527572.2749278610572219)", - "surface": 10390000, - "canton": null, - "numero_insee": "76024" - } - }, - { - "pk": 25896, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ARGUEIL", - "center": "POINT (541200.3329256086144596 2505708.9505087262950838)", - "surface": 7070000, - "canton": null, - "numero_insee": "76025" - } - }, - { - "pk": 27368, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ASSIGNY", - "center": "POINT (524583.8321970921242610 2554499.5393476700410247)", - "surface": 6010000, - "canton": null, - "numero_insee": "76027" - } - }, - { - "pk": 30149, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUBEGUIMONT", - "center": "POINT (552663.4647682555951178 2534922.2448214665055275)", - "surface": 4880000, - "canton": null, - "numero_insee": "76028" - } - }, - { - "pk": 8482, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUBERMESNIL-AUX-ERABLES", - "center": "POINT (544560.0692053620005026 2534754.5112966168671846)", - "surface": 8490000, - "canton": null, - "numero_insee": "76029" - } - }, - { - "pk": 33110, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUBERMESNIL-BEAUMAIS", - "center": "POINT (512400.8208788321935572 2539589.4768679430708289)", - "surface": 4950000, - "canton": null, - "numero_insee": "76030" - } - }, - { - "pk": 6922, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUBERVILLE-LA-CAMPAGNE", - "center": "POINT (473859.3693634301889688 2505649.0938483229838312)", - "surface": 4730000, - "canton": null, - "numero_insee": "76031" - } - }, - { - "pk": 6618, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUBERVILLE-LA-MANUEL", - "center": "POINT (473689.0021747497958131 2538267.3455375651828945)", - "surface": 3030000, - "canton": null, - "numero_insee": "76032" - } - }, - { - "pk": 8987, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUBERVILLE-LA-RENAULT", - "center": "POINT (458508.5739327607443556 2522732.4027690980583429)", - "surface": 4990000, - "canton": null, - "numero_insee": "76033" - } - }, - { - "pk": 21531, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUFFAY", - "center": "POINT (511625.2375967248808593 2524574.1041006203740835)", - "surface": 11300000, - "canton": null, - "numero_insee": "76034" - } - }, - { - "pk": 13618, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUMALE", - "center": "POINT (558004.7038396826246753 2530364.1485876701772213)", - "surface": 8990000, - "canton": null, - "numero_insee": "76035" - } - }, - { - "pk": 15360, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUPPEGARD", - "center": "POINT (505911.5912417573272251 2537834.4902038974687457)", - "surface": 7290000, - "canton": null, - "numero_insee": "76036" - } - }, - { - "pk": 28853, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUQUEMESNIL", - "center": "POINT (528014.7400306368945166 2551026.1073294114321470)", - "surface": 6380000, - "canton": null, - "numero_insee": "76037" - } - }, - { - "pk": 34813, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUTHIEUX-RATIEVILLE", - "center": "POINT (513832.9478654469130561 2511784.7222226364538074)", - "surface": 5170000, - "canton": null, - "numero_insee": "76038" - } - }, - { - "pk": 13655, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LES AUTHIEUX-SUR-LE-PORT-SAINT-OUEN", - "center": "POINT (512371.8410096816369332 2482954.6264367941766977)", - "surface": 4530000, - "canton": null, - "numero_insee": "76039" - } - }, - { - "pk": 8656, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUTIGNY", - "center": "POINT (493134.0103570292703807 2534226.2208784762769938)", - "surface": 4070000, - "canton": null, - "numero_insee": "76040" - } - }, - { - "pk": 24615, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUTRETOT", - "center": "POINT (483656.8448366352822632 2518738.3069360833615065)", - "surface": 3780000, - "canton": null, - "numero_insee": "76041" - } - }, - { - "pk": 32219, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUVILLIERS", - "center": "POINT (545006.2186242026509717 2529254.9662307351827621)", - "surface": 4920000, - "canton": null, - "numero_insee": "76042" - } - }, - { - "pk": 33133, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUZEBOSC", - "center": "POINT (484006.8272116520674899 2512737.5626389817334712)", - "surface": 4750000, - "canton": null, - "numero_insee": "76043" - } - }, - { - "pk": 32228, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUZOUVILLE-AUBERBOSC", - "center": "POINT (472470.7369804716436192 2516244.0702926944941282)", - "surface": 6150000, - "canton": null, - "numero_insee": "76044" - } - }, - { - "pk": 3033, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUZOUVILLE-L'ESNEVAL", - "center": "POINT (494886.1293192579178140 2516029.8487061951309443)", - "surface": 5660000, - "canton": null, - "numero_insee": "76045" - } - }, - { - "pk": 30345, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUZOUVILLE-SUR-RY", - "center": "POINT (525390.0277670527575538 2493769.7796396855264902)", - "surface": 7920000, - "canton": null, - "numero_insee": "76046" - } - }, - { - "pk": 3796, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AUZOUVILLE-SUR-SAANE", - "center": "POINT (498588.3924793079495430 2528067.8464653501287103)", - "surface": 3160000, - "canton": null, - "numero_insee": "76047" - } - }, - { - "pk": 33829, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AVESNES-EN-BRAY", - "center": "POINT (551975.5544752756832168 2497493.7845706897787750)", - "surface": 11940000, - "canton": null, - "numero_insee": "76048" - } - }, - { - "pk": 26735, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AVESNES-EN-VAL", - "center": "POINT (533149.8753330989275128 2547166.6521180872805417)", - "surface": 16610000, - "canton": null, - "numero_insee": "76049" - } - }, - { - "pk": 10919, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "AVREMESNIL", - "center": "POINT (498887.9891702751629055 2540177.5119738457724452)", - "surface": 5480000, - "canton": null, - "numero_insee": "76050" - } - }, - { - "pk": 27945, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BACQUEVILLE-EN-CAUX", - "center": "POINT (504341.5406537462840788 2534119.2453632373362780)", - "surface": 12260000, - "canton": null, - "numero_insee": "76051" - } - }, - { - "pk": 24018, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BAILLEUL-NEUVILLE", - "center": "POINT (534050.4097864039940760 2535167.1171261658892035)", - "surface": 13160000, - "canton": null, - "numero_insee": "76052" - } - }, - { - "pk": 13356, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BAILLOLET", - "center": "POINT (534669.9152236373629421 2532870.9200406726449728)", - "surface": 8700000, - "canton": null, - "numero_insee": "76053" - } - }, - { - "pk": 8342, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BAILLY-EN-RIVIERE", - "center": "POINT (529056.1131547600962222 2546131.9399900957942009)", - "surface": 20450000, - "canton": null, - "numero_insee": "76054" - } - }, - { - "pk": 10200, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BAONS-LE-COMTE", - "center": "POINT (486073.9128719496657141 2516857.2157786358147860)", - "surface": 5390000, - "canton": null, - "numero_insee": "76055" - } - }, - { - "pk": 28197, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BARDOUVILLE", - "center": "POINT (497371.9522542683407664 2493836.8115532770752907)", - "surface": 8490000, - "canton": null, - "numero_insee": "76056" - } - }, - { - "pk": 28432, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BARENTIN", - "center": "POINT (499971.1568107518833131 2506166.0492435256019235)", - "surface": 12780000, - "canton": null, - "numero_insee": "76057" - } - }, - { - "pk": 13900, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BAROMESNIL", - "center": "POINT (533587.5574998663505539 2554674.6450172699987888)", - "surface": 8070000, - "canton": null, - "numero_insee": "76058" - } - }, - { - "pk": 24020, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BAZINVAL", - "center": "POINT (543228.3274937312817201 2550452.5923826424404979)", - "surface": 7200000, - "canton": null, - "numero_insee": "76059" - } - }, - { - "pk": 30513, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEAUBEC-LA-ROSIERE", - "center": "POINT (540506.4903373648412526 2516910.0068996697664261)", - "surface": 13070000, - "canton": null, - "numero_insee": "76060" - } - }, - { - "pk": 33223, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEAUMONT-LE-HARENG", - "center": "POINT (519275.9349068654119037 2519034.4162284829653800)", - "surface": 5750000, - "canton": null, - "numero_insee": "76062" - } - }, - { - "pk": 24565, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEAUVAL-EN-CAUX", - "center": "POINT (505295.2632454245467670 2527723.3645697361789644)", - "surface": 15290000, - "canton": null, - "numero_insee": "76063" - } - }, - { - "pk": 11464, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEAUREPAIRE", - "center": "POINT (446824.6590948235825635 2519934.1043752194382250)", - "surface": 2870000, - "canton": null, - "numero_insee": "76064" - } - }, - { - "pk": 37343, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEAUTOT", - "center": "POINT (506791.7055472420179285 2516228.8775774734094739)", - "surface": 3530000, - "canton": null, - "numero_insee": "76066" - } - }, - { - "pk": 15874, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEAUVOIR-EN-LYONS", - "center": "POINT (545260.9917161240009591 2498738.5152744264341891)", - "surface": 33860000, - "canton": null, - "numero_insee": "76067" - } - }, - { - "pk": 34229, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEC-DE-MORTAGNE", - "center": "POINT (463695.6062151578953490 2524676.4969592536799610)", - "surface": 12040000, - "canton": null, - "numero_insee": "76068" - } - }, - { - "pk": 36250, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BELBEUF", - "center": "POINT (512929.7088434351608157 2488062.4943798854947090)", - "surface": 6540000, - "canton": null, - "numero_insee": "76069" - } - }, - { - "pk": 10399, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BELLENCOMBRE", - "center": "POINT (520526.6326715399045497 2525048.4483849364332855)", - "surface": 12970000, - "canton": null, - "numero_insee": "76070" - } - }, - { - "pk": 3208, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BELLENGREVILLE", - "center": "POINT (520247.4272678079432808 2546558.8400765247642994)", - "surface": 7580000, - "canton": null, - "numero_insee": "76071" - } - }, - { - "pk": 30728, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BELLEVILLE-EN-CAUX", - "center": "POINT (502626.2768982523703016 2523798.8324078703299165)", - "surface": 4530000, - "canton": null, - "numero_insee": "76072" - } - }, - { - "pk": 32209, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BELLEVILLE-SUR-MER", - "center": "POINT (515910.2387771757203154 2550725.1676455037668347)", - "surface": 3290000, - "canton": null, - "numero_insee": "76073" - } - }, - { - "pk": 10955, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA BELLIERE", - "center": "POINT (546849.9754378441721201 2512160.0376218548044562)", - "surface": 4560000, - "canton": null, - "numero_insee": "76074" - } - }, - { - "pk": 13487, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BELMESNIL", - "center": "POINT (507169.6375320466468111 2530940.8635742478072643)", - "surface": 3120000, - "canton": null, - "numero_insee": "76075" - } - }, - { - "pk": 34267, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BENARVILLE", - "center": "POINT (466127.5528508602292277 2520994.4122612769715488)", - "surface": 4380000, - "canton": null, - "numero_insee": "76076" - } - }, - { - "pk": 11336, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BENESVILLE", - "center": "POINT (491173.6764708990813233 2529307.0238863900303841)", - "surface": 5470000, - "canton": null, - "numero_insee": "76077" - } - }, - { - "pk": 37402, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BENNETOT", - "center": "POINT (471326.1898869699216448 2521537.7931913202628493)", - "surface": 4550000, - "canton": null, - "numero_insee": "76078" - } - }, - { - "pk": 28442, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BENOUVILLE", - "center": "POINT (449072.1059398981742561 2526456.6067967643029988)", - "surface": 2970000, - "canton": null, - "numero_insee": "76079" - } - }, - { - "pk": 26588, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERMONVILLE", - "center": "POINT (477265.0261119565693662 2517284.4303673738613725)", - "surface": 7480000, - "canton": null, - "numero_insee": "76080" - } - }, - { - "pk": 14148, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERNEVAL-LE-GRAND", - "center": "POINT (517505.2236960259033367 2551438.8514813752844930)", - "surface": 5710000, - "canton": null, - "numero_insee": "76081" - } - }, - { - "pk": 7907, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERTHEAUVILLE", - "center": "POINT (474057.1774547459790483 2530065.5331034976989031)", - "surface": 2430000, - "canton": null, - "numero_insee": "76083" - } - }, - { - "pk": 37904, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERTREVILLE", - "center": "POINT (473245.9724019693676382 2531359.5827887794002891)", - "surface": 3240000, - "canton": null, - "numero_insee": "76084" - } - }, - { - "pk": 31361, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERTREVILLE-SAINT-OUEN", - "center": "POINT (506728.6509154692757875 2535840.1040988825261593)", - "surface": 6610000, - "canton": null, - "numero_insee": "76085" - } - }, - { - "pk": 5066, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERTRIMONT", - "center": "POINT (503158.1550862191943452 2520000.9634629935026169)", - "surface": 4760000, - "canton": null, - "numero_insee": "76086" - } - }, - { - "pk": 26590, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERVILLE", - "center": "POINT (491710.5024599138996564 2524908.8474331013858318)", - "surface": 6790000, - "canton": null, - "numero_insee": "76087" - } - }, - { - "pk": 4457, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BERVILLE-SUR-SEINE", - "center": "POINT (495333.4293868297245353 2498322.6802674410864711)", - "surface": 6990000, - "canton": null, - "numero_insee": "76088" - } - }, - { - "pk": 33611, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BETTEVILLE", - "center": "POINT (487857.8954589055501856 2506865.9132221559993923)", - "surface": 8520000, - "canton": null, - "numero_insee": "76089" - } - }, - { - "pk": 14161, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEUZEVILLE-LA-GRENIER", - "center": "POINT (461297.0093551407335326 2512249.1159388823434711)", - "surface": 6310000, - "canton": null, - "numero_insee": "76090" - } - }, - { - "pk": 10201, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEUZEVILLE-LA-GUERARD", - "center": "POINT (475500.2277502466458827 2524974.4447970176115632)", - "surface": 6470000, - "canton": null, - "numero_insee": "76091" - } - }, - { - "pk": 5804, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEUZEVILLETTE", - "center": "POINT (470420.1897072622086853 2510123.3502051741816103)", - "surface": 5700000, - "canton": null, - "numero_insee": "76092" - } - }, - { - "pk": 12223, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BEZANCOURT", - "center": "POINT (547508.1601944300346076 2493253.8485094290226698)", - "surface": 17700000, - "canton": null, - "numero_insee": "76093" - } - }, - { - "pk": 27615, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BIERVILLE", - "center": "POINT (522997.0573869113577530 2504756.6742435935884714)", - "surface": 2170000, - "canton": null, - "numero_insee": "76094" - } - }, - { - "pk": 10665, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BIVILLE-LA-BAIGNARDE", - "center": "POINT (506912.7533956670085900 2525735.6190548692829907)", - "surface": 6920000, - "canton": null, - "numero_insee": "76096" - } - }, - { - "pk": 34061, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BIVILLE-LA-RIVIERE", - "center": "POINT (497856.4271744888392277 2531864.0299217975698411)", - "surface": 2240000, - "canton": null, - "numero_insee": "76097" - } - }, - { - "pk": 30393, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BIVILLE-SUR-MER", - "center": "POINT (522278.4996878593228757 2554980.6225509722717106)", - "surface": 5440000, - "canton": null, - "numero_insee": "76098" - } - }, - { - "pk": 4500, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BLACQUEVILLE", - "center": "POINT (492153.5959368326002732 2507702.0771524053998291)", - "surface": 10040000, - "canton": null, - "numero_insee": "76099" - } - }, - { - "pk": 24808, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BLAINVILLE-CREVON", - "center": "POINT (524226.8916292996727861 2501264.7570698969066143)", - "surface": 14860000, - "canton": null, - "numero_insee": "76100" - } - }, - { - "pk": 16543, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BLANGY-SUR-BRESLE", - "center": "POINT (548461.0569893162464723 2546894.1891070008277893)", - "surface": 17490000, - "canton": null, - "numero_insee": "76101" - } - }, - { - "pk": 26784, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BONSECOURS", - "center": "POINT (512291.0677432119846344 2492660.0699243373237550)", - "surface": 3710000, - "canton": null, - "numero_insee": "76103" - } - }, - { - "pk": 30996, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BLOSSEVILLE", - "center": "POINT (489479.7865696973749436 2540499.5937143382616341)", - "surface": 7070000, - "canton": null, - "numero_insee": "76104" - } - }, - { - "pk": 36635, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE BOCASSE", - "center": "POINT (508318.3152083865134045 2513139.6891071456484497)", - "surface": 8590000, - "canton": null, - "numero_insee": "76105" - } - }, - { - "pk": 24662, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOIS-D'ENNEBOURG", - "center": "POINT (521696.3046554499887861 2492738.3795332880690694)", - "surface": 7100000, - "canton": null, - "numero_insee": "76106" - } - }, - { - "pk": 8424, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOIS-GUILBERT", - "center": "POINT (533100.0801622540457174 2505141.0675014238804579)", - "surface": 8030000, - "canton": null, - "numero_insee": "76107" - } - }, - { - "pk": 26550, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOIS-GUILLAUME-BIHOREL", - "center": "POINT (511748.3237942021223716 2497758.7381224995478988)", - "surface": 11370000, - "canton": null, - "numero_insee": "76108" - } - }, - { - "pk": 32498, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOIS-HEROULT", - "center": "POINT (532677.3346838381839916 2507839.2034605611115694)", - "surface": 6540000, - "canton": null, - "numero_insee": "76109" - } - }, - { - "pk": 15470, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOIS-HIMONT", - "center": "POINT (480823.3562308712280355 2510509.8012832617387176)", - "surface": 5830000, - "canton": null, - "numero_insee": "76110" - } - }, - { - "pk": 37740, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOIS-L'EVEQUE", - "center": "POINT (521472.8569051309023052 2495538.2691101320087910)", - "surface": 7370000, - "canton": null, - "numero_insee": "76111" - } - }, - { - "pk": 10801, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE BOIS-ROBERT", - "center": "POINT (514411.0196733360644430 2538505.5592249785549939)", - "surface": 5060000, - "canton": null, - "numero_insee": "76112" - } - }, - { - "pk": 15887, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOISSAY", - "center": "POINT (529217.9648137914482504 2502707.2187868603505194)", - "surface": 6660000, - "canton": null, - "numero_insee": "76113" - } - }, - { - "pk": 14545, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOLBEC", - "center": "POINT (465816.0286947089480236 2510285.3211769885383546)", - "surface": 12330000, - "canton": null, - "numero_insee": "76114" - } - }, - { - "pk": 29724, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOLLEVILLE", - "center": "POINT (471696.0158848385908641 2513135.7599893789738417)", - "surface": 9810000, - "canton": null, - "numero_insee": "76115" - } - }, - { - "pk": 19572, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOOS", - "center": "POINT (517536.4545824083033949 2487600.5294558084569871)", - "surface": 14130000, - "canton": null, - "numero_insee": "76116" - } - }, - { - "pk": 35976, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BORDEAUX-SAINT-CLAIR", - "center": "POINT (448690.0975467066164128 2524252.1256645168177783)", - "surface": 10250000, - "canton": null, - "numero_insee": "76117" - } - }, - { - "pk": 33361, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BORNAMBUSC", - "center": "POINT (456562.9894087009597570 2516012.2410412472672760)", - "surface": 4170000, - "canton": null, - "numero_insee": "76118" - } - }, - { - "pk": 11585, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-BERENGER", - "center": "POINT (521604.6693803247180767 2515751.8100749347358942)", - "surface": 3470000, - "canton": null, - "numero_insee": "76119" - } - }, - { - "pk": 32923, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-BORDEL", - "center": "POINT (532839.8986343963770196 2512343.3145240652374923)", - "surface": 11980000, - "canton": null, - "numero_insee": "76120" - } - }, - { - "pk": 29340, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-EDELINE", - "center": "POINT (534269.0270065806107596 2508953.1521594761870801)", - "surface": 6240000, - "canton": null, - "numero_insee": "76121" - } - }, - { - "pk": 14694, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CALLENGEVILLE", - "center": "POINT (541242.4804089599056169 2536627.9442136464640498)", - "surface": 17270000, - "canton": null, - "numero_insee": "76122" - } - }, - { - "pk": 36011, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-GUERARD-SAINT-ADRIEN", - "center": "POINT (512184.4842826008098200 2505467.1366244675591588)", - "surface": 10420000, - "canton": null, - "numero_insee": "76123" - } - }, - { - "pk": 22260, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-HYONS", - "center": "POINT (550093.7267017767298967 2495176.6305708535946906)", - "surface": 5590000, - "canton": null, - "numero_insee": "76124" - } - }, - { - "pk": 26707, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-LE-HARD", - "center": "POINT (516712.8602929592598230 2514410.2820381359197199)", - "surface": 10640000, - "canton": null, - "numero_insee": "76125" - } - }, - { - "pk": 28854, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-MESNIL", - "center": "POINT (528577.5802401620894670 2519512.1543586272746325)", - "surface": 9340000, - "canton": null, - "numero_insee": "76126" - } - }, - { - "pk": 30568, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSC-ROGER-SUR-BUCHY", - "center": "POINT (530454.4489332896191627 2510422.2636663261801004)", - "surface": 14190000, - "canton": null, - "numero_insee": "76127" - } - }, - { - "pk": 3386, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOSVILLE", - "center": "POINT (480754.9026618761126883 2530821.4978612619452178)", - "surface": 8730000, - "canton": null, - "numero_insee": "76128" - } - }, - { - "pk": 7010, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOUDEVILLE", - "center": "POINT (494405.2881327109644189 2525731.7112891934812069)", - "surface": 4680000, - "canton": null, - "numero_insee": "76129" - } - }, - { - "pk": 6462, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOUELLES", - "center": "POINT (539035.6137344136368483 2525302.8017014088109136)", - "surface": 8000000, - "canton": null, - "numero_insee": "76130" - } - }, - { - "pk": 9914, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA BOUILLE", - "center": "POINT (497949.5643735175253823 2484535.7575758998282254)", - "surface": 1260000, - "canton": null, - "numero_insee": "76131" - } - }, - { - "pk": 16602, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOURDAINVILLE", - "center": "POINT (499052.6338877569069155 2520367.0763929798267782)", - "surface": 5430000, - "canton": null, - "numero_insee": "76132" - } - }, - { - "pk": 29052, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE BOURG-DUN", - "center": "POINT (496067.4165493077016436 2542455.4246030049398541)", - "surface": 14740000, - "canton": null, - "numero_insee": "76133" - } - }, - { - "pk": 35820, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOURVILLE", - "center": "POINT (490932.8575940323062241 2534207.9396410849876702)", - "surface": 6690000, - "canton": null, - "numero_insee": "76134" - } - }, - { - "pk": 10051, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BOUVILLE", - "center": "POINT (495557.1131450529792346 2507530.2280234103091061)", - "surface": 12550000, - "canton": null, - "numero_insee": "76135" - } - }, - { - "pk": 23174, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRACHY", - "center": "POINT (499920.1088030793471262 2536383.8495531305670738)", - "surface": 11120000, - "canton": null, - "numero_insee": "76136" - } - }, - { - "pk": 7386, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRACQUEMONT", - "center": "POINT (514016.7642329888185486 2549808.8850916568189859)", - "surface": 4970000, - "canton": null, - "numero_insee": "76137" - } - }, - { - "pk": 36180, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRACQUETUIT", - "center": "POINT (515672.3402458240161650 2519204.5329598542302847)", - "surface": 8400000, - "canton": null, - "numero_insee": "76138" - } - }, - { - "pk": 3706, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRADIANCOURT", - "center": "POINT (531187.3134003826417029 2518533.3047441244125366)", - "surface": 4090000, - "canton": null, - "numero_insee": "76139" - } - }, - { - "pk": 25299, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRAMETOT", - "center": "POINT (494147.8325103748939000 2532633.6924901278689504)", - "surface": 3230000, - "canton": null, - "numero_insee": "76140" - } - }, - { - "pk": 28366, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BREAUTE", - "center": "POINT (460165.7605567195569165 2515942.0050358795560896)", - "surface": 13920000, - "canton": null, - "numero_insee": "76141" - } - }, - { - "pk": 29061, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BREMONTIER-MERVAL", - "center": "POINT (547834.8525390264112502 2502062.0534339481964707)", - "surface": 17200000, - "canton": null, - "numero_insee": "76142" - } - }, - { - "pk": 26780, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRETTEVILLE-DU-GRAND-CAUX", - "center": "POINT (459027.8922456299769692 2520435.3134057046845555)", - "surface": 11400000, - "canton": null, - "numero_insee": "76143" - } - }, - { - "pk": 25872, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRETTEVILLE-SAINT-LAURENT", - "center": "POINT (494161.9619528189068660 2530932.7984027541242540)", - "surface": 4060000, - "canton": null, - "numero_insee": "76144" - } - }, - { - "pk": 7502, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BRUNVILLE", - "center": "POINT (522998.0234502853127196 2552685.2896006079390645)", - "surface": 3960000, - "canton": null, - "numero_insee": "76145" - } - }, - { - "pk": 29551, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BUCHY", - "center": "POINT (528650.9703992577269673 2510707.4132510339841247)", - "surface": 3710000, - "canton": null, - "numero_insee": "76146" - } - }, - { - "pk": 24044, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BULLY", - "center": "POINT (529329.6348770528566092 2525321.9166711489669979)", - "surface": 19710000, - "canton": null, - "numero_insee": "76147" - } - }, - { - "pk": 26947, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BURES-EN-BRAY", - "center": "POINT (527774.6364675376098603 2531812.8383170645684004)", - "surface": 10920000, - "canton": null, - "numero_insee": "76148" - } - }, - { - "pk": 25495, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BUTOT", - "center": "POINT (504711.3760850967373699 2513710.0546337696723640)", - "surface": 5510000, - "canton": null, - "numero_insee": "76149" - } - }, - { - "pk": 3327, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CAILLEVILLE", - "center": "POINT (484690.5810152397025377 2538858.8958789552561939)", - "surface": 5100000, - "canton": null, - "numero_insee": "76151" - } - }, - { - "pk": 9715, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CAILLY", - "center": "POINT (519847.8635997247183695 2510433.9449930815026164)", - "surface": 5440000, - "canton": null, - "numero_insee": "76152" - } - }, - { - "pk": 36625, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CALLEVILLE-LES-DEUX-EGLISES", - "center": "POINT (505028.3861745805479586 2523718.7459504939615726)", - "surface": 5660000, - "canton": null, - "numero_insee": "76153" - } - }, - { - "pk": 7417, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CAMPNEUSEVILLE", - "center": "POINT (551413.5260521292220801 2540815.2818401772528887)", - "surface": 12490000, - "canton": null, - "numero_insee": "76154" - } - }, - { - "pk": 8997, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CANEHAN", - "center": "POINT (528589.1945637067547068 2554132.6862317034974694)", - "surface": 6180000, - "canton": null, - "numero_insee": "76155" - } - }, - { - "pk": 10831, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CANOUVILLE", - "center": "POINT (474610.2096591432928108 2535773.5056344945915043)", - "surface": 4510000, - "canton": null, - "numero_insee": "76156" - } - }, - { - "pk": 27813, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CANTELEU", - "center": "POINT (503878.0657047535642050 2493590.7086698464117944)", - "surface": 17640000, - "canton": null, - "numero_insee": "76157" - } - }, - { - "pk": 30744, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CANVILLE-LES-DEUX-EGLISES", - "center": "POINT (491753.2194654031773098 2531813.3269338654354215)", - "surface": 5850000, - "canton": null, - "numero_insee": "76158" - } - }, - { - "pk": 27047, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CANY-BARVILLE", - "center": "POINT (477140.5587618094868958 2532292.4109502295032144)", - "surface": 13600000, - "canton": null, - "numero_insee": "76159" - } - }, - { - "pk": 23618, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CARVILLE-LA-FOLLETIERE", - "center": "POINT (489853.1720205300953239 2507582.9108597384765744)", - "surface": 4360000, - "canton": null, - "numero_insee": "76160" - } - }, - { - "pk": 7176, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CARVILLE-POT-DE-FER", - "center": "POINT (483497.8396780457114801 2525841.2673779367469251)", - "surface": 5300000, - "canton": null, - "numero_insee": "76161" - } - }, - { - "pk": 6461, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE CATELIER", - "center": "POINT (514786.1290324208675884 2529503.3445559754036367)", - "surface": 3940000, - "canton": null, - "numero_insee": "76162" - } - }, - { - "pk": 11775, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CATENAY", - "center": "POINT (526723.2635623182868585 2501885.9306923039257526)", - "surface": 5900000, - "canton": null, - "numero_insee": "76163" - } - }, - { - "pk": 37358, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CAUDEBEC-EN-CAUX", - "center": "POINT (483872.3174395410460420 2504831.5975282904691994)", - "surface": 5030000, - "canton": null, - "numero_insee": "76164" - } - }, - { - "pk": 8903, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CAUDEBEC-LES-ELBEUF", - "center": "POINT (504518.1340000720229000 2476785.4026862140744925)", - "surface": 3650000, - "canton": null, - "numero_insee": "76165" - } - }, - { - "pk": 31142, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE CAULE-SAINTE-BEUVE", - "center": "POINT (546291.0312416178639978 2531166.8253907845355570)", - "surface": 16800000, - "canton": null, - "numero_insee": "76166" - } - }, - { - "pk": 32410, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CAUVILLE-SUR-MER", - "center": "POINT (441379.5887310313410126 2512884.8344171014614403)", - "surface": 11320000, - "canton": null, - "numero_insee": "76167" - } - }, - { - "pk": 32211, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LES CENT-ACRES", - "center": "POINT (513772.2778014428913593 2531095.8594266865402460)", - "surface": 5140000, - "canton": null, - "numero_insee": "76168" - } - }, - { - "pk": 24067, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA CERLANGUE", - "center": "POINT (460692.7341727982275188 2500636.9669512850232422)", - "surface": 29400000, - "canton": null, - "numero_insee": "76169" - } - }, - { - "pk": 3847, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA CHAPELLE-DU-BOURGAY", - "center": "POINT (514225.0726691039162688 2536803.0084747867658734)", - "surface": 3040000, - "canton": null, - "numero_insee": "76170" - } - }, - { - "pk": 10076, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA CHAPELLE-SAINT-OUEN", - "center": "POINT (534118.1502292479854077 2503048.2615731731057167)", - "surface": 7860000, - "canton": null, - "numero_insee": "76171" - } - }, - { - "pk": 11215, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA CHAPELLE-SUR-DUN", - "center": "POINT (492676.4609652663348243 2541126.4928025105036795)", - "surface": 4420000, - "canton": null, - "numero_insee": "76172" - } - }, - { - "pk": 35573, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA CHAUSSEE", - "center": "POINT (512227.3602621046593413 2536386.1461192392744124)", - "surface": 8170000, - "canton": null, - "numero_insee": "76173" - } - }, - { - "pk": 21752, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CIDEVILLE", - "center": "POINT (495206.2413559883134440 2513631.0472213607281446)", - "surface": 5080000, - "canton": null, - "numero_insee": "76174" - } - }, - { - "pk": 31556, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLAIS", - "center": "POINT (537749.0035237433621660 2535598.2037845589220524)", - "surface": 12520000, - "canton": null, - "numero_insee": "76175" - } - }, - { - "pk": 12555, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLASVILLE", - "center": "POINT (476323.5442262504948303 2534286.8234504577703774)", - "surface": 3140000, - "canton": null, - "numero_insee": "76176" - } - }, - { - "pk": 30344, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLAVILLE-MOTTEVILLE", - "center": "POINT (516642.7947469958453439 2510807.5013439920730889)", - "surface": 9420000, - "canton": null, - "numero_insee": "76177" - } - }, - { - "pk": 22944, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLEON", - "center": "POINT (505587.1379961294587702 2480596.7173324259929359)", - "surface": 6460000, - "canton": null, - "numero_insee": "76178" - } - }, - { - "pk": 36921, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLERES", - "center": "POINT (510636.2093592048040591 2511157.7519640191458166)", - "surface": 11560000, - "canton": null, - "numero_insee": "76179" - } - }, - { - "pk": 9407, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLEUVILLE", - "center": "POINT (478008.1962157088564709 2524194.7626859522424638)", - "surface": 4130000, - "canton": null, - "numero_insee": "76180" - } - }, - { - "pk": 12000, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLEVILLE", - "center": "POINT (475480.6507344613200985 2515268.4171521868556738)", - "surface": 5460000, - "canton": null, - "numero_insee": "76181" - } - }, - { - "pk": 24424, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CLIPONVILLE", - "center": "POINT (478635.9025124713080004 2520897.9803120084106922)", - "surface": 7490000, - "canton": null, - "numero_insee": "76182" - } - }, - { - "pk": 27419, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "COLLEVILLE", - "center": "POINT (464352.0560987479984760 2529985.1086232126690447)", - "surface": 7420000, - "canton": null, - "numero_insee": "76183" - } - }, - { - "pk": 5555, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "COLMESNIL-MANNEVILLE", - "center": "POINT (505795.7297179213492200 2539734.6460613217204809)", - "surface": 1990000, - "canton": null, - "numero_insee": "76184" - } - }, - { - "pk": 6917, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "COMPAINVILLE", - "center": "POINT (543798.2400548723526299 2518138.2082197805866599)", - "surface": 6470000, - "canton": null, - "numero_insee": "76185" - } - }, - { - "pk": 26696, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CONTEVILLE", - "center": "POINT (549466.1970770685002208 2522388.0718543655239046)", - "surface": 13810000, - "canton": null, - "numero_insee": "76186" - } - }, - { - "pk": 12118, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CONTREMOULINS", - "center": "POINT (462876.9506682444480248 2526871.0373173407278955)", - "surface": 4410000, - "canton": null, - "numero_insee": "76187" - } - }, - { - "pk": 30166, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "COTTEVRARD", - "center": "POINT (519498.5393518679775298 2516334.6331873890012503)", - "surface": 7860000, - "canton": null, - "numero_insee": "76188" - } - }, - { - "pk": 8787, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRASVILLE-LA-MALLET", - "center": "POINT (483218.0285369472694583 2535444.6672202609479427)", - "surface": 3200000, - "canton": null, - "numero_insee": "76189" - } - }, - { - "pk": 6176, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRASVILLE-LA-ROCQUEFORT", - "center": "POINT (494827.4203003786969930 2535140.8211849578656256)", - "surface": 5300000, - "canton": null, - "numero_insee": "76190" - } - }, - { - "pk": 29918, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRESSY", - "center": "POINT (515116.2700683902367018 2525903.9394240435212851)", - "surface": 4430000, - "canton": null, - "numero_insee": "76191" - } - }, - { - "pk": 19285, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRIEL-SUR-MER", - "center": "POINT (527251.8486053657252342 2558524.0691139339469373)", - "surface": 21300000, - "canton": null, - "numero_insee": "76192" - } - }, - { - "pk": 36626, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA CRIQUE", - "center": "POINT (518147.8526327376021072 2522327.0150345992296934)", - "surface": 10220000, - "canton": null, - "numero_insee": "76193" - } - }, - { - "pk": 28394, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRIQUEBEUF-EN-CAUX", - "center": "POINT (455356.4093546951189637 2528809.9746111701242626)", - "surface": 2160000, - "canton": null, - "numero_insee": "76194" - } - }, - { - "pk": 31407, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRIQUETOT-LE-MAUCONDUIT", - "center": "POINT (472022.9480271479114890 2534051.0495553039945662)", - "surface": 4170000, - "canton": null, - "numero_insee": "76195" - } - }, - { - "pk": 36430, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRIQUETOT-L'ESNEVAL", - "center": "POINT (450347.2281528392923065 2517461.7215556446462870)", - "surface": 13710000, - "canton": null, - "numero_insee": "76196" - } - }, - { - "pk": 8875, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRIQUETOT-SUR-LONGUEVILLE", - "center": "POINT (509058.9844601167715155 2532357.4129172535613179)", - "surface": 7360000, - "canton": null, - "numero_insee": "76197" - } - }, - { - "pk": 12529, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRIQUETOT-SUR-OUVILLE", - "center": "POINT (492548.3241850612685084 2520413.0951421950012445)", - "surface": 5910000, - "canton": null, - "numero_insee": "76198" - } - }, - { - "pk": 3688, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRIQUIERS", - "center": "POINT (554088.7111297349911183 2520025.2407367313280702)", - "surface": 22750000, - "canton": null, - "numero_insee": "76199" - } - }, - { - "pk": 5189, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CRITOT", - "center": "POINT (520922.6263359250733629 2513544.7899822499603033)", - "surface": 7050000, - "canton": null, - "numero_insee": "76200" - } - }, - { - "pk": 26783, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CROISY-SUR-ANDELLE", - "center": "POINT (532474.7858009824994951 2496130.2733238581568003)", - "surface": 3760000, - "canton": null, - "numero_insee": "76201" - } - }, - { - "pk": 23953, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CROIXDALLE", - "center": "POINT (530254.2632593150483444 2534435.0504689668305218)", - "surface": 11240000, - "canton": null, - "numero_insee": "76202" - } - }, - { - "pk": 37899, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CROIX-MARE", - "center": "POINT (491415.8202278057578951 2512198.7068848283961415)", - "surface": 8700000, - "canton": null, - "numero_insee": "76203" - } - }, - { - "pk": 27556, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CROPUS", - "center": "POINT (514104.0809207771671936 2527296.3528134748339653)", - "surface": 4840000, - "canton": null, - "numero_insee": "76204" - } - }, - { - "pk": 32000, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CROSVILLE-SUR-SCIE", - "center": "POINT (509524.2866242112359032 2536563.7731112944893539)", - "surface": 3470000, - "canton": null, - "numero_insee": "76205" - } - }, - { - "pk": 7533, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CUVERVILLE", - "center": "POINT (450220.6908249877160415 2520662.6137447366490960)", - "surface": 4530000, - "canton": null, - "numero_insee": "76206" - } - }, - { - "pk": 11446, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CUVERVILLE-SUR-YERES", - "center": "POINT (531817.5101672025630251 2550957.7491005142219365)", - "surface": 11150000, - "canton": null, - "numero_insee": "76207" - } - }, - { - "pk": 15217, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "CUY-SAINT-FIACRE", - "center": "POINT (553241.9967708055628464 2501606.9109140518121421)", - "surface": 9700000, - "canton": null, - "numero_insee": "76208" - } - }, - { - "pk": 17807, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DAMPIERRE-EN-BRAY", - "center": "POINT (551118.2759596239775419 2504290.8370191799476743)", - "surface": 12930000, - "canton": null, - "numero_insee": "76209" - } - }, - { - "pk": 10292, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DAMPIERRE-SAINT-NICOLAS", - "center": "POINT (518395.6042961516650394 2540639.9668869776651263)", - "surface": 3930000, - "canton": null, - "numero_insee": "76210" - } - }, - { - "pk": 28788, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DANCOURT", - "center": "POINT (542571.3936064965091646 2545244.0850967853330076)", - "surface": 18340000, - "canton": null, - "numero_insee": "76211" - } - }, - { - "pk": 7177, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DARNETAL", - "center": "POINT (514175.4694242676487193 2494677.0055096992291510)", - "surface": 4870000, - "canton": null, - "numero_insee": "76212" - } - }, - { - "pk": 37404, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DAUBEUF-SERVILLE", - "center": "POINT (466005.1195502630434930 2523695.0260470975190401)", - "surface": 7820000, - "canton": null, - "numero_insee": "76213" - } - }, - { - "pk": 34980, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DENESTANVILLE", - "center": "POINT (510135.4212812967598438 2535268.0886908452957869)", - "surface": 2640000, - "canton": null, - "numero_insee": "76214" - } - }, - { - "pk": 36981, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DERCHIGNY", - "center": "POINT (518122.1904415533063002 2549442.8292565569281578)", - "surface": 4870000, - "canton": null, - "numero_insee": "76215" - } - }, - { - "pk": 10769, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DEVILLE-LES-ROUEN", - "center": "POINT (506749.7189952513435856 2497216.8391679725609720)", - "surface": 3180000, - "canton": null, - "numero_insee": "76216" - } - }, - { - "pk": 37344, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DIEPPE", - "center": "POINT (510129.7552974035497755 2547975.4941473221406341)", - "surface": 12170000, - "canton": null, - "numero_insee": "76217" - } - }, - { - "pk": 36913, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DOUDEAUVILLE", - "center": "POINT (553790.4918544051470235 2507815.3170511703938246)", - "surface": 3990000, - "canton": null, - "numero_insee": "76218" - } - }, - { - "pk": 36387, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DOUDEVILLE", - "center": "POINT (488091.1446669641300105 2526980.0528609342873096)", - "surface": 14560000, - "canton": null, - "numero_insee": "76219" - } - }, - { - "pk": 5933, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DOUVREND", - "center": "POINT (526786.6155093198176473 2542310.8036752911284566)", - "surface": 18030000, - "canton": null, - "numero_insee": "76220" - } - }, - { - "pk": 3850, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DROSAY", - "center": "POINT (484631.2163981244666502 2533955.5057653849944472)", - "surface": 6420000, - "canton": null, - "numero_insee": "76221" - } - }, - { - "pk": 14108, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "DUCLAIR", - "center": "POINT (493318.1936578569002450 2500006.9946688222698867)", - "surface": 10010000, - "canton": null, - "numero_insee": "76222" - } - }, - { - "pk": 33134, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ECALLES-ALIX", - "center": "POINT (489496.5127674071118236 2514384.1103303488343954)", - "surface": 7540000, - "canton": null, - "numero_insee": "76223" - } - }, - { - "pk": 33527, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ECRAINVILLE", - "center": "POINT (453641.5547213142854162 2518389.5219281702302396)", - "surface": 12970000, - "canton": null, - "numero_insee": "76224" - } - }, - { - "pk": 29946, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ECRETTEVILLE-LES-BAONS", - "center": "POINT (479577.0536284433328547 2516002.8179108998738229)", - "surface": 9360000, - "canton": null, - "numero_insee": "76225" - } - }, - { - "pk": 9164, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ECRETTEVILLE-SUR-MER", - "center": "POINT (466518.4043133014347404 2534205.5532918144017458)", - "surface": 1860000, - "canton": null, - "numero_insee": "76226" - } - }, - { - "pk": 26100, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ECTOT-L'AUBER", - "center": "POINT (498268.8359357467852533 2518359.3522309428080916)", - "surface": 5000000, - "canton": null, - "numero_insee": "76227" - } - }, - { - "pk": 5917, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ECTOT-LES-BAONS", - "center": "POINT (489471.5887115004588850 2517385.7272228100337088)", - "surface": 5020000, - "canton": null, - "numero_insee": "76228" - } - }, - { - "pk": 25148, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ELBEUF-EN-BRAY", - "center": "POINT (550255.3924593946430832 2499780.8444457082077861)", - "surface": 10900000, - "canton": null, - "numero_insee": "76229" - } - }, - { - "pk": 33925, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ELBEUF-SUR-ANDELLE", - "center": "POINT (530656.2707312899874523 2498216.4186194827780128)", - "surface": 5990000, - "canton": null, - "numero_insee": "76230" - } - }, - { - "pk": 19345, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ELBEUF", - "center": "POINT (502421.0961619594600052 2476267.6449639331549406)", - "surface": 16480000, - "canton": null, - "numero_insee": "76231" - } - }, - { - "pk": 5660, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ELETOT", - "center": "POINT (464518.1836777226999402 2534088.9246744774281979)", - "surface": 6980000, - "canton": null, - "numero_insee": "76232" - } - }, - { - "pk": 33577, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ELLECOURT", - "center": "POINT (556073.6020234911702573 2533950.1475918749347329)", - "surface": 4470000, - "canton": null, - "numero_insee": "76233" - } - }, - { - "pk": 12658, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "EMANVILLE", - "center": "POINT (500500.7893192537594587 2514675.6561045004054904)", - "surface": 6410000, - "canton": null, - "numero_insee": "76234" - } - }, - { - "pk": 12487, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ENVERMEU", - "center": "POINT (522760.3786722815129906 2545178.9542143605649471)", - "surface": 14390000, - "canton": null, - "numero_insee": "76235" - } - }, - { - "pk": 5276, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ENVRONVILLE", - "center": "POINT (479550.4938677015015855 2519204.5389180025085807)", - "surface": 6250000, - "canton": null, - "numero_insee": "76236" - } - }, - { - "pk": 36428, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "EPINAY-SUR-DUCLAIR", - "center": "POINT (491182.9650462563149631 2504091.7978876694105566)", - "surface": 6650000, - "canton": null, - "numero_insee": "76237" - } - }, - { - "pk": 6470, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "EPOUVILLE", - "center": "POINT (447412.6307067269226536 2509332.5052942540496588)", - "surface": 5640000, - "canton": null, - "numero_insee": "76238" - } - }, - { - "pk": 24771, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "EPRETOT", - "center": "POINT (453340.6846469587762840 2506379.6972483377903700)", - "surface": 6930000, - "canton": null, - "numero_insee": "76239" - } - }, - { - "pk": 3826, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "EPREVILLE", - "center": "POINT (457789.9794002198614180 2524927.7784527125768363)", - "surface": 6490000, - "canton": null, - "numero_insee": "76240" - } - }, - { - "pk": 10699, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ERNEMONT-LA-VILLETTE", - "center": "POINT (554594.5496391830965877 2495414.3585243471898139)", - "surface": 7560000, - "canton": null, - "numero_insee": "76242" - } - }, - { - "pk": 8904, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ERNEMONT-SUR-BUCHY", - "center": "POINT (529196.2795780893648043 2505308.6429454199969769)", - "surface": 4020000, - "canton": null, - "numero_insee": "76243" - } - }, - { - "pk": 13763, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ESCLAVELLES", - "center": "POINT (531245.6578100498300046 2523536.8084413358010352)", - "surface": 10110000, - "canton": null, - "numero_insee": "76244" - } - }, - { - "pk": 32707, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ESLETTES", - "center": "POINT (506473.8767739497125149 2506320.1798660950735211)", - "surface": 5080000, - "canton": null, - "numero_insee": "76245" - } - }, - { - "pk": 35040, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ESTEVILLE", - "center": "POINT (518825.6578849167563021 2513027.0210359212942421)", - "surface": 5380000, - "canton": null, - "numero_insee": "76247" - } - }, - { - "pk": 34760, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ESTOUTEVILLE-ECALLES", - "center": "POINT (525551.7903218239080161 2510381.4006917136721313)", - "surface": 8390000, - "canton": null, - "numero_insee": "76248" - } - }, - { - "pk": 23504, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ETAIMPUIS", - "center": "POINT (513693.7534184081596322 2516486.4267063736915588)", - "surface": 10510000, - "canton": null, - "numero_insee": "76249" - } - }, - { - "pk": 24176, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ETAINHUS", - "center": "POINT (453214.1376198726939037 2509580.6176348840817809)", - "surface": 8330000, - "canton": null, - "numero_insee": "76250" - } - }, - { - "pk": 16722, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ETALLEVILLE", - "center": "POINT (490890.9666714956983924 2527203.4205486830323935)", - "surface": 3630000, - "canton": null, - "numero_insee": "76251" - } - }, - { - "pk": 11731, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ETALONDES", - "center": "POINT (532042.5861291128676385 2559964.8041391274891794)", - "surface": 4610000, - "canton": null, - "numero_insee": "76252" - } - }, - { - "pk": 29546, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ETOUTTEVILLE", - "center": "POINT (487744.9242449809680693 2520473.2681163214147091)", - "surface": 11720000, - "canton": null, - "numero_insee": "76253" - } - }, - { - "pk": 24778, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ETRETAT", - "center": "POINT (446081.2656804643338546 2525131.0939622120931745)", - "surface": 4300000, - "canton": null, - "numero_insee": "76254" - } - }, - { - "pk": 23753, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "EU", - "center": "POINT (534836.4823586523998529 2560888.6158290659077466)", - "surface": 17970000, - "canton": null, - "numero_insee": "76255" - } - }, - { - "pk": 31152, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FALLENCOURT", - "center": "POINT (544507.4494478730484843 2541057.7869606227613986)", - "surface": 12050000, - "canton": null, - "numero_insee": "76257" - } - }, - { - "pk": 25746, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FAUVILLE-EN-CAUX", - "center": "POINT (473347.1669692407594994 2519153.0953029398806393)", - "surface": 8220000, - "canton": null, - "numero_insee": "76258" - } - }, - { - "pk": 15644, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FECAMP", - "center": "POINT (459948.9035818256670609 2530048.7054779315367341)", - "surface": 15240000, - "canton": null, - "numero_insee": "76259" - } - }, - { - "pk": 17947, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FERRIERES-EN-BRAY", - "center": "POINT (557967.9968403915408999 2498844.6708393734879792)", - "surface": 15930000, - "canton": null, - "numero_insee": "76260" - } - }, - { - "pk": 30566, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA FERTE-SAINT-SAMSON", - "center": "POINT (542072.4315506499260664 2509118.3181906440295279)", - "surface": 19140000, - "canton": null, - "numero_insee": "76261" - } - }, - { - "pk": 26938, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FESQUES", - "center": "POINT (538772.0642235887935385 2532905.1389002446085215)", - "surface": 8870000, - "canton": null, - "numero_insee": "76262" - } - }, - { - "pk": 16267, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA FEUILLIE", - "center": "POINT (540775.2086084670154378 2496699.8271152428351343)", - "surface": 39860000, - "canton": null, - "numero_insee": "76263" - } - }, - { - "pk": 3691, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FLAMANVILLE", - "center": "POINT (491184.9668658619630150 2515899.0444959322921932)", - "surface": 4480000, - "canton": null, - "numero_insee": "76264" - } - }, - { - "pk": 37111, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FLAMETS-FRETILS", - "center": "POINT (545536.5540392029797658 2525657.2403908409178257)", - "surface": 12360000, - "canton": null, - "numero_insee": "76265" - } - }, - { - "pk": 6697, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FLOCQUES", - "center": "POINT (530239.1801665895618498 2560249.9409105307422578)", - "surface": 4940000, - "canton": null, - "numero_insee": "76266" - } - }, - { - "pk": 28667, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA FOLLETIERE", - "center": "POINT (488138.1222497240523808 2509269.7141366489231586)", - "surface": 5030000, - "canton": null, - "numero_insee": "76267" - } - }, - { - "pk": 8747, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FONGUEUSEMARE", - "center": "POINT (453515.0090091279707849 2521590.4111324632540345)", - "surface": 12010000, - "canton": null, - "numero_insee": "76268" - } - }, - { - "pk": 5400, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FONTAINE-EN-BRAY", - "center": "POINT (533872.9067090228199959 2520456.8472995376214385)", - "surface": 6050000, - "canton": null, - "numero_insee": "76269" - } - }, - { - "pk": 8740, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FONTAINE-LA-MALLET", - "center": "POINT (440829.7022571939742193 2506776.5473127537406981)", - "surface": 6390000, - "canton": null, - "numero_insee": "76270" - } - }, - { - "pk": 29475, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FONTAINE-LE-BOURG", - "center": "POINT (514558.3124843303812668 2508788.9230883521959186)", - "surface": 12220000, - "canton": null, - "numero_insee": "76271" - } - }, - { - "pk": 5990, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FONTAINE-LE-DUN", - "center": "POINT (492517.0759235215955414 2536222.2810418391600251)", - "surface": 5380000, - "canton": null, - "numero_insee": "76272" - } - }, - { - "pk": 11242, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FONTAINE-SOUS-PREAUX", - "center": "POINT (515237.7656778380041942 2499288.7143815951421857)", - "surface": 3560000, - "canton": null, - "numero_insee": "76273" - } - }, - { - "pk": 24045, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA FONTELAYE", - "center": "POINT (499332.8362741776509210 2522770.8530177157372236)", - "surface": 3970000, - "canton": null, - "numero_insee": "76274" - } - }, - { - "pk": 18268, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FONTENAY", - "center": "POINT (443703.1685382049181499 2510202.3873986466787755)", - "surface": 5620000, - "canton": null, - "numero_insee": "76275" - } - }, - { - "pk": 7608, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FORGES-LES-EAUX", - "center": "POINT (541839.7555170007981360 2513018.7611064929515123)", - "surface": 5250000, - "canton": null, - "numero_insee": "76276" - } - }, - { - "pk": 37699, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE FOSSE", - "center": "POINT (545045.6606478467583656 2512545.2168758250772953)", - "surface": 10240000, - "canton": null, - "numero_insee": "76277" - } - }, - { - "pk": 24567, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FOUCARMONT", - "center": "POINT (544321.5445903819054365 2539355.2357935574837029)", - "surface": 7320000, - "canton": null, - "numero_insee": "76278" - } - }, - { - "pk": 29278, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FREAUVILLE", - "center": "POINT (533736.0689937236020342 2536865.5008495897054672)", - "surface": 5380000, - "canton": null, - "numero_insee": "76280" - } - }, - { - "pk": 11184, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA FRENAYE", - "center": "POINT (472171.7091502718976699 2504034.1151079069823027)", - "surface": 10060000, - "canton": null, - "numero_insee": "76281" - } - }, - { - "pk": 8030, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRENEUSE", - "center": "POINT (507596.5956697993096896 2479612.7951528578996658)", - "surface": 3240000, - "canton": null, - "numero_insee": "76282" - } - }, - { - "pk": 33317, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRESLES", - "center": "POINT (528305.7542914857622236 2528115.0590456849895418)", - "surface": 10860000, - "canton": null, - "numero_insee": "76283" - } - }, - { - "pk": 17972, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRESNAY-LE-LONG", - "center": "POINT (510080.9946147148730233 2517757.1511720069684088)", - "surface": 5100000, - "canton": null, - "numero_insee": "76284" - } - }, - { - "pk": 8967, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRESNE-LE-PLAN", - "center": "POINT (524411.1473456502426416 2491159.9937825212255120)", - "surface": 6970000, - "canton": null, - "numero_insee": "76285" - } - }, - { - "pk": 31753, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRESNOY-FOLNY", - "center": "POINT (535079.2204448306001723 2543780.7577416822314262)", - "surface": 13260000, - "canton": null, - "numero_insee": "76286" - } - }, - { - "pk": 16125, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRESQUIENNES", - "center": "POINT (504058.4214678480639122 2508001.1370785231702030)", - "surface": 13370000, - "canton": null, - "numero_insee": "76287" - } - }, - { - "pk": 20207, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FREULLEVILLE", - "center": "POINT (519231.8451271561207250 2536344.3962655216455460)", - "surface": 11270000, - "canton": null, - "numero_insee": "76288" - } - }, - { - "pk": 28431, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FREVILLE", - "center": "POINT (491045.5173250431544147 2508593.4269101386889815)", - "surface": 5780000, - "canton": null, - "numero_insee": "76289" - } - }, - { - "pk": 23080, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRICHEMESNIL", - "center": "POINT (512811.5885793389170431 2514277.7466675983741879)", - "surface": 8130000, - "canton": null, - "numero_insee": "76290" - } - }, - { - "pk": 10725, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FROBERVILLE", - "center": "POINT (455479.6465318347327411 2526009.3171957461163402)", - "surface": 5920000, - "canton": null, - "numero_insee": "76291" - } - }, - { - "pk": 20904, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRY", - "center": "POINT (542019.1416747906478122 2503514.4274122542701662)", - "surface": 7950000, - "canton": null, - "numero_insee": "76292" - } - }, - { - "pk": 12424, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FULTOT", - "center": "POINT (487764.4054347676574253 2530179.2527306484989822)", - "surface": 3750000, - "canton": null, - "numero_insee": "76293" - } - }, - { - "pk": 9036, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA GAILLARDE", - "center": "POINT (493895.3672030267189257 2538935.3231228003278375)", - "surface": 7900000, - "canton": null, - "numero_insee": "76294" - } - }, - { - "pk": 15393, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GAILLEFONTAINE", - "center": "POINT (548603.3194835484027863 2517878.1466791639104486)", - "surface": 26470000, - "canton": null, - "numero_insee": "76295" - } - }, - { - "pk": 31372, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GAINNEVILLE", - "center": "POINT (449155.7631430687615648 2504243.7805796759203076)", - "surface": 4590000, - "canton": null, - "numero_insee": "76296" - } - }, - { - "pk": 5005, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GANCOURT-SAINT-ETIENNE", - "center": "POINT (554610.9936595938634127 2505420.6970561812631786)", - "surface": 12640000, - "canton": null, - "numero_insee": "76297" - } - }, - { - "pk": 9037, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GANZEVILLE", - "center": "POINT (460468.2211157461861148 2527751.6303636780939996)", - "surface": 3980000, - "canton": null, - "numero_insee": "76298" - } - }, - { - "pk": 3834, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GERPONVILLE", - "center": "POINT (472062.7565757888951339 2529248.5218930584378541)", - "surface": 4980000, - "canton": null, - "numero_insee": "76299" - } - }, - { - "pk": 17420, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GERVILLE", - "center": "POINT (454895.0589486117241904 2524103.3376288339495659)", - "surface": 3070000, - "canton": null, - "numero_insee": "76300" - } - }, - { - "pk": 13469, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GLICOURT", - "center": "POINT (520623.4678497638669796 2549463.6582815339788795)", - "surface": 4570000, - "canton": null, - "numero_insee": "76301" - } - }, - { - "pk": 8901, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GODERVILLE", - "center": "POINT (456745.7063475147588179 2518115.0289460839703679)", - "surface": 8010000, - "canton": null, - "numero_insee": "76302" - } - }, - { - "pk": 26959, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GOMMERVILLE", - "center": "POINT (456730.1237663559149951 2507908.6707896562293172)", - "surface": 7470000, - "canton": null, - "numero_insee": "76303" - } - }, - { - "pk": 29986, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GONFREVILLE-CAILLOT", - "center": "POINT (462843.1870486435946077 2518865.9368138569407165)", - "surface": 4210000, - "canton": null, - "numero_insee": "76304" - } - }, - { - "pk": 8851, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GONFREVILLE-L'ORCHER", - "center": "POINT (446582.4646683664759621 2500820.3933907803148031)", - "surface": 25900000, - "canton": null, - "numero_insee": "76305" - } - }, - { - "pk": 19677, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GONNETOT", - "center": "POINT (496067.9502603582805023 2530348.2755645830184221)", - "surface": 2340000, - "canton": null, - "numero_insee": "76306" - } - }, - { - "pk": 32645, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GONNEVILLE-LA-MALLET", - "center": "POINT (446449.2634187738876790 2516929.1809266298078001)", - "surface": 7310000, - "canton": null, - "numero_insee": "76307" - } - }, - { - "pk": 22450, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GONNEVILLE-SUR-SCIE", - "center": "POINT (509782.6596889584325254 2529561.7660973840393126)", - "surface": 8670000, - "canton": null, - "numero_insee": "76308" - } - }, - { - "pk": 29756, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GONZEVILLE", - "center": "POINT (489664.5766034823027439 2530295.0888538863509893)", - "surface": 4900000, - "canton": null, - "numero_insee": "76309" - } - }, - { - "pk": 7024, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GOUCHAUPRE", - "center": "POINT (525139.9385247412137687 2547800.2937969816848636)", - "surface": 4320000, - "canton": null, - "numero_insee": "76310" - } - }, - { - "pk": 22735, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GOUPILLIERES", - "center": "POINT (502037.3673334667691961 2510385.8045190153643489)", - "surface": 4130000, - "canton": null, - "numero_insee": "76311" - } - }, - { - "pk": 6830, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GOUY", - "center": "POINT (513154.8044959156541154 2485062.4734017197042704)", - "surface": 4990000, - "canton": null, - "numero_insee": "76313" - } - }, - { - "pk": 3647, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRAIMBOUVILLE", - "center": "POINT (455001.8702696544351056 2511196.3916711620986462)", - "surface": 6420000, - "canton": null, - "numero_insee": "76314" - } - }, - { - "pk": 34724, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRAINVILLE-LA-TEINTURIERE", - "center": "POINT (477769.0879238095367327 2528895.5968128000386059)", - "surface": 18520000, - "canton": null, - "numero_insee": "76315" - } - }, - { - "pk": 37963, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRAINVILLE-SUR-RY", - "center": "POINT (524754.6785540791461244 2497967.1058285138569772)", - "surface": 5490000, - "canton": null, - "numero_insee": "76316" - } - }, - { - "pk": 31608, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRAINVILLE-YMAUVILLE", - "center": "POINT (460939.6808438258012757 2519150.3554232390597463)", - "surface": 6330000, - "canton": null, - "numero_insee": "76317" - } - }, - { - "pk": 8771, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRAND-CAMP", - "center": "POINT (474245.4853759869001806 2507353.3419767762534320)", - "surface": 4960000, - "canton": null, - "numero_insee": "76318" - } - }, - { - "pk": 34817, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRAND-COURONNE", - "center": "POINT (503155.8253093430539593 2484178.7839589184150100)", - "surface": 16910000, - "canton": null, - "numero_insee": "76319" - } - }, - { - "pk": 15952, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRANDCOURT", - "center": "POINT (538754.4148313123732805 2547013.2826556405052543)", - "surface": 22510000, - "canton": null, - "numero_insee": "76320" - } - }, - { - "pk": 16561, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LES GRANDES-VENTES", - "center": "POINT (520476.6349541119416244 2531051.6188019993714988)", - "surface": 24720000, - "canton": null, - "numero_insee": "76321" - } - }, - { - "pk": 21332, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE GRAND-QUEVILLY", - "center": "POINT (505801.5920873238355853 2490905.0126206283457577)", - "surface": 11030000, - "canton": null, - "numero_insee": "76322" - } - }, - { - "pk": 26699, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRAVAL", - "center": "POINT (543232.8298036888008937 2525938.1887711081653833)", - "surface": 3990000, - "canton": null, - "numero_insee": "76323" - } - }, - { - "pk": 9319, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GREGES", - "center": "POINT (514531.1766433060402051 2548112.1792897251434624)", - "surface": 3180000, - "canton": null, - "numero_insee": "76324" - } - }, - { - "pk": 25048, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GREMONVILLE", - "center": "POINT (490956.6078604310168885 2519299.2102614017203450)", - "surface": 8360000, - "canton": null, - "numero_insee": "76325" - } - }, - { - "pk": 10167, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRENY", - "center": "POINT (525619.3528073148336262 2550305.7400388843379915)", - "surface": 4020000, - "canton": null, - "numero_insee": "76326" - } - }, - { - "pk": 16443, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GREUVILLE", - "center": "POINT (497126.9607455083751120 2535360.0453308969736099)", - "surface": 2990000, - "canton": null, - "numero_insee": "76327" - } - }, - { - "pk": 24568, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRIGNEUSEVILLE", - "center": "POINT (517282.3608529958291911 2518117.2710263933986425)", - "surface": 7350000, - "canton": null, - "numero_insee": "76328" - } - }, - { - "pk": 16000, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRUCHET-LE-VALASSE", - "center": "POINT (467942.0433805483626202 2507301.0940253739245236)", - "surface": 14290000, - "canton": null, - "numero_insee": "76329" - } - }, - { - "pk": 6575, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRUCHET-SAINT-SIMEON", - "center": "POINT (495811.3180704899714328 2537150.1781788142398000)", - "surface": 2610000, - "canton": null, - "numero_insee": "76330" - } - }, - { - "pk": 10324, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GRUMESNIL", - "center": "POINT (553440.1684306347742677 2513816.0599921434186399)", - "surface": 11300000, - "canton": null, - "numero_insee": "76332" - } - }, - { - "pk": 33022, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GUERVILLE", - "center": "POINT (541723.3879779321141541 2550940.3214743253774941)", - "surface": 12520000, - "canton": null, - "numero_insee": "76333" - } - }, - { - "pk": 31243, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GUEURES", - "center": "POINT (500196.1483569770352915 2539287.8549053417518735)", - "surface": 6080000, - "canton": null, - "numero_insee": "76334" - } - }, - { - "pk": 11877, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GUEUTTEVILLE", - "center": "POINT (503676.7255436347331852 2517803.9434669478796422)", - "surface": 3000000, - "canton": null, - "numero_insee": "76335" - } - }, - { - "pk": 9063, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GUEUTTEVILLE-LES-GRES", - "center": "POINT (486790.0126930758124217 2539076.4392030914314091)", - "surface": 4490000, - "canton": null, - "numero_insee": "76336" - } - }, - { - "pk": 6854, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "GUILMECOURT", - "center": "POINT (525702.7303232429549098 2552307.5924028954468668)", - "surface": 7940000, - "canton": null, - "numero_insee": "76337" - } - }, - { - "pk": 8865, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA HALLOTIERE", - "center": "POINT (537620.9042916363105178 2502977.4173436253331602)", - "surface": 3730000, - "canton": null, - "numero_insee": "76338" - } - }, - { - "pk": 26153, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE HANOUARD", - "center": "POINT (478590.2580195070477203 2526400.9114228119142354)", - "surface": 4300000, - "canton": null, - "numero_insee": "76339" - } - }, - { - "pk": 13520, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HARCANVILLE", - "center": "POINT (486710.3359275310067460 2524567.1499776844866574)", - "surface": 7650000, - "canton": null, - "numero_insee": "76340" - } - }, - { - "pk": 5552, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HARFLEUR", - "center": "POINT (444855.8817671667784452 2503908.0378537680953741)", - "surface": 4200000, - "canton": null, - "numero_insee": "76341" - } - }, - { - "pk": 24614, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HATTENVILLE", - "center": "POINT (470047.0541164593305439 2518925.6193707659840584)", - "surface": 9340000, - "canton": null, - "numero_insee": "76342" - } - }, - { - "pk": 33100, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUCOURT", - "center": "POINT (551916.7908118563937023 2516504.9744715634733438)", - "surface": 10250000, - "canton": null, - "numero_insee": "76343" - } - }, - { - "pk": 21386, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUDRICOURT", - "center": "POINT (553735.8823098398279399 2526326.0829541059210896)", - "surface": 29940000, - "canton": null, - "numero_insee": "76344" - } - }, - { - "pk": 21743, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUSSEZ", - "center": "POINT (552369.6678825704148039 2510204.9173430646769702)", - "surface": 13230000, - "canton": null, - "numero_insee": "76345" - } - }, - { - "pk": 21401, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUTOT-L'AUVRAY", - "center": "POINT (485856.7595981347840279 2530963.8939747107215226)", - "surface": 7340000, - "canton": null, - "numero_insee": "76346" - } - }, - { - "pk": 8679, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUTOT-LE-VATOIS", - "center": "POINT (481863.3501923432340845 2517822.8789633577689528)", - "surface": 6090000, - "canton": null, - "numero_insee": "76347" - } - }, - { - "pk": 37785, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUTOT-SAINT-SULPICE", - "center": "POINT (484434.8539122700458393 2521446.3960783043876290)", - "surface": 8500000, - "canton": null, - "numero_insee": "76348" - } - }, - { - "pk": 11878, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUTOT-SUR-MER", - "center": "POINT (506745.4879412168520503 2545846.1189446561038494)", - "surface": 9550000, - "canton": null, - "numero_insee": "76349" - } - }, - { - "pk": 37739, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HAUTOT-SUR-SEINE", - "center": "POINT (501140.5557831062469631 2485863.1042082081548870)", - "surface": 2190000, - "canton": null, - "numero_insee": "76350" - } - }, - { - "pk": 5548, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE HAVRE", - "center": "POINT (440666.8021024008630775 2502272.4207518398761749)", - "surface": 54710000, - "canton": null, - "numero_insee": "76351" - } - }, - { - "pk": 26349, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA HAYE", - "center": "POINT (535375.5578863305272534 2496254.5275852428749204)", - "surface": 6780000, - "canton": null, - "numero_insee": "76352" - } - }, - { - "pk": 7056, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HEBERVILLE", - "center": "POINT (489342.8188436673954129 2532893.9646715419366956)", - "surface": 4010000, - "canton": null, - "numero_insee": "76353" - } - }, - { - "pk": 7880, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HENOUVILLE", - "center": "POINT (499435.6965863613877445 2498356.7710765134543180)", - "surface": 10810000, - "canton": null, - "numero_insee": "76354" - } - }, - { - "pk": 26836, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HERICOURT-EN-CAUX", - "center": "POINT (482019.4578237060341053 2523127.3770632268860936)", - "surface": 10770000, - "canton": null, - "numero_insee": "76355" - } - }, - { - "pk": 36057, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HERMANVILLE", - "center": "POINT (502718.2430678809760138 2536807.3463412774726748)", - "surface": 4710000, - "canton": null, - "numero_insee": "76356" - } - }, - { - "pk": 37127, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HERMEVILLE", - "center": "POINT (449683.2642622943967581 2513053.5500004990026355)", - "surface": 3790000, - "canton": null, - "numero_insee": "76357" - } - }, - { - "pk": 15956, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE HERON", - "center": "POINT (532343.8607925244141370 2499831.4835335919633508)", - "surface": 10830000, - "canton": null, - "numero_insee": "76358" - } - }, - { - "pk": 9408, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HERONCHELLES", - "center": "POINT (530800.4909319330472499 2504921.7699634023010731)", - "surface": 6750000, - "canton": null, - "numero_insee": "76359" - } - }, - { - "pk": 28646, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HEUGLEVILLE-SUR-SCIE", - "center": "POINT (510703.9467368150944822 2527067.9372490211389959)", - "surface": 13370000, - "canton": null, - "numero_insee": "76360" - } - }, - { - "pk": 8369, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HEUQUEVILLE", - "center": "POINT (441957.5866366879781708 2515591.2583369724452496)", - "surface": 5170000, - "canton": null, - "numero_insee": "76361" - } - }, - { - "pk": 29507, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HEURTEAUVILLE", - "center": "POINT (488547.1142164749326184 2496165.0057694073766470)", - "surface": 7370000, - "canton": null, - "numero_insee": "76362" - } - }, - { - "pk": 28635, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HODENG-AU-BOSC", - "center": "POINT (554006.5113270031288266 2541837.5321532911621034)", - "surface": 8800000, - "canton": null, - "numero_insee": "76363" - } - }, - { - "pk": 6896, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HODENG-HODENGER", - "center": "POINT (545712.8149384364951402 2504545.8785895560868084)", - "surface": 11560000, - "canton": null, - "numero_insee": "76364" - } - }, - { - "pk": 31836, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HOUDETOT", - "center": "POINT (489712.2901698930654675 2536599.2251491723582149)", - "surface": 5870000, - "canton": null, - "numero_insee": "76365" - } - }, - { - "pk": 11097, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE HOULME", - "center": "POINT (505707.5575466932496056 2502211.2756469827145338)", - "surface": 2960000, - "canton": null, - "numero_insee": "76366" - } - }, - { - "pk": 33578, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HOUPPEVILLE", - "center": "POINT (509516.3056964784627780 2501442.4632084802724421)", - "surface": 20890000, - "canton": null, - "numero_insee": "76367" - } - }, - { - "pk": 10931, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HOUQUETOT", - "center": "POINT (458984.1645156997255981 2513630.8210280933417380)", - "surface": 4100000, - "canton": null, - "numero_insee": "76368" - } - }, - { - "pk": 34304, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA HOUSSAYE-BERANGER", - "center": "POINT (509300.5428254934959114 2515349.2005318119190633)", - "surface": 8050000, - "canton": null, - "numero_insee": "76369" - } - }, - { - "pk": 26455, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "HUGLEVILLE-EN-CAUX", - "center": "POINT (502600.2588238262687810 2514893.2314758719876409)", - "surface": 9530000, - "canton": null, - "numero_insee": "76370" - } - }, - { - "pk": 37733, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LES IFS", - "center": "POINT (532376.1605857914546505 2543958.3335325177758932)", - "surface": 4080000, - "canton": null, - "numero_insee": "76371" - } - }, - { - "pk": 3830, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ILLOIS", - "center": "POINT (550121.4414019254036248 2527796.7852233219891787)", - "surface": 14690000, - "canton": null, - "numero_insee": "76372" - } - }, - { - "pk": 9900, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "IMBLEVILLE", - "center": "POINT (499314.5414642759133130 2524972.0239648427814245)", - "surface": 5210000, - "canton": null, - "numero_insee": "76373" - } - }, - { - "pk": 24470, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "INCHEVILLE", - "center": "POINT (539873.2161953924223781 2556828.2843358754180372)", - "surface": 7880000, - "canton": null, - "numero_insee": "76374" - } - }, - { - "pk": 32053, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "INGOUVILLE", - "center": "POINT (480780.2509207165567204 2539827.0383097892627120)", - "surface": 7830000, - "canton": null, - "numero_insee": "76375" - } - }, - { - "pk": 25317, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "INTRAVILLE", - "center": "POINT (523631.6685934094712138 2548688.2508920440450311)", - "surface": 4740000, - "canton": null, - "numero_insee": "76376" - } - }, - { - "pk": 31367, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ISNEAUVILLE", - "center": "POINT (513621.0596492976183072 2501176.4357304158620536)", - "surface": 8050000, - "canton": null, - "numero_insee": "76377" - } - }, - { - "pk": 22294, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "JUMIEGES", - "center": "POINT (490673.2079588019987568 2493180.7854649201035500)", - "surface": 19010000, - "canton": null, - "numero_insee": "76378" - } - }, - { - "pk": 3438, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LAMBERVILLE", - "center": "POINT (504163.0667269062832929 2531516.2167953541502357)", - "surface": 7270000, - "canton": null, - "numero_insee": "76379" - } - }, - { - "pk": 35208, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LAMMERVILLE", - "center": "POINT (501541.7374332593753934 2533895.8486697287298739)", - "surface": 8810000, - "canton": null, - "numero_insee": "76380" - } - }, - { - "pk": 34060, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LANDES-VIEILLES-ET-NEUVES", - "center": "POINT (549182.5272956527769566 2532391.6848990577273071)", - "surface": 7150000, - "canton": null, - "numero_insee": "76381" - } - }, - { - "pk": 13634, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LANQUETOT", - "center": "POINT (469212.0742179705994204 2511013.8889587880112231)", - "surface": 5180000, - "canton": null, - "numero_insee": "76382" - } - }, - { - "pk": 24563, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LESTANVILLE", - "center": "POINT (500583.6283661226043478 2528784.8483101958408952)", - "surface": 1640000, - "canton": null, - "numero_insee": "76383" - } - }, - { - "pk": 19286, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LILLEBONNE", - "center": "POINT (469280.8964943530736491 2502709.3505656244233251)", - "surface": 14650000, - "canton": null, - "numero_insee": "76384" - } - }, - { - "pk": 27883, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LIMESY", - "center": "POINT (497710.9187571178190410 2513251.6152471387758851)", - "surface": 15060000, - "canton": null, - "numero_insee": "76385" - } - }, - { - "pk": 12889, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LIMPIVILLE", - "center": "POINT (467414.9849083925946616 2522606.0441118516027927)", - "surface": 4230000, - "canton": null, - "numero_insee": "76386" - } - }, - { - "pk": 24648, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LINDEBEUF", - "center": "POINT (496716.4853671072050929 2524550.1930184029042721)", - "surface": 4630000, - "canton": null, - "numero_insee": "76387" - } - }, - { - "pk": 36887, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LINTOT", - "center": "POINT (471835.8803797069122083 2508333.9801410487852991)", - "surface": 8070000, - "canton": null, - "numero_insee": "76388" - } - }, - { - "pk": 32866, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LINTOT-LES-BOIS", - "center": "POINT (508640.4633787337807007 2534555.2369064325466752)", - "surface": 2860000, - "canton": null, - "numero_insee": "76389" - } - }, - { - "pk": 33259, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LES LOGES", - "center": "POINT (451792.5781696556368843 2524177.7277352632954717)", - "surface": 14900000, - "canton": null, - "numero_insee": "76390" - } - }, - { - "pk": 20897, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA LONDE", - "center": "POINT (496873.8880970656173304 2481524.9147628797218204)", - "surface": 30990000, - "canton": null, - "numero_insee": "76391" - } - }, - { - "pk": 37206, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LONDINIERES", - "center": "POINT (532220.2713569494662806 2538653.9229308501817286)", - "surface": 18720000, - "canton": null, - "numero_insee": "76392" - } - }, - { - "pk": 30561, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LONGMESNIL", - "center": "POINT (547633.6975601164158434 2514167.8016215395182371)", - "surface": 3990000, - "canton": null, - "numero_insee": "76393" - } - }, - { - "pk": 32997, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LONGROY", - "center": "POINT (542397.0233280915999785 2554147.7922702492214739)", - "surface": 5420000, - "canton": null, - "numero_insee": "76394" - } - }, - { - "pk": 26105, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LONGUEIL", - "center": "POINT (500058.6742305695079267 2543789.3536225184798241)", - "surface": 11720000, - "canton": null, - "numero_insee": "76395" - } - }, - { - "pk": 33667, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LONGUERUE", - "center": "POINT (524086.8221418142784387 2506066.5544287143275142)", - "surface": 5340000, - "canton": null, - "numero_insee": "76396" - } - }, - { - "pk": 9378, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LONGUEVILLE-SUR-SCIE", - "center": "POINT (511347.7040372561314143 2533877.3459331085905433)", - "surface": 3810000, - "canton": null, - "numero_insee": "76397" - } - }, - { - "pk": 25154, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LOUVETOT", - "center": "POINT (483132.9092435518978164 2509528.3521523950621486)", - "surface": 7610000, - "canton": null, - "numero_insee": "76398" - } - }, - { - "pk": 13624, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LUCY", - "center": "POINT (535886.4004889231873676 2530979.9364754599519074)", - "surface": 9610000, - "canton": null, - "numero_insee": "76399" - } - }, - { - "pk": 5258, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LUNERAY", - "center": "POINT (497713.1402982653817162 2537065.9215541416779160)", - "surface": 5160000, - "canton": null, - "numero_insee": "76400" - } - }, - { - "pk": 17211, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA MAILLERAYE-SUR-SEINE", - "center": "POINT (485050.9851723168976605 2495435.5449065808206797)", - "surface": 44830000, - "canton": null, - "numero_insee": "76401" - } - }, - { - "pk": 20409, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MALAUNAY", - "center": "POINT (506594.7367276625009254 2503819.6437142910435796)", - "surface": 9270000, - "canton": null, - "numero_insee": "76402" - } - }, - { - "pk": 13653, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MALLEVILLE-LES-GRES", - "center": "POINT (475289.0063740219338797 2538380.6700685177929699)", - "surface": 3060000, - "canton": null, - "numero_insee": "76403" - } - }, - { - "pk": 12668, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MANEGLISE", - "center": "POINT (449411.2387109637493268 2509649.2186479996889830)", - "surface": 8370000, - "canton": null, - "numero_insee": "76404" - } - }, - { - "pk": 30732, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MANEHOUVILLE", - "center": "POINT (508512.1127201175549999 2537956.1792921982705593)", - "surface": 4340000, - "canton": null, - "numero_insee": "76405" - } - }, - { - "pk": 28075, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MANIQUERVILLE", - "center": "POINT (456199.0643765886197798 2523713.8886187621392310)", - "surface": 2590000, - "canton": null, - "numero_insee": "76406" - } - }, - { - "pk": 3061, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MANNEVILLE-ES-PLAINS", - "center": "POINT (485871.2746515239123255 2541270.1072622234933078)", - "surface": 6420000, - "canton": null, - "numero_insee": "76407" - } - }, - { - "pk": 29300, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MANNEVILLE-LA-GOUPIL", - "center": "POINT (456075.1409379011020064 2514507.2899562390521169)", - "surface": 8840000, - "canton": null, - "numero_insee": "76408" - } - }, - { - "pk": 37700, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MANNEVILLETTE", - "center": "POINT (443579.1284030134556815 2513103.1368801556527615)", - "surface": 4230000, - "canton": null, - "numero_insee": "76409" - } - }, - { - "pk": 34816, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MAROMME", - "center": "POINT (505338.1261557844118215 2498505.9077289616689086)", - "surface": 4150000, - "canton": null, - "numero_insee": "76410" - } - }, - { - "pk": 8221, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MARQUES", - "center": "POINT (552791.1021215493092313 2531621.3528703032061458)", - "surface": 13240000, - "canton": null, - "numero_insee": "76411" - } - }, - { - "pk": 27767, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MARTAINVILLE-EPREVILLE", - "center": "POINT (524376.1328700848389417 2495362.3312484766356647)", - "surface": 7580000, - "canton": null, - "numero_insee": "76412" - } - }, - { - "pk": 34752, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MARTIGNY", - "center": "POINT (514090.0449114297516644 2541004.3584322361275554)", - "surface": 5200000, - "canton": null, - "numero_insee": "76413" - } - }, - { - "pk": 6916, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MARTIN-EGLISE", - "center": "POINT (513343.0521231209277175 2546601.4174244026653469)", - "surface": 9550000, - "canton": null, - "numero_insee": "76414" - } - }, - { - "pk": 31926, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MASSY", - "center": "POINT (531962.7148355959216133 2521541.5825514555908740)", - "surface": 11270000, - "canton": null, - "numero_insee": "76415" - } - }, - { - "pk": 6918, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MATHONVILLE", - "center": "POINT (530921.3532850502524525 2514428.5980392480269074)", - "surface": 4140000, - "canton": null, - "numero_insee": "76416" - } - }, - { - "pk": 6852, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MAUCOMBLE", - "center": "POINT (527459.4801437723217532 2521604.1033651963807642)", - "surface": 5070000, - "canton": null, - "numero_insee": "76417" - } - }, - { - "pk": 16674, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MAULEVRIER-SAINTE-GERTRUDE", - "center": "POINT (482048.0846514307195321 2507618.1836646059527993)", - "surface": 14360000, - "canton": null, - "numero_insee": "76418" - } - }, - { - "pk": 8240, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MAUNY", - "center": "POINT (495805.1477578901685774 2489721.2195085897110403)", - "surface": 10180000, - "canton": null, - "numero_insee": "76419" - } - }, - { - "pk": 25146, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MAUQUENCHY", - "center": "POINT (536547.7422352584544569 2511673.8113914187997580)", - "surface": 12740000, - "canton": null, - "numero_insee": "76420" - } - }, - { - "pk": 35711, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MELAMARE", - "center": "POINT (462246.3855925538809970 2506353.3574514607898891)", - "surface": 6310000, - "canton": null, - "numero_insee": "76421" - } - }, - { - "pk": 12807, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MELLEVILLE", - "center": "POINT (538113.2073213334660977 2551910.7763976021669805)", - "surface": 9070000, - "canton": null, - "numero_insee": "76422" - } - }, - { - "pk": 4005, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MENERVAL", - "center": "POINT (550094.3281492536189035 2507084.0081292656250298)", - "surface": 12670000, - "canton": null, - "numero_insee": "76423" - } - }, - { - "pk": 33747, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MENONVAL", - "center": "POINT (538198.4610634881537408 2529698.4490187885239720)", - "surface": 5340000, - "canton": null, - "numero_insee": "76424" - } - }, - { - "pk": 7649, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MENTHEVILLE", - "center": "POINT (460805.6602215266320854 2523251.7220785524696112)", - "surface": 3100000, - "canton": null, - "numero_insee": "76425" - } - }, - { - "pk": 23145, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MESANGUEVILLE", - "center": "POINT (544392.0571845071390271 2506936.3299064058810472)", - "surface": 10690000, - "canton": null, - "numero_insee": "76426" - } - }, - { - "pk": 23792, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MESNIERES-EN-BRAY", - "center": "POINT (531489.9264003606513143 2530242.8562326789833605)", - "surface": 15020000, - "canton": null, - "numero_insee": "76427" - } - }, - { - "pk": 29823, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE MESNIL-DURDENT", - "center": "POINT (487109.2714906824985519 2536777.7322901654988527)", - "surface": 1320000, - "canton": null, - "numero_insee": "76428" - } - }, - { - "pk": 30653, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE MESNIL-ESNARD", - "center": "POINT (513403.3397794904885814 2491268.4492023759521544)", - "surface": 5220000, - "canton": null, - "numero_insee": "76429" - } - }, - { - "pk": 31451, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MESNIL-FOLLEMPRISE", - "center": "POINT (525287.4959665026981384 2530091.0997339333407581)", - "surface": 7540000, - "canton": null, - "numero_insee": "76430" - } - }, - { - "pk": 25555, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE MESNIL-LIEUBRAY", - "center": "POINT (539827.9551263675093651 2502295.3993144454434514)", - "surface": 5840000, - "canton": null, - "numero_insee": "76431" - } - }, - { - "pk": 3456, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MESNIL-MAUGER", - "center": "POINT (541085.1029157681623474 2519516.4103515106253326)", - "surface": 8380000, - "canton": null, - "numero_insee": "76432" - } - }, - { - "pk": 29075, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MESNIL-PANNEVILLE", - "center": "POINT (494726.7518988772644661 2511125.5367478961125016)", - "surface": 11950000, - "canton": null, - "numero_insee": "76433" - } - }, - { - "pk": 13324, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MESNIL-RAOUL", - "center": "POINT (522825.2581786476075649 2489345.6496705841273069)", - "surface": 6660000, - "canton": null, - "numero_insee": "76434" - } - }, - { - "pk": 13899, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE MESNIL-REAUME", - "center": "POINT (535601.0874726440524682 2553190.5723804668523371)", - "surface": 5500000, - "canton": null, - "numero_insee": "76435" - } - }, - { - "pk": 7622, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE MESNIL-SOUS-JUMIEGES", - "center": "POINT (492386.6217109733843245 2491694.0760078518651426)", - "surface": 6900000, - "canton": null, - "numero_insee": "76436" - } - }, - { - "pk": 11060, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MEULERS", - "center": "POINT (519711.2756285685463808 2538849.8638564129360020)", - "surface": 6760000, - "canton": null, - "numero_insee": "76437" - } - }, - { - "pk": 33718, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MILLEBOSC", - "center": "POINT (539695.6551319760037586 2554125.2493530446663499)", - "surface": 7950000, - "canton": null, - "numero_insee": "76438" - } - }, - { - "pk": 9514, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MIRVILLE", - "center": "POINT (462786.2222364832414314 2513662.3035669326782227)", - "surface": 5460000, - "canton": null, - "numero_insee": "76439" - } - }, - { - "pk": 29230, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MOLAGNIES", - "center": "POINT (555632.4444964100839570 2502927.6905404906719923)", - "surface": 4660000, - "canton": null, - "numero_insee": "76440" - } - }, - { - "pk": 19143, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONCHAUX-SORENG", - "center": "POINT (545030.9154481039149687 2550267.5236825849860907)", - "surface": 10260000, - "canton": null, - "numero_insee": "76441" - } - }, - { - "pk": 12125, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONCHY-SUR-EU", - "center": "POINT (536982.6025019994704053 2555503.4211922679096460)", - "surface": 9100000, - "canton": null, - "numero_insee": "76442" - } - }, - { - "pk": 30343, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONT-CAUVAIRE", - "center": "POINT (511455.7929110635304824 2508863.1630137837491930)", - "surface": 9110000, - "canton": null, - "numero_insee": "76443" - } - }, - { - "pk": 6354, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONT-DE-L'IF", - "center": "POINT (490225.9712758570094593 2510888.0306452834047377)", - "surface": 3470000, - "canton": null, - "numero_insee": "76444" - } - }, - { - "pk": 24964, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONTEROLIER", - "center": "POINT (528320.7850976139307022 2514306.8584870039485395)", - "surface": 11830000, - "canton": null, - "numero_insee": "76445" - } - }, - { - "pk": 36691, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONTIGNY", - "center": "POINT (502753.3275048046489246 2496483.1680461731739342)", - "surface": 7910000, - "canton": null, - "numero_insee": "76446" - } - }, - { - "pk": 22254, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONTIVILLIERS", - "center": "POINT (444527.5924499405082315 2507307.4211976984515786)", - "surface": 19050000, - "canton": null, - "numero_insee": "76447" - } - }, - { - "pk": 36472, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONTMAIN", - "center": "POINT (520712.4153022263199091 2490728.9296306809410453)", - "surface": 6080000, - "canton": null, - "numero_insee": "76448" - } - }, - { - "pk": 29057, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONTREUIL-EN-CAUX", - "center": "POINT (514651.8165002372697927 2521597.4875392364338040)", - "surface": 9430000, - "canton": null, - "numero_insee": "76449" - } - }, - { - "pk": 20211, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONTROTY", - "center": "POINT (550913.3941852641291916 2492882.0392862651497126)", - "surface": 10830000, - "canton": null, - "numero_insee": "76450" - } - }, - { - "pk": 3678, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONT-SAINT-AIGNAN", - "center": "POINT (508950.1045950737898238 2497335.2058369279839098)", - "surface": 7930000, - "canton": null, - "numero_insee": "76451" - } - }, - { - "pk": 32145, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MONTVILLE", - "center": "POINT (509076.9619167833006941 2506141.7105723349377513)", - "surface": 10790000, - "canton": null, - "numero_insee": "76452" - } - }, - { - "pk": 31840, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MORGNY-LA-POMMERAYE", - "center": "POINT (521310.2949639101861976 2503041.5735876192338765)", - "surface": 6580000, - "canton": null, - "numero_insee": "76453" - } - }, - { - "pk": 35698, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MORTEMER", - "center": "POINT (542917.6387105924077332 2527736.6355384830385447)", - "surface": 8880000, - "canton": null, - "numero_insee": "76454" - } - }, - { - "pk": 8143, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MORVILLE-SUR-ANDELLE", - "center": "POINT (534355.8110045277280733 2498547.4543126681819558)", - "surface": 5170000, - "canton": null, - "numero_insee": "76455" - } - }, - { - "pk": 27774, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MOTTEVILLE", - "center": "POINT (492786.6601243304321542 2515812.2866836879402399)", - "surface": 8670000, - "canton": null, - "numero_insee": "76456" - } - }, - { - "pk": 33771, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MUCHEDENT", - "center": "POINT (517079.0116544545744546 2530523.0286071398295462)", - "surface": 7180000, - "canton": null, - "numero_insee": "76458" - } - }, - { - "pk": 4003, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NESLE-HODENG", - "center": "POINT (541153.4268820994766429 2523319.2723331088200212)", - "surface": 15740000, - "canton": null, - "numero_insee": "76459" - } - }, - { - "pk": 35178, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NESLE-NORMANDEUSE", - "center": "POINT (551877.0084105714922771 2545221.7298033591359854)", - "surface": 9070000, - "canton": null, - "numero_insee": "76460" - } - }, - { - "pk": 33345, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NEUFBOSC", - "center": "POINT (529398.8592707331990823 2517017.4859021403826773)", - "surface": 5180000, - "canton": null, - "numero_insee": "76461" - } - }, - { - "pk": 18330, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NEUFCHATEL-EN-BRAY", - "center": "POINT (535716.3384162414586172 2527376.3694750345312059)", - "surface": 10940000, - "canton": null, - "numero_insee": "76462" - } - }, - { - "pk": 21208, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NEUF-MARCHE", - "center": "POINT (553223.8698992041172460 2491800.6528817312791944)", - "surface": 17930000, - "canton": null, - "numero_insee": "76463" - } - }, - { - "pk": 36600, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA NEUVILLE-CHANT-D'OISEL", - "center": "POINT (520950.0303597419988364 2486228.0743022500537336)", - "surface": 22150000, - "canton": null, - "numero_insee": "76464" - } - }, - { - "pk": 20700, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NEUVILLE-FERRIERES", - "center": "POINT (536243.3092548917047679 2524178.8463814361020923)", - "surface": 13020000, - "canton": null, - "numero_insee": "76465" - } - }, - { - "pk": 24805, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NEVILLE", - "center": "POINT (482800.3848744171555154 2537542.4432969582267106)", - "surface": 9160000, - "canton": null, - "numero_insee": "76467" - } - }, - { - "pk": 9141, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOINTOT", - "center": "POINT (465094.9269259375287220 2512780.8769071619026363)", - "surface": 6010000, - "canton": null, - "numero_insee": "76468" - } - }, - { - "pk": 17524, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOLLEVAL", - "center": "POINT (537946.9463400710374117 2499878.2175408415496349)", - "surface": 9950000, - "canton": null, - "numero_insee": "76469" - } - }, - { - "pk": 29121, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NORMANVILLE", - "center": "POINT (473615.8069025923614390 2522957.6174183688126504)", - "surface": 9260000, - "canton": null, - "numero_insee": "76470" - } - }, - { - "pk": 34734, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NORVILLE", - "center": "POINT (477111.7412584227276966 2499572.2888257293961942)", - "surface": 12020000, - "canton": null, - "numero_insee": "76471" - } - }, - { - "pk": 24346, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOTRE-DAME-D'ALIERMONT", - "center": "POINT (525111.5801679578144103 2539195.0248741554096341)", - "surface": 13220000, - "canton": null, - "numero_insee": "76472" - } - }, - { - "pk": 30525, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOTRE-DAME-DE-BLIQUETUIT", - "center": "POINT (485105.3636783796828240 2500939.4191465438343585)", - "surface": 9990000, - "canton": null, - "numero_insee": "76473" - } - }, - { - "pk": 8472, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOTRE-DAME-DE-BONDEVILLE", - "center": "POINT (506929.8555869347765110 2499619.8301983019337058)", - "surface": 6350000, - "canton": null, - "numero_insee": "76474" - } - }, - { - "pk": 34278, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "FRANQUEVILLE-SAINT-PIERRE", - "center": "POINT (516114.0103635894483887 2490190.3229654845781624)", - "surface": 8600000, - "canton": null, - "numero_insee": "76475" - } - }, - { - "pk": 13909, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOTRE-DAME-DE-GRAVENCHON", - "center": "POINT (472100.6841678253840655 2500531.3591887219808996)", - "surface": 18720000, - "canton": null, - "numero_insee": "76476" - } - }, - { - "pk": 6243, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOTRE-DAME-DU-BEC", - "center": "POINT (446783.3461027646553703 2512829.4450495610944927)", - "surface": 4030000, - "canton": null, - "numero_insee": "76477" - } - }, - { - "pk": 7869, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NOTRE-DAME-DU-PARC", - "center": "POINT (512790.9030053087044507 2528786.3202611505985260)", - "surface": 2990000, - "canton": null, - "numero_insee": "76478" - } - }, - { - "pk": 12650, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "NULLEMONT", - "center": "POINT (550198.0943222418427467 2530599.0963875739835203)", - "surface": 5770000, - "canton": null, - "numero_insee": "76479" - } - }, - { - "pk": 36689, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OCQUEVILLE", - "center": "POINT (480922.6355030079139397 2534725.2072441508062184)", - "surface": 9040000, - "canton": null, - "numero_insee": "76480" - } - }, - { - "pk": 6105, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OCTEVILLE-SUR-MER", - "center": "POINT (439309.8653083391254768 2509065.4026407916098833)", - "surface": 20920000, - "canton": null, - "numero_insee": "76481" - } - }, - { - "pk": 12098, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OFFRANVILLE", - "center": "POINT (506274.3544227594975382 2542340.1536442604847252)", - "surface": 17310000, - "canton": null, - "numero_insee": "76482" - } - }, - { - "pk": 13391, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OHERVILLE", - "center": "POINT (481088.2642292885575444 2526821.8734205528162420)", - "surface": 4480000, - "canton": null, - "numero_insee": "76483" - } - }, - { - "pk": 28024, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OISSEL", - "center": "POINT (508160.3111703565809876 2484020.2802556995302439)", - "surface": 22220000, - "canton": null, - "numero_insee": "76484" - } - }, - { - "pk": 36632, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OMONVILLE", - "center": "POINT (507149.6647017867653631 2533342.1244121412746608)", - "surface": 2870000, - "canton": null, - "numero_insee": "76485" - } - }, - { - "pk": 21943, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ORIVAL", - "center": "POINT (502482.8839647055719979 2480871.0936075462959707)", - "surface": 9530000, - "canton": null, - "numero_insee": "76486" - } - }, - { - "pk": 28944, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OSMOY-SAINT-VALERY", - "center": "POINT (525456.7546796565875411 2533794.7101247790269554)", - "surface": 16240000, - "canton": null, - "numero_insee": "76487" - } - }, - { - "pk": 34127, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OUAINVILLE", - "center": "POINT (473928.9217054111650214 2533466.4935306464321911)", - "surface": 7150000, - "canton": null, - "numero_insee": "76488" - } - }, - { - "pk": 28196, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OUDALLE", - "center": "POINT (450887.3224070306168869 2500555.8119512917473912)", - "surface": 10500000, - "canton": null, - "numero_insee": "76489" - } - }, - { - "pk": 37403, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OURVILLE-EN-CAUX", - "center": "POINT (474578.1802975013270043 2527568.3586893612518907)", - "surface": 10300000, - "canton": null, - "numero_insee": "76490" - } - }, - { - "pk": 30995, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OUVILLE-L'ABBAYE", - "center": "POINT (493728.1880590650835074 2522924.4036141359247267)", - "surface": 7440000, - "canton": null, - "numero_insee": "76491" - } - }, - { - "pk": 33339, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "OUVILLE-LA-RIVIERE", - "center": "POINT (502469.0622757700621150 2542708.7462659403681755)", - "surface": 6570000, - "canton": null, - "numero_insee": "76492" - } - }, - { - "pk": 13938, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PALUEL", - "center": "POINT (477077.4981092276866548 2539896.3845735052600503)", - "surface": 11070000, - "canton": null, - "numero_insee": "76493" - } - }, - { - "pk": 16675, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PARC-D'ANXTOT", - "center": "POINT (458901.5052717945072800 2511528.8535599242895842)", - "surface": 5850000, - "canton": null, - "numero_insee": "76494" - } - }, - { - "pk": 16384, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PAVILLY", - "center": "POINT (499342.5537377270520665 2509562.9131572241894901)", - "surface": 14320000, - "canton": null, - "numero_insee": "76495" - } - }, - { - "pk": 9643, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PENLY", - "center": "POINT (520586.8045341235701926 2553865.8985505872406065)", - "surface": 4710000, - "canton": null, - "numero_insee": "76496" - } - }, - { - "pk": 26156, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PETIT-COURONNE", - "center": "POINT (505327.1091492362320423 2487799.1155517930164933)", - "surface": 12790000, - "canton": null, - "numero_insee": "76497" - } - }, - { - "pk": 15637, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE PETIT-QUEVILLY", - "center": "POINT (507289.1134705451549962 2492518.3892419156618416)", - "surface": 4360000, - "canton": null, - "numero_insee": "76498" - } - }, - { - "pk": 31373, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PETIVILLE", - "center": "POINT (472734.1947419813950546 2496534.1221576458774507)", - "surface": 16830000, - "canton": null, - "numero_insee": "76499" - } - }, - { - "pk": 34024, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PIERRECOURT", - "center": "POINT (549688.4125503302784637 2543702.5719132223166525)", - "surface": 9640000, - "canton": null, - "numero_insee": "76500" - } - }, - { - "pk": 27585, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PIERREFIQUES", - "center": "POINT (447810.3025720052537508 2521743.3429881734773517)", - "surface": 2330000, - "canton": null, - "numero_insee": "76501" - } - }, - { - "pk": 7276, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PIERREVAL", - "center": "POINT (521492.0693883700296283 2505244.4455578341148794)", - "surface": 3960000, - "canton": null, - "numero_insee": "76502" - } - }, - { - "pk": 28479, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PISSY-POVILLE", - "center": "POINT (503184.5528260681312531 2504791.9010826842859387)", - "surface": 11340000, - "canton": null, - "numero_insee": "76503" - } - }, - { - "pk": 27810, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PLEINE-SEVE", - "center": "POINT (485806.9319383900729008 2536967.0401213299483061)", - "surface": 4060000, - "canton": null, - "numero_insee": "76504" - } - }, - { - "pk": 24741, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "POMMEREUX", - "center": "POINT (548846.8789139523869380 2512677.0188207738101482)", - "surface": 5320000, - "canton": null, - "numero_insee": "76505" - } - }, - { - "pk": 36412, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "POMMEREVAL", - "center": "POINT (525514.2797275852644816 2526891.0776811689138412)", - "surface": 7650000, - "canton": null, - "numero_insee": "76506" - } - }, - { - "pk": 16852, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PONTS-ET-MARAIS", - "center": "POINT (536839.9886618348537013 2560605.1551081133075058)", - "surface": 5910000, - "canton": null, - "numero_insee": "76507" - } - }, - { - "pk": 4123, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA POTERIE-CAP-D'ANTIFER", - "center": "POINT (444004.1326387420995161 2522212.1751600001007318)", - "surface": 5910000, - "canton": null, - "numero_insee": "76508" - } - }, - { - "pk": 31612, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PREAUX", - "center": "POINT (518638.8085218747728504 2499417.0937050003558397)", - "surface": 19150000, - "canton": null, - "numero_insee": "76509" - } - }, - { - "pk": 25362, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PRETOT-VICQUEMARE", - "center": "POINT (492490.9831601802725345 2527316.7687802133150399)", - "surface": 4770000, - "canton": null, - "numero_insee": "76510" - } - }, - { - "pk": 33227, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PREUSEVILLE", - "center": "POINT (540089.3103932591620833 2542922.0266085346229374)", - "surface": 9160000, - "canton": null, - "numero_insee": "76511" - } - }, - { - "pk": 8877, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "PUISENVAL", - "center": "POINT (536988.5455632235389203 2542796.0981517657637596)", - "surface": 4900000, - "canton": null, - "numero_insee": "76512" - } - }, - { - "pk": 7752, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "QUEVILLON", - "center": "POINT (499991.6968861325294711 2491657.2066974071785808)", - "surface": 10810000, - "canton": null, - "numero_insee": "76513" - } - }, - { - "pk": 28477, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "QUEVREVILLE-LA-POTERIE", - "center": "POINT (516560.0520233028801158 2484690.5674211089499295)", - "surface": 4720000, - "canton": null, - "numero_insee": "76514" - } - }, - { - "pk": 24665, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "QUIBERVILLE", - "center": "POINT (498043.5078468187130056 2545473.5994636765681207)", - "surface": 3450000, - "canton": null, - "numero_insee": "76515" - } - }, - { - "pk": 9367, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "QUIEVRECOURT", - "center": "POINT (533728.6310428553260863 2525758.8334297058172524)", - "surface": 4020000, - "canton": null, - "numero_insee": "76516" - } - }, - { - "pk": 23568, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "QUINCAMPOIX", - "center": "POINT (516005.7207082465174608 2503197.5239930753596127)", - "surface": 20620000, - "canton": null, - "numero_insee": "76517" - } - }, - { - "pk": 8883, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RAFFETOT", - "center": "POINT (468694.3908616228145547 2513110.8826613090932369)", - "surface": 6950000, - "canton": null, - "numero_insee": "76518" - } - }, - { - "pk": 33826, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RAINFREVILLE", - "center": "POINT (498140.7870418156962842 2533767.5217924253083766)", - "surface": 2560000, - "canton": null, - "numero_insee": "76519" - } - }, - { - "pk": 7500, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "REALCAMP", - "center": "POINT (548413.6447011863347143 2540590.1082716579549015)", - "surface": 11560000, - "canton": null, - "numero_insee": "76520" - } - }, - { - "pk": 12557, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "REBETS", - "center": "POINT (531524.2323846542276442 2502126.0747036561369896)", - "surface": 3730000, - "canton": null, - "numero_insee": "76521" - } - }, - { - "pk": 6353, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA REMUEE", - "center": "POINT (460357.7725194537197240 2504836.7930537811480463)", - "surface": 7080000, - "canton": null, - "numero_insee": "76522" - } - }, - { - "pk": 12801, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RETONVAL", - "center": "POINT (546456.8849251681240276 2535270.6434904355555773)", - "surface": 5640000, - "canton": null, - "numero_insee": "76523" - } - }, - { - "pk": 7682, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "REUVILLE", - "center": "POINT (493579.9302002094336785 2528726.6510855183005333)", - "surface": 4430000, - "canton": null, - "numero_insee": "76524" - } - }, - { - "pk": 11622, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RICARVILLE", - "center": "POINT (474962.1291265003383160 2517465.4545818231999874)", - "surface": 4170000, - "canton": null, - "numero_insee": "76525" - } - }, - { - "pk": 32002, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RICARVILLE-DU-VAL", - "center": "POINT (522953.7786003545625135 2533973.9752050475217402)", - "surface": 5710000, - "canton": null, - "numero_insee": "76526" - } - }, - { - "pk": 34058, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RICHEMONT", - "center": "POINT (550061.2712030387483537 2535000.5663677407428622)", - "surface": 10740000, - "canton": null, - "numero_insee": "76527" - } - }, - { - "pk": 35949, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RIEUX", - "center": "POINT (545652.9393200236372650 2547671.2070132354274392)", - "surface": 7030000, - "canton": null, - "numero_insee": "76528" - } - }, - { - "pk": 10075, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RIVILLE", - "center": "POINT (471985.0961497965035960 2526546.2624877956695855)", - "surface": 7500000, - "canton": null, - "numero_insee": "76529" - } - }, - { - "pk": 6789, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROBERTOT", - "center": "POINT (481500.0981221883557737 2525424.4506757305935025)", - "surface": 2440000, - "canton": null, - "numero_insee": "76530" - } - }, - { - "pk": 33920, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROCQUEFORT", - "center": "POINT (481944.3097374148783274 2520124.9434219533577561)", - "surface": 5390000, - "canton": null, - "numero_insee": "76531" - } - }, - { - "pk": 27766, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROCQUEMONT", - "center": "POINT (524731.3480896892724559 2512776.0311215482652187)", - "surface": 12380000, - "canton": null, - "numero_insee": "76532" - } - }, - { - "pk": 33863, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROGERVILLE", - "center": "POINT (449285.6109416179824620 2500642.6247786427848041)", - "surface": 10270000, - "canton": null, - "numero_insee": "76533" - } - }, - { - "pk": 8783, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROLLEVILLE", - "center": "POINT (446097.0302719330647960 2511122.7301876340061426)", - "surface": 7050000, - "canton": null, - "numero_insee": "76534" - } - }, - { - "pk": 34362, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RONCHEROLLES-EN-BRAY", - "center": "POINT (538534.6335497804684564 2513391.4247350245714188)", - "surface": 14540000, - "canton": null, - "numero_insee": "76535" - } - }, - { - "pk": 17875, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RONCHEROLLES-SUR-LE-VIVIER", - "center": "POINT (516158.2543485292117111 2496894.8843434308655560)", - "surface": 5340000, - "canton": null, - "numero_insee": "76536" - } - }, - { - "pk": 26511, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROSAY", - "center": "POINT (521847.3246104111894965 2522658.0057308748364449)", - "surface": 10480000, - "canton": null, - "numero_insee": "76538" - } - }, - { - "pk": 18381, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROUEN", - "center": "POINT (509674.6340278714196756 2494439.4243294522166252)", - "surface": 21420000, - "canton": null, - "numero_insee": "76540" - } - }, - { - "pk": 35236, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROUMARE", - "center": "POINT (500806.5273856202838942 2501970.4001305247657001)", - "surface": 10030000, - "canton": null, - "numero_insee": "76541" - } - }, - { - "pk": 35450, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROUTES", - "center": "POINT (485288.8302061642752960 2527056.8505160724744201)", - "surface": 4400000, - "canton": null, - "numero_insee": "76542" - } - }, - { - "pk": 20013, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROUVILLE", - "center": "POINT (466970.2584450447466224 2515898.3026153631508350)", - "surface": 9690000, - "canton": null, - "numero_insee": "76543" - } - }, - { - "pk": 25187, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROUVRAY-CATILLON", - "center": "POINT (537770.0948492513271049 2509082.4171924823895097)", - "surface": 12380000, - "canton": null, - "numero_insee": "76544" - } - }, - { - "pk": 31557, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROUXMESNIL-BOUTEILLES", - "center": "POINT (510950.9771319140563719 2545480.8702405150979757)", - "surface": 5740000, - "canton": null, - "numero_insee": "76545" - } - }, - { - "pk": 26706, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "ROYVILLE", - "center": "POINT (500155.1414552769856527 2532183.3129830686375499)", - "surface": 4460000, - "canton": null, - "numero_insee": "76546" - } - }, - { - "pk": 35041, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA RUE-SAINT-PIERRE", - "center": "POINT (521567.1213440180872567 2508246.9160176170989871)", - "surface": 7710000, - "canton": null, - "numero_insee": "76547" - } - }, - { - "pk": 8389, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "RY", - "center": "POINT (527357.7833233961137012 2497788.6741735576651990)", - "surface": 5790000, - "canton": null, - "numero_insee": "76548" - } - }, - { - "pk": 32635, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAANE-SAINT-JUST", - "center": "POINT (497973.9403260692488402 2529763.7554396204650402)", - "surface": 6780000, - "canton": null, - "numero_insee": "76549" - } - }, - { - "pk": 7753, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAHURS", - "center": "POINT (499035.2152522266842425 2486345.9193061487749219)", - "surface": 11110000, - "canton": null, - "numero_insee": "76550" - } - }, - { - "pk": 12137, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINNEVILLE", - "center": "POINT (451925.8456861180020496 2508069.0373665932565928)", - "surface": 7050000, - "canton": null, - "numero_insee": "76551" - } - }, - { - "pk": 11040, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-ADRESSE", - "center": "POINT (436251.9780821854947135 2503736.8720464194193482)", - "surface": 2300000, - "canton": null, - "numero_insee": "76552" - } - }, - { - "pk": 31150, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-AGATHE-D'ALIERMONT", - "center": "POINT (528032.2652310683624819 2536918.0078921793028712)", - "surface": 7930000, - "canton": null, - "numero_insee": "76553" - } - }, - { - "pk": 31838, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AIGNAN-SUR-RY", - "center": "POINT (528237.4313614537240937 2500297.5591544704511762)", - "surface": 7840000, - "canton": null, - "numero_insee": "76554" - } - }, - { - "pk": 32924, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-ANDRE-SUR-CAILLY", - "center": "POINT (519181.6459454850992188 2506325.8801977355033159)", - "surface": 12430000, - "canton": null, - "numero_insee": "76555" - } - }, - { - "pk": 8362, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-ANTOINE-LA-FORET", - "center": "POINT (465549.8495243322686292 2506180.5968023892492056)", - "surface": 6460000, - "canton": null, - "numero_insee": "76556" - } - }, - { - "pk": 4463, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-ARNOULT", - "center": "POINT (479763.4298784598940983 2505597.9972973717376590)", - "surface": 13870000, - "canton": null, - "numero_insee": "76557" - } - }, - { - "pk": 30567, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-CELLOVILLE", - "center": "POINT (514438.8790768817998469 2487074.4253884912468493)", - "surface": 6760000, - "canton": null, - "numero_insee": "76558" - } - }, - { - "pk": 12817, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-DE-CRETOT", - "center": "POINT (476427.6025017066858709 2509672.8489676723256707)", - "surface": 4760000, - "canton": null, - "numero_insee": "76559" - } - }, - { - "pk": 29498, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-EPINAY", - "center": "POINT (517701.5747182248160243 2491804.5458277035504580)", - "surface": 9860000, - "canton": null, - "numero_insee": "76560" - } - }, - { - "pk": 11994, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-LES-ELBEUF", - "center": "POINT (503997.8793674056068994 2479182.6085455627180636)", - "surface": 5820000, - "canton": null, - "numero_insee": "76561" - } - }, - { - "pk": 37577, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-LE-CAUF", - "center": "POINT (516484.6244116829475388 2541824.7607855419628322)", - "surface": 10000000, - "canton": null, - "numero_insee": "76562" - } - }, - { - "pk": 35968, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-ROUTOT", - "center": "POINT (453755.8064779299311340 2504582.0218815952539444)", - "surface": 6820000, - "canton": null, - "numero_insee": "76563" - } - }, - { - "pk": 30860, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-SUR-MER", - "center": "POINT (494849.3412730332347564 2544546.5342836650088429)", - "surface": 6380000, - "canton": null, - "numero_insee": "76564" - } - }, - { - "pk": 35216, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-AUBIN-SUR-SCIE", - "center": "POINT (509365.9688131114817224 2543566.5726623591035604)", - "surface": 7820000, - "canton": null, - "numero_insee": "76565" - } - }, - { - "pk": 28244, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-AUSTREBERTHE", - "center": "POINT (501219.4657702809199691 2512480.2889582877978683)", - "surface": 6090000, - "canton": null, - "numero_insee": "76566" - } - }, - { - "pk": 17165, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-BEUVE-EN-RIVIERE", - "center": "POINT (541603.5918009631568566 2529326.6238872581161559)", - "surface": 11670000, - "canton": null, - "numero_insee": "76567" - } - }, - { - "pk": 5434, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-CLAIR-SUR-LES-MONTS", - "center": "POINT (487608.7768808744149283 2512767.4610470505431294)", - "surface": 4030000, - "canton": null, - "numero_insee": "76568" - } - }, - { - "pk": 14294, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-COLOMBE", - "center": "POINT (486428.8381871139863506 2534370.6632958557456732)", - "surface": 5840000, - "canton": null, - "numero_insee": "76569" - } - }, - { - "pk": 27555, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-CRESPIN", - "center": "POINT (511567.7901969054946676 2531477.7514621494337916)", - "surface": 6460000, - "canton": null, - "numero_insee": "76570" - } - }, - { - "pk": 15536, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-CROIX-SUR-BUCHY", - "center": "POINT (527875.5544117853278294 2507699.1108773960731924)", - "surface": 13840000, - "canton": null, - "numero_insee": "76571" - } - }, - { - "pk": 28771, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-DENIS-D'ACLON", - "center": "POINT (499676.7623153555323370 2541584.8900637477636337)", - "surface": 2380000, - "canton": null, - "numero_insee": "76572" - } - }, - { - "pk": 37738, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-DENIS-LE-THIBOULT", - "center": "POINT (528571.7908024610951543 2496197.7961648679338396)", - "surface": 10390000, - "canton": null, - "numero_insee": "76573" - } - }, - { - "pk": 32542, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-DENIS-SUR-SCIE", - "center": "POINT (509632.4989549756865017 2523556.9222421390004456)", - "surface": 8510000, - "canton": null, - "numero_insee": "76574" - } - }, - { - "pk": 35640, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-ETIENNE-DU-ROUVRAY", - "center": "POINT (509330.1866727488813922 2487732.3518286757171154)", - "surface": 18240000, - "canton": null, - "numero_insee": "76575" - } - }, - { - "pk": 24388, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-EUSTACHE-LA-FORET", - "center": "POINT (463433.7830143182072788 2507964.1761909523047507)", - "surface": 6590000, - "canton": null, - "numero_insee": "76576" - } - }, - { - "pk": 25499, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-FOY", - "center": "POINT (513646.4105904008611105 2534196.6535727945156395)", - "surface": 6810000, - "canton": null, - "numero_insee": "76577" - } - }, - { - "pk": 4724, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-GENEVIEVE", - "center": "POINT (533891.2634895658120513 2518255.6698161186650395)", - "surface": 14390000, - "canton": null, - "numero_insee": "76578" - } - }, - { - "pk": 32272, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-GEORGES-SUR-FONTAINE", - "center": "POINT (515881.5097755815368146 2506098.2787419329397380)", - "surface": 9190000, - "canton": null, - "numero_insee": "76580" - } - }, - { - "pk": 31204, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-GERMAIN-DES-ESSOURTS", - "center": "POINT (526001.2003604688216001 2504481.5199924232438207)", - "surface": 9320000, - "canton": null, - "numero_insee": "76581" - } - }, - { - "pk": 16623, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-GERMAIN-D'ETABLES", - "center": "POINT (516713.0485525979893282 2538424.6632864763960242)", - "surface": 7140000, - "canton": null, - "numero_insee": "76582" - } - }, - { - "pk": 10203, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-GERMAIN-SOUS-CAILLY", - "center": "POINT (518353.7147650102851912 2509621.0122825913131237)", - "surface": 4060000, - "canton": null, - "numero_insee": "76583" - } - }, - { - "pk": 21639, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-GERMAIN-SUR-EAULNE", - "center": "POINT (540395.4452305717859417 2530217.0783349927514791)", - "surface": 8790000, - "canton": null, - "numero_insee": "76584" - } - }, - { - "pk": 29945, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-GILLES-DE-CRETOT", - "center": "POINT (478041.7516054501757026 2508085.2542642252519727)", - "surface": 5990000, - "canton": null, - "numero_insee": "76585" - } - }, - { - "pk": 25511, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-GILLES-DE-LA-NEUVILLE", - "center": "POINT (457612.3941997030051425 2510117.3244396275840700)", - "surface": 7150000, - "canton": null, - "numero_insee": "76586" - } - }, - { - "pk": 8387, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-HELENE-BONDEVILLE", - "center": "POINT (464634.8109052724903449 2532088.7021508924663067)", - "surface": 6960000, - "canton": null, - "numero_insee": "76587" - } - }, - { - "pk": 37573, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-HELLIER", - "center": "POINT (517704.3194567648461089 2527526.4438339285552502)", - "surface": 14260000, - "canton": null, - "numero_insee": "76588" - } - }, - { - "pk": 8111, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-HONORE", - "center": "POINT (514861.1968198299291544 2532505.7557228766381741)", - "surface": 3070000, - "canton": null, - "numero_insee": "76589" - } - }, - { - "pk": 33776, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-JACQUES-D'ALIERMONT", - "center": "POINT (521806.5330833359039389 2539567.7265566689893603)", - "surface": 7870000, - "canton": null, - "numero_insee": "76590" - } - }, - { - "pk": 29009, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-JACQUES-SUR-DARNETAL", - "center": "POINT (518076.8028000711346976 2494809.5483216894790530)", - "surface": 16730000, - "canton": null, - "numero_insee": "76591" - } - }, - { - "pk": 9515, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-JEAN-DE-FOLLEVILLE", - "center": "POINT (466782.0080372485681437 2502388.4580349647440016)", - "surface": 13780000, - "canton": null, - "numero_insee": "76592" - } - }, - { - "pk": 29947, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-JEAN-DE-LA-NEUVILLE", - "center": "POINT (461813.8520458298735321 2510252.1717853015288711)", - "surface": 8090000, - "canton": null, - "numero_insee": "76593" - } - }, - { - "pk": 30738, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-JEAN-DU-CARDONNAY", - "center": "POINT (503816.4970973175950348 2500994.8060333225876093)", - "surface": 7500000, - "canton": null, - "numero_insee": "76594" - } - }, - { - "pk": 25794, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-JOUIN-BRUNEVAL", - "center": "POINT (443839.5902640295680612 2517908.2126509039662778)", - "surface": 19910000, - "canton": null, - "numero_insee": "76595" - } - }, - { - "pk": 33610, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-LAURENT-DE-BREVEDENT", - "center": "POINT (450143.0703047886490822 2505852.9347090809606016)", - "surface": 7850000, - "canton": null, - "numero_insee": "76596" - } - }, - { - "pk": 36612, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-LAURENT-EN-CAUX", - "center": "POINT (495385.0375533623155206 2528241.3479869733564556)", - "surface": 6480000, - "canton": null, - "numero_insee": "76597" - } - }, - { - "pk": 28405, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-LEGER-AUX-BOIS", - "center": "POINT (547741.6890825555892661 2537182.4947101837024093)", - "surface": 11230000, - "canton": null, - "numero_insee": "76598" - } - }, - { - "pk": 10077, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-LEGER-DU-BOURG-DENIS", - "center": "POINT (514789.1291604840662330 2493081.1127877654507756)", - "surface": 2850000, - "canton": null, - "numero_insee": "76599" - } - }, - { - "pk": 17066, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-LEONARD", - "center": "POINT (455964.1793719361303374 2527914.4659877312369645)", - "surface": 11770000, - "canton": null, - "numero_insee": "76600" - } - }, - { - "pk": 36119, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MACLOU-DE-FOLLEVILLE", - "center": "POINT (509957.6321109682321548 2520557.8190739131532609)", - "surface": 13150000, - "canton": null, - "numero_insee": "76602" - } - }, - { - "pk": 7055, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MACLOU-LA-BRIERE", - "center": "POINT (465047.6840857618954033 2518483.9537560688331723)", - "surface": 4930000, - "canton": null, - "numero_insee": "76603" - } - }, - { - "pk": 11062, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARDS", - "center": "POINT (504574.9249925500480458 2530118.8076213900931180)", - "surface": 6570000, - "canton": null, - "numero_insee": "76604" - } - }, - { - "pk": 9498, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-MARGUERITE-SUR-MER", - "center": "POINT (500637.3611301834462211 2546395.6821902603842318)", - "surface": 5820000, - "canton": null, - "numero_insee": "76605" - } - }, - { - "pk": 31763, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "MORIENNE", - "center": "POINT (555590.8995163030922413 2531844.8666889686137438)", - "surface": 9010000, - "canton": null, - "numero_insee": "76606" - } - }, - { - "pk": 35525, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-MARGUERITE-SUR-FAUVILLE", - "center": "POINT (474133.4940344690694474 2520860.6426370688714087)", - "surface": 3250000, - "canton": null, - "numero_insee": "76607" - } - }, - { - "pk": 24976, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-MARGUERITE-SUR-DUCLAIR", - "center": "POINT (490194.0490113942651078 2502682.7199008674360812)", - "surface": 7300000, - "canton": null, - "numero_insee": "76608" - } - }, - { - "pk": 13501, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-MARIE-AU-BOSC", - "center": "POINT (445917.5579144756775349 2520727.0879785581491888)", - "surface": 3220000, - "canton": null, - "numero_insee": "76609" - } - }, - { - "pk": 6242, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINTE-MARIE-DES-CHAMPS", - "center": "POINT (487487.1259558806195855 2515368.0356595334596932)", - "surface": 4060000, - "canton": null, - "numero_insee": "76610" - } - }, - { - "pk": 38016, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-AUX-ARBRES", - "center": "POINT (495369.7731151625048369 2518035.0807916335761547)", - "surface": 5200000, - "canton": null, - "numero_insee": "76611" - } - }, - { - "pk": 31548, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-AU-BOSC", - "center": "POINT (551842.1511424792697653 2537416.8609957164153457)", - "surface": 7220000, - "canton": null, - "numero_insee": "76612" - } - }, - { - "pk": 28892, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-AUX-BUNEAUX", - "center": "POINT (471288.5805948836496100 2538147.3886841065250337)", - "surface": 8280000, - "canton": null, - "numero_insee": "76613" - } - }, - { - "pk": 24426, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-DE-BOSCHERVILLE", - "center": "POINT (500264.4173435042030178 2494961.5399508653208613)", - "surface": 12540000, - "canton": null, - "numero_insee": "76614" - } - }, - { - "pk": 34322, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-DU-MANOIR", - "center": "POINT (447736.7900213032844476 2506433.4024815363809466)", - "surface": 5180000, - "canton": null, - "numero_insee": "76616" - } - }, - { - "pk": 29988, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-DU-VIVIER", - "center": "POINT (514251.3722390702459961 2497579.4461801555007696)", - "surface": 5040000, - "canton": null, - "numero_insee": "76617" - } - }, - { - "pk": 24755, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-EN-CAMPAGNE", - "center": "POINT (519699.6788003474939615 2552257.5867677219212055)", - "surface": 7010000, - "canton": null, - "numero_insee": "76618" - } - }, - { - "pk": 21337, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-LE-GAILLARD", - "center": "POINT (530295.0606312397867441 2553546.5594839551486075)", - "surface": 17720000, - "canton": null, - "numero_insee": "76619" - } - }, - { - "pk": 31352, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-L'HORTIER", - "center": "POINT (532608.8595198825933039 2528050.8727472987957299)", - "surface": 5850000, - "canton": null, - "numero_insee": "76620" - } - }, - { - "pk": 20654, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MARTIN-OSMONVILLE", - "center": "POINT (525099.8839249480515718 2516581.4147306317463517)", - "surface": 21340000, - "canton": null, - "numero_insee": "76621" - } - }, - { - "pk": 29074, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MAURICE-D'ETELAN", - "center": "POINT (475732.5407720017828979 2496959.2325330371968448)", - "surface": 14120000, - "canton": null, - "numero_insee": "76622" - } - }, - { - "pk": 33911, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-MICHEL-D'HALESCOURT", - "center": "POINT (550748.7413634611293674 2512592.8431230853311718)", - "surface": 4950000, - "canton": null, - "numero_insee": "76623" - } - }, - { - "pk": 21993, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-NICOLAS-D'ALIERMONT", - "center": "POINT (520881.9002400227473117 2542461.7282130224630237)", - "surface": 15570000, - "canton": null, - "numero_insee": "76624" - } - }, - { - "pk": 25510, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-NICOLAS-DE-BLIQUETUIT", - "center": "POINT (483092.6368221671436913 2502323.5820471476763487)", - "surface": 9030000, - "canton": null, - "numero_insee": "76625" - } - }, - { - "pk": 6594, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-NICOLAS-DE-LA-HAIE", - "center": "POINT (475537.8985511825303547 2508364.6731193116866052)", - "surface": 3190000, - "canton": null, - "numero_insee": "76626" - } - }, - { - "pk": 29076, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-NICOLAS-DE-LA-TAILLE", - "center": "POINT (464671.7349178876029328 2503471.6560098771005869)", - "surface": 9300000, - "canton": null, - "numero_insee": "76627" - } - }, - { - "pk": 32006, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-OUEN-DU-BREUIL", - "center": "POINT (504994.8969150654738769 2515713.6299164881929755)", - "surface": 6240000, - "canton": null, - "numero_insee": "76628" - } - }, - { - "pk": 8762, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-OUEN-SOUS-BAILLY", - "center": "POINT (525458.4327545552514493 2545601.6658969391137362)", - "surface": 5350000, - "canton": null, - "numero_insee": "76630" - } - }, - { - "pk": 34751, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-BENOUVILLE", - "center": "POINT (501593.3058794869575649 2527692.5839458447881043)", - "surface": 8440000, - "canton": null, - "numero_insee": "76632" - } - }, - { - "pk": 8493, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-DE-MANNEVILLE", - "center": "POINT (498611.7051958985975944 2489144.1650858335196972)", - "surface": 10260000, - "canton": null, - "numero_insee": "76634" - } - }, - { - "pk": 8998, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-DES-JONQUIERES", - "center": "POINT (536216.5073926456971094 2539387.6620489181950688)", - "surface": 8440000, - "canton": null, - "numero_insee": "76635" - } - }, - { - "pk": 9656, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-DE-VARENGEVILLE", - "center": "POINT (497509.7012713975273073 2501342.6265356815420091)", - "surface": 13070000, - "canton": null, - "numero_insee": "76636" - } - }, - { - "pk": 5132, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-EN-PORT", - "center": "POINT (467604.0598575304029509 2536015.6145690768025815)", - "surface": 3970000, - "canton": null, - "numero_insee": "76637" - } - }, - { - "pk": 14151, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-EN-VAL", - "center": "POINT (535565.2050824315520003 2557492.7476108693517745)", - "surface": 7640000, - "canton": null, - "numero_insee": "76638" - } - }, - { - "pk": 9890, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-LAVIS", - "center": "POINT (476142.8616242415737361 2519876.6994771203026175)", - "surface": 4500000, - "canton": null, - "numero_insee": "76639" - } - }, - { - "pk": 34818, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-LES-ELBEUF", - "center": "POINT (506123.2075032728025690 2476298.4322316339239478)", - "surface": 6360000, - "canton": null, - "numero_insee": "76640" - } - }, - { - "pk": 12108, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-LE-VIEUX", - "center": "POINT (495487.0557390411267988 2540049.1934402044862509)", - "surface": 6950000, - "canton": null, - "numero_insee": "76641" - } - }, - { - "pk": 5072, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-PIERRE-LE-VIGER", - "center": "POINT (492805.5983134659472853 2537625.5045691365376115)", - "surface": 5470000, - "canton": null, - "numero_insee": "76642" - } - }, - { - "pk": 8876, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-QUENTIN-AU-BOSC", - "center": "POINT (527231.0084292308893055 2549018.4159439885988832)", - "surface": 3490000, - "canton": null, - "numero_insee": "76643" - } - }, - { - "pk": 3548, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-REMY-BOSCROCOURT", - "center": "POINT (532163.4910344565287232 2557464.3803931172005832)", - "surface": 8420000, - "canton": null, - "numero_insee": "76644" - } - }, - { - "pk": 25487, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-RIQUIER-EN-RIVIERE", - "center": "POINT (544988.4970266354503110 2543363.1509832390584052)", - "surface": 9990000, - "canton": null, - "numero_insee": "76645" - } - }, - { - "pk": 6376, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-RIQUIER-ES-PLAINS", - "center": "POINT (479601.2057417627656832 2537215.7243738756515086)", - "surface": 6250000, - "canton": null, - "numero_insee": "76646" - } - }, - { - "pk": 10427, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-ROMAIN-DE-COLBOSC", - "center": "POINT (457052.6489479632582515 2505209.6774104018695652)", - "surface": 11760000, - "canton": null, - "numero_insee": "76647" - } - }, - { - "pk": 37229, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-SAENS", - "center": "POINT (523368.9622031219187193 2520169.1735312263481319)", - "surface": 26090000, - "canton": null, - "numero_insee": "76648" - } - }, - { - "pk": 3239, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-SAIRE", - "center": "POINT (538172.6997649067780003 2520792.8940915558487177)", - "surface": 13310000, - "canton": null, - "numero_insee": "76649" - } - }, - { - "pk": 11456, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-SAUVEUR-D'EMALLEVILLE", - "center": "POINT (453072.6900932566495612 2514582.5048495423980057)", - "surface": 7540000, - "canton": null, - "numero_insee": "76650" - } - }, - { - "pk": 7298, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-SYLVAIN", - "center": "POINT (479175.2698555298848078 2540314.0185726978816092)", - "surface": 3260000, - "canton": null, - "numero_insee": "76651" - } - }, - { - "pk": 22057, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-VAAST-D'EQUIQUEVILLE", - "center": "POINT (522437.6814781114226207 2535870.8011591238901019)", - "surface": 13820000, - "canton": null, - "numero_insee": "76652" - } - }, - { - "pk": 7733, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-VAAST-DIEPPEDALLE", - "center": "POINT (483462.1374454326578416 2530143.5432647392153740)", - "surface": 12290000, - "canton": null, - "numero_insee": "76653" - } - }, - { - "pk": 6344, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-VAAST-DU-VAL", - "center": "POINT (504043.6613197270780802 2521809.4131051446311176)", - "surface": 6060000, - "canton": null, - "numero_insee": "76654" - } - }, - { - "pk": 26152, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-VALERY-EN-CAUX", - "center": "POINT (482667.1250960698234849 2541543.6926721190102398)", - "surface": 10710000, - "canton": null, - "numero_insee": "76655" - } - }, - { - "pk": 14037, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-VICTOR-L'ABBAYE", - "center": "POINT (512369.7397370976395905 2519277.1045794929377735)", - "surface": 8520000, - "canton": null, - "numero_insee": "76656" - } - }, - { - "pk": 3302, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-VIGOR-D'YMONVILLE", - "center": "POINT (455706.5356444365461357 2498594.4455218557268381)", - "surface": 36570000, - "canton": null, - "numero_insee": "76657" - } - }, - { - "pk": 12136, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-VINCENT-CRAMESNIL", - "center": "POINT (456670.6493620012188330 2503005.1560443639755249)", - "surface": 4830000, - "canton": null, - "numero_insee": "76658" - } - }, - { - "pk": 4507, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAINT-WANDRILLE-RANCON", - "center": "POINT (486778.8902872022590600 2504255.3528522648848593)", - "surface": 18120000, - "canton": null, - "numero_insee": "76659" - } - }, - { - "pk": 13835, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SANDOUVILLE", - "center": "POINT (452295.5462003138381988 2499666.9033079650253057)", - "surface": 15920000, - "canton": null, - "numero_insee": "76660" - } - }, - { - "pk": 35767, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SASSETOT-LE-MAUCONDUIT", - "center": "POINT (469612.5683007157640532 2535131.7245189598761499)", - "surface": 8810000, - "canton": null, - "numero_insee": "76663" - } - }, - { - "pk": 31450, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SASSEVILLE", - "center": "POINT (481336.9566482582595199 2533027.6358266379684210)", - "surface": 6280000, - "canton": null, - "numero_insee": "76664" - } - }, - { - "pk": 10798, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAUCHAY", - "center": "POINT (518638.2748788427561522 2547546.0222737537696958)", - "surface": 5750000, - "canton": null, - "numero_insee": "76665" - } - }, - { - "pk": 24764, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAUMONT-LA-POTERIE", - "center": "POINT (547676.3095895537408069 2509065.0411326237954199)", - "surface": 16140000, - "canton": null, - "numero_insee": "76666" - } - }, - { - "pk": 24962, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAUQUEVILLE", - "center": "POINT (507996.8718334041768685 2539752.9536569816991687)", - "surface": 3320000, - "canton": null, - "numero_insee": "76667" - } - }, - { - "pk": 33862, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAUSSAY", - "center": "POINT (497884.4193506224546582 2516455.0049456744454801)", - "surface": 5190000, - "canton": null, - "numero_insee": "76668" - } - }, - { - "pk": 5534, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SAUSSEUZEMARE-EN-CAUX", - "center": "POINT (456420.7016594890737906 2521114.1549969934858382)", - "surface": 3730000, - "canton": null, - "numero_insee": "76669" - } - }, - { - "pk": 36688, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SENNEVILLE-SUR-FECAMP", - "center": "POINT (461431.4692210460780188 2532262.2919007530435920)", - "surface": 4980000, - "canton": null, - "numero_insee": "76670" - } - }, - { - "pk": 12940, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SEPT-MEULES", - "center": "POINT (534023.6371309774694964 2550375.7970899748615921)", - "surface": 8280000, - "canton": null, - "numero_insee": "76671" - } - }, - { - "pk": 29928, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SERQUEUX", - "center": "POINT (542725.2094109146855772 2514827.2479978213086724)", - "surface": 5720000, - "canton": null, - "numero_insee": "76672" - } - }, - { - "pk": 34886, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SERVAVILLE-SALMONVILLE", - "center": "POINT (522651.0172293524956331 2498249.7657454162836075)", - "surface": 7880000, - "canton": null, - "numero_insee": "76673" - } - }, - { - "pk": 24564, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SEVIS", - "center": "POINT (516328.5677885098266415 2524513.1912398631684482)", - "surface": 6360000, - "canton": null, - "numero_insee": "76674" - } - }, - { - "pk": 35218, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SIERVILLE", - "center": "POINT (505932.8280783714144491 2511218.6863279007375240)", - "surface": 15840000, - "canton": null, - "numero_insee": "76675" - } - }, - { - "pk": 28559, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SIGY-EN-BRAY", - "center": "POINT (537496.6425907551310956 2505878.1696899952366948)", - "surface": 27220000, - "canton": null, - "numero_insee": "76676" - } - }, - { - "pk": 27271, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SMERMESNIL", - "center": "POINT (538812.0129919248865917 2540109.7261790684424341)", - "surface": 12750000, - "canton": null, - "numero_insee": "76677" - } - }, - { - "pk": 6076, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SOMMERY", - "center": "POINT (535610.5347504160599783 2516068.6744974930770695)", - "surface": 21270000, - "canton": null, - "numero_insee": "76678" - } - }, - { - "pk": 36918, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SOMMESNIL", - "center": "POINT (479702.4614986476371996 2525009.2969979969784617)", - "surface": 3020000, - "canton": null, - "numero_insee": "76679" - } - }, - { - "pk": 9165, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SORQUAINVILLE", - "center": "POINT (471302.9692409739363939 2524339.2875453727319837)", - "surface": 4460000, - "canton": null, - "numero_insee": "76680" - } - }, - { - "pk": 12427, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SOTTEVILLE-LES-ROUEN", - "center": "POINT (509802.9945595449535176 2491038.3621598016470671)", - "surface": 7410000, - "canton": null, - "numero_insee": "76681" - } - }, - { - "pk": 9940, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SOTTEVILLE-SOUS-LE-VAL", - "center": "POINT (511190.3134656283073127 2480643.3323451313190162)", - "surface": 5040000, - "canton": null, - "numero_insee": "76682" - } - }, - { - "pk": 22714, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "SOTTEVILLE-SUR-MER", - "center": "POINT (491361.6619240849395283 2542816.5705742849968374)", - "surface": 8230000, - "canton": null, - "numero_insee": "76683" - } - }, - { - "pk": 32661, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TANCARVILLE", - "center": "POINT (463300.7991457034368068 2499858.0690728048793972)", - "surface": 7390000, - "canton": null, - "numero_insee": "76684" - } - }, - { - "pk": 7299, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "THEROULDEVILLE", - "center": "POINT (469152.1034344679210335 2530325.0550990588963032)", - "surface": 4600000, - "canton": null, - "numero_insee": "76685" - } - }, - { - "pk": 30341, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "THEUVILLE-AUX-MAILLOTS", - "center": "POINT (470848.8542768033803441 2530839.4149457649327815)", - "surface": 7270000, - "canton": null, - "numero_insee": "76686" - } - }, - { - "pk": 34809, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "THIERGEVILLE", - "center": "POINT (466576.4273315728642046 2527201.8606911310926080)", - "surface": 9260000, - "canton": null, - "numero_insee": "76688" - } - }, - { - "pk": 35766, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "THIETREVILLE", - "center": "POINT (468685.8318206731928512 2526218.7389463465660810)", - "surface": 5340000, - "canton": null, - "numero_insee": "76689" - } - }, - { - "pk": 4681, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "THIL-MANNEVILLE", - "center": "POINT (503401.1386491286684759 2538914.2629672214388847)", - "surface": 6820000, - "canton": null, - "numero_insee": "76690" - } - }, - { - "pk": 12259, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE THIL-RIBERPRE", - "center": "POINT (545218.2028886493062600 2515848.6669400325044990)", - "surface": 10120000, - "canton": null, - "numero_insee": "76691" - } - }, - { - "pk": 8841, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "THIOUVILLE", - "center": "POINT (476521.5028691807528958 2522481.4093483262695372)", - "surface": 5930000, - "canton": null, - "numero_insee": "76692" - } - }, - { - "pk": 34782, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE TILLEUL", - "center": "POINT (445898.5312015193048865 2523028.3191305985674262)", - "surface": 6190000, - "canton": null, - "numero_insee": "76693" - } - }, - { - "pk": 30164, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOCQUEVILLE-EN-CAUX", - "center": "POINT (497048.5241507623577490 2532757.8515195199288428)", - "surface": 3140000, - "canton": null, - "numero_insee": "76694" - } - }, - { - "pk": 27569, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOCQUEVILLE-LES-MURS", - "center": "POINT (467236.4316053467337042 2520002.9947884236462414)", - "surface": 3520000, - "canton": null, - "numero_insee": "76695" - } - }, - { - "pk": 6108, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOCQUEVILLE-SUR-EU", - "center": "POINT (523766.7566233422840014 2556493.8829184961505234)", - "surface": 3670000, - "canton": null, - "numero_insee": "76696" - } - }, - { - "pk": 24759, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TORCY-LE-GRAND", - "center": "POINT (516352.8216673051938415 2533618.8258928023278713)", - "surface": 8770000, - "canton": null, - "numero_insee": "76697" - } - }, - { - "pk": 18938, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TORCY-LE-PETIT", - "center": "POINT (516633.8205855108099058 2535922.5276902904734015)", - "surface": 3720000, - "canton": null, - "numero_insee": "76698" - } - }, - { - "pk": 32442, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE TORP-MESNIL", - "center": "POINT (496601.4677491206675768 2526350.3175037433393300)", - "surface": 5410000, - "canton": null, - "numero_insee": "76699" - } - }, - { - "pk": 11988, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOTES", - "center": "POINT (506448.2710191133664921 2521429.1691719107329845)", - "surface": 7540000, - "canton": null, - "numero_insee": "76700" - } - }, - { - "pk": 24386, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOUFFREVILLE-LA-CABLE", - "center": "POINT (475275.8998906518099830 2503759.6665777130983770)", - "surface": 4000000, - "canton": null, - "numero_insee": "76701" - } - }, - { - "pk": 36429, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOUFFREVILLE-LA-CORBELINE", - "center": "POINT (486123.7448002604651265 2510853.9716232819482684)", - "surface": 12650000, - "canton": null, - "numero_insee": "76702" - } - }, - { - "pk": 34753, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOUFFREVILLE-SUR-EU", - "center": "POINT (526976.7105798503616825 2555520.0538326785899699)", - "surface": 5760000, - "canton": null, - "numero_insee": "76703" - } - }, - { - "pk": 27758, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOURVILLE-LA-CHAPELLE", - "center": "POINT (522516.1043999203247949 2550480.0022452678531408)", - "surface": 7730000, - "canton": null, - "numero_insee": "76704" - } - }, - { - "pk": 28130, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOURVILLE-LA-RIVIERE", - "center": "POINT (509380.1354837704566307 2481728.9694448104128242)", - "surface": 8080000, - "canton": null, - "numero_insee": "76705" - } - }, - { - "pk": 27418, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOURVILLE-LES-IFS", - "center": "POINT (460086.2335673784837127 2525547.1485871910117567)", - "surface": 8460000, - "canton": null, - "numero_insee": "76706" - } - }, - { - "pk": 12523, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOURVILLE-SUR-ARQUES", - "center": "POINT (510388.1282570073381066 2540973.5523697161115706)", - "surface": 5890000, - "canton": null, - "numero_insee": "76707" - } - }, - { - "pk": 31201, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TOUSSAINT", - "center": "POINT (463065.4560426276875660 2528273.4367779484018683)", - "surface": 4520000, - "canton": null, - "numero_insee": "76708" - } - }, - { - "pk": 34918, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE TRAIT", - "center": "POINT (489919.6411366388201714 2499578.5194358592852950)", - "surface": 17680000, - "canton": null, - "numero_insee": "76709" - } - }, - { - "pk": 12695, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TREMAUVILLE", - "center": "POINT (468736.4067180373240262 2520115.4840963226743042)", - "surface": 2710000, - "canton": null, - "numero_insee": "76710" - } - }, - { - "pk": 24963, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LE TREPORT", - "center": "POINT (530822.7998221085872501 2562255.9474610672332346)", - "surface": 6900000, - "canton": null, - "numero_insee": "76711" - } - }, - { - "pk": 26122, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA TRINITE-DU-MONT", - "center": "POINT (471147.9385476335883141 2506827.3553635627031326)", - "surface": 2050000, - "canton": null, - "numero_insee": "76712" - } - }, - { - "pk": 26960, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TRIQUERVILLE", - "center": "POINT (475391.7189461525995284 2501859.4514264361932874)", - "surface": 3050000, - "canton": null, - "numero_insee": "76713" - } - }, - { - "pk": 24580, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LES TROIS-PIERRES", - "center": "POINT (459834.3023028929019347 2507634.1839797846041620)", - "surface": 7520000, - "canton": null, - "numero_insee": "76714" - } - }, - { - "pk": 36650, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TROUVILLE", - "center": "POINT (474314.8451799790491350 2511056.1871850141324103)", - "surface": 10590000, - "canton": null, - "numero_insee": "76715" - } - }, - { - "pk": 22365, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "TURRETOT", - "center": "POINT (448370.1471336262766272 2514543.6047826060093939)", - "surface": 6110000, - "canton": null, - "numero_insee": "76716" - } - }, - { - "pk": 30785, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VAL-DE-LA-HAYE", - "center": "POINT (502120.3214476450812072 2488372.8276481912471354)", - "surface": 10290000, - "canton": null, - "numero_insee": "76717" - } - }, - { - "pk": 25155, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VALLIQUERVILLE", - "center": "POINT (482391.0163750135106966 2514525.2515811678022146)", - "surface": 13420000, - "canton": null, - "numero_insee": "76718" - } - }, - { - "pk": 3492, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VALMONT", - "center": "POINT (468366.6041583897895180 2528517.4711335152387619)", - "surface": 5620000, - "canton": null, - "numero_insee": "76719" - } - }, - { - "pk": 24768, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VARENGEVILLE-SUR-MER", - "center": "POINT (503542.1786960212630220 2546019.5975507935509086)", - "surface": 10830000, - "canton": null, - "numero_insee": "76720" - } - }, - { - "pk": 36413, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VARNEVILLE-BRETTEVILLE", - "center": "POINT (506474.9004948155488819 2518227.4559709466993809)", - "surface": 9210000, - "canton": null, - "numero_insee": "76721" - } - }, - { - "pk": 33104, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VASSONVILLE", - "center": "POINT (508945.4442245126119815 2521950.2427784800529480)", - "surface": 5600000, - "canton": null, - "numero_insee": "76723" - } - }, - { - "pk": 9898, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VATIERVILLE", - "center": "POINT (540975.7220379236387089 2532623.3486278476193547)", - "surface": 4510000, - "canton": null, - "numero_insee": "76724" - } - }, - { - "pk": 12404, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VATTETOT-SOUS-BEAUMONT", - "center": "POINT (463465.8838771440205164 2516169.4553124699741602)", - "surface": 6990000, - "canton": null, - "numero_insee": "76725" - } - }, - { - "pk": 28893, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VATTETOT-SUR-MER", - "center": "POINT (451969.5083556522149593 2526980.8730553556233644)", - "surface": 5280000, - "canton": null, - "numero_insee": "76726" - } - }, - { - "pk": 18407, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VATTEVILLE-LA-RUE", - "center": "POINT (480039.9058352285064757 2496394.5857795472256839)", - "surface": 49300000, - "canton": null, - "numero_insee": "76727" - } - }, - { - "pk": 26114, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA VAUPALIERE", - "center": "POINT (502631.6424175244756043 2499083.7747810785658658)", - "surface": 7980000, - "canton": null, - "numero_insee": "76728" - } - }, - { - "pk": 15890, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VEAUVILLE-LES-BAONS", - "center": "POINT (485959.7403442712966353 2518557.2991304439492524)", - "surface": 7990000, - "canton": null, - "numero_insee": "76729" - } - }, - { - "pk": 11623, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VEAUVILLE-LES-QUELLES", - "center": "POINT (482679.9801828953204677 2527935.7387188659049571)", - "surface": 3180000, - "canton": null, - "numero_insee": "76730" - } - }, - { - "pk": 30613, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VENESTANVILLE", - "center": "POINT (496338.1807885295711458 2533952.6616067811846733)", - "surface": 2670000, - "canton": null, - "numero_insee": "76731" - } - }, - { - "pk": 12024, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "BUTOT-VENESVILLE", - "center": "POINT (473800.6668925945414230 2536867.4445775672793388)", - "surface": 3540000, - "canton": null, - "numero_insee": "76732" - } - }, - { - "pk": 32869, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VENTES-SAINT-REMY", - "center": "POINT (525135.7436106831301004 2524286.3641015626490116)", - "surface": 6140000, - "canton": null, - "numero_insee": "76733" - } - }, - { - "pk": 25948, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VEULES-LES-ROSES", - "center": "POINT (488365.0946840774267912 2542191.3371319421567023)", - "surface": 5300000, - "canton": null, - "numero_insee": "76735" - } - }, - { - "pk": 30783, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VEULETTES-SUR-MER", - "center": "POINT (473974.2278291328693740 2540070.7707179076969624)", - "surface": 4770000, - "canton": null, - "numero_insee": "76736" - } - }, - { - "pk": 5128, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VIBEUF", - "center": "POINT (497134.9889610672835261 2522352.3467533574439585)", - "surface": 8660000, - "canton": null, - "numero_insee": "76737" - } - }, - { - "pk": 27373, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VIEUX-MANOIR", - "center": "POINT (524570.4218827481381595 2508071.8133896957151592)", - "surface": 8100000, - "canton": null, - "numero_insee": "76738" - } - }, - { - "pk": 19190, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VIEUX-ROUEN-SUR-BRESLE", - "center": "POINT (554643.6076485384255648 2537440.2674493710510433)", - "surface": 14940000, - "canton": null, - "numero_insee": "76739" - } - }, - { - "pk": 3558, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "LA VIEUX-RUE", - "center": "POINT (520831.6883175257244147 2500435.9772873162291944)", - "surface": 5510000, - "canton": null, - "numero_insee": "76740" - } - }, - { - "pk": 4564, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VILLAINVILLE", - "center": "POINT (448424.6904912508325651 2520047.3963487241417170)", - "surface": 3540000, - "canton": null, - "numero_insee": "76741" - } - }, - { - "pk": 11596, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VILLEQUIER", - "center": "POINT (478285.0164515575161204 2502884.0661679063923657)", - "surface": 11150000, - "canton": null, - "numero_insee": "76742" - } - }, - { - "pk": 10677, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VILLERS-ECALLES", - "center": "POINT (497779.1007411413593218 2505047.1525359433144331)", - "surface": 7400000, - "canton": null, - "numero_insee": "76743" - } - }, - { - "pk": 26700, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VILLERS-SOUS-FOUCARMONT", - "center": "POINT (543842.9998102476820350 2536749.7082362906076014)", - "surface": 7070000, - "canton": null, - "numero_insee": "76744" - } - }, - { - "pk": 33111, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VILLY-SUR-YERES", - "center": "POINT (536730.0213229577057064 2549798.0215907073579729)", - "surface": 8350000, - "canton": null, - "numero_insee": "76745" - } - }, - { - "pk": 22772, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VINNEMERVILLE", - "center": "POINT (471606.9814563292311504 2535948.7276502149179578)", - "surface": 4290000, - "canton": null, - "numero_insee": "76746" - } - }, - { - "pk": 12669, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VIRVILLE", - "center": "POINT (456593.6304785293759778 2512310.2384893042035401)", - "surface": 2480000, - "canton": null, - "numero_insee": "76747" - } - }, - { - "pk": 28021, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "VITTEFLEUR", - "center": "POINT (477505.9182175200548954 2536497.9317576391622424)", - "surface": 8190000, - "canton": null, - "numero_insee": "76748" - } - }, - { - "pk": 21701, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "WANCHY-CAPVAL", - "center": "POINT (530397.6500990715576336 2541240.2563071665354073)", - "surface": 19410000, - "canton": null, - "numero_insee": "76749" - } - }, - { - "pk": 5952, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YAINVILLE", - "center": "POINT (490445.6757696181302890 2496480.9583592726849020)", - "surface": 3280000, - "canton": null, - "numero_insee": "76750" - } - }, - { - "pk": 5361, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YEBLERON", - "center": "POINT (469568.3443165034987032 2516320.0744255296885967)", - "surface": 10260000, - "canton": null, - "numero_insee": "76751" - } - }, - { - "pk": 29545, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YERVILLE", - "center": "POINT (495250.6003616116940975 2520335.4826638777740300)", - "surface": 10450000, - "canton": null, - "numero_insee": "76752" - } - }, - { - "pk": 28475, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YMARE", - "center": "POINT (514865.7572771726991050 2483875.9553481061011553)", - "surface": 3960000, - "canton": null, - "numero_insee": "76753" - } - }, - { - "pk": 33178, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YPORT", - "center": "POINT (454059.8606219487264752 2528298.9465448670089245)", - "surface": 2150000, - "canton": null, - "numero_insee": "76754" - } - }, - { - "pk": 36919, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YPREVILLE-BIVILLE", - "center": "POINT (469509.4730479971040040 2523423.8816985301673412)", - "surface": 10290000, - "canton": null, - "numero_insee": "76755" - } - }, - { - "pk": 14229, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YQUEBEUF", - "center": "POINT (521943.1690944016445428 2511151.8252650131471455)", - "surface": 6490000, - "canton": null, - "numero_insee": "76756" - } - }, - { - "pk": 29337, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YVECRIQUE", - "center": "POINT (489430.0492343707592227 2522388.4058030839078128)", - "surface": 6040000, - "canton": null, - "numero_insee": "76757" - } - }, - { - "pk": 30954, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YVETOT", - "center": "POINT (485993.7914895193534903 2514455.0910955592989922)", - "surface": 7480000, - "canton": null, - "numero_insee": "76758" - } - }, - { - "pk": 31566, - "model": "ishtar_common.town", - "fields": { - "departement": 77, - "name": "YVILLE-SUR-SEINE", - "center": "POINT (494389.4010916380793788 2491510.5878117005340755)", - "surface": 7760000, - "canton": null, - "numero_insee": "76759" - } - }, - { - "pk": 14616, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ACHERES-LA-FORET", - "center": "POINT (616868.9365945168538019 2372152.9916956340894103)", - "surface": 12570000, - "canton": null, - "numero_insee": "77001" - } - }, - { - "pk": 33886, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "AMILLIS", - "center": "POINT (658734.1400545900687575 2415435.9304401678964496)", - "surface": 20220000, - "canton": null, - "numero_insee": "77002" - } - }, - { - "pk": 13248, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "AMPONVILLE", - "center": "POINT (614324.4301921197911724 2365326.6682400186546147)", - "surface": 11930000, - "canton": null, - "numero_insee": "77003" - } - }, - { - "pk": 12766, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ANDREZEL", - "center": "POINT (634632.0981415536953136 2401823.4326142808422446)", - "surface": 8070000, - "canton": null, - "numero_insee": "77004" - } - }, - { - "pk": 35367, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ANNET-SUR-MARNE", - "center": "POINT (627239.6574133028043434 2435984.6632204670459032)", - "surface": 13090000, - "canton": null, - "numero_insee": "77005" - } - }, - { - "pk": 8084, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ARBONNE-LA-FORET", - "center": "POINT (616610.7629783720476553 2379055.7913823528215289)", - "surface": 15040000, - "canton": null, - "numero_insee": "77006" - } - }, - { - "pk": 31950, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ARGENTIERES", - "center": "POINT (639299.6469609839841723 2406065.6778908949345350)", - "surface": 2570000, - "canton": null, - "numero_insee": "77007" - } - }, - { - "pk": 33147, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ARMENTIERES-EN-BRIE", - "center": "POINT (649698.3385041030123830 2442678.2113318457268178)", - "surface": 7260000, - "canton": null, - "numero_insee": "77008" - } - }, - { - "pk": 34101, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ARVILLE", - "center": "POINT (616324.9397267120657489 2353534.8331762864254415)", - "surface": 11400000, - "canton": null, - "numero_insee": "77009" - } - }, - { - "pk": 16478, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "AUBEPIERRE-OZOUER-LE-REPOS", - "center": "POINT (641731.5022550498833880 2402483.6558876833878458)", - "surface": 26810000, - "canton": null, - "numero_insee": "77010" - } - }, - { - "pk": 32684, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "AUFFERVILLE", - "center": "POINT (619605.2630639570998028 2356164.3283688258379698)", - "surface": 17750000, - "canton": null, - "numero_insee": "77011" - } - }, - { - "pk": 5567, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "AUGERS-EN-BRIE", - "center": "POINT (674808.3059586833696812 2407966.4415240008383989)", - "surface": 13380000, - "canton": null, - "numero_insee": "77012" - } - }, - { - "pk": 26661, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "AULNOY", - "center": "POINT (655225.6622308626538143 2428014.9417492169886827)", - "surface": 14250000, - "canton": null, - "numero_insee": "77013" - } - }, - { - "pk": 29283, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "AVON", - "center": "POINT (629317.2923057428561151 2379362.8171951724216342)", - "surface": 3810000, - "canton": null, - "numero_insee": "77014" - } - }, - { - "pk": 34272, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BABY", - "center": "POINT (674668.5617463856469840 2377143.4687229320406914)", - "surface": 4110000, - "canton": null, - "numero_insee": "77015" - } - }, - { - "pk": 11203, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BAGNEAUX-SUR-LOING", - "center": "POINT (627493.6741212935885414 2358232.1557417833246291)", - "surface": 5320000, - "canton": null, - "numero_insee": "77016" - } - }, - { - "pk": 34064, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BAILLY-ROMAINVILLIERS", - "center": "POINT (635218.5620325601194054 2427245.8848182740621269)", - "surface": 7790000, - "canton": null, - "numero_insee": "77018" - } - }, - { - "pk": 8341, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BALLOY", - "center": "POINT (660352.5340396268293262 2377823.1183509137481451)", - "surface": 13370000, - "canton": null, - "numero_insee": "77019" - } - }, - { - "pk": 31659, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BANNOST-VILLEGAGNON", - "center": "POINT (662992.4965892138425261 2408867.3135480345226824)", - "surface": 19400000, - "canton": null, - "numero_insee": "77020" - } - }, - { - "pk": 12643, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BARBEY", - "center": "POINT (652876.3747780714184046 2374357.5835471465252340)", - "surface": 4310000, - "canton": null, - "numero_insee": "77021" - } - }, - { - "pk": 33047, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BARBIZON", - "center": "POINT (619477.2987302296096459 2383282.8991544363088906)", - "surface": 5370000, - "canton": null, - "numero_insee": "77022" - } - }, - { - "pk": 9374, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BARCY", - "center": "POINT (639458.5390788733493537 2446594.5617501353845000)", - "surface": 7000000, - "canton": null, - "numero_insee": "77023" - } - }, - { - "pk": 6252, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BASSEVELLE", - "center": "POINT (669264.0634925607591867 2436439.0779717820696533)", - "surface": 17520000, - "canton": null, - "numero_insee": "77024" - } - }, - { - "pk": 24941, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BAZOCHES-LES-BRAY", - "center": "POINT (663352.7872486317064613 2378048.5915037225931883)", - "surface": 22640000, - "canton": null, - "numero_insee": "77025" - } - }, - { - "pk": 32851, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BEAUCHERY-SAINT-MARTIN", - "center": "POINT (679971.5692923031747341 2400905.1400917205028236)", - "surface": 27840000, - "canton": null, - "numero_insee": "77026" - } - }, - { - "pk": 36666, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BEAUMONT-DU-GATINAIS", - "center": "POINT (611559.5746534282807261 2348991.4550719154067338)", - "surface": 16590000, - "canton": null, - "numero_insee": "77027" - } - }, - { - "pk": 5690, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BEAUTHEIL", - "center": "POINT (655807.8635481891687959 2418313.2304198252968490)", - "surface": 18360000, - "canton": null, - "numero_insee": "77028" - } - }, - { - "pk": 26445, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BEAUVOIR", - "center": "POINT (638809.4497656999155879 2404860.7121026888489723)", - "surface": 3960000, - "canton": null, - "numero_insee": "77029" - } - }, - { - "pk": 20321, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BELLOT", - "center": "POINT (672442.0336555471876636 2427459.8472961909137666)", - "surface": 16260000, - "canton": null, - "numero_insee": "77030" - } - }, - { - "pk": 24534, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BERNAY-VILBERT", - "center": "POINT (643681.3144959113560617 2408604.3379088873043656)", - "surface": 16860000, - "canton": null, - "numero_insee": "77031" - } - }, - { - "pk": 24719, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BETON-BAZOCHES", - "center": "POINT (666865.3446434643119574 2412402.4455775176174939)", - "surface": 18100000, - "canton": null, - "numero_insee": "77032" - } - }, - { - "pk": 10649, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BEZALLES", - "center": "POINT (666503.1286889393813908 2407896.2658187835477293)", - "surface": 2660000, - "canton": null, - "numero_insee": "77033" - } - }, - { - "pk": 13628, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BLANDY", - "center": "POINT (633782.0855575299356133 2395812.0628751772455871)", - "surface": 14110000, - "canton": null, - "numero_insee": "77034" - } - }, - { - "pk": 25224, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BLENNES", - "center": "POINT (650088.4085002944339067 2360824.2550830659456551)", - "surface": 20290000, - "canton": null, - "numero_insee": "77035" - } - }, - { - "pk": 30134, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOISDON", - "center": "POINT (665494.0541011656168848 2408888.4380378969945014)", - "surface": 4340000, - "canton": null, - "numero_insee": "77036" - } - }, - { - "pk": 38028, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOIS-LE-ROI", - "center": "POINT (626956.8637486158404499 2386347.9550277180969715)", - "surface": 6940000, - "canton": null, - "numero_insee": "77037" - } - }, - { - "pk": 37676, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOISSISE-LA-BERTRAND", - "center": "POINT (618596.8550810914020985 2392782.2452969374135137)", - "surface": 7790000, - "canton": null, - "numero_insee": "77039" - } - }, - { - "pk": 32819, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOISSISE-LE-ROI", - "center": "POINT (617216.1545651744818315 2390368.9385765185579658)", - "surface": 7110000, - "canton": null, - "numero_insee": "77040" - } - }, - { - "pk": 35507, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOISSY-AUX-CAILLES", - "center": "POINT (611499.0460224131820723 2368104.9612091020680964)", - "surface": 16330000, - "canton": null, - "numero_insee": "77041" - } - }, - { - "pk": 18331, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOISSY-LE-CHATEL", - "center": "POINT (658749.7473022006452084 2425442.9129726383835077)", - "surface": 9930000, - "canton": null, - "numero_insee": "77042" - } - }, - { - "pk": 30480, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOITRON", - "center": "POINT (667887.7349987034685910 2433525.4970487812533975)", - "surface": 5140000, - "canton": null, - "numero_insee": "77043" - } - }, - { - "pk": 8201, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOMBON", - "center": "POINT (639178.7621269205119461 2396658.0790051422081888)", - "surface": 14960000, - "canton": null, - "numero_insee": "77044" - } - }, - { - "pk": 21885, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOUGLIGNY", - "center": "POINT (624514.4139128526439890 2355505.1033149156719446)", - "surface": 16360000, - "canton": null, - "numero_insee": "77045" - } - }, - { - "pk": 25535, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOULANCOURT", - "center": "POINT (608444.0852273758500814 2362475.2163970111869276)", - "surface": 6450000, - "canton": null, - "numero_insee": "77046" - } - }, - { - "pk": 30722, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOULEURS", - "center": "POINT (641888.9101523710414767 2431304.7879814938642085)", - "surface": 8150000, - "canton": null, - "numero_insee": "77047" - } - }, - { - "pk": 11859, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOURRON-MARLOTTE", - "center": "POINT (626988.1545583370607346 2370737.0166778257116675)", - "surface": 11250000, - "canton": null, - "numero_insee": "77048" - } - }, - { - "pk": 31322, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BOUTIGNY", - "center": "POINT (643458.6754985648440197 2435020.5135576771572232)", - "surface": 9860000, - "canton": null, - "numero_insee": "77049" - } - }, - { - "pk": 7638, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BRANSLES", - "center": "POINT (636568.7515791058540344 2350102.5096461102366447)", - "surface": 13850000, - "canton": null, - "numero_insee": "77050" - } - }, - { - "pk": 24142, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BRAY-SUR-SEINE", - "center": "POINT (667140.0339946139138192 2379881.8679030318744481)", - "surface": 2130000, - "canton": null, - "numero_insee": "77051" - } - }, - { - "pk": 13192, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BREAU", - "center": "POINT (640089.4482944984920323 2395464.9063029107637703)", - "surface": 1330000, - "canton": null, - "numero_insee": "77052" - } - }, - { - "pk": 21991, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BRIE-COMTE-ROBERT", - "center": "POINT (620349.9608150036074221 2410409.3012658720836043)", - "surface": 19920000, - "canton": null, - "numero_insee": "77053" - } - }, - { - "pk": 36366, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA BROSSE-MONTCEAUX", - "center": "POINT (650901.2353925198549405 2371238.6833468903787434)", - "surface": 12060000, - "canton": null, - "numero_insee": "77054" - } - }, - { - "pk": 10293, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BROU-SUR-CHANTEREINE", - "center": "POINT (622166.0464863153174520 2432439.6205267696641386)", - "surface": 4380000, - "canton": null, - "numero_insee": "77055" - } - }, - { - "pk": 9397, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BURCY", - "center": "POINT (613974.6271122691687196 2359319.3435257216915488)", - "surface": 6950000, - "canton": null, - "numero_insee": "77056" - } - }, - { - "pk": 27505, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BUSSIERES", - "center": "POINT (666058.7597709282999858 2436812.2701372099108994)", - "surface": 8300000, - "canton": null, - "numero_insee": "77057" - } - }, - { - "pk": 26943, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BUSSY-SAINT-GEORGES", - "center": "POINT (628325.3114047474227846 2425886.9685802776366472)", - "surface": 15250000, - "canton": null, - "numero_insee": "77058" - } - }, - { - "pk": 36627, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BUSSY-SAINT-MARTIN", - "center": "POINT (625109.0494744161842391 2427561.0602175868116319)", - "surface": 2470000, - "canton": null, - "numero_insee": "77059" - } - }, - { - "pk": 7637, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "BUTHIERS", - "center": "POINT (608620.6810239535989240 2365278.7425038707442582)", - "surface": 19600000, - "canton": null, - "numero_insee": "77060" - } - }, - { - "pk": 27712, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CANNES-ECLUSE", - "center": "POINT (648476.0439876356394961 2374020.2566751074045897)", - "surface": 8620000, - "canton": null, - "numero_insee": "77061" - } - }, - { - "pk": 29276, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CARNETIN", - "center": "POINT (626556.0757029030937701 2433977.5647928244434297)", - "surface": 1590000, - "canton": null, - "numero_insee": "77062" - } - }, - { - "pk": 24559, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA CELLE-SUR-MORIN", - "center": "POINT (646669.3628245028667152 2422138.8261846425011754)", - "surface": 7510000, - "canton": null, - "numero_insee": "77063" - } - }, - { - "pk": 12357, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CELY", - "center": "POINT (613962.8266746874433011 2384537.4686769358813763)", - "surface": 6170000, - "canton": null, - "numero_insee": "77065" - } - }, - { - "pk": 27125, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CERNEUX", - "center": "POINT (674271.6255237878067419 2412264.8873539217747748)", - "surface": 21970000, - "canton": null, - "numero_insee": "77066" - } - }, - { - "pk": 27710, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CESSON", - "center": "POINT (619068.5658290629507974 2396188.6097302162088454)", - "surface": 6970000, - "canton": null, - "numero_insee": "77067" - } - }, - { - "pk": 28612, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CESSOY-EN-MONTOIS", - "center": "POINT (659248.0023482398828492 2390122.5788575899787247)", - "surface": 5290000, - "canton": null, - "numero_insee": "77068" - } - }, - { - "pk": 8965, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAILLY-EN-BIERE", - "center": "POINT (620257.6177815481787547 2385691.1728546139784157)", - "surface": 13070000, - "canton": null, - "numero_insee": "77069" - } - }, - { - "pk": 5593, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAILLY-EN-BRIE", - "center": "POINT (658580.0283238480333239 2421839.0234294426627457)", - "surface": 17960000, - "canton": null, - "numero_insee": "77070" - } - }, - { - "pk": 22232, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAINTREAUX", - "center": "POINT (635429.2506415615789592 2354696.3115327483974397)", - "surface": 23850000, - "canton": null, - "numero_insee": "77071" - } - }, - { - "pk": 35188, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHALAUTRE-LA-GRANDE", - "center": "POINT (681921.8553225022042170 2395117.5560203320346773)", - "surface": 18280000, - "canton": null, - "numero_insee": "77072" - } - }, - { - "pk": 31749, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHALAUTRE-LA-PETITE", - "center": "POINT (672237.6913441044744104 2392433.8429809752851725)", - "surface": 9350000, - "canton": null, - "numero_insee": "77073" - } - }, - { - "pk": 5947, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHALIFERT", - "center": "POINT (631967.7558670237194747 2433022.4392066607251763)", - "surface": 2430000, - "canton": null, - "numero_insee": "77075" - } - }, - { - "pk": 27535, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHALMAISON", - "center": "POINT (667969.6122469720430672 2388294.8740826263092458)", - "surface": 10050000, - "canton": null, - "numero_insee": "77076" - } - }, - { - "pk": 5731, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAMBRY", - "center": "POINT (640776.1718035242520273 2444604.3339965171180665)", - "surface": 9740000, - "canton": null, - "numero_insee": "77077" - } - }, - { - "pk": 3044, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAMIGNY", - "center": "POINT (658999.6580998343415558 2443257.0188286299817264)", - "surface": 14190000, - "canton": null, - "numero_insee": "77078" - } - }, - { - "pk": 29675, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAMPAGNE-SUR-SEINE", - "center": "POINT (634824.2185942539945245 2379008.8919859719462693)", - "surface": 7310000, - "canton": null, - "numero_insee": "77079" - } - }, - { - "pk": 19502, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAMPCENEST", - "center": "POINT (669200.5860259493347257 2408419.3998306281864643)", - "surface": 12710000, - "canton": null, - "numero_insee": "77080" - } - }, - { - "pk": 36416, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAMPDEUIL", - "center": "POINT (629020.9979073497233912 2402676.8238001428544521)", - "surface": 4030000, - "canton": null, - "numero_insee": "77081" - } - }, - { - "pk": 35156, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAMPEAUX", - "center": "POINT (634953.3529223719378933 2399324.3863369543105364)", - "surface": 13080000, - "canton": null, - "numero_insee": "77082" - } - }, - { - "pk": 7993, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAMPS-SUR-MARNE", - "center": "POINT (619003.6567217314150184 2427709.8437381885014474)", - "surface": 7790000, - "canton": null, - "numero_insee": "77083" - } - }, - { - "pk": 37372, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHANGIS-SUR-MARNE", - "center": "POINT (650412.2576704705134034 2441083.1636066208593547)", - "surface": 6930000, - "canton": null, - "numero_insee": "77084" - } - }, - { - "pk": 11728, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHANTELOUP-EN-BRIE", - "center": "POINT (629600.8373535088030621 2428899.7415763977915049)", - "surface": 3170000, - "canton": null, - "numero_insee": "77085" - } - }, - { - "pk": 15663, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA CHAPELLE-GAUTHIER", - "center": "POINT (638813.0702019528253004 2392552.1060453569516540)", - "surface": 17190000, - "canton": null, - "numero_insee": "77086" - } - }, - { - "pk": 29651, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA CHAPELLE-IGER", - "center": "POINT (648306.1177190955495462 2406041.5169773022644222)", - "surface": 8760000, - "canton": null, - "numero_insee": "77087" - } - }, - { - "pk": 15808, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA CHAPELLE-RABLAIS", - "center": "POINT (646141.3320046715671197 2389811.8792794425971806)", - "surface": 15430000, - "canton": null, - "numero_insee": "77089" - } - }, - { - "pk": 11046, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA CHAPELLE-SAINT-SULPICE", - "center": "POINT (662202.6062806120608002 2395751.4797873776406050)", - "surface": 6390000, - "canton": null, - "numero_insee": "77090" - } - }, - { - "pk": 27935, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LES CHAPELLES-BOURBON", - "center": "POINT (636712.9621282510925084 2416150.8805399145931005)", - "surface": 6430000, - "canton": null, - "numero_insee": "77091" - } - }, - { - "pk": 4477, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA CHAPELLE-MOUTILS", - "center": "POINT (676904.7749197251396254 2420392.7247813781723380)", - "surface": 19430000, - "canton": null, - "numero_insee": "77093" - } - }, - { - "pk": 24752, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHARMENTRAY", - "center": "POINT (632415.8267410272965208 2439230.3793625370599329)", - "surface": 4620000, - "canton": null, - "numero_insee": "77094" - } - }, - { - "pk": 37697, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHARNY", - "center": "POINT (630697.1205760220764205 2441317.3149533621035516)", - "surface": 12540000, - "canton": null, - "numero_insee": "77095" - } - }, - { - "pk": 27708, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHARTRETTES", - "center": "POINT (627840.5988669205689803 2388356.8139227060601115)", - "surface": 10110000, - "canton": null, - "numero_insee": "77096" - } - }, - { - "pk": 27936, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHARTRONGES", - "center": "POINT (668124.7316177120665088 2417316.4631594540551305)", - "surface": 8270000, - "canton": null, - "numero_insee": "77097" - } - }, - { - "pk": 4555, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHATEAUBLEAU", - "center": "POINT (656975.6689983968390152 2398509.3307942198589444)", - "surface": 3390000, - "canton": null, - "numero_insee": "77098" - } - }, - { - "pk": 29969, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHATEAU-LANDON", - "center": "POINT (626963.1646325716283172 2349921.5710155619308352)", - "surface": 29420000, - "canton": null, - "numero_insee": "77099" - } - }, - { - "pk": 28355, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE CHATELET-EN-BRIE", - "center": "POINT (634438.0777254425920546 2389212.9202097118832171)", - "surface": 22750000, - "canton": null, - "numero_insee": "77100" - } - }, - { - "pk": 12375, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHATENAY-SUR-SEINE", - "center": "POINT (656028.6407675861846656 2380288.4217804898507893)", - "surface": 13390000, - "canton": null, - "numero_insee": "77101" - } - }, - { - "pk": 28419, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHATENOY", - "center": "POINT (621582.1862882989225909 2359083.0839039259590209)", - "surface": 4950000, - "canton": null, - "numero_insee": "77102" - } - }, - { - "pk": 30471, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHATILLON-LA-BORDE", - "center": "POINT (636204.6745139625854790 2393330.7004365096800029)", - "surface": 7240000, - "canton": null, - "numero_insee": "77103" - } - }, - { - "pk": 32590, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHATRES", - "center": "POINT (635240.6868913768557832 2412736.1363543565385044)", - "surface": 15160000, - "canton": null, - "numero_insee": "77104" - } - }, - { - "pk": 33629, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAUFFRY", - "center": "POINT (661955.0777656139107421 2425069.6984322299249470)", - "surface": 5100000, - "canton": null, - "numero_insee": "77106" - } - }, - { - "pk": 22697, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAUMES-EN-BRIE", - "center": "POINT (637384.9734888421371579 2407650.6619394621811807)", - "surface": 20000000, - "canton": null, - "numero_insee": "77107" - } - }, - { - "pk": 20113, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHELLES", - "center": "POINT (619070.0627380714286119 2431713.1110881213098764)", - "surface": 16010000, - "canton": null, - "numero_insee": "77108" - } - }, - { - "pk": 16249, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHENOISE", - "center": "POINT (663043.1894957320764661 2402863.5610062349587679)", - "surface": 35930000, - "canton": null, - "numero_insee": "77109" - } - }, - { - "pk": 34481, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHENOU", - "center": "POINT (623444.8268311450956389 2351793.3759889286011457)", - "surface": 13730000, - "canton": null, - "numero_insee": "77110" - } - }, - { - "pk": 11439, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHESSY", - "center": "POINT (631788.6947150188498199 2430519.2424465110525489)", - "surface": 5780000, - "canton": null, - "numero_insee": "77111" - } - }, - { - "pk": 29968, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHEVRAINVILLIERS", - "center": "POINT (619666.6225965995108709 2360768.2201964855194092)", - "surface": 8950000, - "canton": null, - "numero_insee": "77112" - } - }, - { - "pk": 21740, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHEVRU", - "center": "POINT (663138.5479783002519980 2415272.9743858752772212)", - "surface": 13990000, - "canton": null, - "numero_insee": "77113" - } - }, - { - "pk": 34470, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHEVRY-COSSIGNY", - "center": "POINT (625024.2604950274107978 2413850.9693463663570583)", - "surface": 16680000, - "canton": null, - "numero_insee": "77114" - } - }, - { - "pk": 25397, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHEVRY-EN-SEREINE", - "center": "POINT (646282.5218741922872141 2361192.4586341660469770)", - "surface": 22920000, - "canton": null, - "numero_insee": "77115" - } - }, - { - "pk": 26975, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHOISY-EN-BRIE", - "center": "POINT (664409.7764329813653603 2418786.1164757627993822)", - "surface": 25020000, - "canton": null, - "numero_insee": "77116" - } - }, - { - "pk": 23363, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CITRY", - "center": "POINT (666627.0035593713400885 2440619.6179510266520083)", - "surface": 5090000, - "canton": null, - "numero_insee": "77117" - } - }, - { - "pk": 5695, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CLAYE-SOUILLY", - "center": "POINT (624818.8519941539270803 2438265.8383139548823237)", - "surface": 15090000, - "canton": null, - "numero_insee": "77118" - } - }, - { - "pk": 34414, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CLOS-FONTAINE", - "center": "POINT (649951.8416377992834896 2400751.6922021531499922)", - "surface": 5970000, - "canton": null, - "numero_insee": "77119" - } - }, - { - "pk": 37757, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COCHEREL", - "center": "POINT (656366.8686791679356247 2446937.2610094458796084)", - "surface": 8360000, - "canton": null, - "numero_insee": "77120" - } - }, - { - "pk": 7583, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COLLEGIEN", - "center": "POINT (625026.6674156845547259 2425458.9394139577634633)", - "surface": 3430000, - "canton": null, - "numero_insee": "77121" - } - }, - { - "pk": 28356, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COMBS-LA-VILLE", - "center": "POINT (617580.1873787542572245 2406583.3738149018026888)", - "surface": 14560000, - "canton": null, - "numero_insee": "77122" - } - }, - { - "pk": 32637, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COMPANS", - "center": "POINT (623374.2436719237593934 2443457.1608290527947247)", - "surface": 5320000, - "canton": null, - "numero_insee": "77123" - } - }, - { - "pk": 36409, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CONCHES-SUR-GONDOIRE", - "center": "POINT (628000.7081016673473641 2428786.2065091803669930)", - "surface": 1520000, - "canton": null, - "numero_insee": "77124" - } - }, - { - "pk": 13085, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CONDE-SAINTE-LIBIAIRE", - "center": "POINT (636667.2223677374422550 2433462.2822258709929883)", - "surface": 2120000, - "canton": null, - "numero_insee": "77125" - } - }, - { - "pk": 33101, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CONGIS-SUR-THEROUANNE", - "center": "POINT (646967.2033450853778049 2446157.5124148232862353)", - "surface": 15180000, - "canton": null, - "numero_insee": "77126" - } - }, - { - "pk": 28581, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COUBERT", - "center": "POINT (627367.7863397863693535 2408867.2285372442565858)", - "surface": 8430000, - "canton": null, - "numero_insee": "77127" - } - }, - { - "pk": 27954, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COUILLY-PONT-AUX-DAMES", - "center": "POINT (638784.5054210601374507 2431578.8343538781628013)", - "surface": 4750000, - "canton": null, - "numero_insee": "77128" - } - }, - { - "pk": 3461, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COULOMBS-EN-VALOIS", - "center": "POINT (657812.0225645429454744 2453553.8207308342680335)", - "surface": 22470000, - "canton": null, - "numero_insee": "77129" - } - }, - { - "pk": 34951, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COULOMMES", - "center": "POINT (643478.0718347947113216 2432719.1264787516556680)", - "surface": 3710000, - "canton": null, - "numero_insee": "77130" - } - }, - { - "pk": 6328, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COULOMMIERS", - "center": "POINT (655459.5548819655086845 2424014.1929035848006606)", - "surface": 10950000, - "canton": null, - "numero_insee": "77131" - } - }, - { - "pk": 7139, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COUPVRAY", - "center": "POINT (633477.9292224346427247 2431934.4114543115720153)", - "surface": 8090000, - "canton": null, - "numero_insee": "77132" - } - }, - { - "pk": 34730, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COURCELLES-EN-BASSEE", - "center": "POINT (653033.4562530086841434 2379462.5787019096314907)", - "surface": 10820000, - "canton": null, - "numero_insee": "77133" - } - }, - { - "pk": 12106, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COURCHAMP", - "center": "POINT (670228.2639637158717960 2405225.8550431388430297)", - "surface": 12440000, - "canton": null, - "numero_insee": "77134" - } - }, - { - "pk": 22840, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COURPALAY", - "center": "POINT (645411.8957176533294842 2405116.4896349320188165)", - "surface": 14720000, - "canton": null, - "numero_insee": "77135" - } - }, - { - "pk": 14233, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COURQUETAINE", - "center": "POINT (630267.9086726636160165 2409091.7756762048229575)", - "surface": 7830000, - "canton": null, - "numero_insee": "77136" - } - }, - { - "pk": 18285, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COURTACON", - "center": "POINT (670170.7730765147134662 2412030.0930135687813163)", - "surface": 12160000, - "canton": null, - "numero_insee": "77137" - } - }, - { - "pk": 36812, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COURTOMER", - "center": "POINT (641195.7760904633905739 2406682.0712073901668191)", - "surface": 4620000, - "canton": null, - "numero_insee": "77138" - } - }, - { - "pk": 19322, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COURTRY", - "center": "POINT (619540.0745867878431454 2435319.4904357511550188)", - "surface": 4140000, - "canton": null, - "numero_insee": "77139" - } - }, - { - "pk": 13322, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COUTENCON", - "center": "POINT (648774.2099401728482917 2386131.4473073128610849)", - "surface": 6210000, - "canton": null, - "numero_insee": "77140" - } - }, - { - "pk": 31149, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "COUTEVROULT", - "center": "POINT (637510.6899894634261727 2428365.9368608705699444)", - "surface": 7930000, - "canton": null, - "numero_insee": "77141" - } - }, - { - "pk": 21906, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CRECY-LA-CHAPELLE", - "center": "POINT (643811.1435103865806013 2428819.2948020990006626)", - "surface": 15420000, - "canton": null, - "numero_insee": "77142" - } - }, - { - "pk": 34750, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CREGY-LES-MEAUX", - "center": "POINT (639294.6686744448961690 2442290.3189185475930572)", - "surface": 3680000, - "canton": null, - "numero_insee": "77143" - } - }, - { - "pk": 30460, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CREVECOEUR-EN-BRIE", - "center": "POINT (641904.3668482673820108 2417595.5793847385793924)", - "surface": 9310000, - "canton": null, - "numero_insee": "77144" - } - }, - { - "pk": 36576, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CRISENOY", - "center": "POINT (630039.3132788281654939 2400583.9253736021928489)", - "surface": 12890000, - "canton": null, - "numero_insee": "77145" - } - }, - { - "pk": 7141, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CROISSY-BEAUBOURG", - "center": "POINT (623435.7922820919193327 2424244.7384517705067992)", - "surface": 10790000, - "canton": null, - "numero_insee": "77146" - } - }, - { - "pk": 17696, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA CROIX-EN-BRIE", - "center": "POINT (654162.9271440223092213 2399786.5107105616480112)", - "surface": 29430000, - "canton": null, - "numero_insee": "77147" - } - }, - { - "pk": 19024, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CROUY-SUR-OURCQ", - "center": "POINT (654301.5252524056704715 2454524.8562149666249752)", - "surface": 19330000, - "canton": null, - "numero_insee": "77148" - } - }, - { - "pk": 36747, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CUCHARMOY", - "center": "POINT (662173.0377475513378158 2399253.6920650252141058)", - "surface": 12860000, - "canton": null, - "numero_insee": "77149" - } - }, - { - "pk": 29702, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CUISY", - "center": "POINT (632250.9004879815038294 2446934.1240539257414639)", - "surface": 3320000, - "canton": null, - "numero_insee": "77150" - } - }, - { - "pk": 27943, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DAGNY", - "center": "POINT (660955.7723487074254081 2413053.0272974707186222)", - "surface": 7850000, - "canton": null, - "numero_insee": "77151" - } - }, - { - "pk": 11312, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DAMMARIE-LES-LYS", - "center": "POINT (621518.0556028820574284 2390505.1831291583366692)", - "surface": 10230000, - "canton": null, - "numero_insee": "77152" - } - }, - { - "pk": 30024, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DAMMARTIN-EN-GOELE", - "center": "POINT (625014.6435558993835002 2450675.7374108280055225)", - "surface": 9000000, - "canton": null, - "numero_insee": "77153" - } - }, - { - "pk": 29677, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DAMMARTIN-SUR-TIGEAUX", - "center": "POINT (641655.3392598945647478 2423397.4528921362943947)", - "surface": 9030000, - "canton": null, - "numero_insee": "77154" - } - }, - { - "pk": 12572, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DAMPMART", - "center": "POINT (629967.3905474975472316 2432905.5324474088847637)", - "surface": 5920000, - "canton": null, - "numero_insee": "77155" - } - }, - { - "pk": 23021, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DARVAULT", - "center": "POINT (629044.2035609007580206 2364249.5952135063707829)", - "surface": 7860000, - "canton": null, - "numero_insee": "77156" - } - }, - { - "pk": 6930, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DHUISY", - "center": "POINT (660553.3083616255316883 2448873.8552540647797287)", - "surface": 8160000, - "canton": null, - "numero_insee": "77157" - } - }, - { - "pk": 10315, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DIANT", - "center": "POINT (649544.1995167307322845 2366023.4632692420855165)", - "surface": 11010000, - "canton": null, - "numero_insee": "77158" - } - }, - { - "pk": 3983, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DONNEMARIE-DONTILLY", - "center": "POINT (657774.9127415199764073 2386807.8014555308036506)", - "surface": 12060000, - "canton": null, - "numero_insee": "77159" - } - }, - { - "pk": 7524, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DORMELLES", - "center": "POINT (640918.3135691721690819 2368352.4993997314013541)", - "surface": 12940000, - "canton": null, - "numero_insee": "77161" - } - }, - { - "pk": 3226, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DOUE", - "center": "POINT (661004.6899573191767558 2430965.6812856798060238)", - "surface": 19990000, - "canton": null, - "numero_insee": "77162" - } - }, - { - "pk": 24370, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "DOUY-LA-RAMEE", - "center": "POINT (639916.6838861432624981 2451601.7312208125367761)", - "surface": 7920000, - "canton": null, - "numero_insee": "77163" - } - }, - { - "pk": 34924, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ECHOUBOULAINS", - "center": "POINT (643779.4378704633563757 2385088.6281815511174500)", - "surface": 20870000, - "canton": null, - "numero_insee": "77164" - } - }, - { - "pk": 35637, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LES ECRENNES", - "center": "POINT (639846.5847311528632417 2388658.0494498671032488)", - "surface": 18570000, - "canton": null, - "numero_insee": "77165" - } - }, - { - "pk": 24511, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ECUELLES", - "center": "POINT (636573.3567137552890927 2373319.5185340917669237)", - "surface": 11730000, - "canton": null, - "numero_insee": "77166" - } - }, - { - "pk": 35094, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "EGLIGNY", - "center": "POINT (658211.4823600024683401 2382508.4175666482187808)", - "surface": 16570000, - "canton": null, - "numero_insee": "77167" - } - }, - { - "pk": 37885, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "EGREVILLE", - "center": "POINT (640741.2115845798980445 2353740.3193784831091762)", - "surface": 31670000, - "canton": null, - "numero_insee": "77168" - } - }, - { - "pk": 35695, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "EMERAINVILLE", - "center": "POINT (619930.2885664136847481 2424615.5274301692843437)", - "surface": 5340000, - "canton": null, - "numero_insee": "77169" - } - }, - { - "pk": 3912, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "EPISY", - "center": "POINT (633796.8100244505330920 2370293.9660879899747670)", - "surface": 7410000, - "canton": null, - "numero_insee": "77170" - } - }, - { - "pk": 4430, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ESBLY", - "center": "POINT (634864.4509688396938145 2433647.2342497156932950)", - "surface": 3090000, - "canton": null, - "numero_insee": "77171" - } - }, - { - "pk": 28796, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ESMANS", - "center": "POINT (646894.4056987194344401 2371705.2592513444833457)", - "surface": 17830000, - "canton": null, - "numero_insee": "77172" - } - }, - { - "pk": 38058, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ETREPILLY", - "center": "POINT (643437.2976834655273706 2449429.9448066465556622)", - "surface": 13290000, - "canton": null, - "numero_insee": "77173" - } - }, - { - "pk": 34237, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "EVRY-GREGY-SUR-YERRE", - "center": "POINT (622287.3326719400938600 2406122.6093923524022102)", - "surface": 19130000, - "canton": null, - "numero_insee": "77175" - } - }, - { - "pk": 24986, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FAREMOUTIERS", - "center": "POINT (648787.5238264689687639 2420155.3165969848632812)", - "surface": 10860000, - "canton": null, - "numero_insee": "77176" - } - }, - { - "pk": 30897, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FAVIERES", - "center": "POINT (631675.3381583113223314 2420211.2755815712735057)", - "surface": 28350000, - "canton": null, - "numero_insee": "77177" - } - }, - { - "pk": 11082, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FAY-LES-NEMOURS", - "center": "POINT (624287.3425612184219062 2358705.5450223153457046)", - "surface": 7870000, - "canton": null, - "numero_insee": "77178" - } - }, - { - "pk": 36809, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FERICY", - "center": "POINT (634471.7822423066245392 2385210.3590274164453149)", - "surface": 9300000, - "canton": null, - "numero_insee": "77179" - } - }, - { - "pk": 8095, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FEROLLES-ATTILLY", - "center": "POINT (622212.4273978520650417 2415028.1430450477637351)", - "surface": 12800000, - "canton": null, - "numero_insee": "77180" - } - }, - { - "pk": 8484, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FERRIERES-EN-BRIE", - "center": "POINT (627234.7452350666280836 2424676.9738496895879507)", - "surface": 6130000, - "canton": null, - "numero_insee": "77181" - } - }, - { - "pk": 3803, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA FERTE-GAUCHER", - "center": "POINT (671091.9137590993195772 2421444.3455049735493958)", - "surface": 17390000, - "canton": null, - "numero_insee": "77182" - } - }, - { - "pk": 5457, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA FERTE-SOUS-JOUARRE", - "center": "POINT (657928.5596485910937190 2439745.6397894290275872)", - "surface": 10010000, - "canton": null, - "numero_insee": "77183" - } - }, - { - "pk": 8251, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FLAGY", - "center": "POINT (643023.0626692975638434 2367969.9447426395490766)", - "surface": 7210000, - "canton": null, - "numero_insee": "77184" - } - }, - { - "pk": 5283, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FLEURY-EN-BIERE", - "center": "POINT (615076.9906262003351003 2382945.6910037631168962)", - "surface": 13990000, - "canton": null, - "numero_insee": "77185" - } - }, - { - "pk": 20155, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FONTAINEBLEAU", - "center": "POINT (625420.6640840261243284 2378629.5243065836839378)", - "surface": 172370000, - "canton": null, - "numero_insee": "77186" - } - }, - { - "pk": 30915, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FONTAINE-FOURCHES", - "center": "POINT (678249.7431725875940174 2379675.5409134570509195)", - "surface": 11960000, - "canton": null, - "numero_insee": "77187" - } - }, - { - "pk": 23389, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FONTAINE-LE-PORT", - "center": "POINT (631752.3587851795600727 2387288.9575826916843653)", - "surface": 7880000, - "canton": null, - "numero_insee": "77188" - } - }, - { - "pk": 29635, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FONTAINS", - "center": "POINT (649528.3131969294045120 2391641.7116681193001568)", - "surface": 14330000, - "canton": null, - "numero_insee": "77190" - } - }, - { - "pk": 18620, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FONTENAILLES", - "center": "POINT (643614.4363158474443480 2392792.7043477785773575)", - "surface": 27450000, - "canton": null, - "numero_insee": "77191" - } - }, - { - "pk": 11376, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FONTENAY-TRESIGNY", - "center": "POINT (638656.2817375670420006 2411163.7987076356075704)", - "surface": 22130000, - "canton": null, - "numero_insee": "77192" - } - }, - { - "pk": 26464, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FORFRY", - "center": "POINT (637522.8561553717590868 2450680.9704790078103542)", - "surface": 5840000, - "canton": null, - "numero_insee": "77193" - } - }, - { - "pk": 11022, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FORGES", - "center": "POINT (645319.2006021620472893 2380498.3180411965586245)", - "surface": 13260000, - "canton": null, - "numero_insee": "77194" - } - }, - { - "pk": 30454, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FOUJU", - "center": "POINT (631555.4205553709762171 2398795.4254363682121038)", - "surface": 7770000, - "canton": null, - "numero_insee": "77195" - } - }, - { - "pk": 36152, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FRESNES-SUR-MARNE", - "center": "POINT (629522.5121926898136735 2438205.3529452579095960)", - "surface": 7520000, - "canton": null, - "numero_insee": "77196" - } - }, - { - "pk": 10404, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FRETOY", - "center": "POINT (663764.2669444642961025 2412276.1865260163322091)", - "surface": 6620000, - "canton": null, - "numero_insee": "77197" - } - }, - { - "pk": 31587, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FROMONT", - "center": "POINT (612754.4912734401877970 2361610.7737040761858225)", - "surface": 10650000, - "canton": null, - "numero_insee": "77198" - } - }, - { - "pk": 25389, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "FUBLAINES", - "center": "POINT (644233.8557832151418552 2438029.0632016826421022)", - "surface": 5500000, - "canton": null, - "numero_insee": "77199" - } - }, - { - "pk": 8506, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GARENTREVILLE", - "center": "POINT (616575.5082640555920079 2359441.2785411858931184)", - "surface": 6450000, - "canton": null, - "numero_insee": "77200" - } - }, - { - "pk": 25843, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GASTINS", - "center": "POINT (650330.9966145451180637 2403256.6388821690343320)", - "surface": 14930000, - "canton": null, - "numero_insee": "77201" - } - }, - { - "pk": 25348, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA GENEVRAYE", - "center": "POINT (630810.0108448772225529 2368467.5146439066156745)", - "surface": 13320000, - "canton": null, - "numero_insee": "77202" - } - }, - { - "pk": 25686, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GERMIGNY-L'EVEQUE", - "center": "POINT (645490.7743869185214862 2443243.1355945118702948)", - "surface": 11720000, - "canton": null, - "numero_insee": "77203" - } - }, - { - "pk": 37138, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GERMIGNY-SOUS-COULOMBS", - "center": "POINT (660226.1018779168371111 2452073.2084487439133227)", - "surface": 6500000, - "canton": null, - "numero_insee": "77204" - } - }, - { - "pk": 35181, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GESVRES-LE-CHAPITRE", - "center": "POINT (637039.4173375685932115 2448675.5755376121960580)", - "surface": 4250000, - "canton": null, - "numero_insee": "77205" - } - }, - { - "pk": 13776, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GIREMOUTIERS", - "center": "POINT (651118.9508270939113572 2428480.6375942104496062)", - "surface": 5950000, - "canton": null, - "numero_insee": "77206" - } - }, - { - "pk": 10437, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GIRONVILLE", - "center": "POINT (614640.6269782832823694 2351519.1983391786925495)", - "surface": 13680000, - "canton": null, - "numero_insee": "77207" - } - }, - { - "pk": 25862, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GOUAIX", - "center": "POINT (670985.0585707806749269 2386719.2118382328189909)", - "surface": 14120000, - "canton": null, - "numero_insee": "77208" - } - }, - { - "pk": 29704, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GOUVERNES", - "center": "POINT (626198.7732334377942607 2428871.1110269664786756)", - "surface": 2740000, - "canton": null, - "numero_insee": "77209" - } - }, - { - "pk": 31895, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA GRANDE-PAROISSE", - "center": "POINT (641545.4153640875592828 2377064.0719355382025242)", - "surface": 29010000, - "canton": null, - "numero_insee": "77210" - } - }, - { - "pk": 11298, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GRAVON", - "center": "POINT (658359.6837641971651465 2376805.5784485591575503)", - "surface": 7550000, - "canton": null, - "numero_insee": "77212" - } - }, - { - "pk": 17763, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GRESSY", - "center": "POINT (623997.3283425483386964 2440760.6005445737391710)", - "surface": 3350000, - "canton": null, - "numero_insee": "77214" - } - }, - { - "pk": 33049, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GRETZ-ARMAINVILLIERS", - "center": "POINT (628602.0672400116454810 2416783.0732044256292284)", - "surface": 13560000, - "canton": null, - "numero_insee": "77215" - } - }, - { - "pk": 27845, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GREZ-SUR-LOING", - "center": "POINT (625213.0769610988209024 2367619.8321083560585976)", - "surface": 13060000, - "canton": null, - "numero_insee": "77216" - } - }, - { - "pk": 22091, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GRISY-SUISNES", - "center": "POINT (624960.3979788647266105 2409547.4578410461544991)", - "surface": 18230000, - "canton": null, - "numero_insee": "77217" - } - }, - { - "pk": 26079, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GRISY-SUR-SEINE", - "center": "POINT (672520.6904814332956448 2382629.2620865833014250)", - "surface": 6580000, - "canton": null, - "numero_insee": "77218" - } - }, - { - "pk": 18344, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GUERARD", - "center": "POINT (645147.3577653729589656 2424627.7020914889872074)", - "surface": 19820000, - "canton": null, - "numero_insee": "77219" - } - }, - { - "pk": 13644, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GUERCHEVILLE", - "center": "POINT (616351.8224230427294970 2362241.4476867774501443)", - "surface": 9190000, - "canton": null, - "numero_insee": "77220" - } - }, - { - "pk": 3760, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GUERMANTES", - "center": "POINT (627605.5175401251763105 2428182.4737783716991544)", - "surface": 1270000, - "canton": null, - "numero_insee": "77221" - } - }, - { - "pk": 34696, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GUIGNES", - "center": "POINT (634111.5618623902555555 2404220.7261516642756760)", - "surface": 5730000, - "canton": null, - "numero_insee": "77222" - } - }, - { - "pk": 29684, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "GURCY-LE-CHATEL", - "center": "POINT (654967.2094647109042853 2387484.6077905520796776)", - "surface": 12760000, - "canton": null, - "numero_insee": "77223" - } - }, - { - "pk": 7236, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "HAUTEFEUILLE", - "center": "POINT (646096.8318694727495313 2418831.7394081973470747)", - "surface": 9830000, - "canton": null, - "numero_insee": "77224" - } - }, - { - "pk": 22392, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA HAUTE-MAISON", - "center": "POINT (649088.2041318807750940 2431965.8815336981788278)", - "surface": 12940000, - "canton": null, - "numero_insee": "77225" - } - }, - { - "pk": 18782, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "HERICY", - "center": "POINT (633493.0463307256577536 2382600.2616663770750165)", - "surface": 10720000, - "canton": null, - "numero_insee": "77226" - } - }, - { - "pk": 32617, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "HERME", - "center": "POINT (674577.2152488026767969 2387950.4236502358689904)", - "surface": 15920000, - "canton": null, - "numero_insee": "77227" - } - }, - { - "pk": 37074, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "HONDEVILLIERS", - "center": "POINT (671483.1424448180478066 2434356.4144824924878776)", - "surface": 5540000, - "canton": null, - "numero_insee": "77228" - } - }, - { - "pk": 18796, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA HOUSSAYE-EN-BRIE", - "center": "POINT (639002.5802116428967565 2417571.1300168209709227)", - "surface": 12430000, - "canton": null, - "numero_insee": "77229" - } - }, - { - "pk": 24188, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ISLES-LES-MELDEUSES", - "center": "POINT (649482.1871096952818334 2444577.6546934810467064)", - "surface": 6850000, - "canton": null, - "numero_insee": "77231" - } - }, - { - "pk": 30158, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ISLES-LES-VILLENOY", - "center": "POINT (636150.0659915398573503 2435459.2737024235539138)", - "surface": 7020000, - "canton": null, - "numero_insee": "77232" - } - }, - { - "pk": 29011, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "IVERNY", - "center": "POINT (633174.1810746830888093 2444240.1030960632488132)", - "surface": 1740000, - "canton": null, - "numero_insee": "77233" - } - }, - { - "pk": 36871, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JABLINES", - "center": "POINT (630748.5007031399291009 2435213.6574223074130714)", - "surface": 8060000, - "canton": null, - "numero_insee": "77234" - } - }, - { - "pk": 32672, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JAIGNES", - "center": "POINT (653994.9920724846888334 2443414.9198479205369949)", - "surface": 10160000, - "canton": null, - "numero_insee": "77235" - } - }, - { - "pk": 23357, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JAULNES", - "center": "POINT (669541.5845140106976032 2379902.1551555744372308)", - "surface": 15840000, - "canton": null, - "numero_insee": "77236" - } - }, - { - "pk": 12938, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JOSSIGNY", - "center": "POINT (631327.1398249443154782 2425912.2354865600354970)", - "surface": 9640000, - "canton": null, - "numero_insee": "77237" - } - }, - { - "pk": 19025, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JOUARRE", - "center": "POINT (656876.0317082154797390 2434032.9273344413377345)", - "surface": 42370000, - "canton": null, - "numero_insee": "77238" - } - }, - { - "pk": 25660, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JOUY-LE-CHATEL", - "center": "POINT (658800.8589736639987677 2407531.0249737091362476)", - "surface": 37760000, - "canton": null, - "numero_insee": "77239" - } - }, - { - "pk": 21464, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JOUY-SUR-MORIN", - "center": "POINT (668783.7411226764088497 2422225.3906450816430151)", - "surface": 18460000, - "canton": null, - "numero_insee": "77240" - } - }, - { - "pk": 11567, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JUILLY", - "center": "POINT (626946.0754651750903577 2447089.6057790052145720)", - "surface": 7730000, - "canton": null, - "numero_insee": "77241" - } - }, - { - "pk": 26475, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "JUTIGNY", - "center": "POINT (665764.8251979277702048 2388676.5356831471435726)", - "surface": 4600000, - "canton": null, - "numero_insee": "77242" - } - }, - { - "pk": 22426, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LAGNY-SUR-MARNE", - "center": "POINT (627385.1871821166714653 2430582.2458175299689174)", - "surface": 5790000, - "canton": null, - "numero_insee": "77243" - } - }, - { - "pk": 32039, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LARCHANT", - "center": "POINT (619431.9915199507959187 2364869.2420234950259328)", - "surface": 29250000, - "canton": null, - "numero_insee": "77244" - } - }, - { - "pk": 15121, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LAVAL-EN-BRIE", - "center": "POINT (647189.2130190145689994 2384216.7287392835132778)", - "surface": 20270000, - "canton": null, - "numero_insee": "77245" - } - }, - { - "pk": 25295, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LECHELLE", - "center": "POINT (677698.8873369479551911 2397483.5342910508625209)", - "surface": 21840000, - "canton": null, - "numero_insee": "77246" - } - }, - { - "pk": 13759, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LESCHES", - "center": "POINT (633450.1261172537924722 2435236.4024522453546524)", - "surface": 4080000, - "canton": null, - "numero_insee": "77248" - } - }, - { - "pk": 32155, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LESIGNY", - "center": "POINT (620496.2296349605312571 2416814.9480560920201242)", - "surface": 10020000, - "canton": null, - "numero_insee": "77249" - } - }, - { - "pk": 7984, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LEUDON-EN-BRIE", - "center": "POINT (668544.4205495986388996 2415018.4247877979651093)", - "surface": 4360000, - "canton": null, - "numero_insee": "77250" - } - }, - { - "pk": 28584, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LIEUSAINT", - "center": "POINT (615709.2800335129722953 2402965.1361465239897370)", - "surface": 11910000, - "canton": null, - "numero_insee": "77251" - } - }, - { - "pk": 34020, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LIMOGES-FOURCHES", - "center": "POINT (624513.9627114631002769 2403139.2479145778343081)", - "surface": 8000000, - "canton": null, - "numero_insee": "77252" - } - }, - { - "pk": 26950, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LISSY", - "center": "POINT (626823.8262813983019441 2402157.9837504369206727)", - "surface": 6690000, - "canton": null, - "numero_insee": "77253" - } - }, - { - "pk": 9870, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LIVERDY-EN-BRIE", - "center": "POINT (632655.0817060179542750 2410813.0502468575723469)", - "surface": 9120000, - "canton": null, - "numero_insee": "77254" - } - }, - { - "pk": 19461, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LIVRY-SUR-SEINE", - "center": "POINT (625828.3750035446137190 2389640.8043575687333941)", - "surface": 5350000, - "canton": null, - "numero_insee": "77255" - } - }, - { - "pk": 13746, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LIZINES", - "center": "POINT (661229.8491732052061707 2392440.9372130972333252)", - "surface": 5790000, - "canton": null, - "numero_insee": "77256" - } - }, - { - "pk": 35901, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LIZY-SUR-OURCQ", - "center": "POINT (649846.9840599917806685 2448783.5197192258201540)", - "surface": 11240000, - "canton": null, - "numero_insee": "77257" - } - }, - { - "pk": 11305, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LOGNES", - "center": "POINT (621718.7637838593218476 2426131.5895606363192201)", - "surface": 4020000, - "canton": null, - "numero_insee": "77258" - } - }, - { - "pk": 29054, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LONGPERRIER", - "center": "POINT (623316.1662308925297111 2450361.2504470329731703)", - "surface": 4650000, - "canton": null, - "numero_insee": "77259" - } - }, - { - "pk": 3737, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LONGUEVILLE", - "center": "POINT (666645.9614609249401838 2390985.6097020339220762)", - "surface": 5580000, - "canton": null, - "numero_insee": "77260" - } - }, - { - "pk": 33386, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LORREZ-LE-BOCAGE-PREAUX", - "center": "POINT (641587.8476018225774169 2360152.1589079033583403)", - "surface": 19760000, - "canton": null, - "numero_insee": "77261" - } - }, - { - "pk": 14134, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LUISETAINES", - "center": "POINT (662794.1678216040600091 2384948.8161344397813082)", - "surface": 5080000, - "canton": null, - "numero_insee": "77263" - } - }, - { - "pk": 37677, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LUMIGNY-NESLES-ORMEAUX", - "center": "POINT (645340.2002570717595518 2413621.7820918736979365)", - "surface": 36360000, - "canton": null, - "numero_insee": "77264" - } - }, - { - "pk": 35010, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LUZANCY", - "center": "POINT (661808.0838374861050397 2442480.1930357683449984)", - "surface": 6650000, - "canton": null, - "numero_insee": "77265" - } - }, - { - "pk": 37524, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MACHAULT", - "center": "POINT (637291.2790267186937854 2383132.6057077636942267)", - "surface": 16350000, - "canton": null, - "numero_insee": "77266" - } - }, - { - "pk": 33896, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA MADELEINE-SUR-LOING", - "center": "POINT (627110.2496603953186423 2356227.4593798452988267)", - "surface": 6160000, - "canton": null, - "numero_insee": "77267" - } - }, - { - "pk": 3611, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAGNY-LE-HONGRE", - "center": "POINT (634996.5316260951803997 2429845.7786485329270363)", - "surface": 4640000, - "canton": null, - "numero_insee": "77268" - } - }, - { - "pk": 11280, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAINCY", - "center": "POINT (627283.8622287045000121 2395056.8698361222632229)", - "surface": 10290000, - "canton": null, - "numero_insee": "77269" - } - }, - { - "pk": 7633, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAISONCELLES-EN-BRIE", - "center": "POINT (648211.2835599728859961 2429156.5919207786209881)", - "surface": 13610000, - "canton": null, - "numero_insee": "77270" - } - }, - { - "pk": 27400, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAISONCELLES-EN-GATINAIS", - "center": "POINT (621126.4581256222445518 2353775.3529175310395658)", - "surface": 8580000, - "canton": null, - "numero_insee": "77271" - } - }, - { - "pk": 21784, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAISON-ROUGE", - "center": "POINT (660103.8099660244770348 2395433.5503181996755302)", - "surface": 13890000, - "canton": null, - "numero_insee": "77272" - } - }, - { - "pk": 19566, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MARCHEMORET", - "center": "POINT (630319.4530556977260858 2450520.2479673391208053)", - "surface": 7070000, - "canton": null, - "numero_insee": "77273" - } - }, - { - "pk": 25132, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MARCILLY", - "center": "POINT (639739.3275317699881271 2448898.4522903687320650)", - "surface": 6910000, - "canton": null, - "numero_insee": "77274" - } - }, - { - "pk": 12245, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LES MARETS", - "center": "POINT (672200.7649030636530370 2408644.8893156023696065)", - "surface": 5330000, - "canton": null, - "numero_insee": "77275" - } - }, - { - "pk": 6584, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAREUIL-LES-MEAUX", - "center": "POINT (639045.0674656009068713 2436284.1975007089786232)", - "surface": 7180000, - "canton": null, - "numero_insee": "77276" - } - }, - { - "pk": 11282, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MARLES-EN-BRIE", - "center": "POINT (640532.1693091096822172 2414181.6760442843660712)", - "surface": 12780000, - "canton": null, - "numero_insee": "77277" - } - }, - { - "pk": 12962, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAROLLES-EN-BRIE", - "center": "POINT (660598.9921014072606340 2419754.6272282977588475)", - "surface": 9150000, - "canton": null, - "numero_insee": "77278" - } - }, - { - "pk": 38017, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAROLLES-SUR-SEINE", - "center": "POINT (651459.4288358154008165 2376247.0017018602229655)", - "surface": 20170000, - "canton": null, - "numero_insee": "77279" - } - }, - { - "pk": 31119, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MARY-SUR-MARNE", - "center": "POINT (650966.2004339502891526 2446591.4999323310330510)", - "surface": 2250000, - "canton": null, - "numero_insee": "77280" - } - }, - { - "pk": 32405, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAUPERTHUIS", - "center": "POINT (651596.8387657782295719 2419278.3916965499520302)", - "surface": 1970000, - "canton": null, - "numero_insee": "77281" - } - }, - { - "pk": 10663, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAUREGARD", - "center": "POINT (617133.5386101113399491 2447807.6030866219662130)", - "surface": 8730000, - "canton": null, - "numero_insee": "77282" - } - }, - { - "pk": 14856, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MAY-EN-MULTIEN", - "center": "POINT (650315.2126817423850298 2452589.9793843887746334)", - "surface": 19090000, - "canton": null, - "numero_insee": "77283" - } - }, - { - "pk": 28426, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MEAUX", - "center": "POINT (641215.1938028270378709 2440004.9633680293336511)", - "surface": 15230000, - "canton": null, - "numero_insee": "77284" - } - }, - { - "pk": 8964, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE MEE-SUR-SEINE", - "center": "POINT (621593.7132528659421951 2393407.8708000918850303)", - "surface": 5550000, - "canton": null, - "numero_insee": "77285" - } - }, - { - "pk": 25870, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MEIGNEUX", - "center": "POINT (656140.1144081141101196 2390796.8470369484275579)", - "surface": 7770000, - "canton": null, - "numero_insee": "77286" - } - }, - { - "pk": 34091, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MEILLERAY", - "center": "POINT (679386.8471206602407619 2422715.2868102029897273)", - "surface": 7810000, - "canton": null, - "numero_insee": "77287" - } - }, - { - "pk": 10272, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MELUN", - "center": "POINT (623690.8388049555942416 2393925.8635181202553213)", - "surface": 8000000, - "canton": null, - "numero_insee": "77288" - } - }, - { - "pk": 21247, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MELZ-SUR-SEINE", - "center": "POINT (678362.7239518074784428 2389983.8474792768247426)", - "surface": 18480000, - "canton": null, - "numero_insee": "77289" - } - }, - { - "pk": 9115, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MERY-SUR-MARNE", - "center": "POINT (663410.7274970491416752 2442293.5914106620475650)", - "surface": 5700000, - "canton": null, - "numero_insee": "77290" - } - }, - { - "pk": 11137, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE MESNIL-AMELOT", - "center": "POINT (618946.3830533945001662 2446421.9164750301279128)", - "surface": 9820000, - "canton": null, - "numero_insee": "77291" - } - }, - { - "pk": 11443, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MESSY", - "center": "POINT (626697.2578881172230467 2440983.4504163819365203)", - "surface": 10290000, - "canton": null, - "numero_insee": "77292" - } - }, - { - "pk": 31155, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MISY-SUR-YONNE", - "center": "POINT (656179.3655009664362296 2374285.3773390762507915)", - "surface": 6290000, - "canton": null, - "numero_insee": "77293" - } - }, - { - "pk": 27880, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MITRY-MORY", - "center": "POINT (620182.4355826907558367 2442229.5151596330106258)", - "surface": 29940000, - "canton": null, - "numero_insee": "77294" - } - }, - { - "pk": 30453, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MOISENAY", - "center": "POINT (629775.3405075009213760 2396278.6836302694864571)", - "surface": 8680000, - "canton": null, - "numero_insee": "77295" - } - }, - { - "pk": 28795, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MOISSY-CRAMAYEL", - "center": "POINT (619108.8904494064627215 2403293.9269826188683510)", - "surface": 14240000, - "canton": null, - "numero_insee": "77296" - } - }, - { - "pk": 36417, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONDREVILLE", - "center": "POINT (619355.5494097486371174 2350157.8001504060812294)", - "surface": 20190000, - "canton": null, - "numero_insee": "77297" - } - }, - { - "pk": 34501, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONS-EN-MONTOIS", - "center": "POINT (659363.2687585102394223 2388322.2738568047061563)", - "surface": 6270000, - "canton": null, - "numero_insee": "77298" - } - }, - { - "pk": 29863, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTARLOT", - "center": "POINT (638581.4028178435983136 2372535.8545422749593854)", - "surface": 5230000, - "canton": null, - "numero_insee": "77299" - } - }, - { - "pk": 9783, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTCEAUX-LES-MEAUX", - "center": "POINT (648132.8198836818337440 2438462.2009149477817118)", - "surface": 4670000, - "canton": null, - "numero_insee": "77300" - } - }, - { - "pk": 10526, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTCEAUX-LES-PROVINS", - "center": "POINT (681583.7710076965158805 2411426.0919110588729382)", - "surface": 15410000, - "canton": null, - "numero_insee": "77301" - } - }, - { - "pk": 18369, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTCOURT-FROMONVILLE", - "center": "POINT (627822.3609579149633646 2366741.1333061950281262)", - "surface": 8090000, - "canton": null, - "numero_insee": "77302" - } - }, - { - "pk": 9863, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTDAUPHIN", - "center": "POINT (679436.1364839529851452 2428719.7906892495229840)", - "surface": 9790000, - "canton": null, - "numero_insee": "77303" - } - }, - { - "pk": 11724, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTENILS", - "center": "POINT (683854.8925272172782570 2426855.8759396066889167)", - "surface": 5260000, - "canton": null, - "numero_insee": "77304" - } - }, - { - "pk": 30098, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTEREAU-FAULT-YONNE", - "center": "POINT (646250.1494018828961998 2376903.5803978713229299)", - "surface": 9050000, - "canton": null, - "numero_insee": "77305" - } - }, - { - "pk": 35180, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTEREAU-SUR-LE-JARD", - "center": "POINT (624742.7106011849828064 2399738.7928817919455469)", - "surface": 11410000, - "canton": null, - "numero_insee": "77306" - } - }, - { - "pk": 26299, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTGE-EN-GOELE", - "center": "POINT (629740.9967498646583408 2447913.6584170749410987)", - "surface": 11490000, - "canton": null, - "numero_insee": "77308" - } - }, - { - "pk": 6915, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTHYON", - "center": "POINT (636262.5410098143620417 2445867.1747864303179085)", - "surface": 12110000, - "canton": null, - "numero_insee": "77309" - } - }, - { - "pk": 10909, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTIGNY-LE-GUESDIER", - "center": "POINT (667571.5662878260482103 2376182.8528896826319396)", - "surface": 7870000, - "canton": null, - "numero_insee": "77310" - } - }, - { - "pk": 27942, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTIGNY-LENCOUP", - "center": "POINT (652993.7841751347295940 2384165.6080454275943339)", - "surface": 20770000, - "canton": null, - "numero_insee": "77311" - } - }, - { - "pk": 25087, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTIGNY-SUR-LOING", - "center": "POINT (630685.5180147998034954 2371368.5689723505638540)", - "surface": 9160000, - "canton": null, - "numero_insee": "77312" - } - }, - { - "pk": 13333, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTMACHOUX", - "center": "POINT (648617.4522116873413324 2369117.9023500652983785)", - "surface": 4420000, - "canton": null, - "numero_insee": "77313" - } - }, - { - "pk": 27785, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTOLIVET", - "center": "POINT (680359.5322108058026060 2426025.7643918176181614)", - "surface": 16410000, - "canton": null, - "numero_insee": "77314" - } - }, - { - "pk": 7582, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MONTRY", - "center": "POINT (635678.4166966711636633 2432053.0092910598032176)", - "surface": 2830000, - "canton": null, - "numero_insee": "77315" - } - }, - { - "pk": 25447, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MORET-SUR-LOING", - "center": "POINT (635165.7035137263592333 2374108.2411183612421155)", - "surface": 4970000, - "canton": null, - "numero_insee": "77316" - } - }, - { - "pk": 18227, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MORMANT", - "center": "POINT (640251.6367937173927203 2399969.4361186455935240)", - "surface": 16510000, - "canton": null, - "numero_insee": "77317" - } - }, - { - "pk": 14146, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MORTCERF", - "center": "POINT (641779.0095977104501799 2420596.5808648946695030)", - "surface": 17700000, - "canton": null, - "numero_insee": "77318" - } - }, - { - "pk": 33319, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MORTERY", - "center": "POINT (667274.5636282507330179 2399496.9140532379969954)", - "surface": 13180000, - "canton": null, - "numero_insee": "77319" - } - }, - { - "pk": 14857, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MOUROUX", - "center": "POINT (652444.2174566012108698 2425589.8446532995440066)", - "surface": 16700000, - "canton": null, - "numero_insee": "77320" - } - }, - { - "pk": 29259, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MOUSSEAUX-LES-BRAY", - "center": "POINT (666057.0708562942454591 2377771.2125833793543279)", - "surface": 8660000, - "canton": null, - "numero_insee": "77321" - } - }, - { - "pk": 28071, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MOUSSY-LE-NEUF", - "center": "POINT (619796.4317488718079403 2452433.0331006045453250)", - "surface": 14850000, - "canton": null, - "numero_insee": "77322" - } - }, - { - "pk": 5914, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MOUSSY-LE-VIEUX", - "center": "POINT (620918.1164383264258504 2449940.8159599672071636)", - "surface": 7200000, - "canton": null, - "numero_insee": "77323" - } - }, - { - "pk": 31981, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "MOUY-SUR-SEINE", - "center": "POINT (667324.1039810116635635 2381784.7844437961466610)", - "surface": 8620000, - "canton": null, - "numero_insee": "77325" - } - }, - { - "pk": 24705, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NANDY", - "center": "POINT (615549.5273849349468946 2398160.4310310566797853)", - "surface": 8580000, - "canton": null, - "numero_insee": "77326" - } - }, - { - "pk": 23284, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NANGIS", - "center": "POINT (649597.9995067184790969 2395244.8426000694744289)", - "surface": 24180000, - "canton": null, - "numero_insee": "77327" - } - }, - { - "pk": 10630, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NANTEAU-SUR-ESSONNE", - "center": "POINT (606688.3355199829675257 2368965.2015356533229351)", - "surface": 12890000, - "canton": null, - "numero_insee": "77328" - } - }, - { - "pk": 35258, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NANTEAU-SUR-LUNAIN", - "center": "POINT (635369.4191478181164712 2361801.0204657772555947)", - "surface": 13300000, - "canton": null, - "numero_insee": "77329" - } - }, - { - "pk": 27754, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NANTEUIL-LES-MEAUX", - "center": "POINT (641242.1742394433822483 2436803.0451211538165808)", - "surface": 7620000, - "canton": null, - "numero_insee": "77330" - } - }, - { - "pk": 13503, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NANTEUIL-SUR-MARNE", - "center": "POINT (664807.3371694505913183 2442805.7190708029083908)", - "surface": 1260000, - "canton": null, - "numero_insee": "77331" - } - }, - { - "pk": 30727, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NANTOUILLET", - "center": "POINT (626665.2629740870324895 2444785.7148764124140143)", - "surface": 5150000, - "canton": null, - "numero_insee": "77332" - } - }, - { - "pk": 24161, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "CHAUCONIN-NEUFMONTIERS", - "center": "POINT (636198.7191682205302641 2441563.7726510488428175)", - "surface": 17360000, - "canton": null, - "numero_insee": "77335" - } - }, - { - "pk": 36352, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NEUFMOUTIERS-EN-BRIE", - "center": "POINT (635983.8773774398723617 2419547.0753250224515796)", - "surface": 16220000, - "canton": null, - "numero_insee": "77336" - } - }, - { - "pk": 36131, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NOISY-RUDIGNON", - "center": "POINT (644298.6128488783724606 2370982.8712499090470374)", - "surface": 4170000, - "canton": null, - "numero_insee": "77338" - } - }, - { - "pk": 28382, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NOISY-SUR-ECOLE", - "center": "POINT (612738.5124372766586021 2375420.6566133578307927)", - "surface": 29870000, - "canton": null, - "numero_insee": "77339" - } - }, - { - "pk": 6604, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NONVILLE", - "center": "POINT (632435.4903715405380353 2365579.0896842908114195)", - "surface": 11570000, - "canton": null, - "numero_insee": "77340" - } - }, - { - "pk": 3140, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "NOYEN-SUR-SEINE", - "center": "POINT (674410.0728703107452020 2384046.2312455261126161)", - "surface": 12220000, - "canton": null, - "numero_insee": "77341" - } - }, - { - "pk": 4893, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "OBSONVILLE", - "center": "POINT (617192.7308330412488431 2357444.9996295822784305)", - "surface": 6980000, - "canton": null, - "numero_insee": "77342" - } - }, - { - "pk": 17368, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "OCQUERRE", - "center": "POINT (652850.4454500433057547 2448608.7199310520663857)", - "surface": 10140000, - "canton": null, - "numero_insee": "77343" - } - }, - { - "pk": 26703, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "OISSERY", - "center": "POINT (635105.4308462393237278 2452561.8635408026166260)", - "surface": 15130000, - "canton": null, - "numero_insee": "77344" - } - }, - { - "pk": 6929, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ORLY-SUR-MORIN", - "center": "POINT (665281.9410089555894956 2434003.8242288650944829)", - "surface": 5900000, - "canton": null, - "numero_insee": "77345" - } - }, - { - "pk": 37298, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LES ORMES-SUR-VOULZIE", - "center": "POINT (665696.8747854303801432 2384873.2562840380705893)", - "surface": 12220000, - "canton": null, - "numero_insee": "77347" - } - }, - { - "pk": 6256, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ORMESSON", - "center": "POINT (623371.5945097632938996 2360499.1609521838836372)", - "surface": 3820000, - "canton": null, - "numero_insee": "77348" - } - }, - { - "pk": 9842, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "OTHIS", - "center": "POINT (623186.6481607223395258 2453862.4685870357789099)", - "surface": 13030000, - "canton": null, - "numero_insee": "77349" - } - }, - { - "pk": 10010, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "OZOIR-LA-FERRIERE", - "center": "POINT (625186.5003760053077713 2418355.4310765662230551)", - "surface": 15660000, - "canton": null, - "numero_insee": "77350" - } - }, - { - "pk": 27103, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "OZOUER-LE-VOULGIS", - "center": "POINT (632383.5381963371764868 2407408.4050914570689201)", - "surface": 11330000, - "canton": null, - "numero_insee": "77352" - } - }, - { - "pk": 34984, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PALEY", - "center": "POINT (638384.0442862209165469 2360325.3133517242968082)", - "surface": 9270000, - "canton": null, - "numero_insee": "77353" - } - }, - { - "pk": 23966, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PAMFOU", - "center": "POINT (638971.2986425482667983 2385648.5414118389599025)", - "surface": 10390000, - "canton": null, - "numero_insee": "77354" - } - }, - { - "pk": 36609, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PAROY", - "center": "POINT (663975.5042385034030303 2387260.4296636455692351)", - "surface": 4260000, - "canton": null, - "numero_insee": "77355" - } - }, - { - "pk": 7254, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PASSY-SUR-SEINE", - "center": "POINT (674631.3464430508902296 2381546.3133877129293978)", - "surface": 4570000, - "canton": null, - "numero_insee": "77356" - } - }, - { - "pk": 29016, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PECY", - "center": "POINT (654414.1526958860922605 2405592.6853929003700614)", - "surface": 21080000, - "canton": null, - "numero_insee": "77357" - } - }, - { - "pk": 8483, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PENCHARD", - "center": "POINT (638082.1526786878239363 2443681.0378135340288281)", - "surface": 4330000, - "canton": null, - "numero_insee": "77358" - } - }, - { - "pk": 36129, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PERTHES", - "center": "POINT (615745.4783022808842361 2386754.0193008058704436)", - "surface": 12210000, - "canton": null, - "numero_insee": "77359" - } - }, - { - "pk": 31175, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PEZARCHES", - "center": "POINT (648019.0926100102951750 2416346.2277649361640215)", - "surface": 9010000, - "canton": null, - "numero_insee": "77360" - } - }, - { - "pk": 29961, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PIERRE-LEVEE", - "center": "POINT (651277.7189475996419787 2433385.2920089717954397)", - "surface": 12980000, - "canton": null, - "numero_insee": "77361" - } - }, - { - "pk": 24958, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE PIN", - "center": "POINT (621342.8412366143893450 2435134.5165748996660113)", - "surface": 6720000, - "canton": null, - "numero_insee": "77363" - } - }, - { - "pk": 28611, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE PLESSIS-AUX-BOIS", - "center": "POINT (631465.5887449621222913 2445126.3169102789834142)", - "surface": 3410000, - "canton": null, - "numero_insee": "77364" - } - }, - { - "pk": 28601, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE PLESSIS-FEU-AUSSOUX", - "center": "POINT (651650.8530584299005568 2412874.4410723191685975)", - "surface": 5590000, - "canton": null, - "numero_insee": "77365" - } - }, - { - "pk": 35688, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE PLESSIS-L'EVEQUE", - "center": "POINT (633563.4661878629121929 2445544.2456806525588036)", - "surface": 3560000, - "canton": null, - "numero_insee": "77366" - } - }, - { - "pk": 7888, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE PLESSIS-PLACY", - "center": "POINT (647428.6927215033210814 2450764.4508288651704788)", - "surface": 8230000, - "canton": null, - "numero_insee": "77367" - } - }, - { - "pk": 34032, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "POIGNY", - "center": "POINT (669419.0024343525292352 2394411.4395989938639104)", - "surface": 5980000, - "canton": null, - "numero_insee": "77368" - } - }, - { - "pk": 10417, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "POINCY", - "center": "POINT (643001.0914053343003616 2441821.2165133529342711)", - "surface": 6230000, - "canton": null, - "numero_insee": "77369" - } - }, - { - "pk": 32899, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "POLIGNY", - "center": "POINT (631186.0197077433113009 2359464.1131480736657977)", - "surface": 27240000, - "canton": null, - "numero_insee": "77370" - } - }, - { - "pk": 21476, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "POMMEUSE", - "center": "POINT (649150.6432570236502215 2424561.3856406547129154)", - "surface": 12860000, - "canton": null, - "numero_insee": "77371" - } - }, - { - "pk": 13621, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "POMPONNE", - "center": "POINT (624770.9848603806458414 2432061.2634438415989280)", - "surface": 7300000, - "canton": null, - "numero_insee": "77372" - } - }, - { - "pk": 15342, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PONTAULT-COMBAULT", - "center": "POINT (620361.6673266929574311 2420916.6287083546631038)", - "surface": 13590000, - "canton": null, - "numero_insee": "77373" - } - }, - { - "pk": 24135, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PONTCARRE", - "center": "POINT (627257.4799126950092614 2421975.3226366615854204)", - "surface": 9600000, - "canton": null, - "numero_insee": "77374" - } - }, - { - "pk": 6514, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PRECY-SUR-MARNE", - "center": "POINT (631633.0374580164207146 2437122.3808607459068298)", - "surface": 4820000, - "canton": null, - "numero_insee": "77376" - } - }, - { - "pk": 30888, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PRESLES-EN-BRIE", - "center": "POINT (629436.2487290584249422 2412787.3370802411809564)", - "surface": 17440000, - "canton": null, - "numero_insee": "77377" - } - }, - { - "pk": 22531, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PRINGY", - "center": "POINT (615710.1510461294092238 2390956.7034207582473755)", - "surface": 4120000, - "canton": null, - "numero_insee": "77378" - } - }, - { - "pk": 12642, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PROVINS", - "center": "POINT (670202.6009923231322318 2396419.4704620004631579)", - "surface": 14730000, - "canton": null, - "numero_insee": "77379" - } - }, - { - "pk": 35470, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "PUISIEUX", - "center": "POINT (642314.7242128533544019 2452022.2017350154928863)", - "surface": 9250000, - "canton": null, - "numero_insee": "77380" - } - }, - { - "pk": 8557, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "QUIERS", - "center": "POINT (646040.1077735037542880 2401819.4804342621937394)", - "surface": 11790000, - "canton": null, - "numero_insee": "77381" - } - }, - { - "pk": 26701, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "QUINCY-VOISINS", - "center": "POINT (639668.1895130282500759 2433587.6294065089896321)", - "surface": 10310000, - "canton": null, - "numero_insee": "77382" - } - }, - { - "pk": 24526, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "RAMPILLON", - "center": "POINT (654313.6413883081404492 2393783.5589929483830929)", - "surface": 23070000, - "canton": null, - "numero_insee": "77383" - } - }, - { - "pk": 26251, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "REAU", - "center": "POINT (621130.3426556898048148 2400909.2478733314201236)", - "surface": 13290000, - "canton": null, - "numero_insee": "77384" - } - }, - { - "pk": 3269, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "REBAIS", - "center": "POINT (665722.7469008394982666 2429204.3011350566521287)", - "surface": 11050000, - "canton": null, - "numero_insee": "77385" - } - }, - { - "pk": 32816, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "RECLOSES", - "center": "POINT (622681.1365538027603179 2371201.1434486121870577)", - "surface": 9330000, - "canton": null, - "numero_insee": "77386" - } - }, - { - "pk": 6936, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "REMAUVILLE", - "center": "POINT (636302.0386384240118787 2358006.0897442009299994)", - "surface": 10860000, - "canton": null, - "numero_insee": "77387" - } - }, - { - "pk": 13713, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "REUIL-EN-BRIE", - "center": "POINT (660527.5812508398666978 2440067.7783483876846731)", - "surface": 5920000, - "canton": null, - "numero_insee": "77388" - } - }, - { - "pk": 27319, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA ROCHETTE", - "center": "POINT (623825.4146854921709746 2389824.0950769330374897)", - "surface": 5860000, - "canton": null, - "numero_insee": "77389" - } - }, - { - "pk": 24079, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ROISSY-EN-BRIE", - "center": "POINT (623861.2892290662275627 2421246.2692818888463080)", - "surface": 13700000, - "canton": null, - "numero_insee": "77390" - } - }, - { - "pk": 7483, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ROUILLY", - "center": "POINT (670175.5465389951132238 2399621.4918250497430563)", - "surface": 7790000, - "canton": null, - "numero_insee": "77391" - } - }, - { - "pk": 10412, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ROUVRES", - "center": "POINT (627907.0907566961832345 2451800.8020941419526935)", - "surface": 4150000, - "canton": null, - "numero_insee": "77392" - } - }, - { - "pk": 5170, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "ROZAY-EN-BRIE", - "center": "POINT (646175.2806960358284414 2409525.9845150099135935)", - "surface": 3160000, - "canton": null, - "numero_insee": "77393" - } - }, - { - "pk": 6436, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "RUMONT", - "center": "POINT (611738.6957425908185542 2363403.5530050047673285)", - "surface": 6600000, - "canton": null, - "numero_insee": "77395" - } - }, - { - "pk": 27737, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "RUPEREUX", - "center": "POINT (672929.9539334120927379 2405248.6852577147074044)", - "surface": 6280000, - "canton": null, - "numero_insee": "77396" - } - }, - { - "pk": 33887, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAACY-SUR-MARNE", - "center": "POINT (664434.9837008948670700 2439500.3681514649651945)", - "surface": 13590000, - "canton": null, - "numero_insee": "77397" - } - }, - { - "pk": 30762, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-ANGE-LE-VIEL", - "center": "POINT (642157.8882840342121199 2363759.5951720909215510)", - "surface": 3240000, - "canton": null, - "numero_insee": "77399" - } - }, - { - "pk": 7285, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-AUGUSTIN", - "center": "POINT (650878.6862701100762933 2421373.7732783737592399)", - "surface": 10310000, - "canton": null, - "numero_insee": "77400" - } - }, - { - "pk": 14228, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINTE-AULDE", - "center": "POINT (661284.1328670174116269 2445277.6353326882235706)", - "surface": 8590000, - "canton": null, - "numero_insee": "77401" - } - }, - { - "pk": 18725, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-BARTHELEMY", - "center": "POINT (675464.1592401349917054 2425083.7580316569656134)", - "surface": 14960000, - "canton": null, - "numero_insee": "77402" - } - }, - { - "pk": 34729, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-BRICE", - "center": "POINT (673596.2956951407250017 2397448.8529791627079248)", - "surface": 11500000, - "canton": null, - "numero_insee": "77403" - } - }, - { - "pk": 33081, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINTE-COLOMBE", - "center": "POINT (668128.3209897159831598 2393199.6881688353605568)", - "surface": 8130000, - "canton": null, - "numero_insee": "77404" - } - }, - { - "pk": 29962, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-DENIS-LES-REBAIS", - "center": "POINT (663333.9642332874936983 2427683.1099285129457712)", - "surface": 15090000, - "canton": null, - "numero_insee": "77406" - } - }, - { - "pk": 30285, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-FARGEAU-PONTHIERRY", - "center": "POINT (613888.8202597828349099 2393343.0920457863248885)", - "surface": 16590000, - "canton": null, - "numero_insee": "77407" - } - }, - { - "pk": 5636, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-FIACRE", - "center": "POINT (645247.9508692765375599 2436436.5367908221669495)", - "surface": 2790000, - "canton": null, - "numero_insee": "77408" - } - }, - { - "pk": 32216, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-GERMAIN-LAVAL", - "center": "POINT (648734.0517133940011263 2379026.0315919867716730)", - "surface": 8850000, - "canton": null, - "numero_insee": "77409" - } - }, - { - "pk": 30884, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-GERMAIN-LAXIS", - "center": "POINT (627253.5488517670892179 2398659.1474041552282870)", - "surface": 7210000, - "canton": null, - "numero_insee": "77410" - } - }, - { - "pk": 36405, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-GERMAIN-SOUS-DOUE", - "center": "POINT (658825.3163595534861088 2428345.5225811712443829)", - "surface": 10100000, - "canton": null, - "numero_insee": "77411" - } - }, - { - "pk": 7470, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-GERMAIN-SUR-ECOLE", - "center": "POINT (612848.6655353956157342 2386129.2453231434337795)", - "surface": 2520000, - "canton": null, - "numero_insee": "77412" - } - }, - { - "pk": 35694, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-GERMAIN-SUR-MORIN", - "center": "POINT (636889.2556401860201731 2430862.3961954098194838)", - "surface": 4780000, - "canton": null, - "numero_insee": "77413" - } - }, - { - "pk": 37087, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-HILLIERS", - "center": "POINT (667939.5034269132884219 2403705.4718379108235240)", - "surface": 19070000, - "canton": null, - "numero_insee": "77414" - } - }, - { - "pk": 33072, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-JEAN-LES-DEUX-JUMEAUX", - "center": "POINT (650538.4777765610488132 2437982.1520356596447527)", - "surface": 13440000, - "canton": null, - "numero_insee": "77415" - } - }, - { - "pk": 21453, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-JUST-EN-BRIE", - "center": "POINT (657850.0585185374366120 2401618.8838391634635627)", - "surface": 7410000, - "canton": null, - "numero_insee": "77416" - } - }, - { - "pk": 36899, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-LEGER", - "center": "POINT (668638.0318524398608133 2427627.8405102621763945)", - "surface": 9780000, - "canton": null, - "numero_insee": "77417" - } - }, - { - "pk": 8975, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-LOUP-DE-NAUD", - "center": "POINT (665023.8158360472880304 2393473.6787113994359970)", - "surface": 10950000, - "canton": null, - "numero_insee": "77418" - } - }, - { - "pk": 3888, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MAMMES", - "center": "POINT (635645.8037566612474620 2376514.0139341256581247)", - "surface": 2230000, - "canton": null, - "numero_insee": "77419" - } - }, - { - "pk": 32865, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MARD", - "center": "POINT (626329.7230622018687427 2448985.6783631197176874)", - "surface": 6250000, - "canton": null, - "numero_insee": "77420" - } - }, - { - "pk": 11198, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MARS-VIEUX-MAISONS", - "center": "POINT (672339.1587072265101597 2415951.1088126841932535)", - "surface": 19080000, - "canton": null, - "numero_insee": "77421" - } - }, - { - "pk": 14858, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MARTIN-DES-CHAMPS", - "center": "POINT (673292.4166193030541763 2421563.0103412498719990)", - "surface": 10370000, - "canton": null, - "numero_insee": "77423" - } - }, - { - "pk": 35732, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MARTIN-DU-BOSCHET", - "center": "POINT (680349.1751631872029975 2415418.4138874993659556)", - "surface": 17090000, - "canton": null, - "numero_insee": "77424" - } - }, - { - "pk": 34243, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MARTIN-EN-BIERE", - "center": "POINT (617589.5365545410895720 2381665.8828765004873276)", - "surface": 7890000, - "canton": null, - "numero_insee": "77425" - } - }, - { - "pk": 7369, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MERY", - "center": "POINT (636974.8416114880237728 2396939.7250540177337825)", - "surface": 9960000, - "canton": null, - "numero_insee": "77426" - } - }, - { - "pk": 30939, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-MESMES", - "center": "POINT (627680.1721931649371982 2443093.1233732607215643)", - "surface": 7700000, - "canton": null, - "numero_insee": "77427" - } - }, - { - "pk": 32157, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-OUEN-EN-BRIE", - "center": "POINT (642983.6963949169730768 2396389.9283390594646335)", - "surface": 5700000, - "canton": null, - "numero_insee": "77428" - } - }, - { - "pk": 9148, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-OUEN-SUR-MORIN", - "center": "POINT (663475.7861852443311363 2434588.9759971122257411)", - "surface": 3760000, - "canton": null, - "numero_insee": "77429" - } - }, - { - "pk": 36408, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-PATHUS", - "center": "POINT (633000.8259263766231015 2452944.4049860364757478)", - "surface": 5350000, - "canton": null, - "numero_insee": "77430" - } - }, - { - "pk": 31727, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-PIERRE-LES-NEMOURS", - "center": "POINT (624452.9600054129259661 2362809.9399643186479807)", - "surface": 21690000, - "canton": null, - "numero_insee": "77431" - } - }, - { - "pk": 4987, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-REMY-LA-VANNE", - "center": "POINT (666466.2746559580555186 2424107.1119670006446540)", - "surface": 15120000, - "canton": null, - "numero_insee": "77432" - } - }, - { - "pk": 4212, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINTS", - "center": "POINT (653103.6694585438817739 2418590.6216594530269504)", - "surface": 20030000, - "canton": null, - "numero_insee": "77433" - } - }, - { - "pk": 12369, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-SAUVEUR-LES-BRAY", - "center": "POINT (664216.1910278402501717 2382459.0373968579806387)", - "surface": 6450000, - "canton": null, - "numero_insee": "77434" - } - }, - { - "pk": 12339, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-SAUVEUR-SUR-ECOLE", - "center": "POINT (614526.2067406282294542 2388945.3340883916243911)", - "surface": 7330000, - "canton": null, - "numero_insee": "77435" - } - }, - { - "pk": 3507, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-SIMEON", - "center": "POINT (662971.7405388897750527 2423176.9861877602525055)", - "surface": 12960000, - "canton": null, - "numero_insee": "77436" - } - }, - { - "pk": 27957, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-SOUPPLETS", - "center": "POINT (634036.8011091240914539 2448750.3542703907005489)", - "surface": 13730000, - "canton": null, - "numero_insee": "77437" - } - }, - { - "pk": 38062, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAINT-THIBAULT-DES-VIGNES", - "center": "POINT (624892.9329695953056216 2429460.5306410505436361)", - "surface": 4580000, - "canton": null, - "numero_insee": "77438" - } - }, - { - "pk": 26502, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SALINS", - "center": "POINT (650514.1185883507132530 2381542.8347120541147888)", - "surface": 10560000, - "canton": null, - "numero_insee": "77439" - } - }, - { - "pk": 26132, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAMMERON", - "center": "POINT (654238.1642734711058438 2438313.5611315104179084)", - "surface": 6170000, - "canton": null, - "numero_insee": "77440" - } - }, - { - "pk": 28996, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAMOIS-SUR-SEINE", - "center": "POINT (630778.6728146238019690 2384078.4811167567968369)", - "surface": 6320000, - "canton": null, - "numero_insee": "77441" - } - }, - { - "pk": 31091, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAMOREAU", - "center": "POINT (632012.2984992399578914 2380186.0766641432419419)", - "surface": 5630000, - "canton": null, - "numero_insee": "77442" - } - }, - { - "pk": 28414, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SANCY", - "center": "POINT (645791.2700292430818081 2431337.6786006405018270)", - "surface": 5430000, - "canton": null, - "numero_insee": "77443" - } - }, - { - "pk": 33462, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SANCY-LES-PROVINS", - "center": "POINT (677769.5663241783622652 2412794.8045849516056478)", - "surface": 18250000, - "canton": null, - "numero_insee": "77444" - } - }, - { - "pk": 25842, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SAVIGNY-LE-TEMPLE", - "center": "POINT (616833.5243795437272638 2400172.6278139771893620)", - "surface": 12080000, - "canton": null, - "numero_insee": "77445" - } - }, - { - "pk": 7840, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SEINE-PORT", - "center": "POINT (616078.4422265313332900 2394762.4843624937348068)", - "surface": 8580000, - "canton": null, - "numero_insee": "77447" - } - }, - { - "pk": 7501, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SEPT-SORTS", - "center": "POINT (656340.2675275681540370 2438231.2307401089929044)", - "surface": 3100000, - "canton": null, - "numero_insee": "77448" - } - }, - { - "pk": 14034, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SERRIS", - "center": "POINT (633115.5994312713155523 2427428.3123737145215273)", - "surface": 5690000, - "canton": null, - "numero_insee": "77449" - } - }, - { - "pk": 29000, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SERVON", - "center": "POINT (618727.9319949463242665 2412897.3909005359746516)", - "surface": 7380000, - "canton": null, - "numero_insee": "77450" - } - }, - { - "pk": 27185, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SIGNY-SIGNETS", - "center": "POINT (653259.5114234918728471 2435703.5582821159623563)", - "surface": 13410000, - "canton": null, - "numero_insee": "77451" - } - }, - { - "pk": 33567, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SIGY", - "center": "POINT (661081.2501745863119140 2386335.3527274057269096)", - "surface": 4770000, - "canton": null, - "numero_insee": "77452" - } - }, - { - "pk": 33046, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SIVRY-COURTRY", - "center": "POINT (630908.0453365654684603 2392485.5372170004993677)", - "surface": 22410000, - "canton": null, - "numero_insee": "77453" - } - }, - { - "pk": 31506, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SOGNOLLES-EN-MONTOIS", - "center": "POINT (660238.5043438721913844 2391331.7900211713276803)", - "surface": 10260000, - "canton": null, - "numero_insee": "77454" - } - }, - { - "pk": 28742, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SOIGNOLLES-EN-BRIE", - "center": "POINT (627298.8793291916372254 2405164.0755804516375065)", - "surface": 10750000, - "canton": null, - "numero_insee": "77455" - } - }, - { - "pk": 32840, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SOISY-BOUY", - "center": "POINT (671154.7476890278048813 2390323.2040948458015919)", - "surface": 11710000, - "canton": null, - "numero_insee": "77456" - } - }, - { - "pk": 33526, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SOLERS", - "center": "POINT (628686.2813920180778950 2406776.8655120255425572)", - "surface": 6240000, - "canton": null, - "numero_insee": "77457" - } - }, - { - "pk": 25696, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SOUPPES-SUR-LOING", - "center": "POINT (630529.3563015790423378 2354254.7621909212321043)", - "surface": 27560000, - "canton": null, - "numero_insee": "77458" - } - }, - { - "pk": 28822, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "SOURDUN", - "center": "POINT (675730.6128608628641814 2393564.1435585673898458)", - "surface": 23420000, - "canton": null, - "numero_insee": "77459" - } - }, - { - "pk": 27586, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TANCROU", - "center": "POINT (654379.1905766931595281 2445319.4263966446742415)", - "surface": 12150000, - "canton": null, - "numero_insee": "77460" - } - }, - { - "pk": 14127, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "THENISY", - "center": "POINT (662165.0589241854613647 2388345.9255041508004069)", - "surface": 5390000, - "canton": null, - "numero_insee": "77461" - } - }, - { - "pk": 29703, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "THIEUX", - "center": "POINT (623856.0230064938077703 2445662.6775323450565338)", - "surface": 12010000, - "canton": null, - "numero_insee": "77462" - } - }, - { - "pk": 11689, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "THOMERY", - "center": "POINT (632827.9799295298289508 2378391.6524382820352912)", - "surface": 3750000, - "canton": null, - "numero_insee": "77463" - } - }, - { - "pk": 30159, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "THORIGNY-SUR-MARNE", - "center": "POINT (627567.6253225130494684 2432685.2002242268063128)", - "surface": 5140000, - "canton": null, - "numero_insee": "77464" - } - }, - { - "pk": 32683, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "THOURY-FEROTTES", - "center": "POINT (644735.9850673238979653 2366583.3634516508318484)", - "surface": 16450000, - "canton": null, - "numero_insee": "77465" - } - }, - { - "pk": 34748, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TIGEAUX", - "center": "POINT (641239.0749598836991936 2425295.2405813867226243)", - "surface": 6140000, - "canton": null, - "numero_insee": "77466" - } - }, - { - "pk": 5444, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LA TOMBE", - "center": "POINT (656059.0365479331230745 2376686.0919411526992917)", - "surface": 7840000, - "canton": null, - "numero_insee": "77467" - } - }, - { - "pk": 28849, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TORCY", - "center": "POINT (623101.0995852912310511 2428344.7110796524211764)", - "surface": 6140000, - "canton": null, - "numero_insee": "77468" - } - }, - { - "pk": 11886, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TOUQUIN", - "center": "POINT (650931.0090454254532233 2415169.9569697510451078)", - "surface": 11740000, - "canton": null, - "numero_insee": "77469" - } - }, - { - "pk": 7358, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TOURNAN-EN-BRIE", - "center": "POINT (632413.6776886910665780 2415714.4012454077601433)", - "surface": 15500000, - "canton": null, - "numero_insee": "77470" - } - }, - { - "pk": 30684, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TOUSSON", - "center": "POINT (608967.9860691657522693 2371586.2333138156682253)", - "surface": 13260000, - "canton": null, - "numero_insee": "77471" - } - }, - { - "pk": 7506, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TREUZY-LEVELAY", - "center": "POINT (633951.6429370748810470 2363790.5428226944059134)", - "surface": 14100000, - "canton": null, - "numero_insee": "77473" - } - }, - { - "pk": 8350, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TRILBARDOU", - "center": "POINT (634218.5897115539992228 2439045.4246691013686359)", - "surface": 8030000, - "canton": null, - "numero_insee": "77474" - } - }, - { - "pk": 9375, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TRILPORT", - "center": "POINT (646117.2811003973474726 2440146.3465225561521947)", - "surface": 10920000, - "canton": null, - "numero_insee": "77475" - } - }, - { - "pk": 10797, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "TROCY-EN-MULTIEN", - "center": "POINT (645737.8125130148837343 2449549.4021912137977779)", - "surface": 7510000, - "canton": null, - "numero_insee": "77476" - } - }, - { - "pk": 25269, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "URY", - "center": "POINT (619478.2054055978078395 2371274.2788557102903724)", - "surface": 8290000, - "canton": null, - "numero_insee": "77477" - } - }, - { - "pk": 30538, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "USSY-SUR-MARNE", - "center": "POINT (654614.7661381444195285 2441118.6133847162127495)", - "surface": 13730000, - "canton": null, - "numero_insee": "77478" - } - }, - { - "pk": 30506, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VAIRES-SUR-MARNE", - "center": "POINT (621885.2218191756401211 2430135.7037094379775226)", - "surface": 6080000, - "canton": null, - "numero_insee": "77479" - } - }, - { - "pk": 32381, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VALENCE-EN-BRIE", - "center": "POINT (641093.7242735432228073 2383164.6393323345109820)", - "surface": 11000000, - "canton": null, - "numero_insee": "77480" - } - }, - { - "pk": 35674, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VANVILLE", - "center": "POINT (657503.0067565445788205 2395311.5287443329580128)", - "surface": 7540000, - "canton": null, - "numero_insee": "77481" - } - }, - { - "pk": 27516, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VARENNES-SUR-SEINE", - "center": "POINT (643968.8988819571677595 2374482.6222261218354106)", - "surface": 9950000, - "canton": null, - "numero_insee": "77482" - } - }, - { - "pk": 7266, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VARREDDES", - "center": "POINT (643270.9115266781300306 2445425.8893386339768767)", - "surface": 8030000, - "canton": null, - "numero_insee": "77483" - } - }, - { - "pk": 13222, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VAUCOURTOIS", - "center": "POINT (645472.5319368229247630 2433536.4774082568474114)", - "surface": 4630000, - "canton": null, - "numero_insee": "77484" - } - }, - { - "pk": 36578, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "LE VAUDOUE", - "center": "POINT (613667.6901597483083606 2372026.0113032036460936)", - "surface": 17150000, - "canton": null, - "numero_insee": "77485" - } - }, - { - "pk": 14604, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VAUDOY-EN-BRIE", - "center": "POINT (654867.1883813876193017 2411200.3975422615185380)", - "surface": 27500000, - "canton": null, - "numero_insee": "77486" - } - }, - { - "pk": 28602, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VAUX-LE-PENIL", - "center": "POINT (626611.2039273903938010 2391748.8788965092971921)", - "surface": 11810000, - "canton": null, - "numero_insee": "77487" - } - }, - { - "pk": 38029, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VAUX-SUR-LUNAIN", - "center": "POINT (646011.8473099895054474 2357687.6100771343335509)", - "surface": 8490000, - "canton": null, - "numero_insee": "77489" - } - }, - { - "pk": 24592, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VENDREST", - "center": "POINT (656444.9746247442672029 2449539.6433896860107780)", - "surface": 17710000, - "canton": null, - "numero_insee": "77490" - } - }, - { - "pk": 17594, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VENEUX-LES-SABLONS", - "center": "POINT (633949.7563135396922007 2375899.2995767896063626)", - "surface": 4010000, - "canton": null, - "numero_insee": "77491" - } - }, - { - "pk": 3942, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VERDELOT", - "center": "POINT (675409.1772849925328046 2431587.7068511652760208)", - "surface": 25620000, - "canton": null, - "numero_insee": "77492" - } - }, - { - "pk": 28582, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VERNEUIL-L'ETANG", - "center": "POINT (636512.2232686979696155 2404341.0130363041535020)", - "surface": 7750000, - "canton": null, - "numero_insee": "77493" - } - }, - { - "pk": 11841, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VERNOU-LA-CELLE-SUR-SEINE", - "center": "POINT (638229.7892558362800628 2378637.2877265578135848)", - "surface": 22360000, - "canton": null, - "numero_insee": "77494" - } - }, - { - "pk": 20504, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VERT-SAINT-DENIS", - "center": "POINT (621364.1311960433376953 2396908.4067706866189837)", - "surface": 16190000, - "canton": null, - "numero_insee": "77495" - } - }, - { - "pk": 34041, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VIEUX-CHAMPAGNE", - "center": "POINT (659073.6163537161191925 2398927.3174047274515033)", - "surface": 8880000, - "canton": null, - "numero_insee": "77496" - } - }, - { - "pk": 36953, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VIGNELY", - "center": "POINT (635134.2964511195896193 2437251.9287788891233504)", - "surface": 3580000, - "canton": null, - "numero_insee": "77498" - } - }, - { - "pk": 24197, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLEBEON", - "center": "POINT (643922.2608573395991698 2356268.9676673938520253)", - "surface": 16460000, - "canton": null, - "numero_insee": "77500" - } - }, - { - "pk": 32382, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLECERF", - "center": "POINT (637702.7308405799558386 2369926.5706695797853172)", - "surface": 10920000, - "canton": null, - "numero_insee": "77501" - } - }, - { - "pk": 28856, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLEMARECHAL", - "center": "POINT (639456.1093943932792172 2363736.8308527781628072)", - "surface": 14230000, - "canton": null, - "numero_insee": "77504" - } - }, - { - "pk": 36898, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLEMAREUIL", - "center": "POINT (647453.4912353401305154 2435954.7942693405784667)", - "surface": 10690000, - "canton": null, - "numero_insee": "77505" - } - }, - { - "pk": 31588, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLEMER", - "center": "POINT (636324.5699615182820708 2367213.0024936511181295)", - "surface": 18570000, - "canton": null, - "numero_insee": "77506" - } - }, - { - "pk": 9626, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLENAUXE-LA-PETITE", - "center": "POINT (672256.8586052737664431 2378323.9490818176418543)", - "surface": 20730000, - "canton": null, - "numero_insee": "77507" - } - }, - { - "pk": 29489, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLENEUVE-LE-COMTE", - "center": "POINT (636849.0330909944605082 2423757.2341778883710504)", - "surface": 19190000, - "canton": null, - "numero_insee": "77508" - } - }, - { - "pk": 11423, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLENEUVE-LES-BORDES", - "center": "POINT (651254.7139765551546589 2388654.1438052491284907)", - "surface": 20840000, - "canton": null, - "numero_insee": "77509" - } - }, - { - "pk": 31533, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLENEUVE-SAINT-DENIS", - "center": "POINT (633546.1736771876458079 2423829.4875071854330599)", - "surface": 7420000, - "canton": null, - "numero_insee": "77510" - } - }, - { - "pk": 8108, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLENEUVE-SOUS-DAMMARTIN", - "center": "POINT (621936.3800242680590600 2447847.9900896619074047)", - "surface": 7560000, - "canton": null, - "numero_insee": "77511" - } - }, - { - "pk": 8583, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLENEUVE-SUR-BELLOT", - "center": "POINT (673112.8601708420319483 2430967.8907522489316761)", - "surface": 9540000, - "canton": null, - "numero_insee": "77512" - } - }, - { - "pk": 34063, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLENOY", - "center": "POINT (637728.2716560979606584 2438174.3804142987355590)", - "surface": 7330000, - "canton": null, - "numero_insee": "77513" - } - }, - { - "pk": 8109, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLEPARISIS", - "center": "POINT (620516.2736064810305834 2438229.6472798124887049)", - "surface": 8300000, - "canton": null, - "numero_insee": "77514" - } - }, - { - "pk": 32861, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLEROY", - "center": "POINT (632686.5204657319700345 2442734.9976313537918031)", - "surface": 5740000, - "canton": null, - "numero_insee": "77515" - } - }, - { - "pk": 22553, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLE-SAINT-JACQUES", - "center": "POINT (641589.2607536958530545 2371860.6899255313910544)", - "surface": 10660000, - "canton": null, - "numero_insee": "77516" - } - }, - { - "pk": 8351, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLEVAUDE", - "center": "POINT (623846.8717549327993765 2434855.3770933761261404)", - "surface": 10000000, - "canton": null, - "numero_insee": "77517" - } - }, - { - "pk": 26897, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLIERS-EN-BIERE", - "center": "POINT (619433.5447462961310521 2388486.2345067751593888)", - "surface": 10680000, - "canton": null, - "numero_insee": "77518" - } - }, - { - "pk": 3976, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLIERS-SAINT-GEORGES", - "center": "POINT (678924.4016629700781778 2406400.1278767799958587)", - "surface": 33230000, - "canton": null, - "numero_insee": "77519" - } - }, - { - "pk": 14329, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLIERS-SOUS-GREZ", - "center": "POINT (622404.5072366569656879 2368396.7868052967824042)", - "surface": 12160000, - "canton": null, - "numero_insee": "77520" - } - }, - { - "pk": 28180, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLIERS-SUR-MORIN", - "center": "POINT (639014.9730476939585060 2427978.3373598400503397)", - "surface": 6270000, - "canton": null, - "numero_insee": "77521" - } - }, - { - "pk": 19247, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLIERS-SUR-SEINE", - "center": "POINT (677406.9250119248172268 2384671.9938683188520372)", - "surface": 11410000, - "canton": null, - "numero_insee": "77522" - } - }, - { - "pk": 36841, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VILLUIS", - "center": "POINT (675653.9841032641706988 2378953.0927274092100561)", - "surface": 9320000, - "canton": null, - "numero_insee": "77523" - } - }, - { - "pk": 6212, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VIMPELLES", - "center": "POINT (661410.1640126360580325 2382935.7031229338608682)", - "surface": 11380000, - "canton": null, - "numero_insee": "77524" - } - }, - { - "pk": 7020, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VINANTES", - "center": "POINT (629465.2427695315564051 2445009.4120172332040966)", - "surface": 5290000, - "canton": null, - "numero_insee": "77525" - } - }, - { - "pk": 36174, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VINCY-MANOEUVRE", - "center": "POINT (645406.4268930624239147 2453249.0511202719062567)", - "surface": 4940000, - "canton": null, - "numero_insee": "77526" - } - }, - { - "pk": 15098, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VOINSLES", - "center": "POINT (650079.3960692456457764 2409358.7641138136386871)", - "surface": 28490000, - "canton": null, - "numero_insee": "77527" - } - }, - { - "pk": 5259, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VOISENON", - "center": "POINT (624066.6810251317219809 2396831.0687594446353614)", - "surface": 3410000, - "canton": null, - "numero_insee": "77528" - } - }, - { - "pk": 8874, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VOULANGIS", - "center": "POINT (640624.3764114343794063 2426991.2176227113232017)", - "surface": 9590000, - "canton": null, - "numero_insee": "77529" - } - }, - { - "pk": 34635, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VOULTON", - "center": "POINT (673959.3353930956218392 2401855.0096218571998179)", - "surface": 26300000, - "canton": null, - "numero_insee": "77530" - } - }, - { - "pk": 37883, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VOULX", - "center": "POINT (646948.3964614911237732 2365301.0666474234312773)", - "surface": 12620000, - "canton": null, - "numero_insee": "77531" - } - }, - { - "pk": 35926, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VULAINES-LES-PROVINS", - "center": "POINT (665099.3729840718442574 2396376.3627346688881516)", - "surface": 10730000, - "canton": null, - "numero_insee": "77532" - } - }, - { - "pk": 7111, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "VULAINES-SUR-SEINE", - "center": "POINT (632001.3470278587192297 2381486.9156358689069748)", - "surface": 4390000, - "canton": null, - "numero_insee": "77533" - } - }, - { - "pk": 33502, - "model": "ishtar_common.town", - "fields": { - "departement": 78, - "name": "YEBLES", - "center": "POINT (631808.4355114692589268 2404401.4742631767876446)", - "surface": 11730000, - "canton": null, - "numero_insee": "77534" - } - }, - { - "pk": 29610, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ABLIS", - "center": "POINT (564063.0127068639267236 2392224.8262033788487315)", - "surface": 26220000, - "canton": null, - "numero_insee": "78003" - } - }, - { - "pk": 27788, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ACHERES", - "center": "POINT (580263.6558082398260012 2441294.0562484432011843)", - "surface": 9530000, - "canton": null, - "numero_insee": "78005" - } - }, - { - "pk": 8641, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ADAINVILLE", - "center": "POINT (550273.7921062494860962 2413724.6423819335177541)", - "surface": 10220000, - "canton": null, - "numero_insee": "78006" - } - }, - { - "pk": 6711, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "AIGREMONT", - "center": "POINT (576425.0092800380662084 2433656.8055396201089025)", - "surface": 3020000, - "canton": null, - "numero_insee": "78007" - } - }, - { - "pk": 32639, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ALLAINVILLE", - "center": "POINT (567822.3066405412973836 2385451.4526024363003671)", - "surface": 16310000, - "canton": null, - "numero_insee": "78009" - } - }, - { - "pk": 32678, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LES ALLUETS-LE-ROI", - "center": "POINT (569007.1438143659615889 2435195.7840247880667448)", - "surface": 7440000, - "canton": null, - "numero_insee": "78010" - } - }, - { - "pk": 16099, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ANDELU", - "center": "POINT (561425.9930510694393888 2432330.4772512507624924)", - "surface": 4010000, - "canton": null, - "numero_insee": "78013" - } - }, - { - "pk": 8601, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ANDRESY", - "center": "POINT (578951.9831098844297230 2442583.9357991395518184)", - "surface": 6920000, - "canton": null, - "numero_insee": "78015" - } - }, - { - "pk": 37141, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ARNOUVILLE-LES-MANTES", - "center": "POINT (554800.2582842307165265 2434876.8393699075095356)", - "surface": 9890000, - "canton": null, - "numero_insee": "78020" - } - }, - { - "pk": 5263, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "AUBERGENVILLE", - "center": "POINT (564259.1149860384175554 2440559.6796573619358242)", - "surface": 9090000, - "canton": null, - "numero_insee": "78029" - } - }, - { - "pk": 27120, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "AUFFARGIS", - "center": "POINT (568020.7660521803190932 2409570.0483003850094974)", - "surface": 17340000, - "canton": null, - "numero_insee": "78030" - } - }, - { - "pk": 9151, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "AUFFREVILLE-BRASSEUIL", - "center": "POINT (553659.4608569501433522 2439670.5267043299973011)", - "surface": 2340000, - "canton": null, - "numero_insee": "78031" - } - }, - { - "pk": 9528, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "AULNAY-SUR-MAULDRE", - "center": "POINT (563589.6621481548063457 2436851.6017421791329980)", - "surface": 2230000, - "canton": null, - "numero_insee": "78033" - } - }, - { - "pk": 25721, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "AUTEUIL", - "center": "POINT (561972.3195290907751769 2426831.3218808942474425)", - "surface": 4370000, - "canton": null, - "numero_insee": "78034" - } - }, - { - "pk": 26979, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "AUTOUILLET", - "center": "POINT (560366.3245357254054397 2427418.2994867279194295)", - "surface": 5130000, - "canton": null, - "numero_insee": "78036" - } - }, - { - "pk": 31387, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BAILLY", - "center": "POINT (581188.2065517622977495 2426491.8314235447905958)", - "surface": 6620000, - "canton": null, - "numero_insee": "78043" - } - }, - { - "pk": 24192, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BAZAINVILLE", - "center": "POINT (550793.9149859108729288 2423335.5726209352724254)", - "surface": 11980000, - "canton": null, - "numero_insee": "78048" - } - }, - { - "pk": 24356, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BAZEMONT", - "center": "POINT (566088.6539140163222328 2437172.7076336401514709)", - "surface": 6720000, - "canton": null, - "numero_insee": "78049" - } - }, - { - "pk": 7718, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BAZOCHES-SUR-GUYONNE", - "center": "POINT (564334.8216794898035005 2419546.1014200029894710)", - "surface": 5630000, - "canton": null, - "numero_insee": "78050" - } - }, - { - "pk": 9615, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BEHOUST", - "center": "POINT (554973.0713060232810676 2426172.3992286040447652)", - "surface": 5450000, - "canton": null, - "numero_insee": "78053" - } - }, - { - "pk": 35874, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BENNECOURT", - "center": "POINT (544065.2208391384920105 2450197.4396416726522148)", - "surface": 6900000, - "canton": null, - "numero_insee": "78057" - } - }, - { - "pk": 22291, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BEYNES", - "center": "POINT (565661.1802555363392457 2428463.2629679404199123)", - "surface": 18620000, - "canton": null, - "numero_insee": "78062" - } - }, - { - "pk": 31094, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BLARU", - "center": "POINT (537367.1051415594993159 2449441.0761222047731280)", - "surface": 15030000, - "canton": null, - "numero_insee": "78068" - } - }, - { - "pk": 22018, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOINVILLE-EN-MANTOIS", - "center": "POINT (556885.6331370713887736 2436795.5459483275189996)", - "surface": 4930000, - "canton": null, - "numero_insee": "78070" - } - }, - { - "pk": 7243, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOINVILLE-LE-GAILLARD", - "center": "POINT (565594.1050486839376390 2388635.0845339782536030)", - "surface": 12630000, - "canton": null, - "numero_insee": "78071" - } - }, - { - "pk": 37611, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOINVILLIERS", - "center": "POINT (550588.5308649057988077 2435942.3880602871067822)", - "surface": 3600000, - "canton": null, - "numero_insee": "78072" - } - }, - { - "pk": 7041, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOIS-D'ARCY", - "center": "POINT (576615.5705232872860506 2422851.0769167412072420)", - "surface": 5610000, - "canton": null, - "numero_insee": "78073" - } - }, - { - "pk": 14646, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOISSETS", - "center": "POINT (544941.0720730257453397 2429190.7021666765213013)", - "surface": 3930000, - "canton": null, - "numero_insee": "78076" - } - }, - { - "pk": 29527, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA BOISSIERE-ECOLE", - "center": "POINT (550702.4615659972187132 2410325.8735467800870538)", - "surface": 25520000, - "canton": null, - "numero_insee": "78077" - } - }, - { - "pk": 29653, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOISSY-MAUVOISIN", - "center": "POINT (544641.5365655488567427 2441096.2062676968052983)", - "surface": 5120000, - "canton": null, - "numero_insee": "78082" - } - }, - { - "pk": 29738, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOISSY-SANS-AVOIR", - "center": "POINT (560388.0781980667961761 2424816.7136761848814785)", - "surface": 4070000, - "canton": null, - "numero_insee": "78084" - } - }, - { - "pk": 30729, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BONNELLES", - "center": "POINT (577289.3508142185164616 2402142.4207554003223777)", - "surface": 10760000, - "canton": null, - "numero_insee": "78087" - } - }, - { - "pk": 36579, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BONNIERES-SUR-SEINE", - "center": "POINT (543890.9977389929117635 2447093.9333724449388683)", - "surface": 7940000, - "canton": null, - "numero_insee": "78089" - } - }, - { - "pk": 12682, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOUAFLE", - "center": "POINT (567763.7206654667388648 2440288.7990318345837295)", - "surface": 6960000, - "canton": null, - "numero_insee": "78090" - } - }, - { - "pk": 31305, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOUGIVAL", - "center": "POINT (585366.4440997580531985 2429428.8124666968360543)", - "surface": 2770000, - "canton": null, - "numero_insee": "78092" - } - }, - { - "pk": 29819, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BOURDONNE", - "center": "POINT (549741.7199678729521111 2417522.8131745713762939)", - "surface": 10920000, - "canton": null, - "numero_insee": "78096" - } - }, - { - "pk": 28680, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BREUIL-BOIS-ROBERT", - "center": "POINT (554369.9144234361592680 2438475.6601881193928421)", - "surface": 3810000, - "canton": null, - "numero_insee": "78104" - } - }, - { - "pk": 26930, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BREVAL", - "center": "POINT (541649.7639158697566018 2439870.4294630466029048)", - "surface": 11510000, - "canton": null, - "numero_insee": "78107" - } - }, - { - "pk": 6363, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LES BREVIAIRES", - "center": "POINT (561681.6949006092036143 2413719.9237611619755626)", - "surface": 19790000, - "canton": null, - "numero_insee": "78108" - } - }, - { - "pk": 11467, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BRUEIL-EN-VEXIN", - "center": "POINT (561698.2089935360709205 2447642.9860992296598852)", - "surface": 7420000, - "canton": null, - "numero_insee": "78113" - } - }, - { - "pk": 28872, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BUC", - "center": "POINT (584351.3129981156671420 2419213.3545222482644022)", - "surface": 8040000, - "canton": null, - "numero_insee": "78117" - } - }, - { - "pk": 25528, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BUCHELAY", - "center": "POINT (551430.5565436532488093 2442954.1070188344456255)", - "surface": 4940000, - "canton": null, - "numero_insee": "78118" - } - }, - { - "pk": 37651, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "BULLION", - "center": "POINT (573880.5104343510465696 2402914.4342575962655246)", - "surface": 21270000, - "canton": null, - "numero_insee": "78120" - } - }, - { - "pk": 34094, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CARRIERES-SOUS-POISSY", - "center": "POINT (577384.5495279962196946 2438568.1338881705887616)", - "surface": 7240000, - "canton": null, - "numero_insee": "78123" - } - }, - { - "pk": 7161, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CARRIERES-SUR-SEINE", - "center": "POINT (588322.9638420795090497 2434857.2420374797657132)", - "surface": 5080000, - "canton": null, - "numero_insee": "78124" - } - }, - { - "pk": 26061, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA CELLE-LES-BORDES", - "center": "POINT (571062.8376245551044121 2404792.1717442544177175)", - "surface": 22860000, - "canton": null, - "numero_insee": "78125" - } - }, - { - "pk": 13379, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA CELLE-SAINT-CLOUD", - "center": "POINT (585181.4185630225110799 2427626.0412631155923009)", - "surface": 5870000, - "canton": null, - "numero_insee": "78126" - } - }, - { - "pk": 30940, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CERNAY-LA-VILLE", - "center": "POINT (572137.5601156073389575 2407903.3245711000636220)", - "surface": 10030000, - "canton": null, - "numero_insee": "78128" - } - }, - { - "pk": 36215, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CHAMBOURCY", - "center": "POINT (577730.8223930400563404 2433067.3372611314989626)", - "surface": 7970000, - "canton": null, - "numero_insee": "78133" - } - }, - { - "pk": 26760, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CHANTELOUP-LES-VIGNES", - "center": "POINT (577656.2358977480325848 2441972.6825123191811144)", - "surface": 3410000, - "canton": null, - "numero_insee": "78138" - } - }, - { - "pk": 4376, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CHAPET", - "center": "POINT (570958.9356127522187307 2441116.0736830257810652)", - "surface": 5190000, - "canton": null, - "numero_insee": "78140" - } - }, - { - "pk": 36449, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CHATEAUFORT", - "center": "POINT (582180.1431314268847927 2415592.6873271935619414)", - "surface": 4910000, - "canton": null, - "numero_insee": "78143" - } - }, - { - "pk": 27789, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CHATOU", - "center": "POINT (586536.1380983855342492 2433141.1174092744477093)", - "surface": 5070000, - "canton": null, - "numero_insee": "78146" - } - }, - { - "pk": 7890, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CHAVENAY", - "center": "POINT (573972.0900223545031622 2427832.3440349218435585)", - "surface": 6120000, - "canton": null, - "numero_insee": "78152" - } - }, - { - "pk": 30207, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE CHESNAY", - "center": "POINT (584799.6250603006919846 2425421.3461958686821163)", - "surface": 4300000, - "canton": null, - "numero_insee": "78158" - } - }, - { - "pk": 27647, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CHOISEL", - "center": "POINT (576236.7676850802963600 2408337.9241807884536684)", - "surface": 8960000, - "canton": null, - "numero_insee": "78162" - } - }, - { - "pk": 35013, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CIVRY-LA-FORET", - "center": "POINT (547138.2308254039380699 2429709.3875272329896688)", - "surface": 9340000, - "canton": null, - "numero_insee": "78163" - } - }, - { - "pk": 17191, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CLAIREFONTAINE-EN-YVELINES", - "center": "POINT (568183.6278036682633683 2402066.1904631284996867)", - "surface": 17310000, - "canton": null, - "numero_insee": "78164" - } - }, - { - "pk": 32675, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "COIGNIERES", - "center": "POINT (568860.1983322493033484 2416882.1111871609464288)", - "surface": 8050000, - "canton": null, - "numero_insee": "78168" - } - }, - { - "pk": 24301, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CONDE-SUR-VESGRE", - "center": "POINT (551163.4825565710198134 2415032.9709738818928599)", - "surface": 10840000, - "canton": null, - "numero_insee": "78171" - } - }, - { - "pk": 34564, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CONFLANS-SAINTE-HONORINE", - "center": "POINT (582537.3617398112546653 2444615.3055505831725895)", - "surface": 9900000, - "canton": null, - "numero_insee": "78172" - } - }, - { - "pk": 8640, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "COURGENT", - "center": "POINT (550310.9184613613178954 2433238.2515502679161727)", - "surface": 2000000, - "canton": null, - "numero_insee": "78185" - } - }, - { - "pk": 5196, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CRAVENT", - "center": "POINT (537614.8084259630413726 2443739.3606098415330052)", - "surface": 6130000, - "canton": null, - "numero_insee": "78188" - } - }, - { - "pk": 26530, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CRESPIERES", - "center": "POINT (569437.5309830362675712 2431596.9591650064103305)", - "surface": 14950000, - "canton": null, - "numero_insee": "78189" - } - }, - { - "pk": 33892, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "CROISSY-SUR-SEINE", - "center": "POINT (585152.0655591426184401 2431128.1658584033139050)", - "surface": 3410000, - "canton": null, - "numero_insee": "78190" - } - }, - { - "pk": 24352, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "DAMMARTIN-EN-SERVE", - "center": "POINT (547194.0037986976094544 2435013.4303087713196874)", - "surface": 13820000, - "canton": null, - "numero_insee": "78192" - } - }, - { - "pk": 36873, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "DAMPIERRE-EN-YVELINES", - "center": "POINT (573206.4132707488024607 2411714.9056537374854088)", - "surface": 11310000, - "canton": null, - "numero_insee": "78193" - } - }, - { - "pk": 25263, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "DANNEMARIE", - "center": "POINT (546430.4926511648809537 2418595.9129577814601362)", - "surface": 3450000, - "canton": null, - "numero_insee": "78194" - } - }, - { - "pk": 13378, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "DAVRON", - "center": "POINT (571356.2697894785087556 2429511.5980580914765596)", - "surface": 6040000, - "canton": null, - "numero_insee": "78196" - } - }, - { - "pk": 7162, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "DROCOURT", - "center": "POINT (558371.9949684246676043 2450517.0930945347063243)", - "surface": 3860000, - "canton": null, - "numero_insee": "78202" - } - }, - { - "pk": 33149, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ECQUEVILLY", - "center": "POINT (569378.0762996630510315 2438701.2375257974490523)", - "surface": 11270000, - "canton": null, - "numero_insee": "78206" - } - }, - { - "pk": 7522, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ELANCOURT", - "center": "POINT (572336.3913152398308739 2420013.3332383320666850)", - "surface": 9270000, - "canton": null, - "numero_insee": "78208" - } - }, - { - "pk": 37870, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "EMANCE", - "center": "POINT (555498.2188478301977739 2399258.2114527090452611)", - "surface": 12170000, - "canton": null, - "numero_insee": "78209" - } - }, - { - "pk": 25667, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LES ESSARTS-LE-ROI", - "center": "POINT (567491.1501760996179655 2413068.0376119310967624)", - "surface": 19560000, - "canton": null, - "numero_insee": "78220" - } - }, - { - "pk": 12965, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "L'ETANG-LA-VILLE", - "center": "POINT (579658.7930454101879150 2429881.3245330518111587)", - "surface": 5350000, - "canton": null, - "numero_insee": "78224" - } - }, - { - "pk": 36389, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "EVECQUEMONT", - "center": "POINT (571112.9916937303496525 2446621.0243987673893571)", - "surface": 2530000, - "canton": null, - "numero_insee": "78227" - } - }, - { - "pk": 8288, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA FALAISE", - "center": "POINT (562481.4692346617812291 2437742.9369480223394930)", - "surface": 3040000, - "canton": null, - "numero_insee": "78230" - } - }, - { - "pk": 25343, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FAVRIEUX", - "center": "POINT (549064.2263019530801103 2438731.5338601479306817)", - "surface": 3180000, - "canton": null, - "numero_insee": "78231" - } - }, - { - "pk": 25484, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FEUCHEROLLES", - "center": "POINT (573742.6472878082422540 2431332.7929823431186378)", - "surface": 13180000, - "canton": null, - "numero_insee": "78233" - } - }, - { - "pk": 9150, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FLACOURT", - "center": "POINT (549075.9269086787244305 2437330.6930777477100492)", - "surface": 4340000, - "canton": null, - "numero_insee": "78234" - } - }, - { - "pk": 21063, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FLEXANVILLE", - "center": "POINT (556353.0162819913821295 2428685.6298003275878727)", - "surface": 8850000, - "canton": null, - "numero_insee": "78236" - } - }, - { - "pk": 27537, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FLINS-NEUVE-EGLISE", - "center": "POINT (544208.9022303863894194 2432987.1578065268695354)", - "surface": 1210000, - "canton": null, - "numero_insee": "78237" - } - }, - { - "pk": 32037, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FLINS-SUR-SEINE", - "center": "POINT (565955.9465327266370878 2441074.2083606887608767)", - "surface": 8780000, - "canton": null, - "numero_insee": "78238" - } - }, - { - "pk": 28873, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FOLLAINVILLE-DENNEMONT", - "center": "POINT (553995.3172264436725527 2447378.4610927915200591)", - "surface": 9760000, - "canton": null, - "numero_insee": "78239" - } - }, - { - "pk": 9022, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FONTENAY-MAUVOISIN", - "center": "POINT (549449.4221401703543961 2440535.9556313226930797)", - "surface": 3280000, - "canton": null, - "numero_insee": "78245" - } - }, - { - "pk": 3896, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FONTENAY-SAINT-PERE", - "center": "POINT (557393.1511617238866165 2447907.1908016726374626)", - "surface": 13060000, - "canton": null, - "numero_insee": "78246" - } - }, - { - "pk": 10555, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FOURQUEUX", - "center": "POINT (579341.8472368320217356 2431880.0216943705454469)", - "surface": 3680000, - "canton": null, - "numero_insee": "78251" - } - }, - { - "pk": 11201, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "FRENEUSE", - "center": "POINT (546866.0396064349915832 2450320.8913177112117410)", - "surface": 10490000, - "canton": null, - "numero_insee": "78255" - } - }, - { - "pk": 24145, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GAILLON-SUR-MONTCIENT", - "center": "POINT (567899.3713053563842550 2447995.0581279098987579)", - "surface": 5010000, - "canton": null, - "numero_insee": "78261" - } - }, - { - "pk": 6167, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GALLUIS", - "center": "POINT (559909.5254827886819839 2422210.9391253227367997)", - "surface": 4550000, - "canton": null, - "numero_insee": "78262" - } - }, - { - "pk": 19725, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GAMBAIS", - "center": "POINT (551420.1973768147872761 2420238.6863839747384191)", - "surface": 22830000, - "canton": null, - "numero_insee": "78263" - } - }, - { - "pk": 31386, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GAMBAISEUIL", - "center": "POINT (554944.0914168962044641 2417666.3494488447904587)", - "surface": 19150000, - "canton": null, - "numero_insee": "78264" - } - }, - { - "pk": 12006, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GARANCIERES", - "center": "POINT (557483.7970188639592379 2425092.6365313264541328)", - "surface": 10370000, - "canton": null, - "numero_insee": "78265" - } - }, - { - "pk": 30976, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GARGENVILLE", - "center": "POINT (561428.9904157537966967 2443938.2774587348103523)", - "surface": 8650000, - "canton": null, - "numero_insee": "78267" - } - }, - { - "pk": 19216, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GAZERAN", - "center": "POINT (558760.9828085316112265 2403988.7731141643598676)", - "surface": 25730000, - "canton": null, - "numero_insee": "78269" - } - }, - { - "pk": 30461, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GOMMECOURT", - "center": "POINT (545644.4441534404177219 2452812.3395594721660018)", - "surface": 5720000, - "canton": null, - "numero_insee": "78276" - } - }, - { - "pk": 9667, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GOUPILLIERES", - "center": "POINT (558130.6886208241339773 2431502.3844341561198235)", - "surface": 5670000, - "canton": null, - "numero_insee": "78278" - } - }, - { - "pk": 35081, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GOUSSONVILLE", - "center": "POINT (558191.4338971985271201 2436206.0586457238532603)", - "surface": 4650000, - "canton": null, - "numero_insee": "78281" - } - }, - { - "pk": 11240, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GRANDCHAMP", - "center": "POINT (546771.6221682395553216 2413695.3911019326187670)", - "surface": 6070000, - "canton": null, - "numero_insee": "78283" - } - }, - { - "pk": 7115, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GRESSEY", - "center": "POINT (546065.9709348267642781 2426298.1268888362683356)", - "surface": 7160000, - "canton": null, - "numero_insee": "78285" - } - }, - { - "pk": 26332, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GROSROUVRE", - "center": "POINT (557323.8239129944704473 2420288.0226487671025097)", - "surface": 12610000, - "canton": null, - "numero_insee": "78289" - } - }, - { - "pk": 4124, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GUERNES", - "center": "POINT (549099.0973657311405987 2446537.0252023790962994)", - "surface": 8640000, - "canton": null, - "numero_insee": "78290" - } - }, - { - "pk": 25344, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GUERVILLE", - "center": "POINT (556262.6912572608562186 2439492.1487655369564891)", - "surface": 10130000, - "canton": null, - "numero_insee": "78291" - } - }, - { - "pk": 25720, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GUITRANCOURT", - "center": "POINT (559113.3990125583950430 2445620.0460961358621716)", - "surface": 7390000, - "canton": null, - "numero_insee": "78296" - } - }, - { - "pk": 17130, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "GUYANCOURT", - "center": "POINT (580747.4217672328231856 2419383.2930361274629831)", - "surface": 13250000, - "canton": null, - "numero_insee": "78297" - } - }, - { - "pk": 8890, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "HARDRICOURT", - "center": "POINT (567116.4784741988405585 2445887.1147056845948100)", - "surface": 3370000, - "canton": null, - "numero_insee": "78299" - } - }, - { - "pk": 13334, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "HARGEVILLE", - "center": "POINT (556616.3982197600416839 2433090.8060184838250279)", - "surface": 6970000, - "canton": null, - "numero_insee": "78300" - } - }, - { - "pk": 13036, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA HAUTEVILLE", - "center": "POINT (547686.3868205011822283 2412001.8567373803816736)", - "surface": 4880000, - "canton": null, - "numero_insee": "78302" - } - }, - { - "pk": 37143, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "HERBEVILLE", - "center": "POINT (567216.9430160510819405 2433879.9288397012278438)", - "surface": 6490000, - "canton": null, - "numero_insee": "78305" - } - }, - { - "pk": 14443, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "HERMERAY", - "center": "POINT (552137.6111230902606621 2406235.0178290214389563)", - "surface": 18350000, - "canton": null, - "numero_insee": "78307" - } - }, - { - "pk": 18242, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "HOUDAN", - "center": "POINT (545597.4149315383983776 2422491.6255311858840287)", - "surface": 10400000, - "canton": null, - "numero_insee": "78310" - } - }, - { - "pk": 12412, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "HOUILLES", - "center": "POINT (589009.9623063857434317 2436464.0776987588033080)", - "surface": 4460000, - "canton": null, - "numero_insee": "78311" - } - }, - { - "pk": 12542, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ISSOU", - "center": "POINT (559833.0570544330403209 2443324.5331013179384172)", - "surface": 4770000, - "canton": null, - "numero_insee": "78314" - } - }, - { - "pk": 33572, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "JAMBVILLE", - "center": "POINT (564279.6627311011543497 2450066.1644497825764120)", - "surface": 4910000, - "canton": null, - "numero_insee": "78317" - } - }, - { - "pk": 6106, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "JEUFOSSE", - "center": "POINT (541474.5412102979607880 2448874.9546750951558352)", - "surface": 3620000, - "canton": null, - "numero_insee": "78320" - } - }, - { - "pk": 31711, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "JOUARS-PONTCHARTRAIN", - "center": "POINT (568422.2715001879259944 2421381.5310901734046638)", - "surface": 9770000, - "canton": null, - "numero_insee": "78321" - } - }, - { - "pk": 32244, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "JOUY-EN-JOSAS", - "center": "POINT (587158.0682733756257221 2418636.4693130580708385)", - "surface": 10240000, - "canton": null, - "numero_insee": "78322" - } - }, - { - "pk": 11608, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "JOUY-MAUVOISIN", - "center": "POINT (549437.7211826690472662 2441936.7928112535737455)", - "surface": 2820000, - "canton": null, - "numero_insee": "78324" - } - }, - { - "pk": 9561, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "JUMEAUVILLE", - "center": "POINT (559408.0513079398078844 2434314.9521254426799715)", - "surface": 7690000, - "canton": null, - "numero_insee": "78325" - } - }, - { - "pk": 7523, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "JUZIERS", - "center": "POINT (563623.6054292480694130 2444757.1638941783457994)", - "surface": 8730000, - "canton": null, - "numero_insee": "78327" - } - }, - { - "pk": 22038, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LAINVILLE-EN-VEXIN", - "center": "POINT (561964.9157471985090524 2451647.8606532048434019)", - "surface": 7760000, - "canton": null, - "numero_insee": "78329" - } - }, - { - "pk": 25138, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LEVIS-SAINT-NOM", - "center": "POINT (570382.8988326152320951 2414293.0652928100898862)", - "surface": 8400000, - "canton": null, - "numero_insee": "78334" - } - }, - { - "pk": 36448, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LIMAY", - "center": "POINT (556223.3839055320713669 2444194.9565418073907495)", - "surface": 11540000, - "canton": null, - "numero_insee": "78335" - } - }, - { - "pk": 28589, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LIMETZ-VILLEZ", - "center": "POINT (542452.5825245408341289 2451584.9017699947580695)", - "surface": 9470000, - "canton": null, - "numero_insee": "78337" - } - }, - { - "pk": 30546, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LES LOGES-EN-JOSAS", - "center": "POINT (585460.3765493187820539 2418221.9640954346396029)", - "surface": 2490000, - "canton": null, - "numero_insee": "78343" - } - }, - { - "pk": 26050, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LOMMOYE", - "center": "POINT (539908.6643787438515574 2444659.1000175359658897)", - "surface": 9580000, - "canton": null, - "numero_insee": "78344" - } - }, - { - "pk": 37208, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LONGNES", - "center": "POINT (544481.5155356300529093 2436291.6550069530494511)", - "surface": 14000000, - "canton": null, - "numero_insee": "78346" - } - }, - { - "pk": 6881, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LONGVILLIERS", - "center": "POINT (575028.1226750583155081 2397320.1197314090095460)", - "surface": 14110000, - "canton": null, - "numero_insee": "78349" - } - }, - { - "pk": 19133, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LOUVECIENNES", - "center": "POINT (583569.5441854977980256 2428913.4140380728058517)", - "surface": 5450000, - "canton": null, - "numero_insee": "78350" - } - }, - { - "pk": 14170, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAGNANVILLE", - "center": "POINT (552245.2458742186427116 2441259.7794764027930796)", - "surface": 4270000, - "canton": null, - "numero_insee": "78354" - } - }, - { - "pk": 18436, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAGNY-LES-HAMEAUX", - "center": "POINT (578975.6507563510676846 2415866.0469601727090776)", - "surface": 16690000, - "canton": null, - "numero_insee": "78356" - } - }, - { - "pk": 15720, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAISONS-LAFFITTE", - "center": "POINT (586384.0752102517290041 2439344.0080816708505154)", - "surface": 6930000, - "canton": null, - "numero_insee": "78358" - } - }, - { - "pk": 29100, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MANTES-LA-JOLIE", - "center": "POINT (552818.0149072187487036 2444566.7644082037732005)", - "surface": 9490000, - "canton": null, - "numero_insee": "78361" - } - }, - { - "pk": 13919, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MANTES-LA-VILLE", - "center": "POINT (554240.5884741288609803 2441976.9195444732904434)", - "surface": 6240000, - "canton": null, - "numero_insee": "78362" - } - }, - { - "pk": 5201, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MARCQ", - "center": "POINT (562349.1318724910961464 2429636.3721492616459727)", - "surface": 4790000, - "canton": null, - "numero_insee": "78364" - } - }, - { - "pk": 35982, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAREIL-LE-GUYON", - "center": "POINT (564318.9186359257437289 2421447.2687127962708473)", - "surface": 4100000, - "canton": null, - "numero_insee": "78366" - } - }, - { - "pk": 27396, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAREIL-MARLY", - "center": "POINT (580846.9463628234807402 2431392.2927955058403313)", - "surface": 1770000, - "canton": null, - "numero_insee": "78367" - } - }, - { - "pk": 24595, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAREIL-SUR-MAULDRE", - "center": "POINT (566129.6731081244070083 2432269.7530799005180597)", - "surface": 4350000, - "canton": null, - "numero_insee": "78368" - } - }, - { - "pk": 22770, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MARLY-LE-ROI", - "center": "POINT (581962.7035229103639722 2429600.4235949409194291)", - "surface": 6660000, - "canton": null, - "numero_insee": "78372" - } - }, - { - "pk": 25529, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAULE", - "center": "POINT (563509.6880120594287291 2434449.3193985968828201)", - "surface": 17340000, - "canton": null, - "numero_insee": "78380" - } - }, - { - "pk": 33013, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAULETTE", - "center": "POINT (547012.4786355793476105 2420802.2800997300073504)", - "surface": 7930000, - "canton": null, - "numero_insee": "78381" - } - }, - { - "pk": 35425, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAURECOURT", - "center": "POINT (579236.2368653684388846 2444487.5822014482691884)", - "surface": 3710000, - "canton": null, - "numero_insee": "78382" - } - }, - { - "pk": 10316, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MAUREPAS", - "center": "POINT (569642.2685926675330848 2419090.1662499015219510)", - "surface": 8440000, - "canton": null, - "numero_insee": "78383" - } - }, - { - "pk": 27189, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MEDAN", - "center": "POINT (574373.5346284894039854 2439643.6560607012361288)", - "surface": 2910000, - "canton": null, - "numero_insee": "78384" - } - }, - { - "pk": 28797, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MENERVILLE", - "center": "POINT (545651.3249812446301803 2440003.9022006271407008)", - "surface": 3510000, - "canton": null, - "numero_insee": "78385" - } - }, - { - "pk": 37976, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MERE", - "center": "POINT (562013.3232562566408888 2421928.3265411453321576)", - "surface": 10530000, - "canton": null, - "numero_insee": "78389" - } - }, - { - "pk": 35737, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MERICOURT", - "center": "POINT (547778.2701476905494928 2448927.5839063390158117)", - "surface": 2460000, - "canton": null, - "numero_insee": "78391" - } - }, - { - "pk": 23199, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE MESNIL-LE-ROI", - "center": "POINT (584207.9144578250125051 2436323.7568085277453065)", - "surface": 3750000, - "canton": null, - "numero_insee": "78396" - } - }, - { - "pk": 13071, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE MESNIL-SAINT-DENIS", - "center": "POINT (572672.5955274959560484 2415713.1958441040478647)", - "surface": 9070000, - "canton": null, - "numero_insee": "78397" - } - }, - { - "pk": 10998, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LES MESNULS", - "center": "POINT (563051.5969796276185662 2417433.9274660805240273)", - "surface": 6590000, - "canton": null, - "numero_insee": "78398" - } - }, - { - "pk": 4080, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MEULAN-EN-YVELINES", - "center": "POINT (568921.7343162093311548 2445401.8883892619051039)", - "surface": 3440000, - "canton": null, - "numero_insee": "78401" - } - }, - { - "pk": 10189, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MEZIERES-SUR-SEINE", - "center": "POINT (559364.5488722742302343 2439518.0788956107571721)", - "surface": 10810000, - "canton": null, - "numero_insee": "78402" - } - }, - { - "pk": 36217, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MEZY-SUR-SEINE", - "center": "POINT (565722.3435178769286722 2445074.9193033883348107)", - "surface": 4800000, - "canton": null, - "numero_insee": "78403" - } - }, - { - "pk": 29965, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MILLEMONT", - "center": "POINT (554996.4863143673865125 2423370.6882105409167707)", - "surface": 5800000, - "canton": null, - "numero_insee": "78404" - } - }, - { - "pk": 37455, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MILON-LA-CHAPELLE", - "center": "POINT (578587.1376573720481247 2414461.8284849934279919)", - "surface": 3080000, - "canton": null, - "numero_insee": "78406" - } - }, - { - "pk": 36665, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MITTAINVILLE", - "center": "POINT (548325.2036525732837617 2407404.0042903875000775)", - "surface": 10690000, - "canton": null, - "numero_insee": "78407" - } - }, - { - "pk": 9366, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MOISSON", - "center": "POINT (550750.7899172097677365 2452454.7229496762156487)", - "surface": 10110000, - "canton": null, - "numero_insee": "78410" - } - }, - { - "pk": 8202, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MONDREVILLE", - "center": "POINT (542797.1972797561902553 2434276.2487594275735319)", - "surface": 4470000, - "canton": null, - "numero_insee": "78413" - } - }, - { - "pk": 34858, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MONTAINVILLE", - "center": "POINT (564436.1776941940188408 2431354.9782128194347024)", - "surface": 4780000, - "canton": null, - "numero_insee": "78415" - } - }, - { - "pk": 12146, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MONTALET-LE-BOIS", - "center": "POINT (562877.9989187677856535 2450154.5068657621741295)", - "surface": 3030000, - "canton": null, - "numero_insee": "78416" - } - }, - { - "pk": 30449, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MONTCHAUVET", - "center": "POINT (547912.8106331003364176 2432817.9512783233076334)", - "surface": 8040000, - "canton": null, - "numero_insee": "78417" - } - }, - { - "pk": 4284, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MONTESSON", - "center": "POINT (585516.2444442490814254 2435434.1173052284866571)", - "surface": 7360000, - "canton": null, - "numero_insee": "78418" - } - }, - { - "pk": 12781, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MONTFORT-L'AMAURY", - "center": "POINT (561134.5267454814165831 2419319.1983211552724242)", - "surface": 5740000, - "canton": null, - "numero_insee": "78420" - } - }, - { - "pk": 37145, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MONTIGNY-LE-BRETONNEUX", - "center": "POINT (577338.6261967069003731 2420155.2867953716777265)", - "surface": 10730000, - "canton": null, - "numero_insee": "78423" - } - }, - { - "pk": 9394, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MORAINVILLIERS", - "center": "POINT (571290.1037136955419555 2437416.3689571321010590)", - "surface": 7460000, - "canton": null, - "numero_insee": "78431" - } - }, - { - "pk": 9023, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MOUSSEAUX-SUR-SEINE", - "center": "POINT (549766.0810130224563181 2450545.2441138797439635)", - "surface": 7200000, - "canton": null, - "numero_insee": "78437" - } - }, - { - "pk": 26531, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "MULCENT", - "center": "POINT (549726.4363898098235950 2431332.0867236405611038)", - "surface": 3580000, - "canton": null, - "numero_insee": "78439" - } - }, - { - "pk": 10554, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LES MUREAUX", - "center": "POINT (568938.4811196356313303 2443400.6980291069485247)", - "surface": 12380000, - "canton": null, - "numero_insee": "78440" - } - }, - { - "pk": 8219, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "NEAUPHLE-LE-CHATEAU", - "center": "POINT (568201.2160375557141379 2423881.3879771772772074)", - "surface": 2200000, - "canton": null, - "numero_insee": "78442" - } - }, - { - "pk": 18233, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "NEAUPHLE-LE-VIEUX", - "center": "POINT (564896.6865495246602222 2424153.9446503524668515)", - "surface": 7640000, - "canton": null, - "numero_insee": "78443" - } - }, - { - "pk": 25402, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "NEAUPHLETTE", - "center": "POINT (541768.1975951436907053 2437669.9444484263658524)", - "surface": 9770000, - "canton": null, - "numero_insee": "78444" - } - }, - { - "pk": 30975, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "NEZEL", - "center": "POINT (563477.8852446993114427 2438251.6058584121055901)", - "surface": 1330000, - "canton": null, - "numero_insee": "78451" - } - }, - { - "pk": 12277, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "NOISY-LE-ROI", - "center": "POINT (579277.8286632093368098 2427576.5742309908382595)", - "surface": 5590000, - "canton": null, - "numero_insee": "78455" - } - }, - { - "pk": 25920, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "OINVILLE-SUR-MONTCIENT", - "center": "POINT (564100.4682537422049791 2447563.0112888128496706)", - "surface": 3830000, - "canton": null, - "numero_insee": "78460" - } - }, - { - "pk": 24961, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ORCEMONT", - "center": "POINT (561096.7336735628778115 2399905.4369117212481797)", - "surface": 10590000, - "canton": null, - "numero_insee": "78464" - } - }, - { - "pk": 28735, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ORGERUS", - "center": "POINT (552966.8348661871859804 2426756.0417362684383988)", - "surface": 14470000, - "canton": null, - "numero_insee": "78465" - } - }, - { - "pk": 30544, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ORGEVAL", - "center": "POINT (573008.7161198502872139 2435329.3449881058186293)", - "surface": 15470000, - "canton": null, - "numero_insee": "78466" - } - }, - { - "pk": 26384, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ORPHIN", - "center": "POINT (559114.7141863857395947 2397587.2499816035851836)", - "surface": 16630000, - "canton": null, - "numero_insee": "78470" - } - }, - { - "pk": 5221, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ORSONVILLE", - "center": "POINT (562208.6674877575132996 2386605.3450641678646207)", - "surface": 9720000, - "canton": null, - "numero_insee": "78472" - } - }, - { - "pk": 4303, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ORVILLIERS", - "center": "POINT (548948.5171697739278898 2428623.7614951590076089)", - "surface": 5950000, - "canton": null, - "numero_insee": "78474" - } - }, - { - "pk": 11199, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "OSMOY", - "center": "POINT (554443.4992051208391786 2429670.3480855561792850)", - "surface": 2590000, - "canton": null, - "numero_insee": "78475" - } - }, - { - "pk": 7023, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PARAY-DOUAVILLE", - "center": "POINT (564927.1409557334845886 2384626.6594402655027807)", - "surface": 10170000, - "canton": null, - "numero_insee": "78478" - } - }, - { - "pk": 30715, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE PECQ", - "center": "POINT (582936.4790782245108858 2432810.7458726796321571)", - "surface": 2870000, - "canton": null, - "numero_insee": "78481" - } - }, - { - "pk": 20302, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PERDREAUVILLE", - "center": "POINT (546939.5699279060354456 2441515.6617305586114526)", - "surface": 11280000, - "canton": null, - "numero_insee": "78484" - } - }, - { - "pk": 37969, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE PERRAY-EN-YVELINES", - "center": "POINT (563606.3071857620961964 2410934.0859239888377488)", - "surface": 13500000, - "canton": null, - "numero_insee": "78486" - } - }, - { - "pk": 26980, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PLAISIR", - "center": "POINT (571303.9494357777293772 2423807.2871892368420959)", - "surface": 17640000, - "canton": null, - "numero_insee": "78490" - } - }, - { - "pk": 30160, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "POIGNY-LA-FORET", - "center": "POINT (557113.9740420734742656 2409478.8287751246243715)", - "surface": 23590000, - "canton": null, - "numero_insee": "78497" - } - }, - { - "pk": 3638, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "POISSY", - "center": "POINT (577304.6020040260627866 2436165.8541448251344264)", - "surface": 12920000, - "canton": null, - "numero_insee": "78498" - } - }, - { - "pk": 5388, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PONTHEVRARD", - "center": "POINT (568345.6544680314837024 2394662.3513645222410560)", - "surface": 2620000, - "canton": null, - "numero_insee": "78499" - } - }, - { - "pk": 15495, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PORCHEVILLE", - "center": "POINT (558342.2007371354848146 2442111.2688093800097704)", - "surface": 4620000, - "canton": null, - "numero_insee": "78501" - } - }, - { - "pk": 10032, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE PORT-MARLY", - "center": "POINT (583249.2378716313978657 2431312.3539865724742413)", - "surface": 1440000, - "canton": null, - "numero_insee": "78502" - } - }, - { - "pk": 21052, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PORT-VILLEZ", - "center": "POINT (539952.7780237615806982 2451363.9061455707997084)", - "surface": 5350000, - "canton": null, - "numero_insee": "78503" - } - }, - { - "pk": 21816, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PRUNAY-LE-TEMPLE", - "center": "POINT (551145.6751781320199370 2429142.4541200073435903)", - "surface": 6740000, - "canton": null, - "numero_insee": "78505" - } - }, - { - "pk": 30903, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "PRUNAY-EN-YVELINES", - "center": "POINT (560661.6839981251396239 2392096.3084857733920217)", - "surface": 27170000, - "canton": null, - "numero_insee": "78506" - } - }, - { - "pk": 27398, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA QUEUE-LES-YVELINES", - "center": "POINT (558103.4029710916802287 2422796.2484790417365730)", - "surface": 5780000, - "canton": null, - "numero_insee": "78513" - } - }, - { - "pk": 33846, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "RAMBOUILLET", - "center": "POINT (562344.8309317594394088 2406220.2738125994801521)", - "surface": 35900000, - "canton": null, - "numero_insee": "78517" - } - }, - { - "pk": 12828, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "RENNEMOULIN", - "center": "POINT (578389.8527626229915768 2426068.1171427383087575)", - "surface": 2210000, - "canton": null, - "numero_insee": "78518" - } - }, - { - "pk": 24594, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "RICHEBOURG", - "center": "POINT (548375.7310127940727398 2425316.7359773963689804)", - "surface": 10680000, - "canton": null, - "numero_insee": "78520" - } - }, - { - "pk": 36629, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ROCHEFORT-EN-YVELINES", - "center": "POINT (573610.4815005841664970 2399309.6540066972374916)", - "surface": 12780000, - "canton": null, - "numero_insee": "78522" - } - }, - { - "pk": 11419, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ROCQUENCOURT", - "center": "POINT (582893.4348235684446990 2426005.7796235042624176)", - "surface": 2880000, - "canton": null, - "numero_insee": "78524" - } - }, - { - "pk": 5529, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ROLLEBOISE", - "center": "POINT (546193.1979114515706897 2447013.0887138834223151)", - "surface": 3010000, - "canton": null, - "numero_insee": "78528" - } - }, - { - "pk": 33015, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "ROSNY-SUR-SEINE", - "center": "POINT (546615.1595170904183760 2444414.8852903037331998)", - "surface": 19230000, - "canton": null, - "numero_insee": "78531" - } - }, - { - "pk": 8015, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAILLY", - "center": "POINT (560281.4830659808358178 2449532.3969869734719396)", - "surface": 5460000, - "canton": null, - "numero_insee": "78536" - } - }, - { - "pk": 37951, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-ARNOULT-EN-YVELINES", - "center": "POINT (570326.8238893488887697 2397080.6214259974658489)", - "surface": 12690000, - "canton": null, - "numero_insee": "78537" - } - }, - { - "pk": 9272, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-CYR-L'ECOLE", - "center": "POINT (580015.9757854345953092 2423079.6953234178945422)", - "surface": 5110000, - "canton": null, - "numero_insee": "78545" - } - }, - { - "pk": 7679, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-FORGET", - "center": "POINT (574999.1528317446354777 2412730.6067645824514329)", - "surface": 6020000, - "canton": null, - "numero_insee": "78548" - } - }, - { - "pk": 7406, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-GERMAIN-DE-LA-GRANGE", - "center": "POINT (568082.7343376175267622 2426081.8942898414097726)", - "surface": 5320000, - "canton": null, - "numero_insee": "78550" - } - }, - { - "pk": 18260, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-GERMAIN-EN-LAYE", - "center": "POINT (582492.6385456742718816 2438010.5236223493702710)", - "surface": 49400000, - "canton": null, - "numero_insee": "78551" - } - }, - { - "pk": 33586, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-HILARION", - "center": "POINT (555068.6960678064497188 2402757.0712963449768722)", - "surface": 14270000, - "canton": null, - "numero_insee": "78557" - } - }, - { - "pk": 3451, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-ILLIERS-LA-VILLE", - "center": "POINT (541929.0641292524524033 2442374.4304644432850182)", - "surface": 6650000, - "canton": null, - "numero_insee": "78558" - } - }, - { - "pk": 7473, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-ILLIERS-LE-BOIS", - "center": "POINT (539538.4856938224984333 2441053.6113837412558496)", - "surface": 4440000, - "canton": null, - "numero_insee": "78559" - } - }, - { - "pk": 27996, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-LAMBERT", - "center": "POINT (575680.3150207033613697 2415037.8968540602363646)", - "surface": 6570000, - "canton": null, - "numero_insee": "78561" - } - }, - { - "pk": 25527, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-LEGER-EN-YVELINES", - "center": "POINT (557470.7269778625341132 2414685.4046833058819175)", - "surface": 35050000, - "canton": null, - "numero_insee": "78562" - } - }, - { - "pk": 26702, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-MARTIN-DE-BRETHENCOURT", - "center": "POINT (568879.4678543681511655 2390663.9923392841592431)", - "surface": 16630000, - "canton": null, - "numero_insee": "78564" - } - }, - { - "pk": 7635, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-MARTIN-DES-CHAMPS", - "center": "POINT (554631.0774184087058529 2431172.9303501243703067)", - "surface": 6220000, - "canton": null, - "numero_insee": "78565" - } - }, - { - "pk": 25922, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-MARTIN-LA-GARENNE", - "center": "POINT (551682.2499965836759657 2448760.0615035132505000)", - "surface": 15960000, - "canton": null, - "numero_insee": "78567" - } - }, - { - "pk": 33499, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINTE-MESME", - "center": "POINT (570661.3528038810472935 2392980.5322433020919561)", - "surface": 8350000, - "canton": null, - "numero_insee": "78569" - } - }, - { - "pk": 27997, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-NOM-LA-BRETECHE", - "center": "POINT (576660.3248862139880657 2429455.9388876222074032)", - "surface": 11830000, - "canton": null, - "numero_insee": "78571" - } - }, - { - "pk": 25315, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-REMY-LES-CHEVREUSE", - "center": "POINT (581012.0967425158014521 2411680.2100890474393964)", - "surface": 9850000, - "canton": null, - "numero_insee": "78575" - } - }, - { - "pk": 37375, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAINT-REMY-L'HONORE", - "center": "POINT (566059.3073210308793932 2416758.6062627285718918)", - "surface": 10240000, - "canton": null, - "numero_insee": "78576" - } - }, - { - "pk": 6050, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SARTROUVILLE", - "center": "POINT (588097.6767479188274592 2437857.3684839652851224)", - "surface": 8450000, - "canton": null, - "numero_insee": "78586" - } - }, - { - "pk": 9927, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SAULX-MARCHAIS", - "center": "POINT (563166.3554844788741320 2427641.8513203989714384)", - "surface": 2200000, - "canton": null, - "numero_insee": "78588" - } - }, - { - "pk": 32437, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SENLISSE", - "center": "POINT (573123.1054559355834499 2409712.8238151082769036)", - "surface": 8140000, - "canton": null, - "numero_insee": "78590" - } - }, - { - "pk": 32477, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SEPTEUIL", - "center": "POINT (552119.5303511311067268 2432352.7541749938391149)", - "surface": 9470000, - "canton": null, - "numero_insee": "78591" - } - }, - { - "pk": 35981, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SOINDRES", - "center": "POINT (551258.0228177853859961 2439650.4620649362914264)", - "surface": 5200000, - "canton": null, - "numero_insee": "78597" - } - }, - { - "pk": 21640, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "SONCHAMP", - "center": "POINT (565408.6541905674384907 2398840.7311812210828066)", - "surface": 46370000, - "canton": null, - "numero_insee": "78601" - } - }, - { - "pk": 8374, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "TACOIGNIERES", - "center": "POINT (550669.6124714305624366 2426236.5089829037897289)", - "surface": 3210000, - "canton": null, - "numero_insee": "78605" - } - }, - { - "pk": 29526, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE TARTRE-GAUDRAN", - "center": "POINT (545992.0148982200771570 2411187.1538275289349258)", - "surface": 4340000, - "canton": null, - "numero_insee": "78606" - } - }, - { - "pk": 12226, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE TERTRE-SAINT-DENIS", - "center": "POINT (546565.2329570450820029 2438410.4624084583483636)", - "surface": 2880000, - "canton": null, - "numero_insee": "78608" - } - }, - { - "pk": 30974, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "TESSANCOURT-SUR-AUBETTE", - "center": "POINT (569304.3873226804425940 2447506.4842148614116013)", - "surface": 4450000, - "canton": null, - "numero_insee": "78609" - } - }, - { - "pk": 33891, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "THIVERVAL-GRIGNON", - "center": "POINT (570374.0871718005510047 2427301.8853928782045841)", - "surface": 11310000, - "canton": null, - "numero_insee": "78615" - } - }, - { - "pk": 6820, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "THOIRY", - "center": "POINT (560440.4482945826603100 2430521.0198692972771823)", - "surface": 7100000, - "canton": null, - "numero_insee": "78616" - } - }, - { - "pk": 31722, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "TILLY", - "center": "POINT (544022.9824579214910045 2431284.4579635895788670)", - "surface": 7730000, - "canton": null, - "numero_insee": "78618" - } - }, - { - "pk": 34340, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "TOUSSUS-LE-NOBLE", - "center": "POINT (583874.4852450278121978 2416407.4360172282904387)", - "surface": 4020000, - "canton": null, - "numero_insee": "78620" - } - }, - { - "pk": 31710, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "TRAPPES", - "center": "POINT (574741.2177130630007014 2419633.1930500608868897)", - "surface": 13700000, - "canton": null, - "numero_insee": "78621" - } - }, - { - "pk": 4742, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE TREMBLAY-SUR-MAULDRE", - "center": "POINT (566227.6187906500417739 2420562.6206284137442708)", - "surface": 6050000, - "canton": null, - "numero_insee": "78623" - } - }, - { - "pk": 36446, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "TRIEL-SUR-SEINE", - "center": "POINT (575953.5451535340398550 2442158.5563422031700611)", - "surface": 13750000, - "canton": null, - "numero_insee": "78624" - } - }, - { - "pk": 10190, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VAUX-SUR-SEINE", - "center": "POINT (573421.8956373394466937 2445739.7549872384406626)", - "surface": 8420000, - "canton": null, - "numero_insee": "78638" - } - }, - { - "pk": 7286, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VELIZY-VILLACOUBLAY", - "center": "POINT (589743.7270656409673393 2420559.4496135525405407)", - "surface": 8960000, - "canton": null, - "numero_insee": "78640" - } - }, - { - "pk": 35503, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VERNEUIL-SUR-SEINE", - "center": "POINT (572542.3017219968605787 2443230.7283436483703554)", - "surface": 9600000, - "canton": null, - "numero_insee": "78642" - } - }, - { - "pk": 19288, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VERNOUILLET", - "center": "POINT (573462.9430974246934056 2440836.8345013018697500)", - "surface": 6720000, - "canton": null, - "numero_insee": "78643" - } - }, - { - "pk": 9666, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA VERRIERE", - "center": "POINT (571657.7383804343407974 2417405.8691116785630584)", - "surface": 2100000, - "canton": null, - "numero_insee": "78644" - } - }, - { - "pk": 20393, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VERSAILLES", - "center": "POINT (583922.5556432536104694 2422612.0871140467934310)", - "surface": 26060000, - "canton": null, - "numero_insee": "78646" - } - }, - { - "pk": 32677, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VERT", - "center": "POINT (552071.0421201091958210 2438156.2500460557639599)", - "surface": 3750000, - "canton": null, - "numero_insee": "78647" - } - }, - { - "pk": 12144, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LE VESINET", - "center": "POINT (584837.6271858047693968 2432826.6783491102978587)", - "surface": 5020000, - "canton": null, - "numero_insee": "78650" - } - }, - { - "pk": 8162, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VICQ", - "center": "POINT (562589.4222309199394658 2424835.1226146644912660)", - "surface": 4480000, - "canton": null, - "numero_insee": "78653" - } - }, - { - "pk": 34533, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VIEILLE-EGLISE-EN-YVELINES", - "center": "POINT (565932.8520018432755023 2407951.4685906176455319)", - "surface": 9740000, - "canton": null, - "numero_insee": "78655" - } - }, - { - "pk": 12626, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "LA VILLENEUVE-EN-CHEVRIE", - "center": "POINT (540991.7821988402865827 2446769.5341509510762990)", - "surface": 11760000, - "canton": null, - "numero_insee": "78668" - } - }, - { - "pk": 6712, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VILLENNES-SUR-SEINE", - "center": "POINT (574990.6506112148053944 2437647.4834624142386019)", - "surface": 5020000, - "canton": null, - "numero_insee": "78672" - } - }, - { - "pk": 29317, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VILLEPREUX", - "center": "POINT (576190.1872120895422995 2425849.5584869259037077)", - "surface": 10420000, - "canton": null, - "numero_insee": "78674" - } - }, - { - "pk": 9786, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VILLETTE", - "center": "POINT (552784.8392791169462726 2436561.1405636421404779)", - "surface": 4620000, - "canton": null, - "numero_insee": "78677" - } - }, - { - "pk": 25164, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VILLIERS-LE-MAHIEU", - "center": "POINT (558656.9240347937447950 2428404.6856603347696364)", - "surface": 6900000, - "canton": null, - "numero_insee": "78681" - } - }, - { - "pk": 37376, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VILLIERS-SAINT-FREDERIC", - "center": "POINT (566593.5400361618958414 2424668.4811396324075758)", - "surface": 5070000, - "canton": null, - "numero_insee": "78683" - } - }, - { - "pk": 32895, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VIROFLAY", - "center": "POINT (587824.9439794271020219 2422644.7972171539440751)", - "surface": 3490000, - "canton": null, - "numero_insee": "78686" - } - }, - { - "pk": 7379, - "model": "ishtar_common.town", - "fields": { - "departement": 79, - "name": "VOISINS-LE-BRETONNEUX", - "center": "POINT (578759.6021554586477578 2417765.5431691175326705)", - "surface": 3620000, - "canton": null, - "numero_insee": "78688" - } - }, - { - "pk": 14595, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "L'ABSIE", - "center": "POINT (378316.3890926293097436 2187124.0310154850594699)", - "surface": 13190000, - "canton": null, - "numero_insee": "79001" - } - }, - { - "pk": 5456, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ADILLY", - "center": "POINT (397189.4819671272998676 2192383.7951370920054615)", - "surface": 12950000, - "canton": null, - "numero_insee": "79002" - } - }, - { - "pk": 28969, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AIFFRES", - "center": "POINT (387962.4357178717618808 2146067.0336664551869035)", - "surface": 25890000, - "canton": null, - "numero_insee": "79003" - } - }, - { - "pk": 20693, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AIGONNAY", - "center": "POINT (400936.9595287793199532 2150577.8604532242752612)", - "surface": 14280000, - "canton": null, - "numero_insee": "79004" - } - }, - { - "pk": 17093, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AIRVAULT", - "center": "POINT (411384.4722857657470740 2206612.9227956896647811)", - "surface": 49280000, - "canton": null, - "numero_insee": "79005" - } - }, - { - "pk": 35191, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LES ALLEUDS", - "center": "POINT (418409.9276074554072693 2131504.6420326167717576)", - "surface": 9240000, - "canton": null, - "numero_insee": "79006" - } - }, - { - "pk": 5877, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ALLONNE", - "center": "POINT (391693.7950008546467870 2179127.0492938864044845)", - "surface": 23210000, - "canton": null, - "numero_insee": "79007" - } - }, - { - "pk": 16990, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AMAILLOUX", - "center": "POINT (397545.2786698262207210 2197791.3846756820566952)", - "surface": 37030000, - "canton": null, - "numero_insee": "79008" - } - }, - { - "pk": 7133, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AMURE", - "center": "POINT (372967.2217366982949898 2143841.7807395849376917)", - "surface": 14700000, - "canton": null, - "numero_insee": "79009" - } - }, - { - "pk": 30141, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ARCAIS", - "center": "POINT (366419.0367064370075241 2148992.6478730323724449)", - "surface": 15090000, - "canton": null, - "numero_insee": "79010" - } - }, - { - "pk": 27135, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ARDILLEUX", - "center": "POINT (415868.0415148689062335 2124176.9893600046634674)", - "surface": 10590000, - "canton": null, - "numero_insee": "79011" - } - }, - { - "pk": 16554, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ARGENTON-LES-VALLEES", - "center": "POINT (386523.4064344333019108 2223622.6703014438971877)", - "surface": 28630000, - "canton": null, - "numero_insee": "79013" - } - }, - { - "pk": 14571, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ARGENTON-L'EGLISE", - "center": "POINT (403374.6053034807555377 2231267.7296981127001345)", - "surface": 25970000, - "canton": null, - "numero_insee": "79014" - } - }, - { - "pk": 30661, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ASNIERES-EN-POITOU", - "center": "POINT (402956.2710622518206947 2124170.5696341358125210)", - "surface": 19130000, - "canton": null, - "numero_insee": "79015" - } - }, - { - "pk": 23875, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ASSAIS-LES-JUMEAUX", - "center": "POINT (416428.0420462534530088 2201850.4296212964691222)", - "surface": 53220000, - "canton": null, - "numero_insee": "79016" - } - }, - { - "pk": 16940, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AUBIGNE", - "center": "POINT (407804.9211962955305353 2118805.5916074439883232)", - "surface": 29640000, - "canton": null, - "numero_insee": "79018" - } - }, - { - "pk": 22823, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AUBIGNY", - "center": "POINT (413383.3940296460641548 2194819.2879255409352481)", - "surface": 11970000, - "canton": null, - "numero_insee": "79019" - } - }, - { - "pk": 5683, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AUGE", - "center": "POINT (398321.0833835630910471 2164368.6049321037717164)", - "surface": 23340000, - "canton": null, - "numero_insee": "79020" - } - }, - { - "pk": 24042, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AVAILLES-THOUARSAIS", - "center": "POINT (411364.6602707805577666 2209014.8056370080448687)", - "surface": 10920000, - "canton": null, - "numero_insee": "79022" - } - }, - { - "pk": 33570, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AVON", - "center": "POINT (420417.5769862388260663 2155042.4114695009775460)", - "surface": 12610000, - "canton": null, - "numero_insee": "79023" - } - }, - { - "pk": 19124, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AZAY-LE-BRULE", - "center": "POINT (399764.2915689292130992 2159275.9680394232273102)", - "surface": 22160000, - "canton": null, - "numero_insee": "79024" - } - }, - { - "pk": 24311, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "AZAY-SUR-THOUET", - "center": "POINT (393760.8719263924285769 2183347.7398250061087310)", - "surface": 20390000, - "canton": null, - "numero_insee": "79025" - } - }, - { - "pk": 3247, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA BATAILLE", - "center": "POINT (410768.6693668026127852 2123534.3585940944030881)", - "surface": 6300000, - "canton": null, - "numero_insee": "79027" - } - }, - { - "pk": 23128, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BEAULIEU-SOUS-PARTHENAY", - "center": "POINT (404911.8718313376884907 2178335.1690731188282371)", - "surface": 26810000, - "canton": null, - "numero_insee": "79029" - } - }, - { - "pk": 18293, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BEAUVOIR-SUR-NIORT", - "center": "POINT (383048.8639175766147673 2135016.6412719027139246)", - "surface": 23620000, - "canton": null, - "numero_insee": "79031" - } - }, - { - "pk": 20710, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BECELEUF", - "center": "POINT (381473.5743727877852507 2168333.5238855569623411)", - "surface": 19070000, - "canton": null, - "numero_insee": "79032" - } - }, - { - "pk": 8989, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BELLEVILLE", - "center": "POINT (381993.2316099631716497 2129502.9445333965122700)", - "surface": 11800000, - "canton": null, - "numero_insee": "79033" - } - }, - { - "pk": 8438, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BESSINES", - "center": "POINT (380343.7574559429194778 2147505.6865222346968949)", - "surface": 11470000, - "canton": null, - "numero_insee": "79034" - } - }, - { - "pk": 12614, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE BEUGNON", - "center": "POINT (382780.0224803924793378 2179854.3817301602102816)", - "surface": 16570000, - "canton": null, - "numero_insee": "79035" - } - }, - { - "pk": 20246, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BOISME", - "center": "POINT (388505.1923129722708836 2201720.3793825833126903)", - "surface": 35430000, - "canton": null, - "numero_insee": "79038" - } - }, - { - "pk": 4164, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BOISSEROLLES", - "center": "POINT (384612.7273939596489072 2127422.5819532116875052)", - "surface": 8650000, - "canton": null, - "numero_insee": "79039" - } - }, - { - "pk": 36111, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA BOISSIERE-EN-GATINE", - "center": "POINT (391622.5572767713456415 2175623.3953891191631556)", - "surface": 11120000, - "canton": null, - "numero_insee": "79040" - } - }, - { - "pk": 13749, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BOUGON", - "center": "POINT (415715.3528574194060639 2154803.4160855743102729)", - "surface": 11970000, - "canton": null, - "numero_insee": "79042" - } - }, - { - "pk": 16593, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BOUILLE-LORETZ", - "center": "POINT (401243.3082059440785088 2234853.1658780104480684)", - "surface": 26700000, - "canton": null, - "numero_insee": "79043" - } - }, - { - "pk": 15338, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BOUILLE-SAINT-PAUL", - "center": "POINT (398484.8634262625128031 2229526.0185418934561312)", - "surface": 20580000, - "canton": null, - "numero_insee": "79044" - } - }, - { - "pk": 7377, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BOUIN", - "center": "POINT (418272.5560339703224599 2123896.5636168909259140)", - "surface": 8310000, - "canton": null, - "numero_insee": "79045" - } - }, - { - "pk": 6452, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE BOURDET", - "center": "POINT (370781.8375964474398643 2141822.0101506235077977)", - "surface": 8300000, - "canton": null, - "numero_insee": "79046" - } - }, - { - "pk": 19212, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BOUSSAIS", - "center": "POINT (401586.6703724465332925 2205331.1166627411730587)", - "surface": 20050000, - "canton": null, - "numero_insee": "79047" - } - }, - { - "pk": 17504, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CRECHE", - "center": "POINT (396395.3016202957369387 2155144.5528249088674784)", - "surface": 34550000, - "canton": null, - "numero_insee": "79048" - } - }, - { - "pk": 23882, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BRESSUIRE", - "center": "POINT (385235.1372488474007696 2209900.4758536396548152)", - "surface": 182020000, - "canton": null, - "numero_insee": "79049" - } - }, - { - "pk": 8959, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BRETIGNOLLES", - "center": "POINT (376608.6476563137839548 2212231.5644922526553273)", - "surface": 13100000, - "canton": null, - "numero_insee": "79050" - } - }, - { - "pk": 32614, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE BREUIL-BERNARD", - "center": "POINT (378756.7067142447922379 2194433.9768279087729752)", - "surface": 8320000, - "canton": null, - "numero_insee": "79051" - } - }, - { - "pk": 5206, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE BREUIL-SOUS-ARGENTON", - "center": "POINT (388503.5369224006426521 2226241.1499771839007735)", - "surface": 19650000, - "canton": null, - "numero_insee": "79053" - } - }, - { - "pk": 26629, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BRIE", - "center": "POINT (419211.3707773757632822 2216285.6636097035370767)", - "surface": 12280000, - "canton": null, - "numero_insee": "79054" - } - }, - { - "pk": 19125, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BRIEUIL-SUR-CHIZE", - "center": "POINT (394111.7012111596995965 2128601.8006908237002790)", - "surface": 8040000, - "canton": null, - "numero_insee": "79055" - } - }, - { - "pk": 29637, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BRION-PRES-THOUET", - "center": "POINT (408182.4108275640755892 2230806.9460101379081607)", - "surface": 8460000, - "canton": null, - "numero_insee": "79056" - } - }, - { - "pk": 15796, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BRIOUX-SUR-BOUTONNE", - "center": "POINT (402508.0766439792932943 2129972.1787831229157746)", - "surface": 15550000, - "canton": null, - "numero_insee": "79057" - } - }, - { - "pk": 18903, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "BRULAIN", - "center": "POINT (395441.1508189942105673 2137320.6710839304141700)", - "surface": 24890000, - "canton": null, - "numero_insee": "79058" - } - }, - { - "pk": 34892, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE BUSSEAU", - "center": "POINT (375372.4045378045411780 2179993.6324063278734684)", - "surface": 27830000, - "canton": null, - "numero_insee": "79059" - } - }, - { - "pk": 6574, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CAUNAY", - "center": "POINT (426480.3685017331736162 2135975.2942580347880721)", - "surface": 14470000, - "canton": null, - "numero_insee": "79060" - } - }, - { - "pk": 27494, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CELLES-SUR-BELLE", - "center": "POINT (402917.7387661655084230 2140985.5451441714540124)", - "surface": 37570000, - "canton": null, - "numero_insee": "79061" - } - }, - { - "pk": 4858, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CERIZAY", - "center": "POINT (370448.2033180736470968 2206776.3278159885667264)", - "surface": 18890000, - "canton": null, - "numero_insee": "79062" - } - }, - { - "pk": 32365, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CERSAY", - "center": "POINT (394858.1972587961936370 2232398.5688443453982472)", - "surface": 36970000, - "canton": null, - "numero_insee": "79063" - } - }, - { - "pk": 32421, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHAIL", - "center": "POINT (413664.6714921050006524 2136470.0198601679876447)", - "surface": 12640000, - "canton": null, - "numero_insee": "79064" - } - }, - { - "pk": 18935, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHANTECORPS", - "center": "POINT (409384.7617185355629772 2169964.6736629637889564)", - "surface": 19190000, - "canton": null, - "numero_insee": "79068" - } - }, - { - "pk": 34451, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHANTELOUP", - "center": "POINT (382917.2347230609157123 2199672.6787353651598096)", - "surface": 20680000, - "canton": null, - "numero_insee": "79069" - } - }, - { - "pk": 5996, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CHAPELLE-BATON", - "center": "POINT (395600.7365711078164168 2166548.1408668882213533)", - "surface": 16920000, - "canton": null, - "numero_insee": "79070" - } - }, - { - "pk": 21615, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CHAPELLE-BERTRAND", - "center": "POINT (406375.9484828623826616 2182851.1714577181264758)", - "surface": 19450000, - "canton": null, - "numero_insee": "79071" - } - }, - { - "pk": 4050, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CHAPELLE-GAUDIN", - "center": "POINT (392579.9572479436174035 2217367.2114352453500032)", - "surface": 17090000, - "canton": null, - "numero_insee": "79072" - } - }, - { - "pk": 13211, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CHAPELLE-POUILLOUX", - "center": "POINT (423136.2066410232218914 2128841.2080723219551146)", - "surface": 7920000, - "canton": null, - "numero_insee": "79074" - } - }, - { - "pk": 34008, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CHAPELLE-SAINT-ETIENNE", - "center": "POINT (376792.9681428857147694 2189813.8478656560182571)", - "surface": 18750000, - "canton": null, - "numero_insee": "79075" - } - }, - { - "pk": 23963, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CHAPELLE-SAINT-LAURENT", - "center": "POINT (385747.4525196158792824 2196293.0393695863895118)", - "surface": 28790000, - "canton": null, - "numero_insee": "79076" - } - }, - { - "pk": 37026, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA CHAPELLE-THIREUIL", - "center": "POINT (378403.6330387675552629 2176515.4918197500519454)", - "surface": 17370000, - "canton": null, - "numero_insee": "79077" - } - }, - { - "pk": 18292, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PRISSE-LA-CHARRIERE", - "center": "POINT (382075.1986601353273727 2131705.6259322711266577)", - "surface": 20440000, - "canton": null, - "numero_insee": "79078" - } - }, - { - "pk": 23967, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAULEON", - "center": "POINT (365228.2977597811259329 2220845.4171918230131269)", - "surface": 122420000, - "canton": null, - "numero_insee": "79079" - } - }, - { - "pk": 18201, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHATILLON-SUR-THOUET", - "center": "POINT (401319.9664005546947010 2189114.9713408909738064)", - "surface": 16250000, - "canton": null, - "numero_insee": "79080" - } - }, - { - "pk": 18684, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHAURAY", - "center": "POINT (390902.2993429819471203 2153698.0588778606615961)", - "surface": 14560000, - "canton": null, - "numero_insee": "79081" - } - }, - { - "pk": 15123, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHENAY", - "center": "POINT (419153.6869653589674272 2150527.9506222959607840)", - "surface": 21650000, - "canton": null, - "numero_insee": "79084" - } - }, - { - "pk": 25815, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHERIGNE", - "center": "POINT (406036.6170336947543547 2126898.4405392115004361)", - "surface": 7960000, - "canton": null, - "numero_insee": "79085" - } - }, - { - "pk": 18680, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHERVEUX", - "center": "POINT (393240.8134975851862691 2161424.1814136039465666)", - "surface": 22150000, - "canton": null, - "numero_insee": "79086" - } - }, - { - "pk": 10491, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHEY", - "center": "POINT (416084.1615370498620905 2146499.0206932858563960)", - "surface": 21620000, - "canton": null, - "numero_insee": "79087" - } - }, - { - "pk": 18708, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHICHE", - "center": "POINT (394800.2772040480049327 2202973.2388327089138329)", - "surface": 47470000, - "canton": null, - "numero_insee": "79088" - } - }, - { - "pk": 27736, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE CHILLOU", - "center": "POINT (412243.7168138700653799 2199513.9312939201481640)", - "surface": 5150000, - "canton": null, - "numero_insee": "79089" - } - }, - { - "pk": 21666, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CHIZE", - "center": "POINT (391822.9446066765813157 2126981.4864664208143950)", - "surface": 23200000, - "canton": null, - "numero_insee": "79090" - } - }, - { - "pk": 37662, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CIRIERES", - "center": "POINT (374335.6407438541646115 2208709.8987107486464083)", - "surface": 17150000, - "canton": null, - "numero_insee": "79091" - } - }, - { - "pk": 36804, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CLAVE", - "center": "POINT (405179.6940692882053554 2170130.1734287571161985)", - "surface": 19620000, - "canton": null, - "numero_insee": "79092" - } - }, - { - "pk": 16985, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COMBRAND", - "center": "POINT (368807.4777584579424001 2211566.9388729636557400)", - "surface": 24580000, - "canton": null, - "numero_insee": "79096" - } - }, - { - "pk": 18086, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA COUARDE", - "center": "POINT (408960.0974250580184162 2148642.2176223173737526)", - "surface": 16460000, - "canton": null, - "numero_insee": "79098" - } - }, - { - "pk": 28620, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA COUDRE", - "center": "POINT (385951.7648522990057245 2220115.0182844521477818)", - "surface": 8470000, - "canton": null, - "numero_insee": "79099" - } - }, - { - "pk": 22462, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COULON", - "center": "POINT (375196.7229383836966008 2152668.0222652838565409)", - "surface": 29860000, - "canton": null, - "numero_insee": "79100" - } - }, - { - "pk": 18126, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COULONGES-SUR-L'AUTIZE", - "center": "POINT (374563.0077295672381297 2168877.2209457419812679)", - "surface": 18780000, - "canton": null, - "numero_insee": "79101" - } - }, - { - "pk": 33270, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COULONGES-THOUARSAIS", - "center": "POINT (396685.6187725316267461 2217100.7695138123817742)", - "surface": 17130000, - "canton": null, - "numero_insee": "79102" - } - }, - { - "pk": 34235, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COURLAY", - "center": "POINT (377492.3858203227864578 2202130.2069935514591634)", - "surface": 29350000, - "canton": null, - "numero_insee": "79103" - } - }, - { - "pk": 21317, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COURS", - "center": "POINT (388761.4026256317738444 2170595.4404648328199983)", - "surface": 14910000, - "canton": null, - "numero_insee": "79104" - } - }, - { - "pk": 9592, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COUTIERES", - "center": "POINT (412392.1564699234440923 2169388.9529574071057141)", - "surface": 7340000, - "canton": null, - "numero_insee": "79105" - } - }, - { - "pk": 20688, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "COUTURE-D'ARGENSON", - "center": "POINT (412453.4395712216501124 2113438.9591316492296755)", - "surface": 24270000, - "canton": null, - "numero_insee": "79106" - } - }, - { - "pk": 35449, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "CREZIERES", - "center": "POINT (408771.9249603552743793 2122917.3361543137580156)", - "surface": 4240000, - "canton": null, - "numero_insee": "79107" - } - }, - { - "pk": 23927, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "DOUX", - "center": "POINT (421982.7873981727752835 2195791.0406108847819269)", - "surface": 9850000, - "canton": null, - "numero_insee": "79108" - } - }, - { - "pk": 22005, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ECHIRE", - "center": "POINT (387458.2965140931773931 2158674.1677193939685822)", - "surface": 31370000, - "canton": null, - "numero_insee": "79109" - } - }, - { - "pk": 25285, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ENSIGNE", - "center": "POINT (399359.8145341496565379 2123340.1906821131706238)", - "surface": 20260000, - "canton": null, - "numero_insee": "79111" - } - }, - { - "pk": 29692, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "EPANNES", - "center": "POINT (374298.7537364629097283 2140149.3839469631202519)", - "surface": 8040000, - "canton": null, - "numero_insee": "79112" - } - }, - { - "pk": 35388, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ETUSSON", - "center": "POINT (380989.5217405854491517 2227180.1668893513269722)", - "surface": 21110000, - "canton": null, - "numero_insee": "79113" - } - }, - { - "pk": 30871, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "EXOUDUN", - "center": "POINT (414541.6180820951703936 2151490.7779258601367474)", - "surface": 26420000, - "canton": null, - "numero_insee": "79115" - } - }, - { - "pk": 20543, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FAYE-L'ABBESSE", - "center": "POINT (395565.4634992274222896 2207283.2175571699626744)", - "surface": 23330000, - "canton": null, - "numero_insee": "79116" - } - }, - { - "pk": 30275, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FAYE-SUR-ARDIN", - "center": "POINT (381708.3189137198496610 2164131.7375858151353896)", - "surface": 14990000, - "canton": null, - "numero_insee": "79117" - } - }, - { - "pk": 35387, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FENIOUX", - "center": "POINT (382919.6272859926102683 2175051.3230683677829802)", - "surface": 34000000, - "canton": null, - "numero_insee": "79119" - } - }, - { - "pk": 19424, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA FERRIERE-EN-PARTHENAY", - "center": "POINT (415058.1644493791391142 2185925.3997159712016582)", - "surface": 29350000, - "canton": null, - "numero_insee": "79120" - } - }, - { - "pk": 18078, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FOMPERRON", - "center": "POINT (411517.8443479258567095 2166178.9133192915469408)", - "surface": 17600000, - "canton": null, - "numero_insee": "79121" - } - }, - { - "pk": 15951, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FONTENILLE-SAINT-MARTIN-D'ENTRAIGUES", - "center": "POINT (409142.5432789430487901 2126523.6914889253675938)", - "surface": 15340000, - "canton": null, - "numero_insee": "79122" - } - }, - { - "pk": 21105, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA FORET-SUR-SEVRE", - "center": "POINT (372007.7800236698240042 2199683.0593312908895314)", - "surface": 55990000, - "canton": null, - "numero_insee": "79123" - } - }, - { - "pk": 28983, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LES FORGES", - "center": "POINT (419259.7655022233957425 2174049.6793826720677316)", - "surface": 10600000, - "canton": null, - "numero_insee": "79124" - } - }, - { - "pk": 24271, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FORS", - "center": "POINT (387799.3451116845244542 2141561.6317065884359181)", - "surface": 18850000, - "canton": null, - "numero_insee": "79125" - } - }, - { - "pk": 29691, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LES FOSSES", - "center": "POINT (391069.6025138786644675 2133381.1215517465025187)", - "surface": 12250000, - "canton": null, - "numero_insee": "79126" - } - }, - { - "pk": 5908, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA FOYE-MONJAULT", - "center": "POINT (378437.5854477389366366 2135879.5214987103827298)", - "surface": 19430000, - "canton": null, - "numero_insee": "79127" - } - }, - { - "pk": 29419, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FRANCOIS", - "center": "POINT (393777.4935170763637871 2157024.6846686163917184)", - "surface": 9370000, - "canton": null, - "numero_insee": "79128" - } - }, - { - "pk": 33832, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FRESSINES", - "center": "POINT (396933.6446551163680851 2150544.8710422236472368)", - "surface": 9570000, - "canton": null, - "numero_insee": "79129" - } - }, - { - "pk": 19712, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "FRONTENAY-ROHAN-ROHAN", - "center": "POINT (378174.8544921315042302 2143484.2418225370347500)", - "surface": 33650000, - "canton": null, - "numero_insee": "79130" - } - }, - { - "pk": 15944, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "GENNETON", - "center": "POINT (389166.1854621079983190 2230850.4546440057456493)", - "surface": 27670000, - "canton": null, - "numero_insee": "79132" - } - }, - { - "pk": 4704, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "GLENAY", - "center": "POINT (403354.2660629772581160 2209449.1824244344606996)", - "surface": 21250000, - "canton": null, - "numero_insee": "79134" - } - }, - { - "pk": 28344, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "GOURGE", - "center": "POINT (407278.5473943196702749 2194768.9347214843146503)", - "surface": 50390000, - "canton": null, - "numero_insee": "79135" - } - }, - { - "pk": 23795, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "GOURNAY-LOIZE", - "center": "POINT (415715.9132063814322464 2130481.4922273829579353)", - "surface": 23500000, - "canton": null, - "numero_insee": "79136" - } - }, - { - "pk": 14724, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "GRANZAY-GRIPT", - "center": "POINT (382707.4342651163460687 2140018.3666545678861439)", - "surface": 21610000, - "canton": null, - "numero_insee": "79137" - } - }, - { - "pk": 8713, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LES GROSEILLERS", - "center": "POINT (389535.6873701934237033 2173804.6319871861487627)", - "surface": 4520000, - "canton": null, - "numero_insee": "79139" - } - }, - { - "pk": 19249, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "HANC", - "center": "POINT (418289.0818987149978057 2121894.8653089539147913)", - "surface": 18190000, - "canton": null, - "numero_insee": "79140" - } - }, - { - "pk": 28781, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "IRAIS", - "center": "POINT (414549.0012645226088353 2211242.9472292987629771)", - "surface": 13550000, - "canton": null, - "numero_insee": "79141" - } - }, - { - "pk": 9365, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "JUILLE", - "center": "POINT (402034.8809186727739871 2126665.2631819429807365)", - "surface": 4970000, - "canton": null, - "numero_insee": "79142" - } - }, - { - "pk": 7735, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "JUSCORPS", - "center": "POINT (390530.4465766043867916 2138080.9501106035895646)", - "surface": 6530000, - "canton": null, - "numero_insee": "79144" - } - }, - { - "pk": 27340, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LAGEON", - "center": "POINT (402368.8791972839389928 2195429.0639708163216710)", - "surface": 14030000, - "canton": null, - "numero_insee": "79145" - } - }, - { - "pk": 5341, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LARGEASSE", - "center": "POINT (381889.6353536616079509 2190756.5451749283820391)", - "surface": 30330000, - "canton": null, - "numero_insee": "79147" - } - }, - { - "pk": 19767, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LEZAY", - "center": "POINT (418312.4295047979103401 2143314.5319729363545775)", - "surface": 45410000, - "canton": null, - "numero_insee": "79148" - } - }, - { - "pk": 37707, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LHOUMOIS", - "center": "POINT (411600.9519624690292403 2192502.5972399339079857)", - "surface": 9870000, - "canton": null, - "numero_insee": "79149" - } - }, - { - "pk": 11717, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LORIGNE", - "center": "POINT (424665.5832786372629926 2125450.7330918363295496)", - "surface": 11090000, - "canton": null, - "numero_insee": "79152" - } - }, - { - "pk": 26675, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LOUBIGNE", - "center": "POINT (412880.3625262062414549 2122350.6812895704060793)", - "surface": 11150000, - "canton": null, - "numero_insee": "79153" - } - }, - { - "pk": 29626, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LOUBILLE", - "center": "POINT (414111.1175437836209312 2118757.5286682322621346)", - "surface": 21510000, - "canton": null, - "numero_insee": "79154" - } - }, - { - "pk": 28782, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LOUIN", - "center": "POINT (405723.7238652852247469 2201261.7066779849119484)", - "surface": 20470000, - "canton": null, - "numero_insee": "79156" - } - }, - { - "pk": 12757, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LOUZY", - "center": "POINT (408612.4254299629246816 2227207.4809934115037322)", - "surface": 18570000, - "canton": null, - "numero_insee": "79157" - } - }, - { - "pk": 5140, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LUCHE-SUR-BRIOUX", - "center": "POINT (407820.8054526007035747 2129015.0739376591518521)", - "surface": 5140000, - "canton": null, - "numero_insee": "79158" - } - }, - { - "pk": 30440, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LUCHE-THOUARSAIS", - "center": "POINT (398797.1461767543805763 2215917.1484656501561403)", - "surface": 13620000, - "canton": null, - "numero_insee": "79159" - } - }, - { - "pk": 26476, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LUSSERAY", - "center": "POINT (406408.8928436817368492 2130304.6156661408022046)", - "surface": 8140000, - "canton": null, - "numero_insee": "79160" - } - }, - { - "pk": 8859, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LUZAY", - "center": "POINT (406292.2590454221353866 2217280.0193673553876579)", - "surface": 20950000, - "canton": null, - "numero_insee": "79161" - } - }, - { - "pk": 29053, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAGNE", - "center": "POINT (377023.7281178521225229 2149580.2659620866179466)", - "surface": 14750000, - "canton": null, - "numero_insee": "79162" - } - }, - { - "pk": 7233, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAIRE-LEVESCAULT", - "center": "POINT (425420.7857258821604773 2130961.9944840664975345)", - "surface": 17580000, - "canton": null, - "numero_insee": "79163" - } - }, - { - "pk": 23725, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAISONNAY", - "center": "POINT (415682.8704878744902089 2134484.8600526754744351)", - "surface": 5190000, - "canton": null, - "numero_insee": "79164" - } - }, - { - "pk": 22000, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAISONTIERS", - "center": "POINT (401523.7057835973100737 2200826.7437514504417777)", - "surface": 18500000, - "canton": null, - "numero_insee": "79165" - } - }, - { - "pk": 17711, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MARIGNY", - "center": "POINT (387441.0295256090466864 2136454.0626907213591039)", - "surface": 32050000, - "canton": null, - "numero_insee": "79166" - } - }, - { - "pk": 28389, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MARNES", - "center": "POINT (420475.9201797120040283 2208589.5659325495362282)", - "surface": 17170000, - "canton": null, - "numero_insee": "79167" - } - }, - { - "pk": 11017, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MASSAIS", - "center": "POINT (395010.1963752925512381 2226094.5511300908401608)", - "surface": 21300000, - "canton": null, - "numero_insee": "79168" - } - }, - { - "pk": 21773, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAUZE-SUR-LE-MIGNON", - "center": "POINT (369923.0357110624900088 2136710.3312641223892570)", - "surface": 24040000, - "canton": null, - "numero_insee": "79170" - } - }, - { - "pk": 31934, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAUZE-THOUARSAIS", - "center": "POINT (400444.0446870702435263 2222536.2883413732051849)", - "surface": 49710000, - "canton": null, - "numero_insee": "79171" - } - }, - { - "pk": 20686, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MAZIERES-SUR-BERONNE", - "center": "POINT (404872.9665955211967230 2134495.7739094109274447)", - "surface": 9630000, - "canton": null, - "numero_insee": "79173" - } - }, - { - "pk": 4546, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MELLE", - "center": "POINT (408332.9832113711163402 2139729.0229640416800976)", - "surface": 9720000, - "canton": null, - "numero_insee": "79174" - } - }, - { - "pk": 25122, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MELLERAN", - "center": "POINT (419838.3780471670906991 2128213.4260532232001424)", - "surface": 20000000, - "canton": null, - "numero_insee": "79175" - } - }, - { - "pk": 20026, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MENIGOUTE", - "center": "POINT (415601.3683947201934643 2168614.7280030529946089)", - "surface": 19290000, - "canton": null, - "numero_insee": "79176" - } - }, - { - "pk": 19757, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MISSE", - "center": "POINT (408769.4443902850616723 2220302.9771767291240394)", - "surface": 12420000, - "canton": null, - "numero_insee": "79178" - } - }, - { - "pk": 11269, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MONCOUTANT", - "center": "POINT (377234.1169129753834568 2197023.6989992479793727)", - "surface": 26710000, - "canton": null, - "numero_insee": "79179" - } - }, - { - "pk": 26676, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MONTALEMBERT", - "center": "POINT (432478.8077098974026740 2124714.5666080568917096)", - "surface": 11830000, - "canton": null, - "numero_insee": "79180" - } - }, - { - "pk": 28988, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MONTRAVERS", - "center": "POINT (365628.8088911992963403 2208638.3572957892902195)", - "surface": 10070000, - "canton": null, - "numero_insee": "79183" - } - }, - { - "pk": 17699, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA MOTHE-SAINT-HERAY", - "center": "POINT (410924.6028682461474091 2153162.4556373599916697)", - "surface": 15190000, - "canton": null, - "numero_insee": "79184" - } - }, - { - "pk": 23713, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MOUGON", - "center": "POINT (397165.1454214946134016 2146743.3652346269227564)", - "surface": 21330000, - "canton": null, - "numero_insee": "79185" - } - }, - { - "pk": 5945, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MOUTIERS-SOUS-ARGENTON", - "center": "POINT (393446.0457307161996141 2221577.8877214551903307)", - "surface": 37060000, - "canton": null, - "numero_insee": "79187" - } - }, - { - "pk": 16986, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "MOUTIERS-SOUS-CHANTEMERLE", - "center": "POINT (373473.8765762199182063 2191788.2938844263553619)", - "surface": 25510000, - "canton": null, - "numero_insee": "79188" - } - }, - { - "pk": 16007, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "NEUVY-BOUIN", - "center": "POINT (387096.2585385970887728 2190499.1273109973408282)", - "surface": 25560000, - "canton": null, - "numero_insee": "79190" - } - }, - { - "pk": 30662, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "NIORT", - "center": "POINT (384215.7031693494645879 2151340.9565565884113312)", - "surface": 68340000, - "canton": null, - "numero_insee": "79191" - } - }, - { - "pk": 21374, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "NUEIL-LES-AUBIERS", - "center": "POINT (376747.0933153862715699 2219739.0557532343082130)", - "surface": 100910000, - "canton": null, - "numero_insee": "79195" - } - }, - { - "pk": 19361, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "OIRON", - "center": "POINT (415693.7840328012243845 2218058.1545663825236261)", - "surface": 36740000, - "canton": null, - "numero_insee": "79196" - } - }, - { - "pk": 29001, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "OROUX", - "center": "POINT (414118.6319489013985731 2190621.7246981277130544)", - "surface": 6640000, - "canton": null, - "numero_insee": "79197" - } - }, - { - "pk": 31908, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PAIZAY-LE-CHAPT", - "center": "POINT (404975.2992137770634145 2122085.2899819756858051)", - "surface": 20340000, - "canton": null, - "numero_insee": "79198" - } - }, - { - "pk": 9721, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PAIZAY-LE-TORT", - "center": "POINT (406388.2587306164205074 2132806.7230481645092368)", - "surface": 11420000, - "canton": null, - "numero_insee": "79199" - } - }, - { - "pk": 27096, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PAMPLIE", - "center": "POINT (387036.9539894328336231 2173383.7112600859254599)", - "surface": 12200000, - "canton": null, - "numero_insee": "79200" - } - }, - { - "pk": 4139, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PAMPROUX", - "center": "POINT (416977.5990009373053908 2159518.0234438637271523)", - "surface": 36070000, - "canton": null, - "numero_insee": "79201" - } - }, - { - "pk": 5619, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PARTHENAY", - "center": "POINT (403247.0579543552012183 2186028.1627497212029994)", - "surface": 11350000, - "canton": null, - "numero_insee": "79202" - } - }, - { - "pk": 24696, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PAS-DE-JEU", - "center": "POINT (417457.1888154488988221 2222676.5836293329484761)", - "surface": 11050000, - "canton": null, - "numero_insee": "79203" - } - }, - { - "pk": 21501, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PERIGNE", - "center": "POINT (400665.3105287532089278 2134961.5409297109581530)", - "surface": 21230000, - "canton": null, - "numero_insee": "79204" - } - }, - { - "pk": 6543, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PERS", - "center": "POINT (424855.0503872451372445 2138864.4952076864428818)", - "surface": 4800000, - "canton": null, - "numero_insee": "79205" - } - }, - { - "pk": 23992, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA PETITE-BOISSIERE", - "center": "POINT (365885.4789658328518271 2213944.9754646779038012)", - "surface": 13210000, - "canton": null, - "numero_insee": "79207" - } - }, - { - "pk": 21331, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA PEYRATTE", - "center": "POINT (409036.0235134750837460 2187977.5436535812914371)", - "surface": 47570000, - "canton": null, - "numero_insee": "79208" - } - }, - { - "pk": 35382, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PIERREFITTE", - "center": "POINT (398741.5918073445209302 2210512.1077589155174792)", - "surface": 15930000, - "canton": null, - "numero_insee": "79209" - } - }, - { - "pk": 13049, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE PIN", - "center": "POINT (372298.7035841565229930 2212996.8164628157392144)", - "surface": 18990000, - "canton": null, - "numero_insee": "79210" - } - }, - { - "pk": 31281, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PIOUSSAY", - "center": "POINT (421986.4402049543568864 2122626.0381518886424601)", - "surface": 13740000, - "canton": null, - "numero_insee": "79211" - } - }, - { - "pk": 35591, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PLIBOUX", - "center": "POINT (429017.2028917652787641 2131792.4385142545215786)", - "surface": 15470000, - "canton": null, - "numero_insee": "79212" - } - }, - { - "pk": 14556, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "POMPAIRE", - "center": "POINT (402673.7990211466094479 2182720.5639851689338684)", - "surface": 12790000, - "canton": null, - "numero_insee": "79213" - } - }, - { - "pk": 29687, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "POUFFONDS", - "center": "POINT (410662.9800953250378370 2136345.1623323713429272)", - "surface": 7280000, - "canton": null, - "numero_insee": "79214" - } - }, - { - "pk": 33341, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "POUGNE-HERISSON", - "center": "POINT (389517.9482717437203974 2188116.9795173304155469)", - "surface": 12010000, - "canton": null, - "numero_insee": "79215" - } - }, - { - "pk": 17137, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PRAHECQ", - "center": "POINT (393280.8609250311856158 2144409.2958144000731409)", - "surface": 24960000, - "canton": null, - "numero_insee": "79216" - } - }, - { - "pk": 19724, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PRAILLES", - "center": "POINT (404446.4607754092430696 2149806.0731244063936174)", - "surface": 18830000, - "canton": null, - "numero_insee": "79217" - } - }, - { - "pk": 24940, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PRESSIGNY", - "center": "POINT (415063.2731067544082180 2197435.3886471074074507)", - "surface": 11990000, - "canton": null, - "numero_insee": "79218" - } - }, - { - "pk": 4502, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PRIAIRES", - "center": "POINT (372965.0514211799018085 2131930.9704634938389063)", - "surface": 6950000, - "canton": null, - "numero_insee": "79219" - } - }, - { - "pk": 28167, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PRIN-DEYRANCON", - "center": "POINT (369798.2748089759843424 2139712.0261488682590425)", - "surface": 16200000, - "canton": null, - "numero_insee": "79220" - } - }, - { - "pk": 10003, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PUGNY", - "center": "POINT (381352.1899550418602303 2195256.0148835978470743)", - "surface": 7000000, - "canton": null, - "numero_insee": "79222" - } - }, - { - "pk": 36794, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "PUIHARDY", - "center": "POINT (378928.7315361129585654 2173517.1750047765672207)", - "surface": 1190000, - "canton": null, - "numero_insee": "79223" - } - }, - { - "pk": 9885, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "REFFANNES", - "center": "POINT (406448.5673673558630981 2174044.0680469023063779)", - "surface": 8630000, - "canton": null, - "numero_insee": "79225" - } - }, - { - "pk": 9730, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE RETAIL", - "center": "POINT (387504.4086493834620342 2177391.0708263576962054)", - "surface": 14280000, - "canton": null, - "numero_insee": "79226" - } - }, - { - "pk": 36391, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LA ROCHENARD", - "center": "POINT (375320.9886382475961000 2137555.4332925681956112)", - "surface": 8550000, - "canton": null, - "numero_insee": "79229" - } - }, - { - "pk": 15161, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ROM", - "center": "POINT (429490.3347314997226931 2147210.2786775198765099)", - "surface": 52530000, - "canton": null, - "numero_insee": "79230" - } - }, - { - "pk": 33992, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ROMANS", - "center": "POINT (402611.1428090787958354 2153894.6148633700795472)", - "surface": 11450000, - "canton": null, - "numero_insee": "79231" - } - }, - { - "pk": 16422, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-AMAND-SUR-SEVRE", - "center": "POINT (362285.9525584816001356 2213515.0764820040203631)", - "surface": 32630000, - "canton": null, - "numero_insee": "79235" - } - }, - { - "pk": 35880, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-ANDRE-SUR-SEVRE", - "center": "POINT (368185.8589601025450975 2201953.6299535483121872)", - "surface": 19800000, - "canton": null, - "numero_insee": "79236" - } - }, - { - "pk": 14298, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-AUBIN-DU-PLAIN", - "center": "POINT (386173.3316281915176660 2217514.6453646230511367)", - "surface": 14170000, - "canton": null, - "numero_insee": "79238" - } - }, - { - "pk": 17766, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-AUBIN-LE-CLOUD", - "center": "POINT (394927.2153619353193790 2187561.0004519596695900)", - "surface": 41970000, - "canton": null, - "numero_insee": "79239" - } - }, - { - "pk": 15797, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINTE-BLANDINE", - "center": "POINT (398407.3791253836243413 2141749.0933242882601917)", - "surface": 16190000, - "canton": null, - "numero_insee": "79240" - } - }, - { - "pk": 16938, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-CHRISTOPHE-SUR-ROC", - "center": "POINT (392810.8130778242484666 2165023.8338705566711724)", - "surface": 10890000, - "canton": null, - "numero_insee": "79241" - } - }, - { - "pk": 3175, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VOULMENTIN", - "center": "POINT (382459.7510595711064525 2218785.1908994959667325)", - "surface": 31610000, - "canton": null, - "numero_insee": "79242" - } - }, - { - "pk": 20831, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-COUTANT", - "center": "POINT (420153.5961599118309096 2138525.3954792749136686)", - "surface": 11970000, - "canton": null, - "numero_insee": "79243" - } - }, - { - "pk": 30702, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-CYR-LA-LANDE", - "center": "POINT (411084.6346186954178847 2230830.8794890251010656)", - "surface": 9010000, - "canton": null, - "numero_insee": "79244" - } - }, - { - "pk": 36615, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-ETIENNE-LA-CIGOGNE", - "center": "POINT (381107.2929937067674473 2127694.0102821318432689)", - "surface": 4830000, - "canton": null, - "numero_insee": "79247" - } - }, - { - "pk": 15364, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-GELAIS", - "center": "POINT (390377.1639869065256789 2156696.4149046582169831)", - "surface": 16560000, - "canton": null, - "numero_insee": "79249" - } - }, - { - "pk": 37506, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINTE-GEMME", - "center": "POINT (400411.5861224084510468 2214329.0947558595798910)", - "surface": 8940000, - "canton": null, - "numero_insee": "79250" - } - }, - { - "pk": 25480, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-GENARD", - "center": "POINT (409275.0143579504219815 2134732.2599048209376633)", - "surface": 11120000, - "canton": null, - "numero_insee": "79251" - } - }, - { - "pk": 34674, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-GENEROUX", - "center": "POINT (410735.2996127997757867 2212512.5907433377578855)", - "surface": 20390000, - "canton": null, - "numero_insee": "79252" - } - }, - { - "pk": 23958, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-GEORGES-DE-NOISNE", - "center": "POINT (401996.8881786969723180 2167701.8174653374589980)", - "surface": 24890000, - "canton": null, - "numero_insee": "79253" - } - }, - { - "pk": 5592, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-GEORGES-DE-REX", - "center": "POINT (369053.2736797300167382 2145110.7827806482091546)", - "surface": 17650000, - "canton": null, - "numero_insee": "79254" - } - }, - { - "pk": 22230, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-GERMAIN-DE-LONGUE-CHAUME", - "center": "POINT (394970.4188173650763929 2194467.3306732499040663)", - "surface": 14680000, - "canton": null, - "numero_insee": "79255" - } - }, - { - "pk": 5231, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-GERMIER", - "center": "POINT (417033.0728435216005892 2164923.2735926643945277)", - "surface": 11920000, - "canton": null, - "numero_insee": "79256" - } - }, - { - "pk": 23428, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-HILAIRE-LA-PALUD", - "center": "POINT (364752.9760742948856205 2144675.0894750845618546)", - "surface": 34130000, - "canton": null, - "numero_insee": "79257" - } - }, - { - "pk": 22166, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-JACQUES-DE-THOUARS", - "center": "POINT (404352.0105791128589772 2221967.9898593835532665)", - "surface": 5520000, - "canton": null, - "numero_insee": "79258" - } - }, - { - "pk": 20385, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-JEAN-DE-THOUARS", - "center": "POINT (405466.8867970576975495 2220275.7477975729852915)", - "surface": 4960000, - "canton": null, - "numero_insee": "79259" - } - }, - { - "pk": 23345, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-JOUIN-DE-MARNES", - "center": "POINT (417747.3727911191526800 2211769.7653933567926288)", - "surface": 22850000, - "canton": null, - "numero_insee": "79260" - } - }, - { - "pk": 19823, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-JOUIN-DE-MILLY", - "center": "POINT (374908.4314837260171771 2199907.0735654020681977)", - "surface": 6880000, - "canton": null, - "numero_insee": "79261" - } - }, - { - "pk": 29429, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-LAURS", - "center": "POINT (376224.0705059840693139 2173795.1968666091561317)", - "surface": 8290000, - "canton": null, - "numero_insee": "79263" - } - }, - { - "pk": 16610, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-LEGER-DE-LA-MARTINIERE", - "center": "POINT (411125.4173480953322724 2140953.1428845380432904)", - "surface": 25650000, - "canton": null, - "numero_insee": "79264" - } - }, - { - "pk": 15191, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-LEGER-DE-MONTBRUN", - "center": "POINT (412342.5149151881341822 2223935.4759821682237089)", - "surface": 30590000, - "canton": null, - "numero_insee": "79265" - } - }, - { - "pk": 12791, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-LIN", - "center": "POINT (403250.9233340734499507 2173417.1779894600622356)", - "surface": 11270000, - "canton": null, - "numero_insee": "79267" - } - }, - { - "pk": 27509, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-LOUP-LAMAIRE", - "center": "POINT (409539.9306186581379734 2199691.8012325535528362)", - "surface": 22350000, - "canton": null, - "numero_insee": "79268" - } - }, - { - "pk": 34949, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MAIXENT-DE-BEUGNE", - "center": "POINT (373632.6551750459475443 2172472.7473514196462929)", - "surface": 11050000, - "canton": null, - "numero_insee": "79269" - } - }, - { - "pk": 37710, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MAIXENT-L'ECOLE", - "center": "POINT (404161.3073731184704229 2160112.9225656427443027)", - "surface": 5190000, - "canton": null, - "numero_insee": "79270" - } - }, - { - "pk": 5031, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MARC-LA-LANDE", - "center": "POINT (393146.0257320789387450 2172933.5683950702659786)", - "surface": 10350000, - "canton": null, - "numero_insee": "79271" - } - }, - { - "pk": 16964, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MARTIN-DE-BERNEGOUE", - "center": "POINT (392208.7926491714315489 2140897.3062314684502780)", - "surface": 17690000, - "canton": null, - "numero_insee": "79273" - } - }, - { - "pk": 26428, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MARTIN-DE-MACON", - "center": "POINT (413713.0476427256362513 2227649.8852495704777539)", - "surface": 12340000, - "canton": null, - "numero_insee": "79274" - } - }, - { - "pk": 11822, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MARTIN-DE-SAINT-MAIXENT", - "center": "POINT (404583.9145998079329729 2157414.0028161527588964)", - "surface": 12820000, - "canton": null, - "numero_insee": "79276" - } - }, - { - "pk": 15188, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MARTIN-DE-SANZAY", - "center": "POINT (407759.0000441538868472 2233605.7896959697827697)", - "surface": 24360000, - "canton": null, - "numero_insee": "79277" - } - }, - { - "pk": 16184, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MARTIN-DU-FOUILLOUX", - "center": "POINT (411204.5734734270954505 2179888.3753721984103322)", - "surface": 24160000, - "canton": null, - "numero_insee": "79278" - } - }, - { - "pk": 37091, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MARTIN-LES-MELLE", - "center": "POINT (406735.7713344644289464 2139215.3977021761238575)", - "surface": 9190000, - "canton": null, - "numero_insee": "79279" - } - }, - { - "pk": 21320, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MAURICE-LA-FOUGEREUSE", - "center": "POINT (383855.5307558134663850 2231607.4226744379848242)", - "surface": 36210000, - "canton": null, - "numero_insee": "79280" - } - }, - { - "pk": 32560, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MAXIRE", - "center": "POINT (383449.2398053496144712 2159341.7964887851849198)", - "surface": 14230000, - "canton": null, - "numero_insee": "79281" - } - }, - { - "pk": 20310, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-MEDARD", - "center": "POINT (398539.6275044177891687 2137846.6539640948176384)", - "surface": 4250000, - "canton": null, - "numero_insee": "79282" - } - }, - { - "pk": 6981, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINTE-NEOMAYE", - "center": "POINT (399903.1387315359897912 2154572.9206683891825378)", - "surface": 10760000, - "canton": null, - "numero_insee": "79283" - } - }, - { - "pk": 20343, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINTE-OUENNE", - "center": "POINT (385716.5365190533921123 2163564.1872799252159894)", - "surface": 11440000, - "canton": null, - "numero_insee": "79284" - } - }, - { - "pk": 19138, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-PARDOUX", - "center": "POINT (396602.6963453179923818 2178566.9543824186548591)", - "surface": 34720000, - "canton": null, - "numero_insee": "79285" - } - }, - { - "pk": 19706, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-PAUL-EN-GATINE", - "center": "POINT (373918.6209574876120314 2186387.2635588971897960)", - "surface": 15380000, - "canton": null, - "numero_insee": "79286" - } - }, - { - "pk": 23044, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-PIERRE-DES-ECHAUBROGNES", - "center": "POINT (365097.8103244489175268 2224547.4616267229430377)", - "surface": 29260000, - "canton": null, - "numero_insee": "79289" - } - }, - { - "pk": 4944, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-POMPAIN", - "center": "POINT (374115.2583646159619093 2162467.8712421972304583)", - "surface": 24210000, - "canton": null, - "numero_insee": "79290" - } - }, - { - "pk": 35862, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINTE-RADEGONDE", - "center": "POINT (403231.3635655064717866 2224360.7713905861601233)", - "surface": 7500000, - "canton": null, - "numero_insee": "79292" - } - }, - { - "pk": 3606, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-REMY", - "center": "POINT (379971.0585338452365249 2156310.5061809243634343)", - "surface": 13650000, - "canton": null, - "numero_insee": "79293" - } - }, - { - "pk": 11719, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-ROMANS-DES-CHAMPS", - "center": "POINT (392740.5342384200775996 2137098.2441688133403659)", - "surface": 4120000, - "canton": null, - "numero_insee": "79294" - } - }, - { - "pk": 34211, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-ROMANS-LES-MELLE", - "center": "POINT (404550.4336674982914701 2137195.5655611655674875)", - "surface": 8830000, - "canton": null, - "numero_insee": "79295" - } - }, - { - "pk": 3845, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINTE-SOLINE", - "center": "POINT (423531.6432104140985757 2141556.0049631376750767)", - "surface": 25610000, - "canton": null, - "numero_insee": "79297" - } - }, - { - "pk": 38006, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (382969.8021737281815149 2144624.6808495181612670)", - "surface": 19010000, - "canton": null, - "numero_insee": "79298" - } - }, - { - "pk": 36790, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-VARENT", - "center": "POINT (404922.5198615737026557 2213465.5091401864774525)", - "surface": 34520000, - "canton": null, - "numero_insee": "79299" - } - }, - { - "pk": 27095, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINTE-VERGE", - "center": "POINT (405012.9542469246080145 2226777.4698980553075671)", - "surface": 12820000, - "canton": null, - "numero_insee": "79300" - } - }, - { - "pk": 18044, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAINT-VINCENT-LA-CHATRE", - "center": "POINT (416859.0945705266203731 2137497.2910822201520205)", - "surface": 21230000, - "canton": null, - "numero_insee": "79301" - } - }, - { - "pk": 22843, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAIVRES", - "center": "POINT (402537.7189799975603819 2162801.9367713509127498)", - "surface": 21240000, - "canton": null, - "numero_insee": "79302" - } - }, - { - "pk": 32619, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SALLES", - "center": "POINT (412793.9675339258392341 2157081.3609494301490486)", - "surface": 7950000, - "canton": null, - "numero_insee": "79303" - } - }, - { - "pk": 9121, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SANSAIS", - "center": "POINT (374137.7773664479609579 2147554.7378751919604838)", - "surface": 15040000, - "canton": null, - "numero_insee": "79304" - } - }, - { - "pk": 10757, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAURAIS", - "center": "POINT (410676.1024181664688513 2183286.9834491782821715)", - "surface": 11570000, - "canton": null, - "numero_insee": "79306" - } - }, - { - "pk": 20777, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SAUZE-VAUSSAIS", - "center": "POINT (427955.1459054377628490 2127079.3747149435803294)", - "surface": 19250000, - "canton": null, - "numero_insee": "79307" - } - }, - { - "pk": 24742, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SCIECQ", - "center": "POINT (383676.5813657420221716 2156040.7249213494360447)", - "surface": 4420000, - "canton": null, - "numero_insee": "79308" - } - }, - { - "pk": 19522, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SCILLE", - "center": "POINT (378360.8335272949188948 2181719.6916101286187768)", - "surface": 11680000, - "canton": null, - "numero_insee": "79309" - } - }, - { - "pk": 15162, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SECONDIGNE-SUR-BELLE", - "center": "POINT (395280.5594016686081886 2132514.9864058895036578)", - "surface": 24480000, - "canton": null, - "numero_insee": "79310" - } - }, - { - "pk": 19208, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SECONDIGNY", - "center": "POINT (387159.6842390425154008 2182792.9551617163233459)", - "surface": 37770000, - "canton": null, - "numero_insee": "79311" - } - }, - { - "pk": 4012, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SELIGNE", - "center": "POINT (398504.6993043769616634 2129939.1818823032081127)", - "surface": 9920000, - "canton": null, - "numero_insee": "79312" - } - }, - { - "pk": 18080, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SEPVRET", - "center": "POINT (412683.8124130577198230 2146170.6897969613783062)", - "surface": 17080000, - "canton": null, - "numero_insee": "79313" - } - }, - { - "pk": 24351, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SOMPT", - "center": "POINT (412395.7873735894681886 2132556.0057537667453289)", - "surface": 12110000, - "canton": null, - "numero_insee": "79314" - } - }, - { - "pk": 15945, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SOUDAN", - "center": "POINT (413053.7511091012856923 2161987.8633715007454157)", - "surface": 23380000, - "canton": null, - "numero_insee": "79316" - } - }, - { - "pk": 5281, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SOUTIERS", - "center": "POINT (400495.9478478998062201 2179800.0824790080077946)", - "surface": 5500000, - "canton": null, - "numero_insee": "79318" - } - }, - { - "pk": 17505, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SOUVIGNE", - "center": "POINT (407013.9517488870187663 2154031.0050239558331668)", - "surface": 26540000, - "canton": null, - "numero_insee": "79319" - } - }, - { - "pk": 14954, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "SURIN", - "center": "POINT (385188.1231989200459793 2166962.8501572934910655)", - "surface": 13530000, - "canton": null, - "numero_insee": "79320" - } - }, - { - "pk": 35611, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "TAIZE", - "center": "POINT (411596.3785792138660327 2217323.7593734273687005)", - "surface": 21320000, - "canton": null, - "numero_insee": "79321" - } - }, - { - "pk": 22169, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE TALLUD", - "center": "POINT (398759.1184067282592878 2184089.5232862723059952)", - "surface": 19290000, - "canton": null, - "numero_insee": "79322" - } - }, - { - "pk": 32186, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "TESSONNIERE", - "center": "POINT (405296.1813163886545226 2204561.0083853309042752)", - "surface": 14740000, - "canton": null, - "numero_insee": "79325" - } - }, - { - "pk": 18768, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "THENEZAY", - "center": "POINT (418202.0760079122264870 2193057.4993002698756754)", - "surface": 48330000, - "canton": null, - "numero_insee": "79326" - } - }, - { - "pk": 26233, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "THORIGNE", - "center": "POINT (400475.3135590446181595 2145869.8328874534927309)", - "surface": 18440000, - "canton": null, - "numero_insee": "79327" - } - }, - { - "pk": 4473, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "THORIGNY-SUR-LE-MIGNON", - "center": "POINT (376468.8274955382803455 2131859.6896244925446808)", - "surface": 5340000, - "canton": null, - "numero_insee": "79328" - } - }, - { - "pk": 23988, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "THOUARS", - "center": "POINT (407042.5480942732538097 2223391.3478306061588228)", - "surface": 12010000, - "canton": null, - "numero_insee": "79329" - } - }, - { - "pk": 35858, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "TILLOU", - "center": "POINT (410108.7123372288187966 2130735.4969798680394888)", - "surface": 10140000, - "canton": null, - "numero_insee": "79330" - } - }, - { - "pk": 8444, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "TOURTENAY", - "center": "POINT (413891.7351481865625829 2230253.5336901671253145)", - "surface": 7900000, - "canton": null, - "numero_insee": "79331" - } - }, - { - "pk": 37518, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "TRAYES", - "center": "POINT (384303.9040735461749136 2189275.1078232005238533)", - "surface": 7130000, - "canton": null, - "numero_insee": "79332" - } - }, - { - "pk": 24368, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "ULCOT", - "center": "POINT (391989.7565557789057493 2228271.5237700161524117)", - "surface": 6690000, - "canton": null, - "numero_insee": "79333" - } - }, - { - "pk": 19368, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "USSEAU", - "center": "POINT (374248.0440859567606822 2134143.5222479864023626)", - "surface": 16360000, - "canton": null, - "numero_insee": "79334" - } - }, - { - "pk": 24946, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VALLANS", - "center": "POINT (377607.2792755133705214 2139475.9573298334144056)", - "surface": 9140000, - "canton": null, - "numero_insee": "79335" - } - }, - { - "pk": 10493, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VANCAIS", - "center": "POINT (423283.5328676213393919 2147359.1809078091755509)", - "surface": 17030000, - "canton": null, - "numero_insee": "79336" - } - }, - { - "pk": 37562, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE VANNEAU-IRLEAU", - "center": "POINT (370424.0057196924462914 2148825.3783688209950924)", - "surface": 14280000, - "canton": null, - "numero_insee": "79337" - } - }, - { - "pk": 12928, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VANZAY", - "center": "POINT (428255.4143132617464289 2139192.8599003860726953)", - "surface": 11430000, - "canton": null, - "numero_insee": "79338" - } - }, - { - "pk": 17375, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VASLES", - "center": "POINT (417129.1525759728974663 2177535.1617915891110897)", - "surface": 89240000, - "canton": null, - "numero_insee": "79339" - } - }, - { - "pk": 24056, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VAUSSEROUX", - "center": "POINT (410237.6133569077355787 2175776.8090004986152053)", - "surface": 19190000, - "canton": null, - "numero_insee": "79340" - } - }, - { - "pk": 8744, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VAUTEBIS", - "center": "POINT (409057.2781256809830666 2173264.8780361730605364)", - "surface": 7270000, - "canton": null, - "numero_insee": "79341" - } - }, - { - "pk": 17549, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VERNOUX-EN-GATINE", - "center": "POINT (381442.7485878285951912 2184247.2214817209169269)", - "surface": 31490000, - "canton": null, - "numero_insee": "79342" - } - }, - { - "pk": 4374, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VERNOUX-SUR-BOUTONNE", - "center": "POINT (399288.8782763010240160 2131947.4675813210196793)", - "surface": 8190000, - "canton": null, - "numero_insee": "79343" - } - }, - { - "pk": 17092, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VERRUYES", - "center": "POINT (399058.2369400983443484 2172081.4798181005753577)", - "surface": 26570000, - "canton": null, - "numero_insee": "79345" - } - }, - { - "pk": 33574, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "LE VERT", - "center": "POINT (388525.0938269909238443 2126353.7812167154625058)", - "surface": 11810000, - "canton": null, - "numero_insee": "79346" - } - }, - { - "pk": 5053, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VILLEFOLLET", - "center": "POINT (398222.5905225378228351 2127734.8479810180142522)", - "surface": 12930000, - "canton": null, - "numero_insee": "79348" - } - }, - { - "pk": 28763, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VILLEMAIN", - "center": "POINT (410431.9091519259382039 2115824.4966246495023370)", - "surface": 16880000, - "canton": null, - "numero_insee": "79349" - } - }, - { - "pk": 37716, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VILLIERS-EN-BOIS", - "center": "POINT (387889.9785487453336827 2130552.3900737809017301)", - "surface": 18600000, - "canton": null, - "numero_insee": "79350" - } - }, - { - "pk": 13848, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VILLIERS-EN-PLAINE", - "center": "POINT (379130.0617719615693204 2161207.9538252954371274)", - "surface": 28090000, - "canton": null, - "numero_insee": "79351" - } - }, - { - "pk": 13079, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VILLIERS-SUR-CHIZE", - "center": "POINT (395839.5250897665973753 2125413.1077137016691267)", - "surface": 11410000, - "canton": null, - "numero_insee": "79352" - } - }, - { - "pk": 28821, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "VOUHE", - "center": "POINT (401223.7312545903259888 2176503.1908869305625558)", - "surface": 14160000, - "canton": null, - "numero_insee": "79354" - } - }, - { - "pk": 18863, - "model": "ishtar_common.town", - "fields": { - "departement": 80, - "name": "XAINTRAY", - "center": "POINT (383761.4507674328051507 2170053.8483528289943933)", - "surface": 11150000, - "canton": null, - "numero_insee": "79357" - } - }, - { - "pk": 3535, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ABBEVILLE", - "center": "POINT (563792.4371275972807780 2568134.4217892009764910)", - "surface": 26430000, - "canton": null, - "numero_insee": "80001" - } - }, - { - "pk": 10456, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ABLAINCOURT-PRESSOIR", - "center": "POINT (635082.8425315609201789 2538415.2497264342382550)", - "surface": 9830000, - "canton": null, - "numero_insee": "80002" - } - }, - { - "pk": 4189, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ACHEUX-EN-AMIENOIS", - "center": "POINT (613955.8911355938762426 2563952.3872649110853672)", - "surface": 7220000, - "canton": null, - "numero_insee": "80003" - } - }, - { - "pk": 14617, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ACHEUX-EN-VIMEU", - "center": "POINT (552224.3061980403726920 2563535.1757128592580557)", - "surface": 12320000, - "canton": null, - "numero_insee": "80004" - } - }, - { - "pk": 5368, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AGENVILLE", - "center": "POINT (583545.2232498001540080 2575103.6057389760389924)", - "surface": 3340000, - "canton": null, - "numero_insee": "80005" - } - }, - { - "pk": 30928, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AIGNEVILLE", - "center": "POINT (547848.8458367737475783 2560296.8065064302645624)", - "surface": 10710000, - "canton": null, - "numero_insee": "80008" - } - }, - { - "pk": 37721, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AILLY-LE-HAUT-CLOCHER", - "center": "POINT (575525.0337510305689648 2565030.7918362235650420)", - "surface": 10840000, - "canton": null, - "numero_insee": "80009" - } - }, - { - "pk": 17246, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AILLY-SUR-NOYE", - "center": "POINT (600752.3355605913093314 2527720.4303509662859142)", - "surface": 25420000, - "canton": null, - "numero_insee": "80010" - } - }, - { - "pk": 21870, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AILLY-SUR-SOMME", - "center": "POINT (589089.3986129352124408 2546333.6305813263170421)", - "surface": 15220000, - "canton": null, - "numero_insee": "80011" - } - }, - { - "pk": 15964, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AIRAINES", - "center": "POINT (571824.4725818161386997 2552892.8853293601423502)", - "surface": 24970000, - "canton": null, - "numero_insee": "80013" - } - }, - { - "pk": 35111, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AIZECOURT-LE-BAS", - "center": "POINT (649654.6125027503585443 2554647.4445532159879804)", - "surface": 3550000, - "canton": null, - "numero_insee": "80014" - } - }, - { - "pk": 6708, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AIZECOURT-LE-HAUT", - "center": "POINT (646371.5024954091059044 2552418.4897317532449961)", - "surface": 3720000, - "canton": null, - "numero_insee": "80015" - } - }, - { - "pk": 21463, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ALBERT", - "center": "POINT (622323.9816238912753761 2556418.4014181345701218)", - "surface": 13800000, - "canton": null, - "numero_insee": "80016" - } - }, - { - "pk": 15652, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ALLAINES", - "center": "POINT (643173.2525675763608888 2551991.2979201199486852)", - "surface": 8390000, - "canton": null, - "numero_insee": "80017" - } - }, - { - "pk": 37112, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ALLENAY", - "center": "POINT (539497.0992152923718095 2565930.3377451701089740)", - "surface": 2210000, - "canton": null, - "numero_insee": "80018" - } - }, - { - "pk": 34739, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ALLERY", - "center": "POINT (567533.1731492853723466 2551556.2226434322074056)", - "surface": 13130000, - "canton": null, - "numero_insee": "80019" - } - }, - { - "pk": 7401, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ALLONVILLE", - "center": "POINT (602174.2725729943485931 2549044.9201560434885323)", - "surface": 10550000, - "canton": null, - "numero_insee": "80020" - } - }, - { - "pk": 20660, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AMIENS", - "center": "POINT (596605.8337661291006953 2544895.7983790426515043)", - "surface": 50080000, - "canton": null, - "numero_insee": "80021" - } - }, - { - "pk": 8477, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ANDAINVILLE", - "center": "POINT (560292.1985679180361331 2543991.2991392477415502)", - "surface": 8360000, - "canton": null, - "numero_insee": "80022" - } - }, - { - "pk": 37130, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ANDECHY", - "center": "POINT (626697.1457815759349614 2524236.2616691268049181)", - "surface": 7650000, - "canton": null, - "numero_insee": "80023" - } - }, - { - "pk": 25125, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARGOEUVES", - "center": "POINT (593466.4769053466152400 2549372.0817965450696647)", - "surface": 10310000, - "canton": null, - "numero_insee": "80024" - } - }, - { - "pk": 27511, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARGOULES", - "center": "POINT (562978.7848359327763319 2593641.7561859786510468)", - "surface": 9520000, - "canton": null, - "numero_insee": "80025" - } - }, - { - "pk": 23109, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARGUEL", - "center": "POINT (561907.2450252374401316 2542303.8081526230089366)", - "surface": 2580000, - "canton": null, - "numero_insee": "80026" - } - }, - { - "pk": 4079, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARMANCOURT", - "center": "POINT (627132.7206882011378184 2520037.3953660554252565)", - "surface": 2120000, - "canton": null, - "numero_insee": "80027" - } - }, - { - "pk": 36891, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARQUEVES", - "center": "POINT (610053.1087929466739297 2564019.6491087684407830)", - "surface": 7660000, - "canton": null, - "numero_insee": "80028" - } - }, - { - "pk": 19889, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARREST", - "center": "POINT (548564.0237603451823816 2570508.5641530505381525)", - "surface": 11130000, - "canton": null, - "numero_insee": "80029" - } - }, - { - "pk": 14485, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARRY", - "center": "POINT (556125.6797047174768522 2587581.1863436936400831)", - "surface": 7420000, - "canton": null, - "numero_insee": "80030" - } - }, - { - "pk": 32465, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ARVILLERS", - "center": "POINT (621578.4526630403706804 2526094.3395357849076390)", - "surface": 12900000, - "canton": null, - "numero_insee": "80031" - } - }, - { - "pk": 9035, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ASSAINVILLERS", - "center": "POINT (618978.8232941525056958 2513965.1637551425956190)", - "surface": 7310000, - "canton": null, - "numero_insee": "80032" - } - }, - { - "pk": 11502, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ASSEVILLERS", - "center": "POINT (636330.4255495673278347 2544729.4556439747102559)", - "surface": 5530000, - "canton": null, - "numero_insee": "80033" - } - }, - { - "pk": 33138, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ATHIES", - "center": "POINT (646074.2072415084112436 2540208.8670222042128444)", - "surface": 10900000, - "canton": null, - "numero_insee": "80034" - } - }, - { - "pk": 36434, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUBERCOURT", - "center": "POINT (615175.0425182528560981 2537947.5752302319742739)", - "surface": 3820000, - "canton": null, - "numero_insee": "80035" - } - }, - { - "pk": 6926, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUBIGNY", - "center": "POINT (609726.0090235651005059 2543405.0168063645251095)", - "surface": 9660000, - "canton": null, - "numero_insee": "80036" - } - }, - { - "pk": 9778, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUBVILLERS", - "center": "POINT (610293.4923482579179108 2523497.9749826057814062)", - "surface": 4870000, - "canton": null, - "numero_insee": "80037" - } - }, - { - "pk": 33140, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUCHONVILLERS", - "center": "POINT (621250.2690197678748518 2565114.3401438118889928)", - "surface": 5710000, - "canton": null, - "numero_insee": "80038" - } - }, - { - "pk": 28736, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AULT", - "center": "POINT (536189.6170653442386538 2566603.1424445398151875)", - "surface": 6100000, - "canton": null, - "numero_insee": "80039" - } - }, - { - "pk": 6855, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUMATRE", - "center": "POINT (559463.3477797829546034 2547386.3527969075366855)", - "surface": 5630000, - "canton": null, - "numero_insee": "80040" - } - }, - { - "pk": 7439, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUMONT", - "center": "POINT (570310.7420688868733123 2542474.1666379240341485)", - "surface": 3330000, - "canton": null, - "numero_insee": "80041" - } - }, - { - "pk": 12210, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUTHEUX", - "center": "POINT (592580.6707041333429515 2571477.2782870647497475)", - "surface": 8280000, - "canton": null, - "numero_insee": "80042" - } - }, - { - "pk": 14251, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUTHIE", - "center": "POINT (611010.7342324835481122 2569130.5834298362024128)", - "surface": 10070000, - "canton": null, - "numero_insee": "80043" - } - }, - { - "pk": 36223, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUTHIEULE", - "center": "POINT (602889.9359340814407915 2571063.5050792824476957)", - "surface": 4590000, - "canton": null, - "numero_insee": "80044" - } - }, - { - "pk": 29086, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AUTHUILLE", - "center": "POINT (624384.6367181269451976 2561238.4857734986580908)", - "surface": 3610000, - "canton": null, - "numero_insee": "80045" - } - }, - { - "pk": 30150, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AVELESGES", - "center": "POINT (570887.6050478648394346 2545280.6319134039804339)", - "surface": 4950000, - "canton": null, - "numero_insee": "80046" - } - }, - { - "pk": 35000, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AVELUY", - "center": "POINT (623199.1860898205777630 2559427.4841391681693494)", - "surface": 6790000, - "canton": null, - "numero_insee": "80047" - } - }, - { - "pk": 33096, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AVESNES-CHAUSSOY", - "center": "POINT (565894.2437517144717276 2544138.2079598503187299)", - "surface": 6150000, - "canton": null, - "numero_insee": "80048" - } - }, - { - "pk": 35115, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "AYENCOURT", - "center": "POINT (615473.5740225638728589 2514335.9380971272476017)", - "surface": 4690000, - "canton": null, - "numero_insee": "80049" - } - }, - { - "pk": 5922, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BACOUEL-SUR-SELLE", - "center": "POINT (589667.6730981940636411 2537033.0235743313096464)", - "surface": 6370000, - "canton": null, - "numero_insee": "80050" - } - }, - { - "pk": 3910, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BAILLEUL", - "center": "POINT (565370.1738705412717536 2558942.3861537314951420)", - "surface": 14030000, - "canton": null, - "numero_insee": "80051" - } - }, - { - "pk": 31570, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BAIZIEUX", - "center": "POINT (612630.8631926318630576 2554936.1014883765019476)", - "surface": 5080000, - "canton": null, - "numero_insee": "80052" - } - }, - { - "pk": 26128, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BALATRE", - "center": "POINT (638106.5609367524739355 2523932.0832544658333063)", - "surface": 3330000, - "canton": null, - "numero_insee": "80053" - } - }, - { - "pk": 35242, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BARLEUX", - "center": "POINT (640033.1683746031485498 2544660.5903117791749537)", - "surface": 7550000, - "canton": null, - "numero_insee": "80054" - } - }, - { - "pk": 11302, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BARLY", - "center": "POINT (595520.8730165793094784 2578806.0241054212674499)", - "surface": 11600000, - "canton": null, - "numero_insee": "80055" - } - }, - { - "pk": 25085, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BAVELINCOURT", - "center": "POINT (608119.3449613779084757 2555998.8303303355351090)", - "surface": 7620000, - "canton": null, - "numero_insee": "80056" - } - }, - { - "pk": 11204, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BAYENCOURT", - "center": "POINT (616801.8216575483093038 2570580.0440783347003162)", - "surface": 1860000, - "canton": null, - "numero_insee": "80057" - } - }, - { - "pk": 27985, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BAYONVILLERS", - "center": "POINT (620953.6506935651414096 2540897.8683021115139127)", - "surface": 7990000, - "canton": null, - "numero_insee": "80058" - } - }, - { - "pk": 11194, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BAZENTIN", - "center": "POINT (630804.6818308461224660 2559291.3717688145115972)", - "surface": 5140000, - "canton": null, - "numero_insee": "80059" - } - }, - { - "pk": 23491, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEALCOURT", - "center": "POINT (588925.2155070407316089 2577850.2069768598303199)", - "surface": 3560000, - "canton": null, - "numero_insee": "80060" - } - }, - { - "pk": 8104, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUCAMPS-LE-JEUNE", - "center": "POINT (559161.0038051778683439 2535676.9609003798104823)", - "surface": 6770000, - "canton": null, - "numero_insee": "80061" - } - }, - { - "pk": 31995, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUCAMPS-LE-VIEUX", - "center": "POINT (559736.2224568885285407 2538683.5405420977622271)", - "surface": 5050000, - "canton": null, - "numero_insee": "80062" - } - }, - { - "pk": 24566, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUCHAMPS", - "center": "POINT (541561.5495162782026455 2558343.2333849561400712)", - "surface": 7330000, - "canton": null, - "numero_insee": "80063" - } - }, - { - "pk": 5474, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUCOURT-EN-SANTERRE", - "center": "POINT (617915.9811655831290409 2533267.8362487321719527)", - "surface": 5980000, - "canton": null, - "numero_insee": "80064" - } - }, - { - "pk": 6472, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUCOURT-SUR-L'ANCRE", - "center": "POINT (624849.5323876381153241 2565444.7875019828788936)", - "surface": 3560000, - "canton": null, - "numero_insee": "80065" - } - }, - { - "pk": 28165, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUCOURT-SUR-L'HALLUE", - "center": "POINT (606520.2184254421154037 2555785.2840056926943362)", - "surface": 5510000, - "canton": null, - "numero_insee": "80066" - } - }, - { - "pk": 35134, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUMETZ", - "center": "POINT (583779.6952057582093403 2571003.2707058535888791)", - "surface": 6250000, - "canton": null, - "numero_insee": "80068" - } - }, - { - "pk": 28438, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUMONT-HAMEL", - "center": "POINT (623156.2628344804979861 2564530.0313407937064767)", - "surface": 8380000, - "canton": null, - "numero_insee": "80069" - } - }, - { - "pk": 16901, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEAUVAL", - "center": "POINT (599414.2435006521409377 2567932.5816132472828031)", - "surface": 22860000, - "canton": null, - "numero_insee": "80071" - } - }, - { - "pk": 13103, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BECORDEL-BECOURT", - "center": "POINT (625132.1270986049203202 2555641.5650156331248581)", - "surface": 3670000, - "canton": null, - "numero_insee": "80073" - } - }, - { - "pk": 12956, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BECQUIGNY", - "center": "POINT (620518.2598596323514357 2521282.5359109789133072)", - "surface": 6080000, - "canton": null, - "numero_insee": "80074" - } - }, - { - "pk": 10155, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEHEN", - "center": "POINT (558742.6028212236706167 2561788.6223741057328880)", - "surface": 9820000, - "canton": null, - "numero_insee": "80076" - } - }, - { - "pk": 32024, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEHENCOURT", - "center": "POINT (609545.2667468566214666 2553009.0798623519949615)", - "surface": 7080000, - "canton": null, - "numero_insee": "80077" - } - }, - { - "pk": 9571, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BELLANCOURT", - "center": "POINT (569610.3777552923420444 2566382.0757871391251683)", - "surface": 6040000, - "canton": null, - "numero_insee": "80078" - } - }, - { - "pk": 11050, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BELLEUSE", - "center": "POINT (583882.8252188422484323 2522876.1264473041519523)", - "surface": 7830000, - "canton": null, - "numero_insee": "80079" - } - }, - { - "pk": 10181, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BELLOY-EN-SANTERRE", - "center": "POINT (637643.7353826675098389 2543239.6404722696170211)", - "surface": 5420000, - "canton": null, - "numero_insee": "80080" - } - }, - { - "pk": 10860, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BELLOY-SAINT-LEONARD", - "center": "POINT (569285.1088826949708164 2545467.3376922369934618)", - "surface": 6610000, - "canton": null, - "numero_insee": "80081" - } - }, - { - "pk": 25874, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BELLOY-SUR-SOMME", - "center": "POINT (585724.8137523275800049 2553809.7738653151318431)", - "surface": 13220000, - "canton": null, - "numero_insee": "80082" - } - }, - { - "pk": 4209, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERGICOURT", - "center": "POINT (577740.1979523553745821 2527527.4859905457124114)", - "surface": 6890000, - "canton": null, - "numero_insee": "80083" - } - }, - { - "pk": 12517, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERMESNIL", - "center": "POINT (557283.9641770910238847 2544766.6190968248993158)", - "surface": 4120000, - "canton": null, - "numero_insee": "80084" - } - }, - { - "pk": 10121, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERNATRE", - "center": "POINT (582923.9717893173219636 2577599.7956120977178216)", - "surface": 4620000, - "canton": null, - "numero_insee": "80085" - } - }, - { - "pk": 18319, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERNAVILLE", - "center": "POINT (588482.8478202157421038 2570942.6352268997579813)", - "surface": 17370000, - "canton": null, - "numero_insee": "80086" - } - }, - { - "pk": 37975, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERNAY-EN-PONTHIEU", - "center": "POINT (558044.1514844396151602 2585496.0659993947483599)", - "surface": 9940000, - "canton": null, - "numero_insee": "80087" - } - }, - { - "pk": 26290, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERNES", - "center": "POINT (655030.7394034140743315 2545987.7501614415086806)", - "surface": 7680000, - "canton": null, - "numero_insee": "80088" - } - }, - { - "pk": 13891, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERNEUIL", - "center": "POINT (588226.3158008067402989 2565737.5475010708905756)", - "surface": 5560000, - "canton": null, - "numero_insee": "80089" - } - }, - { - "pk": 19006, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERNY-EN-SANTERRE", - "center": "POINT (636960.2304111365228891 2541232.7098515657708049)", - "surface": 4500000, - "canton": null, - "numero_insee": "80090" - } - }, - { - "pk": 25709, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERTANGLES", - "center": "POINT (596737.9384205430978909 2553001.6106444955803454)", - "surface": 8630000, - "canton": null, - "numero_insee": "80092" - } - }, - { - "pk": 10288, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERTEAUCOURT-LES-DAMES", - "center": "POINT (587068.4922036065254360 2560624.9392908988520503)", - "surface": 4690000, - "canton": null, - "numero_insee": "80093" - } - }, - { - "pk": 27779, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERTEAUCOURT-LES-THENNES", - "center": "POINT (608988.6335566216148436 2535894.4093582835048437)", - "surface": 2650000, - "canton": null, - "numero_insee": "80094" - } - }, - { - "pk": 32467, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BERTRANCOURT", - "center": "POINT (616230.1221910716267303 2567173.3185342093929648)", - "surface": 6190000, - "canton": null, - "numero_insee": "80095" - } - }, - { - "pk": 11061, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BETHENCOURT-SUR-MER", - "center": "POINT (539908.1505949129350483 2564633.0299587291665375)", - "surface": 2980000, - "canton": null, - "numero_insee": "80096" - } - }, - { - "pk": 31572, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BETHENCOURT-SUR-SOMME", - "center": "POINT (644734.2079667884390801 2532993.3138705873861909)", - "surface": 2990000, - "canton": null, - "numero_insee": "80097" - } - }, - { - "pk": 33331, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BETTEMBOS", - "center": "POINT (567177.7315662208711728 2534243.1183582600206137)", - "surface": 4150000, - "canton": null, - "numero_insee": "80098" - } - }, - { - "pk": 9634, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BETTENCOURT-RIVIERE", - "center": "POINT (574206.4244812203105539 2555214.1508262385614216)", - "surface": 7360000, - "canton": null, - "numero_insee": "80099" - } - }, - { - "pk": 4261, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BETTENCOURT-SAINT-OUEN", - "center": "POINT (584589.8789606093196198 2557902.6195564176887274)", - "surface": 8030000, - "canton": null, - "numero_insee": "80100" - } - }, - { - "pk": 30753, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BEUVRAIGNES", - "center": "POINT (631772.2386551805539057 2515673.7791214007884264)", - "surface": 14780000, - "canton": null, - "numero_insee": "80101" - } - }, - { - "pk": 12271, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BIACHES", - "center": "POINT (640508.9765124127734452 2547566.2913290807045996)", - "surface": 6590000, - "canton": null, - "numero_insee": "80102" - } - }, - { - "pk": 33616, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BIARRE", - "center": "POINT (639397.1348282563267276 2525143.6771083520725369)", - "surface": 2370000, - "canton": null, - "numero_insee": "80103" - } - }, - { - "pk": 27146, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BIENCOURT", - "center": "POINT (553708.5993646461283788 2553541.8484936393797398)", - "surface": 2220000, - "canton": null, - "numero_insee": "80104" - } - }, - { - "pk": 12141, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BILLANCOURT", - "center": "POINT (640582.5949396668002009 2526954.7449951283633709)", - "surface": 4980000, - "canton": null, - "numero_insee": "80105" - } - }, - { - "pk": 31346, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BLANGY-SOUS-POIX", - "center": "POINT (576019.1929777399636805 2529914.5067574628628790)", - "surface": 8080000, - "canton": null, - "numero_insee": "80106" - } - }, - { - "pk": 13275, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BLANGY-TRONVILLE", - "center": "POINT (606741.2708986173383892 2541378.7730230875313282)", - "surface": 12450000, - "canton": null, - "numero_insee": "80107" - } - }, - { - "pk": 4068, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOISBERGUES", - "center": "POINT (591767.6914239207981154 2572971.3025262709707022)", - "surface": 4310000, - "canton": null, - "numero_insee": "80108" - } - }, - { - "pk": 23373, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE BOISLE", - "center": "POINT (574049.3284417230170220 2585930.1180545156821609)", - "surface": 11720000, - "canton": null, - "numero_insee": "80109" - } - }, - { - "pk": 35326, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOISMONT", - "center": "POINT (552539.2496981077129021 2573743.5650397958233953)", - "surface": 16090000, - "canton": null, - "numero_insee": "80110" - } - }, - { - "pk": 38009, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BONNAY", - "center": "POINT (612175.1695852197008207 2549629.2082564560696483)", - "surface": 5860000, - "canton": null, - "numero_insee": "80112" - } - }, - { - "pk": 34966, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BONNEVILLE", - "center": "POINT (594639.5653106025420129 2564590.6489847865886986)", - "surface": 10220000, - "canton": null, - "numero_insee": "80113" - } - }, - { - "pk": 23767, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOSQUEL", - "center": "POINT (591055.6080793581204489 2526638.4775446876883507)", - "surface": 9600000, - "canton": null, - "numero_insee": "80114" - } - }, - { - "pk": 17369, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUCHAVESNES-BERGEN", - "center": "POINT (641944.8188557173125446 2555282.8497556424699724)", - "surface": 10160000, - "canton": null, - "numero_insee": "80115" - } - }, - { - "pk": 32235, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUCHOIR", - "center": "POINT (624667.4650767910061404 2527621.2227065898478031)", - "surface": 5890000, - "canton": null, - "numero_insee": "80116" - } - }, - { - "pk": 29046, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUCHON", - "center": "POINT (577764.6718117500422522 2560446.9275423539802432)", - "surface": 4560000, - "canton": null, - "numero_insee": "80117" - } - }, - { - "pk": 3258, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUFFLERS", - "center": "POINT (577460.1775056879268959 2584858.0719235627911985)", - "surface": 5570000, - "canton": null, - "numero_insee": "80118" - } - }, - { - "pk": 29267, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUGAINVILLE", - "center": "POINT (579129.5274911365704611 2540847.0053732618689537)", - "surface": 10270000, - "canton": null, - "numero_insee": "80119" - } - }, - { - "pk": 25300, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUILLANCOURT-EN-SERY", - "center": "POINT (549221.3582027435768396 2551703.3244507736526430)", - "surface": 16270000, - "canton": null, - "numero_insee": "80120" - } - }, - { - "pk": 8775, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUILLANCOURT-LA-BATAILLE", - "center": "POINT (613706.2287892802851275 2522225.8693862212821841)", - "surface": 3700000, - "canton": null, - "numero_insee": "80121" - } - }, - { - "pk": 26138, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUQUEMAISON", - "center": "POINT (600113.8706264884676784 2579945.1769091957248747)", - "surface": 7340000, - "canton": null, - "numero_insee": "80122" - } - }, - { - "pk": 9369, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOURDON", - "center": "POINT (582013.7189674917608500 2554879.3088237708434463)", - "surface": 6920000, - "canton": null, - "numero_insee": "80123" - } - }, - { - "pk": 13890, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOURSEVILLE", - "center": "POINT (541581.4441929010208696 2567948.8623829996213317)", - "surface": 8130000, - "canton": null, - "numero_insee": "80124" - } - }, - { - "pk": 4017, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUSSICOURT", - "center": "POINT (617006.3017316964687780 2522453.7292820219881833)", - "surface": 3290000, - "canton": null, - "numero_insee": "80125" - } - }, - { - "pk": 14027, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUVAINCOURT-SUR-BRESLE", - "center": "POINT (539644.7320174012565985 2560228.3255601287819445)", - "surface": 6790000, - "canton": null, - "numero_insee": "80127" - } - }, - { - "pk": 13397, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUVINCOURT-EN-VERMANDOIS", - "center": "POINT (650844.6212301513878629 2544051.3240957837551832)", - "surface": 1970000, - "canton": null, - "numero_insee": "80128" - } - }, - { - "pk": 23470, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOUZINCOURT", - "center": "POINT (619704.1614907244220376 2558597.6303847618401051)", - "surface": 8170000, - "canton": null, - "numero_insee": "80129" - } - }, - { - "pk": 9123, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOVELLES", - "center": "POINT (585909.5621688237879425 2543705.4559457758441567)", - "surface": 6920000, - "canton": null, - "numero_insee": "80130" - } - }, - { - "pk": 16681, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BOVES", - "center": "POINT (603364.7159758971538395 2538348.6545024975202978)", - "surface": 25600000, - "canton": null, - "numero_insee": "80131" - } - }, - { - "pk": 12820, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRACHES", - "center": "POINT (611674.0584125237073749 2525911.0160527490079403)", - "surface": 7220000, - "canton": null, - "numero_insee": "80132" - } - }, - { - "pk": 22921, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRAILLY-CORNEHOTTE", - "center": "POINT (572889.7890943413367495 2581017.7046012924984097)", - "surface": 11560000, - "canton": null, - "numero_insee": "80133" - } - }, - { - "pk": 10410, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRASSY", - "center": "POINT (579253.5609494659584016 2526039.2634109575301409)", - "surface": 2440000, - "canton": null, - "numero_insee": "80134" - } - }, - { - "pk": 37973, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRAY-LES-MAREUIL", - "center": "POINT (564946.5405621324898675 2561740.4423102377913892)", - "surface": 5380000, - "canton": null, - "numero_insee": "80135" - } - }, - { - "pk": 3747, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRAY-SUR-SOMME", - "center": "POINT (627672.9627009013202041 2550960.2318089166656137)", - "surface": 17030000, - "canton": null, - "numero_insee": "80136" - } - }, - { - "pk": 10598, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BREILLY", - "center": "POINT (587573.5326843527145684 2548121.9698471087031066)", - "surface": 5740000, - "canton": null, - "numero_insee": "80137" - } - }, - { - "pk": 6473, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRESLE", - "center": "POINT (615233.0177942658774555 2554857.9138388866558671)", - "surface": 3590000, - "canton": null, - "numero_insee": "80138" - } - }, - { - "pk": 13372, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BREUIL", - "center": "POINT (644186.1822242569178343 2526784.9950254699215293)", - "surface": 2220000, - "canton": null, - "numero_insee": "80139" - } - }, - { - "pk": 13111, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BREVILLERS", - "center": "POINT (603115.3251184732653201 2579970.3724936316721141)", - "surface": 1810000, - "canton": null, - "numero_insee": "80140" - } - }, - { - "pk": 29515, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRIE", - "center": "POINT (643551.8317224284401163 2542689.0722313993610442)", - "surface": 6860000, - "canton": null, - "numero_insee": "80141" - } - }, - { - "pk": 12249, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRIQUEMESNIL-FLOXICOURT", - "center": "POINT (581508.9740252636838704 2543468.4624581364914775)", - "surface": 7360000, - "canton": null, - "numero_insee": "80142" - } - }, - { - "pk": 19538, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BROCOURT", - "center": "POINT (562731.0858269686577842 2539509.0533323325216770)", - "surface": 2490000, - "canton": null, - "numero_insee": "80143" - } - }, - { - "pk": 37472, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BROUCHY", - "center": "POINT (654911.2495346341747791 2524574.0644157472997904)", - "surface": 8110000, - "canton": null, - "numero_insee": "80144" - } - }, - { - "pk": 6803, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRUCAMPS", - "center": "POINT (579636.2913713169982657 2563964.5980739388614893)", - "surface": 6430000, - "canton": null, - "numero_insee": "80145" - } - }, - { - "pk": 36875, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BRUTELLES", - "center": "POINT (541552.2213198987301439 2571450.5914268465712667)", - "surface": 6250000, - "canton": null, - "numero_insee": "80146" - } - }, - { - "pk": 28637, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUIGNY-L'ABBE", - "center": "POINT (571908.1694688678253442 2566801.5329627878963947)", - "surface": 7310000, - "canton": null, - "numero_insee": "80147" - } - }, - { - "pk": 27558, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUIGNY-LES-GAMACHES", - "center": "POINT (544863.2102497913874686 2558370.7914511649869382)", - "surface": 4830000, - "canton": null, - "numero_insee": "80148" - } - }, - { - "pk": 31286, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUIGNY-SAINT-MACLOU", - "center": "POINT (562950.2065583528019488 2573130.1925689782947302)", - "surface": 7310000, - "canton": null, - "numero_insee": "80149" - } - }, - { - "pk": 27986, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUIRE-COURCELLES", - "center": "POINT (648203.6316091440385208 2548731.7924749902449548)", - "surface": 7830000, - "canton": null, - "numero_insee": "80150" - } - }, - { - "pk": 29304, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUIRE-SUR-L'ANCRE", - "center": "POINT (618348.8852648804895580 2553183.1281877607107162)", - "surface": 5320000, - "canton": null, - "numero_insee": "80151" - } - }, - { - "pk": 32236, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUS-LA-MESIERE", - "center": "POINT (627268.9793992800405249 2515735.9351826226338744)", - "surface": 7030000, - "canton": null, - "numero_insee": "80152" - } - }, - { - "pk": 35721, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUS-LES-ARTOIS", - "center": "POINT (614625.9661126198479906 2567560.0606496264226735)", - "surface": 6740000, - "canton": null, - "numero_insee": "80153" - } - }, - { - "pk": 5141, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUSSU", - "center": "POINT (645890.6492375290254131 2550113.1034467020072043)", - "surface": 6910000, - "canton": null, - "numero_insee": "80154" - } - }, - { - "pk": 14275, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUSSUS-BUSSUEL", - "center": "POINT (576398.6717810035916045 2568239.9189950954169035)", - "surface": 8290000, - "canton": null, - "numero_insee": "80155" - } - }, - { - "pk": 32888, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUSSY-LES-DAOURS", - "center": "POINT (605400.2703756003174931 2546170.3191176359541714)", - "surface": 8170000, - "canton": null, - "numero_insee": "80156" - } - }, - { - "pk": 10158, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUSSY-LES-POIX", - "center": "POINT (576671.8030698914080858 2535623.3566113300621510)", - "surface": 4430000, - "canton": null, - "numero_insee": "80157" - } - }, - { - "pk": 11074, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "BUVERCHY", - "center": "POINT (645695.4091505231335759 2525797.1178270820528269)", - "surface": 1860000, - "canton": null, - "numero_insee": "80158" - } - }, - { - "pk": 25517, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CACHY", - "center": "POINT (610053.9022645783843473 2540105.8355009993538260)", - "surface": 6120000, - "canton": null, - "numero_insee": "80159" - } - }, - { - "pk": 24299, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAGNY", - "center": "POINT (600054.6060636369511485 2539321.4565107636153698)", - "surface": 5330000, - "canton": null, - "numero_insee": "80160" - } - }, - { - "pk": 9983, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAHON", - "center": "POINT (556477.1172391052823514 2569474.0522829601541162)", - "surface": 7100000, - "canton": null, - "numero_insee": "80161" - } - }, - { - "pk": 25159, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAIX", - "center": "POINT (622204.7644595039309934 2534904.8517038337886333)", - "surface": 12110000, - "canton": null, - "numero_insee": "80162" - } - }, - { - "pk": 29483, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAMBRON", - "center": "POINT (559088.4379331370582804 2568295.2019767435267568)", - "surface": 12880000, - "canton": null, - "numero_insee": "80163" - } - }, - { - "pk": 29514, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAMON", - "center": "POINT (601908.5555072301067412 2544940.3018741989508271)", - "surface": 13150000, - "canton": null, - "numero_insee": "80164" - } - }, - { - "pk": 29482, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAMPS-EN-AMIENOIS", - "center": "POINT (573208.0500736976973712 2542998.7104171295650303)", - "surface": 4580000, - "canton": null, - "numero_insee": "80165" - } - }, - { - "pk": 27446, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CANAPLES", - "center": "POINT (592353.5249599124072120 2562770.4504756298847497)", - "surface": 10160000, - "canton": null, - "numero_insee": "80166" - } - }, - { - "pk": 24870, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CANCHY", - "center": "POINT (566821.1516122260363773 2576864.6399296708405018)", - "surface": 6450000, - "canton": null, - "numero_insee": "80167" - } - }, - { - "pk": 17829, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CANDAS", - "center": "POINT (595920.0664725828683004 2567002.7521177204325795)", - "surface": 17360000, - "canton": null, - "numero_insee": "80168" - } - }, - { - "pk": 7382, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CANNESSIERES", - "center": "POINT (558950.5458652045344934 2548882.9377889046445489)", - "surface": 3740000, - "canton": null, - "numero_insee": "80169" - } - }, - { - "pk": 28437, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CANTIGNY", - "center": "POINT (611034.2158428324619308 2518701.3016673917882144)", - "surface": 4070000, - "canton": null, - "numero_insee": "80170" - } - }, - { - "pk": 10378, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAOURS", - "center": "POINT (567376.6406002303119749 2570265.5880196047946811)", - "surface": 6200000, - "canton": null, - "numero_insee": "80171" - } - }, - { - "pk": 11111, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAPPY", - "center": "POINT (630601.3888859007274732 2547783.0222964538261294)", - "surface": 12000000, - "canton": null, - "numero_insee": "80172" - } - }, - { - "pk": 8123, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CARDONNETTE", - "center": "POINT (601360.4267450342886150 2550639.0162627822719514)", - "surface": 5570000, - "canton": null, - "numero_insee": "80173" - } - }, - { - "pk": 35764, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE CARDONNOIS", - "center": "POINT (610565.8923483410617337 2514895.0602486357092857)", - "surface": 2340000, - "canton": null, - "numero_insee": "80174" - } - }, - { - "pk": 30088, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CARNOY", - "center": "POINT (630044.7059052671538666 2554482.2167337522841990)", - "surface": 2930000, - "canton": null, - "numero_insee": "80175" - } - }, - { - "pk": 32664, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CARREPUIS", - "center": "POINT (634811.5512846448691562 2523103.8485060553066432)", - "surface": 5550000, - "canton": null, - "numero_insee": "80176" - } - }, - { - "pk": 20220, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CARTIGNY", - "center": "POINT (648927.6134892768459395 2545936.2666912609711289)", - "surface": 15340000, - "canton": null, - "numero_insee": "80177" - } - }, - { - "pk": 24952, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAULIERES", - "center": "POINT (568395.1023335624486208 2532252.1171754454262555)", - "surface": 5510000, - "canton": null, - "numero_insee": "80179" - } - }, - { - "pk": 11136, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAVILLON", - "center": "POINT (581180.3202747384784743 2546867.6937597794458270)", - "surface": 5480000, - "canton": null, - "numero_insee": "80180" - } - }, - { - "pk": 9389, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAYEUX-EN-SANTERRE", - "center": "POINT (619401.6214037105673924 2535081.3953423975035548)", - "surface": 5450000, - "canton": null, - "numero_insee": "80181" - } - }, - { - "pk": 23061, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CAYEUX-SUR-MER", - "center": "POINT (541215.3377196940127760 2575850.2460910878144205)", - "surface": 27530000, - "canton": null, - "numero_insee": "80182" - } - }, - { - "pk": 23072, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CERISY-BULEUX", - "center": "POINT (556914.4028342001838610 2553068.3497665487229824)", - "surface": 5740000, - "canton": null, - "numero_insee": "80183" - } - }, - { - "pk": 27181, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CERISY", - "center": "POINT (620523.9940932270837948 2544396.3059474201872945)", - "surface": 10830000, - "canton": null, - "numero_insee": "80184" - } - }, - { - "pk": 24397, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHAMPIEN", - "center": "POINT (637620.6237540635047480 2522226.9661071966402233)", - "surface": 8680000, - "canton": null, - "numero_insee": "80185" - } - }, - { - "pk": 9660, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHAULNES", - "center": "POINT (633505.6022969010518864 2535600.3134683258831501)", - "surface": 8680000, - "canton": null, - "numero_insee": "80186" - } - }, - { - "pk": 35203, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LA CHAUSSEE-TIRANCOURT", - "center": "POINT (587844.3296232661232352 2551626.2697219857946038)", - "surface": 12480000, - "canton": null, - "numero_insee": "80187" - } - }, - { - "pk": 11461, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHAUSSOY-EPAGNY", - "center": "POINT (599375.1089496624190360 2524907.1931958012282848)", - "surface": 11630000, - "canton": null, - "numero_insee": "80188" - } - }, - { - "pk": 26748, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LA CHAVATTE", - "center": "POINT (630861.4701265784678981 2528774.0077869733795524)", - "surface": 1920000, - "canton": null, - "numero_insee": "80189" - } - }, - { - "pk": 6300, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHEPY", - "center": "POINT (550224.9797264059307054 2563318.3611046089790761)", - "surface": 7340000, - "canton": null, - "numero_insee": "80190" - } - }, - { - "pk": 28439, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHILLY", - "center": "POINT (631222.9347353845369071 2533379.7903061984106898)", - "surface": 4940000, - "canton": null, - "numero_insee": "80191" - } - }, - { - "pk": 13637, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHIPILLY", - "center": "POINT (622604.8748132165055722 2546815.2084563542157412)", - "surface": 6910000, - "canton": null, - "numero_insee": "80192" - } - }, - { - "pk": 11320, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHIRMONT", - "center": "POINT (602483.4711144026368856 2524132.8041572417132556)", - "surface": 7820000, - "canton": null, - "numero_insee": "80193" - } - }, - { - "pk": 8009, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHUIGNES", - "center": "POINT (629827.0877165984129533 2544674.6964627387933433)", - "surface": 4600000, - "canton": null, - "numero_insee": "80194" - } - }, - { - "pk": 16680, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CHUIGNOLLES", - "center": "POINT (628122.8464929760666564 2545060.5858901557512581)", - "surface": 4860000, - "canton": null, - "numero_insee": "80195" - } - }, - { - "pk": 7859, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CITERNE", - "center": "POINT (562612.2743449965491891 2553716.3318728371523321)", - "surface": 6400000, - "canton": null, - "numero_insee": "80196" - } - }, - { - "pk": 9393, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CIZANCOURT", - "center": "POINT (641888.0553550386102870 2538272.4626343627460301)", - "surface": 1830000, - "canton": null, - "numero_insee": "80197" - } - }, - { - "pk": 23726, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CLAIRY-SAULCHOIX", - "center": "POINT (587844.0903311888687313 2539719.3257537484169006)", - "surface": 6670000, - "canton": null, - "numero_insee": "80198" - } - }, - { - "pk": 35684, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COCQUEREL", - "center": "POINT (572947.1911191353574395 2562207.6177437645383179)", - "surface": 9580000, - "canton": null, - "numero_insee": "80200" - } - }, - { - "pk": 37147, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COIGNEUX", - "center": "POINT (615702.1210030735237524 2570470.7431645961478353)", - "surface": 2950000, - "canton": null, - "numero_insee": "80201" - } - }, - { - "pk": 5461, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COISY", - "center": "POINT (599747.0167145902523771 2552126.3420350379310548)", - "surface": 6130000, - "canton": null, - "numero_insee": "80202" - } - }, - { - "pk": 27984, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COLINCAMPS", - "center": "POINT (619530.9150028141448274 2567301.1275142324157059)", - "surface": 4480000, - "canton": null, - "numero_insee": "80203" - } - }, - { - "pk": 31575, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COMBLES", - "center": "POINT (638527.0873990304535255 2557155.1445206631906331)", - "surface": 9870000, - "canton": null, - "numero_insee": "80204" - } - }, - { - "pk": 13757, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CONDE-FOLIE", - "center": "POINT (577298.7743428385583684 2556340.6767253773286939)", - "surface": 10380000, - "canton": null, - "numero_insee": "80205" - } - }, - { - "pk": 9566, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CONTALMAISON", - "center": "POINT (628603.5782873785356060 2559272.8440776076167822)", - "surface": 5730000, - "canton": null, - "numero_insee": "80206" - } - }, - { - "pk": 31168, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CONTAY", - "center": "POINT (609411.5955929377814755 2557010.2602809336967766)", - "surface": 8570000, - "canton": null, - "numero_insee": "80207" - } - }, - { - "pk": 11264, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CONTEVILLE", - "center": "POINT (580736.3107319782720879 2575980.5742961033247411)", - "surface": 6490000, - "canton": null, - "numero_insee": "80208" - } - }, - { - "pk": 6121, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CONTOIRE", - "center": "POINT (615779.5911062363302335 2525545.2805597572587430)", - "surface": 7360000, - "canton": null, - "numero_insee": "80209" - } - }, - { - "pk": 7860, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CONTRE", - "center": "POINT (582041.6295360265066847 2527663.5782548179849982)", - "surface": 9710000, - "canton": null, - "numero_insee": "80210" - } - }, - { - "pk": 17470, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CONTY", - "center": "POINT (586140.4386659378651530 2528098.1665090299211442)", - "surface": 23930000, - "canton": null, - "numero_insee": "80211" - } - }, - { - "pk": 18243, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CORBIE", - "center": "POINT (611396.6194864395074546 2547021.1548170838505030)", - "surface": 16360000, - "canton": null, - "numero_insee": "80212" - } - }, - { - "pk": 11167, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COTTENCHY", - "center": "POINT (602196.8507543714949861 2534436.5448398138396442)", - "surface": 10620000, - "canton": null, - "numero_insee": "80213" - } - }, - { - "pk": 29085, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COULLEMELLE", - "center": "POINT (606327.5007341045420617 2519162.0666261748410761)", - "surface": 9440000, - "canton": null, - "numero_insee": "80214" - } - }, - { - "pk": 25430, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COULONVILLERS", - "center": "POINT (577158.8503951462917030 2573048.9867235440760851)", - "surface": 9590000, - "canton": null, - "numero_insee": "80215" - } - }, - { - "pk": 34329, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COURCELETTE", - "center": "POINT (629175.2470089473063126 2562679.5975180668756366)", - "surface": 4660000, - "canton": null, - "numero_insee": "80216" - } - }, - { - "pk": 7758, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COURCELLES-AU-BOIS", - "center": "POINT (617626.6096050569321960 2567685.3416925715282559)", - "surface": 2020000, - "canton": null, - "numero_insee": "80217" - } - }, - { - "pk": 11436, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COURCELLES-SOUS-MOYENCOURT", - "center": "POINT (578680.3878938501002267 2534739.6458446122705936)", - "surface": 6790000, - "canton": null, - "numero_insee": "80218" - } - }, - { - "pk": 36400, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COURCELLES-SOUS-THOIX", - "center": "POINT (581163.7867925986647606 2524954.6058479510247707)", - "surface": 4340000, - "canton": null, - "numero_insee": "80219" - } - }, - { - "pk": 25708, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "COURTEMANCHE", - "center": "POINT (615037.1959066105773672 2518634.8813745994120836)", - "surface": 4190000, - "canton": null, - "numero_insee": "80220" - } - }, - { - "pk": 37860, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CRAMONT", - "center": "POINT (579360.7680147495120764 2572967.3723891163244843)", - "surface": 9740000, - "canton": null, - "numero_insee": "80221" - } - }, - { - "pk": 23316, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CRECY-EN-PONTHIEU", - "center": "POINT (564870.0146172817330807 2582851.6504123462364078)", - "surface": 57420000, - "canton": null, - "numero_insee": "80222" - } - }, - { - "pk": 22198, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CREMERY", - "center": "POINT (635175.5307333084056154 2527409.4952323036268353)", - "surface": 2560000, - "canton": null, - "numero_insee": "80223" - } - }, - { - "pk": 36436, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CRESSY-OMENCOURT", - "center": "POINT (641202.3033644882962108 2524658.5870620207861066)", - "surface": 7820000, - "canton": null, - "numero_insee": "80224" - } - }, - { - "pk": 5656, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CREUSE", - "center": "POINT (587161.3406574383843690 2537612.3652025396004319)", - "surface": 5070000, - "canton": null, - "numero_insee": "80225" - } - }, - { - "pk": 30194, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CROIX-MOLIGNEAUX", - "center": "POINT (647810.5197037676116452 2536021.0286496793851256)", - "surface": 8050000, - "canton": null, - "numero_insee": "80226" - } - }, - { - "pk": 24554, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CROIXRAULT", - "center": "POINT (574691.7027397353667766 2533105.2950786422006786)", - "surface": 8960000, - "canton": null, - "numero_insee": "80227" - } - }, - { - "pk": 3929, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE CROTOY", - "center": "POINT (548957.3215087420539930 2583318.9878596635535359)", - "surface": 16680000, - "canton": null, - "numero_insee": "80228" - } - }, - { - "pk": 5765, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CROUY-SAINT-PIERRE", - "center": "POINT (582442.4236035677604377 2551480.9382829740643501)", - "surface": 10480000, - "canton": null, - "numero_insee": "80229" - } - }, - { - "pk": 9519, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CURCHY", - "center": "POINT (638343.5036279235500842 2531438.5672411294654012)", - "surface": 9700000, - "canton": null, - "numero_insee": "80230" - } - }, - { - "pk": 27180, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "CURLU", - "center": "POINT (634563.8320379565702751 2552519.1112537849694490)", - "surface": 6000000, - "canton": null, - "numero_insee": "80231" - } - }, - { - "pk": 9265, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DAMERY", - "center": "POINT (628883.1541440393775702 2526055.7393042678013444)", - "surface": 4930000, - "canton": null, - "numero_insee": "80232" - } - }, - { - "pk": 12002, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DANCOURT-POPINCOURT", - "center": "POINT (628444.3614354818128049 2518747.6473189247772098)", - "surface": 5900000, - "canton": null, - "numero_insee": "80233" - } - }, - { - "pk": 13913, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DAOURS", - "center": "POINT (607309.6474823600146919 2545185.7713169930502772)", - "surface": 8770000, - "canton": null, - "numero_insee": "80234" - } - }, - { - "pk": 14270, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DARGNIES", - "center": "POINT (542039.2562779167201370 2561048.7642008252441883)", - "surface": 3720000, - "canton": null, - "numero_insee": "80235" - } - }, - { - "pk": 17245, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DAVENESCOURT", - "center": "POINT (618692.9037328626727685 2524168.9327343283221126)", - "surface": 11750000, - "canton": null, - "numero_insee": "80236" - } - }, - { - "pk": 18173, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DEMUIN", - "center": "POINT (614594.9137204202124849 2535541.2811565827578306)", - "surface": 11190000, - "canton": null, - "numero_insee": "80237" - } - }, - { - "pk": 37324, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DERNANCOURT", - "center": "POINT (620546.6341833460610360 2553601.8400848396122456)", - "surface": 6470000, - "canton": null, - "numero_insee": "80238" - } - }, - { - "pk": 7885, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DEVISE", - "center": "POINT (648381.3025407576933503 2539527.9077134653925896)", - "surface": 2770000, - "canton": null, - "numero_insee": "80239" - } - }, - { - "pk": 34551, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOINGT", - "center": "POINT (645011.2766080846777186 2547604.2370592765510082)", - "surface": 8790000, - "canton": null, - "numero_insee": "80240" - } - }, - { - "pk": 4090, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMART-EN-PONTHIEU", - "center": "POINT (584635.4280360785778612 2564406.7107815137133002)", - "surface": 17910000, - "canton": null, - "numero_insee": "80241" - } - }, - { - "pk": 28864, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMART-SUR-LA-LUCE", - "center": "POINT (610883.7385858455672860 2536610.7444913596846163)", - "surface": 8710000, - "canton": null, - "numero_insee": "80242" - } - }, - { - "pk": 25820, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMESMONT", - "center": "POINT (586195.1329166144132614 2569322.5564806358888745)", - "surface": 1920000, - "canton": null, - "numero_insee": "80243" - } - }, - { - "pk": 31700, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMINOIS", - "center": "POINT (565188.1960232445271686 2592659.6903405478224158)", - "surface": 6210000, - "canton": null, - "numero_insee": "80244" - } - }, - { - "pk": 31076, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMLEGER-LONGVILLERS", - "center": "POINT (582160.4656110538635403 2573190.9386699409224093)", - "surface": 8930000, - "canton": null, - "numero_insee": "80245" - } - }, - { - "pk": 29728, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMMARTIN", - "center": "POINT (604609.0253851120360196 2533156.0263262582011521)", - "surface": 6680000, - "canton": null, - "numero_insee": "80246" - } - }, - { - "pk": 12044, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMPIERRE-BECQUINCOURT", - "center": "POINT (633718.1379509791731834 2546008.2147242273204029)", - "surface": 11130000, - "canton": null, - "numero_insee": "80247" - } - }, - { - "pk": 21301, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMPIERRE-SUR-AUTHIE", - "center": "POINT (570322.4333235251251608 2588900.5703261038288474)", - "surface": 22780000, - "canton": null, - "numero_insee": "80248" - } - }, - { - "pk": 7460, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMQUEUR", - "center": "POINT (579496.8530416565481573 2568666.0924017531797290)", - "surface": 8490000, - "canton": null, - "numero_insee": "80249" - } - }, - { - "pk": 16377, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOMVAST", - "center": "POINT (569008.8297304721781984 2578483.8352016517892480)", - "surface": 12990000, - "canton": null, - "numero_insee": "80250" - } - }, - { - "pk": 12593, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOUDELAINVILLE", - "center": "POINT (558889.4896923482883722 2556186.6446548090316355)", - "surface": 5000000, - "canton": null, - "numero_insee": "80251" - } - }, - { - "pk": 31453, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOUILLY", - "center": "POINT (652033.8058638916118070 2533555.1653359872289002)", - "surface": 10030000, - "canton": null, - "numero_insee": "80252" - } - }, - { - "pk": 23126, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DOULLENS", - "center": "POINT (600762.8689633702160791 2574147.3894148571416736)", - "surface": 33220000, - "canton": null, - "numero_insee": "80253" - } - }, - { - "pk": 13352, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DREUIL-LES-AMIENS", - "center": "POINT (591989.2065266352146864 2546558.0633523468859494)", - "surface": 3250000, - "canton": null, - "numero_insee": "80256" - } - }, - { - "pk": 25158, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DRIENCOURT", - "center": "POINT (647980.7506072790129110 2551431.4797075088135898)", - "surface": 5040000, - "canton": null, - "numero_insee": "80258" - } - }, - { - "pk": 36169, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DROMESNIL", - "center": "POINT (566309.5155868221772835 2542340.6283938088454306)", - "surface": 5390000, - "canton": null, - "numero_insee": "80259" - } - }, - { - "pk": 25425, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DRUCAT", - "center": "POINT (565959.2114376743556932 2572254.8548112064599991)", - "surface": 11110000, - "canton": null, - "numero_insee": "80260" - } - }, - { - "pk": 32023, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "DURY", - "center": "POINT (595650.6475013686576858 2539484.6186622213572264)", - "surface": 11030000, - "canton": null, - "numero_insee": "80261" - } - }, - { - "pk": 31140, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EAUCOURT-SUR-SOMME", - "center": "POINT (567832.0860085760941729 2563665.6636214409954846)", - "surface": 4490000, - "canton": null, - "numero_insee": "80262" - } - }, - { - "pk": 31786, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "L'ECHELLE-SAINT-AURIN", - "center": "POINT (627420.2508055911166593 2521540.7208661949262023)", - "surface": 5120000, - "canton": null, - "numero_insee": "80263" - } - }, - { - "pk": 28205, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ECLUSIER-VAUX", - "center": "POINT (632678.8743365728296340 2550602.1388615150935948)", - "surface": 6360000, - "canton": null, - "numero_insee": "80264" - } - }, - { - "pk": 33010, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EMBREVILLE", - "center": "POINT (543650.0794571236474440 2559861.5232767388224602)", - "surface": 5210000, - "canton": null, - "numero_insee": "80265" - } - }, - { - "pk": 6358, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ENGLEBELMER", - "center": "POINT (619374.5645123064750805 2562096.8591977581381798)", - "surface": 9260000, - "canton": null, - "numero_insee": "80266" - } - }, - { - "pk": 27579, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ENNEMAIN", - "center": "POINT (644589.4558987746713683 2538295.2311776261776686)", - "surface": 6840000, - "canton": null, - "numero_insee": "80267" - } - }, - { - "pk": 16585, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EPAGNE-EPAGNETTE", - "center": "POINT (566322.9684092020615935 2564653.6062307753600180)", - "surface": 6820000, - "canton": null, - "numero_insee": "80268" - } - }, - { - "pk": 33225, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EPAUMESNIL", - "center": "POINT (565274.6859702509827912 2546434.3676402401179075)", - "surface": 4770000, - "canton": null, - "numero_insee": "80269" - } - }, - { - "pk": 18702, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EPECAMPS", - "center": "POINT (586903.8650582530535758 2568327.9327494767494500)", - "surface": 1650000, - "canton": null, - "numero_insee": "80270" - } - }, - { - "pk": 37897, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EPEHY", - "center": "POINT (657139.8253316245973110 2556911.8623198284767568)", - "surface": 17380000, - "canton": null, - "numero_insee": "80271" - } - }, - { - "pk": 26969, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EPENANCOURT", - "center": "POINT (642707.0215191806200892 2536078.0650395993143320)", - "surface": 3570000, - "canton": null, - "numero_insee": "80272" - } - }, - { - "pk": 25996, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EPLESSIER", - "center": "POINT (571399.1870993440970778 2531977.0791457756422460)", - "surface": 14160000, - "canton": null, - "numero_insee": "80273" - } - }, - { - "pk": 24548, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EPPEVILLE", - "center": "POINT (651389.1402535745874047 2526945.7907528216019273)", - "surface": 4880000, - "canton": null, - "numero_insee": "80274" - } - }, - { - "pk": 13238, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EQUANCOURT", - "center": "POINT (648608.5464460491202772 2560041.7240700135007501)", - "surface": 7850000, - "canton": null, - "numero_insee": "80275" - } - }, - { - "pk": 33095, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "EQUENNES-ERAMECOURT", - "center": "POINT (572452.4751313599990681 2525682.1341531821526587)", - "surface": 9020000, - "canton": null, - "numero_insee": "80276" - } - }, - { - "pk": 6598, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ERCHES", - "center": "POINT (624186.5611580982804298 2525315.7985748862847686)", - "surface": 8420000, - "canton": null, - "numero_insee": "80278" - } - }, - { - "pk": 15478, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ERCHEU", - "center": "POINT (644019.8103771661408246 2522781.1894020140171051)", - "surface": 14280000, - "canton": null, - "numero_insee": "80279" - } - }, - { - "pk": 6098, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ERCOURT", - "center": "POINT (556050.4497103297617286 2560665.4928788295947015)", - "surface": 4220000, - "canton": null, - "numero_insee": "80280" - } - }, - { - "pk": 4453, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ERGNIES", - "center": "POINT (578119.6232290973421186 2565852.9731152527965605)", - "surface": 1990000, - "canton": null, - "numero_insee": "80281" - } - }, - { - "pk": 34516, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ERONDELLE", - "center": "POINT (567051.7760450118221343 2561257.7681335452944040)", - "surface": 3940000, - "canton": null, - "numero_insee": "80282" - } - }, - { - "pk": 30534, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ESCLAINVILLERS", - "center": "POINT (604507.2155568448361009 2521448.1700177676975727)", - "surface": 5630000, - "canton": null, - "numero_insee": "80283" - } - }, - { - "pk": 28164, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ESMERY-HALLON", - "center": "POINT (649612.6601276639848948 2524029.0665174229070544)", - "surface": 18960000, - "canton": null, - "numero_insee": "80284" - } - }, - { - "pk": 10803, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ESTREBOEUF", - "center": "POINT (549240.9731678953394294 2573315.7907346133142710)", - "surface": 6320000, - "canton": null, - "numero_insee": "80287" - } - }, - { - "pk": 12306, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ESTREES-DENIECOURT", - "center": "POINT (634953.2995077891973779 2541916.2174080582335591)", - "surface": 6440000, - "canton": null, - "numero_insee": "80288" - } - }, - { - "pk": 27644, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ESTREES-LES-CRECY", - "center": "POINT (571157.1465662723639980 2584805.3028349098749459)", - "surface": 11220000, - "canton": null, - "numero_insee": "80290" - } - }, - { - "pk": 24773, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ESTREES-SUR-NOYE", - "center": "POINT (600116.7485874700360000 2531917.6001454913057387)", - "surface": 6050000, - "canton": null, - "numero_insee": "80291" - } - }, - { - "pk": 7033, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ETALON", - "center": "POINT (636859.5723745480645448 2529424.8746122550219297)", - "surface": 4510000, - "canton": null, - "numero_insee": "80292" - } - }, - { - "pk": 25519, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ETELFAY", - "center": "POINT (619740.5508092934032902 2518574.3635098082013428)", - "surface": 8160000, - "canton": null, - "numero_insee": "80293" - } - }, - { - "pk": 11601, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ETERPIGNY", - "center": "POINT (641644.9509248252725229 2543373.4113418678753078)", - "surface": 4010000, - "canton": null, - "numero_insee": "80294" - } - }, - { - "pk": 13774, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ETINEHEM", - "center": "POINT (625189.3694495523814112 2548838.1146452873945236)", - "surface": 11100000, - "canton": null, - "numero_insee": "80295" - } - }, - { - "pk": 24746, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "L'ETOILE", - "center": "POINT (578478.4301561987958848 2558851.9904086100868881)", - "surface": 7840000, - "canton": null, - "numero_insee": "80296" - } - }, - { - "pk": 35683, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ETREJUST", - "center": "POINT (567678.4276390250306576 2546154.3020841181278229)", - "surface": 3840000, - "canton": null, - "numero_insee": "80297" - } - }, - { - "pk": 32464, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ETRICOURT-MANANCOURT", - "center": "POINT (646312.4554198248079047 2559422.0200679483823478)", - "surface": 10950000, - "canton": null, - "numero_insee": "80298" - } - }, - { - "pk": 8244, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LA FALOISE", - "center": "POINT (600199.0467117449734360 2522112.4244214515201747)", - "surface": 9710000, - "canton": null, - "numero_insee": "80299" - } - }, - { - "pk": 28674, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FALVY", - "center": "POINT (645105.7404425066197291 2536398.4611816862598062)", - "surface": 6170000, - "canton": null, - "numero_insee": "80300" - } - }, - { - "pk": 25305, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FAMECHON", - "center": "POINT (578019.4069619439542294 2530031.3171738712117076)", - "surface": 4840000, - "canton": null, - "numero_insee": "80301" - } - }, - { - "pk": 31576, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FAVEROLLES", - "center": "POINT (620358.5416288787964731 2516478.2869106209836900)", - "surface": 6740000, - "canton": null, - "numero_insee": "80302" - } - }, - { - "pk": 26027, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FAVIERES", - "center": "POINT (552268.1080426723929122 2582246.0332062700763345)", - "surface": 12740000, - "canton": null, - "numero_insee": "80303" - } - }, - { - "pk": 34965, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FERRIERES", - "center": "POINT (588615.9845895218895748 2543127.7922144718468189)", - "surface": 3570000, - "canton": null, - "numero_insee": "80305" - } - }, - { - "pk": 7034, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FESCAMPS", - "center": "POINT (625264.5378503266256303 2516119.3118596426211298)", - "surface": 5060000, - "canton": null, - "numero_insee": "80306" - } - }, - { - "pk": 10182, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FEUILLERES", - "center": "POINT (636990.3320649818051606 2549537.8101963102817535)", - "surface": 5960000, - "canton": null, - "numero_insee": "80307" - } - }, - { - "pk": 6189, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FEUQUIERES-EN-VIMEU", - "center": "POINT (547328.5448302038712427 2562693.8307968778535724)", - "surface": 7970000, - "canton": null, - "numero_insee": "80308" - } - }, - { - "pk": 18763, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FIENVILLERS", - "center": "POINT (592600.8096038044895977 2569076.0953950504772365)", - "surface": 11700000, - "canton": null, - "numero_insee": "80310" - } - }, - { - "pk": 33620, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FIGNIERES", - "center": "POINT (617924.4459808808751404 2520360.1815655580721796)", - "surface": 6660000, - "canton": null, - "numero_insee": "80311" - } - }, - { - "pk": 3763, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FINS", - "center": "POINT (650602.7972876094281673 2560859.0004899594932795)", - "surface": 6840000, - "canton": null, - "numero_insee": "80312" - } - }, - { - "pk": 35972, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FLAUCOURT", - "center": "POINT (638213.7009060460841283 2546846.5451974808238447)", - "surface": 7460000, - "canton": null, - "numero_insee": "80313" - } - }, - { - "pk": 11319, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FLERS", - "center": "POINT (634486.3162465072236955 2561723.7423440651036799)", - "surface": 6350000, - "canton": null, - "numero_insee": "80314" - } - }, - { - "pk": 27138, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FLERS-SUR-NOYE", - "center": "POINT (594264.8528867202112451 2525764.8549310038797557)", - "surface": 4690000, - "canton": null, - "numero_insee": "80315" - } - }, - { - "pk": 28640, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FLESSELLES", - "center": "POINT (594409.0759685806697235 2556283.9735438446514308)", - "surface": 20870000, - "canton": null, - "numero_insee": "80316" - } - }, - { - "pk": 10528, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FLEURY", - "center": "POINT (583952.6937454163562506 2526478.8735854928381741)", - "surface": 9510000, - "canton": null, - "numero_insee": "80317" - } - }, - { - "pk": 20778, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FLIXECOURT", - "center": "POINT (581495.0251744646811858 2557076.2278985553421080)", - "surface": 11760000, - "canton": null, - "numero_insee": "80318" - } - }, - { - "pk": 7380, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FLUY", - "center": "POINT (581935.1665700363228098 2540370.2153732590377331)", - "surface": 6340000, - "canton": null, - "numero_insee": "80319" - } - }, - { - "pk": 29513, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOLIES", - "center": "POINT (623750.1564321840414777 2529614.7004640796221793)", - "surface": 5770000, - "canton": null, - "numero_insee": "80320" - } - }, - { - "pk": 26323, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOLLEVILLE", - "center": "POINT (601317.2693939162418246 2520020.5433243303559721)", - "surface": 6090000, - "canton": null, - "numero_insee": "80321" - } - }, - { - "pk": 14267, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FONCHES-FONCHETTE", - "center": "POINT (634944.2487403256818652 2531109.7566104619763792)", - "surface": 5000000, - "canton": null, - "numero_insee": "80322" - } - }, - { - "pk": 11872, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FONTAINE-LE-SEC", - "center": "POINT (561644.3953041739296168 2549805.9827092178165913)", - "surface": 7410000, - "canton": null, - "numero_insee": "80324" - } - }, - { - "pk": 24455, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FONTAINE-LES-CAPPY", - "center": "POINT (631627.1697530702222139 2544789.9084405177272856)", - "surface": 3500000, - "canton": null, - "numero_insee": "80325" - } - }, - { - "pk": 37746, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FONTAINE-SOUS-MONTDIDIER", - "center": "POINT (612144.8931965136434883 2517509.9071536092087626)", - "surface": 9030000, - "canton": null, - "numero_insee": "80326" - } - }, - { - "pk": 28171, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FONTAINE-SUR-MAYE", - "center": "POINT (570877.0979745595250279 2582401.6336198667995632)", - "surface": 5730000, - "canton": null, - "numero_insee": "80327" - } - }, - { - "pk": 27669, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FONTAINE-SUR-SOMME", - "center": "POINT (571574.9634614994283766 2558794.1894784211181104)", - "surface": 15160000, - "canton": null, - "numero_insee": "80328" - } - }, - { - "pk": 24775, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FORCEVILLE", - "center": "POINT (615662.6246043553110212 2563266.3346400661394000)", - "surface": 7710000, - "canton": null, - "numero_insee": "80329" - } - }, - { - "pk": 17444, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOREST-L'ABBAYE", - "center": "POINT (563903.8386515335878357 2578741.2957603810355067)", - "surface": 3240000, - "canton": null, - "numero_insee": "80331" - } - }, - { - "pk": 10379, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOREST-MONTIERS", - "center": "POINT (557062.0668171445140615 2583286.6439665826037526)", - "surface": 10250000, - "canton": null, - "numero_insee": "80332" - } - }, - { - "pk": 6109, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FORT-MAHON-PLAGE", - "center": "POINT (545761.4411524045281112 2594598.4935744777321815)", - "surface": 13350000, - "canton": null, - "numero_insee": "80333" - } - }, - { - "pk": 35464, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOSSEMANANT", - "center": "POINT (589393.5227257376536727 2533928.8907132213935256)", - "surface": 2750000, - "canton": null, - "numero_insee": "80334" - } - }, - { - "pk": 8806, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOUCAUCOURT-EN-SANTERRE", - "center": "POINT (631147.9703025603666902 2542284.4106631674803793)", - "surface": 6950000, - "canton": null, - "numero_insee": "80335" - } - }, - { - "pk": 6910, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOUCAUCOURT-HORS-NESLE", - "center": "POINT (555464.6441834529396147 2546952.6969300447963178)", - "surface": 2960000, - "canton": null, - "numero_insee": "80336" - } - }, - { - "pk": 6707, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOUENCAMPS", - "center": "POINT (605087.4424232373712584 2535761.5843911641277373)", - "surface": 3670000, - "canton": null, - "numero_insee": "80337" - } - }, - { - "pk": 11747, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOUILLOY", - "center": "POINT (612024.6705824724631384 2543724.5058445078320801)", - "surface": 5720000, - "canton": null, - "numero_insee": "80338" - } - }, - { - "pk": 29952, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOUQUESCOURT", - "center": "POINT (629546.4688226543366909 2530463.9528447743505239)", - "surface": 5880000, - "canton": null, - "numero_insee": "80339" - } - }, - { - "pk": 10036, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOURCIGNY", - "center": "POINT (563024.0679416690254584 2528404.9227223247289658)", - "surface": 4550000, - "canton": null, - "numero_insee": "80340" - } - }, - { - "pk": 27539, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FOURDRINOY", - "center": "POINT (583276.3653929417487234 2547485.6051095188595355)", - "surface": 9190000, - "canton": null, - "numero_insee": "80341" - } - }, - { - "pk": 7154, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRAMERVILLE-RAINECOURT", - "center": "POINT (627558.7444506126921624 2540753.3191863093525171)", - "surface": 10250000, - "canton": null, - "numero_insee": "80342" - } - }, - { - "pk": 33839, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRAMICOURT", - "center": "POINT (552527.2157694854540750 2551230.6491564586758614)", - "surface": 4980000, - "canton": null, - "numero_insee": "80343" - } - }, - { - "pk": 24365, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRANCIERES", - "center": "POINT (571929.1052695136750117 2564300.2905406653881073)", - "surface": 5860000, - "canton": null, - "numero_insee": "80344" - } - }, - { - "pk": 9487, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRANLEU", - "center": "POINT (550392.4883824988501146 2567221.9726802413351834)", - "surface": 8400000, - "canton": null, - "numero_insee": "80345" - } - }, - { - "pk": 30716, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRANQUEVILLE", - "center": "POINT (582716.0393169056624174 2566591.8744014529511333)", - "surface": 6290000, - "canton": null, - "numero_insee": "80346" - } - }, - { - "pk": 14277, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRANSART", - "center": "POINT (631449.1511942995712161 2530279.8504327340051532)", - "surface": 2980000, - "canton": null, - "numero_insee": "80347" - } - }, - { - "pk": 10354, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRANSU", - "center": "POINT (582299.0753120806766674 2568589.5115627730265260)", - "surface": 5640000, - "canton": null, - "numero_insee": "80348" - } - }, - { - "pk": 10654, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRANSURES", - "center": "POINT (592578.2189968206221238 2524049.6871643755584955)", - "surface": 4300000, - "canton": null, - "numero_insee": "80349" - } - }, - { - "pk": 30191, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRANVILLERS", - "center": "POINT (611649.6938793130684644 2552626.5298397145234048)", - "surface": 4800000, - "canton": null, - "numero_insee": "80350" - } - }, - { - "pk": 12675, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRECHENCOURT", - "center": "POINT (607153.2938671534648165 2551888.3515864303335547)", - "surface": 5660000, - "canton": null, - "numero_insee": "80351" - } - }, - { - "pk": 25876, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FREMONTIERS", - "center": "POINT (581020.1462998575298116 2530156.5125894160009921)", - "surface": 12840000, - "canton": null, - "numero_insee": "80352" - } - }, - { - "pk": 8046, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESNES-MAZANCOURT", - "center": "POINT (637875.0234015909954906 2539539.4161236523650587)", - "surface": 5500000, - "canton": null, - "numero_insee": "80353" - } - }, - { - "pk": 7256, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESNES-TILLOLOY", - "center": "POINT (558606.9017298005055636 2554083.0736483419314027)", - "surface": 3540000, - "canton": null, - "numero_insee": "80354" - } - }, - { - "pk": 36401, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESNEVILLE", - "center": "POINT (563598.0809549685800448 2543518.6509740715846419)", - "surface": 3410000, - "canton": null, - "numero_insee": "80355" - } - }, - { - "pk": 24154, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESNOY-ANDAINVILLE", - "center": "POINT (560776.5615006705047563 2545896.4583171317353845)", - "surface": 3980000, - "canton": null, - "numero_insee": "80356" - } - }, - { - "pk": 25306, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESNOY-AU-VAL", - "center": "POINT (579454.8249381087953225 2537847.9646862652152777)", - "surface": 8140000, - "canton": null, - "numero_insee": "80357" - } - }, - { - "pk": 8498, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESNOY-EN-CHAUSSEE", - "center": "POINT (617838.6415856216335669 2530565.5801699981093407)", - "surface": 3870000, - "canton": null, - "numero_insee": "80358" - } - }, - { - "pk": 30963, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESNOY-LES-ROYE", - "center": "POINT (631875.4743229820160195 2527181.5874761566519737)", - "surface": 7760000, - "canton": null, - "numero_insee": "80359" - } - }, - { - "pk": 28852, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRESSENNEVILLE", - "center": "POINT (544723.9048589963931590 2563072.3123960886150599)", - "surface": 8750000, - "canton": null, - "numero_insee": "80360" - } - }, - { - "pk": 7262, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRETTECUISSE", - "center": "POINT (562063.8421767515828833 2547508.1541253239847720)", - "surface": 5250000, - "canton": null, - "numero_insee": "80361" - } - }, - { - "pk": 25881, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRETTEMEULE", - "center": "POINT (549884.9457440596306697 2556111.4037351175211370)", - "surface": 7500000, - "canton": null, - "numero_insee": "80362" - } - }, - { - "pk": 12939, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRIAUCOURT", - "center": "POINT (538095.5685672868276015 2566018.7013953411951661)", - "surface": 4150000, - "canton": null, - "numero_insee": "80364" - } - }, - { - "pk": 28675, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRICOURT", - "center": "POINT (627133.9782508827047423 2555558.3520946381613612)", - "surface": 11490000, - "canton": null, - "numero_insee": "80366" - } - }, - { - "pk": 13020, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRISE", - "center": "POINT (634289.7987849097698927 2549415.0075083496049047)", - "surface": 6220000, - "canton": null, - "numero_insee": "80367" - } - }, - { - "pk": 11445, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRIVILLE-ESCARBOTIN", - "center": "POINT (543099.7237521510105580 2565860.3452847506850958)", - "surface": 8840000, - "canton": null, - "numero_insee": "80368" - } - }, - { - "pk": 34461, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FROHEN-SUR-AUTHIE", - "center": "POINT (590821.1063494286499918 2578466.4377527129836380)", - "surface": 7120000, - "canton": null, - "numero_insee": "80369" - } - }, - { - "pk": 12341, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FROYELLES", - "center": "POINT (570589.5125672963913530 2580898.3960077967494726)", - "surface": 2780000, - "canton": null, - "numero_insee": "80371" - } - }, - { - "pk": 32629, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FRUCOURT", - "center": "POINT (562193.6653187617193907 2555914.0981339947320521)", - "surface": 5150000, - "canton": null, - "numero_insee": "80372" - } - }, - { - "pk": 22158, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GAMACHES", - "center": "POINT (543985.3065964651759714 2555661.9129627333022654)", - "surface": 9810000, - "canton": null, - "numero_insee": "80373" - } - }, - { - "pk": 6656, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GAPENNES", - "center": "POINT (572432.2572442975360900 2575911.0367270889692008)", - "surface": 11440000, - "canton": null, - "numero_insee": "80374" - } - }, - { - "pk": 3263, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GAUVILLE", - "center": "POINT (560395.0908737094141543 2531684.9060582541860640)", - "surface": 7300000, - "canton": null, - "numero_insee": "80375" - } - }, - { - "pk": 29954, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GENTELLES", - "center": "POINT (608164.6850834293290973 2538689.1408917340449989)", - "surface": 5470000, - "canton": null, - "numero_insee": "80376" - } - }, - { - "pk": 8132, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GEZAINCOURT", - "center": "POINT (598184.2644950192188844 2571424.2326231580227613)", - "surface": 7150000, - "canton": null, - "numero_insee": "80377" - } - }, - { - "pk": 10230, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GLISY", - "center": "POINT (603634.6298070938792080 2541953.0372937293723226)", - "surface": 5550000, - "canton": null, - "numero_insee": "80379" - } - }, - { - "pk": 34402, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GORENFLOS", - "center": "POINT (579918.0028702820418403 2566168.2063032742589712)", - "surface": 6270000, - "canton": null, - "numero_insee": "80380" - } - }, - { - "pk": 36170, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GORGES", - "center": "POINT (589008.2587989198509604 2567945.3484850791282952)", - "surface": 4880000, - "canton": null, - "numero_insee": "80381" - } - }, - { - "pk": 7884, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GOYENCOURT", - "center": "POINT (630993.5295753029640764 2524972.8434138218872249)", - "surface": 5450000, - "canton": null, - "numero_insee": "80383" - } - }, - { - "pk": 10545, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRANDCOURT", - "center": "POINT (626864.8383907397510484 2563760.7791208256967366)", - "surface": 8420000, - "canton": null, - "numero_insee": "80384" - } - }, - { - "pk": 12755, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRAND-LAVIERS", - "center": "POINT (560666.6440503665944561 2571009.9181908746249974)", - "surface": 9080000, - "canton": null, - "numero_insee": "80385" - } - }, - { - "pk": 10613, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRATIBUS", - "center": "POINT (615320.5360438600182533 2520638.4724395684897900)", - "surface": 5250000, - "canton": null, - "numero_insee": "80386" - } - }, - { - "pk": 26747, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRATTEPANCHE", - "center": "POINT (597712.9719191686017439 2532197.6052433960139751)", - "surface": 6410000, - "canton": null, - "numero_insee": "80387" - } - }, - { - "pk": 14137, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GREBAULT-MESNIL", - "center": "POINT (555865.3997290993575007 2558862.9171528513543308)", - "surface": 2550000, - "canton": null, - "numero_insee": "80388" - } - }, - { - "pk": 34330, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRECOURT", - "center": "POINT (646906.1667624721303582 2524606.6049368400126696)", - "surface": 2380000, - "canton": null, - "numero_insee": "80389" - } - }, - { - "pk": 27463, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRIVESNES", - "center": "POINT (608712.8142947176238522 2521083.2497601248323917)", - "surface": 18830000, - "canton": null, - "numero_insee": "80390" - } - }, - { - "pk": 4211, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRIVILLERS", - "center": "POINT (626549.2390473446575925 2518031.2747468957677484)", - "surface": 3400000, - "canton": null, - "numero_insee": "80391" - } - }, - { - "pk": 26766, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GROUCHES-LUCHUEL", - "center": "POINT (603146.4043326553655788 2576268.5730103547684848)", - "surface": 9010000, - "canton": null, - "numero_insee": "80392" - } - }, - { - "pk": 12819, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GRUNY", - "center": "POINT (634590.3805702762911096 2525603.4885876863263547)", - "surface": 7360000, - "canton": null, - "numero_insee": "80393" - } - }, - { - "pk": 26521, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUERBIGNY", - "center": "POINT (623711.5472902136389166 2522309.9982485380023718)", - "surface": 8400000, - "canton": null, - "numero_insee": "80395" - } - }, - { - "pk": 4809, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUESCHART", - "center": "POINT (576679.8998658796772361 2582450.2123279450461268)", - "surface": 12970000, - "canton": null, - "numero_insee": "80396" - } - }, - { - "pk": 28850, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUEUDECOURT", - "center": "POINT (636278.7884495268808678 2562739.4089063713327050)", - "surface": 4930000, - "canton": null, - "numero_insee": "80397" - } - }, - { - "pk": 34517, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUIGNEMICOURT", - "center": "POINT (587828.1538772247731686 2541620.3082924624904990)", - "surface": 4520000, - "canton": null, - "numero_insee": "80399" - } - }, - { - "pk": 12533, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUILLAUCOURT", - "center": "POINT (621378.2607373251812533 2537999.7324018017388880)", - "surface": 6890000, - "canton": null, - "numero_insee": "80400" - } - }, - { - "pk": 25909, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUILLEMONT", - "center": "POINT (634924.4327828807290643 2557224.8561073201708496)", - "surface": 3260000, - "canton": null, - "numero_insee": "80401" - } - }, - { - "pk": 13886, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUIZANCOURT", - "center": "POINT (575546.5764538615476340 2526608.5774942087009549)", - "surface": 5940000, - "canton": null, - "numero_insee": "80402" - } - }, - { - "pk": 22473, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUYENCOURT-SUR-NOYE", - "center": "POINT (601725.1462744227610528 2531030.5654593361541629)", - "surface": 3840000, - "canton": null, - "numero_insee": "80403" - } - }, - { - "pk": 35282, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "GUYENCOURT-SAULCOURT", - "center": "POINT (653348.0412208449561149 2555679.1757091628387570)", - "surface": 5030000, - "canton": null, - "numero_insee": "80404" - } - }, - { - "pk": 10812, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HAILLES", - "center": "POINT (606606.7103339416207746 2533573.0398053126409650)", - "surface": 5150000, - "canton": null, - "numero_insee": "80405" - } - }, - { - "pk": 23395, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HALLENCOURT", - "center": "POINT (566799.3360344255343080 2555552.3906124858185649)", - "surface": 20750000, - "canton": null, - "numero_insee": "80406" - } - }, - { - "pk": 18417, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HALLIVILLERS", - "center": "POINT (596997.3439053922193125 2522085.5554919522255659)", - "surface": 7190000, - "canton": null, - "numero_insee": "80407" - } - }, - { - "pk": 10979, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HALLOY-LES-PERNOIS", - "center": "POINT (590369.3058439536252990 2560752.6701943585649133)", - "surface": 6140000, - "canton": null, - "numero_insee": "80408" - } - }, - { - "pk": 7282, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HALLU", - "center": "POINT (632527.8263412340311334 2532890.4794372608885169)", - "surface": 3760000, - "canton": null, - "numero_insee": "80409" - } - }, - { - "pk": 29764, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HAM", - "center": "POINT (653174.8969059387454763 2528761.9320622878149152)", - "surface": 9780000, - "canton": null, - "numero_insee": "80410" - } - }, - { - "pk": 19630, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE HAMEL", - "center": "POINT (616922.1442728565307334 2544366.0199558045715094)", - "surface": 9130000, - "canton": null, - "numero_insee": "80411" - } - }, - { - "pk": 35001, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HAMELET", - "center": "POINT (614120.7054105867864564 2544342.4714997112751007)", - "surface": 5930000, - "canton": null, - "numero_insee": "80412" - } - }, - { - "pk": 5594, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HANCOURT", - "center": "POINT (652732.9370240839198232 2545568.1297437283210456)", - "surface": 4110000, - "canton": null, - "numero_insee": "80413" - } - }, - { - "pk": 24774, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HANGARD", - "center": "POINT (612377.7927879355847836 2537423.7709706379100680)", - "surface": 6370000, - "canton": null, - "numero_insee": "80414" - } - }, - { - "pk": 37714, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HANGEST-EN-SANTERRE", - "center": "POINT (619158.6745820039650425 2528275.3067283197306097)", - "surface": 15180000, - "canton": null, - "numero_insee": "80415" - } - }, - { - "pk": 15394, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HANGEST-SUR-SOMME", - "center": "POINT (578522.0052047417266294 2553649.3669991591013968)", - "surface": 12590000, - "canton": null, - "numero_insee": "80416" - } - }, - { - "pk": 26322, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HARBONNIERES", - "center": "POINT (623968.6679594503948465 2539322.2881275922991335)", - "surface": 15190000, - "canton": null, - "numero_insee": "80417" - } - }, - { - "pk": 3676, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HARDECOURT-AUX-BOIS", - "center": "POINT (634240.0887339713517576 2555318.0003897869028151)", - "surface": 5260000, - "canton": null, - "numero_insee": "80418" - } - }, - { - "pk": 8245, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HARGICOURT", - "center": "POINT (613190.8277084552682936 2524022.6212504799477756)", - "surface": 5130000, - "canton": null, - "numero_insee": "80419" - } - }, - { - "pk": 5200, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HARPONVILLE", - "center": "POINT (611687.5329342817422003 2560031.1011694655753672)", - "surface": 2810000, - "canton": null, - "numero_insee": "80420" - } - }, - { - "pk": 12270, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HATTENCOURT", - "center": "POINT (632849.8865668619982898 2530291.6437287661246955)", - "surface": 3660000, - "canton": null, - "numero_insee": "80421" - } - }, - { - "pk": 11009, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HAUTVILLERS-OUVILLE", - "center": "POINT (563035.1951616358710453 2574931.9115001345053315)", - "surface": 6110000, - "canton": null, - "numero_insee": "80422" - } - }, - { - "pk": 28397, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HAVERNAS", - "center": "POINT (592377.0200595296919346 2559969.0499998298473656)", - "surface": 4510000, - "canton": null, - "numero_insee": "80423" - } - }, - { - "pk": 9191, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEBECOURT", - "center": "POINT (594381.8673386450391263 2535671.7327276789583266)", - "surface": 4940000, - "canton": null, - "numero_insee": "80424" - } - }, - { - "pk": 22557, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEDAUVILLE", - "center": "POINT (616679.1039097855100408 2561373.7967278538271785)", - "surface": 4090000, - "canton": null, - "numero_insee": "80425" - } - }, - { - "pk": 27780, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEILLY", - "center": "POINT (613859.2183270649984479 2551644.5195595594123006)", - "surface": 9440000, - "canton": null, - "numero_insee": "80426" - } - }, - { - "pk": 28878, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEM-HARDINVAL", - "center": "POINT (596469.9973046318627894 2573010.7469768831506371)", - "surface": 10210000, - "canton": null, - "numero_insee": "80427" - } - }, - { - "pk": 6813, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEM-MONACU", - "center": "POINT (636174.7558110915124416 2551331.9842415112070739)", - "surface": 3670000, - "canton": null, - "numero_insee": "80428" - } - }, - { - "pk": 8636, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HENENCOURT", - "center": "POINT (616120.8566745736170560 2556366.2400909815914929)", - "surface": 3260000, - "canton": null, - "numero_insee": "80429" - } - }, - { - "pk": 30288, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HERBECOURT", - "center": "POINT (636107.5700439668726176 2547429.1537070367485285)", - "surface": 4420000, - "canton": null, - "numero_insee": "80430" - } - }, - { - "pk": 24179, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HERISSART", - "center": "POINT (605692.0879557104781270 2559080.2229104153811932)", - "surface": 7490000, - "canton": null, - "numero_insee": "80431" - } - }, - { - "pk": 28508, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HERLEVILLE", - "center": "POINT (629761.5656450728420168 2540571.7417973605915904)", - "surface": 6170000, - "canton": null, - "numero_insee": "80432" - } - }, - { - "pk": 10056, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HERLY", - "center": "POINT (638668.1052522269310430 2528539.5719587225466967)", - "surface": 3800000, - "canton": null, - "numero_insee": "80433" - } - }, - { - "pk": 28428, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HERVILLY", - "center": "POINT (656109.3505003822501749 2548598.3668658938258886)", - "surface": 6280000, - "canton": null, - "numero_insee": "80434" - } - }, - { - "pk": 13942, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HESBECOURT", - "center": "POINT (657895.9129380822414532 2550314.4324252535589039)", - "surface": 3610000, - "canton": null, - "numero_insee": "80435" - } - }, - { - "pk": 20574, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HESCAMPS", - "center": "POINT (566847.8355888521764427 2525835.3514405167661607)", - "surface": 34610000, - "canton": null, - "numero_insee": "80436" - } - }, - { - "pk": 33230, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEUCOURT-CROQUOISON", - "center": "POINT (567260.6439147111959755 2548252.0289782029576600)", - "surface": 4990000, - "canton": null, - "numero_insee": "80437" - } - }, - { - "pk": 16132, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEUDICOURT", - "center": "POINT (654018.8488231457304209 2559186.8454315699636936)", - "surface": 12690000, - "canton": null, - "numero_insee": "80438" - } - }, - { - "pk": 32135, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HEUZECOURT", - "center": "POINT (587954.0845017036190256 2574340.1107417829334736)", - "surface": 7250000, - "canton": null, - "numero_insee": "80439" - } - }, - { - "pk": 23276, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HIERMONT", - "center": "POINT (581018.0175825994228944 2578184.1610547713935375)", - "surface": 5040000, - "canton": null, - "numero_insee": "80440" - } - }, - { - "pk": 19008, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HOMBLEUX", - "center": "POINT (647181.8612134137656540 2527510.6689043035730720)", - "surface": 13390000, - "canton": null, - "numero_insee": "80442" - } - }, - { - "pk": 23130, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HORNOY-LE-BOURG", - "center": "POINT (568738.3815842997282743 2539059.0116956802085042)", - "surface": 51640000, - "canton": null, - "numero_insee": "80443" - } - }, - { - "pk": 26086, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HUCHENNEVILLE", - "center": "POINT (561647.3997138242702931 2561412.6800758680328727)", - "surface": 11550000, - "canton": null, - "numero_insee": "80444" - } - }, - { - "pk": 35462, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HUMBERCOURT", - "center": "POINT (608623.8743441052502021 2579316.2440772610716522)", - "surface": 8250000, - "canton": null, - "numero_insee": "80445" - } - }, - { - "pk": 37320, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HUPPY", - "center": "POINT (558567.5931306900456548 2558785.4453027136623859)", - "surface": 10760000, - "canton": null, - "numero_insee": "80446" - } - }, - { - "pk": 5579, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "HYENCOURT-LE-GRAND", - "center": "POINT (636001.8484557155752555 2536221.6905970177613199)", - "surface": 2690000, - "canton": null, - "numero_insee": "80447" - } - }, - { - "pk": 31167, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "IGNAUCOURT", - "center": "POINT (617195.4273041755659506 2535663.2006116192787886)", - "surface": 4030000, - "canton": null, - "numero_insee": "80449" - } - }, - { - "pk": 10653, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "INVAL-BOIRON", - "center": "POINT (557499.9563584970310330 2542867.3132770461961627)", - "surface": 3320000, - "canton": null, - "numero_insee": "80450" - } - }, - { - "pk": 33618, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "IRLES", - "center": "POINT (630335.4190943610155955 2567492.0885688466951251)", - "surface": 5430000, - "canton": null, - "numero_insee": "80451" - } - }, - { - "pk": 26391, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "JUMEL", - "center": "POINT (598936.2717883879086003 2529506.2631596322171390)", - "surface": 8960000, - "canton": null, - "numero_insee": "80452" - } - }, - { - "pk": 35975, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LABOISSIERE-EN-SANTERRE", - "center": "POINT (623847.7938222796656191 2518008.5456582983024418)", - "surface": 7240000, - "canton": null, - "numero_insee": "80453" - } - }, - { - "pk": 22534, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LACHAPELLE", - "center": "POINT (572620.7546138924080878 2529485.8154366626404226)", - "surface": 2560000, - "canton": null, - "numero_insee": "80455" - } - }, - { - "pk": 15368, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAFRESGUIMONT-SAINT-MARTIN", - "center": "POINT (562056.6594750640215352 2536401.5856207418255508)", - "surface": 26700000, - "canton": null, - "numero_insee": "80456" - } - }, - { - "pk": 37747, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAHOUSSOYE", - "center": "POINT (610369.2087413431145251 2550214.3818990052677691)", - "surface": 4110000, - "canton": null, - "numero_insee": "80458" - } - }, - { - "pk": 22936, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LALEU", - "center": "POINT (571151.7511977795511484 2549585.3447783649899065)", - "surface": 1600000, - "canton": null, - "numero_insee": "80459" - } - }, - { - "pk": 5672, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAMARONDE", - "center": "POINT (568779.4048859028844163 2534156.4604922463186085)", - "surface": 2550000, - "canton": null, - "numero_insee": "80460" - } - }, - { - "pk": 8010, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAMOTTE-BREBIERE", - "center": "POINT (604116.4058441722299904 2544158.3707113228738308)", - "surface": 4270000, - "canton": null, - "numero_insee": "80461" - } - }, - { - "pk": 37936, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAMOTTE-BULEUX", - "center": "POINT (564119.8346436637220904 2576842.0439303275197744)", - "surface": 6130000, - "canton": null, - "numero_insee": "80462" - } - }, - { - "pk": 30533, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAMOTTE-WARFUSEE", - "center": "POINT (618342.2123318817466497 2542076.6125399647280574)", - "surface": 9390000, - "canton": null, - "numero_insee": "80463" - } - }, - { - "pk": 29729, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LANGUEVOISIN-QUIQUERY", - "center": "POINT (642977.1159129034494981 2527775.4030113741755486)", - "surface": 4870000, - "canton": null, - "numero_insee": "80465" - } - }, - { - "pk": 34175, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LANCHES-SAINT-HILAIRE", - "center": "POINT (586313.6316531440243125 2567122.3069251747801900)", - "surface": 5440000, - "canton": null, - "numero_insee": "80466" - } - }, - { - "pk": 26127, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAUCOURT", - "center": "POINT (630739.6952560269273818 2519467.3914030976593494)", - "surface": 6380000, - "canton": null, - "numero_insee": "80467" - } - }, - { - "pk": 5099, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAVIEVILLE", - "center": "POINT (617233.1872216541087255 2554974.7857282464392483)", - "surface": 2170000, - "canton": null, - "numero_insee": "80468" - } - }, - { - "pk": 25082, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LAWARDE-MAUGER-L'HORTOY", - "center": "POINT (595281.3303086232626811 2523872.2413978688418865)", - "surface": 9360000, - "canton": null, - "numero_insee": "80469" - } - }, - { - "pk": 34550, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LEALVILLERS", - "center": "POINT (612258.4076903671957552 2563537.8943220525979996)", - "surface": 2230000, - "canton": null, - "numero_insee": "80470" - } - }, - { - "pk": 26126, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LESBOEUFS", - "center": "POINT (637294.4573777137557045 2560946.9372550342231989)", - "surface": 5990000, - "canton": null, - "numero_insee": "80472" - } - }, - { - "pk": 12673, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIANCOURT-FOSSE", - "center": "POINT (634463.3654634220292792 2528804.3349273614585400)", - "surface": 6500000, - "canton": null, - "numero_insee": "80473" - } - }, - { - "pk": 13102, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LICOURT", - "center": "POINT (640700.9220246742479503 2536661.5141271315515041)", - "surface": 6950000, - "canton": null, - "numero_insee": "80474" - } - }, - { - "pk": 23442, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIERAMONT", - "center": "POINT (651347.0321956342086196 2555662.2952943760901690)", - "surface": 7310000, - "canton": null, - "numero_insee": "80475" - } - }, - { - "pk": 28404, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIERCOURT", - "center": "POINT (568465.8712462405674160 2559668.6856059497222304)", - "surface": 5520000, - "canton": null, - "numero_insee": "80476" - } - }, - { - "pk": 12075, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIGESCOURT", - "center": "POINT (566724.8979772219900042 2588370.1948217218741775)", - "surface": 5160000, - "canton": null, - "numero_insee": "80477" - } - }, - { - "pk": 35334, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIGNIERES", - "center": "POINT (622535.3155163043411449 2519398.3527855509892106)", - "surface": 6320000, - "canton": null, - "numero_insee": "80478" - } - }, - { - "pk": 35680, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIGNIERES-CHATELAIN", - "center": "POINT (565802.9461111084092408 2531129.7759109390899539)", - "surface": 6600000, - "canton": null, - "numero_insee": "80479" - } - }, - { - "pk": 10531, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIGNIERES-EN-VIMEU", - "center": "POINT (557473.1953848145203665 2546068.9593486743979156)", - "surface": 3340000, - "canton": null, - "numero_insee": "80480" - } - }, - { - "pk": 30195, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIHONS", - "center": "POINT (630192.9343377286568284 2536873.1924344175495207)", - "surface": 12240000, - "canton": null, - "numero_insee": "80481" - } - }, - { - "pk": 23110, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LIMEUX", - "center": "POINT (561976.8317185458727181 2557913.4331893166527152)", - "surface": 8700000, - "canton": null, - "numero_insee": "80482" - } - }, - { - "pk": 24868, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LOEUILLY", - "center": "POINT (589822.2553691067732871 2530530.4648150838911533)", - "surface": 17380000, - "canton": null, - "numero_insee": "80485" - } - }, - { - "pk": 28173, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LONG", - "center": "POINT (574961.5934006085153669 2560623.5692916736006737)", - "surface": 9350000, - "canton": null, - "numero_insee": "80486" - } - }, - { - "pk": 29882, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LONGAVESNES", - "center": "POINT (652069.3292852240847424 2553066.8885147026740015)", - "surface": 4070000, - "canton": null, - "numero_insee": "80487" - } - }, - { - "pk": 34288, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LONGPRE-LES-CORPS-SAINTS", - "center": "POINT (574488.9853521718177944 2557317.7232825625687838)", - "surface": 8060000, - "canton": null, - "numero_insee": "80488" - } - }, - { - "pk": 9661, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LONGUEAU", - "center": "POINT (601435.1744852425763384 2541734.4549991535022855)", - "surface": 3430000, - "canton": null, - "numero_insee": "80489" - } - }, - { - "pk": 31571, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LONGUEVAL", - "center": "POINT (633104.9930340931750834 2559410.7960193296894431)", - "surface": 8650000, - "canton": null, - "numero_insee": "80490" - } - }, - { - "pk": 5480, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LONGUEVILLETTE", - "center": "POINT (595591.3792610390810296 2570401.9140255372039974)", - "surface": 2070000, - "canton": null, - "numero_insee": "80491" - } - }, - { - "pk": 26522, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LOUVENCOURT", - "center": "POINT (612035.6086232636589557 2566237.5551241920329630)", - "surface": 7790000, - "canton": null, - "numero_insee": "80493" - } - }, - { - "pk": 34781, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LOUVRECHY", - "center": "POINT (604368.5166203575208783 2526049.7713776649907231)", - "surface": 5890000, - "canton": null, - "numero_insee": "80494" - } - }, - { - "pk": 34408, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LUCHEUX", - "center": "POINT (605930.9660485232016072 2578293.0697192875668406)", - "surface": 28310000, - "canton": null, - "numero_insee": "80495" - } - }, - { - "pk": 9199, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MACHIEL", - "center": "POINT (564340.4856518519809470 2586349.1513955909758806)", - "surface": 6540000, - "canton": null, - "numero_insee": "80496" - } - }, - { - "pk": 6988, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MACHY", - "center": "POINT (561835.9393246847903356 2586728.4263385226950049)", - "surface": 3290000, - "canton": null, - "numero_insee": "80497" - } - }, - { - "pk": 4129, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAILLY-MAILLET", - "center": "POINT (618350.5105031409766525 2564889.8414688445627689)", - "surface": 11230000, - "canton": null, - "numero_insee": "80498" - } - }, - { - "pk": 31799, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAILLY-RAINEVAL", - "center": "POINT (608160.4410755131393671 2527282.3358306470327079)", - "surface": 14440000, - "canton": null, - "numero_insee": "80499" - } - }, - { - "pk": 37702, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAISNIERES", - "center": "POINT (547769.6822691708803177 2557794.7144536646082997)", - "surface": 12750000, - "canton": null, - "numero_insee": "80500" - } - }, - { - "pk": 33457, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAISON-PONTHIEU", - "center": "POINT (578909.4540158766321838 2579066.9989888006821275)", - "surface": 11000000, - "canton": null, - "numero_insee": "80501" - } - }, - { - "pk": 13038, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAISON-ROLAND", - "center": "POINT (577682.5568550323368981 2570251.7987697366625071)", - "surface": 5020000, - "canton": null, - "numero_insee": "80502" - } - }, - { - "pk": 36325, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAIZICOURT", - "center": "POINT (584923.2686706897802651 2577816.6610328815877438)", - "surface": 5860000, - "canton": null, - "numero_insee": "80503" - } - }, - { - "pk": 12323, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MALPART", - "center": "POINT (611608.4745886080199853 2521807.9998082877136767)", - "surface": 4250000, - "canton": null, - "numero_insee": "80504" - } - }, - { - "pk": 9919, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAMETZ", - "center": "POINT (629330.8777976967394352 2556077.1294030998833477)", - "surface": 7270000, - "canton": null, - "numero_insee": "80505" - } - }, - { - "pk": 28507, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARCELCAVE", - "center": "POINT (616766.6207340608816594 2539061.6026669461280107)", - "surface": 12620000, - "canton": null, - "numero_insee": "80507" - } - }, - { - "pk": 24588, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARCHE-ALLOUARDE", - "center": "POINT (638094.7608367728535086 2525332.8250670558772981)", - "surface": 2000000, - "canton": null, - "numero_insee": "80508" - } - }, - { - "pk": 25908, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARCHELEPOT", - "center": "POINT (638094.5127053894102573 2537239.9088959703221917)", - "surface": 5520000, - "canton": null, - "numero_insee": "80509" - } - }, - { - "pk": 8347, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAREUIL-CAUBERT", - "center": "POINT (563327.3321590591222048 2563928.1519831656478345)", - "surface": 9180000, - "canton": null, - "numero_insee": "80512" - } - }, - { - "pk": 35974, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARICOURT", - "center": "POINT (632150.8217228929279372 2553899.6012188815511763)", - "surface": 7590000, - "canton": null, - "numero_insee": "80513" - } - }, - { - "pk": 25910, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARIEUX", - "center": "POINT (607825.1215414742473513 2567202.7478898940607905)", - "surface": 4150000, - "canton": null, - "numero_insee": "80514" - } - }, - { - "pk": 6582, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARLERS", - "center": "POINT (564918.3746809116564691 2529221.2441550078801811)", - "surface": 3980000, - "canton": null, - "numero_insee": "80515" - } - }, - { - "pk": 26353, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARQUAIX", - "center": "POINT (652992.5752249173820019 2550373.1138845947571099)", - "surface": 5440000, - "canton": null, - "numero_insee": "80516" - } - }, - { - "pk": 29727, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARQUIVILLERS", - "center": "POINT (625429.2880086154909804 2520323.2430383181199431)", - "surface": 5770000, - "canton": null, - "numero_insee": "80517" - } - }, - { - "pk": 21220, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MARTAINNEVILLE", - "center": "POINT (554689.0414718916872516 2555951.4229856343008578)", - "surface": 7600000, - "canton": null, - "numero_insee": "80518" - } - }, - { - "pk": 28206, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MATIGNY", - "center": "POINT (648732.9250981030054390 2533427.2656183950603008)", - "surface": 7020000, - "canton": null, - "numero_insee": "80519" - } - }, - { - "pk": 4062, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAUCOURT", - "center": "POINT (629925.6239351667463779 2532968.6318940734490752)", - "surface": 3380000, - "canton": null, - "numero_insee": "80520" - } - }, - { - "pk": 29690, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MAUREPAS", - "center": "POINT (637049.0871647597523406 2554441.1400465816259384)", - "surface": 10890000, - "canton": null, - "numero_insee": "80521" - } - }, - { - "pk": 9067, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE MAZIS", - "center": "POINT (558708.9389919085660949 2541876.8331850892864168)", - "surface": 3870000, - "canton": null, - "numero_insee": "80522" - } - }, - { - "pk": 26385, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MEAULTE", - "center": "POINT (623751.6210099502932280 2553228.5671825488097966)", - "surface": 10730000, - "canton": null, - "numero_insee": "80523" - } - }, - { - "pk": 10429, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MEHARICOURT", - "center": "POINT (628421.4709929153323174 2533356.2090526325628161)", - "surface": 7150000, - "canton": null, - "numero_insee": "80524" - } - }, - { - "pk": 6794, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MEIGNEUX", - "center": "POINT (567813.2048859110800549 2530045.9389539235271513)", - "surface": 4000000, - "canton": null, - "numero_insee": "80525" - } - }, - { - "pk": 25580, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE MEILLARD", - "center": "POINT (590050.0791008688975126 2574958.0196027872152627)", - "surface": 7020000, - "canton": null, - "numero_insee": "80526" - } - }, - { - "pk": 8728, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MENESLIES", - "center": "POINT (539523.8121715735178441 2562728.7427165606059134)", - "surface": 4020000, - "canton": null, - "numero_insee": "80527" - } - }, - { - "pk": 29911, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MEREAUCOURT", - "center": "POINT (570649.0098982225172222 2525967.2188533684238791)", - "surface": 3050000, - "canton": null, - "numero_insee": "80528" - } - }, - { - "pk": 12383, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MERELESSART", - "center": "POINT (564920.1348237377824262 2552935.1721721375361085)", - "surface": 3760000, - "canton": null, - "numero_insee": "80529" - } - }, - { - "pk": 35241, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MERICOURT-L'ABBE", - "center": "POINT (616275.5766587078105658 2549863.7873519728891551)", - "surface": 6920000, - "canton": null, - "numero_insee": "80530" - } - }, - { - "pk": 10530, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MERICOURT-EN-VIMEU", - "center": "POINT (571896.4931283758487552 2544288.4921075459569693)", - "surface": 3330000, - "canton": null, - "numero_insee": "80531" - } - }, - { - "pk": 34086, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MERICOURT-SUR-SOMME", - "center": "POINT (624816.9438709079986438 2545533.0594185860827565)", - "surface": 7150000, - "canton": null, - "numero_insee": "80532" - } - }, - { - "pk": 13626, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MERS-LES-BAINS", - "center": "POINT (533108.0994880386861041 2564176.0822717812843621)", - "surface": 5540000, - "canton": null, - "numero_insee": "80533" - } - }, - { - "pk": 24080, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE MESGE", - "center": "POINT (578858.1918267236324027 2549349.6949592414312065)", - "surface": 8780000, - "canton": null, - "numero_insee": "80535" - } - }, - { - "pk": 9144, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MESNIL-BRUNTEL", - "center": "POINT (645035.7358901696279645 2544702.7513432162813842)", - "surface": 7380000, - "canton": null, - "numero_insee": "80536" - } - }, - { - "pk": 13577, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MESNIL-DOMQUEUR", - "center": "POINT (580378.8592488825088367 2570874.7206763545982540)", - "surface": 3550000, - "canton": null, - "numero_insee": "80537" - } - }, - { - "pk": 36435, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MESNIL-EN-ARROUAISE", - "center": "POINT (644004.5553560275584459 2560203.0220490545034409)", - "surface": 6510000, - "canton": null, - "numero_insee": "80538" - } - }, - { - "pk": 32666, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MESNIL-MARTINSART", - "center": "POINT (621682.4450767850503325 2561315.8120091794990003)", - "surface": 8750000, - "canton": null, - "numero_insee": "80540" - } - }, - { - "pk": 27971, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MESNIL-SAINT-GEORGES", - "center": "POINT (613559.0972073264420033 2515920.8203145582228899)", - "surface": 5940000, - "canton": null, - "numero_insee": "80541" - } - }, - { - "pk": 33137, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MESNIL-SAINT-NICAISE", - "center": "POINT (641546.0245085554197431 2531365.4912078343331814)", - "surface": 6820000, - "canton": null, - "numero_insee": "80542" - } - }, - { - "pk": 8754, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "METIGNY", - "center": "POINT (569355.8565908616874367 2548969.9669073978438973)", - "surface": 6740000, - "canton": null, - "numero_insee": "80543" - } - }, - { - "pk": 22927, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MEZEROLLES", - "center": "POINT (592037.6320097541902214 2576575.5807914356701076)", - "surface": 6530000, - "canton": null, - "numero_insee": "80544" - } - }, - { - "pk": 23471, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MEZIERES-EN-SANTERRE", - "center": "POINT (615428.9711278066970408 2531545.9181458954699337)", - "surface": 10770000, - "canton": null, - "numero_insee": "80545" - } - }, - { - "pk": 9014, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MILLENCOURT", - "center": "POINT (618724.6910081100650132 2556087.9591153599321842)", - "surface": 5880000, - "canton": null, - "numero_insee": "80547" - } - }, - { - "pk": 27307, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MILLENCOURT-EN-PONTHIEU", - "center": "POINT (569557.6319036160130054 2572685.1863156952895224)", - "surface": 8650000, - "canton": null, - "numero_insee": "80548" - } - }, - { - "pk": 18416, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MIRAUMONT", - "center": "POINT (627936.7573966118507087 2567171.7292232089675963)", - "surface": 14030000, - "canton": null, - "numero_insee": "80549" - } - }, - { - "pk": 20461, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MIRVAUX", - "center": "POINT (604314.9078025021590292 2556267.0521944952197373)", - "surface": 2320000, - "canton": null, - "numero_insee": "80550" - } - }, - { - "pk": 33619, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MISERY", - "center": "POINT (639780.2220165838953108 2539055.1726332162506878)", - "surface": 3330000, - "canton": null, - "numero_insee": "80551" - } - }, - { - "pk": 20976, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOISLAINS", - "center": "POINT (645244.7979135935893282 2555510.7797771189361811)", - "surface": 20880000, - "canton": null, - "numero_insee": "80552" - } - }, - { - "pk": 3196, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOLLIENS-DREUIL", - "center": "POINT (576511.4263566669542342 2542826.2514267032966018)", - "surface": 22930000, - "canton": null, - "numero_insee": "80554" - } - }, - { - "pk": 36016, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONCHY-LAGACHE", - "center": "POINT (650882.5967589900828898 2539549.0027234642766416)", - "surface": 15470000, - "canton": null, - "numero_insee": "80555" - } - }, - { - "pk": 10756, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONS-BOUBERT", - "center": "POINT (551768.1092599550029263 2570235.1567321531474590)", - "surface": 9600000, - "canton": null, - "numero_insee": "80556" - } - }, - { - "pk": 33139, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ESTREES-MONS", - "center": "POINT (648354.3042320698732510 2542729.5602283091284335)", - "surface": 15500000, - "canton": null, - "numero_insee": "80557" - } - }, - { - "pk": 10791, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONSURES", - "center": "POINT (587277.0840810616500676 2523805.1167977936565876)", - "surface": 9050000, - "canton": null, - "numero_insee": "80558" - } - }, - { - "pk": 34970, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONTAGNE-FAYEL", - "center": "POINT (574782.9061650801450014 2546113.7061896952800453)", - "surface": 6970000, - "canton": null, - "numero_insee": "80559" - } - }, - { - "pk": 10546, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONTAUBAN-DE-PICARDIE", - "center": "POINT (631926.2923129954142496 2556799.3805270455777645)", - "surface": 7710000, - "canton": null, - "numero_insee": "80560" - } - }, - { - "pk": 34649, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONTDIDIER", - "center": "POINT (616753.2454570767004043 2516848.2154254410415888)", - "surface": 12650000, - "canton": null, - "numero_insee": "80561" - } - }, - { - "pk": 13239, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONTIGNY-SUR-L'HALLUE", - "center": "POINT (606132.6202096764463931 2554281.1651180218905210)", - "surface": 4890000, - "canton": null, - "numero_insee": "80562" - } - }, - { - "pk": 25078, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONTIGNY-LES-JONGLEURS", - "center": "POINT (585640.3802578327013180 2575821.5554816881194711)", - "surface": 4950000, - "canton": null, - "numero_insee": "80563" - } - }, - { - "pk": 10935, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MONTONVILLERS", - "center": "POINT (597017.1030439635505900 2555505.3939786055125296)", - "surface": 1490000, - "canton": null, - "numero_insee": "80565" - } - }, - { - "pk": 11573, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "FIEFFES-MONTRELET", - "center": "POINT (591425.3877931695897132 2566064.5411967406980693)", - "surface": 9730000, - "canton": null, - "numero_insee": "80566" - } - }, - { - "pk": 25518, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MORCHAIN", - "center": "POINT (642225.3115868429886177 2533872.7017932720482349)", - "surface": 5870000, - "canton": null, - "numero_insee": "80568" - } - }, - { - "pk": 25333, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MORCOURT", - "center": "POINT (623035.3781495593721047 2543216.7269562762230635)", - "surface": 7620000, - "canton": null, - "numero_insee": "80569" - } - }, - { - "pk": 21090, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOREUIL", - "center": "POINT (610630.6573682567104697 2531005.2964373249560595)", - "surface": 23650000, - "canton": null, - "numero_insee": "80570" - } - }, - { - "pk": 4324, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MORISEL", - "center": "POINT (608839.7984864617465064 2529789.5360983391292393)", - "surface": 6520000, - "canton": null, - "numero_insee": "80571" - } - }, - { - "pk": 36893, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MORLANCOURT", - "center": "POINT (622276.1079992447048426 2550214.4192967894487083)", - "surface": 11930000, - "canton": null, - "numero_insee": "80572" - } - }, - { - "pk": 25681, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MORVILLERS-SAINT-SATURNIN", - "center": "POINT (562398.6504399380646646 2531401.4809428835287690)", - "surface": 12830000, - "canton": null, - "numero_insee": "80573" - } - }, - { - "pk": 5842, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOUFLERS", - "center": "POINT (579861.5335534830810502 2560964.7760168258100748)", - "surface": 3560000, - "canton": null, - "numero_insee": "80574" - } - }, - { - "pk": 10914, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOUFLIERES", - "center": "POINT (557258.0401118528097868 2547868.2090599178336561)", - "surface": 2730000, - "canton": null, - "numero_insee": "80575" - } - }, - { - "pk": 36207, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOYENCOURT", - "center": "POINT (643997.8834110563620925 2525382.5681823720224202)", - "surface": 4220000, - "canton": null, - "numero_insee": "80576" - } - }, - { - "pk": 32856, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOYENCOURT-LES-POIX", - "center": "POINT (578597.9339960716897622 2532637.7097084149718285)", - "surface": 10410000, - "canton": null, - "numero_insee": "80577" - } - }, - { - "pk": 3254, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MOYENNEVILLE", - "center": "POINT (558218.9359145204070956 2564585.8381343805231154)", - "surface": 14140000, - "canton": null, - "numero_insee": "80578" - } - }, - { - "pk": 9040, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "MUILLE-VILLETTE", - "center": "POINT (652801.6961932640988380 2525556.8668485423550010)", - "surface": 6630000, - "canton": null, - "numero_insee": "80579" - } - }, - { - "pk": 27885, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NAMPONT", - "center": "POINT (558271.5391576709225774 2594202.7265223208814859)", - "surface": 19520000, - "canton": null, - "numero_insee": "80580" - } - }, - { - "pk": 25492, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NAMPS-MAISNIL", - "center": "POINT (584586.8216108100023121 2534388.8944125808775425)", - "surface": 22040000, - "canton": null, - "numero_insee": "80582" - } - }, - { - "pk": 35456, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NAMPTY", - "center": "POINT (591307.1013627378270030 2532444.0464005703106523)", - "surface": 5270000, - "canton": null, - "numero_insee": "80583" - } - }, - { - "pk": 32234, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NAOURS", - "center": "POINT (596170.5306397624081001 2561001.4430503039620817)", - "surface": 16530000, - "canton": null, - "numero_insee": "80584" - } - }, - { - "pk": 24776, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NESLE", - "center": "POINT (641362.7821879803668708 2529362.7545478930696845)", - "surface": 7760000, - "canton": null, - "numero_insee": "80585" - } - }, - { - "pk": 30495, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NESLE-L'HOPITAL", - "center": "POINT (553667.0657258303835988 2546537.4431991395540535)", - "surface": 4840000, - "canton": null, - "numero_insee": "80586" - } - }, - { - "pk": 36399, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NESLETTE", - "center": "POINT (551653.5031804351601750 2548021.4938118141144514)", - "surface": 2050000, - "canton": null, - "numero_insee": "80587" - } - }, - { - "pk": 5817, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NEUFMOULIN", - "center": "POINT (568979.1039762092987075 2570078.8832889231853187)", - "surface": 4460000, - "canton": null, - "numero_insee": "80588" - } - }, - { - "pk": 4494, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NEUILLY-LE-DIEN", - "center": "POINT (579292.0499034641543403 2581171.3693687845952809)", - "surface": 4930000, - "canton": null, - "numero_insee": "80589" - } - }, - { - "pk": 8191, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NEUILLY-L'HOPITAL", - "center": "POINT (567338.1363332446198910 2574867.8478929512202740)", - "surface": 7770000, - "canton": null, - "numero_insee": "80590" - } - }, - { - "pk": 22555, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NEUVILLE-AU-BOIS", - "center": "POINT (560219.4229848152026534 2552695.7465305472724140)", - "surface": 3010000, - "canton": null, - "numero_insee": "80591" - } - }, - { - "pk": 30494, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NEUVILLE-COPPEGUEULE", - "center": "POINT (557023.1134019806049764 2540061.6847625249065459)", - "surface": 8620000, - "canton": null, - "numero_insee": "80592" - } - }, - { - "pk": 35722, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LA NEUVILLE-LES-BRAY", - "center": "POINT (627703.2749573236797005 2547358.3961214558221400)", - "surface": 3990000, - "canton": null, - "numero_insee": "80593" - } - }, - { - "pk": 34513, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NEUVILLE-LES-LOEUILLY", - "center": "POINT (588301.3359275864204392 2532919.1403384734876454)", - "surface": 3160000, - "canton": null, - "numero_insee": "80594" - } - }, - { - "pk": 6812, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LA NEUVILLE-SIRE-BERNARD", - "center": "POINT (613463.2384248772868887 2527326.8899277816526592)", - "surface": 4360000, - "canton": null, - "numero_insee": "80595" - } - }, - { - "pk": 14061, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NEUVILLETTE", - "center": "POINT (598419.7630781460320577 2579130.5145120127126575)", - "surface": 3200000, - "canton": null, - "numero_insee": "80596" - } - }, - { - "pk": 5559, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NIBAS", - "center": "POINT (546394.6813740055076778 2566688.3044804530218244)", - "surface": 12570000, - "canton": null, - "numero_insee": "80597" - } - }, - { - "pk": 25628, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NOUVION", - "center": "POINT (560191.1655494261067361 2580010.9728850331157446)", - "surface": 15830000, - "canton": null, - "numero_insee": "80598" - } - }, - { - "pk": 5976, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NOYELLES-EN-CHAUSSEE", - "center": "POINT (574903.3224357765866444 2579533.7288236343301833)", - "surface": 10570000, - "canton": null, - "numero_insee": "80599" - } - }, - { - "pk": 35136, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NOYELLES-SUR-MER", - "center": "POINT (555914.1618277849629521 2576973.5533122848719358)", - "surface": 20100000, - "canton": null, - "numero_insee": "80600" - } - }, - { - "pk": 13914, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "NURLU", - "center": "POINT (648638.0765032261842862 2556539.9656982566229999)", - "surface": 6730000, - "canton": null, - "numero_insee": "80601" - } - }, - { - "pk": 30211, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OCCOCHES", - "center": "POINT (596443.1354191030841321 2576212.3126773661933839)", - "surface": 7200000, - "canton": null, - "numero_insee": "80602" - } - }, - { - "pk": 7987, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OCHANCOURT", - "center": "POINT (547989.6272644321434200 2567402.0182201452553272)", - "surface": 4000000, - "canton": null, - "numero_insee": "80603" - } - }, - { - "pk": 37102, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OFFIGNIES", - "center": "POINT (565385.9972156939329579 2533127.4767641583457589)", - "surface": 4540000, - "canton": null, - "numero_insee": "80604" - } - }, - { - "pk": 7032, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OFFOY", - "center": "POINT (648956.6544992955168709 2530627.4863760378211737)", - "surface": 7170000, - "canton": null, - "numero_insee": "80605" - } - }, - { - "pk": 35463, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OISEMONT", - "center": "POINT (558531.9416725446935743 2551080.7140212072990835)", - "surface": 8060000, - "canton": null, - "numero_insee": "80606" - } - }, - { - "pk": 22597, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OISSY", - "center": "POINT (580094.0050215532537550 2545157.6020819237455726)", - "surface": 5540000, - "canton": null, - "numero_insee": "80607" - } - }, - { - "pk": 29084, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OMIECOURT", - "center": "POINT (636519.8060333054745570 2534124.8094425518065691)", - "surface": 4560000, - "canton": null, - "numero_insee": "80608" - } - }, - { - "pk": 31138, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ONEUX", - "center": "POINT (574461.7134828916750848 2572526.1221871860325336)", - "surface": 12530000, - "canton": null, - "numero_insee": "80609" - } - }, - { - "pk": 8611, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ORESMAUX", - "center": "POINT (595030.0230972699355334 2529973.7850019922479987)", - "surface": 11090000, - "canton": null, - "numero_insee": "80611" - } - }, - { - "pk": 29923, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OUST-MAREST", - "center": "POINT (537731.2589806495234370 2561713.2177257197909057)", - "surface": 5820000, - "canton": null, - "numero_insee": "80613" - } - }, - { - "pk": 16459, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OUTREBOIS", - "center": "POINT (593852.7765450075967237 2574889.8551293164491653)", - "surface": 9630000, - "canton": null, - "numero_insee": "80614" - } - }, - { - "pk": 27987, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "OVILLERS-LA-BOISSELLE", - "center": "POINT (625902.2238656845875084 2559250.1109625017270446)", - "surface": 9590000, - "canton": null, - "numero_insee": "80615" - } - }, - { - "pk": 11940, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PARGNY", - "center": "POINT (644018.6616457481868565 2534788.3504298231564462)", - "surface": 3680000, - "canton": null, - "numero_insee": "80616" - } - }, - { - "pk": 22367, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PARVILLERS-LE-QUESNOY", - "center": "POINT (628068.4163466533645988 2527749.9003484449349344)", - "surface": 9740000, - "canton": null, - "numero_insee": "80617" - } - }, - { - "pk": 17200, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PENDE", - "center": "POINT (546131.9334918897366151 2574190.3337997747585177)", - "surface": 16420000, - "canton": null, - "numero_insee": "80618" - } - }, - { - "pk": 27540, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PERNOIS", - "center": "POINT (589151.9280619085766375 2562743.6031987811438739)", - "surface": 8850000, - "canton": null, - "numero_insee": "80619" - } - }, - { - "pk": 22775, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PERONNE", - "center": "POINT (642605.8337830128148198 2548084.2527520637959242)", - "surface": 14190000, - "canton": null, - "numero_insee": "80620" - } - }, - { - "pk": 27781, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PERTAIN", - "center": "POINT (638318.2172052304958925 2534440.1365565517917275)", - "surface": 8680000, - "canton": null, - "numero_insee": "80621" - } - }, - { - "pk": 13553, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PICQUIGNY", - "center": "POINT (585769.2584688566857949 2548507.0783627456985414)", - "surface": 10310000, - "canton": null, - "numero_insee": "80622" - } - }, - { - "pk": 29238, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PIENNES-ONVILLERS", - "center": "POINT (622378.1296641841763631 2514293.9346975744701922)", - "surface": 12310000, - "canton": null, - "numero_insee": "80623" - } - }, - { - "pk": 14318, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PIERREGOT", - "center": "POINT (603110.1027525777462870 2556757.2236991762183607)", - "surface": 2510000, - "canton": null, - "numero_insee": "80624" - } - }, - { - "pk": 10548, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PIERREPONT-SUR-AVRE", - "center": "POINT (615497.9349074340425432 2523341.5911876261234283)", - "surface": 4310000, - "canton": null, - "numero_insee": "80625" - } - }, - { - "pk": 11168, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PISSY", - "center": "POINT (585030.9007385839940980 2541096.5679334211163223)", - "surface": 6680000, - "canton": null, - "numero_insee": "80626" - } - }, - { - "pk": 37561, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PLACHY-BUYON", - "center": "POINT (592085.7033969403710216 2535052.1181535404175520)", - "surface": 10160000, - "canton": null, - "numero_insee": "80627" - } - }, - { - "pk": 11195, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE PLESSIER-ROZAINVILLERS", - "center": "POINT (615556.7774408686673269 2528245.0244153128005564)", - "surface": 10200000, - "canton": null, - "numero_insee": "80628" - } - }, - { - "pk": 37995, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "POEUILLY", - "center": "POINT (654653.3280697864247486 2543282.9866897757165134)", - "surface": 6180000, - "canton": null, - "numero_insee": "80629" - } - }, - { - "pk": 14600, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "POIX-DE-PICARDIE", - "center": "POINT (574016.4656538371928036 2530097.8573862407356501)", - "surface": 11710000, - "canton": null, - "numero_insee": "80630" - } - }, - { - "pk": 7588, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PONCHES-ESTRUVAL", - "center": "POINT (567106.6751303686760366 2590574.5930605567991734)", - "surface": 7170000, - "canton": null, - "numero_insee": "80631" - } - }, - { - "pk": 4700, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PONT-DE-METZ", - "center": "POINT (592219.5170514462515712 2542957.8920655171386898)", - "surface": 7840000, - "canton": null, - "numero_insee": "80632" - } - }, - { - "pk": 29202, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PONTHOILE", - "center": "POINT (554884.4133683518739417 2580466.8950976859778166)", - "surface": 19680000, - "canton": null, - "numero_insee": "80633" - } - }, - { - "pk": 34553, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PONT-NOYELLES", - "center": "POINT (608275.7033313341671601 2549296.2726824376732111)", - "surface": 8640000, - "canton": null, - "numero_insee": "80634" - } - }, - { - "pk": 24364, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PONT-REMY", - "center": "POINT (569739.7312584463506937 2562881.1709122168831527)", - "surface": 10080000, - "canton": null, - "numero_insee": "80635" - } - }, - { - "pk": 16388, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PORT-LE-GRAND", - "center": "POINT (558645.5866891064215451 2573394.3698589857667685)", - "surface": 11320000, - "canton": null, - "numero_insee": "80637" - } - }, - { - "pk": 6249, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "POTTE", - "center": "POINT (640526.1097543456126004 2533658.2641232600435615)", - "surface": 3350000, - "canton": null, - "numero_insee": "80638" - } - }, - { - "pk": 25334, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "POULAINVILLE", - "center": "POINT (597957.8569995283614844 2550710.5167830847203732)", - "surface": 12570000, - "canton": null, - "numero_insee": "80639" - } - }, - { - "pk": 14218, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "POZIERES", - "center": "POINT (627691.3387765049701557 2560665.9672194439917803)", - "surface": 3280000, - "canton": null, - "numero_insee": "80640" - } - }, - { - "pk": 22920, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PROUVILLE", - "center": "POINT (585161.0987289455952123 2573316.1392900175414979)", - "surface": 8860000, - "canton": null, - "numero_insee": "80642" - } - }, - { - "pk": 25307, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PROUZEL", - "center": "POINT (589382.6171135704498738 2535229.5694100479595363)", - "surface": 5210000, - "canton": null, - "numero_insee": "80643" - } - }, - { - "pk": 33617, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PROYART", - "center": "POINT (626533.8120994070777670 2543646.3948396784253418)", - "surface": 9830000, - "canton": null, - "numero_insee": "80644" - } - }, - { - "pk": 7627, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PUCHEVILLERS", - "center": "POINT (605266.6821400722255930 2562078.3642906788736582)", - "surface": 14420000, - "canton": null, - "numero_insee": "80645" - } - }, - { - "pk": 24396, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PUNCHY", - "center": "POINT (633928.5587326174136251 2532902.2739500124007463)", - "surface": 3170000, - "canton": null, - "numero_insee": "80646" - } - }, - { - "pk": 26325, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PUZEAUX", - "center": "POINT (635323.3926522706169635 2533614.4360543163493276)", - "surface": 3750000, - "canton": null, - "numero_insee": "80647" - } - }, - { - "pk": 27386, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "PYS", - "center": "POINT (630453.9975472992518917 2565291.8400178863666952)", - "surface": 5050000, - "canton": null, - "numero_insee": "80648" - } - }, - { - "pk": 19771, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "QUEND", - "center": "POINT (548184.2989414539188147 2592017.3080504336394370)", - "surface": 37480000, - "canton": null, - "numero_insee": "80649" - } - }, - { - "pk": 9266, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "QUERRIEU", - "center": "POINT (605475.9559647461865097 2549072.6420765379443765)", - "surface": 10080000, - "canton": null, - "numero_insee": "80650" - } - }, - { - "pk": 5655, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE QUESNE", - "center": "POINT (560721.6835777101805434 2540492.8386622956022620)", - "surface": 1460000, - "canton": null, - "numero_insee": "80651" - } - }, - { - "pk": 35973, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE QUESNEL", - "center": "POINT (620630.8559833505423740 2531689.7144373496994376)", - "surface": 11610000, - "canton": null, - "numero_insee": "80652" - } - }, - { - "pk": 12930, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "QUESNOY-LE-MONTANT", - "center": "POINT (553488.1740690190345049 2567948.2291590450331569)", - "surface": 7110000, - "canton": null, - "numero_insee": "80654" - } - }, - { - "pk": 10285, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "QUESNOY-SUR-AIRAINES", - "center": "POINT (575247.9780445805517957 2550320.0413714065216482)", - "surface": 16210000, - "canton": null, - "numero_insee": "80655" - } - }, - { - "pk": 28406, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "QUEVAUVILLERS", - "center": "POINT (581075.7732208741363138 2535460.1259017158299685)", - "surface": 8990000, - "canton": null, - "numero_insee": "80656" - } - }, - { - "pk": 7628, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "QUIRY-LE-SEC", - "center": "POINT (603325.8973113772226498 2519136.8617501389235258)", - "surface": 6900000, - "canton": null, - "numero_insee": "80657" - } - }, - { - "pk": 7281, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "QUIVIERES", - "center": "POINT (650107.4977638499112800 2536540.6949869189411402)", - "surface": 6840000, - "canton": null, - "numero_insee": "80658" - } - }, - { - "pk": 29833, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RAINCHEVAL", - "center": "POINT (607348.4032385905738920 2564397.1561570987105370)", - "surface": 6900000, - "canton": null, - "numero_insee": "80659" - } - }, - { - "pk": 34552, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RAINNEVILLE", - "center": "POINT (601740.4730062270537019 2553043.5946615845896304)", - "surface": 7140000, - "canton": null, - "numero_insee": "80661" - } - }, - { - "pk": 28639, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RAMBURELLES", - "center": "POINT (554918.4044145194347948 2552451.3223723927512765)", - "surface": 4590000, - "canton": null, - "numero_insee": "80662" - } - }, - { - "pk": 22360, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RAMBURES", - "center": "POINT (553842.0889119817875326 2549540.6497530690394342)", - "surface": 9950000, - "canton": null, - "numero_insee": "80663" - } - }, - { - "pk": 11075, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RANCOURT", - "center": "POINT (640634.8888532675337046 2556372.4441020549274981)", - "surface": 2890000, - "canton": null, - "numero_insee": "80664" - } - }, - { - "pk": 26881, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "REGNIERE-ECLUSE", - "center": "POINT (559423.9150595001410693 2588008.9738729731179774)", - "surface": 9640000, - "canton": null, - "numero_insee": "80665" - } - }, - { - "pk": 9335, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "REMAISNIL", - "center": "POINT (593218.9164051575353369 2578886.7697335826233029)", - "surface": 2980000, - "canton": null, - "numero_insee": "80666" - } - }, - { - "pk": 29984, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "REMAUGIES", - "center": "POINT (624078.2030411013402045 2514408.2967425058595836)", - "surface": 4170000, - "canton": null, - "numero_insee": "80667" - } - }, - { - "pk": 30049, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "REMIENCOURT", - "center": "POINT (603424.3583950261818245 2531244.9499045531265438)", - "surface": 4900000, - "canton": null, - "numero_insee": "80668" - } - }, - { - "pk": 10309, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RETHONVILLERS", - "center": "POINT (637382.5910566479433328 2526727.6654483363963664)", - "surface": 7150000, - "canton": null, - "numero_insee": "80669" - } - }, - { - "pk": 6689, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "REVELLES", - "center": "POINT (583954.6471473760902882 2538185.8423563134856522)", - "surface": 14620000, - "canton": null, - "numero_insee": "80670" - } - }, - { - "pk": 11397, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RIBEAUCOURT", - "center": "POINT (584395.0826828691642731 2569207.4136746902950108)", - "surface": 5480000, - "canton": null, - "numero_insee": "80671" - } - }, - { - "pk": 27778, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RIBEMONT-SUR-ANCRE", - "center": "POINT (615951.0334471813403070 2552762.7379865008406341)", - "surface": 9240000, - "canton": null, - "numero_insee": "80672" - } - }, - { - "pk": 12802, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RIENCOURT", - "center": "POINT (577876.1163595214020461 2547140.1908596954308450)", - "surface": 10280000, - "canton": null, - "numero_insee": "80673" - } - }, - { - "pk": 10055, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RIVERY", - "center": "POINT (600198.4451239469926804 2546026.5890706079080701)", - "surface": 6450000, - "canton": null, - "numero_insee": "80674" - } - }, - { - "pk": 34279, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROGY", - "center": "POINT (590477.9437051774002612 2523932.0134678119793534)", - "surface": 6750000, - "canton": null, - "numero_insee": "80675" - } - }, - { - "pk": 32665, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROIGLISE", - "center": "POINT (635932.3599992876406759 2520711.8405671450309455)", - "surface": 5660000, - "canton": null, - "numero_insee": "80676" - } - }, - { - "pk": 5166, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROISEL", - "center": "POINT (654595.9219766472233459 2550086.4674197658896446)", - "surface": 10050000, - "canton": null, - "numero_insee": "80677" - } - }, - { - "pk": 9480, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROLLOT", - "center": "POINT (622507.6395319040166214 2510792.8871792796999216)", - "surface": 12080000, - "canton": null, - "numero_insee": "80678" - } - }, - { - "pk": 25367, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RONSSOY", - "center": "POINT (659663.8887388500152156 2554231.6127641689963639)", - "surface": 7580000, - "canton": null, - "numero_insee": "80679" - } - }, - { - "pk": 29512, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROSIERES-EN-SANTERRE", - "center": "POINT (626400.2195886201225221 2535740.6216366537846625)", - "surface": 13480000, - "canton": null, - "numero_insee": "80680" - } - }, - { - "pk": 4795, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROUVREL", - "center": "POINT (605735.6477760823909193 2530063.6428147917613387)", - "surface": 7140000, - "canton": null, - "numero_insee": "80681" - } - }, - { - "pk": 11659, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROUVROY-EN-SANTERRE", - "center": "POINT (627047.6818499187938869 2530142.7436419082805514)", - "surface": 7430000, - "canton": null, - "numero_insee": "80682" - } - }, - { - "pk": 31574, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROUY-LE-GRAND", - "center": "POINT (644145.7011040647048503 2531587.5205324785783887)", - "surface": 3740000, - "canton": null, - "numero_insee": "80683" - } - }, - { - "pk": 6474, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROUY-LE-PETIT", - "center": "POINT (644559.4049784642411396 2529990.0542704635299742)", - "surface": 3330000, - "canton": null, - "numero_insee": "80684" - } - }, - { - "pk": 29951, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "ROYE", - "center": "POINT (632620.4918685632292181 2521884.6753788092173636)", - "surface": 15610000, - "canton": null, - "numero_insee": "80685" - } - }, - { - "pk": 26970, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RUBEMPRE", - "center": "POINT (602498.8811820815317333 2558052.8382106814533472)", - "surface": 10220000, - "canton": null, - "numero_insee": "80686" - } - }, - { - "pk": 30235, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RUBESCOURT", - "center": "POINT (617289.6841607493115589 2512550.1076900130137801)", - "surface": 3970000, - "canton": null, - "numero_insee": "80687" - } - }, - { - "pk": 19411, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RUE", - "center": "POINT (552027.0583504405803978 2587146.7211607825011015)", - "surface": 29440000, - "canton": null, - "numero_insee": "80688" - } - }, - { - "pk": 36657, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "RUMIGNY", - "center": "POINT (596095.3447987484978512 2534185.2194068636745214)", - "surface": 8070000, - "canton": null, - "numero_insee": "80690" - } - }, - { - "pk": 28563, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAIGNEVILLE", - "center": "POINT (555558.2788018535356969 2571667.6119375582784414)", - "surface": 12810000, - "canton": null, - "numero_insee": "80691" - } - }, - { - "pk": 8954, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAILLY-FLIBEAUCOURT", - "center": "POINT (559423.3965362897142768 2576102.3826918778941035)", - "surface": 10810000, - "canton": null, - "numero_insee": "80692" - } - }, - { - "pk": 9371, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAILLY-LAURETTE", - "center": "POINT (620001.0198684949427843 2547093.4833240793086588)", - "surface": 6590000, - "canton": null, - "numero_insee": "80693" - } - }, - { - "pk": 37605, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAILLY-LE-SEC", - "center": "POINT (618093.3179746067617089 2547877.9076382904313505)", - "surface": 6810000, - "canton": null, - "numero_insee": "80694" - } - }, - { - "pk": 34328, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAILLY-SAILLISEL", - "center": "POINT (641310.7911751798819751 2559279.8038111105561256)", - "surface": 9430000, - "canton": null, - "numero_insee": "80695" - } - }, - { - "pk": 29726, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINS-EN-AMIENOIS", - "center": "POINT (599087.6751510269241408 2535310.9802963659167290)", - "surface": 9920000, - "canton": null, - "numero_insee": "80696" - } - }, - { - "pk": 10620, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-ACHEUL", - "center": "POINT (587529.5663355297874659 2577238.1722234184853733)", - "surface": 3050000, - "canton": null, - "numero_insee": "80697" - } - }, - { - "pk": 22386, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-AUBIN-MONTENOY", - "center": "POINT (575847.9279173747636378 2538418.1106754611246288)", - "surface": 10350000, - "canton": null, - "numero_insee": "80698" - } - }, - { - "pk": 37720, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-AUBIN-RIVIERE", - "center": "POINT (559815.3624214415904135 2541185.6721720700152218)", - "surface": 3070000, - "canton": null, - "numero_insee": "80699" - } - }, - { - "pk": 13360, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-BLIMONT", - "center": "POINT (544668.7815833464264870 2569675.5905192499049008)", - "surface": 6680000, - "canton": null, - "numero_insee": "80700" - } - }, - { - "pk": 37366, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-CHRIST-BRIOST", - "center": "POINT (642374.8233702850993723 2539877.5075331204570830)", - "surface": 7830000, - "canton": null, - "numero_insee": "80701" - } - }, - { - "pk": 27387, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-FUSCIEN", - "center": "POINT (597465.8521767167840153 2537798.8474048250354826)", - "surface": 10130000, - "canton": null, - "numero_insee": "80702" - } - }, - { - "pk": 30140, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-GERMAIN-SUR-BRESLE", - "center": "POINT (557450.9180002971552312 2536763.3160177064128220)", - "surface": 8770000, - "canton": null, - "numero_insee": "80703" - } - }, - { - "pk": 12821, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-GRATIEN", - "center": "POINT (604750.3948855833150446 2552068.2876201844774187)", - "surface": 7020000, - "canton": null, - "numero_insee": "80704" - } - }, - { - "pk": 35937, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-LEGER-LES-DOMART", - "center": "POINT (585854.4739639135077596 2562215.6760599245317280)", - "surface": 7120000, - "canton": null, - "numero_insee": "80706" - } - }, - { - "pk": 10286, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-LEGER-SUR-BRESLE", - "center": "POINT (555708.2256123466650024 2541751.6936798328533769)", - "surface": 1120000, - "canton": null, - "numero_insee": "80707" - } - }, - { - "pk": 8243, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-MARD", - "center": "POINT (630323.4791793639305979 2521365.0357067380100489)", - "surface": 4080000, - "canton": null, - "numero_insee": "80708" - } - }, - { - "pk": 10659, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-MAULVIS", - "center": "POINT (563283.7016129705589265 2545217.0151481074281037)", - "surface": 6230000, - "canton": null, - "numero_insee": "80709" - } - }, - { - "pk": 14722, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-MAXENT", - "center": "POINT (556490.7866908740252256 2555866.4224378839135170)", - "surface": 6320000, - "canton": null, - "numero_insee": "80710" - } - }, - { - "pk": 5704, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-OUEN", - "center": "POINT (585174.2488140792120248 2559808.6049346202053130)", - "surface": 4400000, - "canton": null, - "numero_insee": "80711" - } - }, - { - "pk": 23467, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-QUENTIN-EN-TOURMONT", - "center": "POINT (545721.5312750963494182 2587394.2278444655239582)", - "surface": 26300000, - "canton": null, - "numero_insee": "80713" - } - }, - { - "pk": 32441, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-QUENTIN-LA-MOTTE-CROIX-AU-BAILLY", - "center": "POINT (536507.2912049328442663 2564504.6012539537623525)", - "surface": 6600000, - "canton": null, - "numero_insee": "80714" - } - }, - { - "pk": 34443, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-RIQUIER", - "center": "POINT (571778.8102443310199305 2570302.4263291656970978)", - "surface": 14810000, - "canton": null, - "numero_insee": "80716" - } - }, - { - "pk": 13078, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-SAUFLIEU", - "center": "POINT (593911.8201798021327704 2532065.6549296826124191)", - "surface": 7880000, - "canton": null, - "numero_insee": "80717" - } - }, - { - "pk": 38050, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-SAUVEUR", - "center": "POINT (590959.3289299083407968 2550051.4608591403812170)", - "surface": 9140000, - "canton": null, - "numero_insee": "80718" - } - }, - { - "pk": 7019, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINTE-SEGREE", - "center": "POINT (569519.9600062998943031 2529359.8031555949710310)", - "surface": 2320000, - "canton": null, - "numero_insee": "80719" - } - }, - { - "pk": 26405, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-VALERY-SUR-SOMME", - "center": "POINT (548919.9375192124862224 2575814.5088448021560907)", - "surface": 10550000, - "canton": null, - "numero_insee": "80721" - } - }, - { - "pk": 31757, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAINT-VAAST-EN-CHAUSSEE", - "center": "POINT (590436.4222072511911392 2552748.6384546682238579)", - "surface": 4930000, - "canton": null, - "numero_insee": "80722" - } - }, - { - "pk": 27137, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAISSEVAL", - "center": "POINT (584297.8386131291044876 2544992.7077978518791497)", - "surface": 7400000, - "canton": null, - "numero_insee": "80723" - } - }, - { - "pk": 7017, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SALEUX", - "center": "POINT (591439.2421533910091966 2540549.9404960069805384)", - "surface": 8030000, - "canton": null, - "numero_insee": "80724" - } - }, - { - "pk": 30720, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SALOUEL", - "center": "POINT (593132.5685835190815851 2541464.6707190396264195)", - "surface": 4670000, - "canton": null, - "numero_insee": "80725" - } - }, - { - "pk": 22405, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SANCOURT", - "center": "POINT (650958.5482885106466711 2530544.3104334631934762)", - "surface": 7260000, - "canton": null, - "numero_insee": "80726" - } - }, - { - "pk": 34743, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAULCHOY-SOUS-POIX", - "center": "POINT (571224.2047551163705066 2528973.8274458348751068)", - "surface": 3680000, - "canton": null, - "numero_insee": "80728" - } - }, - { - "pk": 8885, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAUVILLERS-MONGIVAL", - "center": "POINT (609282.8751816295552999 2524690.2058871337212622)", - "surface": 5190000, - "canton": null, - "numero_insee": "80729" - } - }, - { - "pk": 37715, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SAVEUSE", - "center": "POINT (590807.0497497906908393 2544346.8657760759815574)", - "surface": 4000000, - "canton": null, - "numero_insee": "80730" - } - }, - { - "pk": 24948, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SENARPONT", - "center": "POINT (555488.8915161301847547 2544051.2075393232516944)", - "surface": 7030000, - "canton": null, - "numero_insee": "80732" - } - }, - { - "pk": 13101, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SENLIS-LE-SEC", - "center": "POINT (617299.5915203728945926 2558977.6411846252158284)", - "surface": 8410000, - "canton": null, - "numero_insee": "80733" - } - }, - { - "pk": 30723, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SENTELIE", - "center": "POINT (577361.7727629020810127 2524922.7588354824110866)", - "surface": 5510000, - "canton": null, - "numero_insee": "80734" - } - }, - { - "pk": 31765, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SEUX", - "center": "POINT (583319.9614743250422180 2542282.9336913791485131)", - "surface": 3550000, - "canton": null, - "numero_insee": "80735" - } - }, - { - "pk": 4529, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SOREL-EN-VIMEU", - "center": "POINT (569585.6799525896785781 2557376.7385073201730847)", - "surface": 4060000, - "canton": null, - "numero_insee": "80736" - } - }, - { - "pk": 34821, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SOREL", - "center": "POINT (651319.1822522385045886 2558963.9558181269094348)", - "surface": 7920000, - "canton": null, - "numero_insee": "80737" - } - }, - { - "pk": 24357, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SOUES", - "center": "POINT (579947.0194422572385520 2550759.6270245932973921)", - "surface": 8700000, - "canton": null, - "numero_insee": "80738" - } - }, - { - "pk": 24180, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SOURDON", - "center": "POINT (604691.3592335146386176 2523350.8608237584121525)", - "surface": 5090000, - "canton": null, - "numero_insee": "80740" - } - }, - { - "pk": 33207, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SOYECOURT", - "center": "POINT (633060.7439915928989649 2540899.6932018706575036)", - "surface": 5220000, - "canton": null, - "numero_insee": "80741" - } - }, - { - "pk": 24553, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SURCAMPS", - "center": "POINT (581842.4167549478588626 2563382.7384776775725186)", - "surface": 2970000, - "canton": null, - "numero_insee": "80742" - } - }, - { - "pk": 8366, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "SUZANNE", - "center": "POINT (630470.1750739074777812 2551484.0652600098401308)", - "surface": 8740000, - "canton": null, - "numero_insee": "80743" - } - }, - { - "pk": 29696, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TAILLY", - "center": "POINT (572059.7473771607037634 2548692.4222632120363414)", - "surface": 4070000, - "canton": null, - "numero_insee": "80744" - } - }, - { - "pk": 25907, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TALMAS", - "center": "POINT (600476.8811673065647483 2560537.2954999995417893)", - "surface": 19180000, - "canton": null, - "numero_insee": "80746" - } - }, - { - "pk": 34332, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TEMPLEUX-LA-FOSSE", - "center": "POINT (649368.8051026989705861 2552944.0528723667375743)", - "surface": 7330000, - "canton": null, - "numero_insee": "80747" - } - }, - { - "pk": 13889, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TEMPLEUX-LE-GUERARD", - "center": "POINT (657980.7631521865259856 2552116.1916123232804239)", - "surface": 6580000, - "canton": null, - "numero_insee": "80748" - } - }, - { - "pk": 37131, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TERRAMESNIL", - "center": "POINT (603422.1023084754124284 2567265.8289874843321741)", - "surface": 2700000, - "canton": null, - "numero_insee": "80749" - } - }, - { - "pk": 10835, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TERTRY", - "center": "POINT (652875.1914468306349590 2540566.3996757310815156)", - "surface": 4900000, - "canton": null, - "numero_insee": "80750" - } - }, - { - "pk": 5756, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THENNES", - "center": "POINT (610205.2297059098491445 2534003.5047790994867682)", - "surface": 8140000, - "canton": null, - "numero_insee": "80751" - } - }, - { - "pk": 27388, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THEZY-GLIMONT", - "center": "POINT (607286.0674418009584770 2536080.2263786043040454)", - "surface": 6810000, - "canton": null, - "numero_insee": "80752" - } - }, - { - "pk": 8499, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THIEPVAL", - "center": "POINT (625173.2515921399462968 2562645.9191451375372708)", - "surface": 4430000, - "canton": null, - "numero_insee": "80753" - } - }, - { - "pk": 36121, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THIEULLOY-L'ABBAYE", - "center": "POINT (571665.8463419585023075 2535981.6825054753571749)", - "surface": 14730000, - "canton": null, - "numero_insee": "80754" - } - }, - { - "pk": 24953, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THIEULLOY-LA-VILLE", - "center": "POINT (570636.4492573004681617 2527468.0118766538798809)", - "surface": 3290000, - "canton": null, - "numero_insee": "80755" - } - }, - { - "pk": 8893, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THIEVRES", - "center": "POINT (608909.6975489327451214 2569112.9319725674577057)", - "surface": 3650000, - "canton": null, - "numero_insee": "80756" - } - }, - { - "pk": 31133, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THOIX", - "center": "POINT (580279.2348926651757210 2523046.0535870017483830)", - "surface": 11180000, - "canton": null, - "numero_insee": "80757" - } - }, - { - "pk": 33876, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "THORY", - "center": "POINT (606780.7099748181644827 2524769.2484060842543840)", - "surface": 5230000, - "canton": null, - "numero_insee": "80758" - } - }, - { - "pk": 14164, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TILLOLOY", - "center": "POINT (629467.6345262475078925 2516054.6219642860814929)", - "surface": 6490000, - "canton": null, - "numero_insee": "80759" - } - }, - { - "pk": 11431, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TILLOY-FLORIVILLE", - "center": "POINT (546990.1644485633587465 2555286.7692364444956183)", - "surface": 8140000, - "canton": null, - "numero_insee": "80760" - } - }, - { - "pk": 11985, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TILLOY-LES-CONTY", - "center": "POINT (588540.8654603916220367 2528218.3488317588344216)", - "surface": 6400000, - "canton": null, - "numero_insee": "80761" - } - }, - { - "pk": 34321, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TINCOURT-BOUCLY", - "center": "POINT (651200.0985678768483922 2549357.4125973242335021)", - "surface": 12930000, - "canton": null, - "numero_insee": "80762" - } - }, - { - "pk": 13176, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE TITRE", - "center": "POINT (561716.9907185670454055 2577022.0611778525635600)", - "surface": 4520000, - "canton": null, - "numero_insee": "80763" - } - }, - { - "pk": 35932, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TOEUFLES", - "center": "POINT (555129.9331356792245060 2563059.1684821117669344)", - "surface": 8880000, - "canton": null, - "numero_insee": "80764" - } - }, - { - "pk": 36755, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TOURS-EN-VIMEU", - "center": "POINT (553154.0116612006677315 2560040.9473779331892729)", - "surface": 13320000, - "canton": null, - "numero_insee": "80765" - } - }, - { - "pk": 24178, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TOUTENCOURT", - "center": "POINT (609177.8752831639721990 2561010.5871355421841145)", - "surface": 14580000, - "canton": null, - "numero_insee": "80766" - } - }, - { - "pk": 28740, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LE TRANSLAY", - "center": "POINT (551710.0926591018214822 2553224.9787929723970592)", - "surface": 5760000, - "canton": null, - "numero_insee": "80767" - } - }, - { - "pk": 30193, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TREUX", - "center": "POINT (618270.7067233498673886 2550580.9668371696025133)", - "surface": 2280000, - "canton": null, - "numero_insee": "80769" - } - }, - { - "pk": 32005, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "TULLY", - "center": "POINT (541002.8542612667661160 2565342.5619009453803301)", - "surface": 1850000, - "canton": null, - "numero_insee": "80770" - } - }, - { - "pk": 10452, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "UGNY-L'EQUIPEE", - "center": "POINT (652617.2385025224648416 2535561.2729838313534856)", - "surface": 2930000, - "canton": null, - "numero_insee": "80771" - } - }, - { - "pk": 26683, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VADENCOURT", - "center": "POINT (611004.8355484604835510 2557924.1623591864481568)", - "surface": 4950000, - "canton": null, - "numero_insee": "80773" - } - }, - { - "pk": 35494, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAIRE-SOUS-CORBIE", - "center": "POINT (615216.2247415208257735 2544952.0301099885255098)", - "surface": 6780000, - "canton": null, - "numero_insee": "80774" - } - }, - { - "pk": 13885, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VALINES", - "center": "POINT (549110.2260898323729634 2565010.0166813116520643)", - "surface": 5230000, - "canton": null, - "numero_insee": "80775" - } - }, - { - "pk": 35493, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VARENNES", - "center": "POINT (612979.7763541286112741 2561042.5315567585639656)", - "surface": 7370000, - "canton": null, - "numero_insee": "80776" - } - }, - { - "pk": 3884, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUCHELLES-LES-AUTHIE", - "center": "POINT (609532.6875349098118022 2566416.6389418812468648)", - "surface": 4810000, - "canton": null, - "numero_insee": "80777" - } - }, - { - "pk": 8612, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUCHELLES-LES-DOMART", - "center": "POINT (579950.6883826481644064 2562266.2642336264252663)", - "surface": 3940000, - "canton": null, - "numero_insee": "80778" - } - }, - { - "pk": 27952, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUCHELLES-LES-QUESNOY", - "center": "POINT (567699.3897336176596582 2567566.7647045869380236)", - "surface": 6190000, - "canton": null, - "numero_insee": "80779" - } - }, - { - "pk": 26709, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUDRICOURT", - "center": "POINT (543474.0344840559409931 2568965.2227799282409251)", - "surface": 3020000, - "canton": null, - "numero_insee": "80780" - } - }, - { - "pk": 26968, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUVILLERS", - "center": "POINT (626576.7499249522807077 2538543.7606902858242393)", - "surface": 6190000, - "canton": null, - "numero_insee": "80781" - } - }, - { - "pk": 31986, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUX-EN-AMIENOIS", - "center": "POINT (593237.0031695092329755 2552872.1832876005209982)", - "surface": 11290000, - "canton": null, - "numero_insee": "80782" - } - }, - { - "pk": 28628, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUX-MARQUENNEVILLE", - "center": "POINT (560301.9072916191071272 2554797.6472640903666615)", - "surface": 3950000, - "canton": null, - "numero_insee": "80783" - } - }, - { - "pk": 20219, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VAUX-SUR-SOMME", - "center": "POINT (615491.9893631995655596 2547856.0385706950910389)", - "surface": 5190000, - "canton": null, - "numero_insee": "80784" - } - }, - { - "pk": 13638, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VECQUEMONT", - "center": "POINT (607421.4637737011071295 2543785.8922848515212536)", - "surface": 1890000, - "canton": null, - "numero_insee": "80785" - } - }, - { - "pk": 36392, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VELENNES", - "center": "POINT (582821.9309719877783209 2530071.5492278528399765)", - "surface": 3940000, - "canton": null, - "numero_insee": "80786" - } - }, - { - "pk": 11141, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VERCOURT", - "center": "POINT (554811.6809169052867219 2589171.0832172506488860)", - "surface": 4740000, - "canton": null, - "numero_insee": "80787" - } - }, - { - "pk": 5114, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VERGIES", - "center": "POINT (564655.1305416816612706 2548730.5233504334464669)", - "surface": 8080000, - "canton": null, - "numero_insee": "80788" - } - }, - { - "pk": 5247, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VERMANDOVILLERS", - "center": "POINT (632177.9689397859619930 2538791.0247436109930277)", - "surface": 5900000, - "canton": null, - "numero_insee": "80789" - } - }, - { - "pk": 28673, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VERPILLIERES", - "center": "POINT (635146.2581880791112781 2519004.1919244430027902)", - "surface": 4940000, - "canton": null, - "numero_insee": "80790" - } - }, - { - "pk": 37096, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VERS-SUR-SELLES", - "center": "POINT (591957.9608755515655503 2538352.9961010217666626)", - "surface": 11340000, - "canton": null, - "numero_insee": "80791" - } - }, - { - "pk": 12674, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "LA VICOGNE", - "center": "POINT (599155.2384908737149090 2563027.6285527935251594)", - "surface": 4850000, - "canton": null, - "numero_insee": "80792" - } - }, - { - "pk": 26682, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VIGNACOURT", - "center": "POINT (589200.5814306325046346 2556940.6947852852754295)", - "surface": 29040000, - "canton": null, - "numero_insee": "80793" - } - }, - { - "pk": 24587, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLECOURT", - "center": "POINT (645828.8788510895101354 2533702.9577146200463176)", - "surface": 2140000, - "canton": null, - "numero_insee": "80794" - } - }, - { - "pk": 24150, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLE-LE-MARCLET", - "center": "POINT (582267.7646767460973933 2560384.5919815963134170)", - "surface": 8980000, - "canton": null, - "numero_insee": "80795" - } - }, - { - "pk": 35202, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLEROY", - "center": "POINT (556144.9348507190588862 2549359.7772826915606856)", - "surface": 6050000, - "canton": null, - "numero_insee": "80796" - } - }, - { - "pk": 30754, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-AUX-ERABLES", - "center": "POINT (613818.0415748673258349 2532733.0915714069269598)", - "surface": 4380000, - "canton": null, - "numero_insee": "80797" - } - }, - { - "pk": 10680, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-BOCAGE", - "center": "POINT (598910.5054764602100477 2556421.7999651874415576)", - "surface": 14200000, - "canton": null, - "numero_insee": "80798" - } - }, - { - "pk": 11460, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-BRETONNEUX", - "center": "POINT (613148.7794745538849384 2540932.3108087475411594)", - "surface": 14510000, - "canton": null, - "numero_insee": "80799" - } - }, - { - "pk": 13681, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-CAMPSART", - "center": "POINT (563914.9716122604440898 2541520.1295584617182612)", - "surface": 4490000, - "canton": null, - "numero_insee": "80800" - } - }, - { - "pk": 5260, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-CARBONNEL", - "center": "POINT (640058.4589120792225003 2541659.0460034366697073)", - "surface": 7900000, - "canton": null, - "numero_insee": "80801" - } - }, - { - "pk": 15966, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-FAUCON", - "center": "POINT (655265.8849417542805895 2553694.2044778047129512)", - "surface": 11470000, - "canton": null, - "numero_insee": "80802" - } - }, - { - "pk": 24181, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-LES-ROYE", - "center": "POINT (628805.8381733264541253 2523353.4666275577619672)", - "surface": 6360000, - "canton": null, - "numero_insee": "80803" - } - }, - { - "pk": 27105, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-SOUS-AILLY", - "center": "POINT (577143.4245406931731850 2562943.1503524398431182)", - "surface": 6360000, - "canton": null, - "numero_insee": "80804" - } - }, - { - "pk": 11196, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-TOURNELLE", - "center": "POINT (609146.6479299645870924 2517084.4736751867458224)", - "surface": 5910000, - "canton": null, - "numero_insee": "80805" - } - }, - { - "pk": 11537, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLERS-SUR-AUTHIE", - "center": "POINT (553991.2364184681791812 2591565.5399452773854136)", - "surface": 12250000, - "canton": null, - "numero_insee": "80806" - } - }, - { - "pk": 36206, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VILLE-SUR-ANCRE", - "center": "POINT (619868.9966510001104325 2550894.5802746075205505)", - "surface": 5980000, - "canton": null, - "numero_insee": "80807" - } - }, - { - "pk": 28338, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VIRONCHAUX", - "center": "POINT (563515.8369403601391241 2589243.8459832286462188)", - "surface": 16250000, - "canton": null, - "numero_insee": "80808" - } - }, - { - "pk": 28398, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VISMES", - "center": "POINT (552183.5996538390172645 2556430.7771164141595364)", - "surface": 13650000, - "canton": null, - "numero_insee": "80809" - } - }, - { - "pk": 11984, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VITZ-SUR-AUTHIE", - "center": "POINT (579873.0648240221198648 2583477.5087872762233019)", - "surface": 4710000, - "canton": null, - "numero_insee": "80810" - } - }, - { - "pk": 32667, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VOYENNES", - "center": "POINT (646657.1342159099876881 2530407.9773500636219978)", - "surface": 9240000, - "canton": null, - "numero_insee": "80811" - } - }, - { - "pk": 33328, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VRAIGNES-EN-VERMANDOIS", - "center": "POINT (652550.5592550206929445 2543465.3630027640610933)", - "surface": 4250000, - "canton": null, - "numero_insee": "80812" - } - }, - { - "pk": 5057, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VRAIGNES-LES-HORNOY", - "center": "POINT (569160.3572930913651362 2536461.0093407309614122)", - "surface": 5730000, - "canton": null, - "numero_insee": "80813" - } - }, - { - "pk": 10308, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VRELY", - "center": "POINT (625219.7980386974522844 2533329.2668711887672544)", - "surface": 5810000, - "canton": null, - "numero_insee": "80814" - } - }, - { - "pk": 14099, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "VRON", - "center": "POINT (559096.1719518335303292 2591308.0400451254099607)", - "surface": 20700000, - "canton": null, - "numero_insee": "80815" - } - }, - { - "pk": 25684, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WARGNIES", - "center": "POINT (593777.7218595924787223 2559980.7983840247616172)", - "surface": 2830000, - "canton": null, - "numero_insee": "80819" - } - }, - { - "pk": 8635, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WARLOY-BAILLON", - "center": "POINT (613907.1345483929617330 2557848.4940378456376493)", - "surface": 15340000, - "canton": null, - "numero_insee": "80820" - } - }, - { - "pk": 35936, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WARLUS", - "center": "POINT (572675.9666035578120500 2546796.4753101589158177)", - "surface": 8240000, - "canton": null, - "numero_insee": "80821" - } - }, - { - "pk": 36892, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WARSY", - "center": "POINT (622203.1754382769577205 2523197.8520490382798016)", - "surface": 3030000, - "canton": null, - "numero_insee": "80822" - } - }, - { - "pk": 37606, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WARVILLERS", - "center": "POINT (625535.9498112415894866 2531430.7974946913309395)", - "surface": 4190000, - "canton": null, - "numero_insee": "80823" - } - }, - { - "pk": 34391, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WIENCOURT-L'EQUIPEE", - "center": "POINT (619275.4880965333431959 2538182.1665508123114705)", - "surface": 5830000, - "canton": null, - "numero_insee": "80824" - } - }, - { - "pk": 28172, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WIRY-AU-MONT", - "center": "POINT (564434.9442001129500568 2551130.0732687567360699)", - "surface": 4830000, - "canton": null, - "numero_insee": "80825" - } - }, - { - "pk": 14782, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WOIGNARUE", - "center": "POINT (539066.0150295894127339 2569628.8325354186818004)", - "surface": 16440000, - "canton": null, - "numero_insee": "80826" - } - }, - { - "pk": 38024, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WOINCOURT", - "center": "POINT (542921.3358340711565688 2563257.3798330817371607)", - "surface": 4250000, - "canton": null, - "numero_insee": "80827" - } - }, - { - "pk": 8755, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "WOIREL", - "center": "POINT (562830.7831971058622003 2551516.8883911985903978)", - "surface": 1870000, - "canton": null, - "numero_insee": "80828" - } - }, - { - "pk": 30165, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "Y", - "center": "POINT (646725.9747929726727307 2534110.7583846058696508)", - "surface": 2770000, - "canton": null, - "numero_insee": "80829" - } - }, - { - "pk": 9086, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "YVRENCH", - "center": "POINT (577029.4768832854460925 2576549.8615166381932795)", - "surface": 9370000, - "canton": null, - "numero_insee": "80832" - } - }, - { - "pk": 5890, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "YVRENCHEUX", - "center": "POINT (574935.1536432220600545 2575731.8781258841045201)", - "surface": 6070000, - "canton": null, - "numero_insee": "80833" - } - }, - { - "pk": 9129, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "YZENGREMER", - "center": "POINT (541323.0417986905667931 2562943.8700772440060973)", - "surface": 3460000, - "canton": null, - "numero_insee": "80834" - } - }, - { - "pk": 37722, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "YZEUX", - "center": "POINT (583724.6393294692970812 2553692.9533506911247969)", - "surface": 5060000, - "canton": null, - "numero_insee": "80835" - } - }, - { - "pk": 32097, - "model": "ishtar_common.town", - "fields": { - "departement": 81, - "name": "YONVAL", - "center": "POINT (560507.5336090303026140 2566105.8213826115243137)", - "surface": 3920000, - "canton": null, - "numero_insee": "80836" - } - }, - { - "pk": 4701, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "AGUTS", - "center": "POINT (566609.1177691303892061 1836735.0471872533671558)", - "surface": 9840000, - "canton": null, - "numero_insee": "81001" - } - }, - { - "pk": 22974, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "AIGUEFONDE", - "center": "POINT (598882.6763895179610699 1832300.2405142909847200)", - "surface": 19160000, - "canton": null, - "numero_insee": "81002" - } - }, - { - "pk": 16295, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ALBAN", - "center": "POINT (609629.4609339182497934 1875838.9159088325686753)", - "surface": 9860000, - "canton": null, - "numero_insee": "81003" - } - }, - { - "pk": 23531, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ALBI", - "center": "POINT (584663.5437954604858533 1880434.6748039210215211)", - "surface": 44930000, - "canton": null, - "numero_insee": "81004" - } - }, - { - "pk": 3120, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ALBINE", - "center": "POINT (615447.3039591768756509 1826833.0227547080721706)", - "surface": 17140000, - "canton": null, - "numero_insee": "81005" - } - }, - { - "pk": 19085, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ALGANS", - "center": "POINT (563942.7022719378583133 1844321.2873062309809029)", - "surface": 14440000, - "canton": null, - "numero_insee": "81006" - } - }, - { - "pk": 5989, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ALOS", - "center": "POINT (562850.8135172466281801 1891063.7974508907645941)", - "surface": 6410000, - "canton": null, - "numero_insee": "81007" - } - }, - { - "pk": 16166, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ALMAYRAC", - "center": "POINT (585503.4425583885749802 1899662.6370705161243677)", - "surface": 11000000, - "canton": null, - "numero_insee": "81008" - } - }, - { - "pk": 31016, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "AMARENS", - "center": "POINT (566632.9014251900371164 1893698.2755665183067322)", - "surface": 4810000, - "canton": null, - "numero_insee": "81009" - } - }, - { - "pk": 20032, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "AMBIALET", - "center": "POINT (603083.2658503833226860 1880489.0990255195647478)", - "surface": 30290000, - "canton": null, - "numero_insee": "81010" - } - }, - { - "pk": 23624, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "AMBRES", - "center": "POINT (559218.1210929498774931 1858597.7442262507975101)", - "surface": 19110000, - "canton": null, - "numero_insee": "81011" - } - }, - { - "pk": 12173, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ANDILLAC", - "center": "POINT (564366.5817645150236785 1889374.6284559713676572)", - "surface": 5410000, - "canton": null, - "numero_insee": "81012" - } - }, - { - "pk": 18496, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ANDOUQUE", - "center": "POINT (597200.0284462302224711 1889649.7730544919613749)", - "surface": 26530000, - "canton": null, - "numero_insee": "81013" - } - }, - { - "pk": 21360, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ANGLES", - "center": "POINT (619852.7707352460129187 1838683.4109672163613141)", - "surface": 86070000, - "canton": null, - "numero_insee": "81014" - } - }, - { - "pk": 17597, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "APPELLE", - "center": "POINT (568967.2410511955386028 1842060.7569677047431469)", - "surface": 3810000, - "canton": null, - "numero_insee": "81015" - } - }, - { - "pk": 15332, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ARFONS", - "center": "POINT (588034.0662717939121649 1824700.7187503753229976)", - "surface": 40360000, - "canton": null, - "numero_insee": "81016" - } - }, - { - "pk": 21091, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ARIFAT", - "center": "POINT (601221.5532357849879190 1863755.0518209338188171)", - "surface": 20150000, - "canton": null, - "numero_insee": "81017" - } - }, - { - "pk": 5693, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ARTHES", - "center": "POINT (591034.8481400553137064 1884692.6989468154497445)", - "surface": 10090000, - "canton": null, - "numero_insee": "81018" - } - }, - { - "pk": 5736, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ASSAC", - "center": "POINT (607840.2632227885769680 1886235.2878477252088487)", - "surface": 15200000, - "canton": null, - "numero_insee": "81019" - } - }, - { - "pk": 28914, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "AUSSAC", - "center": "POINT (576012.4720383577514440 1873454.5966121065430343)", - "surface": 6080000, - "canton": null, - "numero_insee": "81020" - } - }, - { - "pk": 4974, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "AUSSILLON", - "center": "POINT (601484.5950423727044836 1832422.1948404312133789)", - "surface": 10250000, - "canton": null, - "numero_insee": "81021" - } - }, - { - "pk": 13446, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BANNIERES", - "center": "POINT (553213.0244640632299706 1846434.0124241178855300)", - "surface": 7270000, - "canton": null, - "numero_insee": "81022" - } - }, - { - "pk": 10735, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BARRE", - "center": "POINT (638592.3120926728006452 1860265.0668166587129235)", - "surface": 15070000, - "canton": null, - "numero_insee": "81023" - } - }, - { - "pk": 22052, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BEAUVAIS-SUR-TESCOU", - "center": "POINT (538436.1688320507528260 1877645.3011519091669470)", - "surface": 12090000, - "canton": null, - "numero_insee": "81024" - } - }, - { - "pk": 35916, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BELCASTEL", - "center": "POINT (552583.9407849506242201 1849832.5618808371946216)", - "surface": 10870000, - "canton": null, - "numero_insee": "81025" - } - }, - { - "pk": 3242, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BELLEGARDE", - "center": "POINT (595195.3170998642453924 1878020.2578449863940477)", - "surface": 11170000, - "canton": null, - "numero_insee": "81026" - } - }, - { - "pk": 31034, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BELLESERRE", - "center": "POINT (577561.7470240965485573 1831921.2255157767795026)", - "surface": 4790000, - "canton": null, - "numero_insee": "81027" - } - }, - { - "pk": 8820, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BERLATS", - "center": "POINT (618212.3188673056429252 1855188.1187031513545662)", - "surface": 10470000, - "canton": null, - "numero_insee": "81028" - } - }, - { - "pk": 8041, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BERNAC", - "center": "POINT (575327.1675847597653046 1883559.9466755120083690)", - "surface": 5600000, - "canton": null, - "numero_insee": "81029" - } - }, - { - "pk": 33689, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BERTRE", - "center": "POINT (568142.9340076785301790 1844857.0024110379163176)", - "surface": 4170000, - "canton": null, - "numero_insee": "81030" - } - }, - { - "pk": 16895, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE BEZ", - "center": "POINT (609373.6639758882811293 1846704.4440165711566806)", - "surface": 32590000, - "canton": null, - "numero_insee": "81031" - } - }, - { - "pk": 18564, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BLAN", - "center": "POINT (574630.1603786785854027 1835300.5126042128540576)", - "surface": 13510000, - "canton": null, - "numero_insee": "81032" - } - }, - { - "pk": 29785, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BLAYE-LES-MINES", - "center": "POINT (584363.4828139767050743 1892345.1581203707028180)", - "surface": 8910000, - "canton": null, - "numero_insee": "81033" - } - }, - { - "pk": 22303, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BOISSEZON", - "center": "POINT (605516.6450386943761259 1841065.7560232942923903)", - "surface": 19490000, - "canton": null, - "numero_insee": "81034" - } - }, - { - "pk": 12038, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BOURNAZEL", - "center": "POINT (570484.9048191036563367 1899937.2457680159714073)", - "surface": 7880000, - "canton": null, - "numero_insee": "81035" - } - }, - { - "pk": 3791, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BOUT-DU-PONT-DE-LARN", - "center": "POINT (607484.2345801222836599 1833273.4810891582164913)", - "surface": 7890000, - "canton": null, - "numero_insee": "81036" - } - }, - { - "pk": 16303, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BRASSAC", - "center": "POINT (614088.6977948452113196 1845542.7164636217057705)", - "surface": 23690000, - "canton": null, - "numero_insee": "81037" - } - }, - { - "pk": 20670, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BRENS", - "center": "POINT (567179.0958841057727113 1876283.8235778305679560)", - "surface": 22730000, - "canton": null, - "numero_insee": "81038" - } - }, - { - "pk": 15568, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BRIATEXTE", - "center": "POINT (566709.1820505533833057 1860662.6467321505770087)", - "surface": 15270000, - "canton": null, - "numero_insee": "81039" - } - }, - { - "pk": 22222, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BROUSSE", - "center": "POINT (577747.4681381507543847 1857551.5211800725664943)", - "surface": 14710000, - "canton": null, - "numero_insee": "81040" - } - }, - { - "pk": 18883, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BROZE", - "center": "POINT (564213.2859273136127740 1883767.2296188171021640)", - "surface": 3950000, - "canton": null, - "numero_insee": "81041" - } - }, - { - "pk": 17532, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BURLATS", - "center": "POINT (599451.4981366305146366 1848022.6937945792451501)", - "surface": 32620000, - "canton": null, - "numero_insee": "81042" - } - }, - { - "pk": 32518, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "BUSQUE", - "center": "POINT (568676.0677757289959118 1864883.7706813442055136)", - "surface": 8510000, - "canton": null, - "numero_insee": "81043" - } - }, - { - "pk": 9442, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CABANES", - "center": "POINT (568740.5940804613055661 1857175.7577901035547256)", - "surface": 8870000, - "canton": null, - "numero_insee": "81044" - } - }, - { - "pk": 33258, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LES CABANNES", - "center": "POINT (567204.1865017664385960 1897206.8569487570784986)", - "surface": 6300000, - "canton": null, - "numero_insee": "81045" - } - }, - { - "pk": 21183, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CADALEN", - "center": "POINT (571525.4323229512665421 1871314.7025376034434885)", - "surface": 40600000, - "canton": null, - "numero_insee": "81046" - } - }, - { - "pk": 5571, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CADIX", - "center": "POINT (610744.9087418915005401 1886059.4707700610160828)", - "surface": 18240000, - "canton": null, - "numero_insee": "81047" - } - }, - { - "pk": 21611, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAGNAC-LES-MINES", - "center": "POINT (582509.3711908012628555 1886623.4037186056375504)", - "surface": 24950000, - "canton": null, - "numero_insee": "81048" - } - }, - { - "pk": 28934, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAHUZAC", - "center": "POINT (579276.1338383540278301 1830433.8907811162061989)", - "surface": 5700000, - "canton": null, - "numero_insee": "81049" - } - }, - { - "pk": 4350, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAMBON-LES-LAVAUR", - "center": "POINT (560446.5541406773263589 1843391.0251831479836255)", - "surface": 12180000, - "canton": null, - "numero_insee": "81050" - } - }, - { - "pk": 18283, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAHUZAC-SUR-VERE", - "center": "POINT (566085.9091272252844647 1887286.7260860505048186)", - "surface": 30640000, - "canton": null, - "numero_insee": "81051" - } - }, - { - "pk": 12303, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAMBON", - "center": "POINT (590883.3402299197623506 1878885.0730753357056528)", - "surface": 7780000, - "canton": null, - "numero_insee": "81052" - } - }, - { - "pk": 19694, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAMBOUNES", - "center": "POINT (608301.9395449132425711 1843191.5118085383437574)", - "surface": 22560000, - "canton": null, - "numero_insee": "81053" - } - }, - { - "pk": 9952, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAMBOUNET-SUR-LE-SOR", - "center": "POINT (582385.5635189036838710 1841672.5928165803197771)", - "surface": 7770000, - "canton": null, - "numero_insee": "81054" - } - }, - { - "pk": 11802, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LES CAMMAZES", - "center": "POINT (579036.2076672900002450 1823223.7038570349104702)", - "surface": 7780000, - "canton": null, - "numero_insee": "81055" - } - }, - { - "pk": 23209, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAMPAGNAC", - "center": "POINT (560036.2381885177455842 1892441.7747870453167707)", - "surface": 7440000, - "canton": null, - "numero_insee": "81056" - } - }, - { - "pk": 3783, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CARBES", - "center": "POINT (585034.7013567977119237 1848101.9829983399249613)", - "surface": 7360000, - "canton": null, - "numero_insee": "81058" - } - }, - { - "pk": 6280, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CARLUS", - "center": "POINT (581295.2881617563543841 1876201.8307612314820290)", - "surface": 10760000, - "canton": null, - "numero_insee": "81059" - } - }, - { - "pk": 17330, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CARMAUX", - "center": "POINT (586343.6972594846738502 1894964.5851594789419323)", - "surface": 14150000, - "canton": null, - "numero_insee": "81060" - } - }, - { - "pk": 17521, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CASTANET", - "center": "POINT (575809.2326971807051450 1885766.3903983081690967)", - "surface": 7130000, - "canton": null, - "numero_insee": "81061" - } - }, - { - "pk": 19414, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CASTELNAU-DE-BRASSAC", - "center": "POINT (615347.1529566444223747 1850659.0073766973800957)", - "surface": 72650000, - "canton": null, - "numero_insee": "81062" - } - }, - { - "pk": 20379, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CASTELNAU-DE-MONTMIRAL", - "center": "POINT (555473.4063009920064360 1887398.1664535640738904)", - "surface": 89800000, - "canton": null, - "numero_insee": "81064" - } - }, - { - "pk": 30432, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CASTRES", - "center": "POINT (591960.4185012964298949 1845957.5941242536064237)", - "surface": 98710000, - "canton": null, - "numero_insee": "81065" - } - }, - { - "pk": 5437, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CAUCALIERES", - "center": "POINT (597837.9276244879001752 1837497.3472693655639887)", - "surface": 12810000, - "canton": null, - "numero_insee": "81066" - } - }, - { - "pk": 21867, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CESTAYROLS", - "center": "POINT (571896.0245270734885707 1886834.8190326509065926)", - "surface": 17080000, - "canton": null, - "numero_insee": "81067" - } - }, - { - "pk": 5495, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "COMBEFA", - "center": "POINT (580543.6779393020551652 1894215.2093384247273207)", - "surface": 2910000, - "canton": null, - "numero_insee": "81068" - } - }, - { - "pk": 32353, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CORDES-SUR-CIEL", - "center": "POINT (569213.7569258227013052 1896322.7024076734669507)", - "surface": 8440000, - "canton": null, - "numero_insee": "81069" - } - }, - { - "pk": 17676, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "COUFOULEUX", - "center": "POINT (551244.6196301331510767 1866339.7295607922133058)", - "surface": 27140000, - "canton": null, - "numero_insee": "81070" - } - }, - { - "pk": 17151, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "COURRIS", - "center": "POINT (605256.9411524119786918 1883911.0761811865959316)", - "surface": 9320000, - "canton": null, - "numero_insee": "81071" - } - }, - { - "pk": 5919, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CUNAC", - "center": "POINT (590969.1696170470677316 1880587.6582153046038002)", - "surface": 6340000, - "canton": null, - "numero_insee": "81074" - } - }, - { - "pk": 16519, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CUQ", - "center": "POINT (579811.6266379399457946 1850160.5575181534513831)", - "surface": 15110000, - "canton": null, - "numero_insee": "81075" - } - }, - { - "pk": 23158, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CUQ-TOULZA", - "center": "POINT (563577.4624875845620409 1840113.5083244254346937)", - "surface": 23220000, - "canton": null, - "numero_insee": "81076" - } - }, - { - "pk": 15714, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "CURVALLE", - "center": "POINT (613708.4435306908562779 1878876.4869792310055345)", - "surface": 38670000, - "canton": null, - "numero_insee": "81077" - } - }, - { - "pk": 17539, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "DAMIATTE", - "center": "POINT (571577.0442832816625014 1853195.0455494103953242)", - "surface": 31870000, - "canton": null, - "numero_insee": "81078" - } - }, - { - "pk": 23023, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "DENAT", - "center": "POINT (589148.6490956837078556 1870861.7185732002835721)", - "surface": 15050000, - "canton": null, - "numero_insee": "81079" - } - }, - { - "pk": 8217, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "DONNAZAC", - "center": "POINT (568464.8978713250253350 1890109.6922563221305609)", - "surface": 4750000, - "canton": null, - "numero_insee": "81080" - } - }, - { - "pk": 21597, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "DOURGNE", - "center": "POINT (584182.1801149423699826 1830374.8945528832264245)", - "surface": 22710000, - "canton": null, - "numero_insee": "81081" - } - }, - { - "pk": 5994, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE DOURN", - "center": "POINT (610707.9027447730768472 1890463.9605876305140555)", - "surface": 9340000, - "canton": null, - "numero_insee": "81082" - } - }, - { - "pk": 12172, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "DURFORT", - "center": "POINT (578616.4889738846104592 1825522.8031564471311867)", - "surface": 4550000, - "canton": null, - "numero_insee": "81083" - } - }, - { - "pk": 23485, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ESCOUSSENS", - "center": "POINT (591183.7410767462570220 1831134.3970558913424611)", - "surface": 23970000, - "canton": null, - "numero_insee": "81084" - } - }, - { - "pk": 31463, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ESCROUX", - "center": "POINT (624564.2684740787371993 1861748.7699566348455846)", - "surface": 10230000, - "canton": null, - "numero_insee": "81085" - } - }, - { - "pk": 4884, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ESPERAUSSES", - "center": "POINT (615208.3440454510273412 1855262.9781262530013919)", - "surface": 12190000, - "canton": null, - "numero_insee": "81086" - } - }, - { - "pk": 30256, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FAYSSAC", - "center": "POINT (571316.3656386407092214 1884327.2331469487398863)", - "surface": 7660000, - "canton": null, - "numero_insee": "81087" - } - }, - { - "pk": 21796, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FAUCH", - "center": "POINT (593654.1383829528931528 1870799.3993781812023371)", - "surface": 17020000, - "canton": null, - "numero_insee": "81088" - } - }, - { - "pk": 29574, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FENOLS", - "center": "POINT (577326.3922374687390402 1871963.9499779704492539)", - "surface": 6050000, - "canton": null, - "numero_insee": "81090" - } - }, - { - "pk": 20919, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FERRIERES", - "center": "POINT (608929.5148089871509001 1851906.5340188662521541)", - "surface": 11900000, - "canton": null, - "numero_insee": "81091" - } - }, - { - "pk": 15236, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FIAC", - "center": "POINT (565553.1728713264456019 1855246.9612259394489229)", - "surface": 25350000, - "canton": null, - "numero_insee": "81092" - } - }, - { - "pk": 23588, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FLORENTIN", - "center": "POINT (575290.7882512658834457 1875951.3036444601602852)", - "surface": 12700000, - "canton": null, - "numero_insee": "81093" - } - }, - { - "pk": 28049, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FRAISSINES", - "center": "POINT (613751.3397532793460414 1885684.2966516145970672)", - "surface": 6400000, - "canton": null, - "numero_insee": "81094" - } - }, - { - "pk": 26816, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FRAUSSEILLES", - "center": "POINT (567246.9172846862347797 1892101.6747610461898148)", - "surface": 5850000, - "canton": null, - "numero_insee": "81095" - } - }, - { - "pk": 17433, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE FRAYSSE", - "center": "POINT (606405.1481303633190691 1878314.5800601483788341)", - "surface": 29620000, - "canton": null, - "numero_insee": "81096" - } - }, - { - "pk": 19679, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FREJAIROLLES", - "center": "POINT (591414.9206744208931923 1875185.4648025438655168)", - "surface": 17660000, - "canton": null, - "numero_insee": "81097" - } - }, - { - "pk": 10973, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "FREJEVILLE", - "center": "POINT (584658.6175506830913946 1845195.5785395903512836)", - "surface": 9420000, - "canton": null, - "numero_insee": "81098" - } - }, - { - "pk": 20647, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "GAILLAC", - "center": "POINT (563747.9538320712745190 1879558.7337177011650056)", - "surface": 50950000, - "canton": null, - "numero_insee": "81099" - } - }, - { - "pk": 13670, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "GARREVAQUES", - "center": "POINT (571351.8115440965630114 1832269.6661214961204678)", - "surface": 6990000, - "canton": null, - "numero_insee": "81100" - } - }, - { - "pk": 31718, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "GARRIGUES", - "center": "POINT (548729.7608966700499877 1855807.0481801496353000)", - "surface": 10430000, - "canton": null, - "numero_insee": "81102" - } - }, - { - "pk": 4372, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "GIROUSSENS", - "center": "POINT (556476.7989967938046902 1863179.9274283815175295)", - "surface": 42150000, - "canton": null, - "numero_insee": "81104" - } - }, - { - "pk": 19835, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "GRAULHET", - "center": "POINT (572906.4138985541649163 1861815.7524461406283081)", - "surface": 57510000, - "canton": null, - "numero_insee": "81105" - } - }, - { - "pk": 32315, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "GRAZAC", - "center": "POINT (544688.5404805368743837 1872191.4639859839808196)", - "surface": 32130000, - "canton": null, - "numero_insee": "81106" - } - }, - { - "pk": 20122, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ITZAC", - "center": "POINT (560620.1013159606372938 1894448.8330788721796125)", - "surface": 11230000, - "canton": null, - "numero_insee": "81108" - } - }, - { - "pk": 4560, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "JONQUIERES", - "center": "POINT (584312.1485336010809988 1850698.8359844605438411)", - "surface": 12210000, - "canton": null, - "numero_insee": "81109" - } - }, - { - "pk": 18495, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "JOUQUEVIEL", - "center": "POINT (583724.5282466434873641 1908857.6539103444665670)", - "surface": 11990000, - "canton": null, - "numero_insee": "81110" - } - }, - { - "pk": 22507, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABARTHE-BLEYS", - "center": "POINT (564594.0104973099660128 1898085.9877851787023246)", - "surface": 9070000, - "canton": null, - "numero_insee": "81111" - } - }, - { - "pk": 13272, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABASTIDE-DE-LEVIS", - "center": "POINT (573145.8720904644578695 1881038.9395436602644622)", - "surface": 14230000, - "canton": null, - "numero_insee": "81112" - } - }, - { - "pk": 24450, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABASTIDE-DENAT", - "center": "POINT (588922.4189918693155050 1873963.2392737981863320)", - "surface": 7500000, - "canton": null, - "numero_insee": "81113" - } - }, - { - "pk": 22810, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABASTIDE-GABAUSSE", - "center": "POINT (580961.7005980501417071 1892116.4289042593445629)", - "surface": 12370000, - "canton": null, - "numero_insee": "81114" - } - }, - { - "pk": 14447, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABASTIDE-ROUAIROUX", - "center": "POINT (624220.4673518759664148 1831211.6688766242004931)", - "surface": 23810000, - "canton": null, - "numero_insee": "81115" - } - }, - { - "pk": 20080, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABASTIDE-SAINT-GEORGES", - "center": "POINT (560346.0645950628677383 1855403.6154363066889346)", - "surface": 6270000, - "canton": null, - "numero_insee": "81116" - } - }, - { - "pk": 17969, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABESSIERE-CANDEIL", - "center": "POINT (574468.6720629947958514 1866534.0462316751945764)", - "surface": 22180000, - "canton": null, - "numero_insee": "81117" - } - }, - { - "pk": 34606, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABOULBENE", - "center": "POINT (589210.5673510939814150 1851540.8011223173234612)", - "surface": 4640000, - "canton": null, - "numero_insee": "81118" - } - }, - { - "pk": 18853, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABOUTARIE", - "center": "POINT (581988.1911903095897287 1865195.4963143230415881)", - "surface": 5400000, - "canton": null, - "numero_insee": "81119" - } - }, - { - "pk": 22814, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LABRUGUIERE", - "center": "POINT (594262.6767855581128970 1834063.5071322550065815)", - "surface": 61380000, - "canton": null, - "numero_insee": "81120" - } - }, - { - "pk": 5923, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACABAREDE", - "center": "POINT (620748.7395068295300007 1827378.1608588621020317)", - "surface": 14700000, - "canton": null, - "numero_insee": "81121" - } - }, - { - "pk": 22132, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACAPELLE-PINET", - "center": "POINT (601349.6867825916269794 1896191.6727052959613502)", - "surface": 8170000, - "canton": null, - "numero_insee": "81122" - } - }, - { - "pk": 11917, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACAPELLE-SEGALAR", - "center": "POINT (572772.1441573102492839 1901758.3445311537943780)", - "surface": 6780000, - "canton": null, - "numero_insee": "81123" - } - }, - { - "pk": 17995, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACAUNE", - "center": "POINT (628324.5520384372211993 1855072.9495513790752739)", - "surface": 91020000, - "canton": null, - "numero_insee": "81124" - } - }, - { - "pk": 35838, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACAZE", - "center": "POINT (613865.7628819938981906 1860157.1497704209759831)", - "surface": 45980000, - "canton": null, - "numero_insee": "81125" - } - }, - { - "pk": 34150, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACOUGOTTE-CADOUL", - "center": "POINT (558297.4548028636490926 1848979.3295801293570548)", - "surface": 8760000, - "canton": null, - "numero_insee": "81126" - } - }, - { - "pk": 35550, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACROISILLE", - "center": "POINT (566964.2943338230252266 1842144.1029909905046225)", - "surface": 6630000, - "canton": null, - "numero_insee": "81127" - } - }, - { - "pk": 19333, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LACROUZETTE", - "center": "POINT (601928.0692038878332824 1851146.9531587739475071)", - "surface": 28880000, - "canton": null, - "numero_insee": "81128" - } - }, - { - "pk": 24268, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LAGARDIOLLE", - "center": "POINT (580155.2797598560573533 1833044.2009371414314955)", - "surface": 10220000, - "canton": null, - "numero_insee": "81129" - } - }, - { - "pk": 34840, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LAGARRIGUE", - "center": "POINT (595802.2129669040441513 1841484.7700293471571058)", - "surface": 4800000, - "canton": null, - "numero_insee": "81130" - } - }, - { - "pk": 34383, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LAGRAVE", - "center": "POINT (572079.9491267779376358 1876825.4028886698652059)", - "surface": 9440000, - "canton": null, - "numero_insee": "81131" - } - }, - { - "pk": 33453, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "GUITALENS-L'ALBAREDE", - "center": "POINT (576322.2128198768477887 1848429.4197138210292906)", - "surface": 9460000, - "canton": null, - "numero_insee": "81132" - } - }, - { - "pk": 20042, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LAMONTELARIE", - "center": "POINT (621889.3221322105964646 1846509.3071851665154099)", - "surface": 21490000, - "canton": null, - "numero_insee": "81134" - } - }, - { - "pk": 18096, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LAPARROUQUIAL", - "center": "POINT (575270.4789814174873754 1902279.8085581231862307)", - "surface": 8430000, - "canton": null, - "numero_insee": "81135" - } - }, - { - "pk": 30693, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LARROQUE", - "center": "POINT (547844.7308400393230841 1889837.1269623483531177)", - "surface": 18270000, - "canton": null, - "numero_insee": "81136" - } - }, - { - "pk": 6297, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LASFAILLADES", - "center": "POINT (613233.1791370200226083 1840129.4560835461597890)", - "surface": 8300000, - "canton": null, - "numero_insee": "81137" - } - }, - { - "pk": 23354, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LASGRAISSES", - "center": "POINT (575648.9533273557899520 1869046.6968558672815561)", - "surface": 12310000, - "canton": null, - "numero_insee": "81138" - } - }, - { - "pk": 15682, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LAUTREC", - "center": "POINT (583267.4687985413474962 1855895.8846561824902892)", - "surface": 54670000, - "canton": null, - "numero_insee": "81139" - } - }, - { - "pk": 23326, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LAVAUR", - "center": "POINT (556150.8843503018142655 1854267.3011345053091645)", - "surface": 63080000, - "canton": null, - "numero_insee": "81140" - } - }, - { - "pk": 4231, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LEDAS-ET-PENTHIES", - "center": "POINT (603641.9341821743873879 1897412.2198371738195419)", - "surface": 12540000, - "canton": null, - "numero_insee": "81141" - } - }, - { - "pk": 21862, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LEMPAUT", - "center": "POINT (578229.7799110132036731 1835831.2314247451722622)", - "surface": 14260000, - "canton": null, - "numero_insee": "81142" - } - }, - { - "pk": 13140, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LESCOUT", - "center": "POINT (581325.5116472829831764 1836758.1879030687268823)", - "surface": 6860000, - "canton": null, - "numero_insee": "81143" - } - }, - { - "pk": 21697, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LESCURE-D'ALBIGEOIS", - "center": "POINT (587529.5883528211852536 1884863.5217387222219259)", - "surface": 14520000, - "canton": null, - "numero_insee": "81144" - } - }, - { - "pk": 15334, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LISLE-SUR-TARN", - "center": "POINT (555356.9022414290811867 1877386.2402532545384020)", - "surface": 85780000, - "canton": null, - "numero_insee": "81145" - } - }, - { - "pk": 15075, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LIVERS-CAZELLES", - "center": "POINT (572935.1155204912647605 1894251.5807863662485033)", - "surface": 13250000, - "canton": null, - "numero_insee": "81146" - } - }, - { - "pk": 10715, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LOUBERS", - "center": "POINT (564436.5280195222003385 1892979.1333994800224900)", - "surface": 4230000, - "canton": null, - "numero_insee": "81148" - } - }, - { - "pk": 12239, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LOUPIAC", - "center": "POINT (555324.5973345084348693 1869277.0454097606707364)", - "surface": 10870000, - "canton": null, - "numero_insee": "81149" - } - }, - { - "pk": 23513, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LUGAN", - "center": "POINT (550002.6728860214352608 1859221.4716440509073436)", - "surface": 10110000, - "canton": null, - "numero_insee": "81150" - } - }, - { - "pk": 13271, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MAGRIN", - "center": "POINT (566331.8233723727753386 1845943.0771673275157809)", - "surface": 8040000, - "canton": null, - "numero_insee": "81151" - } - }, - { - "pk": 34667, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MAILHOC", - "center": "POINT (578783.7838995913043618 1889195.0207406016997993)", - "surface": 12820000, - "canton": null, - "numero_insee": "81152" - } - }, - { - "pk": 34648, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE MARGNES", - "center": "POINT (621258.3855860176263377 1850108.0341186723671854)", - "surface": 18130000, - "canton": null, - "numero_insee": "81153" - } - }, - { - "pk": 9485, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MARNAVES", - "center": "POINT (562680.3593061122810468 1899471.4919452313333750)", - "surface": 10300000, - "canton": null, - "numero_insee": "81154" - } - }, - { - "pk": 18277, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MARSAL", - "center": "POINT (595874.1975252542179078 1880628.8077640482224524)", - "surface": 8320000, - "canton": null, - "numero_insee": "81155" - } - }, - { - "pk": 16165, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MARSSAC-SUR-TARN", - "center": "POINT (575767.8250275871250778 1878758.3763300951104611)", - "surface": 7290000, - "canton": null, - "numero_insee": "81156" - } - }, - { - "pk": 3194, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MARZENS", - "center": "POINT (560088.4577819396508858 1850295.7651712105143815)", - "surface": 11310000, - "canton": null, - "numero_insee": "81157" - } - }, - { - "pk": 18008, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE MASNAU-MASSUGUIES", - "center": "POINT (616206.8342308872379363 1867484.9217510838061571)", - "surface": 47530000, - "canton": null, - "numero_insee": "81158" - } - }, - { - "pk": 24449, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MASSAC-SERAN", - "center": "POINT (561676.7353124974761158 1851910.8410202942322940)", - "surface": 8520000, - "canton": null, - "numero_insee": "81159" - } - }, - { - "pk": 5834, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MASSAGUEL", - "center": "POINT (586985.1556494076503441 1830398.3938249328639358)", - "surface": 10060000, - "canton": null, - "numero_insee": "81160" - } - }, - { - "pk": 19897, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MASSALS", - "center": "POINT (614759.1101272419327870 1872978.8266104015056044)", - "surface": 16210000, - "canton": null, - "numero_insee": "81161" - } - }, - { - "pk": 4462, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MAURENS-SCOPONT", - "center": "POINT (557638.5808839928358793 1843968.2121955668553710)", - "surface": 8570000, - "canton": null, - "numero_insee": "81162" - } - }, - { - "pk": 20749, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MAZAMET", - "center": "POINT (604121.8184750409564003 1828339.6914332923479378)", - "surface": 72840000, - "canton": null, - "numero_insee": "81163" - } - }, - { - "pk": 13337, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MEZENS", - "center": "POINT (545343.5190457457210869 1865689.7530156560242176)", - "surface": 5970000, - "canton": null, - "numero_insee": "81164" - } - }, - { - "pk": 17333, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MILHARS", - "center": "POINT (562955.5369029219727963 1902477.0391494652722031)", - "surface": 16460000, - "canton": null, - "numero_insee": "81165" - } - }, - { - "pk": 24637, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MILHAVET", - "center": "POINT (575153.2817393611185253 1892368.0923325836192816)", - "surface": 4430000, - "canton": null, - "numero_insee": "81166" - } - }, - { - "pk": 14603, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MIOLLES", - "center": "POINT (617143.0722487691091374 1875201.2886613397859037)", - "surface": 12110000, - "canton": null, - "numero_insee": "81167" - } - }, - { - "pk": 22206, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MIRANDOL-BOURGNOUNAC", - "center": "POINT (586660.1756466131191701 1904978.0624985266476870)", - "surface": 37990000, - "canton": null, - "numero_insee": "81168" - } - }, - { - "pk": 8170, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MISSECLE", - "center": "POINT (571740.3713334589265287 1857601.3186804188881069)", - "surface": 5810000, - "canton": null, - "numero_insee": "81169" - } - }, - { - "pk": 35131, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONESTIES", - "center": "POINT (580817.1395304511534050 1897420.9742588452063501)", - "surface": 27190000, - "canton": null, - "numero_insee": "81170" - } - }, - { - "pk": 18497, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTANS", - "center": "POINT (562108.1829249231377617 1872136.8738062065094709)", - "surface": 32600000, - "canton": null, - "numero_insee": "81171" - } - }, - { - "pk": 21184, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTAURIOL", - "center": "POINT (599234.1127964184852317 1897775.6494698859751225)", - "surface": 5270000, - "canton": null, - "numero_insee": "81172" - } - }, - { - "pk": 9696, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTCABRIER", - "center": "POINT (551407.7848515824880451 1846819.3700200903695077)", - "surface": 5470000, - "canton": null, - "numero_insee": "81173" - } - }, - { - "pk": 3898, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTDRAGON", - "center": "POINT (580499.2178840285632759 1863681.3555799182504416)", - "surface": 12220000, - "canton": null, - "numero_insee": "81174" - } - }, - { - "pk": 18539, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTDURAUSSE", - "center": "POINT (540287.9691114188171923 1883667.3423281600698829)", - "surface": 16150000, - "canton": null, - "numero_insee": "81175" - } - }, - { - "pk": 9053, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTELS", - "center": "POINT (563803.6624673940241337 1884865.0051591841038316)", - "surface": 3270000, - "canton": null, - "numero_insee": "81176" - } - }, - { - "pk": 35791, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTFA", - "center": "POINT (591280.8598109640879557 1855362.4068240846972913)", - "surface": 10740000, - "canton": null, - "numero_insee": "81177" - } - }, - { - "pk": 4384, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTGAILLARD", - "center": "POINT (541430.0594615549780428 1878771.5090420963242650)", - "surface": 15140000, - "canton": null, - "numero_insee": "81178" - } - }, - { - "pk": 4112, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTGEY", - "center": "POINT (568232.5989099610596895 1834145.7001932526472956)", - "surface": 9950000, - "canton": null, - "numero_insee": "81179" - } - }, - { - "pk": 23368, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTIRAT", - "center": "POINT (580442.1802594993496314 1906327.4528968627564609)", - "surface": 27630000, - "canton": null, - "numero_insee": "81180" - } - }, - { - "pk": 9761, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTPINIER", - "center": "POINT (588097.6633746832376346 1852933.0325956332962960)", - "surface": 7640000, - "canton": null, - "numero_insee": "81181" - } - }, - { - "pk": 20689, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTREDON-LABESSONNIE", - "center": "POINT (598666.7439427960198373 1858027.2740415262524039)", - "surface": 110870000, - "canton": null, - "numero_insee": "81182" - } - }, - { - "pk": 12926, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTROSIER", - "center": "POINT (560246.1100172429578379 1903255.2364782111253589)", - "surface": 3450000, - "canton": null, - "numero_insee": "81184" - } - }, - { - "pk": 37201, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MONTVALEN", - "center": "POINT (540076.2663552341982722 1873053.9339449703693390)", - "surface": 11990000, - "canton": null, - "numero_insee": "81185" - } - }, - { - "pk": 20739, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MOULARES", - "center": "POINT (595834.8665386923821643 1897246.5800846179481596)", - "surface": 16820000, - "canton": null, - "numero_insee": "81186" - } - }, - { - "pk": 7205, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MOULAYRES", - "center": "POINT (574758.5925435826648027 1855824.5901405033655465)", - "surface": 8850000, - "canton": null, - "numero_insee": "81187" - } - }, - { - "pk": 24083, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MOULIN-MAGE", - "center": "POINT (635410.8961840698029846 1857635.3832723868545145)", - "surface": 15250000, - "canton": null, - "numero_insee": "81188" - } - }, - { - "pk": 13977, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MOUZENS", - "center": "POINT (563806.1545137949287891 1836711.5894373168703169)", - "surface": 4900000, - "canton": null, - "numero_insee": "81189" - } - }, - { - "pk": 19351, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MOUZIEYS-TEULET", - "center": "POINT (594819.2627479477087036 1875113.9139348359312862)", - "surface": 13260000, - "canton": null, - "numero_insee": "81190" - } - }, - { - "pk": 22301, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "MURAT-SUR-VEBRE", - "center": "POINT (642243.2863845089450479 1854689.5835927915759385)", - "surface": 94430000, - "canton": null, - "numero_insee": "81192" - } - }, - { - "pk": 23850, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "NAGES", - "center": "POINT (634971.0584124939050525 1850423.6432221636641771)", - "surface": 50130000, - "canton": null, - "numero_insee": "81193" - } - }, - { - "pk": 35829, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "NAVES", - "center": "POINT (590406.5933367674006149 1840238.1549784643575549)", - "surface": 9790000, - "canton": null, - "numero_insee": "81195" - } - }, - { - "pk": 20139, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "NOAILHAC", - "center": "POINT (601408.1182863955618814 1841531.8209232920780778)", - "surface": 20860000, - "canton": null, - "numero_insee": "81196" - } - }, - { - "pk": 32187, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "NOAILLES", - "center": "POINT (572168.6695387052604929 1890140.7015722366049886)", - "surface": 11560000, - "canton": null, - "numero_insee": "81197" - } - }, - { - "pk": 21564, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ORBAN", - "center": "POINT (579139.9933504537912086 1870577.6000379335600883)", - "surface": 8900000, - "canton": null, - "numero_insee": "81198" - } - }, - { - "pk": 4394, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PADIES", - "center": "POINT (602171.5088618118315935 1893695.8568225500639528)", - "surface": 14880000, - "canton": null, - "numero_insee": "81199" - } - }, - { - "pk": 30586, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PALLEVILLE", - "center": "POINT (572341.9751232725102454 1833579.4280570291448385)", - "surface": 6450000, - "canton": null, - "numero_insee": "81200" - } - }, - { - "pk": 22374, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PAMPELONNE", - "center": "POINT (592395.3121313670417294 1901522.3794232525397092)", - "surface": 35560000, - "canton": null, - "numero_insee": "81201" - } - }, - { - "pk": 17992, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PARISOT", - "center": "POINT (559647.4680157649563625 1867110.7658773311413825)", - "surface": 28710000, - "canton": null, - "numero_insee": "81202" - } - }, - { - "pk": 23073, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PAULINET", - "center": "POINT (608262.4954732824116945 1871722.9158770700450987)", - "surface": 73480000, - "canton": null, - "numero_insee": "81203" - } - }, - { - "pk": 3622, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PAYRIN-AUGMONTEL", - "center": "POINT (600642.5690835312707350 1837320.6625887972768396)", - "surface": 12730000, - "canton": null, - "numero_insee": "81204" - } - }, - { - "pk": 32101, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PECHAUDIER", - "center": "POINT (568400.1285456065088511 1838051.5053180635441095)", - "surface": 6810000, - "canton": null, - "numero_insee": "81205" - } - }, - { - "pk": 21217, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PENNE", - "center": "POINT (550678.2462824134854600 1898169.8263044303748757)", - "surface": 63840000, - "canton": null, - "numero_insee": "81206" - } - }, - { - "pk": 27731, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PEYREGOUX", - "center": "POINT (588477.9351093466393650 1855338.8994339678902179)", - "surface": 4520000, - "canton": null, - "numero_insee": "81207" - } - }, - { - "pk": 4876, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PEYROLE", - "center": "POINT (564545.0063646195922047 1868052.7364641469903290)", - "surface": 20170000, - "canton": null, - "numero_insee": "81208" - } - }, - { - "pk": 32791, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "POUDIS", - "center": "POINT (571222.3678119983524084 1835772.5386790933553129)", - "surface": 4650000, - "canton": null, - "numero_insee": "81210" - } - }, - { - "pk": 3410, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "POULAN-POUZOLS", - "center": "POINT (581523.1784977862844244 1872900.1074334695003927)", - "surface": 11930000, - "canton": null, - "numero_insee": "81211" - } - }, - { - "pk": 28531, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PRADES", - "center": "POINT (570439.4873887802241370 1845577.0143604653421789)", - "surface": 5170000, - "canton": null, - "numero_insee": "81212" - } - }, - { - "pk": 12573, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PRATVIEL", - "center": "POINT (563406.1575086117954925 1848621.6195165147073567)", - "surface": 7130000, - "canton": null, - "numero_insee": "81213" - } - }, - { - "pk": 28814, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PUECHOURSI", - "center": "POINT (565224.3917279818560928 1834721.1994894579984248)", - "surface": 3660000, - "canton": null, - "numero_insee": "81214" - } - }, - { - "pk": 21474, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PUYBEGON", - "center": "POINT (564475.8972988937748596 1864348.0621754075400531)", - "surface": 19580000, - "canton": null, - "numero_insee": "81215" - } - }, - { - "pk": 18053, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PUYCALVEL", - "center": "POINT (578481.7470439326716587 1853553.2139491694979370)", - "surface": 12290000, - "canton": null, - "numero_insee": "81216" - } - }, - { - "pk": 15622, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PUYCELSI", - "center": "POINT (549376.3767661156598479 1886245.9982973821461201)", - "surface": 39550000, - "canton": null, - "numero_insee": "81217" - } - }, - { - "pk": 37314, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PUYGOUZON", - "center": "POINT (586500.6409710311563686 1876245.4637254448607564)", - "surface": 12900000, - "canton": null, - "numero_insee": "81218" - } - }, - { - "pk": 18171, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "PUYLAURENS", - "center": "POINT (574070.9414075542008504 1842303.7174852106254548)", - "surface": 82040000, - "canton": null, - "numero_insee": "81219" - } - }, - { - "pk": 16528, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "RABASTENS", - "center": "POINT (549895.5838984161382541 1872034.7518101511523128)", - "surface": 66580000, - "canton": null, - "numero_insee": "81220" - } - }, - { - "pk": 4219, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "RAYSSAC", - "center": "POINT (607002.3516638529254124 1866806.9170051913242787)", - "surface": 30120000, - "canton": null, - "numero_insee": "81221" - } - }, - { - "pk": 13537, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "REALMONT", - "center": "POINT (588102.9134253358934075 1864245.6490975786000490)", - "surface": 14450000, - "canton": null, - "numero_insee": "81222" - } - }, - { - "pk": 33737, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE RIALET", - "center": "POINT (610834.8514979025349021 1839608.7401838130317628)", - "surface": 7540000, - "canton": null, - "numero_insee": "81223" - } - }, - { - "pk": 12443, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE RIOLS", - "center": "POINT (566231.2245611427351832 1905808.0121180145069957)", - "surface": 5020000, - "canton": null, - "numero_insee": "81224" - } - }, - { - "pk": 26815, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "RIVIERES", - "center": "POINT (570456.5116493545938283 1879414.6653334617149085)", - "surface": 9690000, - "canton": null, - "numero_insee": "81225" - } - }, - { - "pk": 5329, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "RONEL", - "center": "POINT (589977.1806398980552331 1867565.0209341037552804)", - "surface": 9960000, - "canton": null, - "numero_insee": "81226" - } - }, - { - "pk": 14445, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROQUECOURBE", - "center": "POINT (595210.9713783477200195 1852291.9173695482313633)", - "surface": 16550000, - "canton": null, - "numero_insee": "81227" - } - }, - { - "pk": 18537, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROQUEMAURE", - "center": "POINT (542009.9972573864506558 1869265.8897968288511038)", - "surface": 15980000, - "canton": null, - "numero_insee": "81228" - } - }, - { - "pk": 37185, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROQUEVIDAL", - "center": "POINT (561519.2379881591768935 1846803.8150835118722171)", - "surface": 7690000, - "canton": null, - "numero_insee": "81229" - } - }, - { - "pk": 16954, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROSIERES", - "center": "POINT (588760.4052061381516978 1893283.0017598140984774)", - "surface": 10460000, - "canton": null, - "numero_insee": "81230" - } - }, - { - "pk": 27284, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROUAIROUX", - "center": "POINT (618602.7378079468617216 1832566.0109821769874543)", - "surface": 28630000, - "canton": null, - "numero_insee": "81231" - } - }, - { - "pk": 13141, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROUFFIAC", - "center": "POINT (578596.7021965252934024 1875678.6681332727894187)", - "surface": 11280000, - "canton": null, - "numero_insee": "81232" - } - }, - { - "pk": 3345, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROUMEGOUX", - "center": "POINT (594082.2665081218583509 1867499.3448995701037347)", - "surface": 13540000, - "canton": null, - "numero_insee": "81233" - } - }, - { - "pk": 13539, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "ROUSSAYROLLES", - "center": "POINT (559078.3882805557223037 1899241.1434062365442514)", - "surface": 5370000, - "canton": null, - "numero_insee": "81234" - } - }, - { - "pk": 7919, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-AFFRIQUE-LES-MONTAGNES", - "center": "POINT (589038.6956910227891058 1836222.1732596852816641)", - "surface": 7960000, - "canton": null, - "numero_insee": "81235" - } - }, - { - "pk": 29146, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-AGNAN", - "center": "POINT (551839.6934915051097050 1855032.1490174350328743)", - "surface": 6990000, - "canton": null, - "numero_insee": "81236" - } - }, - { - "pk": 28309, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-AMANCET", - "center": "POINT (581490.2172615111339837 1829050.8576991627924144)", - "surface": 12130000, - "canton": null, - "numero_insee": "81237" - } - }, - { - "pk": 19120, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-AMANS-SOULT", - "center": "POINT (611323.5912623988697305 1829100.9782918505370617)", - "surface": 25340000, - "canton": null, - "numero_insee": "81238" - } - }, - { - "pk": 18191, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-AMANS-VALTORET", - "center": "POINT (613287.0198108478216454 1833722.6863441104069352)", - "surface": 35690000, - "canton": null, - "numero_insee": "81239" - } - }, - { - "pk": 22519, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-ANDRE", - "center": "POINT (609684.9920994428684935 1881145.2029274343512952)", - "surface": 7290000, - "canton": null, - "numero_insee": "81240" - } - }, - { - "pk": 22638, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-ANTONIN-DE-LACALM", - "center": "POINT (596610.8965393982362002 1864417.1293026760686189)", - "surface": 28470000, - "canton": null, - "numero_insee": "81241" - } - }, - { - "pk": 24828, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-AVIT", - "center": "POINT (582242.4051710497587919 1834863.7269597183912992)", - "surface": 4800000, - "canton": null, - "numero_insee": "81242" - } - }, - { - "pk": 18097, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-BEAUZILE", - "center": "POINT (558239.4293551240116358 1891826.0930974353104830)", - "surface": 9390000, - "canton": null, - "numero_insee": "81243" - } - }, - { - "pk": 12858, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-BENOIT-DE-CARMAUX", - "center": "POINT (583342.3282529342686757 1894739.2075798101723194)", - "surface": 4540000, - "canton": null, - "numero_insee": "81244" - } - }, - { - "pk": 23327, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (576443.1816430593607947 1905693.3015686923172325)", - "surface": 14380000, - "canton": null, - "numero_insee": "81245" - } - }, - { - "pk": 9764, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINTE-CECILE-DU-CAYROU", - "center": "POINT (557361.9528624977683648 1889015.7044270099140704)", - "surface": 8090000, - "canton": null, - "numero_insee": "81246" - } - }, - { - "pk": 21227, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-CIRGUE", - "center": "POINT (602741.7751320956740528 1885391.5969203831627965)", - "surface": 18780000, - "canton": null, - "numero_insee": "81247" - } - }, - { - "pk": 15567, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-GAUZENS", - "center": "POINT (563209.7268150924937800 1860132.8055470748804510)", - "surface": 18570000, - "canton": null, - "numero_insee": "81248" - } - }, - { - "pk": 20848, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINTE-GEMME", - "center": "POINT (588715.9153408220736310 1898588.3810652415268123)", - "surface": 20090000, - "canton": null, - "numero_insee": "81249" - } - }, - { - "pk": 36946, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-GENEST-DE-CONTEST", - "center": "POINT (584616.0632394179701805 1862214.1963471705093980)", - "surface": 13670000, - "canton": null, - "numero_insee": "81250" - } - }, - { - "pk": 3376, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-GERMAIN-DES-PRES", - "center": "POINT (578995.3983474995475262 1840042.3821022119373083)", - "surface": 17170000, - "canton": null, - "numero_insee": "81251" - } - }, - { - "pk": 8405, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-GERMIER", - "center": "POINT (591402.7954400324961171 1852760.5282179913483560)", - "surface": 4200000, - "canton": null, - "numero_insee": "81252" - } - }, - { - "pk": 18889, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-GREGOIRE", - "center": "POINT (593846.1110209558391944 1883715.1873755641281605)", - "surface": 12780000, - "canton": null, - "numero_insee": "81253" - } - }, - { - "pk": 35065, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-JEAN-DE-RIVES", - "center": "POINT (553905.9002038058824837 1859354.2105465263593942)", - "surface": 6050000, - "canton": null, - "numero_insee": "81255" - } - }, - { - "pk": 27836, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-JEAN-DE-VALS", - "center": "POINT (593495.7549018288264051 1853879.3133373144082725)", - "surface": 4720000, - "canton": null, - "numero_insee": "81256" - } - }, - { - "pk": 15785, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-JUERY", - "center": "POINT (591058.3572487479541451 1881889.8312194966711104)", - "surface": 9280000, - "canton": null, - "numero_insee": "81257" - } - }, - { - "pk": 16401, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-JULIEN-DU-PUY", - "center": "POINT (579319.7797290947055444 1861068.5869590027723461)", - "surface": 19330000, - "canton": null, - "numero_insee": "81258" - } - }, - { - "pk": 4100, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-JULIEN-GAULENE", - "center": "POINT (600415.0547426611883566 1888275.2306353277526796)", - "surface": 11850000, - "canton": null, - "numero_insee": "81259" - } - }, - { - "pk": 24448, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-LIEUX-LES-LAVAUR", - "center": "POINT (552485.1944104854483157 1861644.8890581896994263)", - "surface": 9500000, - "canton": null, - "numero_insee": "81261" - } - }, - { - "pk": 15569, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-MARCEL-CAMPES", - "center": "POINT (573103.4638353931950405 1898057.1141755208373070)", - "surface": 22570000, - "canton": null, - "numero_insee": "81262" - } - }, - { - "pk": 22958, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-MARTIN-LAGUEPIE", - "center": "POINT (569852.4518303606892005 1903736.0585052003152668)", - "surface": 21940000, - "canton": null, - "numero_insee": "81263" - } - }, - { - "pk": 21585, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-MICHEL-LABADIE", - "center": "POINT (607312.8467690728139132 1889434.3501548951026052)", - "surface": 9790000, - "canton": null, - "numero_insee": "81264" - } - }, - { - "pk": 30369, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-MICHEL-DE-VAX", - "center": "POINT (557462.5363847806584090 1900929.4690759936347604)", - "surface": 5970000, - "canton": null, - "numero_insee": "81265" - } - }, - { - "pk": 15195, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-PAUL-CAP-DE-JOUX", - "center": "POINT (571919.2705187166575342 1848192.3196631879545748)", - "surface": 17180000, - "canton": null, - "numero_insee": "81266" - } - }, - { - "pk": 15718, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-PIERRE-DE-TRIVISY", - "center": "POINT (608750.3632686830824241 1861315.5020197757985443)", - "surface": 35990000, - "canton": null, - "numero_insee": "81267" - } - }, - { - "pk": 5662, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-SALVI-DE-CARCAVES", - "center": "POINT (620822.5408175957854837 1866222.2897534985095263)", - "surface": 10970000, - "canton": null, - "numero_insee": "81268" - } - }, - { - "pk": 17469, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-SALVY-DE-LA-BALME", - "center": "POINT (603477.5513065042905509 1845453.5778300142847002)", - "surface": 18850000, - "canton": null, - "numero_insee": "81269" - } - }, - { - "pk": 24029, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-SERNIN-LES-LAVAUR", - "center": "POINT (570503.1870120300445706 1837968.9993275552988052)", - "surface": 4270000, - "canton": null, - "numero_insee": "81270" - } - }, - { - "pk": 33468, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-SULPICE", - "center": "POINT (547575.9141106905881315 1862104.4136430642101914)", - "surface": 24080000, - "canton": null, - "numero_insee": "81271" - } - }, - { - "pk": 26851, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINT-URCISSE", - "center": "POINT (541306.5491182806435972 1881573.5487294928170741)", - "surface": 12030000, - "canton": null, - "numero_insee": "81272" - } - }, - { - "pk": 25475, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAIX", - "center": "POINT (586484.0117949803825468 1842407.7366126112174243)", - "surface": 13710000, - "canton": null, - "numero_insee": "81273" - } - }, - { - "pk": 7921, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SALIES", - "center": "POINT (583599.3339491076767445 1876020.9216239713132381)", - "surface": 3630000, - "canton": null, - "numero_insee": "81274" - } - }, - { - "pk": 19741, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SALLES", - "center": "POINT (576415.1936922377208248 1897083.7676978064700961)", - "surface": 8230000, - "canton": null, - "numero_insee": "81275" - } - }, - { - "pk": 15624, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SALVAGNAC", - "center": "POINT (547125.8819644601317123 1880020.4055500086396933)", - "surface": 33550000, - "canton": null, - "numero_insee": "81276" - } - }, - { - "pk": 16301, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAUVETERRE", - "center": "POINT (618040.8153056324226782 1827956.0733550966251642)", - "surface": 12490000, - "canton": null, - "numero_insee": "81278" - } - }, - { - "pk": 18282, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE SEGUR", - "center": "POINT (577986.6252772097941488 1900700.8315103971399367)", - "surface": 18910000, - "canton": null, - "numero_insee": "81280" - } - }, - { - "pk": 20761, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SEMALENS", - "center": "POINT (581564.5849022073671222 1844068.4097981776576489)", - "surface": 11090000, - "canton": null, - "numero_insee": "81281" - } - }, - { - "pk": 32109, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SENAUX", - "center": "POINT (622453.6660205449443310 1862732.1274534689728171)", - "surface": 4760000, - "canton": null, - "numero_insee": "81282" - } - }, - { - "pk": 6026, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SENOUILLAC", - "center": "POINT (569025.7433499892940745 1882906.5233560581691563)", - "surface": 15150000, - "canton": null, - "numero_insee": "81283" - } - }, - { - "pk": 11109, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE SEQUESTRE", - "center": "POINT (581474.5210912249749526 1878706.0799246015958488)", - "surface": 5550000, - "canton": null, - "numero_insee": "81284" - } - }, - { - "pk": 4806, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SERVIES", - "center": "POINT (575395.2745030054356903 1851525.1235443167388439)", - "surface": 12940000, - "canton": null, - "numero_insee": "81286" - } - }, - { - "pk": 30587, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SIEURAC", - "center": "POINT (579865.8810490008909255 1867580.3675247584469616)", - "surface": 8840000, - "canton": null, - "numero_insee": "81287" - } - }, - { - "pk": 31650, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SOREZE", - "center": "POINT (579208.7407127436017618 1826528.9017765149474144)", - "surface": 41830000, - "canton": null, - "numero_insee": "81288" - } - }, - { - "pk": 17989, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SOUAL", - "center": "POINT (583110.6347386745037511 1838775.4048617412336171)", - "surface": 14020000, - "canton": null, - "numero_insee": "81289" - } - }, - { - "pk": 11428, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SOUEL", - "center": "POINT (569945.4754078167025000 1892624.8086055917665362)", - "surface": 9660000, - "canton": null, - "numero_insee": "81290" - } - }, - { - "pk": 7190, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TAIX", - "center": "POINT (582583.4647046097088605 1889727.4068599813617766)", - "surface": 4860000, - "canton": null, - "numero_insee": "81291" - } - }, - { - "pk": 4351, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TANUS", - "center": "POINT (597508.0277368365786970 1900664.3033866283949465)", - "surface": 18850000, - "canton": null, - "numero_insee": "81292" - } - }, - { - "pk": 4591, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TAURIAC", - "center": "POINT (540155.4718795191729441 1875557.3481613970361650)", - "surface": 10180000, - "canton": null, - "numero_insee": "81293" - } - }, - { - "pk": 16756, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TECOU", - "center": "POINT (567621.4031463690334931 1871282.0183614590205252)", - "surface": 19510000, - "canton": null, - "numero_insee": "81294" - } - }, - { - "pk": 16156, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TEILLET", - "center": "POINT (600757.2725121809635311 1871359.5608950769528747)", - "surface": 24350000, - "canton": null, - "numero_insee": "81295" - } - }, - { - "pk": 20658, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TERRE-CLAPIER", - "center": "POINT (597049.2507867129752412 1871828.9900601957924664)", - "surface": 12200000, - "canton": null, - "numero_insee": "81296" - } - }, - { - "pk": 11232, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TERSSAC", - "center": "POINT (578459.6964837224222720 1880082.3537441722583026)", - "surface": 5500000, - "canton": null, - "numero_insee": "81297" - } - }, - { - "pk": 3739, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TEULAT", - "center": "POINT (549392.2966564453672618 1848404.3172131327446550)", - "surface": 10140000, - "canton": null, - "numero_insee": "81298" - } - }, - { - "pk": 15566, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TEYSSODE", - "center": "POINT (566703.7562945178942755 1849349.9999297438189387)", - "surface": 22940000, - "canton": null, - "numero_insee": "81299" - } - }, - { - "pk": 14922, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TONNAC", - "center": "POINT (561201.4505054105538875 1896756.1930887561757118)", - "surface": 11260000, - "canton": null, - "numero_insee": "81300" - } - }, - { - "pk": 4691, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE TRAVET", - "center": "POINT (599187.5481866850750521 1867542.1865037842653692)", - "surface": 8410000, - "canton": null, - "numero_insee": "81301" - } - }, - { - "pk": 36948, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TREBAN", - "center": "POINT (600626.2883929396048188 1898888.5273836764972657)", - "surface": 3130000, - "canton": null, - "numero_insee": "81302" - } - }, - { - "pk": 32434, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TREBAS", - "center": "POINT (612166.5271743920166045 1883668.7912408008705825)", - "surface": 5720000, - "canton": null, - "numero_insee": "81303" - } - }, - { - "pk": 17434, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "TREVIEN", - "center": "POINT (582591.2782423800090328 1900739.4166997710708529)", - "surface": 16180000, - "canton": null, - "numero_insee": "81304" - } - }, - { - "pk": 23332, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VABRE", - "center": "POINT (606993.8938259980641305 1855894.7394949831068516)", - "surface": 28480000, - "canton": null, - "numero_insee": "81305" - } - }, - { - "pk": 3713, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VALDERIES", - "center": "POINT (591584.2434670678339899 1890803.9643752425909042)", - "surface": 20750000, - "canton": null, - "numero_insee": "81306" - } - }, - { - "pk": 11246, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VALDURENQUE", - "center": "POINT (597908.6282318377634510 1841001.8840770327951759)", - "surface": 5980000, - "canton": null, - "numero_insee": "81307" - } - }, - { - "pk": 16758, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VAOUR", - "center": "POINT (557098.1275152541929856 1896621.7637433505151421)", - "surface": 14120000, - "canton": null, - "numero_insee": "81309" - } - }, - { - "pk": 28270, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VEILHES", - "center": "POINT (558019.7454769151518121 1846273.9814688081387430)", - "surface": 5670000, - "canton": null, - "numero_insee": "81310" - } - }, - { - "pk": 4310, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VENES", - "center": "POINT (588543.6220342596061528 1859444.0155441847164184)", - "surface": 27440000, - "canton": null, - "numero_insee": "81311" - } - }, - { - "pk": 21361, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VERDALLE", - "center": "POINT (587266.1686815607827157 1832703.3542107730172575)", - "surface": 24260000, - "canton": null, - "numero_insee": "81312" - } - }, - { - "pk": 9457, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE VERDIER", - "center": "POINT (559972.1416736263781786 1888136.5540664996951818)", - "surface": 9630000, - "canton": null, - "numero_insee": "81313" - } - }, - { - "pk": 27645, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VIELMUR-SUR-AGOUT", - "center": "POINT (580937.1081082497257739 1847266.7415671967901289)", - "surface": 11720000, - "canton": null, - "numero_insee": "81315" - } - }, - { - "pk": 30805, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VIEUX", - "center": "POINT (562172.7127083685481921 1888355.1813926324248314)", - "surface": 6930000, - "canton": null, - "numero_insee": "81316" - } - }, - { - "pk": 15938, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VILLEFRANCHE-D'ALBIGEOIS", - "center": "POINT (598809.9400989677524194 1876749.1626794554758817)", - "surface": 22010000, - "canton": null, - "numero_insee": "81317" - } - }, - { - "pk": 26037, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VILLENEUVE-LES-LAVAUR", - "center": "POINT (555231.8680757125839591 1844448.6475393180735409)", - "surface": 6200000, - "canton": null, - "numero_insee": "81318" - } - }, - { - "pk": 17332, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VILLENEUVE-SUR-VERE", - "center": "POINT (575377.8005540654994547 1889466.8148230661172420)", - "surface": 16000000, - "canton": null, - "numero_insee": "81319" - } - }, - { - "pk": 9589, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VINDRAC-ALAYRAC", - "center": "POINT (565117.1352269991766661 1895387.4367294278927147)", - "surface": 9770000, - "canton": null, - "numero_insee": "81320" - } - }, - { - "pk": 31053, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "LE VINTROU", - "center": "POINT (611060.2956427444005385 1836607.2515822497662157)", - "surface": 11380000, - "canton": null, - "numero_insee": "81321" - } - }, - { - "pk": 34608, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VIRAC", - "center": "POINT (577246.1942965704947710 1893486.8201986122876406)", - "surface": 11480000, - "canton": null, - "numero_insee": "81322" - } - }, - { - "pk": 27234, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VITERBE", - "center": "POINT (565972.8604866755194962 1852947.9072812860831618)", - "surface": 6580000, - "canton": null, - "numero_insee": "81323" - } - }, - { - "pk": 12442, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VIVIERS-LES-LAVAUR", - "center": "POINT (555904.9810187004040927 1847757.9774133991450071)", - "surface": 10000000, - "canton": null, - "numero_insee": "81324" - } - }, - { - "pk": 19233, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "VIVIERS-LES-MONTAGNES", - "center": "POINT (586916.3285334813408554 1838607.0835360339842737)", - "surface": 18090000, - "canton": null, - "numero_insee": "81325" - } - }, - { - "pk": 25768, - "model": "ishtar_common.town", - "fields": { - "departement": 82, - "name": "SAINTE-CROIX", - "center": "POINT (578715.5527040685992688 1885390.3007984447758645)", - "surface": 7230000, - "canton": null, - "numero_insee": "81326" - } - }, - { - "pk": 4906, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ALBEFEUILLE-LAGARDE", - "center": "POINT (514668.4272949283476919 1894665.8592576887458563)", - "surface": 8090000, - "canton": null, - "numero_insee": "82001" - } - }, - { - "pk": 21087, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ALBIAS", - "center": "POINT (528754.3709210439119488 1898186.9799401573836803)", - "surface": 21710000, - "canton": null, - "numero_insee": "82002" - } - }, - { - "pk": 36766, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ANGEVILLE", - "center": "POINT (495095.1175496033392847 1888896.8246413546148688)", - "surface": 8350000, - "canton": null, - "numero_insee": "82003" - } - }, - { - "pk": 4295, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ASQUES", - "center": "POINT (489074.0098833779338747 1890648.7198933709878474)", - "surface": 10590000, - "canton": null, - "numero_insee": "82004" - } - }, - { - "pk": 17674, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "AUCAMVILLE", - "center": "POINT (510397.2922124287579209 1866599.5745383356697857)", - "surface": 22980000, - "canton": null, - "numero_insee": "82005" - } - }, - { - "pk": 29866, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "AUTERIVE", - "center": "POINT (490017.1374956371728331 1873537.8241269341669977)", - "surface": 3680000, - "canton": null, - "numero_insee": "82006" - } - }, - { - "pk": 13981, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "AUTY", - "center": "POINT (530556.9129287651740015 1910114.8617647814098746)", - "surface": 7400000, - "canton": null, - "numero_insee": "82007" - } - }, - { - "pk": 23466, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "AUVILLAR", - "center": "POINT (483722.0239399346755818 1896210.3290949196089059)", - "surface": 15610000, - "canton": null, - "numero_insee": "82008" - } - }, - { - "pk": 12088, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BALIGNAC", - "center": "POINT (482514.6810990792582743 1884887.9854914636816829)", - "surface": 4080000, - "canton": null, - "numero_insee": "82009" - } - }, - { - "pk": 34701, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BARDIGUES", - "center": "POINT (483948.8437015305971727 1893008.7366528117563576)", - "surface": 11740000, - "canton": null, - "numero_insee": "82010" - } - }, - { - "pk": 10221, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BARRY-D'ISLEMADE", - "center": "POINT (513044.2852185711381026 1897355.2589237159118056)", - "surface": 11310000, - "canton": null, - "numero_insee": "82011" - } - }, - { - "pk": 6192, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LES BARTHES", - "center": "POINT (506619.4542080522514880 1899504.1363434717059135)", - "surface": 8230000, - "canton": null, - "numero_insee": "82012" - } - }, - { - "pk": 36300, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BEAUMONT-DE-LOMAGNE", - "center": "POINT (493301.3980464287451468 1875867.6656378137413412)", - "surface": 46490000, - "canton": null, - "numero_insee": "82013" - } - }, - { - "pk": 11370, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BEAUPUY", - "center": "POINT (501665.7719333302229643 1869229.8647217266261578)", - "surface": 11940000, - "canton": null, - "numero_insee": "82014" - } - }, - { - "pk": 9468, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BELBESE", - "center": "POINT (498080.5284863219130784 1879010.8256182412151247)", - "surface": 3690000, - "canton": null, - "numero_insee": "82015" - } - }, - { - "pk": 18540, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BELVEZE", - "center": "POINT (500493.5755937448120676 1925881.4810932604596019)", - "surface": 13890000, - "canton": null, - "numero_insee": "82016" - } - }, - { - "pk": 14280, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BESSENS", - "center": "POINT (514217.1015008787508123 1876742.5361469311174005)", - "surface": 9600000, - "canton": null, - "numero_insee": "82017" - } - }, - { - "pk": 21826, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BIOULE", - "center": "POINT (536347.0361962585011497 1900052.2878241371363401)", - "surface": 20470000, - "canton": null, - "numero_insee": "82018" - } - }, - { - "pk": 6884, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BOUDOU", - "center": "POINT (494092.6318627850268967 1901101.7389364051632583)", - "surface": 12490000, - "canton": null, - "numero_insee": "82019" - } - }, - { - "pk": 20028, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BOUILLAC", - "center": "POINT (501639.1125360867008567 1872433.1750973141752183)", - "surface": 30390000, - "canton": null, - "numero_insee": "82020" - } - }, - { - "pk": 16211, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BOULOC", - "center": "POINT (503121.9869120107614435 1922800.0539997066371143)", - "surface": 14780000, - "canton": null, - "numero_insee": "82021" - } - }, - { - "pk": 21212, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BOURG-DE-VISA", - "center": "POINT (489150.4713759244186804 1917578.3965349711943418)", - "surface": 14450000, - "canton": null, - "numero_insee": "82022" - } - }, - { - "pk": 4967, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BOURRET", - "center": "POINT (505054.3944146026042290 1883073.2494763080030680)", - "surface": 16530000, - "canton": null, - "numero_insee": "82023" - } - }, - { - "pk": 20774, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BRASSAC", - "center": "POINT (491280.0369641258730553 1914292.5666391737759113)", - "surface": 20260000, - "canton": null, - "numero_insee": "82024" - } - }, - { - "pk": 3900, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BRESSOLS", - "center": "POINT (517959.2783217659452930 1884181.8348904435988516)", - "surface": 20370000, - "canton": null, - "numero_insee": "82025" - } - }, - { - "pk": 19683, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "BRUNIQUEL", - "center": "POINT (545701.6109698171494529 1894724.5520034467335790)", - "surface": 33190000, - "canton": null, - "numero_insee": "82026" - } - }, - { - "pk": 24072, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CAMPSAS", - "center": "POINT (518922.7762793196015991 1876681.6397676211781800)", - "surface": 15150000, - "canton": null, - "numero_insee": "82027" - } - }, - { - "pk": 25042, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CANALS", - "center": "POINT (516444.3925629413570277 1873757.7931680269539356)", - "surface": 7430000, - "canton": null, - "numero_insee": "82028" - } - }, - { - "pk": 20232, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CASTANET", - "center": "POINT (567432.8297438421286643 1917730.8462483407929540)", - "surface": 22200000, - "canton": null, - "numero_insee": "82029" - } - }, - { - "pk": 25271, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CASTELFERRUS", - "center": "POINT (499990.9597061880049296 1890038.7534870428498834)", - "surface": 8360000, - "canton": null, - "numero_insee": "82030" - } - }, - { - "pk": 22084, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CASTELMAYRAN", - "center": "POINT (496470.7340626084478572 1892011.6444874457083642)", - "surface": 15960000, - "canton": null, - "numero_insee": "82031" - } - }, - { - "pk": 34946, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CASTELSAGRAT", - "center": "POINT (489820.1405865066917613 1909275.0595579864457250)", - "surface": 22660000, - "canton": null, - "numero_insee": "82032" - } - }, - { - "pk": 25607, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CASTELSARRASIN", - "center": "POINT (502653.7241854615276679 1894866.1354496469721198)", - "surface": 76790000, - "canton": null, - "numero_insee": "82033" - } - }, - { - "pk": 25268, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LE CAUSE", - "center": "POINT (490066.2408740202081390 1867631.7182334302924573)", - "surface": 9400000, - "canton": null, - "numero_insee": "82036" - } - }, - { - "pk": 17379, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CAUSSADE", - "center": "POINT (536494.5959409866482019 1906360.3236143428366631)", - "surface": 45950000, - "canton": null, - "numero_insee": "82037" - } - }, - { - "pk": 23027, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CAYLUS", - "center": "POINT (553333.8022536893840879 1915810.9825559705495834)", - "surface": 97690000, - "canton": null, - "numero_insee": "82038" - } - }, - { - "pk": 10471, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CAYRAC", - "center": "POINT (531930.8870645505376160 1901416.9459000295028090)", - "surface": 6210000, - "canton": null, - "numero_insee": "82039" - } - }, - { - "pk": 6409, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CAYRIECH", - "center": "POINT (541445.2983304634690285 1912908.6478823614306748)", - "surface": 7810000, - "canton": null, - "numero_insee": "82040" - } - }, - { - "pk": 10977, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CAZALS", - "center": "POINT (547736.8308083196170628 1902750.2224591753911227)", - "surface": 11410000, - "canton": null, - "numero_insee": "82041" - } - }, - { - "pk": 19178, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CAZES-MONDENARD", - "center": "POINT (510211.4918557837372646 1912948.4910844669211656)", - "surface": 58310000, - "canton": null, - "numero_insee": "82042" - } - }, - { - "pk": 3378, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "COMBEROUGER", - "center": "POINT (499914.0325980131747201 1875221.9039823911152780)", - "surface": 12380000, - "canton": null, - "numero_insee": "82043" - } - }, - { - "pk": 5701, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CORBARIEU", - "center": "POINT (523177.9595540113514289 1882623.5870295311324298)", - "surface": 13150000, - "canton": null, - "numero_insee": "82044" - } - }, - { - "pk": 20825, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CORDES-TOLOSANNES", - "center": "POINT (503522.0271294070989825 1886764.5398079969454557)", - "surface": 15550000, - "canton": null, - "numero_insee": "82045" - } - }, - { - "pk": 28128, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "COUTURES", - "center": "POINT (491622.3391060398425907 1885163.9037072011269629)", - "surface": 6940000, - "canton": null, - "numero_insee": "82046" - } - }, - { - "pk": 5793, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "CUMONT", - "center": "POINT (484596.5869996144901961 1875294.7511165160685778)", - "surface": 7430000, - "canton": null, - "numero_insee": "82047" - } - }, - { - "pk": 28066, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "DIEUPENTALE", - "center": "POINT (514835.2346692464197986 1874645.3758588808123022)", - "surface": 6150000, - "canton": null, - "numero_insee": "82048" - } - }, - { - "pk": 6774, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "DONZAC", - "center": "POINT (477973.8331777885323390 1901268.1059136420954019)", - "surface": 13320000, - "canton": null, - "numero_insee": "82049" - } - }, - { - "pk": 22716, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "DUNES", - "center": "POINT (474684.6193581279949285 1899538.9536193814128637)", - "surface": 23150000, - "canton": null, - "numero_insee": "82050" - } - }, - { - "pk": 31872, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "DURFORT-LACAPELETTE", - "center": "POINT (504331.4006670362432487 1909796.2032720902934670)", - "surface": 35560000, - "canton": null, - "numero_insee": "82051" - } - }, - { - "pk": 21825, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ESCATALENS", - "center": "POINT (508122.5640442603034899 1887303.3866074762772769)", - "surface": 18010000, - "canton": null, - "numero_insee": "82052" - } - }, - { - "pk": 20943, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ESCAZEAUX", - "center": "POINT (494741.1407682886929251 1871274.5711125996895134)", - "surface": 16190000, - "canton": null, - "numero_insee": "82053" - } - }, - { - "pk": 27107, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ESPALAIS", - "center": "POINT (485907.6216185693629086 1898230.6603526815306395)", - "surface": 7820000, - "canton": null, - "numero_insee": "82054" - } - }, - { - "pk": 36816, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ESPARSAC", - "center": "POINT (488262.9582337565952912 1879830.1689772985409945)", - "surface": 17500000, - "canton": null, - "numero_insee": "82055" - } - }, - { - "pk": 5867, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ESPINAS", - "center": "POINT (556379.4934718905715272 1910730.9770831307396293)", - "surface": 16160000, - "canton": null, - "numero_insee": "82056" - } - }, - { - "pk": 30385, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "FABAS", - "center": "POINT (519647.6950701832538471 1873784.4906372330151498)", - "surface": 6310000, - "canton": null, - "numero_insee": "82057" - } - }, - { - "pk": 11281, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "FAJOLLES", - "center": "POINT (493618.5600224885856733 1885881.2688530506566167)", - "surface": 9350000, - "canton": null, - "numero_insee": "82058" - } - }, - { - "pk": 14642, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "FAUDOAS", - "center": "POINT (489736.8012988411355764 1871132.8466911378782243)", - "surface": 19110000, - "canton": null, - "numero_insee": "82059" - } - }, - { - "pk": 4245, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "FAUROUX", - "center": "POINT (493554.0410018624970689 1917715.1161070782691240)", - "surface": 13160000, - "canton": null, - "numero_insee": "82060" - } - }, - { - "pk": 4401, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "FENEYROLS", - "center": "POINT (559034.0139264108147472 1904546.5012334932107478)", - "surface": 14810000, - "canton": null, - "numero_insee": "82061" - } - }, - { - "pk": 23000, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "FINHAN", - "center": "POINT (510088.7010277360677719 1879611.3318915579002351)", - "surface": 11970000, - "canton": null, - "numero_insee": "82062" - } - }, - { - "pk": 14412, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GARGANVILLAR", - "center": "POINT (497716.0944238904630765 1886716.2257542035076767)", - "surface": 22350000, - "canton": null, - "numero_insee": "82063" - } - }, - { - "pk": 34936, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GARIES", - "center": "POINT (494964.6609795601689257 1868473.3374418721068650)", - "surface": 14250000, - "canton": null, - "numero_insee": "82064" - } - }, - { - "pk": 30477, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GASQUES", - "center": "POINT (485740.9693880671984516 1906237.9233913815114647)", - "surface": 13380000, - "canton": null, - "numero_insee": "82065" - } - }, - { - "pk": 35568, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GENEBRIERES", - "center": "POINT (532032.7911025459179655 1889204.5494597244542092)", - "surface": 18490000, - "canton": null, - "numero_insee": "82066" - } - }, - { - "pk": 8319, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GENSAC", - "center": "POINT (489229.8670109320664778 1883942.6998077747412026)", - "surface": 11640000, - "canton": null, - "numero_insee": "82067" - } - }, - { - "pk": 25646, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GIMAT", - "center": "POINT (487604.6739746831008233 1874719.0910003017634153)", - "surface": 10120000, - "canton": null, - "numero_insee": "82068" - } - }, - { - "pk": 20646, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GINALS", - "center": "POINT (563265.4849540059221908 1913291.2592140166088939)", - "surface": 24200000, - "canton": null, - "numero_insee": "82069" - } - }, - { - "pk": 34473, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GLATENS", - "center": "POINT (485975.5684201182448305 1878009.1802845713682473)", - "surface": 2300000, - "canton": null, - "numero_insee": "82070" - } - }, - { - "pk": 6432, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GOAS", - "center": "POINT (489152.8245307394536212 1869125.7828996428288519)", - "surface": 2700000, - "canton": null, - "numero_insee": "82071" - } - }, - { - "pk": 32593, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GOLFECH", - "center": "POINT (481371.4553048933157697 1901997.0835470834281296)", - "surface": 9530000, - "canton": null, - "numero_insee": "82072" - } - }, - { - "pk": 23042, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GOUDOURVILLE", - "center": "POINT (486875.3575609201216139 1902243.0329581787809730)", - "surface": 11260000, - "canton": null, - "numero_insee": "82073" - } - }, - { - "pk": 13600, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "GRAMONT", - "center": "POINT (475518.3135114944307134 1883528.4527553154621273)", - "surface": 13470000, - "canton": null, - "numero_insee": "82074" - } - }, - { - "pk": 18571, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "L'HONOR-DE-COS", - "center": "POINT (521413.5880011490080506 1902130.0926316867116839)", - "surface": 31890000, - "canton": null, - "numero_insee": "82076" - } - }, - { - "pk": 16806, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LABARTHE", - "center": "POINT (518423.8911902419058606 1912516.3736998308449984)", - "surface": 23220000, - "canton": null, - "numero_insee": "82077" - } - }, - { - "pk": 19939, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LABASTIDE-DE-PENNE", - "center": "POINT (540482.5410061597358435 1920308.5273928656242788)", - "surface": 13610000, - "canton": null, - "numero_insee": "82078" - } - }, - { - "pk": 16804, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LABASTIDE-SAINT-PIERRE", - "center": "POINT (520295.0122530019725673 1880196.9215919848065823)", - "surface": 20610000, - "canton": null, - "numero_insee": "82079" - } - }, - { - "pk": 3745, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LABASTIDE-DU-TEMPLE", - "center": "POINT (509031.8894995426526293 1898322.9238275240641087)", - "surface": 10960000, - "canton": null, - "numero_insee": "82080" - } - }, - { - "pk": 27909, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LABOURGADE", - "center": "POINT (499935.8368576755747199 1884632.3991305765230209)", - "surface": 5500000, - "canton": null, - "numero_insee": "82081" - } - }, - { - "pk": 27481, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LACAPELLE-LIVRON", - "center": "POINT (556310.0193926668725908 1919039.2888545058667660)", - "surface": 13930000, - "canton": null, - "numero_insee": "82082" - } - }, - { - "pk": 11903, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LACHAPELLE", - "center": "POINT (479884.5779661778942682 1888169.7417170139960945)", - "surface": 10900000, - "canton": null, - "numero_insee": "82083" - } - }, - { - "pk": 21947, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LACOUR", - "center": "POINT (490420.9809675389551558 1921292.9113342184573412)", - "surface": 14410000, - "canton": null, - "numero_insee": "82084" - } - }, - { - "pk": 3365, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LACOURT-SAINT-PIERRE", - "center": "POINT (514424.0002019567764364 1887956.5278369188308716)", - "surface": 14840000, - "canton": null, - "numero_insee": "82085" - } - }, - { - "pk": 13455, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAFITTE", - "center": "POINT (501121.2383940416621044 1886544.3402098068036139)", - "surface": 4690000, - "canton": null, - "numero_insee": "82086" - } - }, - { - "pk": 34169, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAFRANCAISE", - "center": "POINT (512185.1056832103058696 1904355.6746411209460348)", - "surface": 50320000, - "canton": null, - "numero_insee": "82087" - } - }, - { - "pk": 22159, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAGUEPIE", - "center": "POINT (569725.5339063085848466 1906938.4469149997457862)", - "surface": 15050000, - "canton": null, - "numero_insee": "82088" - } - }, - { - "pk": 11840, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAMAGISTERE", - "center": "POINT (478647.1071230515372008 1904577.2632887871004641)", - "surface": 9110000, - "canton": null, - "numero_insee": "82089" - } - }, - { - "pk": 28090, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAMOTHE-CUMONT", - "center": "POINT (485485.8685324652469717 1876703.6815575999207795)", - "surface": 5420000, - "canton": null, - "numero_insee": "82091" - } - }, - { - "pk": 3545, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAPENCHE", - "center": "POINT (538934.4330382929183543 1913888.7542699708137661)", - "surface": 8040000, - "canton": null, - "numero_insee": "82092" - } - }, - { - "pk": 18792, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LARRAZET", - "center": "POINT (499157.5055995370494202 1881922.9669712863396853)", - "surface": 15070000, - "canton": null, - "numero_insee": "82093" - } - }, - { - "pk": 21300, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAUZERTE", - "center": "POINT (503255.4116943946573883 1918796.8954896409995854)", - "surface": 44620000, - "canton": null, - "numero_insee": "82094" - } - }, - { - "pk": 8858, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAVAURETTE", - "center": "POINT (546658.8771797479130328 1911951.1236923208925873)", - "surface": 13690000, - "canton": null, - "numero_insee": "82095" - } - }, - { - "pk": 19319, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LAVIT", - "center": "POINT (486519.6112356139929034 1884821.1561780860647559)", - "surface": 26390000, - "canton": null, - "numero_insee": "82097" - } - }, - { - "pk": 16945, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LEOJAC", - "center": "POINT (528827.8551411336520687 1889378.0279691279865801)", - "surface": 12910000, - "canton": null, - "numero_insee": "82098" - } - }, - { - "pk": 32090, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LIZAC", - "center": "POINT (507800.6662914282060228 1901916.5679850797168911)", - "surface": 9500000, - "canton": null, - "numero_insee": "82099" - } - }, - { - "pk": 22151, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LOZE", - "center": "POINT (554188.6747534951427951 1921324.0072527744341642)", - "surface": 10970000, - "canton": null, - "numero_insee": "82100" - } - }, - { - "pk": 33477, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MALAUSE", - "center": "POINT (490600.7393177644698881 1899671.1876835180446506)", - "surface": 11820000, - "canton": null, - "numero_insee": "82101" - } - }, - { - "pk": 3193, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MANSONVILLE", - "center": "POINT (480758.0570138104958460 1891480.5948172272183001)", - "surface": 15340000, - "canton": null, - "numero_insee": "82102" - } - }, - { - "pk": 24916, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MARIGNAC", - "center": "POINT (485624.2403424072545022 1872099.7653328354936093)", - "surface": 5090000, - "canton": null, - "numero_insee": "82103" - } - }, - { - "pk": 22577, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MARSAC", - "center": "POINT (478823.3611228522495367 1883355.6803429117426276)", - "surface": 14990000, - "canton": null, - "numero_insee": "82104" - } - }, - { - "pk": 16216, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MAS-GRENIER", - "center": "POINT (507001.3505301493569277 1877683.5359949460253119)", - "surface": 24490000, - "canton": null, - "numero_insee": "82105" - } - }, - { - "pk": 5036, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MAUBEC", - "center": "POINT (486159.7003333932952955 1867899.5764181942213327)", - "surface": 12790000, - "canton": null, - "numero_insee": "82106" - } - }, - { - "pk": 12586, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MEAUZAC", - "center": "POINT (511320.8820456618559547 1899943.7202653316780925)", - "surface": 11770000, - "canton": null, - "numero_insee": "82108" - } - }, - { - "pk": 26637, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MERLES", - "center": "POINT (490123.5343859245185740 1896864.1854455370921642)", - "surface": 7300000, - "canton": null, - "numero_insee": "82109" - } - }, - { - "pk": 14974, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MIRABEL", - "center": "POINT (525894.7634224448120221 1904970.4807351001072675)", - "surface": 32320000, - "canton": null, - "numero_insee": "82110" - } - }, - { - "pk": 8296, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MIRAMONT-DE-QUERCY", - "center": "POINT (497180.9573987038456835 1914942.2844869140535593)", - "surface": 14810000, - "canton": null, - "numero_insee": "82111" - } - }, - { - "pk": 17944, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MOISSAC", - "center": "POINT (500780.2564334042253904 1903459.8590897219255567)", - "surface": 86040000, - "canton": null, - "numero_insee": "82112" - } - }, - { - "pk": 16212, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MOLIERES", - "center": "POINT (524445.7722397085744888 1910664.5342723543290049)", - "surface": 38560000, - "canton": null, - "numero_insee": "82113" - } - }, - { - "pk": 3632, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONCLAR-DE-QUERCY", - "center": "POINT (539353.6137434805277735 1887663.9116798536852002)", - "surface": 37650000, - "canton": null, - "numero_insee": "82115" - } - }, - { - "pk": 24727, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTAGUDET", - "center": "POINT (500066.3729454063577577 1917068.5388366896659136)", - "surface": 12260000, - "canton": null, - "numero_insee": "82116" - } - }, - { - "pk": 15003, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTAIGU-DE-QUERCY", - "center": "POINT (495875.6807745232945308 1927444.7646874624770135)", - "surface": 76790000, - "canton": null, - "numero_insee": "82117" - } - }, - { - "pk": 14110, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTAIN", - "center": "POINT (501651.7407388761639595 1882944.8178605507127941)", - "surface": 4030000, - "canton": null, - "numero_insee": "82118" - } - }, - { - "pk": 18825, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTALZAT", - "center": "POINT (534443.2891109511256218 1912249.5475639782380313)", - "surface": 27530000, - "canton": null, - "numero_insee": "82119" - } - }, - { - "pk": 6170, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTASTRUC", - "center": "POINT (516419.3751271101646125 1900787.0616320408880711)", - "surface": 4660000, - "canton": null, - "numero_insee": "82120" - } - }, - { - "pk": 35836, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTAUBAN", - "center": "POINT (521901.6187524115666747 1891622.7719506206922233)", - "surface": 135910000, - "canton": null, - "numero_insee": "82121" - } - }, - { - "pk": 36134, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTBARLA", - "center": "POINT (499597.5216891772579402 1913260.5663779631722718)", - "surface": 7390000, - "canton": null, - "numero_insee": "82122" - } - }, - { - "pk": 35569, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTBARTIER", - "center": "POINT (515493.4173042988986708 1879756.4654083158820868)", - "surface": 15100000, - "canton": null, - "numero_insee": "82123" - } - }, - { - "pk": 33707, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTBETON", - "center": "POINT (514400.6480915729189292 1890759.3859149827621877)", - "surface": 16230000, - "canton": null, - "numero_insee": "82124" - } - }, - { - "pk": 23625, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTECH", - "center": "POINT (511653.6577100773574784 1884029.1877927763853222)", - "surface": 49990000, - "canton": null, - "numero_insee": "82125" - } - }, - { - "pk": 7801, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTEILS", - "center": "POINT (538182.1022042867261916 1908076.2421358241699636)", - "surface": 12120000, - "canton": null, - "numero_insee": "82126" - } - }, - { - "pk": 14972, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTESQUIEU", - "center": "POINT (497927.4604391381144524 1909442.5897506661713123)", - "surface": 28580000, - "canton": null, - "numero_insee": "82127" - } - }, - { - "pk": 33215, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTFERMIER", - "center": "POINT (526315.9577603734796867 1914484.2083918864373118)", - "surface": 6570000, - "canton": null, - "numero_insee": "82128" - } - }, - { - "pk": 33286, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTGAILLARD", - "center": "POINT (482739.0053408838575706 1881986.6744184107519686)", - "surface": 9610000, - "canton": null, - "numero_insee": "82129" - } - }, - { - "pk": 17041, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTJOI", - "center": "POINT (487391.1011135965818539 1912458.3073241054080427)", - "surface": 14700000, - "canton": null, - "numero_insee": "82130" - } - }, - { - "pk": 16625, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTPEZAT-DE-QUERCY", - "center": "POINT (531010.6453373583499342 1915724.6556130747776479)", - "surface": 43860000, - "canton": null, - "numero_insee": "82131" - } - }, - { - "pk": 16213, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MONTRICOUX", - "center": "POINT (542851.1090777835343033 1900406.9204444466158748)", - "surface": 26450000, - "canton": null, - "numero_insee": "82132" - } - }, - { - "pk": 21204, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "MOUILLAC", - "center": "POINT (546895.6160845630802214 1919561.2395652367267758)", - "surface": 9050000, - "canton": null, - "numero_insee": "82133" - } - }, - { - "pk": 20771, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "NEGREPELISSE", - "center": "POINT (535079.1398867079988122 1896037.3695194614119828)", - "surface": 48910000, - "canton": null, - "numero_insee": "82134" - } - }, - { - "pk": 7558, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "NOHIC", - "center": "POINT (527632.5705146483378485 1876654.1533011565916240)", - "surface": 12610000, - "canton": null, - "numero_insee": "82135" - } - }, - { - "pk": 34624, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ORGUEIL", - "center": "POINT (524418.4233054433716461 1877928.7755628731101751)", - "surface": 13980000, - "canton": null, - "numero_insee": "82136" - } - }, - { - "pk": 18019, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PARISOT", - "center": "POINT (562326.0587856695055962 1917888.3254105343949050)", - "surface": 28040000, - "canton": null, - "numero_insee": "82137" - } - }, - { - "pk": 26214, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PERVILLE", - "center": "POINT (483407.8759219149360433 1909922.5205041624139994)", - "surface": 9300000, - "canton": null, - "numero_insee": "82138" - } - }, - { - "pk": 10766, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LE PIN", - "center": "POINT (490749.9439054831163958 1893766.0266941918525845)", - "surface": 4690000, - "canton": null, - "numero_insee": "82139" - } - }, - { - "pk": 32977, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PIQUECOS", - "center": "POINT (518221.1972692983690649 1900802.0771798901259899)", - "surface": 7920000, - "canton": null, - "numero_insee": "82140" - } - }, - { - "pk": 13589, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "POMMEVIC", - "center": "POINT (487593.5382252287236042 1900146.7304572477005422)", - "surface": 5810000, - "canton": null, - "numero_insee": "82141" - } - }, - { - "pk": 35086, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "POMPIGNAN", - "center": "POINT (518785.1464632246061228 1869172.2261062308680266)", - "surface": 12100000, - "canton": null, - "numero_insee": "82142" - } - }, - { - "pk": 24912, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "POUPAS", - "center": "POINT (479404.8530887642991729 1885663.0263780786190182)", - "surface": 10190000, - "canton": null, - "numero_insee": "82143" - } - }, - { - "pk": 17945, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PUYCORNET", - "center": "POINT (518674.9829892056295648 1906411.9059359405655414)", - "surface": 27480000, - "canton": null, - "numero_insee": "82144" - } - }, - { - "pk": 13149, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PUYGAILLARD-DE-QUERCY", - "center": "POINT (543424.3569562629563734 1891702.2669864972122014)", - "surface": 17410000, - "canton": null, - "numero_insee": "82145" - } - }, - { - "pk": 12087, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PUYGAILLARD-DE-LOMAGNE", - "center": "POINT (484004.5729001737199724 1886301.8952432244550437)", - "surface": 7090000, - "canton": null, - "numero_insee": "82146" - } - }, - { - "pk": 18020, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PUYLAGARDE", - "center": "POINT (560782.6922014437150210 1922880.7507976463530213)", - "surface": 23170000, - "canton": null, - "numero_insee": "82147" - } - }, - { - "pk": 16215, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "PUYLAROQUE", - "center": "POINT (543914.3608419469092041 1916933.5550332991406322)", - "surface": 35380000, - "canton": null, - "numero_insee": "82148" - } - }, - { - "pk": 32316, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "REALVILLE", - "center": "POINT (531414.5119401700794697 1903314.6904625734314322)", - "surface": 25460000, - "canton": null, - "numero_insee": "82149" - } - }, - { - "pk": 29591, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "REYNIES", - "center": "POINT (525794.8181587433209643 1880943.5462148967199028)", - "surface": 10060000, - "canton": null, - "numero_insee": "82150" - } - }, - { - "pk": 26040, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "ROQUECOR", - "center": "POINT (488989.6292397232027724 1924884.8488792257849127)", - "surface": 21030000, - "canton": null, - "numero_insee": "82151" - } - }, - { - "pk": 12224, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-AIGNAN", - "center": "POINT (498572.8741319683613256 1892029.1325417223852128)", - "surface": 3260000, - "canton": null, - "numero_insee": "82152" - } - }, - { - "pk": 22946, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-AMANS-DU-PECH", - "center": "POINT (484689.5085915825329721 1924348.5787652074359357)", - "surface": 6770000, - "canton": null, - "numero_insee": "82153" - } - }, - { - "pk": 4328, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-AMANS-DE-PELLAGAL", - "center": "POINT (503294.5692441252758726 1914092.1903011193498969)", - "surface": 14520000, - "canton": null, - "numero_insee": "82154" - } - }, - { - "pk": 21999, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-ANTONIN-NOBLE-VAL", - "center": "POINT (551912.6256386027671397 1906188.7895824285224080)", - "surface": 105500000, - "canton": null, - "numero_insee": "82155" - } - }, - { - "pk": 33804, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-ARROUMEX", - "center": "POINT (491793.4114573996048421 1888669.1487290912773460)", - "surface": 9740000, - "canton": null, - "numero_insee": "82156" - } - }, - { - "pk": 6281, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-BEAUZEIL", - "center": "POINT (485970.0066312915878370 1926861.8790365788154304)", - "surface": 9850000, - "canton": null, - "numero_insee": "82157" - } - }, - { - "pk": 26045, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-CIRICE", - "center": "POINT (479813.9028837168007158 1896678.4046550856437534)", - "surface": 8990000, - "canton": null, - "numero_insee": "82158" - } - }, - { - "pk": 14973, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-CIRQ", - "center": "POINT (541319.4964471057755873 1903998.0195863167755306)", - "surface": 16020000, - "canton": null, - "numero_insee": "82159" - } - }, - { - "pk": 10389, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-CLAIR", - "center": "POINT (488340.2642101816018112 1906659.9580760011449456)", - "surface": 8460000, - "canton": null, - "numero_insee": "82160" - } - }, - { - "pk": 18538, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-ETIENNE-DE-TULMONT", - "center": "POINT (529389.2178886111360043 1894087.8266050776001066)", - "surface": 21450000, - "canton": null, - "numero_insee": "82161" - } - }, - { - "pk": 5738, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-GEORGES", - "center": "POINT (544245.5983200927730650 1913232.3581308131106198)", - "surface": 9200000, - "canton": null, - "numero_insee": "82162" - } - }, - { - "pk": 5850, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-JEAN-DU-BOUZET", - "center": "POINT (482686.6084799109958112 1888293.1283330419100821)", - "surface": 7680000, - "canton": null, - "numero_insee": "82163" - } - }, - { - "pk": 5462, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINTE-JULIETTE", - "center": "POINT (506433.6085478596505709 1921826.5541150816716254)", - "surface": 7350000, - "canton": null, - "numero_insee": "82164" - } - }, - { - "pk": 5821, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-LOUP", - "center": "POINT (480995.1650381537037902 1899090.8190561335068196)", - "surface": 14150000, - "canton": null, - "numero_insee": "82165" - } - }, - { - "pk": 21916, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-MICHEL", - "center": "POINT (487738.5695249826530926 1894742.0796858463436365)", - "surface": 13450000, - "canton": null, - "numero_insee": "82166" - } - }, - { - "pk": 14577, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-NAUPHARY", - "center": "POINT (528568.4660066349897534 1884470.5136172361671925)", - "surface": 24760000, - "canton": null, - "numero_insee": "82167" - } - }, - { - "pk": 18804, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-NICOLAS-DE-LA-GRAVE", - "center": "POINT (494427.9015859709470533 1896899.9774101818911731)", - "surface": 29220000, - "canton": null, - "numero_insee": "82169" - } - }, - { - "pk": 15906, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-PAUL-D'ESPIS", - "center": "POINT (493057.4902423630119301 1905197.5596557925455272)", - "surface": 25970000, - "canton": null, - "numero_insee": "82170" - } - }, - { - "pk": 4092, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-PORQUIER", - "center": "POINT (507297.5750799684901722 1890199.6802670592442155)", - "surface": 16410000, - "canton": null, - "numero_insee": "82171" - } - }, - { - "pk": 14764, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-PROJET", - "center": "POINT (554771.6975982603617013 1923431.1200699331238866)", - "surface": 26270000, - "canton": null, - "numero_insee": "82172" - } - }, - { - "pk": 3094, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-VINCENT", - "center": "POINT (530279.9950698879547417 1907309.5386622948572040)", - "surface": 16390000, - "canton": null, - "numero_insee": "82174" - } - }, - { - "pk": 14635, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAINT-VINCENT-LESPINASSE", - "center": "POINT (489971.8365254193195142 1903069.6365686724893749)", - "surface": 9340000, - "canton": null, - "numero_insee": "82175" - } - }, - { - "pk": 16214, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "LA SALVETAT-BELMONTET", - "center": "POINT (533767.1073959456989542 1885314.7648508630227298)", - "surface": 18670000, - "canton": null, - "numero_insee": "82176" - } - }, - { - "pk": 16802, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SAUVETERRE", - "center": "POINT (514966.2684583793743514 1918994.5223236391320825)", - "surface": 17420000, - "canton": null, - "numero_insee": "82177" - } - }, - { - "pk": 19114, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SEPTFONDS", - "center": "POINT (542382.1497842834796757 1908611.8517932137474418)", - "surface": 27130000, - "canton": null, - "numero_insee": "82179" - } - }, - { - "pk": 20054, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SERIGNAC", - "center": "POINT (494458.5090448450064287 1881183.1098043411038816)", - "surface": 32670000, - "canton": null, - "numero_insee": "82180" - } - }, - { - "pk": 36580, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "SISTELS", - "center": "POINT (475315.9795019245939329 1895840.1831862216349691)", - "surface": 13530000, - "canton": null, - "numero_insee": "82181" - } - }, - { - "pk": 5775, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "TOUFFAILLES", - "center": "POINT (496236.7589640257647261 1920139.9927966641262174)", - "surface": 24630000, - "canton": null, - "numero_insee": "82182" - } - }, - { - "pk": 18358, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "TREJOULS", - "center": "POINT (509359.8401258323574439 1919047.9301418887916952)", - "surface": 13930000, - "canton": null, - "numero_insee": "82183" - } - }, - { - "pk": 16496, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VAISSAC", - "center": "POINT (538512.6797244406770915 1892462.1205336344428360)", - "surface": 37680000, - "canton": null, - "numero_insee": "82184" - } - }, - { - "pk": 25033, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VALEILLES", - "center": "POINT (486544.8143734916811809 1929969.9474324677139521)", - "surface": 13860000, - "canton": null, - "numero_insee": "82185" - } - }, - { - "pk": 17075, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VALENCE", - "center": "POINT (484678.1223344292957336 1901624.1242283887695521)", - "surface": 13520000, - "canton": null, - "numero_insee": "82186" - } - }, - { - "pk": 34022, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VAREN", - "center": "POINT (563923.8806430535623804 1906389.3499435747507960)", - "surface": 23510000, - "canton": null, - "numero_insee": "82187" - } - }, - { - "pk": 31706, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VARENNES", - "center": "POINT (531911.1040188858751208 1879793.2532162535935640)", - "surface": 14620000, - "canton": null, - "numero_insee": "82188" - } - }, - { - "pk": 22777, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VAZERAC", - "center": "POINT (515133.0891436135862023 1910987.3406663374044001)", - "surface": 32660000, - "canton": null, - "numero_insee": "82189" - } - }, - { - "pk": 15295, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VERDUN-SUR-GARONNE", - "center": "POINT (510748.5145580983371474 1872509.0176092374604195)", - "surface": 39870000, - "canton": null, - "numero_insee": "82190" - } - }, - { - "pk": 17117, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VERFEIL", - "center": "POINT (562997.8478172018658370 1909384.8312332648783922)", - "surface": 18510000, - "canton": null, - "numero_insee": "82191" - } - }, - { - "pk": 21470, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VERLHAC-TESCOU", - "center": "POINT (535300.3928673049667850 1881523.4030323019251227)", - "surface": 22510000, - "canton": null, - "numero_insee": "82192" - } - }, - { - "pk": 12090, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VIGUERON", - "center": "POINT (496990.2228126785485074 1877700.3270981123205274)", - "surface": 6320000, - "canton": null, - "numero_insee": "82193" - } - }, - { - "pk": 33962, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VILLEBRUMIER", - "center": "POINT (528804.5786368913250044 1880167.7734448486007750)", - "surface": 11210000, - "canton": null, - "numero_insee": "82194" - } - }, - { - "pk": 37965, - "model": "ishtar_common.town", - "fields": { - "departement": 83, - "name": "VILLEMADE", - "center": "POINT (516040.6569207707652822 1898181.0905639310367405)", - "surface": 9220000, - "canton": null, - "numero_insee": "82195" - } - }, - { - "pk": 18806, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LES ADRETS-DE-L'ESTEREL", - "center": "POINT (961964.5743085157591850 1847308.8997972295619547)", - "surface": 22500000, - "canton": null, - "numero_insee": "83001" - } - }, - { - "pk": 15594, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "AIGUINES", - "center": "POINT (919951.2366798298899084 1866567.8333482625894248)", - "surface": 116380000, - "canton": null, - "numero_insee": "83002" - } - }, - { - "pk": 18305, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "AMPUS", - "center": "POINT (925951.5467261187732220 1855707.4174649245105684)", - "surface": 83700000, - "canton": null, - "numero_insee": "83003" - } - }, - { - "pk": 14735, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LES ARCS", - "center": "POINT (936529.3344534472562373 1836476.9449745158199221)", - "surface": 54430000, - "canton": null, - "numero_insee": "83004" - } - }, - { - "pk": 13479, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "ARTIGNOSC-SUR-VERDON", - "center": "POINT (904273.7230528399813920 1861927.6573483501560986)", - "surface": 18930000, - "canton": null, - "numero_insee": "83005" - } - }, - { - "pk": 13721, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "ARTIGUES", - "center": "POINT (880168.9843693973962218 1847704.5018311431631446)", - "surface": 32590000, - "canton": null, - "numero_insee": "83006" - } - }, - { - "pk": 26484, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "AUPS", - "center": "POINT (913746.5318158117588609 1854701.1235517575405538)", - "surface": 64900000, - "canton": null, - "numero_insee": "83007" - } - }, - { - "pk": 15034, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BAGNOLS-EN-FORET", - "center": "POINT (953661.8792206599609926 1846536.2618404016830027)", - "surface": 42880000, - "canton": null, - "numero_insee": "83008" - } - }, - { - "pk": 20765, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BARGEME", - "center": "POINT (941363.9782734734471887 1867853.9480831124819815)", - "surface": 28050000, - "canton": null, - "numero_insee": "83010" - } - }, - { - "pk": 21800, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BARGEMON", - "center": "POINT (939656.3906107657821849 1856927.0027360911481082)", - "surface": 35260000, - "canton": null, - "numero_insee": "83011" - } - }, - { - "pk": 3567, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BARJOLS", - "center": "POINT (895302.9748517114203423 1845732.3274451042525470)", - "surface": 30350000, - "canton": null, - "numero_insee": "83012" - } - }, - { - "pk": 32653, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA BASTIDE", - "center": "POINT (946250.0316314921947196 1870098.6338378873188049)", - "surface": 11860000, - "canton": null, - "numero_insee": "83013" - } - }, - { - "pk": 28632, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BAUDINARD-SUR-VERDON", - "center": "POINT (906255.9696014393121004 1864247.3037391321267933)", - "surface": 22190000, - "canton": null, - "numero_insee": "83014" - } - }, - { - "pk": 27543, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BAUDUEN", - "center": "POINT (911758.2442762625869364 1864695.1724548637866974)", - "surface": 52060000, - "canton": null, - "numero_insee": "83015" - } - }, - { - "pk": 26501, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BELGENTIER", - "center": "POINT (897604.1394898002035916 1811012.5416971731465310)", - "surface": 13410000, - "canton": null, - "numero_insee": "83017" - } - }, - { - "pk": 29212, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BESSE-SUR-ISSOLE", - "center": "POINT (911818.6248587664449587 1822848.4362543411552906)", - "surface": 37410000, - "canton": null, - "numero_insee": "83018" - } - }, - { - "pk": 22121, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BORMES-LES-MIMOSAS", - "center": "POINT (926799.4877552500693128 1803855.6180028414819390)", - "surface": 97210000, - "canton": null, - "numero_insee": "83019" - } - }, - { - "pk": 4765, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE BOURGUET", - "center": "POINT (935612.2228837131988257 1873110.1462403831537813)", - "surface": 25300000, - "canton": null, - "numero_insee": "83020" - } - }, - { - "pk": 33235, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BRAS", - "center": "POINT (893380.1306792235700414 1836505.3645830689929426)", - "surface": 35940000, - "canton": null, - "numero_insee": "83021" - } - }, - { - "pk": 7025, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BRENON", - "center": "POINT (938528.2001838443102315 1871633.6721565669868141)", - "surface": 5770000, - "canton": null, - "numero_insee": "83022" - } - }, - { - "pk": 22679, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BRIGNOLES", - "center": "POINT (903355.3048305399715900 1829082.7156250383704901)", - "surface": 70810000, - "canton": null, - "numero_insee": "83023" - } - }, - { - "pk": 17229, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "BRUE-AURIAC", - "center": "POINT (891323.7393920741742477 1842794.8040547815617174)", - "surface": 36630000, - "canton": null, - "numero_insee": "83025" - } - }, - { - "pk": 5342, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA CADIERE-D'AZUR", - "center": "POINT (875721.7948073244187981 1806018.7934403079561889)", - "surface": 37660000, - "canton": null, - "numero_insee": "83027" - } - }, - { - "pk": 22140, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CALLAS", - "center": "POINT (942523.3458595643751323 1849543.4531508779618889)", - "surface": 49320000, - "canton": null, - "numero_insee": "83028" - } - }, - { - "pk": 21793, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CALLIAN", - "center": "POINT (957087.6135551144834608 1855576.0451920663472265)", - "surface": 25440000, - "canton": null, - "numero_insee": "83029" - } - }, - { - "pk": 37719, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CAMPS-LA-SOURCE", - "center": "POINT (907084.2644315010402352 1826211.5279379319399595)", - "surface": 22780000, - "canton": null, - "numero_insee": "83030" - } - }, - { - "pk": 18906, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE CANNET-DES-MAURES", - "center": "POINT (927697.6445722978096455 1827390.4299801061861217)", - "surface": 73920000, - "canton": null, - "numero_insee": "83031" - } - }, - { - "pk": 34456, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CARCES", - "center": "POINT (910994.4916222328320146 1837157.6418526999186724)", - "surface": 35760000, - "canton": null, - "numero_insee": "83032" - } - }, - { - "pk": 5299, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CARNOULES", - "center": "POINT (913563.5947138628689572 1817857.7401082545984536)", - "surface": 25890000, - "canton": null, - "numero_insee": "83033" - } - }, - { - "pk": 24164, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CARQUEIRANNE", - "center": "POINT (904545.9945774124935269 1795454.2311957571655512)", - "surface": 14850000, - "canton": null, - "numero_insee": "83034" - } - }, - { - "pk": 19824, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE CASTELLET", - "center": "POINT (878901.1664679130772129 1808849.3521319031715393)", - "surface": 45330000, - "canton": null, - "numero_insee": "83035" - } - }, - { - "pk": 20477, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA CELLE", - "center": "POINT (897064.9603034406900406 1827126.3800054620951414)", - "surface": 21550000, - "canton": null, - "numero_insee": "83037" - } - }, - { - "pk": 16836, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CHATEAUDOUBLE", - "center": "POINT (931059.4843809738522395 1855451.1751382772345096)", - "surface": 40970000, - "canton": null, - "numero_insee": "83038" - } - }, - { - "pk": 14817, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CHATEAUVERT", - "center": "POINT (897453.4535818623844534 1840144.5095552378334105)", - "surface": 27670000, - "canton": null, - "numero_insee": "83039" - } - }, - { - "pk": 28652, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CHATEAUVIEUX", - "center": "POINT (943008.6381742176599801 1874475.5020374560263008)", - "surface": 14830000, - "canton": null, - "numero_insee": "83040" - } - }, - { - "pk": 4576, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CLAVIERS", - "center": "POINT (943391.4148381710983813 1853355.2357602408155799)", - "surface": 15960000, - "canton": null, - "numero_insee": "83041" - } - }, - { - "pk": 3612, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "COGOLIN", - "center": "POINT (940328.6289840427925810 1813883.8860628437250853)", - "surface": 27850000, - "canton": null, - "numero_insee": "83042" - } - }, - { - "pk": 19583, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "COLLOBRIERES", - "center": "POINT (925523.0343011983204633 1812554.6676306158769876)", - "surface": 113210000, - "canton": null, - "numero_insee": "83043" - } - }, - { - "pk": 18776, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "COMPS-SUR-ARTUBY", - "center": "POINT (936086.1406873522792011 1864604.7764060292392969)", - "surface": 63920000, - "canton": null, - "numero_insee": "83044" - } - }, - { - "pk": 32837, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CORRENS", - "center": "POINT (902171.3612369394395500 1838683.4366070036776364)", - "surface": 37160000, - "canton": null, - "numero_insee": "83045" - } - }, - { - "pk": 16436, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "COTIGNAC", - "center": "POINT (908139.7627662771847099 1843139.8374762188177556)", - "surface": 44350000, - "canton": null, - "numero_insee": "83046" - } - }, - { - "pk": 30944, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA CRAU", - "center": "POINT (905883.7067579491995275 1802874.3562003183178604)", - "surface": 37590000, - "canton": null, - "numero_insee": "83047" - } - }, - { - "pk": 17779, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA CROIX-VALMER", - "center": "POINT (945881.2865148375276476 1808525.6298916100058705)", - "surface": 22750000, - "canton": null, - "numero_insee": "83048" - } - }, - { - "pk": 36638, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "CUERS", - "center": "POINT (903507.0595887561794370 1811463.8320926129817963)", - "surface": 51200000, - "canton": null, - "numero_insee": "83049" - } - }, - { - "pk": 19182, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "DRAGUIGNAN", - "center": "POINT (933145.4352286502253264 1845758.2606287943199277)", - "surface": 54040000, - "canton": null, - "numero_insee": "83050" - } - }, - { - "pk": 18303, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "ENTRECASTEAUX", - "center": "POINT (915456.1075471951626241 1842201.7729242355562747)", - "surface": 32180000, - "canton": null, - "numero_insee": "83051" - } - }, - { - "pk": 21600, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "ESPARRON", - "center": "POINT (883860.8259673023130745 1849137.8229968200903386)", - "surface": 30090000, - "canton": null, - "numero_insee": "83052" - } - }, - { - "pk": 21641, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "EVENOS", - "center": "POINT (887847.8103355335770175 1804621.3065265850163996)", - "surface": 42170000, - "canton": null, - "numero_insee": "83053" - } - }, - { - "pk": 37114, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA FARLEDE", - "center": "POINT (901781.8425514684058726 1802538.6793295890092850)", - "surface": 8350000, - "canton": null, - "numero_insee": "83054" - } - }, - { - "pk": 19284, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "FAYENCE", - "center": "POINT (950785.3343273240607232 1855020.9624549995642155)", - "surface": 27750000, - "canton": null, - "numero_insee": "83055" - } - }, - { - "pk": 32427, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "FIGANIERES", - "center": "POINT (936517.0289938896894455 1849491.5568157946690917)", - "surface": 28290000, - "canton": null, - "numero_insee": "83056" - } - }, - { - "pk": 23159, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "FLAYOSC", - "center": "POINT (925634.0652011383790523 1846093.8681507308501750)", - "surface": 46280000, - "canton": null, - "numero_insee": "83058" - } - }, - { - "pk": 26400, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "FORCALQUEIRET", - "center": "POINT (904816.3005324386758730 1822187.4112723844591528)", - "surface": 10690000, - "canton": null, - "numero_insee": "83059" - } - }, - { - "pk": 23884, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "FOX-AMPHOUX", - "center": "POINT (904868.2506908730138093 1851020.5598568012937903)", - "surface": 41210000, - "canton": null, - "numero_insee": "83060" - } - }, - { - "pk": 18907, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "FREJUS", - "center": "POINT (958523.2546590095153078 1840070.9593895752914250)", - "surface": 105040000, - "canton": null, - "numero_insee": "83061" - } - }, - { - "pk": 26106, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA GARDE", - "center": "POINT (900014.3661182097857818 1798518.8148319565225393)", - "surface": 15770000, - "canton": null, - "numero_insee": "83062" - } - }, - { - "pk": 15599, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA GARDE-FREINET", - "center": "POINT (935350.7226247270591557 1822250.5492045623250306)", - "surface": 76660000, - "canton": null, - "numero_insee": "83063" - } - }, - { - "pk": 27705, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "GAREOULT", - "center": "POINT (900710.1832015968393534 1822352.2753697708249092)", - "surface": 15880000, - "canton": null, - "numero_insee": "83064" - } - }, - { - "pk": 21169, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "GASSIN", - "center": "POINT (945539.4295632898574695 1813328.2224921286106110)", - "surface": 24840000, - "canton": null, - "numero_insee": "83065" - } - }, - { - "pk": 5124, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "GINASSERVIS", - "center": "POINT (882591.5591854562517256 1857035.7769365129061043)", - "surface": 38200000, - "canton": null, - "numero_insee": "83066" - } - }, - { - "pk": 14952, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "GRIMAUD", - "center": "POINT (940994.7863511762116104 1817894.2491926776710898)", - "surface": 44830000, - "canton": null, - "numero_insee": "83068" - } - }, - { - "pk": 23267, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "HYERES", - "center": "POINT (910522.3456456449348480 1799009.7934855909552425)", - "surface": 133610000, - "canton": null, - "numero_insee": "83069" - } - }, - { - "pk": 24862, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE LAVANDOU", - "center": "POINT (931900.7023734217509627 1804400.2279706844128668)", - "surface": 30390000, - "canton": null, - "numero_insee": "83070" - } - }, - { - "pk": 36636, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA LONDE-LES-MAURES", - "center": "POINT (918087.4558593059191480 1804080.8132070803549141)", - "surface": 80150000, - "canton": null, - "numero_insee": "83071" - } - }, - { - "pk": 22187, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LORGUES", - "center": "POINT (925692.8113715194631368 1839286.6781393804121763)", - "surface": 64610000, - "canton": null, - "numero_insee": "83072" - } - }, - { - "pk": 4532, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA MARTRE", - "center": "POINT (942932.7620053368154913 1871671.7364247275982052)", - "surface": 20740000, - "canton": null, - "numero_insee": "83074" - } - }, - { - "pk": 17146, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LES MAYONS", - "center": "POINT (926760.5072829419514164 1819973.8637933183927089)", - "surface": 28770000, - "canton": null, - "numero_insee": "83075" - } - }, - { - "pk": 18982, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MAZAUGUES", - "center": "POINT (888896.6816972470842302 1822350.7107013969216496)", - "surface": 53630000, - "canton": null, - "numero_insee": "83076" - } - }, - { - "pk": 4541, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MEOUNES-LES-MONTRIEUX", - "center": "POINT (895069.5609984567854553 1814694.9878647911828011)", - "surface": 40680000, - "canton": null, - "numero_insee": "83077" - } - }, - { - "pk": 31991, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MOISSAC-BELLEVUE", - "center": "POINT (909322.0759466595482081 1856965.5637736022472382)", - "surface": 20720000, - "canton": null, - "numero_insee": "83078" - } - }, - { - "pk": 15234, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA MOLE", - "center": "POINT (936755.0079721387010068 1810348.9756004652008414)", - "surface": 46190000, - "canton": null, - "numero_insee": "83079" - } - }, - { - "pk": 18172, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MONS", - "center": "POINT (952700.8395099323242903 1865048.7356370948255062)", - "surface": 76880000, - "canton": null, - "numero_insee": "83080" - } - }, - { - "pk": 21918, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MONTAUROUX", - "center": "POINT (959801.7094784524524584 1854298.0716863758862019)", - "surface": 37220000, - "canton": null, - "numero_insee": "83081" - } - }, - { - "pk": 21871, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MONTFERRAT", - "center": "POINT (934449.2150661107152700 1857082.2434592756908387)", - "surface": 34210000, - "canton": null, - "numero_insee": "83082" - } - }, - { - "pk": 26610, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MONTFORT-SUR-ARGENS", - "center": "POINT (906879.7915840705391020 1838323.5441584982909262)", - "surface": 11920000, - "canton": null, - "numero_insee": "83083" - } - }, - { - "pk": 35205, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "MONTMEYAN", - "center": "POINT (900714.8010795051231980 1856691.1831023632548749)", - "surface": 39530000, - "canton": null, - "numero_insee": "83084" - } - }, - { - "pk": 16578, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA MOTTE", - "center": "POINT (941077.9941416203510016 1843023.6176215948071331)", - "surface": 29000000, - "canton": null, - "numero_insee": "83085" - } - }, - { - "pk": 15375, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE MUY", - "center": "POINT (943416.7647078286390752 1838839.0667505403980613)", - "surface": 66840000, - "canton": null, - "numero_insee": "83086" - } - }, - { - "pk": 16015, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "NEOULES", - "center": "POINT (899753.0725820702500641 1817238.1820049970410764)", - "surface": 25120000, - "canton": null, - "numero_insee": "83088" - } - }, - { - "pk": 13164, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "OLLIERES", - "center": "POINT (881633.2908112804871053 1840408.8487492708954960)", - "surface": 39940000, - "canton": null, - "numero_insee": "83089" - } - }, - { - "pk": 24965, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "OLLIOULES", - "center": "POINT (886492.7855577331501991 1799203.3892088001593947)", - "surface": 20300000, - "canton": null, - "numero_insee": "83090" - } - }, - { - "pk": 27759, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "PIERREFEU-DU-VAR", - "center": "POINT (912520.2253089579753578 1811141.0296690135728568)", - "surface": 58970000, - "canton": null, - "numero_insee": "83091" - } - }, - { - "pk": 20783, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "PIGNANS", - "center": "POINT (918264.3305915901437402 1818398.8449887856841087)", - "surface": 34470000, - "canton": null, - "numero_insee": "83092" - } - }, - { - "pk": 18306, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE PLAN-DE-LA-TOUR", - "center": "POINT (941841.2582935381215066 1824208.7969944206997752)", - "surface": 37970000, - "canton": null, - "numero_insee": "83094" - } - }, - { - "pk": 17583, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "PONTEVES", - "center": "POINT (901408.5441283696563914 1845885.0114894639700651)", - "surface": 41080000, - "canton": null, - "numero_insee": "83095" - } - }, - { - "pk": 6296, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "POURCIEUX", - "center": "POINT (879675.0643230680143461 1835286.2317879791371524)", - "surface": 21130000, - "canton": null, - "numero_insee": "83096" - } - }, - { - "pk": 3608, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "POURRIERES", - "center": "POINT (876144.6796703090658411 1838359.4033292185049504)", - "surface": 57180000, - "canton": null, - "numero_insee": "83097" - } - }, - { - "pk": 17589, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE PRADET", - "center": "POINT (900941.2057721829041839 1795523.3037239767145365)", - "surface": 10370000, - "canton": null, - "numero_insee": "83098" - } - }, - { - "pk": 19580, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "PUGET-SUR-ARGENS", - "center": "POINT (952220.0388038950040936 1839615.9737513693980873)", - "surface": 26990000, - "canton": null, - "numero_insee": "83099" - } - }, - { - "pk": 16591, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "PUGET-VILLE", - "center": "POINT (909877.7342788807582110 1815723.5564396032132208)", - "surface": 37250000, - "canton": null, - "numero_insee": "83100" - } - }, - { - "pk": 19323, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "RAMATUELLE", - "center": "POINT (949862.2470838315784931 1811263.1672139470465481)", - "surface": 35070000, - "canton": null, - "numero_insee": "83101" - } - }, - { - "pk": 18669, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "REGUSSE", - "center": "POINT (905199.6734777244273573 1859032.3922116293106228)", - "surface": 35590000, - "canton": null, - "numero_insee": "83102" - } - }, - { - "pk": 26660, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE REVEST-LES-EAUX", - "center": "POINT (893755.9280039481818676 1804471.9058899914380163)", - "surface": 24340000, - "canton": null, - "numero_insee": "83103" - } - }, - { - "pk": 23221, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "RIANS", - "center": "POINT (875137.0539317877264693 1850764.7382787198293954)", - "surface": 97070000, - "canton": null, - "numero_insee": "83104" - } - }, - { - "pk": 9903, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "RIBOUX", - "center": "POINT (877823.5121431982843205 1817750.3360972839873284)", - "surface": 13530000, - "canton": null, - "numero_insee": "83105" - } - }, - { - "pk": 29906, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "ROCBARON", - "center": "POINT (904345.0832402720116079 1818779.4520905199460685)", - "surface": 20450000, - "canton": null, - "numero_insee": "83106" - } - }, - { - "pk": 16579, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "ROQUEBRUNE-SUR-ARGENS", - "center": "POINT (949759.8042402442079037 1834689.1259501602035016)", - "surface": 106920000, - "canton": null, - "numero_insee": "83107" - } - }, - { - "pk": 23932, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA ROQUEBRUSSANNE", - "center": "POINT (896109.5638878527097404 1821812.0929127207491547)", - "surface": 37340000, - "canton": null, - "numero_insee": "83108" - } - }, - { - "pk": 23773, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA ROQUE-ESCLAPON", - "center": "POINT (947676.5871367631480098 1867207.7377760033123195)", - "surface": 26920000, - "canton": null, - "numero_insee": "83109" - } - }, - { - "pk": 32432, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "ROUGIERS", - "center": "POINT (885158.2816373002715409 1826323.1294162292033434)", - "surface": 20860000, - "canton": null, - "numero_insee": "83110" - } - }, - { - "pk": 11720, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINTE-ANASTASIE-SUR-ISSOLE", - "center": "POINT (907621.8886393725406379 1821911.2383231904823333)", - "surface": 10770000, - "canton": null, - "numero_insee": "83111" - } - }, - { - "pk": 21807, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-CYR-SUR-MER", - "center": "POINT (874551.4601095946272835 1802404.5698533935938030)", - "surface": 21580000, - "canton": null, - "numero_insee": "83112" - } - }, - { - "pk": 24867, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-JULIEN", - "center": "POINT (888656.5972165095154196 1861893.3129530469886959)", - "surface": 76210000, - "canton": null, - "numero_insee": "83113" - } - }, - { - "pk": 18990, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-MARTIN-DE-PALLIERES", - "center": "POINT (887176.3520160051994026 1847764.7637782737147063)", - "surface": 26740000, - "canton": null, - "numero_insee": "83114" - } - }, - { - "pk": 31760, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINTE-MAXIME", - "center": "POINT (946926.8175246521132067 1826555.3849567926954478)", - "surface": 82350000, - "canton": null, - "numero_insee": "83115" - } - }, - { - "pk": 20090, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-MAXIMIN-LA-SAINTE-BAUME", - "center": "POINT (885492.4137756107375026 1834034.7760577728040516)", - "surface": 64680000, - "canton": null, - "numero_insee": "83116" - } - }, - { - "pk": 22663, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-PAUL-EN-FORET", - "center": "POINT (951429.2543705730931833 1850020.9020380568690598)", - "surface": 20310000, - "canton": null, - "numero_insee": "83117" - } - }, - { - "pk": 21556, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-RAPHAEL", - "center": "POINT (965341.7332157767377794 1838828.5042342105880380)", - "surface": 91030000, - "canton": null, - "numero_insee": "83118" - } - }, - { - "pk": 17036, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-TROPEZ", - "center": "POINT (951721.0152150852372870 1816285.0094942925497890)", - "surface": 11490000, - "canton": null, - "numero_insee": "83119" - } - }, - { - "pk": 27065, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-ZACHARIE", - "center": "POINT (874354.4890902424231172 1825329.2288547235075384)", - "surface": 27200000, - "canton": null, - "numero_insee": "83120" - } - }, - { - "pk": 14030, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SALERNES", - "center": "POINT (914707.0321512750815600 1847801.6409185295924544)", - "surface": 39590000, - "canton": null, - "numero_insee": "83121" - } - }, - { - "pk": 8867, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LES SALLES-SUR-VERDON", - "center": "POINT (911809.1583235370926559 1870401.9572214228101075)", - "surface": 12800000, - "canton": null, - "numero_insee": "83122" - } - }, - { - "pk": 5174, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SANARY-SUR-MER", - "center": "POINT (881789.3950628545135260 1798962.7141895422246307)", - "surface": 19820000, - "canton": null, - "numero_insee": "83123" - } - }, - { - "pk": 19117, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SEILLANS", - "center": "POINT (945246.6798138739541173 1858777.3370909136720002)", - "surface": 88960000, - "canton": null, - "numero_insee": "83124" - } - }, - { - "pk": 22598, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SEILLONS-SOURCE-D'ARGENS", - "center": "POINT (886532.4466294904705137 1841151.7730291634798050)", - "surface": 25120000, - "canton": null, - "numero_insee": "83125" - } - }, - { - "pk": 22451, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA SEYNE-SUR-MER", - "center": "POINT (888141.8850701218470931 1793711.1723308553919196)", - "surface": 23560000, - "canton": null, - "numero_insee": "83126" - } - }, - { - "pk": 16017, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SIGNES", - "center": "POINT (886159.1180872347904369 1814718.4395431925076991)", - "surface": 133370000, - "canton": null, - "numero_insee": "83127" - } - }, - { - "pk": 29480, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SILLANS-LA-CASCADE", - "center": "POINT (909599.9350420685950667 1847957.8410927678924054)", - "surface": 20240000, - "canton": null, - "numero_insee": "83128" - } - }, - { - "pk": 20125, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SIX-FOURS-LES-PLAGES", - "center": "POINT (884840.8652542969211936 1793382.4333681743592024)", - "surface": 26910000, - "canton": null, - "numero_insee": "83129" - } - }, - { - "pk": 29213, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SOLLIES-PONT", - "center": "POINT (903355.1271759304217994 1805856.0523617607541382)", - "surface": 17830000, - "canton": null, - "numero_insee": "83130" - } - }, - { - "pk": 15435, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SOLLIES-TOUCAS", - "center": "POINT (897029.3443795288912952 1808004.1294675718527287)", - "surface": 30100000, - "canton": null, - "numero_insee": "83131" - } - }, - { - "pk": 22796, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SOLLIES-VILLE", - "center": "POINT (899664.0480598466238007 1804322.5302820503711700)", - "surface": 14140000, - "canton": null, - "numero_insee": "83132" - } - }, - { - "pk": 22117, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TANNERON", - "center": "POINT (965428.3938439309131354 1851944.0803238044027239)", - "surface": 54380000, - "canton": null, - "numero_insee": "83133" - } - }, - { - "pk": 31049, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TARADEAU", - "center": "POINT (931616.3512156230863184 1837335.5398374414071441)", - "surface": 17430000, - "canton": null, - "numero_insee": "83134" - } - }, - { - "pk": 4243, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TAVERNES", - "center": "POINT (897759.0674465312622488 1851159.5556747226510197)", - "surface": 31280000, - "canton": null, - "numero_insee": "83135" - } - }, - { - "pk": 17143, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE THORONET", - "center": "POINT (919709.7666548532433808 1836531.9930470921099186)", - "surface": 36540000, - "canton": null, - "numero_insee": "83136" - } - }, - { - "pk": 15374, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TOURRETTES", - "center": "POINT (954383.9153446001000702 1855652.7644558963365853)", - "surface": 34150000, - "canton": null, - "numero_insee": "83138" - } - }, - { - "pk": 36617, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TOURTOUR", - "center": "POINT (921181.9255033560330048 1851561.6529432742390782)", - "surface": 28820000, - "canton": null, - "numero_insee": "83139" - } - }, - { - "pk": 12252, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TOURVES", - "center": "POINT (891137.1262949742376804 1829578.2132922299206257)", - "surface": 65860000, - "canton": null, - "numero_insee": "83140" - } - }, - { - "pk": 26840, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TRANS-EN-PROVENCE", - "center": "POINT (936179.7297805780544877 1842180.3935909585561603)", - "surface": 17030000, - "canton": null, - "numero_insee": "83141" - } - }, - { - "pk": 5112, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "TRIGANCE", - "center": "POINT (930445.7338633397594094 1868560.5232690945267677)", - "surface": 61000000, - "canton": null, - "numero_insee": "83142" - } - }, - { - "pk": 15965, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LE VAL", - "center": "POINT (901009.7468391165602952 1834068.2090599117800593)", - "surface": 39320000, - "canton": null, - "numero_insee": "83143" - } - }, - { - "pk": 10168, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA VALETTE-DU-VAR", - "center": "POINT (897790.4269267802592367 1801002.5728620365262032)", - "surface": 15400000, - "canton": null, - "numero_insee": "83144" - } - }, - { - "pk": 19588, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "VARAGES", - "center": "POINT (891558.5855949781835079 1850405.3954856339842081)", - "surface": 34780000, - "canton": null, - "numero_insee": "83145" - } - }, - { - "pk": 16046, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "LA VERDIERE", - "center": "POINT (892010.8666633227840066 1856015.5760873302351683)", - "surface": 68450000, - "canton": null, - "numero_insee": "83146" - } - }, - { - "pk": 29600, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "VERIGNON", - "center": "POINT (918013.0498775921296328 1859142.8488468579016626)", - "surface": 36650000, - "canton": null, - "numero_insee": "83147" - } - }, - { - "pk": 17145, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "VIDAUBAN", - "center": "POINT (933474.4510980430059135 1830844.1841747607104480)", - "surface": 76470000, - "canton": null, - "numero_insee": "83148" - } - }, - { - "pk": 33090, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "VILLECROZE", - "center": "POINT (919308.4237258872017264 1848241.7741333092562854)", - "surface": 20920000, - "canton": null, - "numero_insee": "83149" - } - }, - { - "pk": 31999, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "VINON-SUR-VERDON", - "center": "POINT (879928.5949913612566888 1864020.7000214508734643)", - "surface": 36080000, - "canton": null, - "numero_insee": "83150" - } - }, - { - "pk": 3531, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "VINS-SUR-CARAMY", - "center": "POINT (909026.8773226030170918 1833136.1372204511426389)", - "surface": 16370000, - "canton": null, - "numero_insee": "83151" - } - }, - { - "pk": 7144, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "RAYOL-CANADEL-SUR-MER", - "center": "POINT (936905.2638838351704180 1804543.5579777890816331)", - "surface": 6960000, - "canton": null, - "numero_insee": "83152" - } - }, - { - "pk": 3015, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-MANDRIER-SUR-MER", - "center": "POINT (892758.1050544604659081 1792449.3693616017699242)", - "surface": 5300000, - "canton": null, - "numero_insee": "83153" - } - }, - { - "pk": 23774, - "model": "ishtar_common.town", - "fields": { - "departement": 84, - "name": "SAINT-ANTONIN-DU-VAR", - "center": "POINT (919960.0025151907466352 1842340.7288178564049304)", - "surface": 17610000, - "canton": null, - "numero_insee": "83154" - } - }, - { - "pk": 24945, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "ANSOUIS", - "center": "POINT (852795.2490661540068686 1864388.3541626806836575)", - "surface": 17570000, - "canton": null, - "numero_insee": "84002" - } - }, - { - "pk": 23370, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "APT", - "center": "POINT (845553.1339091376867145 1880043.6382897356525064)", - "surface": 45090000, - "canton": null, - "numero_insee": "84003" - } - }, - { - "pk": 35940, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "AUBIGNAN", - "center": "POINT (815922.5956292654154822 1903215.4966410887427628)", - "surface": 15670000, - "canton": null, - "numero_insee": "84004" - } - }, - { - "pk": 13220, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "AUREL", - "center": "POINT (845006.5257556186988950 1908770.2709126449190080)", - "surface": 29290000, - "canton": null, - "numero_insee": "84005" - } - }, - { - "pk": 9569, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "AURIBEAU", - "center": "POINT (850504.5332363521447405 1874680.1350959909614176)", - "surface": 7470000, - "canton": null, - "numero_insee": "84006" - } - }, - { - "pk": 16597, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "AVIGNON", - "center": "POINT (801164.8521689615445212 1884669.3066849932074547)", - "surface": 64910000, - "canton": null, - "numero_insee": "84007" - } - }, - { - "pk": 31093, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LE BARROUX", - "center": "POINT (821072.1816753651946783 1909766.5762864737771451)", - "surface": 16030000, - "canton": null, - "numero_insee": "84008" - } - }, - { - "pk": 19750, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LA BASTIDE-DES-JOURDANS", - "center": "POINT (866650.3831796797458082 1871414.9395755743607879)", - "surface": 27720000, - "canton": null, - "numero_insee": "84009" - } - }, - { - "pk": 6080, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LA BASTIDONNE", - "center": "POINT (861543.8233992750756443 1859858.2959380887914449)", - "surface": 5880000, - "canton": null, - "numero_insee": "84010" - } - }, - { - "pk": 26495, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LE BEAUCET", - "center": "POINT (824446.7365527772344649 1889773.7201308817602694)", - "surface": 9030000, - "canton": null, - "numero_insee": "84011" - } - }, - { - "pk": 37724, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BEAUMES-DE-VENISE", - "center": "POINT (815597.4670614376664162 1906115.8563001097645611)", - "surface": 18960000, - "canton": null, - "numero_insee": "84012" - } - }, - { - "pk": 10290, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BEAUMETTES", - "center": "POINT (830656.6722875175764784 1877713.5861050751991570)", - "surface": 2630000, - "canton": null, - "numero_insee": "84013" - } - }, - { - "pk": 16622, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BEAUMONT-DE-PERTUIS", - "center": "POINT (870807.0863774474710226 1865343.8665995106566697)", - "surface": 53920000, - "canton": null, - "numero_insee": "84014" - } - }, - { - "pk": 31354, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BEAUMONT-DU-VENTOUX", - "center": "POINT (830152.1938853636384010 1913247.9606309020891786)", - "surface": 28230000, - "canton": null, - "numero_insee": "84015" - } - }, - { - "pk": 25494, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BEDARRIDES", - "center": "POINT (806162.3019904763204977 1897325.7636635280214250)", - "surface": 25080000, - "canton": null, - "numero_insee": "84016" - } - }, - { - "pk": 15406, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BEDOIN", - "center": "POINT (831996.8631940588820726 1908258.3629575739614666)", - "surface": 90580000, - "canton": null, - "numero_insee": "84017" - } - }, - { - "pk": 20066, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BLAUVAC", - "center": "POINT (833093.8903103750199080 1897055.6083082987461239)", - "surface": 21060000, - "canton": null, - "numero_insee": "84018" - } - }, - { - "pk": 35627, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BOLLENE", - "center": "POINT (792922.6938472735928372 1923741.2624113250058144)", - "surface": 54360000, - "canton": null, - "numero_insee": "84019" - } - }, - { - "pk": 19948, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BONNIEUX", - "center": "POINT (839698.5332704026950523 1873986.8362896977923810)", - "surface": 51450000, - "canton": null, - "numero_insee": "84020" - } - }, - { - "pk": 17180, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BRANTES", - "center": "POINT (839657.4391345193143934 1913829.9227589226793498)", - "surface": 28250000, - "canton": null, - "numero_insee": "84021" - } - }, - { - "pk": 31266, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BUISSON", - "center": "POINT (812850.2032903135986999 1923010.5403935008216649)", - "surface": 9470000, - "canton": null, - "numero_insee": "84022" - } - }, - { - "pk": 20360, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "BUOUX", - "center": "POINT (844607.0248153127031401 1873628.4616453503258526)", - "surface": 17600000, - "canton": null, - "numero_insee": "84023" - } - }, - { - "pk": 20952, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CABRIERES-D'AIGUES", - "center": "POINT (854143.4597749622771516 1870606.8088461882434785)", - "surface": 18920000, - "canton": null, - "numero_insee": "84024" - } - }, - { - "pk": 13895, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CABRIERES-D'AVIGNON", - "center": "POINT (826422.3605784157989547 1881181.1933023901656270)", - "surface": 14600000, - "canton": null, - "numero_insee": "84025" - } - }, - { - "pk": 28629, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CADENET", - "center": "POINT (845695.5910445818444714 1863426.4701793761923909)", - "surface": 25830000, - "canton": null, - "numero_insee": "84026" - } - }, - { - "pk": 35204, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CADEROUSSE", - "center": "POINT (792792.4176973612047732 1903818.7486963022965938)", - "surface": 32410000, - "canton": null, - "numero_insee": "84027" - } - }, - { - "pk": 31897, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CAIRANNE", - "center": "POINT (807589.4094930780120194 1917759.9999015035573393)", - "surface": 22800000, - "canton": null, - "numero_insee": "84028" - } - }, - { - "pk": 29049, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CAMARET-SUR-AIGUES", - "center": "POINT (803854.0261132989544421 1909719.4748441684059799)", - "surface": 18370000, - "canton": null, - "numero_insee": "84029" - } - }, - { - "pk": 27361, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CAROMB", - "center": "POINT (821913.2425214627292007 1905068.6920272377319634)", - "surface": 17880000, - "canton": null, - "numero_insee": "84030" - } - }, - { - "pk": 19929, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CARPENTRAS", - "center": "POINT (818461.0847035980550572 1899032.6492535613942891)", - "surface": 37830000, - "canton": null, - "numero_insee": "84031" - } - }, - { - "pk": 23261, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CASENEUVE", - "center": "POINT (852749.3736587188905105 1881406.7828671291936189)", - "surface": 18120000, - "canton": null, - "numero_insee": "84032" - } - }, - { - "pk": 13481, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CASTELLET", - "center": "POINT (853102.0645408002892509 1875303.0787285584956408)", - "surface": 9540000, - "canton": null, - "numero_insee": "84033" - } - }, - { - "pk": 36175, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CAUMONT-SUR-DURANCE", - "center": "POINT (810613.8372788737760857 1880144.9865318038500845)", - "surface": 18230000, - "canton": null, - "numero_insee": "84034" - } - }, - { - "pk": 26098, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CAVAILLON", - "center": "POINT (817258.2876482575666159 1875796.9465663987211883)", - "surface": 45910000, - "canton": null, - "numero_insee": "84035" - } - }, - { - "pk": 12652, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CHATEAUNEUF-DE-GADAGNE", - "center": "POINT (809378.3822305675130337 1884138.8232073721010238)", - "surface": 13490000, - "canton": null, - "numero_insee": "84036" - } - }, - { - "pk": 11438, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CHATEAUNEUF-DU-PAPE", - "center": "POINT (799645.4477076898328960 1898471.3989825192838907)", - "surface": 24770000, - "canton": null, - "numero_insee": "84037" - } - }, - { - "pk": 9368, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CHEVAL-BLANC", - "center": "POINT (824523.1036871041869745 1869151.6831247371155769)", - "surface": 58520000, - "canton": null, - "numero_insee": "84038" - } - }, - { - "pk": 26942, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "COURTHEZON", - "center": "POINT (803923.2965636276639998 1901611.3046760852448642)", - "surface": 32690000, - "canton": null, - "numero_insee": "84039" - } - }, - { - "pk": 9122, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CRESTET", - "center": "POINT (819818.7358430547174066 1915862.4219301976263523)", - "surface": 11410000, - "canton": null, - "numero_insee": "84040" - } - }, - { - "pk": 32879, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CRILLON-LE-BRAVE", - "center": "POINT (825410.7780986035941169 1905799.3807960199192166)", - "surface": 7680000, - "canton": null, - "numero_insee": "84041" - } - }, - { - "pk": 15363, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "CUCURON", - "center": "POINT (850353.2623472528066486 1868972.5227610236033797)", - "surface": 32510000, - "canton": null, - "numero_insee": "84042" - } - }, - { - "pk": 5082, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "ENTRAIGUES-SUR-LA-SORGUE", - "center": "POINT (808414.1536199896363541 1891538.6846703090704978)", - "surface": 16730000, - "canton": null, - "numero_insee": "84043" - } - }, - { - "pk": 7018, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "ENTRECHAUX", - "center": "POINT (823609.6915674977935851 1917396.4709613895975053)", - "surface": 14870000, - "canton": null, - "numero_insee": "84044" - } - }, - { - "pk": 35682, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "FAUCON", - "center": "POINT (824182.0205946761416271 1920704.9084116460289806)", - "surface": 8740000, - "canton": null, - "numero_insee": "84045" - } - }, - { - "pk": 24283, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "FLASSAN", - "center": "POINT (834536.2510532306041569 1903975.4584175108466297)", - "surface": 20810000, - "canton": null, - "numero_insee": "84046" - } - }, - { - "pk": 36621, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "GARGAS", - "center": "POINT (841734.6425663550617173 1881712.7791692698374391)", - "surface": 14870000, - "canton": null, - "numero_insee": "84047" - } - }, - { - "pk": 19746, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "GIGNAC", - "center": "POINT (856014.1106504935305566 1885939.7402691333554685)", - "surface": 8120000, - "canton": null, - "numero_insee": "84048" - } - }, - { - "pk": 21746, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "GIGONDAS", - "center": "POINT (814155.8255496661877260 1910808.6042610050644726)", - "surface": 27080000, - "canton": null, - "numero_insee": "84049" - } - }, - { - "pk": 16036, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "GORDES", - "center": "POINT (830013.2017439609626308 1882713.5823249663226306)", - "surface": 48960000, - "canton": null, - "numero_insee": "84050" - } - }, - { - "pk": 17744, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "GOULT", - "center": "POINT (834155.9890077046584338 1878244.1036790898069739)", - "surface": 23890000, - "canton": null, - "numero_insee": "84051" - } - }, - { - "pk": 3130, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "GRAMBOIS", - "center": "POINT (863280.3833453429397196 1867481.6722745904698968)", - "surface": 31240000, - "canton": null, - "numero_insee": "84052" - } - }, - { - "pk": 30173, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "GRILLON", - "center": "POINT (807033.3153895942959934 1935974.6535504194907844)", - "surface": 15020000, - "canton": null, - "numero_insee": "84053" - } - }, - { - "pk": 3465, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "L'ISLE-SUR-LA-SORGUE", - "center": "POINT (818599.7950238452758640 1882816.1301522101275623)", - "surface": 44640000, - "canton": null, - "numero_insee": "84054" - } - }, - { - "pk": 5583, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "JONQUERETTES", - "center": "POINT (809457.9511196431703866 1886542.1354522465262562)", - "surface": 2600000, - "canton": null, - "numero_insee": "84055" - } - }, - { - "pk": 10917, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "JONQUIERES", - "center": "POINT (806282.1008300413377583 1906736.9811791134998202)", - "surface": 24310000, - "canton": null, - "numero_insee": "84056" - } - }, - { - "pk": 31145, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "JOUCAS", - "center": "POINT (834299.6082907943055034 1884852.5955527825281024)", - "surface": 8330000, - "canton": null, - "numero_insee": "84057" - } - }, - { - "pk": 31350, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LACOSTE", - "center": "POINT (835797.0792560549452901 1873653.0798957864753902)", - "surface": 10710000, - "canton": null, - "numero_insee": "84058" - } - }, - { - "pk": 8757, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LAFARE", - "center": "POINT (817169.1147939647780731 1909633.0794606816489249)", - "surface": 4540000, - "canton": null, - "numero_insee": "84059" - } - }, - { - "pk": 36419, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LAGARDE-D'APT", - "center": "POINT (852459.0037430685479194 1891915.8120956514030695)", - "surface": 22320000, - "canton": null, - "numero_insee": "84060" - } - }, - { - "pk": 27682, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LAGARDE-PAREOL", - "center": "POINT (800987.0857994987163693 1917203.0541010373272002)", - "surface": 9320000, - "canton": null, - "numero_insee": "84061" - } - }, - { - "pk": 23235, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LAMOTTE-DU-RHONE", - "center": "POINT (786729.3331073934677988 1922186.8092396461870521)", - "surface": 12050000, - "canton": null, - "numero_insee": "84063" - } - }, - { - "pk": 22762, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LAPALUD", - "center": "POINT (787000.5966271965298802 1925592.7542535841930658)", - "surface": 17530000, - "canton": null, - "numero_insee": "84064" - } - }, - { - "pk": 7491, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LAURIS", - "center": "POINT (839058.7067334598395973 1866873.4834376908838749)", - "surface": 22470000, - "canton": null, - "numero_insee": "84065" - } - }, - { - "pk": 23301, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LIOUX", - "center": "POINT (838652.6536742188036442 1890896.4609817108139396)", - "surface": 38730000, - "canton": null, - "numero_insee": "84066" - } - }, - { - "pk": 34764, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LORIOL-DU-COMTAT", - "center": "POINT (813841.8711228903848678 1900694.9919495200738311)", - "surface": 11200000, - "canton": null, - "numero_insee": "84067" - } - }, - { - "pk": 8474, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LOURMARIN", - "center": "POINT (844048.4499811335699633 1868718.2435941067524254)", - "surface": 20220000, - "canton": null, - "numero_insee": "84068" - } - }, - { - "pk": 17179, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MALAUCENE", - "center": "POINT (825042.7921520745148882 1913704.7582699758931994)", - "surface": 45440000, - "canton": null, - "numero_insee": "84069" - } - }, - { - "pk": 13894, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MALEMORT-DU-COMTAT", - "center": "POINT (827105.7920486832736060 1894902.0487566296942532)", - "surface": 11980000, - "canton": null, - "numero_insee": "84070" - } - }, - { - "pk": 24157, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MAUBEC", - "center": "POINT (825473.5934432226931676 1875066.3477725062984973)", - "surface": 9240000, - "canton": null, - "numero_insee": "84071" - } - }, - { - "pk": 17797, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MAZAN", - "center": "POINT (823970.0870838983682916 1898679.3482658471912146)", - "surface": 37970000, - "canton": null, - "numero_insee": "84072" - } - }, - { - "pk": 29698, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MENERBES", - "center": "POINT (832195.0763720376417041 1873422.0094077999237925)", - "surface": 30360000, - "canton": null, - "numero_insee": "84073" - } - }, - { - "pk": 9978, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MERINDOL", - "center": "POINT (830853.6271865917369723 1866402.7625056274700910)", - "surface": 27080000, - "canton": null, - "numero_insee": "84074" - } - }, - { - "pk": 3561, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "METHAMIS", - "center": "POINT (834017.0960336051648483 1894460.6816323464736342)", - "surface": 36900000, - "canton": null, - "numero_insee": "84075" - } - }, - { - "pk": 28089, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MIRABEAU", - "center": "POINT (866735.4932124093174934 1861504.6581165960524231)", - "surface": 31520000, - "canton": null, - "numero_insee": "84076" - } - }, - { - "pk": 20457, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MODENE", - "center": "POINT (823620.9549421533010900 1904382.5469661063980311)", - "surface": 4760000, - "canton": null, - "numero_insee": "84077" - } - }, - { - "pk": 20244, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MONDRAGON", - "center": "POINT (790864.1711019903887063 1918618.2361823478713632)", - "surface": 40550000, - "canton": null, - "numero_insee": "84078" - } - }, - { - "pk": 33579, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MONIEUX", - "center": "POINT (840880.3642470468766987 1899625.0376674216240644)", - "surface": 47650000, - "canton": null, - "numero_insee": "84079" - } - }, - { - "pk": 35687, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MONTEUX", - "center": "POINT (812380.5749947415897623 1895977.3874849092680961)", - "surface": 39420000, - "canton": null, - "numero_insee": "84080" - } - }, - { - "pk": 11579, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MORIERES-LES-AVIGNON", - "center": "POINT (806670.4840403459966183 1884716.3404022110626101)", - "surface": 10420000, - "canton": null, - "numero_insee": "84081" - } - }, - { - "pk": 6402, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MORMOIRON", - "center": "POINT (828758.6719135486055166 1900622.4014605754055083)", - "surface": 25200000, - "canton": null, - "numero_insee": "84082" - } - }, - { - "pk": 35859, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MORNAS", - "center": "POINT (792202.2067629125667736 1914325.0397557877004147)", - "surface": 26050000, - "canton": null, - "numero_insee": "84083" - } - }, - { - "pk": 31464, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LA MOTTE-D'AIGUES", - "center": "POINT (856552.8160566004225984 1869826.5935360584408045)", - "surface": 14660000, - "canton": null, - "numero_insee": "84084" - } - }, - { - "pk": 16210, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "MURS", - "center": "POINT (833462.7812878878321499 1889050.0328916646540165)", - "surface": 31500000, - "canton": null, - "numero_insee": "84085" - } - }, - { - "pk": 25797, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "OPPEDE", - "center": "POINT (828085.7009946955367923 1873987.4897862600628287)", - "surface": 24370000, - "canton": null, - "numero_insee": "84086" - } - }, - { - "pk": 25426, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "ORANGE", - "center": "POINT (798078.1102667007362470 1906166.3616764447651803)", - "surface": 74410000, - "canton": null, - "numero_insee": "84087" - } - }, - { - "pk": 15986, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "PERNES-LES-FONTAINES", - "center": "POINT (816919.3914620581781492 1892011.8360615423880517)", - "surface": 51040000, - "canton": null, - "numero_insee": "84088" - } - }, - { - "pk": 18385, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "PERTUIS", - "center": "POINT (856945.0377058116719127 1859118.0451161132659763)", - "surface": 59230000, - "canton": null, - "numero_insee": "84089" - } - }, - { - "pk": 34853, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "PIOLENC", - "center": "POINT (794329.0917287024203688 1911440.0733516246546060)", - "surface": 24640000, - "canton": null, - "numero_insee": "84091" - } - }, - { - "pk": 12935, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LE PONTET", - "center": "POINT (803035.1590518333250657 1888389.3359606212470680)", - "surface": 10740000, - "canton": null, - "numero_insee": "84092" - } - }, - { - "pk": 30923, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "PUGET", - "center": "POINT (835349.7231778440764174 1867442.3764082975685596)", - "surface": 19610000, - "canton": null, - "numero_insee": "84093" - } - }, - { - "pk": 14805, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "PUYMERAS", - "center": "POINT (823550.5819301439914852 1924303.3562948601320386)", - "surface": 14770000, - "canton": null, - "numero_insee": "84094" - } - }, - { - "pk": 23260, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "PUYVERT", - "center": "POINT (841973.7264183420920745 1865496.9059835446532816)", - "surface": 10010000, - "canton": null, - "numero_insee": "84095" - } - }, - { - "pk": 5828, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "RASTEAU", - "center": "POINT (811290.5416903601726517 1918091.9577033438254148)", - "surface": 18960000, - "canton": null, - "numero_insee": "84096" - } - }, - { - "pk": 27749, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "RICHERENCHES", - "center": "POINT (804768.6798271902371198 1931550.6321884265635163)", - "surface": 11040000, - "canton": null, - "numero_insee": "84097" - } - }, - { - "pk": 20373, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "ROAIX", - "center": "POINT (813970.9859861091244966 1920717.6625013332813978)", - "surface": 5860000, - "canton": null, - "numero_insee": "84098" - } - }, - { - "pk": 22825, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "ROBION", - "center": "POINT (823161.7992973395157605 1876147.7793467771261930)", - "surface": 17860000, - "canton": null, - "numero_insee": "84099" - } - }, - { - "pk": 12653, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LA ROQUE-ALRIC", - "center": "POINT (818680.0428283725632355 1908544.8157964854035527)", - "surface": 4880000, - "canton": null, - "numero_insee": "84100" - } - }, - { - "pk": 17377, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "ROUSSILLON", - "center": "POINT (837626.1445386867271736 1882178.1242066544946283)", - "surface": 30160000, - "canton": null, - "numero_insee": "84102" - } - }, - { - "pk": 28409, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "RUSTREL", - "center": "POINT (852210.2192960192915052 1885907.1049316562712193)", - "surface": 28810000, - "canton": null, - "numero_insee": "84103" - } - }, - { - "pk": 9125, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SABLET", - "center": "POINT (813127.4323426778428257 1914003.2575376944150776)", - "surface": 11040000, - "canton": null, - "numero_insee": "84104" - } - }, - { - "pk": 29908, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINTE-CECILE-LES-VIGNES", - "center": "POINT (803981.5340687249554321 1918229.7071261485107243)", - "surface": 20050000, - "canton": null, - "numero_insee": "84106" - } - }, - { - "pk": 36176, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-CHRISTOL", - "center": "POINT (854015.1167258291970938 1897234.9465191573835909)", - "surface": 46380000, - "canton": null, - "numero_insee": "84107" - } - }, - { - "pk": 22717, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-DIDIER", - "center": "POINT (822411.2909404214005917 1893660.5631311042234302)", - "surface": 3670000, - "canton": null, - "numero_insee": "84108" - } - }, - { - "pk": 37104, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-HIPPOLYTE-LE-GRAVEYRON", - "center": "POINT (819403.8684657277772203 1905848.0888502129819244)", - "surface": 4940000, - "canton": null, - "numero_insee": "84109" - } - }, - { - "pk": 36396, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-LEGER-DU-VENTOUX", - "center": "POINT (834633.5585645670071244 1915989.2460095286369324)", - "surface": 19400000, - "canton": null, - "numero_insee": "84110" - } - }, - { - "pk": 11941, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-MARCELLIN-LES-VAISON", - "center": "POINT (820993.3871310286922380 1918975.8000274780206382)", - "surface": 3530000, - "canton": null, - "numero_insee": "84111" - } - }, - { - "pk": 15442, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-MARTIN-DE-CASTILLON", - "center": "POINT (856084.5451331435469911 1877731.3181407782249153)", - "surface": 38350000, - "canton": null, - "numero_insee": "84112" - } - }, - { - "pk": 11520, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-MARTIN-DE-LA-BRASQUE", - "center": "POINT (858173.3732028312515467 1867638.0572480852715671)", - "surface": 5580000, - "canton": null, - "numero_insee": "84113" - } - }, - { - "pk": 4254, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-PANTALEON", - "center": "POINT (831643.9871019800193608 1879323.8038318299222738)", - "surface": 790000, - "canton": null, - "numero_insee": "84114" - } - }, - { - "pk": 26493, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-PIERRE-DE-VASSOLS", - "center": "POINT (824931.6918653950560838 1903292.5724150387104601)", - "surface": 4990000, - "canton": null, - "numero_insee": "84115" - } - }, - { - "pk": 29909, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-ROMAIN-EN-VIENNOIS", - "center": "POINT (820870.1627298197709024 1921677.6387268006801605)", - "surface": 9100000, - "canton": null, - "numero_insee": "84116" - } - }, - { - "pk": 29045, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-ROMAN-DE-MALEGARDE", - "center": "POINT (809359.5514027167810127 1921479.0942820643540472)", - "surface": 8530000, - "canton": null, - "numero_insee": "84117" - } - }, - { - "pk": 23951, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-SATURNIN-LES-APT", - "center": "POINT (843875.9780848331283778 1888838.9276149990037084)", - "surface": 76750000, - "canton": null, - "numero_insee": "84118" - } - }, - { - "pk": 5127, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-SATURNIN-LES-AVIGNON", - "center": "POINT (809145.6666744572576135 1887940.9999040681868792)", - "surface": 6210000, - "canton": null, - "numero_insee": "84119" - } - }, - { - "pk": 12661, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAINT-TRINIT", - "center": "POINT (851751.0565683286404237 1904423.3482727752998471)", - "surface": 16860000, - "canton": null, - "numero_insee": "84120" - } - }, - { - "pk": 11869, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SANNES", - "center": "POINT (854076.8487932690186426 1866701.9071256392635405)", - "surface": 4580000, - "canton": null, - "numero_insee": "84121" - } - }, - { - "pk": 28177, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SARRIANS", - "center": "POINT (809915.6763679170981050 1903264.2468320119660348)", - "surface": 37670000, - "canton": null, - "numero_insee": "84122" - } - }, - { - "pk": 33122, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAULT", - "center": "POINT (845468.7213485047686845 1901566.4331942880526185)", - "surface": 112030000, - "canton": null, - "numero_insee": "84123" - } - }, - { - "pk": 4530, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAUMANE-DE-VAUCLUSE", - "center": "POINT (822979.4678095461567864 1885756.7825880078598857)", - "surface": 20980000, - "canton": null, - "numero_insee": "84124" - } - }, - { - "pk": 6104, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SAVOILLAN", - "center": "POINT (842970.1889183905441314 1912757.1308713690377772)", - "surface": 8880000, - "canton": null, - "numero_insee": "84125" - } - }, - { - "pk": 14458, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SEGURET", - "center": "POINT (815208.9931049352744594 1916423.6371192580554634)", - "surface": 21140000, - "canton": null, - "numero_insee": "84126" - } - }, - { - "pk": 8619, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SERIGNAN-DU-COMTAT", - "center": "POINT (800818.5200424779905006 1913497.6385209716390818)", - "surface": 20260000, - "canton": null, - "numero_insee": "84127" - } - }, - { - "pk": 9494, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SIVERGUES", - "center": "POINT (847908.7164471480064094 1873856.9896489763632417)", - "surface": 9450000, - "canton": null, - "numero_insee": "84128" - } - }, - { - "pk": 31878, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SORGUES", - "center": "POINT (803090.7954538322519511 1893595.4918668242171407)", - "surface": 33510000, - "canton": null, - "numero_insee": "84129" - } - }, - { - "pk": 31996, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "SUZETTE", - "center": "POINT (818053.7516469499096274 1911542.6953571762423962)", - "surface": 6800000, - "canton": null, - "numero_insee": "84130" - } - }, - { - "pk": 7499, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "TAILLADES", - "center": "POINT (821980.2612026472343132 1873835.1291014053858817)", - "surface": 6890000, - "canton": null, - "numero_insee": "84131" - } - }, - { - "pk": 15397, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LE THOR", - "center": "POINT (813481.7267983006313443 1884274.0096042393706739)", - "surface": 35530000, - "canton": null, - "numero_insee": "84132" - } - }, - { - "pk": 22884, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "LA TOUR-D'AIGUES", - "center": "POINT (860515.2846163575304672 1863053.0377295187208802)", - "surface": 41410000, - "canton": null, - "numero_insee": "84133" - } - }, - { - "pk": 37586, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "TRAVAILLAN", - "center": "POINT (805726.8554768709000200 1913139.1400453683454543)", - "surface": 17940000, - "canton": null, - "numero_insee": "84134" - } - }, - { - "pk": 7697, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "UCHAUX", - "center": "POINT (797095.1512858819914982 1915768.3139323415234685)", - "surface": 18730000, - "canton": null, - "numero_insee": "84135" - } - }, - { - "pk": 17739, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VACQUEYRAS", - "center": "POINT (811573.7507005375809968 1908383.9377892690245062)", - "surface": 9000000, - "canton": null, - "numero_insee": "84136" - } - }, - { - "pk": 16298, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VAISON-LA-ROMAINE", - "center": "POINT (817680.6714178702095523 1920048.6392216607928276)", - "surface": 27100000, - "canton": null, - "numero_insee": "84137" - } - }, - { - "pk": 18587, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VALREAS", - "center": "POINT (811853.4552655129227787 1934213.9477780943270773)", - "surface": 58760000, - "canton": null, - "numero_insee": "84138" - } - }, - { - "pk": 31144, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VEDENE", - "center": "POINT (806134.9037064204458147 1888816.2560446823481470)", - "surface": 11470000, - "canton": null, - "numero_insee": "84141" - } - }, - { - "pk": 22763, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VELLERON", - "center": "POINT (816151.9627236247761175 1888101.0081890837755054)", - "surface": 16460000, - "canton": null, - "numero_insee": "84142" - } - }, - { - "pk": 20835, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VENASQUE", - "center": "POINT (827038.2510700544808060 1891097.3221991539467126)", - "surface": 35010000, - "canton": null, - "numero_insee": "84143" - } - }, - { - "pk": 15005, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VIENS", - "center": "POINT (859140.4834236614406109 1883263.6037961710244417)", - "surface": 35160000, - "canton": null, - "numero_insee": "84144" - } - }, - { - "pk": 18165, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VILLARS", - "center": "POINT (848786.1352045179810375 1888280.3692879313603044)", - "surface": 30190000, - "canton": null, - "numero_insee": "84145" - } - }, - { - "pk": 8103, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VILLEDIEU", - "center": "POINT (816440.9470707265427336 1924542.8501166198402643)", - "surface": 11560000, - "canton": null, - "numero_insee": "84146" - } - }, - { - "pk": 32623, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VILLELAURE", - "center": "POINT (849620.2508226666832343 1861057.4451869102194905)", - "surface": 18050000, - "canton": null, - "numero_insee": "84147" - } - }, - { - "pk": 26492, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VILLES-SUR-AUZON", - "center": "POINT (834066.6119784766342491 1900367.5289795531425625)", - "surface": 27190000, - "canton": null, - "numero_insee": "84148" - } - }, - { - "pk": 24556, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VIOLES", - "center": "POINT (809242.3450320806587115 1911767.6760875342879444)", - "surface": 14650000, - "canton": null, - "numero_insee": "84149" - } - }, - { - "pk": 18554, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VISAN", - "center": "POINT (808098.4674689217936248 1928475.7893830284010619)", - "surface": 42220000, - "canton": null, - "numero_insee": "84150" - } - }, - { - "pk": 21550, - "model": "ishtar_common.town", - "fields": { - "departement": 85, - "name": "VITROLLES-EN-LUBERON", - "center": "POINT (862629.0553934453055263 1873382.6254385078791529)", - "surface": 16090000, - "canton": null, - "numero_insee": "84151" - } - }, - { - "pk": 2255, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'AIGUILLON-SUR-MER", - "center": "POINT (324276.6377050703740679 2149547.8983489237725735)", - "surface": 10160000, - "canton": null, - "numero_insee": "85001" - } - }, - { - "pk": 1698, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'AIGUILLON-SUR-VIE", - "center": "POINT (281575.9447110105538741 2194038.7392578269354999)", - "surface": 23190000, - "canton": null, - "numero_insee": "85002" - } - }, - { - "pk": 2486, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "AIZENAY", - "center": "POINT (297234.5951987884473056 2200772.1419017598964274)", - "surface": 81990000, - "canton": null, - "numero_insee": "85003" - } - }, - { - "pk": 1750, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "ANGLES", - "center": "POINT (312673.7935299055534415 2160863.2028324482962489)", - "surface": 33420000, - "canton": null, - "numero_insee": "85004" - } - }, - { - "pk": 2157, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "ANTIGNY", - "center": "POINT (362323.2830567572964355 2184590.5161592485383153)", - "surface": 22370000, - "canton": null, - "numero_insee": "85005" - } - }, - { - "pk": 1821, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "APREMONT", - "center": "POINT (288006.0672489898279309 2203299.0963499322533607)", - "surface": 30140000, - "canton": null, - "numero_insee": "85006" - } - }, - { - "pk": 2117, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "AUBIGNY", - "center": "POINT (308672.7603269133251160 2185051.8469520662911236)", - "surface": 25990000, - "canton": null, - "numero_insee": "85008" - } - }, - { - "pk": 2677, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "AUZAY", - "center": "POINT (353169.3583697064314038 2165798.9426969876512885)", - "surface": 13800000, - "canton": null, - "numero_insee": "85009" - } - }, - { - "pk": 2845, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "AVRILLE", - "center": "POINT (305785.6122986473492347 2170915.8772619264200330)", - "surface": 25540000, - "canton": null, - "numero_insee": "85010" - } - }, - { - "pk": 2789, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BARBATRE", - "center": "POINT (257206.0341598854283802 2224666.7311348160728812)", - "surface": 12640000, - "canton": null, - "numero_insee": "85011" - } - }, - { - "pk": 2505, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA BARRE-DE-MONTS", - "center": "POINT (261968.2947750074090436 2217499.3576184897683561)", - "surface": 27290000, - "canton": null, - "numero_insee": "85012" - } - }, - { - "pk": 2976, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BAZOGES-EN-PAILLERS", - "center": "POINT (334915.4158521992503665 2219295.7227073451504111)", - "surface": 11570000, - "canton": null, - "numero_insee": "85013" - } - }, - { - "pk": 1987, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BAZOGES-EN-PAREDS", - "center": "POINT (351272.5667846393189393 2189604.2557317814789712)", - "surface": 33890000, - "canton": null, - "numero_insee": "85014" - } - }, - { - "pk": 2297, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BEAUFOU", - "center": "POINT (305471.7097768235835247 2209346.6807350832968950)", - "surface": 27970000, - "canton": null, - "numero_insee": "85015" - } - }, - { - "pk": 1959, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BEAULIEU-SOUS-LA-ROCHE", - "center": "POINT (297181.0716442281263880 2195066.7844935813918710)", - "surface": 25770000, - "canton": null, - "numero_insee": "85016" - } - }, - { - "pk": 2382, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BEAUREPAIRE", - "center": "POINT (338134.3033075053244829 2217320.3948069089092314)", - "surface": 24490000, - "canton": null, - "numero_insee": "85017" - } - }, - { - "pk": 2490, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BEAUVOIR-SUR-MER", - "center": "POINT (264938.8908237472642213 2221426.8286436004564166)", - "surface": 35090000, - "canton": null, - "numero_insee": "85018" - } - }, - { - "pk": 1820, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BELLEVILLE-SUR-VIE", - "center": "POINT (312219.5143295807647519 2204197.3574361391365528)", - "surface": 15250000, - "canton": null, - "numero_insee": "85019" - } - }, - { - "pk": 2471, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BENET", - "center": "POINT (372965.2825816419208422 2156252.8959196754731238)", - "surface": 50290000, - "canton": null, - "numero_insee": "85020" - } - }, - { - "pk": 2371, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA BERNARDIERE", - "center": "POINT (325699.4236101033166051 2232531.4652335061691701)", - "surface": 14790000, - "canton": null, - "numero_insee": "85021" - } - }, - { - "pk": 2161, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE BERNARD", - "center": "POINT (309914.3150127534172498 2167846.8680894342251122)", - "surface": 27540000, - "canton": null, - "numero_insee": "85022" - } - }, - { - "pk": 2050, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BESSAY", - "center": "POINT (331057.9134279027930461 2177027.7614760389551520)", - "surface": 10760000, - "canton": null, - "numero_insee": "85023" - } - }, - { - "pk": 2054, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BOIS-DE-CENE", - "center": "POINT (277820.4187172826495953 2225034.6453178413212299)", - "surface": 42710000, - "canton": null, - "numero_insee": "85024" - } - }, - { - "pk": 2689, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA BOISSIERE-DE-MONTAIGU", - "center": "POINT (331489.0088140054140240 2222170.1165209300816059)", - "surface": 29220000, - "canton": null, - "numero_insee": "85025" - } - }, - { - "pk": 2006, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA BOISSIERE-DES-LANDES", - "center": "POINT (310214.8610315325786360 2180060.0746363350190222)", - "surface": 23830000, - "canton": null, - "numero_insee": "85026" - } - }, - { - "pk": 2449, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BOUFFERE", - "center": "POINT (320063.7860595592064783 2224078.3188938298262656)", - "surface": 16530000, - "canton": null, - "numero_insee": "85027" - } - }, - { - "pk": 1906, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BOUILLE-COURDAULT", - "center": "POINT (367643.6390817645005882 2158311.0335181257687509)", - "surface": 9750000, - "canton": null, - "numero_insee": "85028" - } - }, - { - "pk": 2235, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BOUIN", - "center": "POINT (269879.2561906421324238 2229273.6067353766411543)", - "surface": 52240000, - "canton": null, - "numero_insee": "85029" - } - }, - { - "pk": 1773, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BOULOGNE", - "center": "POINT (322522.7476516654714942 2204882.1157308858819306)", - "surface": 12440000, - "canton": null, - "numero_insee": "85030" - } - }, - { - "pk": 1588, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE BOUPERE", - "center": "POINT (350555.5223230509436689 2203810.6224101176485419)", - "surface": 43660000, - "canton": null, - "numero_insee": "85031" - } - }, - { - "pk": 2996, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BOURNEAU", - "center": "POINT (358384.1458509634248912 2176751.3532147766090930)", - "surface": 16330000, - "canton": null, - "numero_insee": "85033" - } - }, - { - "pk": 2082, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BOURNEZEAU", - "center": "POINT (333779.0391601015580818 2186958.7002887898124754)", - "surface": 61070000, - "canton": null, - "numero_insee": "85034" - } - }, - { - "pk": 2426, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BRETIGNOLLES-SUR-MER", - "center": "POINT (278602.0816866094246507 2190511.4684760840609670)", - "surface": 27330000, - "canton": null, - "numero_insee": "85035" - } - }, - { - "pk": 2917, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA BRETONNIERE-LA-CLAYE", - "center": "POINT (323294.9858982833102345 2171659.5555236143991351)", - "surface": 16440000, - "canton": null, - "numero_insee": "85036" - } - }, - { - "pk": 2810, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BREUIL-BARRET", - "center": "POINT (369703.7379831235157326 2187753.8395844730548561)", - "surface": 14910000, - "canton": null, - "numero_insee": "85037" - } - }, - { - "pk": 2592, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES BROUZILS", - "center": "POINT (320530.3916953180450946 2215975.2861932679079473)", - "surface": 41670000, - "canton": null, - "numero_insee": "85038" - } - }, - { - "pk": 1746, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA BRUFFIERE", - "center": "POINT (332427.5140120536088943 2229784.1882658144459128)", - "surface": 40650000, - "canton": null, - "numero_insee": "85039" - } - }, - { - "pk": 1722, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CAILLERE-SAINT-HILAIRE", - "center": "POINT (349699.1942072167294100 2186188.3945902427658439)", - "surface": 15420000, - "canton": null, - "numero_insee": "85040" - } - }, - { - "pk": 1543, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CEZAIS", - "center": "POINT (359445.5992525247856975 2181564.2706371210515499)", - "surface": 12230000, - "canton": null, - "numero_insee": "85041" - } - }, - { - "pk": 2892, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAILLE-LES-MARAIS", - "center": "POINT (342613.1824291810626164 2159306.6804100065492094)", - "surface": 40100000, - "canton": null, - "numero_insee": "85042" - } - }, - { - "pk": 2574, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAILLE-SOUS-LES-ORMEAUX", - "center": "POINT (316118.8188194460235536 2180208.4220870253629982)", - "surface": 17550000, - "canton": null, - "numero_insee": "85043" - } - }, - { - "pk": 1808, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAIX", - "center": "POINT (354592.6797844585962594 2163108.2268194318749011)", - "surface": 7410000, - "canton": null, - "numero_insee": "85044" - } - }, - { - "pk": 1781, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHAIZE-GIRAUD", - "center": "POINT (281997.4712665103143081 2191439.9183393232524395)", - "surface": 2780000, - "canton": null, - "numero_insee": "85045" - } - }, - { - "pk": 1552, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHAIZE-LE-VICOMTE", - "center": "POINT (322425.7458574000629596 2192270.4617830002680421)", - "surface": 49730000, - "canton": null, - "numero_insee": "85046" - } - }, - { - "pk": 2982, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHALLANS", - "center": "POINT (281526.7787049582111649 2212354.0721965529955924)", - "surface": 65470000, - "canton": null, - "numero_insee": "85047" - } - }, - { - "pk": 2832, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAMBRETAUD", - "center": "POINT (347834.4806963359005749 2218300.6558636892586946)", - "surface": 16220000, - "canton": null, - "numero_insee": "85048" - } - }, - { - "pk": 2749, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAMPAGNE-LES-MARAIS", - "center": "POINT (333011.8261563440901227 2158427.2960754595696926)", - "surface": 49820000, - "canton": null, - "numero_insee": "85049" - } - }, - { - "pk": 2923, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE CHAMP-SAINT-PERE", - "center": "POINT (317963.6534153213724494 2174918.8531796014867723)", - "surface": 24740000, - "canton": null, - "numero_insee": "85050" - } - }, - { - "pk": 2571, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHANTONNAY", - "center": "POINT (341353.1556689107092097 2190924.1397729348391294)", - "surface": 83820000, - "canton": null, - "numero_insee": "85051" - } - }, - { - "pk": 2415, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHAPELLE-ACHARD", - "center": "POINT (293668.0149608069914393 2184028.5500715649686754)", - "surface": 21830000, - "canton": null, - "numero_insee": "85052" - } - }, - { - "pk": 2556, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHAPELLE-AUX-LYS", - "center": "POINT (371832.5644977745832875 2184468.4627279182896018)", - "surface": 10680000, - "canton": null, - "numero_insee": "85053" - } - }, - { - "pk": 2573, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHAPELLE-HERMIER", - "center": "POINT (289675.8956117028719746 2194905.4672308089211583)", - "surface": 18130000, - "canton": null, - "numero_insee": "85054" - } - }, - { - "pk": 1999, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHAPELLE-PALLUAU", - "center": "POINT (297590.8068891038419679 2206179.6875508730299771)", - "surface": 12950000, - "canton": null, - "numero_insee": "85055" - } - }, - { - "pk": 2721, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHAPELLE-THEMER", - "center": "POINT (347255.4534075513365678 2179062.1521107200533152)", - "surface": 15160000, - "canton": null, - "numero_insee": "85056" - } - }, - { - "pk": 1590, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHASNAIS", - "center": "POINT (325335.9312601667479612 2166872.0119463591836393)", - "surface": 10850000, - "canton": null, - "numero_insee": "85058" - } - }, - { - "pk": 2722, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA CHATAIGNERAIE", - "center": "POINT (364506.1462490573176183 2186910.4451017403043807)", - "surface": 7960000, - "canton": null, - "numero_insee": "85059" - } - }, - { - "pk": 2318, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHATEAU-D'OLONNE", - "center": "POINT (288546.2517656395211816 2173877.9023317494429648)", - "surface": 31290000, - "canton": null, - "numero_insee": "85060" - } - }, - { - "pk": 2437, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHATEAU-GUIBERT", - "center": "POINT (324718.4061855822801590 2181179.5519878296181560)", - "surface": 35180000, - "canton": null, - "numero_insee": "85061" - } - }, - { - "pk": 2538, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHATEAUNEUF", - "center": "POINT (275445.4488258451456204 2221712.5160513049922884)", - "surface": 16030000, - "canton": null, - "numero_insee": "85062" - } - }, - { - "pk": 2307, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES CHATELLIERS-CHATEAUMUR", - "center": "POINT (358191.7819499267498031 2212380.5323321190662682)", - "surface": 18330000, - "canton": null, - "numero_insee": "85063" - } - }, - { - "pk": 2379, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAUCHE", - "center": "POINT (324787.7165109644411132 2209404.4947688826359808)", - "surface": 41880000, - "canton": null, - "numero_insee": "85064" - } - }, - { - "pk": 2752, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAVAGNES-EN-PAILLERS", - "center": "POINT (327530.1289787387358956 2216733.1456031082198024)", - "surface": 40450000, - "canton": null, - "numero_insee": "85065" - } - }, - { - "pk": 1990, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHAVAGNES-LES-REDOUX", - "center": "POINT (351327.4947347964625806 2195109.4686284037306905)", - "surface": 13580000, - "canton": null, - "numero_insee": "85066" - } - }, - { - "pk": 2317, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CHEFFOIS", - "center": "POINT (361368.3249242426827550 2191188.4104649033397436)", - "surface": 18800000, - "canton": null, - "numero_insee": "85067" - } - }, - { - "pk": 2632, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES CLOUZEAUX", - "center": "POINT (306742.6145463334978558 2188539.1282434551976621)", - "surface": 26500000, - "canton": null, - "numero_insee": "85069" - } - }, - { - "pk": 2483, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "COEX", - "center": "POINT (287049.3372939005494118 2197886.6431030668318272)", - "surface": 39830000, - "canton": null, - "numero_insee": "85070" - } - }, - { - "pk": 2164, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "COMMEQUIERS", - "center": "POINT (282189.2336744432686828 2204752.9677324616350234)", - "surface": 40630000, - "canton": null, - "numero_insee": "85071" - } - }, - { - "pk": 2801, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA COPECHAGNIERE", - "center": "POINT (319458.9944955761893652 2212363.4640922290273011)", - "surface": 9900000, - "canton": null, - "numero_insee": "85072" - } - }, - { - "pk": 1943, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CORPE", - "center": "POINT (330888.8903432617080398 2173223.0348618915304542)", - "surface": 17070000, - "canton": null, - "numero_insee": "85073" - } - }, - { - "pk": 1912, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA COUTURE", - "center": "POINT (323763.4559451403911225 2175566.8246942036785185)", - "surface": 7220000, - "canton": null, - "numero_insee": "85074" - } - }, - { - "pk": 2408, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CUGAND", - "center": "POINT (327379.4380354012828320 2235147.3819180014543235)", - "surface": 13750000, - "canton": null, - "numero_insee": "85076" - } - }, - { - "pk": 2796, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "CURZON", - "center": "POINT (320525.4496124888537452 2167633.3609236218035221)", - "surface": 5930000, - "canton": null, - "numero_insee": "85077" - } - }, - { - "pk": 2714, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "DAMVIX", - "center": "POINT (362796.3169758552685380 2151365.0440390012226999)", - "surface": 11500000, - "canton": null, - "numero_insee": "85078" - } - }, - { - "pk": 2756, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "DOIX", - "center": "POINT (358232.6059560261201113 2158634.0984621918760240)", - "surface": 13430000, - "canton": null, - "numero_insee": "85080" - } - }, - { - "pk": 2418, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "DOMPIERRE-SUR-YON", - "center": "POINT (316739.4386123617878184 2202232.5872753839939833)", - "surface": 33930000, - "canton": null, - "numero_insee": "85081" - } - }, - { - "pk": 2289, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES EPESSES", - "center": "POINT (353164.0579491542885080 2215241.7400443982332945)", - "surface": 31560000, - "canton": null, - "numero_insee": "85082" - } - }, - { - "pk": 2163, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'EPINE", - "center": "POINT (250150.9928001896478236 2230714.5342557681724429)", - "surface": 8690000, - "canton": null, - "numero_insee": "85083" - } - }, - { - "pk": 2458, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES ESSARTS", - "center": "POINT (327734.2272752099088393 2204023.9865169152617455)", - "surface": 56530000, - "canton": null, - "numero_insee": "85084" - } - }, - { - "pk": 1915, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "FALLERON", - "center": "POINT (292215.5968485405901447 2214843.2583521441556513)", - "surface": 29050000, - "canton": null, - "numero_insee": "85086" - } - }, - { - "pk": 1747, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "FAYMOREAU", - "center": "POINT (372905.7607689007418230 2175669.5859158732928336)", - "surface": 10960000, - "canton": null, - "numero_insee": "85087" - } - }, - { - "pk": 1576, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE FENOUILLER", - "center": "POINT (276828.9760588412755169 2199304.6470559057779610)", - "surface": 17760000, - "canton": null, - "numero_insee": "85088" - } - }, - { - "pk": 2259, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA FERRIERE", - "center": "POINT (319378.3294747994514182 2197750.2914024614728987)", - "surface": 46950000, - "canton": null, - "numero_insee": "85089" - } - }, - { - "pk": 1587, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA FLOCELLIERE", - "center": "POINT (356532.3360298657789826 2207262.5665900604799390)", - "surface": 29250000, - "canton": null, - "numero_insee": "85090" - } - }, - { - "pk": 1721, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "FONTAINES", - "center": "POINT (358299.8242148550925776 2162638.2101245368830860)", - "surface": 10600000, - "canton": null, - "numero_insee": "85091" - } - }, - { - "pk": 2007, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "FONTENAY-LE-COMTE", - "center": "POINT (359568.8457090090378188 2166552.0873232888989151)", - "surface": 34150000, - "canton": null, - "numero_insee": "85092" - } - }, - { - "pk": 2331, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "FOUGERE", - "center": "POINT (326641.3903362257988192 2190803.6550236977636814)", - "surface": 27220000, - "canton": null, - "numero_insee": "85093" - } - }, - { - "pk": 1617, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "FOUSSAIS-PAYRE", - "center": "POINT (368018.2347874083206989 2173627.6617601104080677)", - "surface": 34570000, - "canton": null, - "numero_insee": "85094" - } - }, - { - "pk": 1879, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "FROIDFOND", - "center": "POINT (288196.1411541808629408 2216812.1786389816552401)", - "surface": 21810000, - "canton": null, - "numero_insee": "85095" - } - }, - { - "pk": 2100, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA GARNACHE", - "center": "POINT (283072.5754227858269587 2219172.4495127187110484)", - "surface": 60520000, - "canton": null, - "numero_insee": "85096" - } - }, - { - "pk": 2784, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA GAUBRETIERE", - "center": "POINT (341711.6874222299084067 2220452.3271874366328120)", - "surface": 30140000, - "canton": null, - "numero_insee": "85097" - } - }, - { - "pk": 1892, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA GENETOUZE", - "center": "POINT (306459.0683241214137524 2198745.6475880485959351)", - "surface": 13950000, - "canton": null, - "numero_insee": "85098" - } - }, - { - "pk": 1531, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE GIROUARD", - "center": "POINT (299187.9776164739741944 2182171.9379781465977430)", - "surface": 25500000, - "canton": null, - "numero_insee": "85099" - } - }, - { - "pk": 2991, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "GIVRAND", - "center": "POINT (277660.5937662380165420 2195508.1368192113004625)", - "surface": 11800000, - "canton": null, - "numero_insee": "85100" - } - }, - { - "pk": 2206, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE GIVRE", - "center": "POINT (312895.5010514755267650 2170473.5344723965972662)", - "surface": 12490000, - "canton": null, - "numero_insee": "85101" - } - }, - { - "pk": 1725, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "GRAND'LANDES", - "center": "POINT (296434.4045825764187612 2212976.0599365779198706)", - "surface": 20320000, - "canton": null, - "numero_insee": "85102" - } - }, - { - "pk": 2025, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "GROSBREUIL", - "center": "POINT (297616.0917545193806291 2178555.9508896139450371)", - "surface": 36690000, - "canton": null, - "numero_insee": "85103" - } - }, - { - "pk": 2609, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "GRUES", - "center": "POINT (318485.9401444457471371 2160009.9249867256730795)", - "surface": 47690000, - "canton": null, - "numero_insee": "85104" - } - }, - { - "pk": 2937, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE GUE-DE-VELLUIRE", - "center": "POINT (350538.5749874396715313 2157069.6200331561267376)", - "surface": 12840000, - "canton": null, - "numero_insee": "85105" - } - }, - { - "pk": 2952, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA GUERINIERE", - "center": "POINT (252670.0040181766962633 2228633.2352916281670332)", - "surface": 7900000, - "canton": null, - "numero_insee": "85106" - } - }, - { - "pk": 2352, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA GUYONNIERE", - "center": "POINT (326761.6101077456842177 2225033.8670698972418904)", - "surface": 22990000, - "canton": null, - "numero_insee": "85107" - } - }, - { - "pk": 1653, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'HERBERGEMENT", - "center": "POINT (317698.7455426015076227 2219555.1812752611003816)", - "surface": 16920000, - "canton": null, - "numero_insee": "85108" - } - }, - { - "pk": 2372, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES HERBIERS", - "center": "POINT (343975.7387693409109488 2212864.4418811448849738)", - "surface": 88870000, - "canton": null, - "numero_insee": "85109" - } - }, - { - "pk": 2864, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'HERMENAULT", - "center": "POINT (351805.0712387880776078 2173494.5502345832064748)", - "surface": 11420000, - "canton": null, - "numero_insee": "85110" - } - }, - { - "pk": 2927, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'ILE-D'ELLE", - "center": "POINT (349368.7801290957722813 2153256.6255448507145047)", - "surface": 19200000, - "canton": null, - "numero_insee": "85111" - } - }, - { - "pk": 2543, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'ILE-D'OLONNE", - "center": "POINT (284971.5955181611352600 2182656.4867387427948415)", - "surface": 19550000, - "canton": null, - "numero_insee": "85112" - } - }, - { - "pk": 2208, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'ILE-D'YEU", - "center": "POINT (242089.1153707928606309 2200523.4290037509053946)", - "surface": 24650000, - "canton": null, - "numero_insee": "85113" - } - }, - { - "pk": 2254, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "JARD-SUR-MER", - "center": "POINT (297519.6774053105036728 2165843.9505943744443357)", - "surface": 16820000, - "canton": null, - "numero_insee": "85114" - } - }, - { - "pk": 1581, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA JAUDONNIERE", - "center": "POINT (347478.5513814906589687 2188472.1836955486796796)", - "surface": 8270000, - "canton": null, - "numero_insee": "85115" - } - }, - { - "pk": 1827, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA JONCHERE", - "center": "POINT (314030.7636549168964848 2166279.0966092003509402)", - "surface": 11540000, - "canton": null, - "numero_insee": "85116" - } - }, - { - "pk": 1779, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LAIROUX", - "center": "POINT (322929.8709637100691907 2167352.7661374434828758)", - "surface": 13310000, - "canton": null, - "numero_insee": "85117" - } - }, - { - "pk": 1541, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LANDERONDE", - "center": "POINT (300814.9955529240542091 2191293.1535128634423018)", - "surface": 18270000, - "canton": null, - "numero_insee": "85118" - } - }, - { - "pk": 2731, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES LANDES-GENUSSON", - "center": "POINT (336275.5221391661907546 2224311.0801250524818897)", - "surface": 31270000, - "canton": null, - "numero_insee": "85119" - } - }, - { - "pk": 2528, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LANDEVIEILLE", - "center": "POINT (284603.6361685029696673 2190960.7263921615667641)", - "surface": 13810000, - "canton": null, - "numero_insee": "85120" - } - }, - { - "pk": 1650, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE LANGON", - "center": "POINT (347669.7791836877586320 2165153.2971735978499055)", - "surface": 23760000, - "canton": null, - "numero_insee": "85121" - } - }, - { - "pk": 2635, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LIEZ", - "center": "POINT (365955.3935266735497862 2156695.7357276603579521)", - "surface": 8480000, - "canton": null, - "numero_insee": "85123" - } - }, - { - "pk": 2739, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LOGE-FOUGEREUSE", - "center": "POINT (368231.3151796518359333 2184238.6951961047016084)", - "surface": 10350000, - "canton": null, - "numero_insee": "85125" - } - }, - { - "pk": 2724, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LONGEVES", - "center": "POINT (354648.4113614542875439 2168513.4691489771939814)", - "surface": 11900000, - "canton": null, - "numero_insee": "85126" - } - }, - { - "pk": 2610, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LONGEVILLE-SUR-MER", - "center": "POINT (306846.1174520768690854 2163618.0701273051090539)", - "surface": 38030000, - "canton": null, - "numero_insee": "85127" - } - }, - { - "pk": 1938, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LUCON", - "center": "POINT (331038.9601624349015765 2167118.8746921736747026)", - "surface": 31420000, - "canton": null, - "numero_insee": "85128" - } - }, - { - "pk": 2867, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES LUCS-SUR-BOULOGNE", - "center": "POINT (308745.6920305870007724 2212876.4084301376715302)", - "surface": 53190000, - "canton": null, - "numero_insee": "85129" - } - }, - { - "pk": 1631, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MACHE", - "center": "POINT (292198.7842049242462963 2204634.4067705599591136)", - "surface": 18160000, - "canton": null, - "numero_insee": "85130" - } - }, - { - "pk": 2997, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES MAGNILS-REIGNIERS", - "center": "POINT (327623.0687736545223743 2168692.3253436698578298)", - "surface": 18060000, - "canton": null, - "numero_insee": "85131" - } - }, - { - "pk": 2872, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MAILLE", - "center": "POINT (359573.1194483215222135 2153840.8160596247762442)", - "surface": 17680000, - "canton": null, - "numero_insee": "85132" - } - }, - { - "pk": 2672, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MAILLEZAIS", - "center": "POINT (362456.6147150343167596 2156166.5505756228230894)", - "surface": 20480000, - "canton": null, - "numero_insee": "85133" - } - }, - { - "pk": 1919, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MALLIEVRE", - "center": "POINT (356149.9758911856333725 2217267.9333640220575035)", - "surface": 220000, - "canton": null, - "numero_insee": "85134" - } - }, - { - "pk": 2467, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MAREUIL-SUR-LAY-DISSAIS", - "center": "POINT (326658.4398537907982245 2176491.3070120736956596)", - "surface": 25700000, - "canton": null, - "numero_insee": "85135" - } - }, - { - "pk": 1717, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MARILLET", - "center": "POINT (372283.0640258297207765 2178366.8356844186782837)", - "surface": 4210000, - "canton": null, - "numero_insee": "85136" - } - }, - { - "pk": 1566, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MARSAIS-SAINTE-RADEGONDE", - "center": "POINT (354188.1337327899527736 2175816.1253175479359925)", - "surface": 14720000, - "canton": null, - "numero_insee": "85137" - } - }, - { - "pk": 2384, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MARTINET", - "center": "POINT (292898.8644804657087661 2192429.5897769532166421)", - "surface": 18400000, - "canton": null, - "numero_insee": "85138" - } - }, - { - "pk": 2553, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE MAZEAU", - "center": "POINT (368295.1211461343918927 2152110.8447105083614588)", - "surface": 8320000, - "canton": null, - "numero_insee": "85139" - } - }, - { - "pk": 2111, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA MEILLERAIE-TILLAY", - "center": "POINT (356203.4722552620805800 2198552.4063084293156862)", - "surface": 20210000, - "canton": null, - "numero_insee": "85140" - } - }, - { - "pk": 2118, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MENOMBLET", - "center": "POINT (365726.6276898460928351 2196728.9556197486817837)", - "surface": 21180000, - "canton": null, - "numero_insee": "85141" - } - }, - { - "pk": 2966, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA MERLATIERE", - "center": "POINT (322450.5039327895501629 2201478.6061766729690135)", - "surface": 15040000, - "canton": null, - "numero_insee": "85142" - } - }, - { - "pk": 2330, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MERVENT", - "center": "POINT (363403.8129474784946069 2174890.8997786450199783)", - "surface": 22480000, - "canton": null, - "numero_insee": "85143" - } - }, - { - "pk": 2586, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MESNARD-LA-BAROTIERE", - "center": "POINT (337281.1484034670866095 2211508.4800226534716785)", - "surface": 11840000, - "canton": null, - "numero_insee": "85144" - } - }, - { - "pk": 1504, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MONSIREIGNE", - "center": "POINT (350300.4310839658137411 2198303.8044424657709897)", - "surface": 20920000, - "canton": null, - "numero_insee": "85145" - } - }, - { - "pk": 1510, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MONTAIGU", - "center": "POINT (322350.0163646739674732 2225998.6161811784841120)", - "surface": 3050000, - "canton": null, - "numero_insee": "85146" - } - }, - { - "pk": 2079, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MONTOURNAIS", - "center": "POINT (362704.5205425324966200 2199106.2032892005518079)", - "surface": 29450000, - "canton": null, - "numero_insee": "85147" - } - }, - { - "pk": 2704, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MONTREUIL", - "center": "POINT (355718.2246033443370834 2160114.7960931891575456)", - "surface": 12030000, - "canton": null, - "numero_insee": "85148" - } - }, - { - "pk": 1771, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MOREILLES", - "center": "POINT (336371.9951207472477108 2163659.4496596972458065)", - "surface": 19780000, - "canton": null, - "numero_insee": "85149" - } - }, - { - "pk": 2302, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MORMAISON", - "center": "POINT (310904.0774167226627469 2218198.5442337077111006)", - "surface": 15680000, - "canton": null, - "numero_insee": "85150" - } - }, - { - "pk": 2083, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MORTAGNE-SUR-SEVRE", - "center": "POINT (350269.9468143436824903 2226427.4542663698084652)", - "surface": 22060000, - "canton": null, - "numero_insee": "85151" - } - }, - { - "pk": 2723, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA MOTHE-ACHARD", - "center": "POINT (294742.7704614161048084 2187240.1123636942356825)", - "surface": 8610000, - "canton": null, - "numero_insee": "85152" - } - }, - { - "pk": 2924, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MOUCHAMPS", - "center": "POINT (341144.8160837161121890 2204133.8132912120781839)", - "surface": 54870000, - "canton": null, - "numero_insee": "85153" - } - }, - { - "pk": 1618, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MOUILLERON-EN-PAREDS", - "center": "POINT (356378.2920625014812686 2189445.9741859012283385)", - "surface": 20160000, - "canton": null, - "numero_insee": "85154" - } - }, - { - "pk": 2981, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MOUILLERON-LE-CAPTIF", - "center": "POINT (309675.5151186003349721 2197070.4576012622565031)", - "surface": 19220000, - "canton": null, - "numero_insee": "85155" - } - }, - { - "pk": 2998, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MOUTIERS-LES-MAUXFAITS", - "center": "POINT (310377.9186006266972981 2172354.6353399874642491)", - "surface": 9240000, - "canton": null, - "numero_insee": "85156" - } - }, - { - "pk": 2099, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MOUTIERS-SUR-LE-LAY", - "center": "POINT (331335.2115001102210954 2179832.4879089184105396)", - "surface": 18400000, - "canton": null, - "numero_insee": "85157" - } - }, - { - "pk": 2767, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "MOUZEUIL-SAINT-MARTIN", - "center": "POINT (344948.6935347379185259 2167433.0221346998587251)", - "surface": 26030000, - "canton": null, - "numero_insee": "85158" - } - }, - { - "pk": 2719, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "NALLIERS", - "center": "POINT (340737.0558989801793359 2168399.3831251924857497)", - "surface": 32840000, - "canton": null, - "numero_insee": "85159" - } - }, - { - "pk": 1594, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "NESMY", - "center": "POINT (312987.6778634966467507 2183685.8868398251943290)", - "surface": 24620000, - "canton": null, - "numero_insee": "85160" - } - }, - { - "pk": 1679, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "NIEUL-LE-DOLENT", - "center": "POINT (304799.8614936093799770 2181316.9741282970644534)", - "surface": 28020000, - "canton": null, - "numero_insee": "85161" - } - }, - { - "pk": 2356, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "NIEUL-SUR-L'AUTISE", - "center": "POINT (369209.5925275440677069 2162627.7272416688501835)", - "surface": 22730000, - "canton": null, - "numero_insee": "85162" - } - }, - { - "pk": 1992, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "NOIRMOUTIER-EN-L'ILE", - "center": "POINT (250429.2736284289276227 2233419.0595539361238480)", - "surface": 19970000, - "canton": null, - "numero_insee": "85163" - } - }, - { - "pk": 1734, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "NOTRE-DAME-DE-MONTS", - "center": "POINT (261093.6350362614030018 2214289.5215035621076822)", - "surface": 20750000, - "canton": null, - "numero_insee": "85164" - } - }, - { - "pk": 2031, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'OIE", - "center": "POINT (336044.0659390359069221 2203691.6811706582084298)", - "surface": 14300000, - "canton": null, - "numero_insee": "85165" - } - }, - { - "pk": 1535, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "OLONNE-SUR-MER", - "center": "POINT (283795.9154753283946775 2179544.1850260007195175)", - "surface": 46080000, - "canton": null, - "numero_insee": "85166" - } - }, - { - "pk": 2649, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "L'ORBRIE", - "center": "POINT (361231.6117181276204064 2171269.8925163215026259)", - "surface": 9650000, - "canton": null, - "numero_insee": "85167" - } - }, - { - "pk": 2848, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "OULMES", - "center": "POINT (369437.7199227897217497 2159226.5777419586665928)", - "surface": 9290000, - "canton": null, - "numero_insee": "85168" - } - }, - { - "pk": 1514, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "PALLUAU", - "center": "POINT (299475.9701183728175238 2208196.7862319694831967)", - "surface": 7480000, - "canton": null, - "numero_insee": "85169" - } - }, - { - "pk": 1887, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "PEAULT", - "center": "POINT (326486.9465878336923197 2172986.8231491530314088)", - "surface": 9070000, - "canton": null, - "numero_insee": "85171" - } - }, - { - "pk": 2618, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE PERRIER", - "center": "POINT (270827.3241506764316000 2211165.9914259901270270)", - "surface": 33000000, - "canton": null, - "numero_insee": "85172" - } - }, - { - "pk": 2808, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "PETOSSE", - "center": "POINT (350636.9346563087310642 2169481.4399625621736050)", - "surface": 15900000, - "canton": null, - "numero_insee": "85174" - } - }, - { - "pk": 2353, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES PINEAUX", - "center": "POINT (330703.5885136268916540 2183630.6398016563616693)", - "surface": 17340000, - "canton": null, - "numero_insee": "85175" - } - }, - { - "pk": 2842, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "PISSOTTE", - "center": "POINT (358627.0297243644017726 2171548.7729584150947630)", - "surface": 11910000, - "canton": null, - "numero_insee": "85176" - } - }, - { - "pk": 2825, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE POIRE-SUR-VELLUIRE", - "center": "POINT (350391.6952109985868447 2162773.4921950171701610)", - "surface": 17020000, - "canton": null, - "numero_insee": "85177" - } - }, - { - "pk": 2095, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE POIRE-SUR-VIE", - "center": "POINT (306718.4325174839468673 2203752.0681145237758756)", - "surface": 72000000, - "canton": null, - "numero_insee": "85178" - } - }, - { - "pk": 1586, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "POIROUX", - "center": "POINT (302648.7530009218025953 2175093.9615229754708707)", - "surface": 25720000, - "canton": null, - "numero_insee": "85179" - } - }, - { - "pk": 2948, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA POMMERAIE-SUR-SEVRE", - "center": "POINT (361233.5688734105788171 2207601.4115285379812121)", - "surface": 15710000, - "canton": null, - "numero_insee": "85180" - } - }, - { - "pk": 1903, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "POUILLE", - "center": "POINT (347412.1633142352802679 2172157.3733842489309609)", - "surface": 17230000, - "canton": null, - "numero_insee": "85181" - } - }, - { - "pk": 2288, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "POUZAUGES", - "center": "POINT (358370.7169006530311890 2202773.8025690210051835)", - "surface": 36510000, - "canton": null, - "numero_insee": "85182" - } - }, - { - "pk": 2041, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "PUY-DE-SERRE", - "center": "POINT (368781.0566089965868741 2178237.9683719496242702)", - "surface": 13870000, - "canton": null, - "numero_insee": "85184" - } - }, - { - "pk": 2668, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "PUYRAVAULT", - "center": "POINT (336323.5683187980903313 2157353.4417767068371177)", - "surface": 17250000, - "canton": null, - "numero_insee": "85185" - } - }, - { - "pk": 1985, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA RABATELIERE", - "center": "POINT (326061.7142533494043164 2212717.7315472164191306)", - "surface": 8170000, - "canton": null, - "numero_insee": "85186" - } - }, - { - "pk": 2053, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "REAUMUR", - "center": "POINT (358932.7245602522161789 2195271.9614526028744876)", - "surface": 22240000, - "canton": null, - "numero_insee": "85187" - } - }, - { - "pk": 1628, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA REORTHE", - "center": "POINT (340704.2649990629870445 2184613.3430168898776174)", - "surface": 24110000, - "canton": null, - "numero_insee": "85188" - } - }, - { - "pk": 2599, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "NOTRE-DAME-DE-RIEZ", - "center": "POINT (276895.6324426191276871 2203408.7215145686641335)", - "surface": 14740000, - "canton": null, - "numero_insee": "85189" - } - }, - { - "pk": 1577, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "ROCHESERVIERE", - "center": "POINT (307776.3159241458633915 2221275.6142660039477050)", - "surface": 28250000, - "canton": null, - "numero_insee": "85190" - } - }, - { - "pk": 2308, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA ROCHE-SUR-YON", - "center": "POINT (313519.4439237126498483 2192097.5449812430888414)", - "surface": 87780000, - "canton": null, - "numero_insee": "85191" - } - }, - { - "pk": 2527, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "ROCHETREJOUX", - "center": "POINT (345552.3934185300022364 2203669.5109426281414926)", - "surface": 11010000, - "canton": null, - "numero_insee": "85192" - } - }, - { - "pk": 1874, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "ROSNAY", - "center": "POINT (321052.2563600398716517 2176645.6104750586673617)", - "surface": 14220000, - "canton": null, - "numero_insee": "85193" - } - }, - { - "pk": 2939, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LES SABLES-D'OLONNE", - "center": "POINT (283132.0582577873719856 2175034.8156271949410439)", - "surface": 8700000, - "canton": null, - "numero_insee": "85194" - } - }, - { - "pk": 1964, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-ANDRE-GOULE-D'OIE", - "center": "POINT (330583.2654509396525100 2210552.8647790113463998)", - "surface": 20380000, - "canton": null, - "numero_insee": "85196" - } - }, - { - "pk": 2175, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-ANDRE-TREIZE-VOIES", - "center": "POINT (314584.8781959934858605 2220930.9093863554298878)", - "surface": 18940000, - "canton": null, - "numero_insee": "85197" - } - }, - { - "pk": 1667, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-AUBIN-DES-ORMEAUX", - "center": "POINT (343057.0030121845193207 2227269.0769117348827422)", - "surface": 12660000, - "canton": null, - "numero_insee": "85198" - } - }, - { - "pk": 2663, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-AUBIN-LA-PLAINE", - "center": "POINT (339000.4025354132754728 2172688.9478928092867136)", - "surface": 11610000, - "canton": null, - "numero_insee": "85199" - } - }, - { - "pk": 2702, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-AVAUGOURD-DES-LANDES", - "center": "POINT (307551.9222902506589890 2175234.0995170436799526)", - "surface": 20860000, - "canton": null, - "numero_insee": "85200" - } - }, - { - "pk": 1526, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-BENOIST-SUR-MER", - "center": "POINT (317443.3729831188102253 2165105.9355499953962862)", - "surface": 15560000, - "canton": null, - "numero_insee": "85201" - } - }, - { - "pk": 1540, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-CECILE", - "center": "POINT (335789.7329999501816928 2198084.7833168683573604)", - "surface": 32090000, - "canton": null, - "numero_insee": "85202" - } - }, - { - "pk": 2431, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-CHRISTOPHE-DU-LIGNERON", - "center": "POINT (288954.6295641952310689 2209712.3157362467609346)", - "surface": 42140000, - "canton": null, - "numero_insee": "85204" - } - }, - { - "pk": 2158, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-CYR-DES-GATS", - "center": "POINT (354757.4122152479831129 2179624.1293291617184877)", - "surface": 21080000, - "canton": null, - "numero_insee": "85205" - } - }, - { - "pk": 2641, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-CYR-EN-TALMONDAIS", - "center": "POINT (317914.3174362260615453 2168712.9777561607770622)", - "surface": 13920000, - "canton": null, - "numero_insee": "85206" - } - }, - { - "pk": 1669, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-DENIS-DU-PAYRE", - "center": "POINT (322563.9354369505890645 2163146.0448015131987631)", - "surface": 16310000, - "canton": null, - "numero_insee": "85207" - } - }, - { - "pk": 2546, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-DENIS-LA-CHEVASSE", - "center": "POINT (316272.8473853592877276 2210335.7078202199190855)", - "surface": 39850000, - "canton": null, - "numero_insee": "85208" - } - }, - { - "pk": 2650, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-ETIENNE-DE-BRILLOUET", - "center": "POINT (343096.3562388907885179 2173623.3098648949526250)", - "surface": 18960000, - "canton": null, - "numero_insee": "85209" - } - }, - { - "pk": 2508, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-ETIENNE-DU-BOIS", - "center": "POINT (300144.6613228585920297 2212105.5743271997198462)", - "surface": 29620000, - "canton": null, - "numero_insee": "85210" - } - }, - { - "pk": 2174, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-FLAIVE-DES-LOUPS", - "center": "POINT (300054.3889273306704126 2186382.6803042497485876)", - "surface": 36280000, - "canton": null, - "numero_insee": "85211" - } - }, - { - "pk": 2542, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-FLORENCE", - "center": "POINT (333233.6574224056676030 2204669.5220215092413127)", - "surface": 17310000, - "canton": null, - "numero_insee": "85212" - } - }, - { - "pk": 2387, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-FLORENT-DES-BOIS", - "center": "POINT (318782.5343779380782507 2184934.3136669984087348)", - "surface": 36950000, - "canton": null, - "numero_insee": "85213" - } - }, - { - "pk": 2092, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-FOY", - "center": "POINT (291013.1846845482941717 2178201.8089013188146055)", - "surface": 15720000, - "canton": null, - "numero_insee": "85214" - } - }, - { - "pk": 2496, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-FULGENT", - "center": "POINT (333259.1625250915531069 2213777.4971130480989814)", - "surface": 36830000, - "canton": null, - "numero_insee": "85215" - } - }, - { - "pk": 2081, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-GEMME-LA-PLAINE", - "center": "POINT (335323.6240121004520915 2169456.0005599367432296)", - "surface": 35540000, - "canton": null, - "numero_insee": "85216" - } - }, - { - "pk": 2464, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-GEORGES-DE-MONTAIGU", - "center": "POINT (324590.2004848716314882 2221312.9815073162317276)", - "surface": 34010000, - "canton": null, - "numero_insee": "85217" - } - }, - { - "pk": 2367, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-GEORGES-DE-POINTINDOUX", - "center": "POINT (296521.3497216255054809 2190057.0634741969406605)", - "surface": 15640000, - "canton": null, - "numero_insee": "85218" - } - }, - { - "pk": 2985, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-GERMAIN-L'AIGUILLER", - "center": "POINT (357654.6896201915224083 2192459.0503906267695129)", - "surface": 8500000, - "canton": null, - "numero_insee": "85219" - } - }, - { - "pk": 1948, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-GERMAIN-DE-PRINCAY", - "center": "POINT (341792.8602709558908828 2198334.1398955243639648)", - "surface": 24760000, - "canton": null, - "numero_insee": "85220" - } - }, - { - "pk": 2884, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-GERVAIS", - "center": "POINT (271329.2182935873279348 2223280.3543775700964034)", - "surface": 42520000, - "canton": null, - "numero_insee": "85221" - } - }, - { - "pk": 2783, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-GILLES-CROIX-DE-VIE", - "center": "POINT (274549.1499643628485501 2196583.7456230046227574)", - "surface": 10450000, - "canton": null, - "numero_insee": "85222" - } - }, - { - "pk": 2059, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-HERMINE", - "center": "POINT (338650.9556383666349575 2178691.3584916056133807)", - "surface": 34930000, - "canton": null, - "numero_insee": "85223" - } - }, - { - "pk": 1741, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-HILAIRE-DE-LOULAY", - "center": "POINT (321419.8538409293978475 2229594.0304557960480452)", - "surface": 41120000, - "canton": null, - "numero_insee": "85224" - } - }, - { - "pk": 2750, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-HILAIRE-DE-RIEZ", - "center": "POINT (271497.0510218105628155 2202664.1566557325422764)", - "surface": 48880000, - "canton": null, - "numero_insee": "85226" - } - }, - { - "pk": 2145, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-HILAIRE-DES-LOGES", - "center": "POINT (370665.5841965920990333 2168144.5658192168921232)", - "surface": 35300000, - "canton": null, - "numero_insee": "85227" - } - }, - { - "pk": 1513, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-HILAIRE-DE-VOUST", - "center": "POINT (371059.0637221272918396 2181159.2257889346219599)", - "surface": 18840000, - "canton": null, - "numero_insee": "85229" - } - }, - { - "pk": 2887, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-HILAIRE-LA-FORET", - "center": "POINT (302999.6718460556585342 2168891.3532105917111039)", - "surface": 10930000, - "canton": null, - "numero_insee": "85231" - } - }, - { - "pk": 2562, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-HILAIRE-LE-VOUHIS", - "center": "POINT (333127.7442520093172789 2193158.7491229362785816)", - "surface": 29180000, - "canton": null, - "numero_insee": "85232" - } - }, - { - "pk": 2956, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-JEAN-DE-BEUGNE", - "center": "POINT (335682.1392123104305938 2174563.4350198591127992)", - "surface": 13310000, - "canton": null, - "numero_insee": "85233" - } - }, - { - "pk": 2501, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-JEAN-DE-MONTS", - "center": "POINT (265436.0982011849409901 2209520.7477409346029162)", - "surface": 62270000, - "canton": null, - "numero_insee": "85234" - } - }, - { - "pk": 2296, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-JUIRE-CHAMPGILLON", - "center": "POINT (343629.5698981414316222 2181834.8746551764197648)", - "surface": 20690000, - "canton": null, - "numero_insee": "85235" - } - }, - { - "pk": 2320, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-JULIEN-DES-LANDES", - "center": "POINT (289815.1546409517759457 2190102.4381702765822411)", - "surface": 28440000, - "canton": null, - "numero_insee": "85236" - } - }, - { - "pk": 2160, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-LAURENT-DE-LA-SALLE", - "center": "POINT (350339.9004124352941290 2181289.3744478877633810)", - "surface": 19330000, - "canton": null, - "numero_insee": "85237" - } - }, - { - "pk": 1595, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-LAURENT-SUR-SEVRE", - "center": "POINT (353611.0820930243935436 2221750.9044876005500555)", - "surface": 15480000, - "canton": null, - "numero_insee": "85238" - } - }, - { - "pk": 1921, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MAIXENT-SUR-VIE", - "center": "POINT (282020.0674824375309981 2200948.3210950768552721)", - "surface": 10740000, - "canton": null, - "numero_insee": "85239" - } - }, - { - "pk": 1608, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MALO-DU-BOIS", - "center": "POINT (352433.1367812154348940 2218938.8773979223333299)", - "surface": 14250000, - "canton": null, - "numero_insee": "85240" - } - }, - { - "pk": 1664, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MARS-LA-REORTHE", - "center": "POINT (351291.3042512549436651 2211723.4043702087365091)", - "surface": 9270000, - "canton": null, - "numero_insee": "85242" - } - }, - { - "pk": 1809, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "BREM-SUR-MER", - "center": "POINT (282530.4999391835881397 2187440.7814691015519202)", - "surface": 16160000, - "canton": null, - "numero_insee": "85243" - } - }, - { - "pk": 2857, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MARTIN-DE-FRAIGNEAU", - "center": "POINT (362097.1903764008893631 2163370.0106246070936322)", - "surface": 13460000, - "canton": null, - "numero_insee": "85244" - } - }, - { - "pk": 2814, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MARTIN-DES-FONTAINES", - "center": "POINT (351276.7504047425463796 2176893.2047402011230588)", - "surface": 5700000, - "canton": null, - "numero_insee": "85245" - } - }, - { - "pk": 2328, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MARTIN-DES-NOYERS", - "center": "POINT (329387.9225647873245180 2197632.0181236597709358)", - "surface": 41480000, - "canton": null, - "numero_insee": "85246" - } - }, - { - "pk": 2470, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MARTIN-DES-TILLEULS", - "center": "POINT (341377.8317299071932212 2224553.0476227593608201)", - "surface": 14100000, - "canton": null, - "numero_insee": "85247" - } - }, - { - "pk": 2816, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MARTIN-LARS-EN-SAINTE-HERMINE", - "center": "POINT (346224.2822652893373743 2182756.9333978230133653)", - "surface": 18830000, - "canton": null, - "numero_insee": "85248" - } - }, - { - "pk": 1558, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MATHURIN", - "center": "POINT (290079.8013995686778799 2182197.7036774968728423)", - "surface": 23890000, - "canton": null, - "numero_insee": "85250" - } - }, - { - "pk": 2429, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MAURICE-DES-NOUES", - "center": "POINT (365448.7930837972089648 2181813.7422291417606175)", - "surface": 21500000, - "canton": null, - "numero_insee": "85251" - } - }, - { - "pk": 2357, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MAURICE-LE-GIRARD", - "center": "POINT (359100.9922899104421958 2186966.1497674034908414)", - "surface": 11450000, - "canton": null, - "numero_insee": "85252" - } - }, - { - "pk": 1758, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MESMIN", - "center": "POINT (364460.7421855643624440 2204625.3457818082533777)", - "surface": 26450000, - "canton": null, - "numero_insee": "85254" - } - }, - { - "pk": 2604, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MICHEL-EN-L'HERM", - "center": "POINT (324033.8817872907966375 2154750.5781472781673074)", - "surface": 57850000, - "canton": null, - "numero_insee": "85255" - } - }, - { - "pk": 2851, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MICHEL-LE-CLOUCQ", - "center": "POINT (363546.6358431238913909 2169687.4919337970204651)", - "surface": 17650000, - "canton": null, - "numero_insee": "85256" - } - }, - { - "pk": 1986, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-MICHEL-MONT-MERCURE", - "center": "POINT (353311.7550333249382675 2209438.0189719451591372)", - "surface": 25710000, - "canton": null, - "numero_insee": "85257" - } - }, - { - "pk": 2243, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-PAUL-EN-PAREDS", - "center": "POINT (348214.3144048997201025 2208595.5276930993422866)", - "surface": 12280000, - "canton": null, - "numero_insee": "85259" - } - }, - { - "pk": 2260, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-PAUL-MONT-PENIT", - "center": "POINT (294368.6815920686931349 2208555.4497998896986246)", - "surface": 16760000, - "canton": null, - "numero_insee": "85260" - } - }, - { - "pk": 2445, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-PEXINE", - "center": "POINT (334744.5193621246144176 2179059.7069284697063267)", - "surface": 15880000, - "canton": null, - "numero_insee": "85261" - } - }, - { - "pk": 2055, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-PHILBERT-DE-BOUAINE", - "center": "POINT (307716.6414190389332362 2228581.2744452548213303)", - "surface": 50550000, - "canton": null, - "numero_insee": "85262" - } - }, - { - "pk": 1525, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-PIERRE-DU-CHEMIN", - "center": "POINT (367660.2026643464341760 2192841.4710834803991020)", - "surface": 29830000, - "canton": null, - "numero_insee": "85264" - } - }, - { - "pk": 2326, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-PIERRE-LE-VIEUX", - "center": "POINT (363223.5737788528203964 2160276.5053869327530265)", - "surface": 23320000, - "canton": null, - "numero_insee": "85265" - } - }, - { - "pk": 2049, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-PROUANT", - "center": "POINT (347085.5811533657833934 2199778.7317593698389828)", - "surface": 12940000, - "canton": null, - "numero_insee": "85266" - } - }, - { - "pk": 2447, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINTE-RADEGONDE-DES-NOYERS", - "center": "POINT (338221.8570404208730906 2157769.3522823657840490)", - "surface": 31400000, - "canton": null, - "numero_insee": "85267" - } - }, - { - "pk": 2346, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-REVEREND", - "center": "POINT (281343.9774745039176196 2197940.2235412844456732)", - "surface": 15740000, - "canton": null, - "numero_insee": "85268" - } - }, - { - "pk": 2642, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-SIGISMOND", - "center": "POINT (365685.5668454816914164 2152990.2105465354397893)", - "surface": 10360000, - "canton": null, - "numero_insee": "85269" - } - }, - { - "pk": 1970, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-SULPICE-EN-PAREDS", - "center": "POINT (357423.4499693345278502 2184049.8540164004079998)", - "surface": 13310000, - "canton": null, - "numero_insee": "85271" - } - }, - { - "pk": 2820, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-SULPICE-LE-VERDON", - "center": "POINT (314421.5325512847630307 2216425.7639417159371078)", - "surface": 14080000, - "canton": null, - "numero_insee": "85272" - } - }, - { - "pk": 2026, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-URBAIN", - "center": "POINT (268367.6053302666987292 2218252.0155480215325952)", - "surface": 16530000, - "canton": null, - "numero_insee": "85273" - } - }, - { - "pk": 1554, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-VALERIEN", - "center": "POINT (348383.4288124676095322 2175768.5068431310355663)", - "surface": 14580000, - "canton": null, - "numero_insee": "85274" - } - }, - { - "pk": 1897, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-VINCENT-STERLANGES", - "center": "POINT (338685.4779650471173227 2198909.1942179678007960)", - "surface": 4560000, - "canton": null, - "numero_insee": "85276" - } - }, - { - "pk": 2151, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-VINCENT-SUR-GRAON", - "center": "POINT (314569.8883942103129812 2173790.1345186056569219)", - "surface": 48800000, - "canton": null, - "numero_insee": "85277" - } - }, - { - "pk": 2833, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SAINT-VINCENT-SUR-JARD", - "center": "POINT (301420.4275086626294069 2166176.0635384307242930)", - "surface": 14620000, - "canton": null, - "numero_insee": "85278" - } - }, - { - "pk": 2351, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SALIGNY", - "center": "POINT (314601.7789836350129917 2206618.8853094498626888)", - "surface": 23720000, - "canton": null, - "numero_insee": "85279" - } - }, - { - "pk": 2730, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SALLERTAINE", - "center": "POINT (273388.6283747458946891 2216191.1041120290756226)", - "surface": 49750000, - "canton": null, - "numero_insee": "85280" - } - }, - { - "pk": 2435, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SERIGNE", - "center": "POINT (355519.5775606682291254 2172123.7959255049936473)", - "surface": 18460000, - "canton": null, - "numero_insee": "85281" - } - }, - { - "pk": 1629, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SIGOURNAIS", - "center": "POINT (345917.4498541972716339 2195765.7068029451183975)", - "surface": 18450000, - "canton": null, - "numero_insee": "85282" - } - }, - { - "pk": 2489, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "SOULLANS", - "center": "POINT (275655.5563197276205756 2208202.7394225355237722)", - "surface": 41380000, - "canton": null, - "numero_insee": "85284" - } - }, - { - "pk": 2822, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LE TABLIER", - "center": "POINT (319124.5205658100894652 2179832.6508539761416614)", - "surface": 9250000, - "canton": null, - "numero_insee": "85285" - } - }, - { - "pk": 1895, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA TAILLEE", - "center": "POINT (347919.1912525744410232 2159150.0081555228680372)", - "surface": 11540000, - "canton": null, - "numero_insee": "85286" - } - }, - { - "pk": 1760, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "TALLUD-SAINTE-GEMME", - "center": "POINT (353544.0266490189824253 2193326.0964288949035108)", - "surface": 18720000, - "canton": null, - "numero_insee": "85287" - } - }, - { - "pk": 2606, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "TALMONT-SAINT-HILAIRE", - "center": "POINT (295670.8253425601287745 2171633.9969362821429968)", - "surface": 90480000, - "canton": null, - "numero_insee": "85288" - } - }, - { - "pk": 2091, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA TARDIERE", - "center": "POINT (365486.3972107382724062 2189420.6682445886544883)", - "surface": 20390000, - "canton": null, - "numero_insee": "85289" - } - }, - { - "pk": 2097, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "THIRE", - "center": "POINT (343570.5093314317055047 2176830.0101682017557323)", - "surface": 11600000, - "canton": null, - "numero_insee": "85290" - } - }, - { - "pk": 2140, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "THORIGNY", - "center": "POINT (325479.7405053403927013 2185989.9741776897571981)", - "surface": 32090000, - "canton": null, - "numero_insee": "85291" - } - }, - { - "pk": 1598, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "THOUARSAIS-BOUILDROUX", - "center": "POINT (354125.7215841006254777 2183422.2674639555625618)", - "surface": 17370000, - "canton": null, - "numero_insee": "85292" - } - }, - { - "pk": 1963, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "TIFFAUGES", - "center": "POINT (338846.3815539497882128 2228135.3312908736988902)", - "surface": 9800000, - "canton": null, - "numero_insee": "85293" - } - }, - { - "pk": 2703, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA TRANCHE-SUR-MER", - "center": "POINT (310097.8243168413173407 2157639.2923606927506626)", - "surface": 21030000, - "canton": null, - "numero_insee": "85294" - } - }, - { - "pk": 2146, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "TREIZE-SEPTIERS", - "center": "POINT (328638.5095542598864995 2228051.7475815978832543)", - "surface": 22540000, - "canton": null, - "numero_insee": "85295" - } - }, - { - "pk": 1635, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "TREIZE-VENTS", - "center": "POINT (357646.2166313175694086 2217880.7198507566936314)", - "surface": 19060000, - "canton": null, - "numero_insee": "85296" - } - }, - { - "pk": 2462, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "TRIAIZE", - "center": "POINT (328000.3259349860018119 2159287.0640039946883917)", - "surface": 57150000, - "canton": null, - "numero_insee": "85297" - } - }, - { - "pk": 2220, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "VAIRE", - "center": "POINT (287142.3642795621999539 2186477.5063032126054168)", - "surface": 28280000, - "canton": null, - "numero_insee": "85298" - } - }, - { - "pk": 2745, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "VELLUIRE", - "center": "POINT (352313.7838883049553260 2160287.0372575214132667)", - "surface": 9580000, - "canton": null, - "numero_insee": "85299" - } - }, - { - "pk": 1615, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "VENANSAULT", - "center": "POINT (303491.0064472489757463 2194517.7779567609541118)", - "surface": 44710000, - "canton": null, - "numero_insee": "85300" - } - }, - { - "pk": 2424, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "VENDRENNES", - "center": "POINT (336606.8311226224759594 2208300.2275394485332072)", - "surface": 17150000, - "canton": null, - "numero_insee": "85301" - } - }, - { - "pk": 2469, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA VERRIE", - "center": "POINT (347191.3466491550207138 2223499.7717811269685626)", - "surface": 43180000, - "canton": null, - "numero_insee": "85302" - } - }, - { - "pk": 2697, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "VIX", - "center": "POINT (354255.5913439503638074 2155398.5989433969371021)", - "surface": 28810000, - "canton": null, - "numero_insee": "85303" - } - }, - { - "pk": 2829, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "VOUILLE-LES-MARAIS", - "center": "POINT (345813.3574139034608379 2159633.1846597357653081)", - "surface": 9050000, - "canton": null, - "numero_insee": "85304" - } - }, - { - "pk": 2370, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "VOUVANT", - "center": "POINT (362274.9775993488146923 2178284.6135559007525444)", - "surface": 20420000, - "canton": null, - "numero_insee": "85305" - } - }, - { - "pk": 1687, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "XANTON-CHASSENON", - "center": "POINT (366280.9023614492034540 2165806.5024309805594385)", - "surface": 19350000, - "canton": null, - "numero_insee": "85306" - } - }, - { - "pk": 1633, - "model": "ishtar_common.town", - "fields": { - "departement": 86, - "name": "LA FAUTE-SUR-MER", - "center": "POINT (318842.6716168149723671 2153106.6728377998806536)", - "surface": 7260000, - "canton": null, - "numero_insee": "85307" - } - }, - { - "pk": 15939, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ADRIERS", - "center": "POINT (480682.5789760736515746 2141628.9219643315300345)", - "surface": 68040000, - "canton": null, - "numero_insee": "86001" - } - }, - { - "pk": 37708, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "AMBERRE", - "center": "POINT (433177.6086117742815986 2197584.9873925554566085)", - "surface": 15780000, - "canton": null, - "numero_insee": "86002" - } - }, - { - "pk": 17700, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ANCHE", - "center": "POINT (440960.9678589156828821 2152009.3347335266880691)", - "surface": 16410000, - "canton": null, - "numero_insee": "86003" - } - }, - { - "pk": 7577, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ANGLES-SUR-L'ANGLIN", - "center": "POINT (489791.3057349068112671 2189747.0036463486030698)", - "surface": 14560000, - "canton": null, - "numero_insee": "86004" - } - }, - { - "pk": 23060, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ANTIGNY", - "center": "POINT (485137.1049290725495666 2171692.6371355215087533)", - "surface": 44430000, - "canton": null, - "numero_insee": "86006" - } - }, - { - "pk": 16437, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ANTRAN", - "center": "POINT (462298.6911687592510134 2210136.5273836320266128)", - "surface": 23690000, - "canton": null, - "numero_insee": "86007" - } - }, - { - "pk": 5335, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ARCAY", - "center": "POINT (422387.4171462076483294 2219514.5864939554594457)", - "surface": 14140000, - "canton": null, - "numero_insee": "86008" - } - }, - { - "pk": 21097, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ARCHIGNY", - "center": "POINT (473299.7515683083911426 2187007.8243128447793424)", - "surface": 66730000, - "canton": null, - "numero_insee": "86009" - } - }, - { - "pk": 36785, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ASLONNES", - "center": "POINT (446079.1198987842071801 2162460.9485888951458037)", - "surface": 22770000, - "canton": null, - "numero_insee": "86010" - } - }, - { - "pk": 17034, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ASNIERES-SUR-BLOUR", - "center": "POINT (480087.5263371024630032 2128912.4611937752924860)", - "surface": 32690000, - "canton": null, - "numero_insee": "86011" - } - }, - { - "pk": 12925, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ASNOIS", - "center": "POINT (450898.5366398767801002 2124366.5068213795311749)", - "surface": 16250000, - "canton": null, - "numero_insee": "86012" - } - }, - { - "pk": 9729, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "AULNAY", - "center": "POINT (428937.1032088155625388 2214164.1172222415916622)", - "surface": 8090000, - "canton": null, - "numero_insee": "86013" - } - }, - { - "pk": 12764, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "AVAILLES-EN-CHATELLERAULT", - "center": "POINT (465012.7228491103742272 2196647.4786299113184214)", - "surface": 15500000, - "canton": null, - "numero_insee": "86014" - } - }, - { - "pk": 21118, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "AVAILLES-LIMOUZINE", - "center": "POINT (469390.9577453876845539 2127322.3253250457346439)", - "surface": 58080000, - "canton": null, - "numero_insee": "86015" - } - }, - { - "pk": 36383, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "AVANTON", - "center": "POINT (444476.7347684846026823 2186769.0118240271694958)", - "surface": 10790000, - "canton": null, - "numero_insee": "86016" - } - }, - { - "pk": 16003, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "AYRON", - "center": "POINT (424572.3866471658693627 2185203.2494207522831857)", - "surface": 28130000, - "canton": null, - "numero_insee": "86017" - } - }, - { - "pk": 22420, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BASSES", - "center": "POINT (431812.9037079268600792 2229500.7537865629419684)", - "surface": 10200000, - "canton": null, - "numero_insee": "86018" - } - }, - { - "pk": 4779, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BEAUMONT", - "center": "POINT (454814.5939111177576706 2195361.9429489369504154)", - "surface": 22030000, - "canton": null, - "numero_insee": "86019" - } - }, - { - "pk": 29668, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BELLEFONDS", - "center": "POINT (467613.4556308402679861 2184758.7493132767267525)", - "surface": 8600000, - "canton": null, - "numero_insee": "86020" - } - }, - { - "pk": 19766, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BENASSAY", - "center": "POINT (423556.6364611708559096 2174885.8613137514330447)", - "surface": 42630000, - "canton": null, - "numero_insee": "86021" - } - }, - { - "pk": 12342, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BERRIE", - "center": "POINT (416983.3768718562787399 2231580.1281955814920366)", - "surface": 16810000, - "canton": null, - "numero_insee": "86022" - } - }, - { - "pk": 36109, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BERTHEGON", - "center": "POINT (442455.0681918038753793 2213375.1087754159234464)", - "surface": 10570000, - "canton": null, - "numero_insee": "86023" - } - }, - { - "pk": 22118, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BERUGES", - "center": "POINT (436366.9934702666942030 2174991.7208334519527853)", - "surface": 32850000, - "canton": null, - "numero_insee": "86024" - } - }, - { - "pk": 23571, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BETHINES", - "center": "POINT (495637.2898435325478204 2172780.7708564801141620)", - "surface": 37510000, - "canton": null, - "numero_insee": "86025" - } - }, - { - "pk": 26430, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BEUXES", - "center": "POINT (435777.9158010239480063 2234137.3604925321415067)", - "surface": 11260000, - "canton": null, - "numero_insee": "86026" - } - }, - { - "pk": 13565, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BIARD", - "center": "POINT (443747.3080572748440318 2178155.4813134600408375)", - "surface": 7490000, - "canton": null, - "numero_insee": "86027" - } - }, - { - "pk": 6879, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BIGNOUX", - "center": "POINT (456645.2704725387739018 2179763.5744604393839836)", - "surface": 14630000, - "canton": null, - "numero_insee": "86028" - } - }, - { - "pk": 22249, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BLANZAY", - "center": "POINT (439390.3602253543213010 2136182.1084849950857460)", - "surface": 35560000, - "canton": null, - "numero_insee": "86029" - } - }, - { - "pk": 26924, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BLASLAY", - "center": "POINT (439009.5125537780695595 2194330.3622047984972596)", - "surface": 19890000, - "canton": null, - "numero_insee": "86030" - } - }, - { - "pk": 7108, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BONNES", - "center": "POINT (466946.0886705190641806 2180749.7315885839052498)", - "surface": 34860000, - "canton": null, - "numero_insee": "86031" - } - }, - { - "pk": 17095, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BONNEUIL-MATOURS", - "center": "POINT (464482.7658160387072712 2188135.7446061712689698)", - "surface": 42950000, - "canton": null, - "numero_insee": "86032" - } - }, - { - "pk": 19967, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BOURESSE", - "center": "POINT (464881.5375690097571351 2152107.3459809808991849)", - "surface": 37310000, - "canton": null, - "numero_insee": "86034" - } - }, - { - "pk": 16458, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BOURG-ARCHAMBAULT", - "center": "POINT (497300.7823694426915608 2153277.3293639756739140)", - "surface": 24280000, - "canton": null, - "numero_insee": "86035" - } - }, - { - "pk": 3448, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BOURNAND", - "center": "POINT (428281.2828326127491891 2232974.4940378335304558)", - "surface": 32690000, - "canton": null, - "numero_insee": "86036" - } - }, - { - "pk": 23889, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BRIGUEIL-LE-CHANTRE", - "center": "POINT (504093.8938253409578465 2154835.1732693901285529)", - "surface": 54240000, - "canton": null, - "numero_insee": "86037" - } - }, - { - "pk": 21277, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BRION", - "center": "POINT (456471.2846925166668370 2152438.0036786058917642)", - "surface": 16150000, - "canton": null, - "numero_insee": "86038" - } - }, - { - "pk": 18894, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BRUX", - "center": "POINT (434544.9612008495023474 2141146.5636568842455745)", - "surface": 35890000, - "canton": null, - "numero_insee": "86039" - } - }, - { - "pk": 4758, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA BUSSIERE", - "center": "POINT (483947.2798739768331870 2182392.1196138882078230)", - "surface": 32240000, - "canton": null, - "numero_insee": "86040" - } - }, - { - "pk": 6989, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BUXEROLLES", - "center": "POINT (449235.1722945299115963 2180202.6476440411061049)", - "surface": 9100000, - "canton": null, - "numero_insee": "86041" - } - }, - { - "pk": 12921, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "BUXEUIL", - "center": "POINT (472624.6247633547754958 2220130.5214436422102153)", - "surface": 11980000, - "canton": null, - "numero_insee": "86042" - } - }, - { - "pk": 26283, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CEAUX-EN-COUHE", - "center": "POINT (438389.4456854672171175 2148284.7479785257019103)", - "surface": 16240000, - "canton": null, - "numero_insee": "86043" - } - }, - { - "pk": 16421, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CEAUX-EN-LOUDUN", - "center": "POINT (439831.4542312767589465 2228065.7879992946982384)", - "surface": 28750000, - "canton": null, - "numero_insee": "86044" - } - }, - { - "pk": 15359, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CELLE-LEVESCAULT", - "center": "POINT (433407.6103727687150240 2157651.9605393926613033)", - "surface": 42840000, - "canton": null, - "numero_insee": "86045" - } - }, - { - "pk": 19814, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CENON-SUR-VIENNE", - "center": "POINT (461906.9512435985379852 2197022.0796166458167136)", - "surface": 8810000, - "canton": null, - "numero_insee": "86046" - } - }, - { - "pk": 10276, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CERNAY", - "center": "POINT (444718.0588079751469195 2205987.5365443327464163)", - "surface": 3340000, - "canton": null, - "numero_insee": "86047" - } - }, - { - "pk": 32185, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHABOURNAY", - "center": "POINT (441921.7497367984615266 2193153.4144300371408463)", - "surface": 5900000, - "canton": null, - "numero_insee": "86048" - } - }, - { - "pk": 26245, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHALAIS", - "center": "POINT (429677.3641405773232691 2221476.3987149475142360)", - "surface": 14870000, - "canton": null, - "numero_insee": "86049" - } - }, - { - "pk": 18887, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHALANDRAY", - "center": "POINT (420658.5190696289064363 2186472.0599065287970006)", - "surface": 25270000, - "canton": null, - "numero_insee": "86050" - } - }, - { - "pk": 31752, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHAMPAGNE-LE-SEC", - "center": "POINT (434300.9783058648463339 2134338.3868852150626481)", - "surface": 8020000, - "canton": null, - "numero_insee": "86051" - } - }, - { - "pk": 37011, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHAMPAGNE-SAINT-HILAIRE", - "center": "POINT (444689.6998947573592886 2148937.4084875797852874)", - "surface": 46870000, - "canton": null, - "numero_insee": "86052" - } - }, - { - "pk": 8549, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHAMPIGNY-LE-SEC", - "center": "POINT (433108.9632933220709674 2193781.1461277608759701)", - "surface": 24360000, - "canton": null, - "numero_insee": "86053" - } - }, - { - "pk": 35448, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHAMPNIERS", - "center": "POINT (444989.2569099488900974 2136929.0670272982679307)", - "surface": 20050000, - "canton": null, - "numero_insee": "86054" - } - }, - { - "pk": 3200, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA CHAPELLE-BATON", - "center": "POINT (451220.1415325780981220 2133877.8351018307730556)", - "surface": 29840000, - "canton": null, - "numero_insee": "86055" - } - }, - { - "pk": 22934, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA CHAPELLE-MONTREUIL", - "center": "POINT (431091.6548523581586778 2171445.0365420668385923)", - "surface": 24700000, - "canton": null, - "numero_insee": "86056" - } - }, - { - "pk": 35436, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA CHAPELLE-MOULIERE", - "center": "POINT (462211.6203321977518499 2184413.7064699353650212)", - "surface": 17610000, - "canton": null, - "numero_insee": "86058" - } - }, - { - "pk": 21224, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHAPELLE-VIVIERS", - "center": "POINT (476689.1910009385319427 2164516.2343358476646245)", - "surface": 14740000, - "canton": null, - "numero_insee": "86059" - } - }, - { - "pk": 30865, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHARRAIS", - "center": "POINT (436636.5688338947948068 2190807.7163191614672542)", - "surface": 14930000, - "canton": null, - "numero_insee": "86060" - } - }, - { - "pk": 19960, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHARROUX", - "center": "POINT (451565.1483876494457945 2128475.7750371210277081)", - "surface": 44630000, - "canton": null, - "numero_insee": "86061" - } - }, - { - "pk": 29401, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHASSENEUIL-DU-POITOU", - "center": "POINT (448791.7711455408716574 2185403.5073326528072357)", - "surface": 17520000, - "canton": null, - "numero_insee": "86062" - } - }, - { - "pk": 3755, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHATAIN", - "center": "POINT (453029.3279555221088231 2120880.9432264757342637)", - "surface": 22150000, - "canton": null, - "numero_insee": "86063" - } - }, - { - "pk": 15247, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHATEAU-GARNIER", - "center": "POINT (453757.6671177507378161 2141705.9127758638933301)", - "surface": 36300000, - "canton": null, - "numero_insee": "86064" - } - }, - { - "pk": 22225, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHATEAU-LARCHER", - "center": "POINT (443502.6635459169046953 2159336.8750112601555884)", - "surface": 15380000, - "canton": null, - "numero_insee": "86065" - } - }, - { - "pk": 33523, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHATELLERAULT", - "center": "POINT (463857.1011652202578261 2203243.5607176315970719)", - "surface": 51820000, - "canton": null, - "numero_insee": "86066" - } - }, - { - "pk": 26927, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHATILLON", - "center": "POINT (434681.4124551150016487 2148854.6240404304116964)", - "surface": 5960000, - "canton": null, - "numero_insee": "86067" - } - }, - { - "pk": 22055, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHAUNAY", - "center": "POINT (431883.2437644951278344 2136220.1244320031255484)", - "surface": 38790000, - "canton": null, - "numero_insee": "86068" - } - }, - { - "pk": 34507, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA CHAUSSEE", - "center": "POINT (430356.3866382153355516 2211973.9778908961452544)", - "surface": 13510000, - "canton": null, - "numero_insee": "86069" - } - }, - { - "pk": 31112, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHAUVIGNY", - "center": "POINT (472807.2098138362052850 2173992.3936209352687001)", - "surface": 95820000, - "canton": null, - "numero_insee": "86070" - } - }, - { - "pk": 29674, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHENECHE", - "center": "POINT (442199.6346206152811646 2195858.0414425772614777)", - "surface": 5380000, - "canton": null, - "numero_insee": "86071" - } - }, - { - "pk": 3505, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHENEVELLES", - "center": "POINT (472851.2761082678334787 2192809.1230974169448018)", - "surface": 29210000, - "canton": null, - "numero_insee": "86072" - } - }, - { - "pk": 17118, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHERVES", - "center": "POINT (423325.1419065878726542 2190797.8073840271681547)", - "surface": 26090000, - "canton": null, - "numero_insee": "86073" - } - }, - { - "pk": 22761, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHIRE-EN-MONTREUIL", - "center": "POINT (429594.5867735673673451 2183042.8235391899943352)", - "surface": 21530000, - "canton": null, - "numero_insee": "86074" - } - }, - { - "pk": 21488, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CHOUPPES", - "center": "POINT (434533.2151458985172212 2203100.9115649745799601)", - "surface": 31720000, - "canton": null, - "numero_insee": "86075" - } - }, - { - "pk": 21631, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CISSE", - "center": "POINT (439583.5765032257186249 2185427.4034065566956997)", - "surface": 17320000, - "canton": null, - "numero_insee": "86076" - } - }, - { - "pk": 22575, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CIVAUX", - "center": "POINT (471809.2703054146841168 2161573.1730163767933846)", - "surface": 26300000, - "canton": null, - "numero_insee": "86077" - } - }, - { - "pk": 6905, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CIVRAY", - "center": "POINT (442654.3233983516111039 2128802.3792737838812172)", - "surface": 8710000, - "canton": null, - "numero_insee": "86078" - } - }, - { - "pk": 3233, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA ROCHE-RIGAULT", - "center": "POINT (435184.9265098408795893 2221121.5787593158893287)", - "surface": 25600000, - "canton": null, - "numero_insee": "86079" - } - }, - { - "pk": 37085, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CLOUE", - "center": "POINT (433063.5163382116006687 2162953.8259115158580244)", - "surface": 12040000, - "canton": null, - "numero_insee": "86080" - } - }, - { - "pk": 15828, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "COLOMBIERS", - "center": "POINT (454880.6892679788288660 2199466.0159057774581015)", - "surface": 21030000, - "canton": null, - "numero_insee": "86081" - } - }, - { - "pk": 29686, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "COUHE", - "center": "POINT (433802.1787951191654429 2146245.0192787880077958)", - "surface": 9100000, - "canton": null, - "numero_insee": "86082" - } - }, - { - "pk": 18088, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "COULOMBIERS", - "center": "POINT (433920.4026981795905158 2168265.5976502266712487)", - "surface": 28390000, - "canton": null, - "numero_insee": "86083" - } - }, - { - "pk": 31051, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "COULONGES", - "center": "POINT (510676.8254101390484720 2157592.3688366874121130)", - "surface": 18470000, - "canton": null, - "numero_insee": "86084" - } - }, - { - "pk": 34692, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "COUSSAY", - "center": "POINT (437107.9551320162136108 2206425.0178936445154250)", - "surface": 20270000, - "canton": null, - "numero_insee": "86085" - } - }, - { - "pk": 29809, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "COUSSAY-LES-BOIS", - "center": "POINT (476973.2156186652136967 2202651.7472742977552116)", - "surface": 43460000, - "canton": null, - "numero_insee": "86086" - } - }, - { - "pk": 18257, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CRAON", - "center": "POINT (422652.7659582260530442 2199499.7555842073634267)", - "surface": 21760000, - "canton": null, - "numero_insee": "86087" - } - }, - { - "pk": 14101, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CROUTELLE", - "center": "POINT (443186.5699784372700378 2173346.6338122072629631)", - "surface": 1510000, - "canton": null, - "numero_insee": "86088" - } - }, - { - "pk": 11297, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CUHON", - "center": "POINT (429569.7967236766126007 2198155.6878606192767620)", - "surface": 16510000, - "canton": null, - "numero_insee": "86089" - } - }, - { - "pk": 24000, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CURCAY-SUR-DIVE", - "center": "POINT (417927.8409085501334630 2226283.4906327147036791)", - "surface": 15840000, - "canton": null, - "numero_insee": "86090" - } - }, - { - "pk": 16205, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "CURZAY-SUR-VONNE", - "center": "POINT (423812.1781923287780955 2168182.0743373227305710)", - "surface": 16530000, - "canton": null, - "numero_insee": "86091" - } - }, - { - "pk": 31111, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "DANGE-SAINT-ROMAIN", - "center": "POINT (468359.4728403087938204 2215491.2647229973226786)", - "surface": 34840000, - "canton": null, - "numero_insee": "86092" - } - }, - { - "pk": 25472, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "DERCE", - "center": "POINT (438016.0552678710082546 2217642.0342291309498250)", - "surface": 12330000, - "canton": null, - "numero_insee": "86093" - } - }, - { - "pk": 16549, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "DIENNE", - "center": "POINT (461699.3455317352199927 2161689.5192519351840019)", - "surface": 17380000, - "canton": null, - "numero_insee": "86094" - } - }, - { - "pk": 17937, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "DOUSSAY", - "center": "POINT (442512.1924385225865990 2206469.7132557048462331)", - "surface": 27210000, - "canton": null, - "numero_insee": "86096" - } - }, - { - "pk": 37827, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA FERRIERE-AIROUX", - "center": "POINT (451605.3612998758908361 2147793.5796091975644231)", - "surface": 27090000, - "canton": null, - "numero_insee": "86097" - } - }, - { - "pk": 11291, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "FLEIX", - "center": "POINT (478109.0034798128763214 2174336.6532539250329137)", - "surface": 9260000, - "canton": null, - "numero_insee": "86098" - } - }, - { - "pk": 9355, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "FLEURE", - "center": "POINT (460659.5450600605108775 2166385.0630357479676604)", - "surface": 16910000, - "canton": null, - "numero_insee": "86099" - } - }, - { - "pk": 33752, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "FONTAINE-LE-COMTE", - "center": "POINT (439592.7592945465003140 2172215.9375952500849962)", - "surface": 18770000, - "canton": null, - "numero_insee": "86100" - } - }, - { - "pk": 8605, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "FROZES", - "center": "POINT (431461.3735414709080942 2187261.9028844679705799)", - "surface": 8790000, - "canton": null, - "numero_insee": "86102" - } - }, - { - "pk": 33251, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "GENCAY", - "center": "POINT (451954.3089071267750114 2154002.0215061320923269)", - "surface": 4810000, - "canton": null, - "numero_insee": "86103" - } - }, - { - "pk": 21035, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "GENOUILLE", - "center": "POINT (445494.7902315937681124 2124221.6799243465065956)", - "surface": 29940000, - "canton": null, - "numero_insee": "86104" - } - }, - { - "pk": 30681, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "GIZAY", - "center": "POINT (452991.3954157456755638 2161717.4644511612132192)", - "surface": 20670000, - "canton": null, - "numero_insee": "86105" - } - }, - { - "pk": 24110, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "GLENOUZE", - "center": "POINT (421935.8783872135682032 2225716.0725884293206036)", - "surface": 9650000, - "canton": null, - "numero_insee": "86106" - } - }, - { - "pk": 9117, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "GOUEX", - "center": "POINT (471376.9405221866327338 2153362.2862459607422352)", - "surface": 18260000, - "canton": null, - "numero_insee": "86107" - } - }, - { - "pk": 17695, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA GRIMAUDIERE", - "center": "POINT (423926.5195372958551161 2202813.1038372414186597)", - "surface": 19280000, - "canton": null, - "numero_insee": "86108" - } - }, - { - "pk": 9340, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "GUESNES", - "center": "POINT (433339.7035705375601538 2214300.5832052063196898)", - "surface": 13480000, - "canton": null, - "numero_insee": "86109" - } - }, - { - "pk": 18852, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "HAIMS", - "center": "POINT (491764.9092862607794814 2169045.3268897887319326)", - "surface": 32800000, - "canton": null, - "numero_insee": "86110" - } - }, - { - "pk": 17666, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "INGRANDES", - "center": "POINT (467106.5896750942338258 2209675.9573967489413917)", - "surface": 35090000, - "canton": null, - "numero_insee": "86111" - } - }, - { - "pk": 30918, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "L'ISLE-JOURDAIN", - "center": "POINT (473599.0843356847180985 2138867.6880906787700951)", - "surface": 5900000, - "canton": null, - "numero_insee": "86112" - } - }, - { - "pk": 33566, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ITEUIL", - "center": "POINT (442939.3209989971364848 2166938.9499571430496871)", - "surface": 22060000, - "canton": null, - "numero_insee": "86113" - } - }, - { - "pk": 5032, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "JARDRES", - "center": "POINT (464486.3919714097282849 2175624.8786026090383530)", - "surface": 20490000, - "canton": null, - "numero_insee": "86114" - } - }, - { - "pk": 23667, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "JAUNAY-CLAN", - "center": "POINT (448553.5038570938631892 2190005.5252254749648273)", - "surface": 27440000, - "canton": null, - "numero_insee": "86115" - } - }, - { - "pk": 15238, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "JAZENEUIL", - "center": "POINT (426236.4555339658982120 2165499.7126625133678317)", - "surface": 32190000, - "canton": null, - "numero_insee": "86116" - } - }, - { - "pk": 15870, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "JOUHET", - "center": "POINT (487682.3660237134899944 2166509.1978360535576940)", - "surface": 25390000, - "canton": null, - "numero_insee": "86117" - } - }, - { - "pk": 14093, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "JOURNET", - "center": "POINT (495309.3535979563603178 2164070.3739430140703917)", - "surface": 59150000, - "canton": null, - "numero_insee": "86118" - } - }, - { - "pk": 29256, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "JOUSSE", - "center": "POINT (454991.8290225560776889 2137712.5191704020835459)", - "surface": 7620000, - "canton": null, - "numero_insee": "86119" - } - }, - { - "pk": 14756, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LATHUS-SAINT-REMY", - "center": "POINT (492743.5770816740114242 2147634.4278451628051698)", - "surface": 98490000, - "canton": null, - "numero_insee": "86120" - } - }, - { - "pk": 27934, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LATILLE", - "center": "POINT (425805.5889966645045206 2181310.0376135427504778)", - "surface": 25240000, - "canton": null, - "numero_insee": "86121" - } - }, - { - "pk": 34687, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LAUTHIERS", - "center": "POINT (476665.5112720394972712 2179429.1368891787715256)", - "surface": 8270000, - "canton": null, - "numero_insee": "86122" - } - }, - { - "pk": 20104, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LAVAUSSEAU", - "center": "POINT (427067.7371112755499780 2173913.9851692765951157)", - "surface": 24790000, - "canton": null, - "numero_insee": "86123" - } - }, - { - "pk": 9111, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LAVOUX", - "center": "POINT (460957.8536839366424829 2178698.3454621150158346)", - "surface": 15390000, - "canton": null, - "numero_insee": "86124" - } - }, - { - "pk": 3916, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LEIGNE-LES-BOIS", - "center": "POINT (475416.8009690776234493 2197234.1998559446074069)", - "surface": 29920000, - "canton": null, - "numero_insee": "86125" - } - }, - { - "pk": 21548, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LEIGNES-SUR-FONTAINE", - "center": "POINT (479254.7561133010312915 2168941.4154510973021388)", - "surface": 32380000, - "canton": null, - "numero_insee": "86126" - } - }, - { - "pk": 37300, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LEIGNE-SUR-USSEAU", - "center": "POINT (458259.0856776889413595 2214506.7877209191210568)", - "surface": 11200000, - "canton": null, - "numero_insee": "86127" - } - }, - { - "pk": 22095, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LENCLOITRE", - "center": "POINT (444847.1202449192060158 2202485.6126822321675718)", - "surface": 18890000, - "canton": null, - "numero_insee": "86128" - } - }, - { - "pk": 28991, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LESIGNY", - "center": "POINT (480654.5241292131831869 2205284.5256837289780378)", - "surface": 13070000, - "canton": null, - "numero_insee": "86129" - } - }, - { - "pk": 5270, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LEUGNY", - "center": "POINT (474792.6771615674952045 2212141.7463711220771074)", - "surface": 15680000, - "canton": null, - "numero_insee": "86130" - } - }, - { - "pk": 18338, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LHOMMAIZE", - "center": "POINT (465701.7890860920306295 2161822.7867670515552163)", - "surface": 30690000, - "canton": null, - "numero_insee": "86131" - } - }, - { - "pk": 18340, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LIGLET", - "center": "POINT (503782.9791247692191973 2168144.3821931541897357)", - "surface": 53330000, - "canton": null, - "numero_insee": "86132" - } - }, - { - "pk": 33750, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LIGUGE", - "center": "POINT (443606.7678462901385501 2170947.9998678374104202)", - "surface": 22850000, - "canton": null, - "numero_insee": "86133" - } - }, - { - "pk": 25819, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LINAZAY", - "center": "POINT (434420.9220027230912820 2131937.1961953942663968)", - "surface": 9240000, - "canton": null, - "numero_insee": "86134" - } - }, - { - "pk": 30443, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LINIERS", - "center": "POINT (461636.8520521053578705 2181306.2428609915077686)", - "surface": 16190000, - "canton": null, - "numero_insee": "86135" - } - }, - { - "pk": 23036, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LIZANT", - "center": "POINT (441109.2781131694209762 2121983.3733307798393071)", - "surface": 16840000, - "canton": null, - "numero_insee": "86136" - } - }, - { - "pk": 20883, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LOUDUN", - "center": "POINT (429842.7900486779399216 2225681.2940377746708691)", - "surface": 43920000, - "canton": null, - "numero_insee": "86137" - } - }, - { - "pk": 15940, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LUCHAPT", - "center": "POINT (479056.7714650375419296 2132507.1816696021705866)", - "surface": 26380000, - "canton": null, - "numero_insee": "86138" - } - }, - { - "pk": 22419, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LUSIGNAN", - "center": "POINT (429166.9410726252244785 2162120.9121000599116087)", - "surface": 37900000, - "canton": null, - "numero_insee": "86139" - } - }, - { - "pk": 4575, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LUSSAC-LES-CHATEAUX", - "center": "POINT (476447.9199036987847649 2157407.9302780125290155)", - "surface": 28190000, - "canton": null, - "numero_insee": "86140" - } - }, - { - "pk": 27884, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MAGNE", - "center": "POINT (450271.1372472897637635 2151786.1176325357519090)", - "surface": 20390000, - "canton": null, - "numero_insee": "86141" - } - }, - { - "pk": 20879, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MAILLE", - "center": "POINT (428545.8242880780017003 2188839.1987062874250114)", - "surface": 12290000, - "canton": null, - "numero_insee": "86142" - } - }, - { - "pk": 35672, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MAISONNEUVE", - "center": "POINT (425503.7498487658449449 2193618.2205820949748158)", - "surface": 9190000, - "canton": null, - "numero_insee": "86144" - } - }, - { - "pk": 4896, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MARCAY", - "center": "POINT (437846.7518004224984907 2165495.5878621088340878)", - "surface": 30830000, - "canton": null, - "numero_insee": "86145" - } - }, - { - "pk": 26591, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MARIGNY-BRIZAY", - "center": "POINT (450209.2896651289192960 2195523.9813903458416462)", - "surface": 21430000, - "canton": null, - "numero_insee": "86146" - } - }, - { - "pk": 37089, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MARIGNY-CHEMEREAU", - "center": "POINT (437086.6515155496308580 2160584.9583787270821631)", - "surface": 11460000, - "canton": null, - "numero_insee": "86147" - } - }, - { - "pk": 15861, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MARNAY", - "center": "POINT (447027.9019177843583748 2156663.6450641439296305)", - "surface": 45330000, - "canton": null, - "numero_insee": "86148" - } - }, - { - "pk": 35140, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MARTAIZE", - "center": "POINT (425820.6358956721378490 2215839.8126378757879138)", - "surface": 19670000, - "canton": null, - "numero_insee": "86149" - } - }, - { - "pk": 11863, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MASSOGNES", - "center": "POINT (425879.2681672482867725 2196623.9086162778548896)", - "surface": 13780000, - "canton": null, - "numero_insee": "86150" - } - }, - { - "pk": 16420, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MAULAY", - "center": "POINT (438590.0389388393377885 2220849.4791367501020432)", - "surface": 23000000, - "canton": null, - "numero_insee": "86151" - } - }, - { - "pk": 4340, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MAUPREVOIR", - "center": "POINT (459351.8248253810452297 2130942.4675641343928874)", - "surface": 48700000, - "canton": null, - "numero_insee": "86152" - } - }, - { - "pk": 37705, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MAZEROLLES", - "center": "POINT (471247.7998326345696114 2156864.3372250963002443)", - "surface": 21370000, - "canton": null, - "numero_insee": "86153" - } - }, - { - "pk": 28621, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MAZEUIL", - "center": "POINT (428040.4981985839549452 2201545.9712209338322282)", - "surface": 13730000, - "canton": null, - "numero_insee": "86154" - } - }, - { - "pk": 25826, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MESSEME", - "center": "POINT (435147.6986668546451256 2225625.0518841645680368)", - "surface": 9880000, - "canton": null, - "numero_insee": "86156" - } - }, - { - "pk": 15921, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MIGNALOUX-BEAUVOIR", - "center": "POINT (452690.9481999176205136 2173825.6563135250471532)", - "surface": 21610000, - "canton": null, - "numero_insee": "86157" - } - }, - { - "pk": 37656, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MIGNE-AUXANCES", - "center": "POINT (444405.6384245656663552 2183265.3801011783070862)", - "surface": 28960000, - "canton": null, - "numero_insee": "86158" - } - }, - { - "pk": 19618, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MILLAC", - "center": "POINT (474040.1125361486338079 2133966.9067991832271218)", - "surface": 40670000, - "canton": null, - "numero_insee": "86159" - } - }, - { - "pk": 37661, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MONCONTOUR", - "center": "POINT (422642.9369249769952148 2212811.0282897008582950)", - "surface": 41320000, - "canton": null, - "numero_insee": "86161" - } - }, - { - "pk": 18341, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MONDION", - "center": "POINT (458038.2033210014924407 2217007.0721702058799565)", - "surface": 8960000, - "canton": null, - "numero_insee": "86162" - } - }, - { - "pk": 20958, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MONTAMISE", - "center": "POINT (454319.3821693814825267 2182646.8388993372209370)", - "surface": 32440000, - "canton": null, - "numero_insee": "86163" - } - }, - { - "pk": 15201, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MONTHOIRON", - "center": "POINT (468639.6403575140284374 2193775.0527459182776511)", - "surface": 16870000, - "canton": null, - "numero_insee": "86164" - } - }, - { - "pk": 20550, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MONTMORILLON", - "center": "POINT (489242.6298760992358439 2159415.8713737134821713)", - "surface": 56750000, - "canton": null, - "numero_insee": "86165" - } - }, - { - "pk": 18888, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MONTREUIL-BONNIN", - "center": "POINT (431155.3425821266137064 2175849.4281776044517756)", - "surface": 25960000, - "canton": null, - "numero_insee": "86166" - } - }, - { - "pk": 8577, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MONTS-SUR-GUESNES", - "center": "POINT (436739.0416536320699379 2214729.0229123421013355)", - "surface": 11260000, - "canton": null, - "numero_insee": "86167" - } - }, - { - "pk": 30439, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MORTON", - "center": "POINT (421648.1447175282519311 2236322.5429713432677090)", - "surface": 8110000, - "canton": null, - "numero_insee": "86169" - } - }, - { - "pk": 3541, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MOULISMES", - "center": "POINT (482229.0597169771790504 2148247.7013232484459877)", - "surface": 29210000, - "canton": null, - "numero_insee": "86170" - } - }, - { - "pk": 4452, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MOUSSAC", - "center": "POINT (473163.8726889695972204 2143067.8688918161205947)", - "surface": 24860000, - "canton": null, - "numero_insee": "86171" - } - }, - { - "pk": 20487, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MOUTERRE-SUR-BLOURDE", - "center": "POINT (478925.1144334787968546 2136309.5382115347310901)", - "surface": 20290000, - "canton": null, - "numero_insee": "86172" - } - }, - { - "pk": 18726, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "MOUTERRE-SILLY", - "center": "POINT (425058.9289067403879017 2223239.7621808848343790)", - "surface": 31050000, - "canton": null, - "numero_insee": "86173" - } - }, - { - "pk": 37915, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "NALLIERS", - "center": "POINT (488372.4270849025342613 2179826.6096750255674124)", - "surface": 15940000, - "canton": null, - "numero_insee": "86175" - } - }, - { - "pk": 12373, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "NERIGNAC", - "center": "POINT (476248.1786095338175073 2145295.4443372124806046)", - "surface": 4450000, - "canton": null, - "numero_insee": "86176" - } - }, - { - "pk": 26670, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "NEUVILLE-DE-POITOU", - "center": "POINT (440755.5637805393780582 2188940.1349143171682954)", - "surface": 17020000, - "canton": null, - "numero_insee": "86177" - } - }, - { - "pk": 22729, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "NIEUIL-L'ESPOIR", - "center": "POINT (456252.6432126916479319 2166748.9028607700020075)", - "surface": 21170000, - "canton": null, - "numero_insee": "86178" - } - }, - { - "pk": 18652, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "NOUAILLE-MAUPERTUIS", - "center": "POINT (452730.7295073810964823 2169021.7624741969630122)", - "surface": 22130000, - "canton": null, - "numero_insee": "86180" - } - }, - { - "pk": 26429, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "NUEIL-SOUS-FAYE", - "center": "POINT (442889.2257898126263171 2221385.4578676242381334)", - "surface": 15980000, - "canton": null, - "numero_insee": "86181" - } - }, - { - "pk": 13075, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ORCHES", - "center": "POINT (446877.5457200027303770 2211109.7486847336404026)", - "surface": 19480000, - "canton": null, - "numero_insee": "86182" - } - }, - { - "pk": 19806, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LES ORMES", - "center": "POINT (469525.5472118601901457 2219704.4800540087744594)", - "surface": 23900000, - "canton": null, - "numero_insee": "86183" - } - }, - { - "pk": 33314, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "OUZILLY", - "center": "POINT (448878.4360572936711833 2199116.0605758549645543)", - "surface": 10560000, - "canton": null, - "numero_insee": "86184" - } - }, - { - "pk": 36839, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "OYRE", - "center": "POINT (471121.3366364966495894 2208308.0602257871069014)", - "surface": 33170000, - "canton": null, - "numero_insee": "86186" - } - }, - { - "pk": 31963, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PAIZAY-LE-SEC", - "center": "POINT (480685.3469119635992683 2177460.7563722822815180)", - "surface": 34680000, - "canton": null, - "numero_insee": "86187" - } - }, - { - "pk": 27134, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PAYRE", - "center": "POINT (434753.3615393001236953 2152258.2654834440909326)", - "surface": 26370000, - "canton": null, - "numero_insee": "86188" - } - }, - { - "pk": 21696, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PAYROUX", - "center": "POINT (456707.3475277968682349 2136025.1902639600448310)", - "surface": 30350000, - "canton": null, - "numero_insee": "86189" - } - }, - { - "pk": 18184, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PERSAC", - "center": "POINT (476407.6430352026363835 2150201.1662531290203333)", - "surface": 60350000, - "canton": null, - "numero_insee": "86190" - } - }, - { - "pk": 23878, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PINDRAY", - "center": "POINT (483192.0002044038847089 2164870.4859521607868373)", - "surface": 27030000, - "canton": null, - "numero_insee": "86191" - } - }, - { - "pk": 5853, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PLAISANCE", - "center": "POINT (485741.9343839846551418 2147075.7998081771656871)", - "surface": 12990000, - "canton": null, - "numero_insee": "86192" - } - }, - { - "pk": 18336, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PLEUMARTIN", - "center": "POINT (479441.5639568591141142 2194665.3655925728380680)", - "surface": 24050000, - "canton": null, - "numero_insee": "86193" - } - }, - { - "pk": 17478, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "POITIERS", - "center": "POINT (448454.4109612096799538 2177794.0866973181255162)", - "surface": 42410000, - "canton": null, - "numero_insee": "86194" - } - }, - { - "pk": 3474, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PORT-DE-PILES", - "center": "POINT (467690.9625273746205494 2223692.6311865849420428)", - "surface": 5780000, - "canton": null, - "numero_insee": "86195" - } - }, - { - "pk": 28565, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "POUANCAY", - "center": "POINT (416456.5678649086039513 2234778.4463860685937107)", - "surface": 5430000, - "canton": null, - "numero_insee": "86196" - } - }, - { - "pk": 20060, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "POUANT", - "center": "POINT (443449.1213394244550727 2226294.2042381358332932)", - "surface": 26850000, - "canton": null, - "numero_insee": "86197" - } - }, - { - "pk": 8855, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "POUILLE", - "center": "POINT (465210.1896467477199621 2172828.4219643031246960)", - "surface": 14010000, - "canton": null, - "numero_insee": "86198" - } - }, - { - "pk": 18357, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PRESSAC", - "center": "POINT (463198.9970611290191300 2125669.5176955228671432)", - "surface": 49280000, - "canton": null, - "numero_insee": "86200" - } - }, - { - "pk": 35867, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "PRINCAY", - "center": "POINT (441429.4550896249711514 2216369.1649453751742840)", - "surface": 16570000, - "canton": null, - "numero_insee": "86201" - } - }, - { - "pk": 33808, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA PUYE", - "center": "POINT (478226.9244885902153328 2184246.2798204384744167)", - "surface": 23700000, - "canton": null, - "numero_insee": "86202" - } - }, - { - "pk": 15237, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "QUEAUX", - "center": "POINT (469026.4262243564007804 2147137.2352234800346196)", - "surface": 53240000, - "canton": null, - "numero_insee": "86203" - } - }, - { - "pk": 27696, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "QUINCAY", - "center": "POINT (437722.6071004110854119 2180507.7441312130540609)", - "surface": 29640000, - "canton": null, - "numero_insee": "86204" - } - }, - { - "pk": 13034, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "RANTON", - "center": "POINT (419841.6953985927393660 2224798.0291340718977153)", - "surface": 6040000, - "canton": null, - "numero_insee": "86205" - } - }, - { - "pk": 18722, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "RASLAY", - "center": "POINT (423040.9486579417716712 2237334.8723456091247499)", - "surface": 4030000, - "canton": null, - "numero_insee": "86206" - } - }, - { - "pk": 16607, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA ROCHE-POSAY", - "center": "POINT (482813.5111486726673320 2198396.5436599333770573)", - "surface": 35090000, - "canton": null, - "numero_insee": "86207" - } - }, - { - "pk": 9701, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LE ROCHEREAU", - "center": "POINT (432034.5575070799095556 2190569.5003620167262852)", - "surface": 8900000, - "canton": null, - "numero_insee": "86208" - } - }, - { - "pk": 21209, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ROCHES-PREMARIE-ANDILLE", - "center": "POINT (448753.9886280712089501 2165786.0110760340467095)", - "surface": 22270000, - "canton": null, - "numero_insee": "86209" - } - }, - { - "pk": 14570, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ROIFFE", - "center": "POINT (426632.9437537277117372 2238665.6134039680473506)", - "surface": 24250000, - "canton": null, - "numero_insee": "86210" - } - }, - { - "pk": 18286, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ROMAGNE", - "center": "POINT (443147.9984615049324930 2141718.1718194275163114)", - "surface": 41150000, - "canton": null, - "numero_insee": "86211" - } - }, - { - "pk": 20949, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "ROUILLE", - "center": "POINT (422475.5036626124056056 2160364.1261617308482528)", - "surface": 51990000, - "canton": null, - "numero_insee": "86213" - } - }, - { - "pk": 6773, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-BENOIT", - "center": "POINT (447785.3251652999897487 2173985.2176910503767431)", - "surface": 13570000, - "canton": null, - "numero_insee": "86214" - } - }, - { - "pk": 11538, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-CHRISTOPHE", - "center": "POINT (450542.3238317500799894 2215743.9817195655778050)", - "surface": 15140000, - "canton": null, - "numero_insee": "86217" - } - }, - { - "pk": 26671, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-CLAIR", - "center": "POINT (426256.4919638207647949 2211539.7670644233003259)", - "surface": 10780000, - "canton": null, - "numero_insee": "86218" - } - }, - { - "pk": 19301, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-CYR", - "center": "POINT (457745.0823962463182397 2191983.2838673847727478)", - "surface": 15080000, - "canton": null, - "numero_insee": "86219" - } - }, - { - "pk": 13345, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-GAUDENT", - "center": "POINT (441378.8952418115222827 2125688.9941957574337721)", - "surface": 11770000, - "canton": null, - "numero_insee": "86220" - } - }, - { - "pk": 19923, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-GEORGES-LES-BAILLARGEAUX", - "center": "POINT (454487.2163730392931029 2186551.6208728435449302)", - "surface": 33930000, - "canton": null, - "numero_insee": "86222" - } - }, - { - "pk": 32586, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-GERMAIN", - "center": "POINT (489905.2339603531290777 2176036.0225662188604474)", - "surface": 20350000, - "canton": null, - "numero_insee": "86223" - } - }, - { - "pk": 19433, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-GERVAIS-LES-TROIS-CLOCHERS", - "center": "POINT (453871.4085730382939801 2212568.8353512296453118)", - "surface": 39410000, - "canton": null, - "numero_insee": "86224" - } - }, - { - "pk": 22584, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-JEAN-DE-SAUVES", - "center": "POINT (428497.8974202920217067 2206754.1966952248476446)", - "surface": 56640000, - "canton": null, - "numero_insee": "86225" - } - }, - { - "pk": 16904, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-JULIEN-L'ARS", - "center": "POINT (459693.2956839062389918 2174284.0125320074148476)", - "surface": 18680000, - "canton": null, - "numero_insee": "86226" - } - }, - { - "pk": 29641, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-LAON", - "center": "POINT (420670.4019881327403709 2221402.0118448291905224)", - "surface": 11910000, - "canton": null, - "numero_insee": "86227" - } - }, - { - "pk": 23790, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-LAURENT-DE-JOURDES", - "center": "POINT (461745.7974281607894227 2156084.9241071892902255)", - "surface": 18100000, - "canton": null, - "numero_insee": "86228" - } - }, - { - "pk": 10380, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-LEGER-DE-MONTBRILLAIS", - "center": "POINT (419567.1951600460452028 2233803.2862658598460257)", - "surface": 10410000, - "canton": null, - "numero_insee": "86229" - } - }, - { - "pk": 15149, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-LEOMER", - "center": "POINT (496959.7575567684834823 2158178.8613184303976595)", - "surface": 29090000, - "canton": null, - "numero_insee": "86230" - } - }, - { - "pk": 36543, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-MACOUX", - "center": "POINT (436769.2078983392566442 2126351.5048787705600262)", - "surface": 10710000, - "canton": null, - "numero_insee": "86231" - } - }, - { - "pk": 20880, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VALDIVIENNE", - "center": "POINT (468960.4969254509778693 2167154.4994497615844011)", - "surface": 61410000, - "canton": null, - "numero_insee": "86233" - } - }, - { - "pk": 21276, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-MARTIN-L'ARS", - "center": "POINT (462611.4620387275936082 2136174.2085862010717392)", - "surface": 41770000, - "canton": null, - "numero_insee": "86234" - } - }, - { - "pk": 20640, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-MAURICE-LA-CLOUERE", - "center": "POINT (454740.8668839827878401 2155926.7950132936239243)", - "surface": 40180000, - "canton": null, - "numero_insee": "86235" - } - }, - { - "pk": 19584, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-PIERRE-DE-MAILLE", - "center": "POINT (484305.2112674916279502 2187499.5246807364746928)", - "surface": 74850000, - "canton": null, - "numero_insee": "86236" - } - }, - { - "pk": 16604, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-PIERRE-D'EXIDEUIL", - "center": "POINT (439434.2371449408819899 2130877.6540186950005591)", - "surface": 19460000, - "canton": null, - "numero_insee": "86237" - } - }, - { - "pk": 12099, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINTE-RADEGONDE", - "center": "POINT (474649.7848830056027509 2181113.8932362752966583)", - "surface": 13130000, - "canton": null, - "numero_insee": "86239" - } - }, - { - "pk": 31529, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-REMY-SUR-CREUSE", - "center": "POINT (473857.9336594364140183 2216237.4625772745348513)", - "surface": 12980000, - "canton": null, - "numero_insee": "86241" - } - }, - { - "pk": 20598, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-ROMAIN", - "center": "POINT (449081.9195411646505818 2138264.1211733836680651)", - "surface": 20560000, - "canton": null, - "numero_insee": "86242" - } - }, - { - "pk": 4481, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-SAUVANT", - "center": "POINT (426138.8126618524547666 2153087.8758727870881557)", - "surface": 59870000, - "canton": null, - "numero_insee": "86244" - } - }, - { - "pk": 15923, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-SAUVEUR", - "center": "POINT (470876.7174738445901312 2201600.3102126098237932)", - "surface": 32740000, - "canton": null, - "numero_insee": "86245" - } - }, - { - "pk": 7465, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-SAVIN", - "center": "POINT (485293.2099458208540455 2176998.5830429629422724)", - "surface": 18750000, - "canton": null, - "numero_insee": "86246" - } - }, - { - "pk": 19243, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-SAVIOL", - "center": "POINT (437346.5391299186740071 2129158.8368706395849586)", - "surface": 10930000, - "canton": null, - "numero_insee": "86247" - } - }, - { - "pk": 12355, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAINT-SECONDIN", - "center": "POINT (457802.2098189728567377 2148845.8057997915893793)", - "surface": 38000000, - "canton": null, - "numero_insee": "86248" - } - }, - { - "pk": 34506, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAIRES", - "center": "POINT (439562.7399873032700270 2212150.1677763685584068)", - "surface": 14030000, - "canton": null, - "numero_insee": "86249" - } - }, - { - "pk": 7354, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAIX", - "center": "POINT (423314.7346804664703086 2240539.7837510663084686)", - "surface": 22930000, - "canton": null, - "numero_insee": "86250" - } - }, - { - "pk": 34908, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAMMARCOLLES", - "center": "POINT (435320.5522052687010728 2228929.2434552954509854)", - "surface": 21190000, - "canton": null, - "numero_insee": "86252" - } - }, - { - "pk": 33565, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SANXAY", - "center": "POINT (420003.2988699597772211 2168851.2399842133745551)", - "surface": 24370000, - "canton": null, - "numero_insee": "86253" - } - }, - { - "pk": 36559, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAULGE", - "center": "POINT (486794.6231034387601539 2152889.7403989969752729)", - "surface": 62590000, - "canton": null, - "numero_insee": "86254" - } - }, - { - "pk": 19396, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAVIGNE", - "center": "POINT (445029.8430794307496399 2132024.9530284972861409)", - "surface": 36560000, - "canton": null, - "numero_insee": "86255" - } - }, - { - "pk": 35589, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAVIGNY-LEVESCAULT", - "center": "POINT (457413.8218732936074957 2171562.7536878362298012)", - "surface": 22030000, - "canton": null, - "numero_insee": "86256" - } - }, - { - "pk": 26925, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SAVIGNY-SOUS-FAYE", - "center": "POINT (443986.0449821051442996 2209784.7174858720973134)", - "surface": 15010000, - "canton": null, - "numero_insee": "86257" - } - }, - { - "pk": 27921, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SCORBE-CLAIRVAUX", - "center": "POINT (452953.4986261602025479 2202552.7132259411737323)", - "surface": 22620000, - "canton": null, - "numero_insee": "86258" - } - }, - { - "pk": 20098, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SENILLE", - "center": "POINT (468603.1232666294090450 2198178.5375135247595608)", - "surface": 18080000, - "canton": null, - "numero_insee": "86259" - } - }, - { - "pk": 37665, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SERIGNY", - "center": "POINT (446136.4192267691250890 2216007.7687083352357149)", - "surface": 24890000, - "canton": null, - "numero_insee": "86260" - } - }, - { - "pk": 35658, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SEVRES-ANXAUMONT", - "center": "POINT (456271.4775785623351112 2176557.6791931274347007)", - "surface": 15690000, - "canton": null, - "numero_insee": "86261" - } - }, - { - "pk": 22592, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SILLARS", - "center": "POINT (480838.2380346431164071 2159045.7981481840834022)", - "surface": 60440000, - "canton": null, - "numero_insee": "86262" - } - }, - { - "pk": 22733, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SMARVES", - "center": "POINT (448120.3617649715743028 2169784.2967641609720886)", - "surface": 20420000, - "canton": null, - "numero_insee": "86263" - } - }, - { - "pk": 17694, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SOMMIERES-DU-CLAIN", - "center": "POINT (448736.9264960974687710 2143666.1420513601042330)", - "surface": 26140000, - "canton": null, - "numero_insee": "86264" - } - }, - { - "pk": 28605, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SOSSAIS", - "center": "POINT (450595.3480123376357369 2209338.9915095921605825)", - "surface": 11960000, - "canton": null, - "numero_insee": "86265" - } - }, - { - "pk": 10527, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "SURIN", - "center": "POINT (448318.7055004148278385 2121642.6713331998325884)", - "surface": 12050000, - "canton": null, - "numero_insee": "86266" - } - }, - { - "pk": 35632, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "TERCE", - "center": "POINT (463233.4574275905033574 2169809.3958028098568320)", - "surface": 23900000, - "canton": null, - "numero_insee": "86268" - } - }, - { - "pk": 8307, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "TERNAY", - "center": "POINT (418306.6736368557903916 2228888.7940478930249810)", - "surface": 10230000, - "canton": null, - "numero_insee": "86269" - } - }, - { - "pk": 16606, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "THOLLET", - "center": "POINT (506949.6340013726730831 2160463.9206795031204820)", - "surface": 30420000, - "canton": null, - "numero_insee": "86270" - } - }, - { - "pk": 18890, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "THURAGEAU", - "center": "POINT (441968.8443788018776104 2199559.3136959015391767)", - "surface": 35250000, - "canton": null, - "numero_insee": "86271" - } - }, - { - "pk": 15763, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "THURE", - "center": "POINT (456526.4893324978183955 2206185.3809064850211143)", - "surface": 43880000, - "canton": null, - "numero_insee": "86272" - } - }, - { - "pk": 18239, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA TRIMOUILLE", - "center": "POINT (501829.6416605129488744 2162323.0040136915631592)", - "surface": 42060000, - "canton": null, - "numero_insee": "86273" - } - }, - { - "pk": 34920, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LES TROIS-MOUTIERS", - "center": "POINT (423288.2019327205489390 2231632.1725434972904623)", - "surface": 35720000, - "canton": null, - "numero_insee": "86274" - } - }, - { - "pk": 13735, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "USSEAU", - "center": "POINT (459587.4604728374397382 2211214.9950768887065351)", - "surface": 18980000, - "canton": null, - "numero_insee": "86275" - } - }, - { - "pk": 35186, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "USSON-DU-POITOU", - "center": "POINT (461847.8291729779448360 2143774.7472011731006205)", - "surface": 72730000, - "canton": null, - "numero_insee": "86276" - } - }, - { - "pk": 5623, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VARENNES", - "center": "POINT (436677.0694008816499263 2198014.2609402821399271)", - "surface": 13220000, - "canton": null, - "numero_insee": "86277" - } - }, - { - "pk": 11549, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VAUX", - "center": "POINT (438118.9952134940540418 2144679.2744293636642396)", - "surface": 25820000, - "canton": null, - "numero_insee": "86278" - } - }, - { - "pk": 14296, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VAUX-SUR-VIENNE", - "center": "POINT (464671.5303523795446381 2213659.1649357308633626)", - "surface": 6920000, - "canton": null, - "numero_insee": "86279" - } - }, - { - "pk": 28124, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VELLECHES", - "center": "POINT (462141.3848930762615055 2217041.0703754727728665)", - "surface": 19560000, - "canton": null, - "numero_insee": "86280" - } - }, - { - "pk": 19166, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VENDEUVRE-DU-POITOU", - "center": "POINT (445320.3112377042416483 2193681.9644606579095125)", - "surface": 41560000, - "canton": null, - "numero_insee": "86281" - } - }, - { - "pk": 26297, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VERRIERES", - "center": "POINT (466239.5409719771123491 2157323.2461767857894301)", - "surface": 19570000, - "canton": null, - "numero_insee": "86285" - } - }, - { - "pk": 35317, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VERRUE", - "center": "POINT (435477.7420240178471431 2209914.5214268947020173)", - "surface": 28520000, - "canton": null, - "numero_insee": "86286" - } - }, - { - "pk": 29428, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VEZIERES", - "center": "POINT (432271.1083382546203211 2234608.7913835439831018)", - "surface": 26550000, - "canton": null, - "numero_insee": "86287" - } - }, - { - "pk": 17667, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VICQ-SUR-GARTEMPE", - "center": "POINT (485862.4307418889366090 2192817.0432461029849946)", - "surface": 33350000, - "canton": null, - "numero_insee": "86288" - } - }, - { - "pk": 17111, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LE VIGEANT", - "center": "POINT (468910.0988791778218001 2137027.1598088415339589)", - "surface": 65070000, - "canton": null, - "numero_insee": "86289" - } - }, - { - "pk": 30473, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "LA VILLEDIEU-DU-CLAIN", - "center": "POINT (450473.6048306053271517 2163598.3003944586962461)", - "surface": 7210000, - "canton": null, - "numero_insee": "86290" - } - }, - { - "pk": 14123, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VILLEMORT", - "center": "POINT (491830.8878600458847359 2173149.4818249451927841)", - "surface": 4460000, - "canton": null, - "numero_insee": "86291" - } - }, - { - "pk": 34959, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VILLIERS", - "center": "POINT (434359.5557656585006043 2187786.2918820525519550)", - "surface": 11050000, - "canton": null, - "numero_insee": "86292" - } - }, - { - "pk": 35133, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VIVONNE", - "center": "POINT (440103.1844391572521999 2158908.3954147384501994)", - "surface": 41590000, - "canton": null, - "numero_insee": "86293" - } - }, - { - "pk": 34699, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VOUILLE", - "center": "POINT (433503.5089250474120490 2182374.5192434205673635)", - "surface": 34460000, - "canton": null, - "numero_insee": "86294" - } - }, - { - "pk": 3918, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VOULEME", - "center": "POINT (437585.6119076025206596 2124456.5179080595262349)", - "surface": 11190000, - "canton": null, - "numero_insee": "86295" - } - }, - { - "pk": 8608, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VOULON", - "center": "POINT (438644.1676186785334721 2153791.7806437695398927)", - "surface": 8360000, - "canton": null, - "numero_insee": "86296" - } - }, - { - "pk": 14708, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VOUNEUIL-SOUS-BIARD", - "center": "POINT (441650.5822624725406058 2177537.6094971406273544)", - "surface": 26200000, - "canton": null, - "numero_insee": "86297" - } - }, - { - "pk": 21020, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VOUNEUIL-SUR-VIENNE", - "center": "POINT (462744.9110901655512862 2192525.1464118571020663)", - "surface": 36990000, - "canton": null, - "numero_insee": "86298" - } - }, - { - "pk": 31337, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "VOUZAILLES", - "center": "POINT (428613.6558810344431549 2192743.1341166980564594)", - "surface": 16070000, - "canton": null, - "numero_insee": "86299" - } - }, - { - "pk": 34746, - "model": "ishtar_common.town", - "fields": { - "departement": 87, - "name": "YVERSAY", - "center": "POINT (436959.9784442273667082 2188007.9647778025828302)", - "surface": 5970000, - "canton": null, - "numero_insee": "86300" - } - }, - { - "pk": 25883, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "AMBAZAC", - "center": "POINT (527319.0643849461339414 2106284.2955974414944649)", - "surface": 58450000, - "canton": null, - "numero_insee": "87002" - } - }, - { - "pk": 30303, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ARNAC-LA-POSTE", - "center": "POINT (525730.0601726520108059 2140802.6373547855764627)", - "surface": 46800000, - "canton": null, - "numero_insee": "87003" - } - }, - { - "pk": 22527, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "AUGNE", - "center": "POINT (550511.1087038757978007 2085858.6034225444309413)", - "surface": 17790000, - "canton": null, - "numero_insee": "87004" - } - }, - { - "pk": 6544, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "AUREIL", - "center": "POINT (527252.4282065250445157 2090268.7826962238177657)", - "surface": 10190000, - "canton": null, - "numero_insee": "87005" - } - }, - { - "pk": 18183, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "AZAT-LE-RIS", - "center": "POINT (501464.9365778547944501 2146005.4221265064552426)", - "surface": 56280000, - "canton": null, - "numero_insee": "87006" - } - }, - { - "pk": 15356, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BALLEDENT", - "center": "POINT (513361.3385407640016638 2123684.1188773587346077)", - "surface": 12320000, - "canton": null, - "numero_insee": "87007" - } - }, - { - "pk": 6986, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA BAZEUGE", - "center": "POINT (503414.8097099016304128 2140216.4185732011683285)", - "surface": 10210000, - "canton": null, - "numero_insee": "87008" - } - }, - { - "pk": 29199, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BEAUMONT-DU-LAC", - "center": "POINT (562523.2726837240625173 2085758.8483942807652056)", - "surface": 27550000, - "canton": null, - "numero_insee": "87009" - } - }, - { - "pk": 18279, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BELLAC", - "center": "POINT (499850.7449228239129297 2123471.5801347405649722)", - "surface": 24460000, - "canton": null, - "numero_insee": "87011" - } - }, - { - "pk": 19762, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BERNEUIL", - "center": "POINT (504991.7088325928198174 2119110.3145009437575936)", - "surface": 25960000, - "canton": null, - "numero_insee": "87012" - } - }, - { - "pk": 15156, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BERSAC-SUR-RIVALIER", - "center": "POINT (528905.3352637096541002 2120110.2686682231724262)", - "surface": 32970000, - "canton": null, - "numero_insee": "87013" - } - }, - { - "pk": 27501, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BESSINES-SUR-GARTEMPE", - "center": "POINT (524472.3986229635775089 2123576.5156220756471157)", - "surface": 55500000, - "canton": null, - "numero_insee": "87014" - } - }, - { - "pk": 13173, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BEYNAC", - "center": "POINT (508871.3887370368465781 2085911.6732773201074451)", - "surface": 12580000, - "canton": null, - "numero_insee": "87015" - } - }, - { - "pk": 34525, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LES BILLANGES", - "center": "POINT (537907.2852393216453493 2108874.9501589168794453)", - "surface": 22990000, - "canton": null, - "numero_insee": "87016" - } - }, - { - "pk": 16551, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BLANZAC", - "center": "POINT (505035.1580973305972293 2125916.9088530018925667)", - "surface": 23590000, - "canton": null, - "numero_insee": "87017" - } - }, - { - "pk": 16375, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BLOND", - "center": "POINT (497895.6624432254466228 2117850.1785833151079714)", - "surface": 64510000, - "canton": null, - "numero_insee": "87018" - } - }, - { - "pk": 19605, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BOISSEUIL", - "center": "POINT (521489.9178978141862899 2085115.9336052211001515)", - "surface": 19290000, - "canton": null, - "numero_insee": "87019" - } - }, - { - "pk": 33987, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BONNAC-LA-COTE", - "center": "POINT (519016.1024631625041366 2105714.6205562422983348)", - "surface": 25870000, - "canton": null, - "numero_insee": "87020" - } - }, - { - "pk": 6735, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BOSMIE-L'AIGUILLE", - "center": "POINT (511876.5136384345241822 2085636.4112981082871556)", - "surface": 8020000, - "canton": null, - "numero_insee": "87021" - } - }, - { - "pk": 4519, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BREUILAUFA", - "center": "POINT (505013.3637852125102654 2116508.1023026290349662)", - "surface": 4720000, - "canton": null, - "numero_insee": "87022" - } - }, - { - "pk": 5632, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LE BUIS", - "center": "POINT (512328.7491647189017385 2115467.9859434375539422)", - "surface": 6690000, - "canton": null, - "numero_insee": "87023" - } - }, - { - "pk": 18090, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BUJALEUF", - "center": "POINT (545086.3243016419000924 2088215.5462998230941594)", - "surface": 41680000, - "canton": null, - "numero_insee": "87024" - } - }, - { - "pk": 21848, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BUSSIERE-BOFFY", - "center": "POINT (485180.6964897915022448 2118244.9576588813215494)", - "surface": 26750000, - "canton": null, - "numero_insee": "87026" - } - }, - { - "pk": 14472, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BUSSIERE-GALANT", - "center": "POINT (499300.2680820677196607 2069316.3422174041625112)", - "surface": 53770000, - "canton": null, - "numero_insee": "87027" - } - }, - { - "pk": 17027, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "BUSSIERE-POITEVINE", - "center": "POINT (489513.1968164095305838 2138899.7427033977583051)", - "surface": 40790000, - "canton": null, - "numero_insee": "87028" - } - }, - { - "pk": 4941, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LES CARS", - "center": "POINT (501349.6719411059748381 2075639.4038878490682691)", - "surface": 16630000, - "canton": null, - "numero_insee": "87029" - } - }, - { - "pk": 21483, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHAILLAC-SUR-VIENNE", - "center": "POINT (486458.7403073048917577 2096935.8072797365020961)", - "surface": 15280000, - "canton": null, - "numero_insee": "87030" - } - }, - { - "pk": 4665, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LE CHALARD", - "center": "POINT (505365.5696269531617872 2062159.8996450277045369)", - "surface": 12290000, - "canton": null, - "numero_insee": "87031" - } - }, - { - "pk": 21092, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHALUS", - "center": "POINT (493056.4892325710388832 2073868.8143958942964673)", - "surface": 27860000, - "canton": null, - "numero_insee": "87032" - } - }, - { - "pk": 12083, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHAMBORET", - "center": "POINT (506148.4527296270825900 2112413.7657405268400908)", - "surface": 22270000, - "canton": null, - "numero_insee": "87033" - } - }, - { - "pk": 22888, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHAMPAGNAC-LA-RIVIERE", - "center": "POINT (489117.2743255579844117 2078140.1653653276152909)", - "surface": 24690000, - "canton": null, - "numero_insee": "87034" - } - }, - { - "pk": 19422, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHAMPNETERY", - "center": "POINT (541050.2432852505007759 2092085.5112591497600079)", - "surface": 30360000, - "canton": null, - "numero_insee": "87035" - } - }, - { - "pk": 6033, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHAMPSAC", - "center": "POINT (492913.1339866765192710 2079072.5704509669449180)", - "surface": 23610000, - "canton": null, - "numero_insee": "87036" - } - }, - { - "pk": 22725, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA CHAPELLE-MONTBRANDEIX", - "center": "POINT (484358.7720797953079455 2072595.3909348717425019)", - "surface": 20000000, - "canton": null, - "numero_insee": "87037" - } - }, - { - "pk": 15157, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHAPTELAT", - "center": "POINT (515439.6856431053020060 2102481.8472987096756697)", - "surface": 18320000, - "canton": null, - "numero_insee": "87038" - } - }, - { - "pk": 23223, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHATEAU-CHERVIX", - "center": "POINT (523450.8538269521086477 2066014.0958620051387697)", - "surface": 51360000, - "canton": null, - "numero_insee": "87039" - } - }, - { - "pk": 21484, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHATEAUNEUF-LA-FORET", - "center": "POINT (543375.0245472943643108 2077391.0321057797409594)", - "surface": 29290000, - "canton": null, - "numero_insee": "87040" - } - }, - { - "pk": 19884, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHATEAUPONSAC", - "center": "POINT (518345.5560774083132856 2126127.8321342798881233)", - "surface": 69150000, - "canton": null, - "numero_insee": "87041" - } - }, - { - "pk": 23921, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LE CHATENET-EN-DOGNON", - "center": "POINT (535472.7947616715682670 2100747.1003889488056302)", - "surface": 20230000, - "canton": null, - "numero_insee": "87042" - } - }, - { - "pk": 10754, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHEISSOUX", - "center": "POINT (545650.8995328152086586 2092524.3071810358669609)", - "surface": 10350000, - "canton": null, - "numero_insee": "87043" - } - }, - { - "pk": 4594, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CHERONNAC", - "center": "POINT (476746.6148617665166967 2085244.2427749524358660)", - "surface": 18810000, - "canton": null, - "numero_insee": "87044" - } - }, - { - "pk": 19380, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CIEUX", - "center": "POINT (498658.6886067527229898 2110349.6018102369271219)", - "surface": 42540000, - "canton": null, - "numero_insee": "87045" - } - }, - { - "pk": 22615, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "COGNAC-LA-FORET", - "center": "POINT (496494.8743184602353722 2093716.1329005786683410)", - "surface": 31820000, - "canton": null, - "numero_insee": "87046" - } - }, - { - "pk": 20091, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "COMPREIGNAC", - "center": "POINT (518268.8018438986036927 2111313.5857732347212732)", - "surface": 48890000, - "canton": null, - "numero_insee": "87047" - } - }, - { - "pk": 26616, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CONDAT-SUR-VIENNE", - "center": "POINT (514663.1238273524213582 2087561.4123495251405984)", - "surface": 15320000, - "canton": null, - "numero_insee": "87048" - } - }, - { - "pk": 23141, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "COUSSAC-BONNEVAL", - "center": "POINT (520816.0201564744347706 2057884.3394614649005234)", - "surface": 66360000, - "canton": null, - "numero_insee": "87049" - } - }, - { - "pk": 18079, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "COUZEIX", - "center": "POINT (513369.5497174488264136 2098661.0589783405885100)", - "surface": 30650000, - "canton": null, - "numero_insee": "87050" - } - }, - { - "pk": 17909, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA CROISILLE-SUR-BRIANCE", - "center": "POINT (542744.6159454848384485 2068977.7563605762552470)", - "surface": 44110000, - "canton": null, - "numero_insee": "87051" - } - }, - { - "pk": 5284, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA CROIX-SUR-GARTEMPE", - "center": "POINT (496895.8577140154666267 2129752.7607045546174049)", - "surface": 12770000, - "canton": null, - "numero_insee": "87052" - } - }, - { - "pk": 31336, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CROMAC", - "center": "POINT (521036.1506064650602639 2151573.2153582656756043)", - "surface": 24180000, - "canton": null, - "numero_insee": "87053" - } - }, - { - "pk": 5155, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "CUSSAC", - "center": "POINT (484115.3624874683446251 2077798.3222031628247350)", - "surface": 31420000, - "canton": null, - "numero_insee": "87054" - } - }, - { - "pk": 19955, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "DARNAC", - "center": "POINT (493519.8649469600059092 2138532.6812367532402277)", - "surface": 25680000, - "canton": null, - "numero_insee": "87055" - } - }, - { - "pk": 16959, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "DINSAC", - "center": "POINT (505330.5526439883979037 2138530.8230259511619806)", - "surface": 19350000, - "canton": null, - "numero_insee": "87056" - } - }, - { - "pk": 20243, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "DOMPIERRE-LES-EGLISES", - "center": "POINT (516065.3307450723368675 2135517.3917854600585997)", - "surface": 30720000, - "canton": null, - "numero_insee": "87057" - } - }, - { - "pk": 13839, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "DOMPS", - "center": "POINT (551319.6219660727074370 2072953.1177249385509640)", - "surface": 13690000, - "canton": null, - "numero_insee": "87058" - } - }, - { - "pk": 36098, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LE DORAT", - "center": "POINT (502060.2689738560002297 2134600.0795449768193066)", - "surface": 23930000, - "canton": null, - "numero_insee": "87059" - } - }, - { - "pk": 23313, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "DOURNAZAC", - "center": "POINT (489378.1710956346360035 2070835.3764488212764263)", - "surface": 35850000, - "canton": null, - "numero_insee": "87060" - } - }, - { - "pk": 21978, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "DROUX", - "center": "POINT (508203.7035070739802904 2130047.0210801884531975)", - "surface": 24150000, - "canton": null, - "numero_insee": "87061" - } - }, - { - "pk": 37105, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "EYBOULEUF", - "center": "POINT (533767.2771082879044116 2089222.0900096436962485)", - "surface": 10880000, - "canton": null, - "numero_insee": "87062" - } - }, - { - "pk": 17506, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "EYJEAUX", - "center": "POINT (525382.4829007049556822 2086449.6098559976089746)", - "surface": 24200000, - "canton": null, - "numero_insee": "87063" - } - }, - { - "pk": 19471, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "EYMOUTIERS", - "center": "POINT (553470.5329839005135000 2079076.8995611309073865)", - "surface": 70490000, - "canton": null, - "numero_insee": "87064" - } - }, - { - "pk": 21033, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "FEYTIAT", - "center": "POINT (521650.0513700035517104 2089921.7945723352022469)", - "surface": 24220000, - "canton": null, - "numero_insee": "87065" - } - }, - { - "pk": 20441, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "FLAVIGNAC", - "center": "POINT (501614.1303823810885660 2079945.6909680769313127)", - "surface": 31310000, - "canton": null, - "numero_insee": "87066" - } - }, - { - "pk": 29616, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "FOLLES", - "center": "POINT (531964.5500490760896355 2125340.5502054174430668)", - "surface": 31560000, - "canton": null, - "numero_insee": "87067" - } - }, - { - "pk": 35604, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "FROMENTAL", - "center": "POINT (529131.3011679095216095 2129020.2957815751433372)", - "surface": 22880000, - "canton": null, - "numero_insee": "87068" - } - }, - { - "pk": 20488, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "GAJOUBERT", - "center": "POINT (484529.4751437485683709 2124345.1461597662419081)", - "surface": 14260000, - "canton": null, - "numero_insee": "87069" - } - }, - { - "pk": 4312, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA GENEYTOUSE", - "center": "POINT (531376.8733991939807311 2087800.8279800505843014)", - "surface": 19250000, - "canton": null, - "numero_insee": "87070" - } - }, - { - "pk": 35848, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "GLANDON", - "center": "POINT (513250.0591799200628884 2052916.5637571611441672)", - "surface": 27540000, - "canton": null, - "numero_insee": "87071" - } - }, - { - "pk": 17169, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "GLANGES", - "center": "POINT (531695.6127002901630476 2073590.0241268859244883)", - "surface": 22710000, - "canton": null, - "numero_insee": "87072" - } - }, - { - "pk": 23162, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "GORRE", - "center": "POINT (495584.7177331341663375 2082798.2904169289395213)", - "surface": 16470000, - "canton": null, - "numero_insee": "87073" - } - }, - { - "pk": 8984, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LES GRANDS-CHEZEAUX", - "center": "POINT (526645.7761775749968365 2151019.4385493374429643)", - "surface": 13700000, - "canton": null, - "numero_insee": "87074" - } - }, - { - "pk": 29844, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ISLE", - "center": "POINT (511240.9852546675247140 2089835.0792590682394803)", - "surface": 20070000, - "canton": null, - "numero_insee": "87075" - } - }, - { - "pk": 36298, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "JABREILLES-LES-BORDES", - "center": "POINT (536362.5655037629185244 2114066.8666666224598885)", - "surface": 19130000, - "canton": null, - "numero_insee": "87076" - } - }, - { - "pk": 23673, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "JANAILHAC", - "center": "POINT (514582.9980624502059072 2073147.0876652162987739)", - "surface": 18660000, - "canton": null, - "numero_insee": "87077" - } - }, - { - "pk": 21398, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "JAVERDAT", - "center": "POINT (493680.1985676203039475 2107205.3308380660600960)", - "surface": 25450000, - "canton": null, - "numero_insee": "87078" - } - }, - { - "pk": 4140, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA JONCHERE-SAINT-MAURICE", - "center": "POINT (533477.6274325106060132 2111940.8537262291647494)", - "surface": 15480000, - "canton": null, - "numero_insee": "87079" - } - }, - { - "pk": 37943, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "JOUAC", - "center": "POINT (517042.0221156324842013 2150438.9519642628729343)", - "surface": 20300000, - "canton": null, - "numero_insee": "87080" - } - }, - { - "pk": 15764, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "JOURGNAC", - "center": "POINT (512508.7121793511905707 2081838.0816388928797096)", - "surface": 14360000, - "canton": null, - "numero_insee": "87081" - } - }, - { - "pk": 18002, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LADIGNAC-LE-LONG", - "center": "POINT (504031.9252377025550231 2066052.5475616604089737)", - "surface": 47050000, - "canton": null, - "numero_insee": "87082" - } - }, - { - "pk": 4023, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LAURIERE", - "center": "POINT (535313.2716666030464694 2119863.4499044255353510)", - "surface": 20770000, - "canton": null, - "numero_insee": "87083" - } - }, - { - "pk": 32736, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LAVIGNAC", - "center": "POINT (505412.4744243709137663 2080577.8665838581509888)", - "surface": 6140000, - "canton": null, - "numero_insee": "87084" - } - }, - { - "pk": 21846, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LIMOGES", - "center": "POINT (515498.8791171154007316 2095375.7061939816921949)", - "surface": 79710000, - "canton": null, - "numero_insee": "87085" - } - }, - { - "pk": 20209, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LINARDS", - "center": "POINT (537760.9024604693986475 2078445.2046841655392200)", - "surface": 36320000, - "canton": null, - "numero_insee": "87086" - } - }, - { - "pk": 18886, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LUSSAC-LES-EGLISES", - "center": "POINT (510642.5693402483593673 2149685.0300710122101009)", - "surface": 41140000, - "canton": null, - "numero_insee": "87087" - } - }, - { - "pk": 18095, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MAGNAC-LAVAL", - "center": "POINT (510147.0592260805424303 2137069.5561061385087669)", - "surface": 72240000, - "canton": null, - "numero_insee": "87089" - } - }, - { - "pk": 3520, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MAILHAC-SUR-BENAIZE", - "center": "POINT (521282.1889386417460628 2146070.3351591355167329)", - "surface": 21170000, - "canton": null, - "numero_insee": "87090" - } - }, - { - "pk": 23985, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MAISONNAIS-SUR-TARDOIRE", - "center": "POINT (471281.6556943398318253 2080394.3447395979892462)", - "surface": 32000000, - "canton": null, - "numero_insee": "87091" - } - }, - { - "pk": 37015, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MARVAL", - "center": "POINT (479862.2671705195680261 2071657.1874903107527643)", - "surface": 38650000, - "canton": null, - "numero_insee": "87092" - } - }, - { - "pk": 4274, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MASLEON", - "center": "POINT (540705.8827739411499351 2085376.3247411006595939)", - "surface": 8890000, - "canton": null, - "numero_insee": "87093" - } - }, - { - "pk": 20985, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MEILHAC", - "center": "POINT (508122.3462482839822769 2079699.5686291069723666)", - "surface": 14860000, - "canton": null, - "numero_insee": "87094" - } - }, - { - "pk": 22581, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA MEYZE", - "center": "POINT (510821.3077464550733566 2068110.9809092113282531)", - "surface": 27990000, - "canton": null, - "numero_insee": "87096" - } - }, - { - "pk": 22385, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MEZIERES-SUR-ISSOIRE", - "center": "POINT (490034.1293137332540937 2124390.8800270520150661)", - "surface": 43890000, - "canton": null, - "numero_insee": "87097" - } - }, - { - "pk": 15146, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MOISSANNES", - "center": "POINT (539404.5687659580726177 2097376.7406746395863593)", - "surface": 24270000, - "canton": null, - "numero_insee": "87099" - } - }, - { - "pk": 22278, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "MONTROL-SENARD", - "center": "POINT (492823.7688552036415786 2113904.4138754522427917)", - "surface": 27350000, - "canton": null, - "numero_insee": "87100" - } - }, - { - "pk": 37242, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "NANTIAT", - "center": "POINT (509847.4493479263037443 2112945.0185137563385069)", - "surface": 26080000, - "canton": null, - "numero_insee": "87103" - } - }, - { - "pk": 14546, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "NEDDE", - "center": "POINT (560268.1406101303873584 2080134.6853658226318657)", - "surface": 52940000, - "canton": null, - "numero_insee": "87104" - } - }, - { - "pk": 30929, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "NEUVIC-ENTIER", - "center": "POINT (545638.5931805947329849 2082014.3019292831886560)", - "surface": 39760000, - "canton": null, - "numero_insee": "87105" - } - }, - { - "pk": 15765, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "NEXON", - "center": "POINT (510258.3608710442204028 2075613.4548618893604726)", - "surface": 40930000, - "canton": null, - "numero_insee": "87106" - } - }, - { - "pk": 5664, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "NIEUL", - "center": "POINT (510230.2018400562228635 2103039.0223094606772065)", - "surface": 17320000, - "canton": null, - "numero_insee": "87107" - } - }, - { - "pk": 22983, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "NOUIC", - "center": "POINT (489979.7900519972899929 2118885.3829243229702115)", - "surface": 35810000, - "canton": null, - "numero_insee": "87108" - } - }, - { - "pk": 33505, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ORADOUR-SAINT-GENEST", - "center": "POINT (498421.4606355756404810 2138873.7073626704514027)", - "surface": 37950000, - "canton": null, - "numero_insee": "87109" - } - }, - { - "pk": 18683, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ORADOUR-SUR-GLANE", - "center": "POINT (498108.9497925958130509 2104239.3678375394083560)", - "surface": 38330000, - "canton": null, - "numero_insee": "87110" - } - }, - { - "pk": 25424, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ORADOUR-SUR-VAYRES", - "center": "POINT (486571.8299064425518736 2083323.9458039521705359)", - "surface": 39110000, - "canton": null, - "numero_insee": "87111" - } - }, - { - "pk": 5320, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "PAGEAS", - "center": "POINT (497137.6403886254411191 2076605.3200848016422242)", - "surface": 27810000, - "canton": null, - "numero_insee": "87112" - } - }, - { - "pk": 23465, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LE PALAIS-SUR-VIENNE", - "center": "POINT (521387.3143078305874951 2097426.6422769823111594)", - "surface": 10360000, - "canton": null, - "numero_insee": "87113" - } - }, - { - "pk": 17442, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "PENSOL", - "center": "POINT (482297.6446760389371775 2067673.5848974427208304)", - "surface": 14930000, - "canton": null, - "numero_insee": "87115" - } - }, - { - "pk": 21219, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "PEYRAT-DE-BELLAC", - "center": "POINT (498224.4196279334137216 2126460.7980800475925207)", - "surface": 31360000, - "canton": null, - "numero_insee": "87116" - } - }, - { - "pk": 21369, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "PEYRAT-LE-CHATEAU", - "center": "POINT (556883.2290862922091037 2089915.6375986309722066)", - "surface": 54910000, - "canton": null, - "numero_insee": "87117" - } - }, - { - "pk": 33989, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "PEYRILHAC", - "center": "POINT (505688.8397604827769101 2107505.4026975724846125)", - "surface": 38550000, - "canton": null, - "numero_insee": "87118" - } - }, - { - "pk": 22855, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "PIERRE-BUFFIERE", - "center": "POINT (523858.6807455347152427 2077128.0961070512421429)", - "surface": 5840000, - "canton": null, - "numero_insee": "87119" - } - }, - { - "pk": 23262, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA PORCHERIE", - "center": "POINT (538279.8916606568964198 2064235.9741281298920512)", - "surface": 31540000, - "canton": null, - "numero_insee": "87120" - } - }, - { - "pk": 19537, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "RANCON", - "center": "POINT (510639.0545485538314097 2126063.6459103785455227)", - "surface": 33580000, - "canton": null, - "numero_insee": "87121" - } - }, - { - "pk": 14533, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "RAZES", - "center": "POINT (522836.8643834611284547 2115655.6244769068434834)", - "surface": 25190000, - "canton": null, - "numero_insee": "87122" - } - }, - { - "pk": 3375, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "REMPNAT", - "center": "POINT (563204.1817358816042542 2076155.4454688609112054)", - "surface": 21130000, - "canton": null, - "numero_insee": "87123" - } - }, - { - "pk": 19840, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "RILHAC-LASTOURS", - "center": "POINT (504667.5778481825254858 2073865.2966709414031357)", - "surface": 16320000, - "canton": null, - "numero_insee": "87124" - } - }, - { - "pk": 3155, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "RILHAC-RANCON", - "center": "POINT (522056.2205108199268579 2101235.7667690510861576)", - "surface": 17580000, - "canton": null, - "numero_insee": "87125" - } - }, - { - "pk": 16942, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ROCHECHOUART", - "center": "POINT (483893.0645940118702129 2092510.3676875848323107)", - "surface": 53740000, - "canton": null, - "numero_insee": "87126" - } - }, - { - "pk": 19642, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LA ROCHE-L'ABEILLE", - "center": "POINT (515839.9231967105297372 2066451.1502321269363165)", - "surface": 36630000, - "canton": null, - "numero_insee": "87127" - } - }, - { - "pk": 18281, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ROUSSAC", - "center": "POINT (511893.4050792120397091 2119668.2260024435818195)", - "surface": 24480000, - "canton": null, - "numero_insee": "87128" - } - }, - { - "pk": 8441, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ROYERES", - "center": "POINT (529916.3790334012592211 2094895.3197111072950065)", - "surface": 17280000, - "canton": null, - "numero_insee": "87129" - } - }, - { - "pk": 17171, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "ROZIERS-SAINT-GEORGES", - "center": "POINT (539526.5574109151493758 2082764.0206108523998410)", - "surface": 11820000, - "canton": null, - "numero_insee": "87130" - } - }, - { - "pk": 36759, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAILLAT-SUR-VIENNE", - "center": "POINT (483249.3155106402700767 2097709.8958934233523905)", - "surface": 6360000, - "canton": null, - "numero_insee": "87131" - } - }, - { - "pk": 9723, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-AMAND-LE-PETIT", - "center": "POINT (555718.1647715348517522 2085601.8430345349479467)", - "surface": 15390000, - "canton": null, - "numero_insee": "87132" - } - }, - { - "pk": 23852, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-AMAND-MAGNAZEIX", - "center": "POINT (524402.3140943780308589 2131983.5961535666137934)", - "surface": 29510000, - "canton": null, - "numero_insee": "87133" - } - }, - { - "pk": 24887, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-AUVENT", - "center": "POINT (489911.5952170974342152 2090958.8681904808618128)", - "surface": 33400000, - "canton": null, - "numero_insee": "87135" - } - }, - { - "pk": 9082, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-BAZILE", - "center": "POINT (480871.8157501323148608 2082676.0325094284489751)", - "surface": 8570000, - "canton": null, - "numero_insee": "87137" - } - }, - { - "pk": 22722, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-BONNET-BRIANCE", - "center": "POINT (533646.4377119748387486 2079712.1020040626171976)", - "surface": 30120000, - "canton": null, - "numero_insee": "87138" - } - }, - { - "pk": 14094, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-BONNET-DE-BELLAC", - "center": "POINT (491987.5726318280212581 2130212.4108401276171207)", - "surface": 34660000, - "canton": null, - "numero_insee": "87139" - } - }, - { - "pk": 31693, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-BRICE-SUR-VIENNE", - "center": "POINT (493430.6947915052296594 2101097.5800327234901488)", - "surface": 20800000, - "canton": null, - "numero_insee": "87140" - } - }, - { - "pk": 20920, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-CYR", - "center": "POINT (494624.0122341921669431 2089997.0992208856623620)", - "surface": 21230000, - "canton": null, - "numero_insee": "87141" - } - }, - { - "pk": 20344, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-DENIS-DES-MURS", - "center": "POINT (537190.2904522630851716 2086848.3933934001252055)", - "surface": 23710000, - "canton": null, - "numero_insee": "87142" - } - }, - { - "pk": 19090, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-GENCE", - "center": "POINT (507038.2734637564281002 2101711.2390981982462108)", - "surface": 21640000, - "canton": null, - "numero_insee": "87143" - } - }, - { - "pk": 33732, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-GENEST-SUR-ROSELLE", - "center": "POINT (528954.8270472218282521 2078171.5401729827281088)", - "surface": 19350000, - "canton": null, - "numero_insee": "87144" - } - }, - { - "pk": 30301, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-GEORGES-LES-LANDES", - "center": "POINT (523937.7083002722356468 2151697.4881848404183984)", - "surface": 16520000, - "canton": null, - "numero_insee": "87145" - } - }, - { - "pk": 23201, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-GERMAIN-LES-BELLES", - "center": "POINT (533548.1458093737019226 2067499.6500966665335000)", - "surface": 37660000, - "canton": null, - "numero_insee": "87146" - } - }, - { - "pk": 16588, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-GILLES-LES-FORETS", - "center": "POINT (547740.6890841473359615 2070020.4432463045231998)", - "surface": 8400000, - "canton": null, - "numero_insee": "87147" - } - }, - { - "pk": 4727, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-HILAIRE-BONNEVAL", - "center": "POINT (524530.0925110077951103 2080637.0166701683774590)", - "surface": 28960000, - "canton": null, - "numero_insee": "87148" - } - }, - { - "pk": 25073, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-HILAIRE-LA-TREILLE", - "center": "POINT (520838.4889882972929627 2139260.5096054500900209)", - "surface": 29140000, - "canton": null, - "numero_insee": "87149" - } - }, - { - "pk": 21977, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-HILAIRE-LES-PLACES", - "center": "POINT (507591.8037212288472801 2071287.1542853012215346)", - "surface": 22820000, - "canton": null, - "numero_insee": "87150" - } - }, - { - "pk": 22076, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-JEAN-LIGOURE", - "center": "POINT (519854.3215676858671941 2077194.8149707347620279)", - "surface": 30490000, - "canton": null, - "numero_insee": "87151" - } - }, - { - "pk": 33733, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-JOUVENT", - "center": "POINT (512600.5979576515965164 2106862.2935116994194686)", - "surface": 24850000, - "canton": null, - "numero_insee": "87152" - } - }, - { - "pk": 21064, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-JULIEN-LE-PETIT", - "center": "POINT (550963.8704190767602995 2091567.7563521463889629)", - "surface": 29290000, - "canton": null, - "numero_insee": "87153" - } - }, - { - "pk": 15776, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-JUNIEN", - "center": "POINT (487523.9352273879921995 2101248.6755841900594532)", - "surface": 58830000, - "canton": null, - "numero_insee": "87154" - } - }, - { - "pk": 4093, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-JUNIEN-LES-COMBES", - "center": "POINT (506975.0818280596286058 2121328.8413486192002892)", - "surface": 20420000, - "canton": null, - "numero_insee": "87155" - } - }, - { - "pk": 34524, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-JUST-LE-MARTEL", - "center": "POINT (526211.4992494889302179 2095064.6104719222057611)", - "surface": 31940000, - "canton": null, - "numero_insee": "87156" - } - }, - { - "pk": 15991, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-LAURENT-LES-EGLISES", - "center": "POINT (533215.7825721362605691 2107334.4085260168649256)", - "surface": 27690000, - "canton": null, - "numero_insee": "87157" - } - }, - { - "pk": 15324, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-LAURENT-SUR-GORRE", - "center": "POINT (493955.0217959737638012 2086187.9548389236442745)", - "surface": 39650000, - "canton": null, - "numero_insee": "87158" - } - }, - { - "pk": 19834, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-LEGER-LA-MONTAGNE", - "center": "POINT (529450.0005805382970721 2114809.9336791033856571)", - "surface": 32570000, - "canton": null, - "numero_insee": "87159" - } - }, - { - "pk": 15143, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-LEONARD-DE-NOBLAT", - "center": "POINT (534630.4790728514781222 2093733.5224154416937381)", - "surface": 55480000, - "canton": null, - "numero_insee": "87161" - } - }, - { - "pk": 29197, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINTE-MARIE-DE-VAUX", - "center": "POINT (499374.0848914397065528 2096542.7031290950253606)", - "surface": 5470000, - "canton": null, - "numero_insee": "87162" - } - }, - { - "pk": 22397, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MARTIAL-SUR-ISOP", - "center": "POINT (486891.5945713620167226 2129169.1531567838974297)", - "surface": 23830000, - "canton": null, - "numero_insee": "87163" - } - }, - { - "pk": 25621, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MARTIN-DE-JUSSAC", - "center": "POINT (491767.4946678460109979 2096479.4550420155283064)", - "surface": 14310000, - "canton": null, - "numero_insee": "87164" - } - }, - { - "pk": 36608, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MARTIN-LE-MAULT", - "center": "POINT (513728.4616135149844922 2151712.5158129315823317)", - "surface": 12650000, - "canton": null, - "numero_insee": "87165" - } - }, - { - "pk": 19650, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MARTIN-LE-VIEUX", - "center": "POINT (505183.1448029807070270 2084079.2724742828868330)", - "surface": 17420000, - "canton": null, - "numero_insee": "87166" - } - }, - { - "pk": 15778, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MARTIN-TERRESSUS", - "center": "POINT (531959.7539456564700231 2101918.9077310240827501)", - "surface": 23190000, - "canton": null, - "numero_insee": "87167" - } - }, - { - "pk": 32786, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MATHIEU", - "center": "POINT (478095.1162205357104540 2079550.0383594380691648)", - "surface": 40690000, - "canton": null, - "numero_insee": "87168" - } - }, - { - "pk": 36264, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MAURICE-LES-BROUSSES", - "center": "POINT (514640.5682035452919081 2078252.4220468408893794)", - "surface": 10980000, - "canton": null, - "numero_insee": "87169" - } - }, - { - "pk": 15779, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-MEARD", - "center": "POINT (538097.9264887188328430 2074043.8315842601004988)", - "surface": 24540000, - "canton": null, - "numero_insee": "87170" - } - }, - { - "pk": 20584, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-OUEN-SUR-GARTEMPE", - "center": "POINT (502890.0836764466948807 2131103.8026775969192386)", - "surface": 22080000, - "canton": null, - "numero_insee": "87172" - } - }, - { - "pk": 16362, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-PARDOUX", - "center": "POINT (519108.6927083247574046 2118627.3161224173381925)", - "surface": 24690000, - "canton": null, - "numero_insee": "87173" - } - }, - { - "pk": 23433, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-PAUL", - "center": "POINT (530408.5598918087780476 2083889.0682062203995883)", - "surface": 37600000, - "canton": null, - "numero_insee": "87174" - } - }, - { - "pk": 23727, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-PRIEST-LIGOURE", - "center": "POINT (519113.6666417437372729 2069981.7777565843425691)", - "surface": 41730000, - "canton": null, - "numero_insee": "87176" - } - }, - { - "pk": 30656, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-PRIEST-SOUS-AIXE", - "center": "POINT (502615.9983713065739721 2091865.2638493252452463)", - "surface": 23080000, - "canton": null, - "numero_insee": "87177" - } - }, - { - "pk": 15144, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-PRIEST-TAURION", - "center": "POINT (526970.4641500766156241 2100075.6157925375737250)", - "surface": 27120000, - "canton": null, - "numero_insee": "87178" - } - }, - { - "pk": 19704, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-SORNIN-LA-MARCHE", - "center": "POINT (496167.8062333337147720 2133049.7095173788256943)", - "surface": 24080000, - "canton": null, - "numero_insee": "87179" - } - }, - { - "pk": 11139, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-SORNIN-LEULAC", - "center": "POINT (519786.7755103886011057 2133346.4000553404912353)", - "surface": 32490000, - "canton": null, - "numero_insee": "87180" - } - }, - { - "pk": 15138, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-SULPICE-LAURIERE", - "center": "POINT (533430.8648843575501814 2117545.6286493302322924)", - "surface": 14310000, - "canton": null, - "numero_insee": "87181" - } - }, - { - "pk": 20192, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-SULPICE-LES-FEUILLES", - "center": "POINT (527182.9072591396979988 2146619.9727968275547028)", - "surface": 35660000, - "canton": null, - "numero_insee": "87182" - } - }, - { - "pk": 22224, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-SYLVESTRE", - "center": "POINT (524678.4484731769189239 2110866.5431560855358839)", - "surface": 31360000, - "canton": null, - "numero_insee": "87183" - } - }, - { - "pk": 16361, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-SYMPHORIEN-SUR-COUZE", - "center": "POINT (515016.8787377869593911 2117191.9396724090911448)", - "surface": 19880000, - "canton": null, - "numero_insee": "87184" - } - }, - { - "pk": 21546, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-VICTURNIEN", - "center": "POINT (498155.5639198437565938 2098634.5329028004780412)", - "surface": 21410000, - "canton": null, - "numero_insee": "87185" - } - }, - { - "pk": 32201, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-VITTE-SUR-BRIANCE", - "center": "POINT (537734.3322759878356010 2069636.5957596781663597)", - "surface": 20960000, - "canton": null, - "numero_insee": "87186" - } - }, - { - "pk": 14474, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-YRIEIX-LA-PERCHE", - "center": "POINT (511498.5202546652872115 2058907.7777543491683900)", - "surface": 101320000, - "canton": null, - "numero_insee": "87187" - } - }, - { - "pk": 28973, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAINT-YRIEIX-SOUS-AIXE", - "center": "POINT (501087.2156195460702293 2095155.6421477687545121)", - "surface": 8680000, - "canton": null, - "numero_insee": "87188" - } - }, - { - "pk": 20585, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SAUVIAT-SUR-VIGE", - "center": "POINT (541877.4831457423279062 2100900.6563113760203123)", - "surface": 31030000, - "canton": null, - "numero_insee": "87190" - } - }, - { - "pk": 23777, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SEREILHAC", - "center": "POINT (500664.2139076077146456 2085843.3732371858786792)", - "surface": 38600000, - "canton": null, - "numero_insee": "87191" - } - }, - { - "pk": 15777, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SOLIGNAC", - "center": "POINT (515990.9401129844482057 2084369.4515975697431713)", - "surface": 16820000, - "canton": null, - "numero_insee": "87192" - } - }, - { - "pk": 29148, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SURDOUX", - "center": "POINT (546461.2755035515874624 2067407.2665725795086473)", - "surface": 3870000, - "canton": null, - "numero_insee": "87193" - } - }, - { - "pk": 18921, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "SUSSAC", - "center": "POINT (546612.9588635714026168 2073214.0777496120426804)", - "surface": 25460000, - "canton": null, - "numero_insee": "87194" - } - }, - { - "pk": 23418, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "TERSANNES", - "center": "POINT (506785.9916428211727180 2144047.8981961924582720)", - "surface": 24620000, - "canton": null, - "numero_insee": "87195" - } - }, - { - "pk": 33021, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "THIAT", - "center": "POINT (494588.3339477202971466 2142445.0852565551176667)", - "surface": 11220000, - "canton": null, - "numero_insee": "87196" - } - }, - { - "pk": 11944, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "THOURON", - "center": "POINT (513463.0280994580825791 2111473.7383918031118810)", - "surface": 13980000, - "canton": null, - "numero_insee": "87197" - } - }, - { - "pk": 22666, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VAULRY", - "center": "POINT (502924.8985920327249914 2114889.2493748641572893)", - "surface": 15610000, - "canton": null, - "numero_insee": "87198" - } - }, - { - "pk": 20481, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VAYRES", - "center": "POINT (482237.3018217162461951 2086991.4369846764020622)", - "surface": 38030000, - "canton": null, - "numero_insee": "87199" - } - }, - { - "pk": 20136, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VERNEUIL-MOUSTIERS", - "center": "POINT (506042.0988753095734864 2149246.3779200427234173)", - "surface": 19730000, - "canton": null, - "numero_insee": "87200" - } - }, - { - "pk": 19958, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VERNEUIL-SUR-VIENNE", - "center": "POINT (506192.4753367888042703 2095098.0293740564957261)", - "surface": 34200000, - "canton": null, - "numero_insee": "87201" - } - }, - { - "pk": 20581, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VEYRAC", - "center": "POINT (503239.9906619085231796 2101079.0699753882363439)", - "surface": 34660000, - "canton": null, - "numero_insee": "87202" - } - }, - { - "pk": 22964, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VICQ-SUR-BREUILH", - "center": "POINT (526199.0973162851296365 2072543.2274156680796295)", - "surface": 51280000, - "canton": null, - "numero_insee": "87203" - } - }, - { - "pk": 17084, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VIDEIX", - "center": "POINT (475121.1231349168228917 2088133.4882693081162870)", - "surface": 16310000, - "canton": null, - "numero_insee": "87204" - } - }, - { - "pk": 14531, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "LE VIGEN", - "center": "POINT (517810.0289204155560583 2082282.6197760645300150)", - "surface": 29590000, - "canton": null, - "numero_insee": "87205" - } - }, - { - "pk": 36787, - "model": "ishtar_common.town", - "fields": { - "departement": 88, - "name": "VILLEFAVARD", - "center": "POINT (513304.6607203542953357 2130489.8556650415994227)", - "surface": 9300000, - "canton": null, - "numero_insee": "87206" - } - }, - { - "pk": 35175, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LES ABLEUVENETTES", - "center": "POINT (886554.2027289700927213 2361739.6358277751132846)", - "surface": 4530000, - "canton": null, - "numero_insee": "88001" - } - }, - { - "pk": 34261, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AHEVILLE", - "center": "POINT (886565.4258554687257856 2372047.2951792804524302)", - "surface": 5870000, - "canton": null, - "numero_insee": "88002" - } - }, - { - "pk": 31967, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AINGEVILLE", - "center": "POINT (855030.7199649134417996 2361768.5279327509924769)", - "surface": 5730000, - "canton": null, - "numero_insee": "88003" - } - }, - { - "pk": 31738, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AINVELLE", - "center": "POINT (860540.7403283694293350 2337797.9792374544776976)", - "surface": 9080000, - "canton": null, - "numero_insee": "88004" - } - }, - { - "pk": 16192, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ALLARMONT", - "center": "POINT (946203.4686625226167962 2395779.5661314302124083)", - "surface": 13170000, - "canton": null, - "numero_insee": "88005" - } - }, - { - "pk": 26910, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AMBACOURT", - "center": "POINT (881799.4029122405918315 2379311.5287349368445575)", - "surface": 6780000, - "canton": null, - "numero_insee": "88006" - } - }, - { - "pk": 6784, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AMEUVELLE", - "center": "POINT (869980.7373177295085043 2333976.2265070001594722)", - "surface": 5630000, - "canton": null, - "numero_insee": "88007" - } - }, - { - "pk": 34603, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ANGLEMONT", - "center": "POINT (920787.5601271381601691 2383951.1861179708503187)", - "surface": 5890000, - "canton": null, - "numero_insee": "88008" - } - }, - { - "pk": 15895, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ANOULD", - "center": "POINT (942176.4206552968826145 2363921.5561182368546724)", - "surface": 24490000, - "canton": null, - "numero_insee": "88009" - } - }, - { - "pk": 19829, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AOUZE", - "center": "POINT (861462.1175390838179737 2381938.4780043354257941)", - "surface": 11160000, - "canton": null, - "numero_insee": "88010" - } - }, - { - "pk": 15312, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ARCHES", - "center": "POINT (910936.9058882291428745 2354244.3244556146673858)", - "surface": 17650000, - "canton": null, - "numero_insee": "88011" - } - }, - { - "pk": 24335, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ARCHETTES", - "center": "POINT (913419.5606161470059305 2356467.4114246256649494)", - "surface": 13880000, - "canton": null, - "numero_insee": "88012" - } - }, - { - "pk": 21350, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AROFFE", - "center": "POINT (863738.6431194181786850 2384860.1479946738108993)", - "surface": 8600000, - "canton": null, - "numero_insee": "88013" - } - }, - { - "pk": 29774, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ATTIGNEVILLE", - "center": "POINT (858448.1306872859131545 2383313.5685212318785489)", - "surface": 14640000, - "canton": null, - "numero_insee": "88015" - } - }, - { - "pk": 3633, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ATTIGNY", - "center": "POINT (874775.5404569492675364 2346627.0061189667321742)", - "surface": 16090000, - "canton": null, - "numero_insee": "88016" - } - }, - { - "pk": 4398, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AULNOIS", - "center": "POINT (855376.7997452683048323 2368076.1296012452803552)", - "surface": 4410000, - "canton": null, - "numero_insee": "88017" - } - }, - { - "pk": 9230, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AUMONTZEY", - "center": "POINT (930291.0352832964854315 2361216.7188124028034508)", - "surface": 3410000, - "canton": null, - "numero_insee": "88018" - } - }, - { - "pk": 16439, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AUTIGNY-LA-TOUR", - "center": "POINT (854830.3233339735306799 2385083.7616381887346506)", - "surface": 15760000, - "canton": null, - "numero_insee": "88019" - } - }, - { - "pk": 24439, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AUTREVILLE", - "center": "POINT (860259.8622922488721088 2393736.5938259824179113)", - "surface": 10860000, - "canton": null, - "numero_insee": "88020" - } - }, - { - "pk": 16546, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AUTREY", - "center": "POINT (925471.9115781534928828 2374584.8758491813205183)", - "surface": 17450000, - "canton": null, - "numero_insee": "88021" - } - }, - { - "pk": 35432, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AUZAINVILLIERS", - "center": "POINT (861102.9249056533444673 2365523.4537964607588947)", - "surface": 8160000, - "canton": null, - "numero_insee": "88022" - } - }, - { - "pk": 7422, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AVILLERS", - "center": "POINT (886938.0848483403678983 2375252.8400963470339775)", - "surface": 6870000, - "canton": null, - "numero_insee": "88023" - } - }, - { - "pk": 6626, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AVRAINVILLE", - "center": "POINT (887675.6318284104345366 2382564.4892725492827594)", - "surface": 4550000, - "canton": null, - "numero_insee": "88024" - } - }, - { - "pk": 27802, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AVRANVILLE", - "center": "POINT (836721.2359353197971359 2384628.0211677281185985)", - "surface": 10850000, - "canton": null, - "numero_insee": "88025" - } - }, - { - "pk": 36141, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "AYDOILLES", - "center": "POINT (914544.2659728934522718 2365283.6444367836229503)", - "surface": 10060000, - "canton": null, - "numero_insee": "88026" - } - }, - { - "pk": 28706, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BADMENIL-AUX-BOIS", - "center": "POINT (910446.5279560543131083 2376256.2942998888902366)", - "surface": 9350000, - "canton": null, - "numero_insee": "88027" - } - }, - { - "pk": 26648, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA BAFFE", - "center": "POINT (914194.1546832999447361 2359476.3322399207390845)", - "surface": 9030000, - "canton": null, - "numero_insee": "88028" - } - }, - { - "pk": 16413, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAINS-LES-BAINS", - "center": "POINT (892842.9332037451677024 2340377.8728243978694081)", - "surface": 25680000, - "canton": null, - "numero_insee": "88029" - } - }, - { - "pk": 25666, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAINVILLE-AUX-SAULES", - "center": "POINT (882138.3488094867207110 2363202.6867926339618862)", - "surface": 5660000, - "canton": null, - "numero_insee": "88030" - } - }, - { - "pk": 36379, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BALLEVILLE", - "center": "POINT (860208.6038031226489693 2376423.7190095400437713)", - "surface": 6260000, - "canton": null, - "numero_insee": "88031" - } - }, - { - "pk": 18476, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAN-DE-LAVELINE", - "center": "POINT (952536.4703725890722126 2369415.3362749572843313)", - "surface": 26290000, - "canton": null, - "numero_insee": "88032" - } - }, - { - "pk": 4891, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAN-DE-SAPT", - "center": "POINT (946724.2903580840211362 2381874.0750540555454791)", - "surface": 22550000, - "canton": null, - "numero_insee": "88033" - } - }, - { - "pk": 7226, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BARBEY-SEROUX", - "center": "POINT (935625.7548171528615057 2357660.2242639032192528)", - "surface": 7330000, - "canton": null, - "numero_insee": "88035" - } - }, - { - "pk": 12500, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BARVILLE", - "center": "POINT (854265.1983629618771374 2380975.9518256830051541)", - "surface": 8510000, - "canton": null, - "numero_insee": "88036" - } - }, - { - "pk": 26263, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BASSE-SUR-LE-RUPT", - "center": "POINT (930664.3622397045837715 2341204.9761756728403270)", - "surface": 13750000, - "canton": null, - "numero_insee": "88037" - } - }, - { - "pk": 11351, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BATTEXEY", - "center": "POINT (884664.2024345136014745 2383639.3238961221650243)", - "surface": 2730000, - "canton": null, - "numero_insee": "88038" - } - }, - { - "pk": 23115, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAUDRICOURT", - "center": "POINT (875937.7941976389847696 2374357.4784654364921153)", - "surface": 3450000, - "canton": null, - "numero_insee": "88039" - } - }, - { - "pk": 9549, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAYECOURT", - "center": "POINT (908384.9138821330852807 2371635.1290563582442701)", - "surface": 7110000, - "canton": null, - "numero_insee": "88040" - } - }, - { - "pk": 35417, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAZEGNEY", - "center": "POINT (888984.2549461497692391 2370066.6857711328193545)", - "surface": 5800000, - "canton": null, - "numero_insee": "88041" - } - }, - { - "pk": 25198, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAZIEN", - "center": "POINT (921149.7436099050100893 2388357.4889949010685086)", - "surface": 3180000, - "canton": null, - "numero_insee": "88042" - } - }, - { - "pk": 30580, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAZOILLES-ET-MENIL", - "center": "POINT (879587.5582290174206719 2368884.8984781028702855)", - "surface": 5750000, - "canton": null, - "numero_insee": "88043" - } - }, - { - "pk": 34805, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAZOILLES-SUR-MEUSE", - "center": "POINT (845836.1755362502299249 2371997.0816756766289473)", - "surface": 21280000, - "canton": null, - "numero_insee": "88044" - } - }, - { - "pk": 24516, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BEAUFREMONT", - "center": "POINT (853183.9512972249649465 2367056.5510837077163160)", - "surface": 8980000, - "canton": null, - "numero_insee": "88045" - } - }, - { - "pk": 7120, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BEAUMENIL", - "center": "POINT (925984.7099421157035977 2361579.7550678588449955)", - "surface": 3290000, - "canton": null, - "numero_insee": "88046" - } - }, - { - "pk": 26658, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BEGNECOURT", - "center": "POINT (884436.4234546719817445 2363622.7843108507804573)", - "surface": 4540000, - "canton": null, - "numero_insee": "88047" - } - }, - { - "pk": 22932, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BELLEFONTAINE", - "center": "POINT (907835.0032061698148027 2342608.8350644283927977)", - "surface": 39370000, - "canton": null, - "numero_insee": "88048" - } - }, - { - "pk": 10903, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BELMONT-LES-DARNEY", - "center": "POINT (873951.7395142284221947 2349321.9348237751983106)", - "surface": 4150000, - "canton": null, - "numero_insee": "88049" - } - }, - { - "pk": 26798, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BELMONT-SUR-BUTTANT", - "center": "POINT (929137.4826694498769939 2367311.2402296583168209)", - "surface": 8480000, - "canton": null, - "numero_insee": "88050" - } - }, - { - "pk": 35057, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BELMONT-SUR-VAIR", - "center": "POINT (865682.7176469205878675 2368264.8268700181506574)", - "surface": 6180000, - "canton": null, - "numero_insee": "88051" - } - }, - { - "pk": 21383, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BELRUPT", - "center": "POINT (879448.5477187969954684 2350169.8680592332966626)", - "surface": 9390000, - "canton": null, - "numero_insee": "88052" - } - }, - { - "pk": 11934, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BELVAL", - "center": "POINT (950661.8145580976270139 2389413.6306210514158010)", - "surface": 6900000, - "canton": null, - "numero_insee": "88053" - } - }, - { - "pk": 9455, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BERTRIMOUTIER", - "center": "POINT (950701.4443573700264096 2373302.2863680627197027)", - "surface": 3710000, - "canton": null, - "numero_insee": "88054" - } - }, - { - "pk": 34939, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BETTEGNEY-SAINT-BRICE", - "center": "POINT (894949.3544837435474619 2374621.4164008251391351)", - "surface": 5380000, - "canton": null, - "numero_insee": "88055" - } - }, - { - "pk": 11634, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BETTONCOURT", - "center": "POINT (883810.1888440339826047 2378228.0591467325575650)", - "surface": 3260000, - "canton": null, - "numero_insee": "88056" - } - }, - { - "pk": 12848, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE BEULAY", - "center": "POINT (950462.2695440861862153 2377803.4999619536101818)", - "surface": 2390000, - "canton": null, - "numero_insee": "88057" - } - }, - { - "pk": 8038, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BIECOURT", - "center": "POINT (868120.6407758197747171 2375691.2013189801946282)", - "surface": 6000000, - "canton": null, - "numero_insee": "88058" - } - }, - { - "pk": 11559, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BIFFONTAINE", - "center": "POINT (932646.7257796544581652 2366541.0229352759197354)", - "surface": 8900000, - "canton": null, - "numero_insee": "88059" - } - }, - { - "pk": 25566, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BLEMEREY", - "center": "POINT (874591.2776452287798747 2379649.7297243680804968)", - "surface": 2500000, - "canton": null, - "numero_insee": "88060" - } - }, - { - "pk": 19892, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BLEURVILLE", - "center": "POINT (869667.7899534052703530 2347083.4142979281023145)", - "surface": 20420000, - "canton": null, - "numero_insee": "88061" - } - }, - { - "pk": 6058, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BLEVAINCOURT", - "center": "POINT (849707.9436160523910075 2352315.8305381066165864)", - "surface": 8760000, - "canton": null, - "numero_insee": "88062" - } - }, - { - "pk": 25984, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BOCQUEGNEY", - "center": "POINT (895129.7007775512756780 2365316.1628183289431036)", - "surface": 4570000, - "canton": null, - "numero_insee": "88063" - } - }, - { - "pk": 16738, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BOIS-DE-CHAMP", - "center": "POINT (931619.2145431583048776 2369634.4089220846071839)", - "surface": 17620000, - "canton": null, - "numero_insee": "88064" - } - }, - { - "pk": 3232, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BONVILLET", - "center": "POINT (877436.8606816515093669 2351353.4376325304619968)", - "surface": 10100000, - "canton": null, - "numero_insee": "88065" - } - }, - { - "pk": 33192, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BOULAINCOURT", - "center": "POINT (877678.6387901611160487 2381377.5475211949087679)", - "surface": 2540000, - "canton": null, - "numero_insee": "88066" - } - }, - { - "pk": 21866, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA BOURGONCE", - "center": "POINT (931760.4485304875997826 2376440.6058461861684918)", - "surface": 16660000, - "canton": null, - "numero_insee": "88068" - } - }, - { - "pk": 24632, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BOUXIERES-AUX-BOIS", - "center": "POINT (895691.2501565315760672 2369824.3106638211756945)", - "surface": 7670000, - "canton": null, - "numero_insee": "88069" - } - }, - { - "pk": 13529, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BOUXURULLES", - "center": "POINT (888721.1429646997712553 2377369.7385726128704846)", - "surface": 6770000, - "canton": null, - "numero_insee": "88070" - } - }, - { - "pk": 7067, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BOUZEMONT", - "center": "POINT (889798.5859358991729096 2368472.5350812678225338)", - "surface": 4940000, - "canton": null, - "numero_insee": "88071" - } - }, - { - "pk": 26565, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BRANTIGNY", - "center": "POINT (892007.7592094668652862 2379199.3856812808662653)", - "surface": 2970000, - "canton": null, - "numero_insee": "88073" - } - }, - { - "pk": 6200, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BRECHAINVILLE", - "center": "POINT (834872.3801384654361755 2378507.7622353360056877)", - "surface": 14210000, - "canton": null, - "numero_insee": "88074" - } - }, - { - "pk": 17649, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA BRESSE", - "center": "POINT (942136.6616201066644862 2345407.4005601084791124)", - "surface": 58030000, - "canton": null, - "numero_insee": "88075" - } - }, - { - "pk": 27310, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BROUVELIEURES", - "center": "POINT (926216.5208210429409519 2369487.5841219881549478)", - "surface": 7400000, - "canton": null, - "numero_insee": "88076" - } - }, - { - "pk": 13946, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BRU", - "center": "POINT (922508.5662159335333854 2381664.4060607580468059)", - "surface": 8960000, - "canton": null, - "numero_insee": "88077" - } - }, - { - "pk": 24341, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BULGNEVILLE", - "center": "POINT (860327.3504242402268574 2362614.6518265749327838)", - "surface": 13350000, - "canton": null, - "numero_insee": "88079" - } - }, - { - "pk": 3388, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BULT", - "center": "POINT (915958.7702620542841032 2375303.1982877016998827)", - "surface": 9900000, - "canton": null, - "numero_insee": "88080" - } - }, - { - "pk": 32827, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BUSSANG", - "center": "POINT (939258.5491686256136745 2331071.6135186194442213)", - "surface": 27650000, - "canton": null, - "numero_insee": "88081" - } - }, - { - "pk": 20674, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CELLES-SUR-PLAINE", - "center": "POINT (942520.1798486928455532 2393546.0710541931912303)", - "surface": 20200000, - "canton": null, - "numero_insee": "88082" - } - }, - { - "pk": 36257, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CERTILLEUX", - "center": "POINT (852022.1782730908598751 2374151.7498616068623960)", - "surface": 5930000, - "canton": null, - "numero_insee": "88083" - } - }, - { - "pk": 19881, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHAMAGNE", - "center": "POINT (892747.8629264043411240 2386210.8231269554235041)", - "surface": 15330000, - "canton": null, - "numero_insee": "88084" - } - }, - { - "pk": 7030, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHAMPDRAY", - "center": "POINT (929127.4692418631166220 2356903.4573237574659288)", - "surface": 9620000, - "canton": null, - "numero_insee": "88085" - } - }, - { - "pk": 7478, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHAMP-LE-DUC", - "center": "POINT (926465.1318174633197486 2363885.6117543303407729)", - "surface": 3960000, - "canton": null, - "numero_insee": "88086" - } - }, - { - "pk": 8973, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHANTRAINE", - "center": "POINT (903583.6345452526584268 2359784.9840276343747973)", - "surface": 6120000, - "canton": null, - "numero_insee": "88087" - } - }, - { - "pk": 37519, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA CHAPELLE-DEVANT-BRUYERES", - "center": "POINT (932279.3748420649208128 2362735.0380139653570950)", - "surface": 20430000, - "canton": null, - "numero_insee": "88089" - } - }, - { - "pk": 23806, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHARMES", - "center": "POINT (894771.5972338556312025 2383626.4074604646302760)", - "surface": 23750000, - "canton": null, - "numero_insee": "88090" - } - }, - { - "pk": 8955, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHARMOIS-DEVANT-BRUYERES", - "center": "POINT (916382.6480619551148266 2360996.3568856907077134)", - "surface": 6630000, - "canton": null, - "numero_insee": "88091" - } - }, - { - "pk": 17519, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHARMOIS-L'ORGUEILLEUX", - "center": "POINT (892252.8471994102001190 2350780.5974777173250914)", - "surface": 36460000, - "canton": null, - "numero_insee": "88092" - } - }, - { - "pk": 29768, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHATAS", - "center": "POINT (948203.5785524901002645 2384388.7093662619590759)", - "surface": 5670000, - "canton": null, - "numero_insee": "88093" - } - }, - { - "pk": 28493, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHATEL-SUR-MOSELLE", - "center": "POINT (901336.2657911088317633 2376677.9867406003177166)", - "surface": 12110000, - "canton": null, - "numero_insee": "88094" - } - }, - { - "pk": 15601, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHATENOIS", - "center": "POINT (858832.6427473602816463 2373509.7799961776472628)", - "surface": 17630000, - "canton": null, - "numero_insee": "88095" - } - }, - { - "pk": 36978, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHATILLON-SUR-SAONE", - "center": "POINT (864379.4821196903940290 2333627.8089072457514703)", - "surface": 9230000, - "canton": null, - "numero_insee": "88096" - } - }, - { - "pk": 6952, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHAUFFECOURT", - "center": "POINT (883017.4289415969979018 2377320.5743847829289734)", - "surface": 1870000, - "canton": null, - "numero_insee": "88097" - } - }, - { - "pk": 18406, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHAUMOUSEY", - "center": "POINT (897074.9891740134917200 2360229.1818360658362508)", - "surface": 10130000, - "canton": null, - "numero_insee": "88098" - } - }, - { - "pk": 14354, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHAVELOT", - "center": "POINT (904025.2209322340786457 2366593.8143821666017175)", - "surface": 6200000, - "canton": null, - "numero_insee": "88099" - } - }, - { - "pk": 33940, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHEF-HAUT", - "center": "POINT (872194.8878265512175858 2379028.6627725572325289)", - "surface": 3180000, - "canton": null, - "numero_insee": "88100" - } - }, - { - "pk": 4069, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHENIMENIL", - "center": "POINT (917015.9146221519913524 2357199.0116106974892318)", - "surface": 9350000, - "canton": null, - "numero_insee": "88101" - } - }, - { - "pk": 33916, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CHERMISEY", - "center": "POINT (839224.5648458357900381 2384449.3611803543753922)", - "surface": 10810000, - "canton": null, - "numero_insee": "88102" - } - }, - { - "pk": 6625, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CIRCOURT", - "center": "POINT (893201.6888028101529926 2368401.8093910124152899)", - "surface": 5900000, - "canton": null, - "numero_insee": "88103" - } - }, - { - "pk": 34256, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CIRCOURT-SUR-MOUZON", - "center": "POINT (849633.5055709716398269 2372630.1353477151133120)", - "surface": 10190000, - "canton": null, - "numero_insee": "88104" - } - }, - { - "pk": 3719, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CLAUDON", - "center": "POINT (876404.1951754847541451 2343438.6263497038744390)", - "surface": 21760000, - "canton": null, - "numero_insee": "88105" - } - }, - { - "pk": 19710, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "BAN-SUR-MEURTHE-CLEFCY", - "center": "POINT (945132.9771795333363116 2357642.4999843463301659)", - "surface": 44930000, - "canton": null, - "numero_insee": "88106" - } - }, - { - "pk": 13135, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CLEREY-LA-COTE", - "center": "POINT (853163.0739635617937893 2392774.9406268508173525)", - "surface": 3220000, - "canton": null, - "numero_insee": "88107" - } - }, - { - "pk": 17236, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE CLERJUS", - "center": "POINT (898065.4686321780318394 2338221.2572753527201712)", - "surface": 32770000, - "canton": null, - "numero_insee": "88108" - } - }, - { - "pk": 27334, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CLEURIE", - "center": "POINT (923195.2821013223147020 2348545.9389548739418387)", - "surface": 10980000, - "canton": null, - "numero_insee": "88109" - } - }, - { - "pk": 26360, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CLEZENTAINE", - "center": "POINT (910255.6926126097096130 2386762.2454333384521306)", - "surface": 12990000, - "canton": null, - "numero_insee": "88110" - } - }, - { - "pk": 6047, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "COINCHES", - "center": "POINT (948019.6211079591885209 2370977.3497993983328342)", - "surface": 5670000, - "canton": null, - "numero_insee": "88111" - } - }, - { - "pk": 7707, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "COLROY-LA-GRANDE", - "center": "POINT (954248.2621894043404609 2379737.7164316992275417)", - "surface": 11930000, - "canton": null, - "numero_insee": "88112" - } - }, - { - "pk": 23169, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "COMBRIMONT", - "center": "POINT (951591.6231798072112724 2374510.8834130452014506)", - "surface": 4740000, - "canton": null, - "numero_insee": "88113" - } - }, - { - "pk": 35431, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CONTREXEVILLE", - "center": "POINT (864353.2416116279782727 2359947.2850335645489395)", - "surface": 15000000, - "canton": null, - "numero_insee": "88114" - } - }, - { - "pk": 3495, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CORCIEUX", - "center": "POINT (938091.8966278000734746 2361784.6224213815294206)", - "surface": 17570000, - "canton": null, - "numero_insee": "88115" - } - }, - { - "pk": 18217, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CORNIMONT", - "center": "POINT (937984.0692906002514064 2339567.0504332408308983)", - "surface": 40240000, - "canton": null, - "numero_insee": "88116" - } - }, - { - "pk": 28909, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "COURCELLES-SOUS-CHATENOIS", - "center": "POINT (857913.9877762997057289 2375603.4081958699971437)", - "surface": 2360000, - "canton": null, - "numero_insee": "88117" - } - }, - { - "pk": 32265, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "COUSSEY", - "center": "POINT (846529.2713490809546784 2384512.0788116119801998)", - "surface": 16250000, - "canton": null, - "numero_insee": "88118" - } - }, - { - "pk": 12919, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "CRAINVILLIERS", - "center": "POINT (860287.5159197410102934 2355609.1345386086031795)", - "surface": 10410000, - "canton": null, - "numero_insee": "88119" - } - }, - { - "pk": 21218, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DAMAS-AUX-BOIS", - "center": "POINT (902073.7287393945734948 2383989.6402145675383508)", - "surface": 29940000, - "canton": null, - "numero_insee": "88121" - } - }, - { - "pk": 18719, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DAMAS-ET-BETTEGNEY", - "center": "POINT (891635.1526164369424805 2364385.3593367161229253)", - "surface": 15050000, - "canton": null, - "numero_insee": "88122" - } - }, - { - "pk": 4334, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DAMBLAIN", - "center": "POINT (848136.9527248054509982 2348799.7269801688380539)", - "surface": 13300000, - "canton": null, - "numero_insee": "88123" - } - }, - { - "pk": 15642, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DARNEY", - "center": "POINT (876859.7244312700349838 2348646.4501926191151142)", - "surface": 7870000, - "canton": null, - "numero_insee": "88124" - } - }, - { - "pk": 10785, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DARNEY-AUX-CHENES", - "center": "POINT (857757.7322489434154704 2370498.3512525167316198)", - "surface": 2470000, - "canton": null, - "numero_insee": "88125" - } - }, - { - "pk": 31309, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DARNIEULLES", - "center": "POINT (897351.8773392881266773 2362933.5658789132721722)", - "surface": 10090000, - "canton": null, - "numero_insee": "88126" - } - }, - { - "pk": 8794, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DEINVILLERS", - "center": "POINT (912649.4583722744137049 2387683.5756807834841311)", - "surface": 5490000, - "canton": null, - "numero_insee": "88127" - } - }, - { - "pk": 34331, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DENIPAIRE", - "center": "POINT (942726.8923161288257688 2381238.9968738863244653)", - "surface": 7020000, - "canton": null, - "numero_insee": "88128" - } - }, - { - "pk": 7543, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DERBAMONT", - "center": "POINT (891983.6383848901605234 2370392.7691486505791545)", - "surface": 6860000, - "canton": null, - "numero_insee": "88129" - } - }, - { - "pk": 31423, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DESTORD", - "center": "POINT (917684.9683732688426971 2372416.0020941435359418)", - "surface": 5100000, - "canton": null, - "numero_insee": "88130" - } - }, - { - "pk": 24331, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DEYCIMONT", - "center": "POINT (919981.5833582952618599 2361427.7640659427270293)", - "surface": 6390000, - "canton": null, - "numero_insee": "88131" - } - }, - { - "pk": 19163, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DEYVILLERS", - "center": "POINT (911156.7113938464317471 2363553.1208107289858162)", - "surface": 8670000, - "canton": null, - "numero_insee": "88132" - } - }, - { - "pk": 34601, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DIGNONVILLE", - "center": "POINT (909012.1023499781731516 2368538.2748703500255942)", - "surface": 5970000, - "canton": null, - "numero_insee": "88133" - } - }, - { - "pk": 16507, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DINOZE", - "center": "POINT (908311.8280729902908206 2356923.6595521694980562)", - "surface": 2890000, - "canton": null, - "numero_insee": "88134" - } - }, - { - "pk": 13732, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOCELLES", - "center": "POINT (919012.0612199329771101 2357816.7126450669020414)", - "surface": 8690000, - "canton": null, - "numero_insee": "88135" - } - }, - { - "pk": 11698, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOGNEVILLE", - "center": "POINT (906632.1235501838382334 2366015.8826344488188624)", - "surface": 11450000, - "canton": null, - "numero_insee": "88136" - } - }, - { - "pk": 25567, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOLAINCOURT", - "center": "POINT (857403.3384064730489627 2376799.8887491589412093)", - "surface": 2600000, - "canton": null, - "numero_insee": "88137" - } - }, - { - "pk": 10460, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMBASLE-EN-XAINTOIS", - "center": "POINT (871239.8904896292369813 2373716.5933805727399886)", - "surface": 4730000, - "canton": null, - "numero_insee": "88139" - } - }, - { - "pk": 31883, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMBROT-LE-SEC", - "center": "POINT (864994.0990339985582978 2355249.3169116312637925)", - "surface": 19010000, - "canton": null, - "numero_insee": "88140" - } - }, - { - "pk": 27923, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMEVRE-SUR-AVIERE", - "center": "POINT (900929.2187960774172097 2365866.5737426201812923)", - "surface": 9240000, - "canton": null, - "numero_insee": "88142" - } - }, - { - "pk": 4183, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMEVRE-SUR-DURBION", - "center": "POINT (907566.2395833572372794 2373729.5925700329244137)", - "surface": 12700000, - "canton": null, - "numero_insee": "88143" - } - }, - { - "pk": 33191, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMEVRE-SOUS-MONTFORT", - "center": "POINT (877489.6236771012190729 2368466.5347858755849302)", - "surface": 3250000, - "canton": null, - "numero_insee": "88144" - } - }, - { - "pk": 11924, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMFAING", - "center": "POINT (927724.4360521439230070 2368700.0427622478455305)", - "surface": 3940000, - "canton": null, - "numero_insee": "88145" - } - }, - { - "pk": 30360, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMJULIEN", - "center": "POINT (871588.3239440117031336 2368115.5024661901406944)", - "surface": 11930000, - "canton": null, - "numero_insee": "88146" - } - }, - { - "pk": 4535, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMMARTIN-AUX-BOIS", - "center": "POINT (893996.2304249552544206 2357500.6220032931305468)", - "surface": 15820000, - "canton": null, - "numero_insee": "88147" - } - }, - { - "pk": 16406, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMMARTIN-LES-REMIREMONT", - "center": "POINT (921657.3639330323785543 2341227.1416542432270944)", - "surface": 20990000, - "canton": null, - "numero_insee": "88148" - } - }, - { - "pk": 26737, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMMARTIN-LES-VALLOIS", - "center": "POINT (878788.6728410895448178 2357069.3203959329985082)", - "surface": 4980000, - "canton": null, - "numero_insee": "88149" - } - }, - { - "pk": 9297, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMMARTIN-SUR-VRAINE", - "center": "POINT (865104.0487353773787618 2377366.4790573306381702)", - "surface": 7030000, - "canton": null, - "numero_insee": "88150" - } - }, - { - "pk": 11564, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMPAIRE", - "center": "POINT (887522.0871418978786096 2365550.7789828656241298)", - "surface": 16760000, - "canton": null, - "numero_insee": "88151" - } - }, - { - "pk": 10014, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMPIERRE", - "center": "POINT (914106.8177607487887144 2369583.0250380672514439)", - "surface": 8820000, - "canton": null, - "numero_insee": "88152" - } - }, - { - "pk": 14262, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMREMY-LA-PUCELLE", - "center": "POINT (845602.9100400132592767 2387506.2750369003042579)", - "surface": 9010000, - "canton": null, - "numero_insee": "88154" - } - }, - { - "pk": 6387, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOMVALLIER", - "center": "POINT (877641.4910359984496608 2374071.9329590471461415)", - "surface": 3280000, - "canton": null, - "numero_insee": "88155" - } - }, - { - "pk": 12300, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DONCIERES", - "center": "POINT (918371.2990000208374113 2385631.5204040752723813)", - "surface": 7670000, - "canton": null, - "numero_insee": "88156" - } - }, - { - "pk": 30698, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "DOUNOUX", - "center": "POINT (905440.9938083759043366 2353296.1887836693786085)", - "surface": 9340000, - "canton": null, - "numero_insee": "88157" - } - }, - { - "pk": 4399, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ELOYES", - "center": "POINT (918958.7079934382345527 2352412.2282556374557316)", - "surface": 12530000, - "canton": null, - "numero_insee": "88158" - } - }, - { - "pk": 3068, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ENTRE-DEUX-EAUX", - "center": "POINT (946226.2407994277309626 2370061.1443451754748821)", - "surface": 8510000, - "canton": null, - "numero_insee": "88159" - } - }, - { - "pk": 18995, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "EPINAL", - "center": "POINT (908088.3603526022052392 2359623.7330261357128620)", - "surface": 59370000, - "canton": null, - "numero_insee": "88160" - } - }, - { - "pk": 21562, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ESCLES", - "center": "POINT (885725.1889372464502230 2353426.3355186763219535)", - "surface": 22470000, - "canton": null, - "numero_insee": "88161" - } - }, - { - "pk": 10021, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ESLEY", - "center": "POINT (876667.4512361929519102 2359352.7548702396452427)", - "surface": 11160000, - "canton": null, - "numero_insee": "88162" - } - }, - { - "pk": 27940, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ESSEGNEY", - "center": "POINT (895980.1436569909565151 2382736.1845094244927168)", - "surface": 8510000, - "canton": null, - "numero_insee": "88163" - } - }, - { - "pk": 12992, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ESTRENNES", - "center": "POINT (876086.1168232178315520 2368754.6672616824507713)", - "surface": 6040000, - "canton": null, - "numero_insee": "88164" - } - }, - { - "pk": 14373, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ETIVAL-CLAIREFONTAINE", - "center": "POINT (933801.1784539361251518 2383463.3550669783726335)", - "surface": 27300000, - "canton": null, - "numero_insee": "88165" - } - }, - { - "pk": 24239, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "EVAUX-ET-MENIL", - "center": "POINT (893929.7108895359560847 2376814.2213287861086428)", - "surface": 5000000, - "canton": null, - "numero_insee": "88166" - } - }, - { - "pk": 26624, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FAUCOMPIERRE", - "center": "POINT (921913.9988213108154014 2357841.8033312694169581)", - "surface": 2490000, - "canton": null, - "numero_insee": "88167" - } - }, - { - "pk": 37646, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FAUCONCOURT", - "center": "POINT (911087.3323354283347726 2383166.8345948467031121)", - "surface": 4900000, - "canton": null, - "numero_insee": "88168" - } - }, - { - "pk": 4106, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FAYS", - "center": "POINT (921859.4836788685061038 2364145.9973285454325378)", - "surface": 4900000, - "canton": null, - "numero_insee": "88169" - } - }, - { - "pk": 21214, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FERDRUPT", - "center": "POINT (927436.5605346288066357 2332570.5144421267323196)", - "surface": 14830000, - "canton": null, - "numero_insee": "88170" - } - }, - { - "pk": 9359, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FIGNEVELLE", - "center": "POINT (866747.5520374793559313 2337551.1355661279521883)", - "surface": 4460000, - "canton": null, - "numero_insee": "88171" - } - }, - { - "pk": 26458, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FIMENIL", - "center": "POINT (924981.4478777201147750 2361871.2985909497365355)", - "surface": 5190000, - "canton": null, - "numero_insee": "88172" - } - }, - { - "pk": 31622, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FLOREMONT", - "center": "POINT (890083.2260676263831556 2381884.7425810699351132)", - "surface": 7980000, - "canton": null, - "numero_insee": "88173" - } - }, - { - "pk": 30112, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FOMEREY", - "center": "POINT (897632.2177269228268415 2365237.6797233191318810)", - "surface": 5110000, - "canton": null, - "numero_insee": "88174" - } - }, - { - "pk": 10139, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FONTENAY", - "center": "POINT (916038.3400817729998380 2366097.1460966048762202)", - "surface": 6520000, - "canton": null, - "numero_insee": "88175" - } - }, - { - "pk": 16669, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FONTENOY-LE-CHATEAU", - "center": "POINT (888560.7083024956518784 2337939.1362996753305197)", - "surface": 38120000, - "canton": null, - "numero_insee": "88176" - } - }, - { - "pk": 11417, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA FORGE", - "center": "POINT (926482.7956618572352454 2350275.6482084137387574)", - "surface": 4710000, - "canton": null, - "numero_insee": "88177" - } - }, - { - "pk": 30900, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LES FORGES", - "center": "POINT (901776.3896347641712055 2360469.9016046216711402)", - "surface": 7130000, - "canton": null, - "numero_insee": "88178" - } - }, - { - "pk": 34265, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FOUCHECOURT", - "center": "POINT (862725.0289876005845144 2339818.2729502767324448)", - "surface": 4680000, - "canton": null, - "numero_insee": "88179" - } - }, - { - "pk": 5840, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRAIN", - "center": "POINT (863951.0321978558786213 2348535.3523334879428148)", - "surface": 7630000, - "canton": null, - "numero_insee": "88180" - } - }, - { - "pk": 5616, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRAIZE", - "center": "POINT (947875.8698487576330081 2364471.3160239327698946)", - "surface": 15510000, - "canton": null, - "numero_insee": "88181" - } - }, - { - "pk": 25454, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRAPELLE", - "center": "POINT (949772.2230742595857009 2376596.6419193628244102)", - "surface": 4530000, - "canton": null, - "numero_insee": "88182" - } - }, - { - "pk": 13932, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FREBECOURT", - "center": "POINT (846856.9673824735218659 2381312.5896701621823013)", - "surface": 10530000, - "canton": null, - "numero_insee": "88183" - } - }, - { - "pk": 19849, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FREMIFONTAINE", - "center": "POINT (923898.5601108788978308 2371368.9261703989468515)", - "surface": 9650000, - "canton": null, - "numero_insee": "88184" - } - }, - { - "pk": 33422, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRENELLE-LA-GRANDE", - "center": "POINT (878197.0634166356176138 2379280.4941770881414413)", - "surface": 5510000, - "canton": null, - "numero_insee": "88185" - } - }, - { - "pk": 7311, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRENELLE-LA-PETITE", - "center": "POINT (876100.0076582371257246 2378762.0704324920661747)", - "surface": 3500000, - "canton": null, - "numero_insee": "88186" - } - }, - { - "pk": 13737, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRENOIS", - "center": "POINT (881458.5761718440335244 2360795.0590204438194633)", - "surface": 4920000, - "canton": null, - "numero_insee": "88187" - } - }, - { - "pk": 16504, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRESSE-SUR-MOSELLE", - "center": "POINT (934075.7502723061479628 2328624.9045993089675903)", - "surface": 18490000, - "canton": null, - "numero_insee": "88188" - } - }, - { - "pk": 33173, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FREVILLE", - "center": "POINT (843611.5375042747473344 2374679.9426316213794053)", - "surface": 6370000, - "canton": null, - "numero_insee": "88189" - } - }, - { - "pk": 13133, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "FRIZON", - "center": "POINT (897967.7226782356156036 2372746.0728790573775768)", - "surface": 11780000, - "canton": null, - "numero_insee": "88190" - } - }, - { - "pk": 13203, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GELVECOURT-ET-ADOMPT", - "center": "POINT (885545.7766888623591512 2362631.6080827652476728)", - "surface": 3780000, - "canton": null, - "numero_insee": "88192" - } - }, - { - "pk": 34597, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GEMAINGOUTTE", - "center": "POINT (954320.3005134777631611 2371432.2763874595984817)", - "surface": 3910000, - "canton": null, - "numero_insee": "88193" - } - }, - { - "pk": 27826, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GEMMELAINCOURT", - "center": "POINT (869369.6513747081626207 2370097.8694357182830572)", - "surface": 7410000, - "canton": null, - "numero_insee": "88194" - } - }, - { - "pk": 36823, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GENDREVILLE", - "center": "POINT (851000.5565788438543677 2364936.2497095288708806)", - "surface": 8160000, - "canton": null, - "numero_insee": "88195" - } - }, - { - "pk": 19575, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GERARDMER", - "center": "POINT (936889.8100053127855062 2350365.7176874317228794)", - "surface": 55620000, - "canton": null, - "numero_insee": "88196" - } - }, - { - "pk": 10775, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GERBAMONT", - "center": "POINT (930547.8413334556389600 2343105.4038637313060462)", - "surface": 9730000, - "canton": null, - "numero_insee": "88197" - } - }, - { - "pk": 28148, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIGNEVILLE", - "center": "POINT (866623.5795186747564003 2351960.8807307616807520)", - "surface": 5610000, - "canton": null, - "numero_insee": "88199" - } - }, - { - "pk": 14118, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIGNEY", - "center": "POINT (896920.5308933993801475 2366532.4952852292917669)", - "surface": 5110000, - "canton": null, - "numero_insee": "88200" - } - }, - { - "pk": 3855, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIRANCOURT", - "center": "POINT (896800.6895359971094877 2357224.5918357251212001)", - "surface": 17700000, - "canton": null, - "numero_insee": "88201" - } - }, - { - "pk": 20120, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIRCOURT-LES-VIEVILLE", - "center": "POINT (885711.4254469565348700 2378244.4455954846926033)", - "surface": 8730000, - "canton": null, - "numero_insee": "88202" - } - }, - { - "pk": 13277, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIRECOURT-SUR-DURBION", - "center": "POINT (916408.3327165814116597 2369602.9160537440329790)", - "surface": 6910000, - "canton": null, - "numero_insee": "88203" - } - }, - { - "pk": 37795, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIRMONT", - "center": "POINT (905499.4263234281679615 2369708.8186555905267596)", - "surface": 12030000, - "canton": null, - "numero_insee": "88204" - } - }, - { - "pk": 5596, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIRMONT-VAL-D'AJOL", - "center": "POINT (915894.9220909747527912 2336373.6931240973062813)", - "surface": 16710000, - "canton": null, - "numero_insee": "88205" - } - }, - { - "pk": 28824, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GIRONCOURT-SUR-VRAINE", - "center": "POINT (866641.1872407526243478 2373176.6520488099195063)", - "surface": 7440000, - "canton": null, - "numero_insee": "88206" - } - }, - { - "pk": 15466, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GODONCOURT", - "center": "POINT (868334.8673777985386550 2339166.0019639246165752)", - "surface": 11580000, - "canton": null, - "numero_insee": "88208" - } - }, - { - "pk": 16627, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GOLBEY", - "center": "POINT (903851.8700121992733330 2363490.0346469031646848)", - "surface": 9480000, - "canton": null, - "numero_insee": "88209" - } - }, - { - "pk": 33311, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GORHEY", - "center": "POINT (893658.9172619660384953 2361800.8957520211115479)", - "surface": 6340000, - "canton": null, - "numero_insee": "88210" - } - }, - { - "pk": 18134, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GRAND", - "center": "POINT (832643.4853942960035056 2381690.9507393529638648)", - "surface": 36580000, - "canton": null, - "numero_insee": "88212" - } - }, - { - "pk": 11630, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA GRANDE-FOSSE", - "center": "POINT (951327.2813342362642288 2381913.9819378703832626)", - "surface": 6750000, - "canton": null, - "numero_insee": "88213" - } - }, - { - "pk": 32402, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GRANDRUPT-DE-BAINS", - "center": "POINT (886277.2727908920496702 2347426.6106966347433627)", - "surface": 3550000, - "canton": null, - "numero_insee": "88214" - } - }, - { - "pk": 13131, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GRANDRUPT", - "center": "POINT (950002.1424897450488061 2384704.5198430963791907)", - "surface": 6340000, - "canton": null, - "numero_insee": "88215" - } - }, - { - "pk": 16392, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GRANGES-SUR-VOLOGNE", - "center": "POINT (932829.0792423874372616 2357035.5670370929874480)", - "surface": 29840000, - "canton": null, - "numero_insee": "88218" - } - }, - { - "pk": 32697, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GREUX", - "center": "POINT (846584.6445247238734737 2389716.2805648958310485)", - "surface": 8090000, - "canton": null, - "numero_insee": "88219" - } - }, - { - "pk": 35912, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GRIGNONCOURT", - "center": "POINT (866468.8692884296178818 2335046.8444040836766362)", - "surface": 5350000, - "canton": null, - "numero_insee": "88220" - } - }, - { - "pk": 15656, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GRUEY-LES-SURANCE", - "center": "POINT (885705.3274893180932850 2344119.2035479857586324)", - "surface": 27000000, - "canton": null, - "numero_insee": "88221" - } - }, - { - "pk": 14278, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GUGNECOURT", - "center": "POINT (918209.5184381026774645 2369618.4858522713184357)", - "surface": 5130000, - "canton": null, - "numero_insee": "88222" - } - }, - { - "pk": 25764, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "GUGNEY-AUX-AULX", - "center": "POINT (891852.5050918264314532 2373994.2672707559540868)", - "surface": 8680000, - "canton": null, - "numero_insee": "88223" - } - }, - { - "pk": 18116, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HADOL", - "center": "POINT (906766.0610726375598460 2350505.5388292078860104)", - "surface": 49180000, - "canton": null, - "numero_insee": "88225" - } - }, - { - "pk": 6782, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HAGECOURT", - "center": "POINT (883717.8510413556359708 2365718.1371495667845011)", - "surface": 7630000, - "canton": null, - "numero_insee": "88226" - } - }, - { - "pk": 14664, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HAGNEVILLE-ET-RONCOURT", - "center": "POINT (856492.1466120793484151 2366384.4712264165282249)", - "surface": 8560000, - "canton": null, - "numero_insee": "88227" - } - }, - { - "pk": 28037, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HAILLAINVILLE", - "center": "POINT (907666.1158580041956156 2385338.8677567951381207)", - "surface": 12490000, - "canton": null, - "numero_insee": "88228" - } - }, - { - "pk": 30005, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HARCHECHAMP", - "center": "POINT (856439.9568594517186284 2384096.8791575757786632)", - "surface": 7530000, - "canton": null, - "numero_insee": "88229" - } - }, - { - "pk": 26799, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HARDANCOURT", - "center": "POINT (912881.5809176071779802 2383982.9157147658988833)", - "surface": 3320000, - "canton": null, - "numero_insee": "88230" - } - }, - { - "pk": 28607, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HAREVILLE", - "center": "POINT (873438.6152175881434232 2362427.2421082099899650)", - "surface": 6550000, - "canton": null, - "numero_insee": "88231" - } - }, - { - "pk": 37796, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HARMONVILLE", - "center": "POINT (861384.6616639841813594 2390944.2711425665766001)", - "surface": 15200000, - "canton": null, - "numero_insee": "88232" - } - }, - { - "pk": 20510, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HAROL", - "center": "POINT (890901.0641784409526736 2356673.3351999507285655)", - "surface": 27290000, - "canton": null, - "numero_insee": "88233" - } - }, - { - "pk": 12787, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HAUTMOUGEY", - "center": "POINT (890713.8935677167028189 2343561.9272191165946424)", - "surface": 7900000, - "canton": null, - "numero_insee": "88235" - } - }, - { - "pk": 12101, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA HAYE", - "center": "POINT (888179.4183369372040033 2347342.9315114738419652)", - "surface": 7380000, - "canton": null, - "numero_insee": "88236" - } - }, - { - "pk": 27460, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HENNECOURT", - "center": "POINT (893738.2690987684763968 2364203.3504860736429691)", - "surface": 7190000, - "canton": null, - "numero_insee": "88237" - } - }, - { - "pk": 28609, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HENNEZEL", - "center": "POINT (881386.8958171892445534 2345883.3455956075340509)", - "surface": 32050000, - "canton": null, - "numero_insee": "88238" - } - }, - { - "pk": 26803, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HERGUGNEY", - "center": "POINT (886763.8350307061336935 2383857.5664823348633945)", - "surface": 5480000, - "canton": null, - "numero_insee": "88239" - } - }, - { - "pk": 25658, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HERPELMONT", - "center": "POINT (926892.2345138823147863 2360787.0135966488160193)", - "surface": 5650000, - "canton": null, - "numero_insee": "88240" - } - }, - { - "pk": 20998, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HOUECOURT", - "center": "POINT (864550.1431880308082327 2371957.7871545399539173)", - "surface": 9910000, - "canton": null, - "numero_insee": "88241" - } - }, - { - "pk": 26919, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HOUEVILLE", - "center": "POINT (856973.8295072522014380 2380198.6572088748216629)", - "surface": 3210000, - "canton": null, - "numero_insee": "88242" - } - }, - { - "pk": 22106, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HOUSSERAS", - "center": "POINT (926153.3245294692460448 2376792.3749883100390434)", - "surface": 19600000, - "canton": null, - "numero_insee": "88243" - } - }, - { - "pk": 19162, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA HOUSSIERE", - "center": "POINT (936155.1072023587767035 2365870.8808837765827775)", - "surface": 19730000, - "canton": null, - "numero_insee": "88244" - } - }, - { - "pk": 20829, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HURBACHE", - "center": "POINT (940420.1951320420484990 2381819.4471571021713316)", - "surface": 9970000, - "canton": null, - "numero_insee": "88245" - } - }, - { - "pk": 31424, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "HYMONT", - "center": "POINT (882084.0302652288228273 2369506.8458826472051442)", - "surface": 4210000, - "canton": null, - "numero_insee": "88246" - } - }, - { - "pk": 24236, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "IGNEY", - "center": "POINT (900777.3316973699256778 2371869.6627382952719927)", - "surface": 7810000, - "canton": null, - "numero_insee": "88247" - } - }, - { - "pk": 23487, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ISCHES", - "center": "POINT (859811.8708291451912373 2341094.2029449082911015)", - "surface": 13530000, - "canton": null, - "numero_insee": "88248" - } - }, - { - "pk": 17068, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JAINVILLOTTE", - "center": "POINT (849877.4791530381189659 2367528.5074221924878657)", - "surface": 7420000, - "canton": null, - "numero_insee": "88249" - } - }, - { - "pk": 12779, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JARMENIL", - "center": "POINT (916837.4034989282954484 2354695.6079981224611402)", - "surface": 5220000, - "canton": null, - "numero_insee": "88250" - } - }, - { - "pk": 3458, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JEANMENIL", - "center": "POINT (924731.6352832012344152 2379181.8215509634464979)", - "surface": 18300000, - "canton": null, - "numero_insee": "88251" - } - }, - { - "pk": 25290, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JESONVILLE", - "center": "POINT (881115.2084055417217314 2354187.2074569151736796)", - "surface": 6990000, - "canton": null, - "numero_insee": "88252" - } - }, - { - "pk": 12496, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JEUXEY", - "center": "POINT (908652.4603683282621205 2363831.7101622526533902)", - "surface": 8550000, - "canton": null, - "numero_insee": "88253" - } - }, - { - "pk": 33939, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JORXEY", - "center": "POINT (889148.1499103987589478 2374271.1656405264511704)", - "surface": 5430000, - "canton": null, - "numero_insee": "88254" - } - }, - { - "pk": 27630, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JUBAINVILLE", - "center": "POINT (852388.3607318820431828 2389766.1421873797662556)", - "surface": 4300000, - "canton": null, - "numero_insee": "88255" - } - }, - { - "pk": 11192, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JUSSARUPT", - "center": "POINT (928200.8927211947739124 2359897.6687317164614797)", - "surface": 6610000, - "canton": null, - "numero_insee": "88256" - } - }, - { - "pk": 29192, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "JUVAINCOURT", - "center": "POINT (876217.3080103215761483 2376761.6302382568828762)", - "surface": 8950000, - "canton": null, - "numero_insee": "88257" - } - }, - { - "pk": 27035, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LANDAVILLE", - "center": "POINT (853055.5083327190950513 2370357.8608939661644399)", - "surface": 13190000, - "canton": null, - "numero_insee": "88259" - } - }, - { - "pk": 9691, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LANGLEY", - "center": "POINT (895995.6838612959254533 2380935.0174445486627519)", - "surface": 2700000, - "canton": null, - "numero_insee": "88260" - } - }, - { - "pk": 33800, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LAVAL-SUR-VOLOGNE", - "center": "POINT (923660.6774999966146424 2364161.5745225632563233)", - "surface": 3690000, - "canton": null, - "numero_insee": "88261" - } - }, - { - "pk": 22676, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LAVELINE-DEVANT-BRUYERES", - "center": "POINT (928672.6528091845102608 2363204.1941076712682843)", - "surface": 3110000, - "canton": null, - "numero_insee": "88262" - } - }, - { - "pk": 32602, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LAVELINE-DU-HOUX", - "center": "POINT (925216.2039726497605443 2357870.3628709823824465)", - "surface": 8350000, - "canton": null, - "numero_insee": "88263" - } - }, - { - "pk": 13605, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LEGEVILLE-ET-BONFAYS", - "center": "POINT (883658.3135672044008970 2361014.1607079729437828)", - "surface": 5210000, - "canton": null, - "numero_insee": "88264" - } - }, - { - "pk": 24438, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LEMMECOURT", - "center": "POINT (852073.7685169423930347 2368147.8166599646210670)", - "surface": 1850000, - "canton": null, - "numero_insee": "88265" - } - }, - { - "pk": 13169, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LEPANGES-SUR-VOLOGNE", - "center": "POINT (921876.7901972001418471 2362144.6692946976982057)", - "surface": 7640000, - "canton": null, - "numero_insee": "88266" - } - }, - { - "pk": 27048, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LERRAIN", - "center": "POINT (883308.9215229894034564 2355106.7777000945061445)", - "surface": 12670000, - "canton": null, - "numero_insee": "88267" - } - }, - { - "pk": 5345, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LESSEUX", - "center": "POINT (952284.2725487872958183 2375417.5478595751337707)", - "surface": 2940000, - "canton": null, - "numero_insee": "88268" - } - }, - { - "pk": 37069, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LIGNEVILLE", - "center": "POINT (868975.2445067393127829 2357785.4247118839994073)", - "surface": 12550000, - "canton": null, - "numero_insee": "88271" - } - }, - { - "pk": 6899, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LIRONCOURT", - "center": "POINT (864257.8960082780104131 2336128.6593234254978597)", - "surface": 4830000, - "canton": null, - "numero_insee": "88272" - } - }, - { - "pk": 36315, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LONGCHAMP", - "center": "POINT (911136.8282248033210635 2365854.6443606722168624)", - "surface": 10390000, - "canton": null, - "numero_insee": "88273" - } - }, - { - "pk": 35783, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LONGCHAMP-SOUS-CHATENOIS", - "center": "POINT (859554.6112588499672711 2371014.1657177824527025)", - "surface": 4950000, - "canton": null, - "numero_insee": "88274" - } - }, - { - "pk": 32714, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LUBINE", - "center": "POINT (958051.6087543243775144 2379670.6388330166228116)", - "surface": 14850000, - "canton": null, - "numero_insee": "88275" - } - }, - { - "pk": 3869, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LUSSE", - "center": "POINT (955378.4924590091686696 2376345.0423184232786298)", - "surface": 19400000, - "canton": null, - "numero_insee": "88276" - } - }, - { - "pk": 10334, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LUVIGNY", - "center": "POINT (950175.6559986630454659 2399316.4999100361019373)", - "surface": 3980000, - "canton": null, - "numero_insee": "88277" - } - }, - { - "pk": 30006, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MACONCOURT", - "center": "POINT (866884.5557135405251756 2379783.5364470570348203)", - "surface": 4890000, - "canton": null, - "numero_insee": "88278" - } - }, - { - "pk": 12237, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MADECOURT", - "center": "POINT (880607.1821665614843369 2366692.0691639818251133)", - "surface": 4440000, - "canton": null, - "numero_insee": "88279" - } - }, - { - "pk": 22383, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MADEGNEY", - "center": "POINT (893166.3022604190045968 2372504.5042403428815305)", - "surface": 3050000, - "canton": null, - "numero_insee": "88280" - } - }, - { - "pk": 30427, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MADONNE-ET-LAMEREY", - "center": "POINT (890122.9428762954194099 2365673.2759689972735941)", - "surface": 7010000, - "canton": null, - "numero_insee": "88281" - } - }, - { - "pk": 30125, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MALAINCOURT", - "center": "POINT (854812.5266404157737270 2363868.1984508875757456)", - "surface": 6000000, - "canton": null, - "numero_insee": "88283" - } - }, - { - "pk": 31317, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MANDRAY", - "center": "POINT (946649.0544058564119041 2367462.8961763721890748)", - "surface": 12480000, - "canton": null, - "numero_insee": "88284" - } - }, - { - "pk": 31968, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MANDRES-SUR-VAIR", - "center": "POINT (863618.3472179129021242 2363943.9122549025341868)", - "surface": 12000000, - "canton": null, - "numero_insee": "88285" - } - }, - { - "pk": 7185, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MARAINVILLE-SUR-MADON", - "center": "POINT (883256.3985179564915597 2384427.7673074803315103)", - "surface": 4930000, - "canton": null, - "numero_insee": "88286" - } - }, - { - "pk": 14947, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MAREY", - "center": "POINT (865832.5122664174996316 2350853.2548598949797451)", - "surface": 7900000, - "canton": null, - "numero_insee": "88287" - } - }, - { - "pk": 7958, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MARONCOURT", - "center": "POINT (884100.8681648975471035 2367722.9063960025086999)", - "surface": 2260000, - "canton": null, - "numero_insee": "88288" - } - }, - { - "pk": 17929, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MARTIGNY-LES-BAINS", - "center": "POINT (859122.8489178935997188 2351395.9971975558437407)", - "surface": 29210000, - "canton": null, - "numero_insee": "88289" - } - }, - { - "pk": 37178, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MARTIGNY-LES-GERBONVAUX", - "center": "POINT (855699.9373383304337040 2388693.8182167513296008)", - "surface": 8910000, - "canton": null, - "numero_insee": "88290" - } - }, - { - "pk": 18523, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MARTINVELLE", - "center": "POINT (873842.9214819725602865 2338713.0299878958612680)", - "surface": 24950000, - "canton": null, - "numero_insee": "88291" - } - }, - { - "pk": 37830, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MATTAINCOURT", - "center": "POINT (881370.6376127388793975 2371001.7962417239323258)", - "surface": 6980000, - "canton": null, - "numero_insee": "88292" - } - }, - { - "pk": 35271, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MAXEY-SUR-MEUSE", - "center": "POINT (849996.2798531778389588 2388644.8012428255751729)", - "surface": 10910000, - "canton": null, - "numero_insee": "88293" - } - }, - { - "pk": 11644, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MAZELEY", - "center": "POINT (897504.5222279205918312 2368438.9291859935037792)", - "surface": 10580000, - "canton": null, - "numero_insee": "88294" - } - }, - { - "pk": 36025, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MAZIROT", - "center": "POINT (883229.6317009632475674 2375921.3860782464034855)", - "surface": 6580000, - "canton": null, - "numero_insee": "88295" - } - }, - { - "pk": 29874, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MEDONVILLE", - "center": "POINT (852420.3977843939792365 2362746.8319309842772782)", - "surface": 7310000, - "canton": null, - "numero_insee": "88296" - } - }, - { - "pk": 33300, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MEMENIL", - "center": "POINT (917946.5171156338183209 2365313.0506887640804052)", - "surface": 9150000, - "canton": null, - "numero_insee": "88297" - } - }, - { - "pk": 28705, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MENARMONT", - "center": "POINT (919045.7956002554856241 2388639.5113675845786929)", - "surface": 5230000, - "canton": null, - "numero_insee": "88298" - } - }, - { - "pk": 37799, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MENIL-EN-XAINTOIS", - "center": "POINT (869742.3544635021826252 2373303.4121811510995030)", - "surface": 4260000, - "canton": null, - "numero_insee": "88299" - } - }, - { - "pk": 8921, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MENIL-SUR-BELVITTE", - "center": "POINT (922780.2004789309576154 2384969.1411970998160541)", - "surface": 8590000, - "canton": null, - "numero_insee": "88301" - } - }, - { - "pk": 3103, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE MENIL", - "center": "POINT (934635.4531268572900444 2333333.3436465077102184)", - "surface": 20310000, - "canton": null, - "numero_insee": "88302" - } - }, - { - "pk": 23614, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MIDREVAUX", - "center": "POINT (840550.3126648382749408 2381558.6540066078305244)", - "surface": 14290000, - "canton": null, - "numero_insee": "88303" - } - }, - { - "pk": 31964, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MIRECOURT", - "center": "POINT (880654.6602705570403486 2372796.9417067584581673)", - "surface": 12180000, - "canton": null, - "numero_insee": "88304" - } - }, - { - "pk": 27801, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MONCEL-SUR-VAIR", - "center": "POINT (849218.9772514165379107 2385936.1884858305566013)", - "surface": 7300000, - "canton": null, - "numero_insee": "88305" - } - }, - { - "pk": 35294, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE MONT", - "center": "POINT (946860.2337530337972566 2389280.5993068115785718)", - "surface": 3950000, - "canton": null, - "numero_insee": "88306" - } - }, - { - "pk": 4601, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MONT-LES-LAMARCHE", - "center": "POINT (857805.3507529180496931 2341677.4046315238811076)", - "surface": 7070000, - "canton": null, - "numero_insee": "88307" - } - }, - { - "pk": 26543, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MONT-LES-NEUFCHATEAU", - "center": "POINT (844985.8129460216732696 2377793.9910167548805475)", - "surface": 11490000, - "canton": null, - "numero_insee": "88308" - } - }, - { - "pk": 14019, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MONTHUREUX-LE-SEC", - "center": "POINT (874573.8079371461644769 2358434.0606348291039467)", - "surface": 11410000, - "canton": null, - "numero_insee": "88309" - } - }, - { - "pk": 29416, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MONTHUREUX-SUR-SAONE", - "center": "POINT (870706.3593089380301535 2342689.0485798669978976)", - "surface": 19330000, - "canton": null, - "numero_insee": "88310" - } - }, - { - "pk": 8464, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MONTMOTIER", - "center": "POINT (886257.4132020445540547 2338119.4346426110714674)", - "surface": 4270000, - "canton": null, - "numero_insee": "88311" - } - }, - { - "pk": 27436, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MORELMAISON", - "center": "POINT (865423.1840063822455704 2375167.6276843445375562)", - "surface": 5510000, - "canton": null, - "numero_insee": "88312" - } - }, - { - "pk": 4679, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MORIVILLE", - "center": "POINT (902409.3407211652956903 2379889.5729163414798677)", - "surface": 25470000, - "canton": null, - "numero_insee": "88313" - } - }, - { - "pk": 16548, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MORTAGNE", - "center": "POINT (930887.5746042528189719 2373230.7143908413127065)", - "surface": 22160000, - "canton": null, - "numero_insee": "88315" - } - }, - { - "pk": 8852, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MORVILLE", - "center": "POINT (856803.5270108632976189 2365086.1938704801723361)", - "surface": 3400000, - "canton": null, - "numero_insee": "88316" - } - }, - { - "pk": 3496, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MOUSSEY", - "center": "POINT (949423.7340535921975970 2393705.9819753305055201)", - "surface": 29190000, - "canton": null, - "numero_insee": "88317" - } - }, - { - "pk": 30359, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MOYEMONT", - "center": "POINT (911814.5882620594929904 2380070.8744886144995689)", - "surface": 12330000, - "canton": null, - "numero_insee": "88318" - } - }, - { - "pk": 5021, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "MOYENMOUTIER", - "center": "POINT (939182.1440349054755643 2386111.8327273093163967)", - "surface": 34390000, - "canton": null, - "numero_insee": "88319" - } - }, - { - "pk": 33582, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NAYEMONT-LES-FOSSES", - "center": "POINT (946468.3289993198122829 2376768.1469719074666500)", - "surface": 8820000, - "canton": null, - "numero_insee": "88320" - } - }, - { - "pk": 18681, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NEUFCHATEAU", - "center": "POINT (848583.8554317820817232 2378325.2557802866213024)", - "surface": 23870000, - "canton": null, - "numero_insee": "88321" - } - }, - { - "pk": 32167, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA NEUVEVILLE-DEVANT-LEPANGES", - "center": "POINT (922001.0858289944007993 2359343.6700616786256433)", - "surface": 8820000, - "canton": null, - "numero_insee": "88322" - } - }, - { - "pk": 10722, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA NEUVEVILLE-SOUS-CHATENOIS", - "center": "POINT (862255.5214109319495037 2371137.4658058104105294)", - "surface": 7470000, - "canton": null, - "numero_insee": "88324" - } - }, - { - "pk": 27084, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA NEUVEVILLE-SOUS-MONTFORT", - "center": "POINT (873414.4930504126241431 2365229.0954559873789549)", - "surface": 10380000, - "canton": null, - "numero_insee": "88325" - } - }, - { - "pk": 12028, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NEUVILLERS-SUR-FAVE", - "center": "POINT (948480.9145647017285228 2375484.6437360700219870)", - "surface": 5010000, - "canton": null, - "numero_insee": "88326" - } - }, - { - "pk": 36935, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NOMEXY", - "center": "POINT (899247.8491190047934651 2375158.8699744585901499)", - "surface": 8160000, - "canton": null, - "numero_insee": "88327" - } - }, - { - "pk": 37645, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NOMPATELIZE", - "center": "POINT (934934.8158131917007267 2379670.4155383668839931)", - "surface": 6920000, - "canton": null, - "numero_insee": "88328" - } - }, - { - "pk": 7725, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NONVILLE", - "center": "POINT (871546.6782911166083068 2349701.5302329454571009)", - "surface": 8970000, - "canton": null, - "numero_insee": "88330" - } - }, - { - "pk": 35295, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NONZEVILLE", - "center": "POINT (918892.6772104230476543 2371625.8574826000258327)", - "surface": 1620000, - "canton": null, - "numero_insee": "88331" - } - }, - { - "pk": 26024, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NORROY", - "center": "POINT (866126.0275856028310955 2363264.9697123533114791)", - "surface": 7260000, - "canton": null, - "numero_insee": "88332" - } - }, - { - "pk": 8359, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "NOSSONCOURT", - "center": "POINT (920864.2610594681464136 2386653.7969136815518141)", - "surface": 5370000, - "canton": null, - "numero_insee": "88333" - } - }, - { - "pk": 36937, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "OELLEVILLE", - "center": "POINT (873112.7031300850212574 2377035.1148240924812853)", - "surface": 10150000, - "canton": null, - "numero_insee": "88334" - } - }, - { - "pk": 34262, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "OFFROICOURT", - "center": "POINT (874064.1229132438311353 2371139.0112857632339001)", - "surface": 9300000, - "canton": null, - "numero_insee": "88335" - } - }, - { - "pk": 33703, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "OLLAINVILLE", - "center": "POINT (857370.3735858375439420 2368993.9249888388440013)", - "surface": 6320000, - "canton": null, - "numero_insee": "88336" - } - }, - { - "pk": 31422, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ONCOURT", - "center": "POINT (900101.0539258936187252 2369061.7761080614291131)", - "surface": 4080000, - "canton": null, - "numero_insee": "88337" - } - }, - { - "pk": 35296, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ORTONCOURT", - "center": "POINT (909091.2230988696683198 2382549.1564957490190864)", - "surface": 4370000, - "canton": null, - "numero_insee": "88338" - } - }, - { - "pk": 17689, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PADOUX", - "center": "POINT (913770.3020045591983944 2373783.1902449135668576)", - "surface": 19260000, - "canton": null, - "numero_insee": "88340" - } - }, - { - "pk": 12566, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PAIR-ET-GRANDRUPT", - "center": "POINT (946785.8720362616004422 2374769.4389968337491155)", - "surface": 4640000, - "canton": null, - "numero_insee": "88341" - } - }, - { - "pk": 34941, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PALLEGNEY", - "center": "POINT (904865.3348110819933936 2373606.1956388060934842)", - "surface": 6110000, - "canton": null, - "numero_insee": "88342" - } - }, - { - "pk": 14194, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PAREY-SOUS-MONTFORT", - "center": "POINT (867891.9153832490555942 2367383.1760079278610647)", - "surface": 7000000, - "canton": null, - "numero_insee": "88343" - } - }, - { - "pk": 10375, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PARGNY-SOUS-MUREAU", - "center": "POINT (840973.7640115614049137 2378860.3400696245953441)", - "surface": 17820000, - "canton": null, - "numero_insee": "88344" - } - }, - { - "pk": 7421, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA PETITE-FOSSE", - "center": "POINT (949445.9999355226755142 2379595.9989732732065022)", - "surface": 5030000, - "canton": null, - "numero_insee": "88345" - } - }, - { - "pk": 34698, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA PETITE-RAON", - "center": "POINT (944550.0798092051409185 2390261.2950618858449161)", - "surface": 8890000, - "canton": null, - "numero_insee": "88346" - } - }, - { - "pk": 3605, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PIERREFITTE", - "center": "POINT (885380.1415809057652950 2358627.2240153187885880)", - "surface": 8830000, - "canton": null, - "numero_insee": "88347" - } - }, - { - "pk": 34602, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PIERREPONT-SUR-L'ARENTELE", - "center": "POINT (920894.8569439228158444 2371543.0957520129159093)", - "surface": 6300000, - "canton": null, - "numero_insee": "88348" - } - }, - { - "pk": 19983, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PLAINFAING", - "center": "POINT (949618.6389588024467230 2359682.8663647971116006)", - "surface": 38580000, - "canton": null, - "numero_insee": "88349" - } - }, - { - "pk": 10838, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PLEUVEZAIN", - "center": "POINT (865070.4739813236519694 2381269.0118232578970492)", - "surface": 3770000, - "canton": null, - "numero_insee": "88350" - } - }, - { - "pk": 18226, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PLOMBIERES-LES-BAINS", - "center": "POINT (905373.0456548989750445 2337984.0991294649429619)", - "surface": 27260000, - "canton": null, - "numero_insee": "88351" - } - }, - { - "pk": 11618, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "POMPIERRE", - "center": "POINT (847861.5510551270563155 2369212.4338481090962887)", - "surface": 12610000, - "canton": null, - "numero_insee": "88352" - } - }, - { - "pk": 22621, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PONT-LES-BONFAYS", - "center": "POINT (882976.8179187331115827 2358806.6611357396468520)", - "surface": 4480000, - "canton": null, - "numero_insee": "88353" - } - }, - { - "pk": 31425, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PONT-SUR-MADON", - "center": "POINT (882581.8149683772353455 2381419.7898257342167199)", - "surface": 3450000, - "canton": null, - "numero_insee": "88354" - } - }, - { - "pk": 30579, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PORTIEUX", - "center": "POINT (897808.0774992015212774 2379649.7143509164452553)", - "surface": 7920000, - "canton": null, - "numero_insee": "88355" - } - }, - { - "pk": 13597, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LES POULIERES", - "center": "POINT (930555.7285030985949561 2365322.0401532030664384)", - "surface": 3030000, - "canton": null, - "numero_insee": "88356" - } - }, - { - "pk": 25199, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "POUSSAY", - "center": "POINT (880527.0075892498716712 2375998.1716742226853967)", - "surface": 8810000, - "canton": null, - "numero_insee": "88357" - } - }, - { - "pk": 8330, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "POUXEUX", - "center": "POINT (914755.8843636200763285 2352375.9027494685724378)", - "surface": 14360000, - "canton": null, - "numero_insee": "88358" - } - }, - { - "pk": 28599, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PREY", - "center": "POINT (923579.6512905998388305 2361959.2479365989565849)", - "surface": 2110000, - "canton": null, - "numero_insee": "88359" - } - }, - { - "pk": 28381, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PROVENCHERES-LES-DARNEY", - "center": "POINT (869914.5985512009356171 2353290.1677153566852212)", - "surface": 9070000, - "canton": null, - "numero_insee": "88360" - } - }, - { - "pk": 35052, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PROVENCHERES-SUR-FAVE", - "center": "POINT (951652.6409459342248738 2379014.6958952741697431)", - "surface": 7330000, - "canton": null, - "numero_insee": "88361" - } - }, - { - "pk": 36478, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE PUID", - "center": "POINT (948076.6217547443229705 2387489.8475670805200934)", - "surface": 5380000, - "canton": null, - "numero_insee": "88362" - } - }, - { - "pk": 37647, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PUNEROT", - "center": "POINT (857071.5859806623775512 2392108.0388432955369353)", - "surface": 13820000, - "canton": null, - "numero_insee": "88363" - } - }, - { - "pk": 29255, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "PUZIEUX", - "center": "POINT (878914.7579301585210487 2377285.2265789108350873)", - "surface": 5420000, - "canton": null, - "numero_insee": "88364" - } - }, - { - "pk": 10336, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RACECOURT", - "center": "POINT (886589.5776766319759190 2369245.4558027181774378)", - "surface": 7180000, - "canton": null, - "numero_insee": "88365" - } - }, - { - "pk": 36938, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAINVILLE", - "center": "POINT (863189.0401534421835095 2378951.1641144817695022)", - "surface": 8670000, - "canton": null, - "numero_insee": "88366" - } - }, - { - "pk": 14909, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAMBERVILLERS", - "center": "POINT (918215.2902057308238000 2380526.4846553257666528)", - "surface": 20680000, - "canton": null, - "numero_insee": "88367" - } - }, - { - "pk": 32065, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAMECOURT", - "center": "POINT (878939.7552364605944604 2374383.3340800506994128)", - "surface": 3220000, - "canton": null, - "numero_insee": "88368" - } - }, - { - "pk": 23674, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAMONCHAMP", - "center": "POINT (929151.5831653127679601 2330984.1293886955827475)", - "surface": 15460000, - "canton": null, - "numero_insee": "88369" - } - }, - { - "pk": 8461, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RANCOURT", - "center": "POINT (880225.0212251888588071 2364587.2334701744839549)", - "surface": 5560000, - "canton": null, - "numero_insee": "88370" - } - }, - { - "pk": 37537, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAON-AUX-BOIS", - "center": "POINT (911291.5673300990602002 2347942.6769941546954215)", - "surface": 23870000, - "canton": null, - "numero_insee": "88371" - } - }, - { - "pk": 15553, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAON-L'ETAPE", - "center": "POINT (934759.3717991258017719 2388375.1867036740295589)", - "surface": 23720000, - "canton": null, - "numero_insee": "88372" - } - }, - { - "pk": 31842, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAON-SUR-PLAINE", - "center": "POINT (952567.6367636839859188 2400438.0267626098357141)", - "surface": 3480000, - "canton": null, - "numero_insee": "88373" - } - }, - { - "pk": 19547, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAPEY", - "center": "POINT (890335.1288440069183707 2375882.5652132388204336)", - "surface": 2930000, - "canton": null, - "numero_insee": "88374" - } - }, - { - "pk": 8792, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RAVES", - "center": "POINT (949304.8621347786393017 2372789.8115727496333420)", - "surface": 4020000, - "canton": null, - "numero_insee": "88375" - } - }, - { - "pk": 31198, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REBEUVILLE", - "center": "POINT (850703.2746185348369181 2376241.9424055023118854)", - "surface": 8720000, - "canton": null, - "numero_insee": "88376" - } - }, - { - "pk": 32838, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REGNEVELLE", - "center": "POINT (870944.3896379533689469 2338287.7780692204833031)", - "surface": 8580000, - "canton": null, - "numero_insee": "88377" - } - }, - { - "pk": 37797, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REGNEY", - "center": "POINT (894565.4937752145342529 2372716.7194176339544356)", - "surface": 3820000, - "canton": null, - "numero_insee": "88378" - } - }, - { - "pk": 26361, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REHAINCOURT", - "center": "POINT (906197.1207506265491247 2381623.5090249362401664)", - "surface": 15530000, - "canton": null, - "numero_insee": "88379" - } - }, - { - "pk": 8731, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REHAUPAL", - "center": "POINT (927836.1228196332231164 2355791.4650569790974259)", - "surface": 4770000, - "canton": null, - "numero_insee": "88380" - } - }, - { - "pk": 32749, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RELANGES", - "center": "POINT (873926.7557692481204867 2352223.8842580332420766)", - "surface": 13840000, - "canton": null, - "numero_insee": "88381" - } - }, - { - "pk": 14196, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REMICOURT", - "center": "POINT (876463.1123974291840568 2371459.8882510960102081)", - "surface": 4280000, - "canton": null, - "numero_insee": "88382" - } - }, - { - "pk": 18833, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REMIREMONT", - "center": "POINT (916546.1064723567105830 2342083.6377728502266109)", - "surface": 17180000, - "canton": null, - "numero_insee": "88383" - } - }, - { - "pk": 28303, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REMONCOURT", - "center": "POINT (876120.5858587337424979 2364752.0285467468202114)", - "surface": 14610000, - "canton": null, - "numero_insee": "88385" - } - }, - { - "pk": 34139, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REMOMEIX", - "center": "POINT (946801.4840334949549288 2372968.2573225800879300)", - "surface": 4630000, - "canton": null, - "numero_insee": "88386" - } - }, - { - "pk": 37177, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REMOVILLE", - "center": "POINT (859978.3565242059994489 2379924.2737021544016898)", - "surface": 7550000, - "canton": null, - "numero_insee": "88387" - } - }, - { - "pk": 30466, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RENAUVOID", - "center": "POINT (900906.0187522680498660 2356959.7945489711128175)", - "surface": 9370000, - "canton": null, - "numero_insee": "88388" - } - }, - { - "pk": 8210, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "REPEL", - "center": "POINT (870002.9322832722682506 2377908.9974591345526278)", - "surface": 3490000, - "canton": null, - "numero_insee": "88389" - } - }, - { - "pk": 10149, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROBECOURT", - "center": "POINT (850994.2000141360331327 2354028.1445289598777890)", - "surface": 8750000, - "canton": null, - "numero_insee": "88390" - } - }, - { - "pk": 10730, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROCHESSON", - "center": "POINT (934633.3046933101722971 2345142.2727679391391575)", - "surface": 21460000, - "canton": null, - "numero_insee": "88391" - } - }, - { - "pk": 35369, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROLLAINVILLE", - "center": "POINT (852186.1946470623370260 2378356.2058638157323003)", - "surface": 8070000, - "canton": null, - "numero_insee": "88393" - } - }, - { - "pk": 37542, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROMAIN-AUX-BOIS", - "center": "POINT (851652.2046928668860346 2347328.8026937060058117)", - "surface": 8090000, - "canton": null, - "numero_insee": "88394" - } - }, - { - "pk": 21890, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROMONT", - "center": "POINT (914513.7496917673852295 2380394.4164068647660315)", - "surface": 19400000, - "canton": null, - "numero_insee": "88395" - } - }, - { - "pk": 23803, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LES ROUGES-EAUX", - "center": "POINT (932796.6177617158973590 2372346.5801106467843056)", - "surface": 5990000, - "canton": null, - "numero_insee": "88398" - } - }, - { - "pk": 25629, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE ROULIER", - "center": "POINT (918081.1843892777105793 2361311.2607153863646090)", - "surface": 5690000, - "canton": null, - "numero_insee": "88399" - } - }, - { - "pk": 22023, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROUVRES-EN-XAINTOIS", - "center": "POINT (873342.1254973318427801 2373634.6183102508075535)", - "surface": 11090000, - "canton": null, - "numero_insee": "88400" - } - }, - { - "pk": 29776, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROUVRES-LA-CHETIVE", - "center": "POINT (855135.3842364214360714 2372877.5589464432559907)", - "surface": 11360000, - "canton": null, - "numero_insee": "88401" - } - }, - { - "pk": 4675, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROVILLE-AUX-CHENES", - "center": "POINT (916580.5158804905368015 2384415.1735025350935757)", - "surface": 8680000, - "canton": null, - "numero_insee": "88402" - } - }, - { - "pk": 11226, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROZEROTTE", - "center": "POINT (878406.5924779670313001 2366573.0393054960295558)", - "surface": 6390000, - "canton": null, - "numero_insee": "88403" - } - }, - { - "pk": 24493, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ROZIERES-SUR-MOUZON", - "center": "POINT (851915.4368004652205855 2351634.2742639244534075)", - "surface": 4770000, - "canton": null, - "numero_insee": "88404" - } - }, - { - "pk": 19749, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RUGNEY", - "center": "POINT (890205.7258157457690686 2379283.9176095556467772)", - "surface": 5760000, - "canton": null, - "numero_insee": "88406" - } - }, - { - "pk": 13800, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RUPPES", - "center": "POINT (853980.7855928522767499 2390780.5422534705139697)", - "surface": 7550000, - "canton": null, - "numero_insee": "88407" - } - }, - { - "pk": 37682, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "RUPT-SUR-MOSELLE", - "center": "POINT (923113.6989829367958009 2334834.8792182318866253)", - "surface": 45760000, - "canton": null, - "numero_insee": "88408" - } - }, - { - "pk": 34934, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-AME", - "center": "POINT (921726.2832527027931064 2344830.4543505022302270)", - "surface": 8040000, - "canton": null, - "numero_insee": "88409" - } - }, - { - "pk": 10968, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-BENOIT-LA-CHIPOTTE", - "center": "POINT (926907.9606571726035327 2382102.7529549873434007)", - "surface": 20680000, - "canton": null, - "numero_insee": "88412" - } - }, - { - "pk": 14960, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-DIE-DES-VOSGES", - "center": "POINT (941268.3954111984930933 2376322.7954287957400084)", - "surface": 46210000, - "canton": null, - "numero_insee": "88413" - } - }, - { - "pk": 23195, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-ETIENNE-LES-REMIREMONT", - "center": "POINT (919604.0965374556835741 2347213.9116766955703497)", - "surface": 33790000, - "canton": null, - "numero_insee": "88415" - } - }, - { - "pk": 7310, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-GENEST", - "center": "POINT (909312.9626588565297425 2380049.2621889272704720)", - "surface": 6240000, - "canton": null, - "numero_insee": "88416" - } - }, - { - "pk": 9550, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-GORGON", - "center": "POINT (920039.8219217491568998 2377840.2992657134309411)", - "surface": 5790000, - "canton": null, - "numero_insee": "88417" - } - }, - { - "pk": 17011, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINTE-HELENE", - "center": "POINT (920668.7674517286941409 2374543.3336974284611642)", - "surface": 17050000, - "canton": null, - "numero_insee": "88418" - } - }, - { - "pk": 22543, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-JEAN-D'ORMONT", - "center": "POINT (944736.8653191467747092 2380255.6882999148219824)", - "surface": 5240000, - "canton": null, - "numero_insee": "88419" - } - }, - { - "pk": 16659, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-LEONARD", - "center": "POINT (940346.6210792069323361 2367208.1398866246454418)", - "surface": 14450000, - "canton": null, - "numero_insee": "88423" - } - }, - { - "pk": 27022, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINTE-MARGUERITE", - "center": "POINT (944097.1084185378858820 2373245.0393900033086538)", - "surface": 5630000, - "canton": null, - "numero_insee": "88424" - } - }, - { - "pk": 31889, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-MAURICE-SUR-MORTAGNE", - "center": "POINT (913669.9921371529344469 2385390.7388652758672833)", - "surface": 6880000, - "canton": null, - "numero_insee": "88425" - } - }, - { - "pk": 14995, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-MAURICE-SUR-MOSELLE", - "center": "POINT (938001.8421631650999188 2325956.8203241978771985)", - "surface": 36450000, - "canton": null, - "numero_insee": "88426" - } - }, - { - "pk": 34375, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-MENGE", - "center": "POINT (868155.0854373661568388 2371688.5854545147158206)", - "surface": 6700000, - "canton": null, - "numero_insee": "88427" - } - }, - { - "pk": 5801, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-MICHEL-SUR-MEURTHE", - "center": "POINT (936552.3224334137048572 2377783.0399718363769352)", - "surface": 15420000, - "canton": null, - "numero_insee": "88428" - } - }, - { - "pk": 21853, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-NABORD", - "center": "POINT (914512.7525588655844331 2345768.8546234248206019)", - "surface": 38140000, - "canton": null, - "numero_insee": "88429" - } - }, - { - "pk": 17669, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-OUEN-LES-PAREY", - "center": "POINT (855961.4207299022236839 2358273.9432028080336750)", - "surface": 21330000, - "canton": null, - "numero_insee": "88430" - } - }, - { - "pk": 10148, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-PAUL", - "center": "POINT (863113.0756004442228004 2376148.4812195422127843)", - "surface": 4920000, - "canton": null, - "numero_insee": "88431" - } - }, - { - "pk": 12705, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-PIERREMONT", - "center": "POINT (914124.4806186644127592 2390698.4762744060717523)", - "surface": 5490000, - "canton": null, - "numero_insee": "88432" - } - }, - { - "pk": 12993, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-PRANCHER", - "center": "POINT (867700.5747230418492109 2377989.2552655241452157)", - "surface": 4440000, - "canton": null, - "numero_insee": "88433" - } - }, - { - "pk": 26659, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-REMIMONT", - "center": "POINT (865499.8037979556247592 2366261.7871294850483537)", - "surface": 4560000, - "canton": null, - "numero_insee": "88434" - } - }, - { - "pk": 11632, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-REMY", - "center": "POINT (931821.5362647967413068 2380944.4064676109701395)", - "surface": 12270000, - "canton": null, - "numero_insee": "88435" - } - }, - { - "pk": 28904, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-STAIL", - "center": "POINT (951691.9632220733910799 2386020.1125508444383740)", - "surface": 6170000, - "canton": null, - "numero_insee": "88436" - } - }, - { - "pk": 25023, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAINT-VALLIER", - "center": "POINT (895574.7821107240160927 2371724.6958825043402612)", - "surface": 4420000, - "canton": null, - "numero_insee": "88437" - } - }, - { - "pk": 7066, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA SALLE", - "center": "POINT (931639.5955198886804283 2378841.3067216151393950)", - "surface": 4600000, - "canton": null, - "numero_insee": "88438" - } - }, - { - "pk": 7005, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SANCHEY", - "center": "POINT (899781.9674359222408384 2359652.0959798349067569)", - "surface": 5550000, - "canton": null, - "numero_insee": "88439" - } - }, - { - "pk": 29564, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SANDAUCOURT", - "center": "POINT (860379.2296679195715114 2368219.2099079499021173)", - "surface": 10760000, - "canton": null, - "numero_insee": "88440" - } - }, - { - "pk": 25111, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SANS-VALLOIS", - "center": "POINT (880080.9203263164963573 2358081.1929137255065143)", - "surface": 4480000, - "canton": null, - "numero_insee": "88441" - } - }, - { - "pk": 26427, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAPOIS", - "center": "POINT (931317.2092242932412773 2346714.7749811671674252)", - "surface": 16970000, - "canton": null, - "numero_insee": "88442" - } - }, - { - "pk": 6330, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SARTES", - "center": "POINT (847392.1630945559591055 2365605.7663061125203967)", - "surface": 6880000, - "canton": null, - "numero_insee": "88443" - } - }, - { - "pk": 18581, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE SAULCY", - "center": "POINT (949847.4168714906554669 2391007.7191688427701592)", - "surface": 9890000, - "canton": null, - "numero_insee": "88444" - } - }, - { - "pk": 23079, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAULCY-SUR-MEURTHE", - "center": "POINT (942421.1341978176496923 2370328.3914340566843748)", - "surface": 16470000, - "canton": null, - "numero_insee": "88445" - } - }, - { - "pk": 20354, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAULXURES-LES-BULGNEVILLE", - "center": "POINT (858545.0851261999923736 2360397.7053482122719288)", - "surface": 9570000, - "canton": null, - "numero_insee": "88446" - } - }, - { - "pk": 36825, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAULXURES-SUR-MOSELOTTE", - "center": "POINT (931298.5444360862020403 2337307.5076442039571702)", - "surface": 31810000, - "canton": null, - "numero_insee": "88447" - } - }, - { - "pk": 24339, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAUVILLE", - "center": "POINT (853384.6269757046829909 2355349.6489481227472425)", - "surface": 14560000, - "canton": null, - "numero_insee": "88448" - } - }, - { - "pk": 26264, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SAVIGNY", - "center": "POINT (887597.1340275713009760 2380062.0052977930754423)", - "surface": 6310000, - "canton": null, - "numero_insee": "88449" - } - }, - { - "pk": 9618, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SENAIDE", - "center": "POINT (858857.6468254640931264 2335681.9193027727305889)", - "surface": 12010000, - "canton": null, - "numero_insee": "88450" - } - }, - { - "pk": 16140, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SENONES", - "center": "POINT (942462.6015234508085996 2388642.0547973243519664)", - "surface": 18380000, - "canton": null, - "numero_insee": "88451" - } - }, - { - "pk": 36598, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SENONGES", - "center": "POINT (876798.5408737704856321 2355751.2155689778737724)", - "surface": 5830000, - "canton": null, - "numero_insee": "88452" - } - }, - { - "pk": 37394, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SERAUMONT", - "center": "POINT (842110.9708526055328548 2386275.4305754238739610)", - "surface": 10450000, - "canton": null, - "numero_insee": "88453" - } - }, - { - "pk": 16520, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SEROCOURT", - "center": "POINT (864636.8706452618353069 2350242.5217062528245151)", - "surface": 11060000, - "canton": null, - "numero_insee": "88456" - } - }, - { - "pk": 33211, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SIONNE", - "center": "POINT (843742.0725966144818813 2382786.9204961527138948)", - "surface": 11870000, - "canton": null, - "numero_insee": "88457" - } - }, - { - "pk": 13134, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SOCOURT", - "center": "POINT (889658.8070429349318147 2384683.1027976595796645)", - "surface": 3830000, - "canton": null, - "numero_insee": "88458" - } - }, - { - "pk": 12437, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SONCOURT", - "center": "POINT (864458.8942290826234967 2382564.6881552594713867)", - "surface": 3920000, - "canton": null, - "numero_insee": "88459" - } - }, - { - "pk": 20910, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SOULOSSE-SOUS-SAINT-ELOPHE", - "center": "POINT (851830.1094591224100441 2384857.8334538065828383)", - "surface": 19550000, - "canton": null, - "numero_insee": "88460" - } - }, - { - "pk": 33310, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "SURIAUVILLE", - "center": "POINT (862269.9186276936670765 2357827.8128725555725396)", - "surface": 13500000, - "canton": null, - "numero_insee": "88461" - } - }, - { - "pk": 15902, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE SYNDICAT", - "center": "POINT (924315.0653789768693969 2346353.9703757893294096)", - "surface": 18250000, - "canton": null, - "numero_insee": "88462" - } - }, - { - "pk": 21295, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "TAINTRUX", - "center": "POINT (937511.8389083908405155 2370986.3802721113897860)", - "surface": 31730000, - "canton": null, - "numero_insee": "88463" - } - }, - { - "pk": 4744, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "THAON-LES-VOSGES", - "center": "POINT (902303.3666747892275453 2368980.7119691120460629)", - "surface": 11760000, - "canton": null, - "numero_insee": "88465" - } - }, - { - "pk": 37895, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "THEY-SOUS-MONTFORT", - "center": "POINT (870013.1077532382914796 2365099.7426436990499496)", - "surface": 10280000, - "canton": null, - "numero_insee": "88466" - } - }, - { - "pk": 13871, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "THIEFOSSE", - "center": "POINT (927883.2310879996512085 2338779.0950515507720411)", - "surface": 7670000, - "canton": null, - "numero_insee": "88467" - } - }, - { - "pk": 4570, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE THILLOT", - "center": "POINT (931367.8214608349371701 2329302.0049980496987700)", - "surface": 15190000, - "canton": null, - "numero_insee": "88468" - } - }, - { - "pk": 30361, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "THIRAUCOURT", - "center": "POINT (877255.0188393862918019 2372467.4382424093782902)", - "surface": 2980000, - "canton": null, - "numero_insee": "88469" - } - }, - { - "pk": 14990, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE THOLY", - "center": "POINT (927766.3573054838925600 2352288.2493767892010510)", - "surface": 30730000, - "canton": null, - "numero_insee": "88470" - } - }, - { - "pk": 32364, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LES THONS", - "center": "POINT (863942.1986693134531379 2337927.3061946402303874)", - "surface": 10130000, - "canton": null, - "numero_insee": "88471" - } - }, - { - "pk": 16379, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "THUILLIERES", - "center": "POINT (873286.7255441895686090 2356821.7938712816685438)", - "surface": 7510000, - "canton": null, - "numero_insee": "88472" - } - }, - { - "pk": 22760, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "TIGNECOURT", - "center": "POINT (865187.1336642062524334 2344442.9125983780249953)", - "surface": 18980000, - "canton": null, - "numero_insee": "88473" - } - }, - { - "pk": 10577, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "TILLEUX", - "center": "POINT (851838.3843313152901828 2372248.7877672561444342)", - "surface": 3870000, - "canton": null, - "numero_insee": "88474" - } - }, - { - "pk": 19075, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "TOTAINVILLE", - "center": "POINT (870420.4186628283932805 2375911.1396605507470667)", - "surface": 5080000, - "canton": null, - "numero_insee": "88476" - } - }, - { - "pk": 11619, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "TRAMPOT", - "center": "POINT (830177.9100396077847108 2377466.7720379475504160)", - "surface": 13150000, - "canton": null, - "numero_insee": "88477" - } - }, - { - "pk": 27631, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "TRANQUEVILLE-GRAUX", - "center": "POINT (859508.3993432645220309 2388026.0610581669025123)", - "surface": 15010000, - "canton": null, - "numero_insee": "88478" - } - }, - { - "pk": 31035, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "TREMONZEY", - "center": "POINT (891876.7674966333433986 2336366.5135051198303699)", - "surface": 9160000, - "canton": null, - "numero_insee": "88479" - } - }, - { - "pk": 32607, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "UBEXY", - "center": "POINT (892316.5847406522370875 2378201.3240486872382462)", - "surface": 5020000, - "canton": null, - "numero_insee": "88480" - } - }, - { - "pk": 6197, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "URIMENIL", - "center": "POINT (902543.3662983337417245 2352770.8005148475058377)", - "surface": 15730000, - "canton": null, - "numero_insee": "88481" - } - }, - { - "pk": 6679, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "URVILLE", - "center": "POINT (853244.1449640041682869 2360051.9201268162578344)", - "surface": 3960000, - "canton": null, - "numero_insee": "88482" - } - }, - { - "pk": 13062, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "UXEGNEY", - "center": "POINT (900654.0664725853130221 2362962.0620865132659674)", - "surface": 8960000, - "canton": null, - "numero_insee": "88483" - } - }, - { - "pk": 13678, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "UZEMAIN", - "center": "POINT (898344.8633575162384659 2352234.1934358193539083)", - "surface": 27590000, - "canton": null, - "numero_insee": "88484" - } - }, - { - "pk": 31739, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA VACHERESSE-ET-LA-ROUILLIE", - "center": "POINT (857388.1594452456338331 2355283.9844939364120364)", - "surface": 9380000, - "canton": null, - "numero_insee": "88485" - } - }, - { - "pk": 17397, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VAGNEY", - "center": "POINT (927133.4098066440783441 2344476.9178005484864116)", - "surface": 24680000, - "canton": null, - "numero_insee": "88486" - } - }, - { - "pk": 19651, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE VAL-D'AJOL", - "center": "POINT (911301.2804381782189012 2335233.1686966875568032)", - "surface": 73150000, - "canton": null, - "numero_insee": "88487" - } - }, - { - "pk": 16827, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VALFROICOURT", - "center": "POINT (878848.2292272828053683 2361773.3103794474154711)", - "surface": 13860000, - "canton": null, - "numero_insee": "88488" - } - }, - { - "pk": 7662, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VALLEROY-AUX-SAULES", - "center": "POINT (882203.0646922504529357 2367306.2592720040120184)", - "surface": 5070000, - "canton": null, - "numero_insee": "88489" - } - }, - { - "pk": 12495, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VALLEROY-LE-SEC", - "center": "POINT (872355.9756211221683770 2360316.3720327103510499)", - "surface": 5930000, - "canton": null, - "numero_insee": "88490" - } - }, - { - "pk": 11707, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LES VALLOIS", - "center": "POINT (881487.0263609839603305 2357492.8617348019033670)", - "surface": 5250000, - "canton": null, - "numero_insee": "88491" - } - }, - { - "pk": 27308, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE VALTIN", - "center": "POINT (949371.3541043164441362 2353576.1757942419499159)", - "surface": 19620000, - "canton": null, - "numero_insee": "88492" - } - }, - { - "pk": 8093, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VARMONZEY", - "center": "POINT (892330.3933886181330308 2376600.2812313511967659)", - "surface": 2590000, - "canton": null, - "numero_insee": "88493" - } - }, - { - "pk": 7184, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VAUBEXY", - "center": "POINT (889267.1965860046911985 2372070.5874055577442050)", - "surface": 6480000, - "canton": null, - "numero_insee": "88494" - } - }, - { - "pk": 35900, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VAUDEVILLE", - "center": "POINT (912125.3857480185106397 2367264.2150121107697487)", - "surface": 3230000, - "canton": null, - "numero_insee": "88495" - } - }, - { - "pk": 4761, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VAUDONCOURT", - "center": "POINT (857717.0254075537668541 2363592.9443690055049956)", - "surface": 5760000, - "canton": null, - "numero_insee": "88496" - } - }, - { - "pk": 33958, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VAXONCOURT", - "center": "POINT (902967.5455474329646677 2373189.5185843384824693)", - "surface": 8630000, - "canton": null, - "numero_insee": "88497" - } - }, - { - "pk": 3439, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VECOUX", - "center": "POINT (922878.0838675008853897 2338935.9559317417442799)", - "surface": 13900000, - "canton": null, - "numero_insee": "88498" - } - }, - { - "pk": 26172, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VELOTTE-ET-TATIGNECOURT", - "center": "POINT (884689.1899164183996618 2369129.0027596862055361)", - "surface": 5390000, - "canton": null, - "numero_insee": "88499" - } - }, - { - "pk": 37063, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VENTRON", - "center": "POINT (939614.6277274698950350 2336178.5881037306971848)", - "surface": 24460000, - "canton": null, - "numero_insee": "88500" - } - }, - { - "pk": 9888, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LE VERMONT", - "center": "POINT (950180.5808583585312590 2387207.8727758917957544)", - "surface": 4350000, - "canton": null, - "numero_insee": "88501" - } - }, - { - "pk": 14014, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VERVEZELLE", - "center": "POINT (927137.8922936186427251 2367093.7913219826295972)", - "surface": 1900000, - "canton": null, - "numero_insee": "88502" - } - }, - { - "pk": 6892, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VEXAINCOURT", - "center": "POINT (949391.6319045602576807 2397408.3478614343330264)", - "surface": 11410000, - "canton": null, - "numero_insee": "88503" - } - }, - { - "pk": 25963, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VICHEREY", - "center": "POINT (866564.5576787844765931 2382082.4442195924930274)", - "surface": 5890000, - "canton": null, - "numero_insee": "88504" - } - }, - { - "pk": 14119, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VIENVILLE", - "center": "POINT (935081.2361192838288844 2362759.2931741047650576)", - "surface": 3350000, - "canton": null, - "numero_insee": "88505" - } - }, - { - "pk": 12032, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VIEUX-MOULIN", - "center": "POINT (945575.8747786509338766 2387368.0982713056728244)", - "surface": 3870000, - "canton": null, - "numero_insee": "88506" - } - }, - { - "pk": 4427, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VILLERS", - "center": "POINT (884545.1412347023142502 2374231.4861640953458846)", - "surface": 4990000, - "canton": null, - "numero_insee": "88507" - } - }, - { - "pk": 28367, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VILLE-SUR-ILLON", - "center": "POINT (888175.1062136496184394 2359451.9081400716677308)", - "surface": 17880000, - "canton": null, - "numero_insee": "88508" - } - }, - { - "pk": 32721, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VILLONCOURT", - "center": "POINT (910186.9606485480908304 2371550.6218816391192377)", - "surface": 6560000, - "canton": null, - "numero_insee": "88509" - } - }, - { - "pk": 3358, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VILLOTTE", - "center": "POINT (855527.3128612574655563 2350564.4927179934456944)", - "surface": 8220000, - "canton": null, - "numero_insee": "88510" - } - }, - { - "pk": 29536, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VILLOUXEL", - "center": "POINT (840389.6942389474716038 2376953.9515323466621339)", - "surface": 4630000, - "canton": null, - "numero_insee": "88511" - } - }, - { - "pk": 22907, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VIMENIL", - "center": "POINT (919539.7902229271130636 2366227.4877567696385086)", - "surface": 8170000, - "canton": null, - "numero_insee": "88512" - } - }, - { - "pk": 10777, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VINCEY", - "center": "POINT (895924.1088533175643533 2377632.0078299078159034)", - "surface": 12960000, - "canton": null, - "numero_insee": "88513" - } - }, - { - "pk": 36595, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VIOCOURT", - "center": "POINT (862021.8255821338389069 2375038.2961924043484032)", - "surface": 4830000, - "canton": null, - "numero_insee": "88514" - } - }, - { - "pk": 23675, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VIOMENIL", - "center": "POINT (885451.7227395542431623 2350321.6659651468507946)", - "surface": 23500000, - "canton": null, - "numero_insee": "88515" - } - }, - { - "pk": 15326, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VITTEL", - "center": "POINT (868839.8713626246899366 2361887.2897865832783282)", - "surface": 24160000, - "canton": null, - "numero_insee": "88516" - } - }, - { - "pk": 11999, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VIVIERS-LE-GRAS", - "center": "POINT (868015.9085453179432079 2352973.6053090519271791)", - "surface": 9100000, - "canton": null, - "numero_insee": "88517" - } - }, - { - "pk": 34140, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VIVIERS-LES-OFFROICOURT", - "center": "POINT (873176.4549731920706108 2369630.2723179250024259)", - "surface": 4520000, - "canton": null, - "numero_insee": "88518" - } - }, - { - "pk": 9430, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LA VOIVRE", - "center": "POINT (938124.7671031625941396 2381099.0563578782603145)", - "surface": 5770000, - "canton": null, - "numero_insee": "88519" - } - }, - { - "pk": 33549, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "LES VOIVRES", - "center": "POINT (895107.3839741541305557 2344700.6442184620536864)", - "surface": 12760000, - "canton": null, - "numero_insee": "88520" - } - }, - { - "pk": 15761, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VOMECOURT", - "center": "POINT (917245.7806138931773603 2376915.4884642297402024)", - "surface": 7060000, - "canton": null, - "numero_insee": "88521" - } - }, - { - "pk": 8400, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VOMECOURT-SUR-MADON", - "center": "POINT (883990.4840801297686994 2380531.2787501756101847)", - "surface": 3550000, - "canton": null, - "numero_insee": "88522" - } - }, - { - "pk": 19647, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VOUXEY", - "center": "POINT (855994.6852681895252317 2377688.4314035982824862)", - "surface": 23280000, - "canton": null, - "numero_insee": "88523" - } - }, - { - "pk": 35899, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VRECOURT", - "center": "POINT (850462.9172703919466585 2357626.2494144509546459)", - "surface": 12510000, - "canton": null, - "numero_insee": "88524" - } - }, - { - "pk": 37690, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "VROVILLE", - "center": "POINT (884562.3894961618352681 2372230.1765336147509515)", - "surface": 6810000, - "canton": null, - "numero_insee": "88525" - } - }, - { - "pk": 18026, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "WISEMBACH", - "center": "POINT (954905.0723051200620830 2373238.6684650084935129)", - "surface": 11230000, - "canton": null, - "numero_insee": "88526" - } - }, - { - "pk": 24277, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "XAFFEVILLERS", - "center": "POINT (916152.5784795503132045 2387613.7800131514668465)", - "surface": 8310000, - "canton": null, - "numero_insee": "88527" - } - }, - { - "pk": 11827, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "XAMONTARUPT", - "center": "POINT (920529.5021500845905393 2355928.4188316706568003)", - "surface": 5050000, - "canton": null, - "numero_insee": "88528" - } - }, - { - "pk": 25376, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "XARONVAL", - "center": "POINT (885180.9130523080239072 2381742.4063018653541803)", - "surface": 5300000, - "canton": null, - "numero_insee": "88529" - } - }, - { - "pk": 14950, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "XERTIGNY", - "center": "POINT (901505.6756492082495242 2345456.3765886239707470)", - "surface": 50450000, - "canton": null, - "numero_insee": "88530" - } - }, - { - "pk": 18718, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "XONRUPT-LONGEMER", - "center": "POINT (943885.8629045474808663 2351427.0637973849661648)", - "surface": 30890000, - "canton": null, - "numero_insee": "88531" - } - }, - { - "pk": 6500, - "model": "ishtar_common.town", - "fields": { - "departement": 89, - "name": "ZINCOURT", - "center": "POINT (904446.9289445106405765 2375704.1137151466682553)", - "surface": 4550000, - "canton": null, - "numero_insee": "88532" - } - }, - { - "pk": 10861, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ACCOLAY", - "center": "POINT (702775.7296918879728764 2296020.2101243869401515)", - "surface": 9290000, - "canton": null, - "numero_insee": "89001" - } - }, - { - "pk": 6793, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "AIGREMONT", - "center": "POINT (716526.1235722317360342 2303142.2725918446667492)", - "surface": 6790000, - "canton": null, - "numero_insee": "89002" - } - }, - { - "pk": 26529, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "AILLANT-SUR-THOLON", - "center": "POINT (674155.0582573855062947 2319496.3597891773097217)", - "surface": 18230000, - "canton": null, - "numero_insee": "89003" - } - }, - { - "pk": 5466, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "AISY-SUR-ARMANCON", - "center": "POINT (740597.5456002537393942 2296941.7336576543748379)", - "surface": 18100000, - "canton": null, - "numero_insee": "89004" - } - }, - { - "pk": 20290, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANCY-LE-FRANC", - "center": "POINT (736981.9154872039798647 2310221.3532032789662480)", - "surface": 19690000, - "canton": null, - "numero_insee": "89005" - } - }, - { - "pk": 29005, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANCY-LE-LIBRE", - "center": "POINT (735454.4962873889598995 2313310.7645198195241392)", - "surface": 21940000, - "canton": null, - "numero_insee": "89006" - } - }, - { - "pk": 16335, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANDRYES", - "center": "POINT (684982.3496607478009537 2281758.4260233291424811)", - "surface": 29600000, - "canton": null, - "numero_insee": "89007" - } - }, - { - "pk": 30493, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANGELY", - "center": "POINT (725980.5594486341578886 2285808.8533863630145788)", - "surface": 8670000, - "canton": null, - "numero_insee": "89008" - } - }, - { - "pk": 33055, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANNAY-LA-COTE", - "center": "POINT (715380.5646115911658853 2284818.1711628399789333)", - "surface": 12820000, - "canton": null, - "numero_insee": "89009" - } - }, - { - "pk": 16035, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANNAY-SUR-SEREIN", - "center": "POINT (722018.9671188788488507 2304489.9010047768242657)", - "surface": 27070000, - "canton": null, - "numero_insee": "89010" - } - }, - { - "pk": 12114, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANNEOT", - "center": "POINT (716115.0298991764429957 2280821.2236474892124534)", - "surface": 6110000, - "canton": null, - "numero_insee": "89011" - } - }, - { - "pk": 32858, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ANNOUX", - "center": "POINT (728822.2973886997206137 2292938.5954043962992728)", - "surface": 8860000, - "canton": null, - "numero_insee": "89012" - } - }, - { - "pk": 13106, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "APPOIGNY", - "center": "POINT (688468.3652439040597528 2319217.1049073780886829)", - "surface": 22360000, - "canton": null, - "numero_insee": "89013" - } - }, - { - "pk": 18976, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ARCES-DILO", - "center": "POINT (693653.5104114934802055 2345080.4902077382430434)", - "surface": 27050000, - "canton": null, - "numero_insee": "89014" - } - }, - { - "pk": 21620, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ARCY-SUR-CURE", - "center": "POINT (707034.7094720839522779 2289451.1146708219312131)", - "surface": 26540000, - "canton": null, - "numero_insee": "89015" - } - }, - { - "pk": 5782, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ARGENTENAY", - "center": "POINT (733137.5820380190853029 2315092.4606633214280009)", - "surface": 5130000, - "canton": null, - "numero_insee": "89016" - } - }, - { - "pk": 13451, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ARGENTEUIL-SUR-ARMANCON", - "center": "POINT (732310.9306003202218562 2306378.7094978354871273)", - "surface": 30670000, - "canton": null, - "numero_insee": "89017" - } - }, - { - "pk": 31584, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ARMEAU", - "center": "POINT (674589.6989627096336335 2339114.8802860942669213)", - "surface": 10260000, - "canton": null, - "numero_insee": "89018" - } - }, - { - "pk": 18429, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ARTHONNAY", - "center": "POINT (741438.7637547703925520 2327472.4403359573334455)", - "surface": 25730000, - "canton": null, - "numero_insee": "89019" - } - }, - { - "pk": 29912, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ASNIERES-SOUS-BOIS", - "center": "POINT (698139.2901342996628955 2276265.3335863151587546)", - "surface": 18120000, - "canton": null, - "numero_insee": "89020" - } - }, - { - "pk": 4298, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ASQUINS", - "center": "POINT (706236.7010991760762408 2277334.7428181068971753)", - "surface": 21720000, - "canton": null, - "numero_insee": "89021" - } - }, - { - "pk": 30687, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ATHIE", - "center": "POINT (724599.0935707918833941 2283495.2982478332705796)", - "surface": 4860000, - "canton": null, - "numero_insee": "89022" - } - }, - { - "pk": 37869, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "AUGY", - "center": "POINT (696264.3889657700201496 2308574.8671262892894447)", - "surface": 5090000, - "canton": null, - "numero_insee": "89023" - } - }, - { - "pk": 17010, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "AUXERRE", - "center": "POINT (693240.2535763510968536 2311151.2697437228634953)", - "surface": 49790000, - "canton": null, - "numero_insee": "89024" - } - }, - { - "pk": 16863, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "AVALLON", - "center": "POINT (718949.3283384831156582 2277042.2416227064095438)", - "surface": 26620000, - "canton": null, - "numero_insee": "89025" - } - }, - { - "pk": 24660, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BAGNEAUX", - "center": "POINT (693206.7310757758095860 2362389.4846416404470801)", - "surface": 16290000, - "canton": null, - "numero_insee": "89027" - } - }, - { - "pk": 26900, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BAON", - "center": "POINT (734700.4255160236498341 2319609.1985942963510752)", - "surface": 8600000, - "canton": null, - "numero_insee": "89028" - } - }, - { - "pk": 8888, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BASSOU", - "center": "POINT (687515.2389356766361743 2325413.7709639202803373)", - "surface": 4110000, - "canton": null, - "numero_insee": "89029" - } - }, - { - "pk": 21781, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BAZARNES", - "center": "POINT (698169.0630902354605496 2296381.4960086401551962)", - "surface": 19350000, - "canton": null, - "numero_insee": "89030" - } - }, - { - "pk": 29963, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BEAUMONT", - "center": "POINT (691224.5652976956916973 2324644.5564609426073730)", - "surface": 6470000, - "canton": null, - "numero_insee": "89031" - } - }, - { - "pk": 7737, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BEAUVILLIERS", - "center": "POINT (728220.6139132705284283 2269514.8551150616258383)", - "surface": 6270000, - "canton": null, - "numero_insee": "89032" - } - }, - { - "pk": 12868, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BEAUVOIR", - "center": "POINT (678132.2168302469654009 2310723.2150635682046413)", - "surface": 6740000, - "canton": null, - "numero_insee": "89033" - } - }, - { - "pk": 10891, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BEINE", - "center": "POINT (703824.7786778178997338 2313943.0097019588574767)", - "surface": 21430000, - "canton": null, - "numero_insee": "89034" - } - }, - { - "pk": 32994, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BELLECHAUME", - "center": "POINT (692795.2652433931361884 2340069.4867027522996068)", - "surface": 24440000, - "canton": null, - "numero_insee": "89035" - } - }, - { - "pk": 10060, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LA BELLIOLE", - "center": "POINT (655685.7615382578223944 2349763.2920460361056030)", - "surface": 8590000, - "canton": null, - "numero_insee": "89036" - } - }, - { - "pk": 36093, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BEON", - "center": "POINT (672880.6538763943826780 2328192.2170246248133481)", - "surface": 15480000, - "canton": null, - "numero_insee": "89037" - } - }, - { - "pk": 34337, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BERNOUIL", - "center": "POINT (716652.2726411833427846 2323659.1432317756116390)", - "surface": 4540000, - "canton": null, - "numero_insee": "89038" - } - }, - { - "pk": 22337, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BERU", - "center": "POINT (716045.1828333027660847 2312645.5550600090064108)", - "surface": 5230000, - "canton": null, - "numero_insee": "89039" - } - }, - { - "pk": 14032, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BESSY-SUR-CURE", - "center": "POINT (704411.6416432255646214 2291930.8522007730789483)", - "surface": 10630000, - "canton": null, - "numero_insee": "89040" - } - }, - { - "pk": 24401, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BEUGNON", - "center": "POINT (708837.5003694378538057 2336502.6307216975837946)", - "surface": 7650000, - "canton": null, - "numero_insee": "89041" - } - }, - { - "pk": 37834, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BIERRY-LES-BELLES-FONTAINES", - "center": "POINT (738435.1149423592723906 2292319.7323314319364727)", - "surface": 27010000, - "canton": null, - "numero_insee": "89042" - } - }, - { - "pk": 26489, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BLACY", - "center": "POINT (728161.7451677473727614 2288229.2772192512638867)", - "surface": 8470000, - "canton": null, - "numero_insee": "89043" - } - }, - { - "pk": 34286, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BLANNAY", - "center": "POINT (707294.2358642905019224 2282447.7705696146003902)", - "surface": 7350000, - "canton": null, - "numero_insee": "89044" - } - }, - { - "pk": 9896, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BLEIGNY-LE-CARREAU", - "center": "POINT (700308.7702521929750219 2315514.4479729570448399)", - "surface": 10410000, - "canton": null, - "numero_insee": "89045" - } - }, - { - "pk": 5951, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BLENEAU", - "center": "POINT (645893.0946448849281296 2300543.3700731536373496)", - "surface": 39350000, - "canton": null, - "numero_insee": "89046" - } - }, - { - "pk": 28100, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BOEURS-EN-OTHE", - "center": "POINT (701919.2480924660339952 2349854.0001211808994412)", - "surface": 22320000, - "canton": null, - "numero_insee": "89048" - } - }, - { - "pk": 11435, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BOIS-D'ARCY", - "center": "POINT (704175.8815027748933062 2284322.8481529303826392)", - "surface": 3470000, - "canton": null, - "numero_insee": "89049" - } - }, - { - "pk": 8372, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BONNARD", - "center": "POINT (689509.8414466220419854 2326231.2595978206954896)", - "surface": 4050000, - "canton": null, - "numero_insee": "89050" - } - }, - { - "pk": 27589, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LES BORDES", - "center": "POINT (678433.9636734802043065 2346052.5334358825348318)", - "surface": 18860000, - "canton": null, - "numero_insee": "89051" - } - }, - { - "pk": 37610, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BRANCHES", - "center": "POINT (685657.9556042030453682 2320194.0891158431768417)", - "surface": 11060000, - "canton": null, - "numero_insee": "89053" - } - }, - { - "pk": 7634, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BRANNAY", - "center": "POINT (658510.8522787924157456 2358893.8432019175961614)", - "surface": 10870000, - "canton": null, - "numero_insee": "89054" - } - }, - { - "pk": 19795, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BRIENON-SUR-ARMANCON", - "center": "POINT (695546.2460158256581053 2334288.4212387949228287)", - "surface": 25880000, - "canton": null, - "numero_insee": "89055" - } - }, - { - "pk": 8503, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BRION", - "center": "POINT (685241.7596180139807984 2333900.9723413023166358)", - "surface": 16820000, - "canton": null, - "numero_insee": "89056" - } - }, - { - "pk": 20255, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BROSSES", - "center": "POINT (701792.8040569867007434 2282100.9074716232717037)", - "surface": 20090000, - "canton": null, - "numero_insee": "89057" - } - }, - { - "pk": 3961, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BUSSIERES", - "center": "POINT (729507.9660984907532111 2271127.0770101565867662)", - "surface": 11770000, - "canton": null, - "numero_insee": "89058" - } - }, - { - "pk": 21525, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BUSSY-EN-OTHE", - "center": "POINT (687203.3256559628061950 2338621.1051413645036519)", - "surface": 57310000, - "canton": null, - "numero_insee": "89059" - } - }, - { - "pk": 15493, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BUSSY-LE-REPOS", - "center": "POINT (665776.9691500155022368 2339841.0237915548495948)", - "surface": 23720000, - "canton": null, - "numero_insee": "89060" - } - }, - { - "pk": 32893, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "BUTTEAUX", - "center": "POINT (710871.9583422255236655 2332616.9420020356774330)", - "surface": 7560000, - "canton": null, - "numero_insee": "89061" - } - }, - { - "pk": 31807, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CARISEY", - "center": "POINT (712730.9059512201929465 2325827.5522947660647333)", - "surface": 11360000, - "canton": null, - "numero_insee": "89062" - } - }, - { - "pk": 33998, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LA CELLE-SAINT-CYR", - "center": "POINT (670651.2419639478903264 2331475.8770613684318960)", - "surface": 18720000, - "canton": null, - "numero_insee": "89063" - } - }, - { - "pk": 34971, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CENSY", - "center": "POINT (728150.4710481043439358 2301339.4723207447677851)", - "surface": 4770000, - "canton": null, - "numero_insee": "89064" - } - }, - { - "pk": 24990, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CERILLY", - "center": "POINT (695780.4154633093858138 2353905.0302185532636940)", - "surface": 7260000, - "canton": null, - "numero_insee": "89065" - } - }, - { - "pk": 33632, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CERISIERS", - "center": "POINT (686430.0321702203946188 2347220.9857720434665680)", - "surface": 26010000, - "canton": null, - "numero_insee": "89066" - } - }, - { - "pk": 31472, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CEZY", - "center": "POINT (673036.8165728911990300 2333397.4695245618931949)", - "surface": 16270000, - "canton": null, - "numero_insee": "89067" - } - }, - { - "pk": 21755, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHABLIS", - "center": "POINT (708836.7542152748210356 2312984.7247021179646254)", - "surface": 38710000, - "canton": null, - "numero_insee": "89068" - } - }, - { - "pk": 14804, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAILLEY", - "center": "POINT (700465.7216179110109806 2344237.5177343590185046)", - "surface": 16960000, - "canton": null, - "numero_insee": "89069" - } - }, - { - "pk": 22325, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMBEUGLE", - "center": "POINT (653253.2203787977341563 2317818.7277374174445868)", - "surface": 7140000, - "canton": null, - "numero_insee": "89070" - } - }, - { - "pk": 27470, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMOUX", - "center": "POINT (699859.1773749841377139 2274078.1414821133948863)", - "surface": 6990000, - "canton": null, - "numero_insee": "89071" - } - }, - { - "pk": 14951, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMPCEVRAIS", - "center": "POINT (648044.8747621781658381 2306466.0965738897211850)", - "surface": 33200000, - "canton": null, - "numero_insee": "89072" - } - }, - { - "pk": 20568, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMPIGNELLES", - "center": "POINT (655528.2022919780574739 2309131.2238071882165968)", - "surface": 53500000, - "canton": null, - "numero_insee": "89073" - } - }, - { - "pk": 26017, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMPIGNY", - "center": "POINT (658938.5514901982387528 2367503.7357127699069679)", - "surface": 21200000, - "canton": null, - "numero_insee": "89074" - } - }, - { - "pk": 37831, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMPLAY", - "center": "POINT (680888.6875226681586355 2327959.6882863850332797)", - "surface": 20980000, - "canton": null, - "numero_insee": "89075" - } - }, - { - "pk": 4145, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMPLOST", - "center": "POINT (698009.8079012517118827 2338812.6713938023895025)", - "surface": 23100000, - "canton": null, - "numero_insee": "89076" - } - }, - { - "pk": 9373, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMPS-SUR-YONNE", - "center": "POINT (694781.9774414261337370 2306360.6087126070633531)", - "surface": 4390000, - "canton": null, - "numero_insee": "89077" - } - }, - { - "pk": 35012, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMPVALLON", - "center": "POINT (675194.9211642037844285 2326710.6379071515984833)", - "surface": 6840000, - "canton": null, - "numero_insee": "89078" - } - }, - { - "pk": 6931, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAMVRES", - "center": "POINT (675873.4096904842881486 2329318.3452202863991261)", - "surface": 5600000, - "canton": null, - "numero_insee": "89079" - } - }, - { - "pk": 30972, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LA CHAPELLE-SUR-OREUSE", - "center": "POINT (671458.5868634450016543 2366208.4482469880022109)", - "surface": 17940000, - "canton": null, - "numero_insee": "89080" - } - }, - { - "pk": 27112, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LA CHAPELLE-VAUPELTEIGNE", - "center": "POINT (707202.5505356935318559 2316873.8702626209706068)", - "surface": 5090000, - "canton": null, - "numero_insee": "89081" - } - }, - { - "pk": 26255, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHARBUY", - "center": "POINT (684602.0612120868172497 2314881.0913726342841983)", - "surface": 23490000, - "canton": null, - "numero_insee": "89083" - } - }, - { - "pk": 31356, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHARENTENAY", - "center": "POINT (691579.6125221624970436 2294524.2871926873922348)", - "surface": 14720000, - "canton": null, - "numero_insee": "89084" - } - }, - { - "pk": 6818, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHARMOY", - "center": "POINT (686396.6999250847147778 2327505.9020347543992102)", - "surface": 6980000, - "canton": null, - "numero_insee": "89085" - } - }, - { - "pk": 9149, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHARNY", - "center": "POINT (656829.5461838500341401 2320951.2715286058373749)", - "surface": 18760000, - "canton": null, - "numero_insee": "89086" - } - }, - { - "pk": 17052, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHASSIGNELLES", - "center": "POINT (739392.9582065482391044 2309140.9995539532974362)", - "surface": 13280000, - "canton": null, - "numero_insee": "89087" - } - }, - { - "pk": 28870, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHASSY", - "center": "POINT (674376.3411738537251949 2316996.3145550703629851)", - "surface": 16680000, - "canton": null, - "numero_insee": "89088" - } - }, - { - "pk": 19295, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHASTELLUX-SUR-CURE", - "center": "POINT (716839.4271803082665429 2266215.6619562008418143)", - "surface": 10580000, - "canton": null, - "numero_insee": "89089" - } - }, - { - "pk": 23956, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHATEL-CENSOIR", - "center": "POINT (697997.6848575266776606 2281168.0418790597468615)", - "surface": 24970000, - "canton": null, - "numero_insee": "89091" - } - }, - { - "pk": 17161, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHATEL-GERARD", - "center": "POINT (732920.9764000402064994 2293473.8099296875298023)", - "surface": 30850000, - "canton": null, - "numero_insee": "89092" - } - }, - { - "pk": 3780, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAUMONT", - "center": "POINT (656631.9767583238426596 2368084.7063966416753829)", - "surface": 8950000, - "canton": null, - "numero_insee": "89093" - } - }, - { - "pk": 32035, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHAUMOT", - "center": "POINT (664449.8933970289072022 2342932.1353731127455831)", - "surface": 14950000, - "canton": null, - "numero_insee": "89094" - } - }, - { - "pk": 27953, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHEMILLY-SUR-SEREIN", - "center": "POINT (713977.6690720602637157 2308624.9236679808236659)", - "surface": 13060000, - "canton": null, - "numero_insee": "89095" - } - }, - { - "pk": 6710, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHEMILLY-SUR-YONNE", - "center": "POINT (691242.3542441830504686 2322543.1062907520681620)", - "surface": 5730000, - "canton": null, - "numero_insee": "89096" - } - }, - { - "pk": 26978, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHENE-ARNOULT", - "center": "POINT (654108.2601934274425730 2323230.0666939644142985)", - "surface": 9130000, - "canton": null, - "numero_insee": "89097" - } - }, - { - "pk": 33631, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHENEY", - "center": "POINT (721444.5446615687105805 2325000.8057335913181305)", - "surface": 5950000, - "canton": null, - "numero_insee": "89098" - } - }, - { - "pk": 29737, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHENY", - "center": "POINT (689695.5805814469931647 2327934.1228068596683443)", - "surface": 9710000, - "canton": null, - "numero_insee": "89099" - } - }, - { - "pk": 31178, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHEROY", - "center": "POINT (649828.7142549963900819 2356018.5408447626978159)", - "surface": 10500000, - "canton": null, - "numero_insee": "89100" - } - }, - { - "pk": 8013, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHEU", - "center": "POINT (705977.9397236203076318 2331474.6156338700093329)", - "surface": 7610000, - "canton": null, - "numero_insee": "89101" - } - }, - { - "pk": 23894, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHEVANNES", - "center": "POINT (686572.8171514498535544 2306691.4328592331148684)", - "surface": 24240000, - "canton": null, - "numero_insee": "89102" - } - }, - { - "pk": 30204, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHEVILLON", - "center": "POINT (663406.2348389790859073 2324309.2994903651997447)", - "surface": 13030000, - "canton": null, - "numero_insee": "89103" - } - }, - { - "pk": 24363, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHICHEE", - "center": "POINT (712161.1276622279547155 2310410.9084201375953853)", - "surface": 18810000, - "canton": null, - "numero_insee": "89104" - } - }, - { - "pk": 37140, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHICHERY", - "center": "POINT (687531.3281676786718890 2323512.4602307341992855)", - "surface": 6830000, - "canton": null, - "numero_insee": "89105" - } - }, - { - "pk": 6063, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHIGY", - "center": "POINT (685154.7225778491701931 2356016.7082548346370459)", - "surface": 11910000, - "canton": null, - "numero_insee": "89107" - } - }, - { - "pk": 6341, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CHITRY", - "center": "POINT (702170.2286205060081556 2308424.7416170542128384)", - "surface": 15100000, - "canton": null, - "numero_insee": "89108" - } - }, - { - "pk": 32307, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CISERY", - "center": "POINT (730626.3803165699355304 2280844.3402636870741844)", - "surface": 4730000, - "canton": null, - "numero_insee": "89109" - } - }, - { - "pk": 32243, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LES CLERIMOIS", - "center": "POINT (683224.6789188419934362 2359402.8802352966740727)", - "surface": 12440000, - "canton": null, - "numero_insee": "89111" - } - }, - { - "pk": 25342, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COLLAN", - "center": "POINT (714809.5372240282595158 2316738.2277387450449169)", - "surface": 13140000, - "canton": null, - "numero_insee": "89112" - } - }, - { - "pk": 26759, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COLLEMIERS", - "center": "POINT (665684.0090310056693852 2350848.4309493801556528)", - "surface": 10640000, - "canton": null, - "numero_insee": "89113" - } - }, - { - "pk": 31540, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COMPIGNY", - "center": "POINT (669886.5857247773092240 2374601.2561143082566559)", - "surface": 7820000, - "canton": null, - "numero_insee": "89115" - } - }, - { - "pk": 12826, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CORNANT", - "center": "POINT (663300.1462707435712218 2348726.7443407005630434)", - "surface": 5070000, - "canton": null, - "numero_insee": "89116" - } - }, - { - "pk": 20554, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COULANGERON", - "center": "POINT (685038.5722328136907890 2298772.3018959597684443)", - "surface": 8560000, - "canton": null, - "numero_insee": "89117" - } - }, - { - "pk": 3543, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COULANGES-LA-VINEUSE", - "center": "POINT (693729.4977894350886345 2300647.2621687306091189)", - "surface": 10660000, - "canton": null, - "numero_insee": "89118" - } - }, - { - "pk": 25719, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COULOURS", - "center": "POINT (693493.2858749824808910 2352184.4060554997995496)", - "surface": 17530000, - "canton": null, - "numero_insee": "89120" - } - }, - { - "pk": 19386, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COURGENAY", - "center": "POINT (689771.4542797248577699 2366263.2502040974795818)", - "surface": 29990000, - "canton": null, - "numero_insee": "89122" - } - }, - { - "pk": 3645, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COURGIS", - "center": "POINT (705363.9946396197192371 2309452.5819099419750273)", - "surface": 10270000, - "canton": null, - "numero_insee": "89123" - } - }, - { - "pk": 23463, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COURLON-SUR-YONNE", - "center": "POINT (662302.7642607613233849 2372035.3985397210344672)", - "surface": 16840000, - "canton": null, - "numero_insee": "89124" - } - }, - { - "pk": 17964, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COURSON-LES-CARRIERES", - "center": "POINT (687518.1805247096344829 2289586.0576161113567650)", - "surface": 34670000, - "canton": null, - "numero_insee": "89125" - } - }, - { - "pk": 8889, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COURTOIN", - "center": "POINT (657508.9228144743246958 2347176.7463707942515612)", - "surface": 6040000, - "canton": null, - "numero_insee": "89126" - } - }, - { - "pk": 9526, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COURTOIS-SUR-YONNE", - "center": "POINT (667714.4127609336283058 2359271.7715122057124972)", - "surface": 4210000, - "canton": null, - "numero_insee": "89127" - } - }, - { - "pk": 37828, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "COUTARNOUX", - "center": "POINT (720637.6704869421664625 2290367.1309600635431707)", - "surface": 8570000, - "canton": null, - "numero_insee": "89128" - } - }, - { - "pk": 22765, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CRAIN", - "center": "POINT (692680.2938804813893512 2282724.2870008512400091)", - "surface": 10000000, - "canton": null, - "numero_insee": "89129" - } - }, - { - "pk": 5941, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CRAVANT", - "center": "POINT (703440.6106487455544993 2300229.1306008612737060)", - "surface": 22420000, - "canton": null, - "numero_insee": "89130" - } - }, - { - "pk": 15492, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CRUZY-LE-CHATEL", - "center": "POINT (741494.9322197407018393 2320867.8831064677797258)", - "surface": 59330000, - "canton": null, - "numero_insee": "89131" - } - }, - { - "pk": 12251, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CRY", - "center": "POINT (741955.1385477434378117 2302057.2676541204564273)", - "surface": 11160000, - "canton": null, - "numero_insee": "89132" - } - }, - { - "pk": 17261, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CUDOT", - "center": "POINT (662542.3197334879077971 2331807.6928623057901859)", - "surface": 19000000, - "canton": null, - "numero_insee": "89133" - } - }, - { - "pk": 15285, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CUSSY-LES-FORGES", - "center": "POINT (727073.0651273041730747 2275009.5262600295245647)", - "surface": 13700000, - "canton": null, - "numero_insee": "89134" - } - }, - { - "pk": 17842, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "CUY", - "center": "POINT (669490.2432709921849892 2362288.9708759658969939)", - "surface": 7160000, - "canton": null, - "numero_insee": "89136" - } - }, - { - "pk": 9784, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DANNEMOINE", - "center": "POINT (722859.1033490832196549 2323411.5945872687734663)", - "surface": 10220000, - "canton": null, - "numero_insee": "89137" - } - }, - { - "pk": 24991, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DICY", - "center": "POINT (656589.7221068526851013 2325652.8291391730308533)", - "surface": 10180000, - "canton": null, - "numero_insee": "89138" - } - }, - { - "pk": 20683, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DIGES", - "center": "POINT (680001.1741501627257094 2302732.8155357753857970)", - "surface": 35900000, - "canton": null, - "numero_insee": "89139" - } - }, - { - "pk": 37566, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DISSANGIS", - "center": "POINT (723748.3885361584834754 2289392.7481651464477181)", - "surface": 7270000, - "canton": null, - "numero_insee": "89141" - } - }, - { - "pk": 21543, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DIXMONT", - "center": "POINT (680965.2659144862554967 2342571.3284884174354374)", - "surface": 41950000, - "canton": null, - "numero_insee": "89142" - } - }, - { - "pk": 32475, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DOLLOT", - "center": "POINT (654023.9094136643689126 2356954.5870937681756914)", - "surface": 15240000, - "canton": null, - "numero_insee": "89143" - } - }, - { - "pk": 17062, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DOMATS", - "center": "POINT (653810.6574569244403392 2346645.1712699178606272)", - "surface": 23900000, - "canton": null, - "numero_insee": "89144" - } - }, - { - "pk": 15412, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DRACY", - "center": "POINT (667065.0092235574265942 2305825.9784291628748178)", - "surface": 22090000, - "canton": null, - "numero_insee": "89147" - } - }, - { - "pk": 15883, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DRUYES-LES-BELLES-FONTAINES", - "center": "POINT (681353.5104608364636078 2284830.1923469100147486)", - "surface": 39660000, - "canton": null, - "numero_insee": "89148" - } - }, - { - "pk": 4572, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "DYE", - "center": "POINT (714060.6635967120528221 2322436.2402326539158821)", - "surface": 17080000, - "canton": null, - "numero_insee": "89149" - } - }, - { - "pk": 30156, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "EGLENY", - "center": "POINT (677715.8620456196367741 2312621.1606272212229669)", - "surface": 8010000, - "canton": null, - "numero_insee": "89150" - } - }, - { - "pk": 18433, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "EGRISELLES-LE-BOCAGE", - "center": "POINT (662720.8652068631490692 2346219.9958283170126379)", - "surface": 23570000, - "canton": null, - "numero_insee": "89151" - } - }, - { - "pk": 11887, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "EPINEAU-LES-VOVES", - "center": "POINT (684590.3830839118454605 2328091.0747925243340433)", - "surface": 7050000, - "canton": null, - "numero_insee": "89152" - } - }, - { - "pk": 30317, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "EPINEUIL", - "center": "POINT (723576.5795776830054820 2321416.1584289749152958)", - "surface": 6140000, - "canton": null, - "numero_insee": "89153" - } - }, - { - "pk": 14505, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ESCAMPS", - "center": "POINT (685206.5429401586297899 2302576.6873898487538099)", - "surface": 22220000, - "canton": null, - "numero_insee": "89154" - } - }, - { - "pk": 35692, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ESCOLIVES-SAINTE-CAMILLE", - "center": "POINT (694908.3163575868820772 2303259.2696511074900627)", - "surface": 7590000, - "canton": null, - "numero_insee": "89155" - } - }, - { - "pk": 30543, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ESNON", - "center": "POINT (691837.7920266474829987 2334957.5488086799159646)", - "surface": 12100000, - "canton": null, - "numero_insee": "89156" - } - }, - { - "pk": 15283, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ETAIS-LA-SAUVIN", - "center": "POINT (676293.8213697631144896 2279583.2817841628566384)", - "surface": 44620000, - "canton": null, - "numero_insee": "89158" - } - }, - { - "pk": 7137, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ETAULE", - "center": "POINT (718705.8728608681121841 2282144.2414099066518247)", - "surface": 8870000, - "canton": null, - "numero_insee": "89159" - } - }, - { - "pk": 27590, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ETIGNY", - "center": "POINT (669902.8818548298440874 2348982.6590879047289491)", - "surface": 7020000, - "canton": null, - "numero_insee": "89160" - } - }, - { - "pk": 16259, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ETIVEY", - "center": "POINT (735880.5910861253505573 2298502.8860028581693769)", - "surface": 27800000, - "canton": null, - "numero_insee": "89161" - } - }, - { - "pk": 36445, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "EVRY", - "center": "POINT (668477.7489226259058341 2363681.4406073647551239)", - "surface": 4620000, - "canton": null, - "numero_insee": "89162" - } - }, - { - "pk": 15827, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LA FERTE-LOUPIERE", - "center": "POINT (667536.1107901652576402 2321141.7355890087783337)", - "surface": 30500000, - "canton": null, - "numero_insee": "89163" - } - }, - { - "pk": 26298, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FESTIGNY", - "center": "POINT (690058.9346566938329488 2285003.9225487550720572)", - "surface": 5460000, - "canton": null, - "numero_insee": "89164" - } - }, - { - "pk": 25979, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FLACY", - "center": "POINT (692946.3534694594563916 2357683.8321378743276000)", - "surface": 12440000, - "canton": null, - "numero_insee": "89165" - } - }, - { - "pk": 9224, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FLEURY-LA-VALLEE", - "center": "POINT (682867.0183193502016366 2318869.4840516094118357)", - "surface": 15170000, - "canton": null, - "numero_insee": "89167" - } - }, - { - "pk": 26899, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FLEYS", - "center": "POINT (714031.9000293631106615 2314029.5542180757038295)", - "surface": 8150000, - "canton": null, - "numero_insee": "89168" - } - }, - { - "pk": 16093, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FLOGNY-LA-CHAPELLE", - "center": "POINT (715496.3277805157704279 2330154.2764007542282343)", - "surface": 23760000, - "canton": null, - "numero_insee": "89169" - } - }, - { - "pk": 33097, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FOISSY-LES-VEZELAY", - "center": "POINT (707284.9338153421413153 2271739.1432362990453839)", - "surface": 5710000, - "canton": null, - "numero_insee": "89170" - } - }, - { - "pk": 25101, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FOISSY-SUR-VANNE", - "center": "POINT (686832.9905040763551369 2358732.8946642624214292)", - "surface": 15820000, - "canton": null, - "numero_insee": "89171" - } - }, - { - "pk": 31894, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTAINE-LA-GAILLARDE", - "center": "POINT (679026.1279399781487882 2358867.0039718924090266)", - "surface": 10500000, - "canton": null, - "numero_insee": "89172" - } - }, - { - "pk": 24001, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTAINES", - "center": "POINT (668918.6879529155557975 2299636.8107481319457293)", - "surface": 25170000, - "canton": null, - "numero_insee": "89173" - } - }, - { - "pk": 30501, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTENAILLES", - "center": "POINT (685287.8178543959511444 2292969.8640500339679420)", - "surface": 2820000, - "canton": null, - "numero_insee": "89174" - } - }, - { - "pk": 30759, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTENAY-PRES-CHABLIS", - "center": "POINT (710604.0679716761223972 2317002.7880222494713962)", - "surface": 5060000, - "canton": null, - "numero_insee": "89175" - } - }, - { - "pk": 21472, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTENAY-PRES-VEZELAY", - "center": "POINT (705804.1939563038758934 2269324.6622352735139430)", - "surface": 15850000, - "canton": null, - "numero_insee": "89176" - } - }, - { - "pk": 36406, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTENAY-SOUS-FOURONNES", - "center": "POINT (695103.2936188156018034 2292052.1549916919320822)", - "surface": 12270000, - "canton": null, - "numero_insee": "89177" - } - }, - { - "pk": 35396, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTENOUILLES", - "center": "POINT (652028.7539385872660205 2320610.5419887141324580)", - "surface": 16290000, - "canton": null, - "numero_insee": "89178" - } - }, - { - "pk": 23949, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FONTENOY", - "center": "POINT (671658.6526451192330569 2295156.4381352355703712)", - "surface": 15930000, - "canton": null, - "numero_insee": "89179" - } - }, - { - "pk": 34560, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FOUCHERES", - "center": "POINT (660260.9690260352799669 2353104.3444407358765602)", - "surface": 14730000, - "canton": null, - "numero_insee": "89180" - } - }, - { - "pk": 30692, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FOURNAUDIN", - "center": "POINT (697308.5381744080223143 2350715.6055524754337966)", - "surface": 9220000, - "canton": null, - "numero_insee": "89181" - } - }, - { - "pk": 7022, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FOURONNES", - "center": "POINT (691714.4155953793087974 2290422.2030860693193972)", - "surface": 17920000, - "canton": null, - "numero_insee": "89182" - } - }, - { - "pk": 3536, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FRESNES", - "center": "POINT (724188.2323487692046911 2308311.2678888100199401)", - "surface": 4960000, - "canton": null, - "numero_insee": "89183" - } - }, - { - "pk": 25880, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "FULVY", - "center": "POINT (736816.6520417139399797 2306116.7696346389129758)", - "surface": 3810000, - "canton": null, - "numero_insee": "89184" - } - }, - { - "pk": 19027, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GERMIGNY", - "center": "POINT (708558.5077225124696270 2333998.3815791714005172)", - "surface": 11870000, - "canton": null, - "numero_insee": "89186" - } - }, - { - "pk": 15805, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GIGNY", - "center": "POINT (747339.8235808843746781 2316113.9204247924499214)", - "surface": 10790000, - "canton": null, - "numero_insee": "89187" - } - }, - { - "pk": 10188, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GISY-LES-NOBLES", - "center": "POINT (667760.3826018352992833 2365676.8398612989112735)", - "surface": 11120000, - "canton": null, - "numero_insee": "89189" - } - }, - { - "pk": 9975, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GIVRY", - "center": "POINT (709814.7104046040913090 2280267.3890647757798433)", - "surface": 8530000, - "canton": null, - "numero_insee": "89190" - } - }, - { - "pk": 28407, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GLAND", - "center": "POINT (741144.8641865160316229 2314960.3761896686628461)", - "surface": 16740000, - "canton": null, - "numero_insee": "89191" - } - }, - { - "pk": 19246, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GRANDCHAMP", - "center": "POINT (662510.3041976660024375 2311892.2352475239895284)", - "surface": 28340000, - "canton": null, - "numero_insee": "89192" - } - }, - { - "pk": 20887, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GRIMAULT", - "center": "POINT (723084.2402624748647213 2296893.0101821240969002)", - "surface": 23890000, - "canton": null, - "numero_insee": "89194" - } - }, - { - "pk": 10819, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GRON", - "center": "POINT (668486.7275692698312923 2350772.0296243275515735)", - "surface": 11760000, - "canton": null, - "numero_insee": "89195" - } - }, - { - "pk": 10818, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GUERCHY", - "center": "POINT (681535.6479047435568646 2322460.9752419171854854)", - "surface": 11820000, - "canton": null, - "numero_insee": "89196" - } - }, - { - "pk": 26213, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GUILLON", - "center": "POINT (732113.8624962691683322 2282458.2511594123207033)", - "surface": 12180000, - "canton": null, - "numero_insee": "89197" - } - }, - { - "pk": 15494, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GURGY", - "center": "POINT (691459.4346941410331056 2320543.4161574244499207)", - "surface": 13130000, - "canton": null, - "numero_insee": "89198" - } - }, - { - "pk": 14036, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "GY-L'EVEQUE", - "center": "POINT (689813.1829398089321330 2302215.3569709402509034)", - "surface": 15100000, - "canton": null, - "numero_insee": "89199" - } - }, - { - "pk": 31663, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "HAUTERIVE", - "center": "POINT (694911.8643199672224000 2326477.1444896841421723)", - "surface": 9500000, - "canton": null, - "numero_insee": "89200" - } - }, - { - "pk": 12679, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "HERY", - "center": "POINT (697245.6548126026755199 2322694.0151391383260489)", - "surface": 21330000, - "canton": null, - "numero_insee": "89201" - } - }, - { - "pk": 36860, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "IRANCY", - "center": "POINT (701522.3059485144913197 2302214.4355993862263858)", - "surface": 12220000, - "canton": null, - "numero_insee": "89202" - } - }, - { - "pk": 20160, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ISLAND", - "center": "POINT (714568.2001677439548075 2274402.9897915199398994)", - "surface": 20680000, - "canton": null, - "numero_insee": "89203" - } - }, - { - "pk": 31229, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "L'ISLE-SUR-SEREIN", - "center": "POINT (726454.5749862289521843 2288915.3317807596176863)", - "surface": 4440000, - "canton": null, - "numero_insee": "89204" - } - }, - { - "pk": 33890, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JAULGES", - "center": "POINT (708293.9373131444444880 2329792.9628983922302723)", - "surface": 12440000, - "canton": null, - "numero_insee": "89205" - } - }, - { - "pk": 14501, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JOIGNY", - "center": "POINT (680029.7488643361721188 2334857.6405017040669918)", - "surface": 47220000, - "canton": null, - "numero_insee": "89206" - } - }, - { - "pk": 12651, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JOUANCY", - "center": "POINT (727674.7649448739830405 2298433.1653639920987189)", - "surface": 5980000, - "canton": null, - "numero_insee": "89207" - } - }, - { - "pk": 20850, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JOUX-LA-VILLE", - "center": "POINT (715217.6700414888327941 2292222.6365550546906888)", - "surface": 43690000, - "canton": null, - "numero_insee": "89208" - } - }, - { - "pk": 26586, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JOUY", - "center": "POINT (647156.4457767147105187 2352493.4278441295027733)", - "surface": 17610000, - "canton": null, - "numero_insee": "89209" - } - }, - { - "pk": 36795, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JULLY", - "center": "POINT (746990.6322006125701591 2310106.3191626411862671)", - "surface": 19890000, - "canton": null, - "numero_insee": "89210" - } - }, - { - "pk": 13504, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JUNAY", - "center": "POINT (720076.7040617046877742 2321086.2184048928320408)", - "surface": 3620000, - "canton": null, - "numero_insee": "89211" - } - }, - { - "pk": 8227, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "JUSSY", - "center": "POINT (692512.5510549974860623 2302538.4402350136078894)", - "surface": 7420000, - "canton": null, - "numero_insee": "89212" - } - }, - { - "pk": 3122, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LADUZ", - "center": "POINT (679446.0423015519045293 2321042.2352705476805568)", - "surface": 7470000, - "canton": null, - "numero_insee": "89213" - } - }, - { - "pk": 11466, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LAILLY", - "center": "POINT (686695.6671410367125645 2363134.9568550959229469)", - "surface": 22420000, - "canton": null, - "numero_insee": "89214" - } - }, - { - "pk": 34978, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LAIN", - "center": "POINT (675699.5675404523499310 2290687.0511015024967492)", - "surface": 10320000, - "canton": null, - "numero_insee": "89215" - } - }, - { - "pk": 30155, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LAINSECQ", - "center": "POINT (670955.3139337225584313 2283641.4253251026384532)", - "surface": 25160000, - "canton": null, - "numero_insee": "89216" - } - }, - { - "pk": 30502, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LALANDE", - "center": "POINT (673233.5771137319970876 2298272.1737736826762557)", - "surface": 10250000, - "canton": null, - "numero_insee": "89217" - } - }, - { - "pk": 13810, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LAROCHE-SAINT-CYDROINE", - "center": "POINT (684465.7640228521777317 2330992.2172140385955572)", - "surface": 9020000, - "canton": null, - "numero_insee": "89218" - } - }, - { - "pk": 37139, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LASSON", - "center": "POINT (709795.7527371459873393 2341514.5086381332948804)", - "surface": 7080000, - "canton": null, - "numero_insee": "89219" - } - }, - { - "pk": 18548, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LAVAU", - "center": "POINT (649593.5287926174933091 2288965.4707892546430230)", - "surface": 55430000, - "canton": null, - "numero_insee": "89220" - } - }, - { - "pk": 7265, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LEUGNY", - "center": "POINT (677930.9932842912385240 2299012.4261516570113599)", - "surface": 13420000, - "canton": null, - "numero_insee": "89221" - } - }, - { - "pk": 22882, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LEVIS", - "center": "POINT (674853.3212290290975943 2296084.1409349120222032)", - "surface": 12100000, - "canton": null, - "numero_insee": "89222" - } - }, - { - "pk": 34880, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LEZINNES", - "center": "POINT (729853.1327117767650634 2312962.9360719765536487)", - "surface": 16180000, - "canton": null, - "numero_insee": "89223" - } - }, - { - "pk": 29269, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LICHERES-PRES-AIGREMONT", - "center": "POINT (712926.1257369711529464 2302811.4993438255041838)", - "surface": 16390000, - "canton": null, - "numero_insee": "89224" - } - }, - { - "pk": 27552, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LICHERES-SUR-YONNE", - "center": "POINT (694724.9535064416704699 2277637.5372235984541476)", - "surface": 14260000, - "canton": null, - "numero_insee": "89225" - } - }, - { - "pk": 11079, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LIGNORELLES", - "center": "POINT (703884.9885799444746226 2318647.1306235743686557)", - "surface": 11390000, - "canton": null, - "numero_insee": "89226" - } - }, - { - "pk": 16098, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LIGNY-LE-CHATEL", - "center": "POINT (705829.5454652610933408 2325368.7294016606174409)", - "surface": 27430000, - "canton": null, - "numero_insee": "89227" - } - }, - { - "pk": 25137, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LINDRY", - "center": "POINT (681826.3454711914528161 2311755.2248760168440640)", - "surface": 15130000, - "canton": null, - "numero_insee": "89228" - } - }, - { - "pk": 12276, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LIXY", - "center": "POINT (657389.8569038241403177 2361286.1421098471619189)", - "surface": 12210000, - "canton": null, - "numero_insee": "89229" - } - }, - { - "pk": 35253, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LOOZE", - "center": "POINT (682341.4734029533574358 2333676.2869998319074512)", - "surface": 6430000, - "canton": null, - "numero_insee": "89230" - } - }, - { - "pk": 20407, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LUCY-LE-BOIS", - "center": "POINT (716769.6870778780430555 2286231.0660632639192045)", - "surface": 10680000, - "canton": null, - "numero_insee": "89232" - } - }, - { - "pk": 5443, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LUCY-SUR-CURE", - "center": "POINT (707296.7495981594547629 2293956.8799045877531171)", - "surface": 10490000, - "canton": null, - "numero_insee": "89233" - } - }, - { - "pk": 9638, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LUCY-SUR-YONNE", - "center": "POINT (692602.2483257896965370 2280121.5585633772425354)", - "surface": 8090000, - "canton": null, - "numero_insee": "89234" - } - }, - { - "pk": 18771, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MAGNY", - "center": "POINT (723163.4264936863910407 2275776.9703024327754974)", - "surface": 30470000, - "canton": null, - "numero_insee": "89235" - } - }, - { - "pk": 10942, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MAILLOT", - "center": "POINT (672777.7654842140618712 2352209.3211873322725296)", - "surface": 6180000, - "canton": null, - "numero_insee": "89236" - } - }, - { - "pk": 35620, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MAILLY-LA-VILLE", - "center": "POINT (702038.7539970499929041 2288508.0628984174691141)", - "surface": 23800000, - "canton": null, - "numero_insee": "89237" - } - }, - { - "pk": 18579, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MAILLY-LE-CHATEAU", - "center": "POINT (694939.5873188645346090 2287747.3773323968052864)", - "surface": 37350000, - "canton": null, - "numero_insee": "89238" - } - }, - { - "pk": 33978, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MALAY-LE-PETIT", - "center": "POINT (677262.1591513609746471 2354448.8509630500338972)", - "surface": 10910000, - "canton": null, - "numero_insee": "89240" - } - }, - { - "pk": 3610, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MALICORNE", - "center": "POINT (656994.6343663447769359 2313246.7599139236845076)", - "surface": 15890000, - "canton": null, - "numero_insee": "89241" - } - }, - { - "pk": 3312, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MALIGNY", - "center": "POINT (709281.9507317597744986 2319493.4939084355719388)", - "surface": 22140000, - "canton": null, - "numero_insee": "89242" - } - }, - { - "pk": 13215, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MARMEAUX", - "center": "POINT (733055.9119234690442681 2289371.7245006258599460)", - "surface": 10920000, - "canton": null, - "numero_insee": "89244" - } - }, - { - "pk": 29313, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MARSANGY", - "center": "POINT (667622.4707168043823913 2346461.5376989450305700)", - "surface": 14590000, - "canton": null, - "numero_insee": "89245" - } - }, - { - "pk": 22181, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MASSANGIS", - "center": "POINT (723817.8738062700722367 2292996.1758729894645512)", - "surface": 41770000, - "canton": null, - "numero_insee": "89246" - } - }, - { - "pk": 21047, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MELISEY", - "center": "POINT (729942.7553237399552017 2325973.6591049414128065)", - "surface": 22290000, - "canton": null, - "numero_insee": "89247" - } - }, - { - "pk": 11577, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MENADES", - "center": "POINT (712682.9408879100810736 2272485.4755106773227453)", - "surface": 5720000, - "canton": null, - "numero_insee": "89248" - } - }, - { - "pk": 4170, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MERCY", - "center": "POINT (696119.5358331683091819 2337495.6849143737927079)", - "surface": 2650000, - "canton": null, - "numero_insee": "89249" - } - }, - { - "pk": 13918, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MERE", - "center": "POINT (710851.6614856189116836 2323209.6329886135645211)", - "surface": 11800000, - "canton": null, - "numero_insee": "89250" - } - }, - { - "pk": 34979, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MERRY-LA-VALLEE", - "center": "POINT (673233.0122819789685309 2310181.4170927749946713)", - "surface": 18410000, - "canton": null, - "numero_insee": "89251" - } - }, - { - "pk": 6914, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MERRY-SEC", - "center": "POINT (686263.1315629140008241 2295980.4706219085492194)", - "surface": 14250000, - "canton": null, - "numero_insee": "89252" - } - }, - { - "pk": 32108, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MERRY-SUR-YONNE", - "center": "POINT (697761.0939026772975922 2285469.4517436786554754)", - "surface": 23650000, - "canton": null, - "numero_insee": "89253" - } - }, - { - "pk": 17350, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MEZILLES", - "center": "POINT (663315.5609713768353686 2299489.4131970517337322)", - "surface": 52540000, - "canton": null, - "numero_insee": "89254" - } - }, - { - "pk": 36091, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MICHERY", - "center": "POINT (667436.5189717459725216 2368476.1415499779395759)", - "surface": 17100000, - "canton": null, - "numero_insee": "89255" - } - }, - { - "pk": 5624, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MIGE", - "center": "POINT (689747.8377823814516887 2298111.6034592017531395)", - "surface": 14760000, - "canton": null, - "numero_insee": "89256" - } - }, - { - "pk": 11923, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MIGENNES", - "center": "POINT (689167.2882001476828009 2331232.1513249096460640)", - "surface": 16620000, - "canton": null, - "numero_insee": "89257" - } - }, - { - "pk": 31766, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MOLAY", - "center": "POINT (720109.1328268315410241 2305474.4673687294125557)", - "surface": 12040000, - "canton": null, - "numero_insee": "89259" - } - }, - { - "pk": 28178, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MOLESMES", - "center": "POINT (684209.0416756212944165 2290358.6913552628830075)", - "surface": 9470000, - "canton": null, - "numero_insee": "89260" - } - }, - { - "pk": 25386, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MOLINONS", - "center": "POINT (689734.9127382733859122 2358757.4540367810986936)", - "surface": 11950000, - "canton": null, - "numero_insee": "89261" - } - }, - { - "pk": 22782, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MOLOSMES", - "center": "POINT (726057.9148753429763019 2323839.0613315757364035)", - "surface": 24620000, - "canton": null, - "numero_insee": "89262" - } - }, - { - "pk": 18434, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MONETEAU", - "center": "POINT (693588.0026271587703377 2317358.9857245041057467)", - "surface": 18560000, - "canton": null, - "numero_insee": "89263" - } - }, - { - "pk": 23188, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MONTACHER-VILLEGARDIN", - "center": "POINT (651762.0492023325059563 2352232.0426828116178513)", - "surface": 29120000, - "canton": null, - "numero_insee": "89264" - } - }, - { - "pk": 25717, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MONTIGNY-LA-RESLE", - "center": "POINT (700580.1533053377643228 2318919.3564737010747194)", - "surface": 16090000, - "canton": null, - "numero_insee": "89265" - } - }, - { - "pk": 17734, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MONTILLOT", - "center": "POINT (703916.3720918827457353 2279516.8324286192655563)", - "surface": 22590000, - "canton": null, - "numero_insee": "89266" - } - }, - { - "pk": 9246, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MONTREAL", - "center": "POINT (728892.8485994484508410 2284632.6355031812563539)", - "surface": 7440000, - "canton": null, - "numero_insee": "89267" - } - }, - { - "pk": 27786, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MONT-SAINT-SULPICE", - "center": "POINT (696592.6940156279597431 2328893.2008051075972617)", - "surface": 19760000, - "canton": null, - "numero_insee": "89268" - } - }, - { - "pk": 34869, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MOUFFY", - "center": "POINT (688473.1669309707358479 2294998.3871935526840389)", - "surface": 4920000, - "canton": null, - "numero_insee": "89270" - } - }, - { - "pk": 9749, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MOULINS-SUR-OUANNE", - "center": "POINT (675513.2186412133742124 2300893.4705769568681717)", - "surface": 10080000, - "canton": null, - "numero_insee": "89272" - } - }, - { - "pk": 21949, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "MOUTIERS-EN-PUISAYE", - "center": "POINT (662193.2768894047476351 2290172.6438423763029277)", - "surface": 31830000, - "canton": null, - "numero_insee": "89273" - } - }, - { - "pk": 12005, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "NAILLY", - "center": "POINT (664520.7431223165476695 2358244.0647566327825189)", - "surface": 21570000, - "canton": null, - "numero_insee": "89274" - } - }, - { - "pk": 13007, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "NEUILLY", - "center": "POINT (682317.5803635842166841 2324669.2653368958272040)", - "surface": 13610000, - "canton": null, - "numero_insee": "89275" - } - }, - { - "pk": 3313, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "NEUVY-SAUTOUR", - "center": "POINT (708013.2002044004620984 2339297.7454368611797690)", - "surface": 19130000, - "canton": null, - "numero_insee": "89276" - } - }, - { - "pk": 14742, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "NITRY", - "center": "POINT (715564.4701427452964708 2298530.5230791047215462)", - "surface": 34630000, - "canton": null, - "numero_insee": "89277" - } - }, - { - "pk": 7085, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "NOE", - "center": "POINT (678893.6857505791122094 2350859.9845496672205627)", - "surface": 8600000, - "canton": null, - "numero_insee": "89278" - } - }, - { - "pk": 8991, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "NUITS", - "center": "POINT (739337.9830085057765245 2303836.4157631848938763)", - "surface": 11590000, - "canton": null, - "numero_insee": "89280" - } - }, - { - "pk": 36444, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LES ORMES", - "center": "POINT (668975.1205644435249269 2316650.4458007300272584)", - "surface": 8590000, - "canton": null, - "numero_insee": "89281" - } - }, - { - "pk": 7040, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ORMOY", - "center": "POINT (692387.2695680049946532 2329157.8179578208364546)", - "surface": 13420000, - "canton": null, - "numero_insee": "89282" - } - }, - { - "pk": 26866, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "OUANNE", - "center": "POINT (681260.4170772461220622 2295838.0745543260127306)", - "surface": 38680000, - "canton": null, - "numero_insee": "89283" - } - }, - { - "pk": 5286, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PACY-SUR-ARMANCON", - "center": "POINT (730585.0783754073781893 2309266.2947949911467731)", - "surface": 13540000, - "canton": null, - "numero_insee": "89284" - } - }, - { - "pk": 27944, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PAILLY", - "center": "POINT (673912.8674327520420775 2371833.2556185158900917)", - "surface": 14750000, - "canton": null, - "numero_insee": "89285" - } - }, - { - "pk": 27363, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PARLY", - "center": "POINT (675861.9030698960414156 2307001.1600897656753659)", - "surface": 20900000, - "canton": null, - "numero_insee": "89286" - } - }, - { - "pk": 8128, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PARON", - "center": "POINT (667155.4303317243466154 2354363.4449378433637321)", - "surface": 10540000, - "canton": null, - "numero_insee": "89287" - } - }, - { - "pk": 3648, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PAROY-SUR-THOLON", - "center": "POINT (677480.4293641309486702 2328631.4000371610745788)", - "surface": 4290000, - "canton": null, - "numero_insee": "89289" - } - }, - { - "pk": 24458, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PASILLY", - "center": "POINT (731049.1241211653687060 2301764.4080033530481160)", - "surface": 9970000, - "canton": null, - "numero_insee": "89290" - } - }, - { - "pk": 6128, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PASSY", - "center": "POINT (671325.8043887333478779 2346392.7497719898819923)", - "surface": 5670000, - "canton": null, - "numero_insee": "89291" - } - }, - { - "pk": 32474, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PERCEY", - "center": "POINT (711987.1386224110610783 2330925.1143089770339429)", - "surface": 9540000, - "canton": null, - "numero_insee": "89292" - } - }, - { - "pk": 35468, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PERRIGNY", - "center": "POINT (689307.0325883285840973 2314720.7492938786745071)", - "surface": 12840000, - "canton": null, - "numero_insee": "89295" - } - }, - { - "pk": 24121, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PERRIGNY-SUR-ARMANCON", - "center": "POINT (741269.9610166759230196 2300250.0351426992565393)", - "surface": 14030000, - "canton": null, - "numero_insee": "89296" - } - }, - { - "pk": 27144, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PIERRE-PERTHUIS", - "center": "POINT (709690.9311317435931414 2271259.1394735975190997)", - "surface": 7420000, - "canton": null, - "numero_insee": "89297" - } - }, - { - "pk": 17262, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PIFFONDS", - "center": "POINT (659871.2813891320256516 2339991.3124290108680725)", - "surface": 24510000, - "canton": null, - "numero_insee": "89298" - } - }, - { - "pk": 10553, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PIMELLES", - "center": "POINT (737323.4974977397359908 2317129.5768139213323593)", - "surface": 9960000, - "canton": null, - "numero_insee": "89299" - } - }, - { - "pk": 32859, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PISY", - "center": "POINT (735783.3661118424497545 2286392.5301315858960152)", - "surface": 12250000, - "canton": null, - "numero_insee": "89300" - } - }, - { - "pk": 30137, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PLESSIS-SAINT-JEAN", - "center": "POINT (671610.5212377720745280 2371913.8708846010267735)", - "surface": 11120000, - "canton": null, - "numero_insee": "89302" - } - }, - { - "pk": 19111, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "POILLY-SUR-SEREIN", - "center": "POINT (716481.9722825705539435 2308345.9370415695011616)", - "surface": 21260000, - "canton": null, - "numero_insee": "89303" - } - }, - { - "pk": 27995, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "POILLY-SUR-THOLON", - "center": "POINT (679479.0428209174424410 2317139.5284733823500574)", - "surface": 19610000, - "canton": null, - "numero_insee": "89304" - } - }, - { - "pk": 27145, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PONTAUBERT", - "center": "POINT (715637.5901509411633015 2278115.0205828049220145)", - "surface": 3890000, - "canton": null, - "numero_insee": "89306" - } - }, - { - "pk": 32119, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PONTIGNY", - "center": "POINT (703138.7089300794759765 2324044.9331123712472618)", - "surface": 12020000, - "canton": null, - "numero_insee": "89307" - } - }, - { - "pk": 34561, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PONT-SUR-VANNE", - "center": "POINT (681755.0006932660471648 2355687.7279729945585132)", - "surface": 10660000, - "canton": null, - "numero_insee": "89308" - } - }, - { - "pk": 11514, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PONT-SUR-YONNE", - "center": "POINT (663565.2261657335329801 2364740.7542206561192870)", - "surface": 13960000, - "canton": null, - "numero_insee": "89309" - } - }, - { - "pk": 35736, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LA POSTOLLE", - "center": "POINT (682872.8467330033890903 2365504.3662972776219249)", - "surface": 11590000, - "canton": null, - "numero_insee": "89310" - } - }, - { - "pk": 27461, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "POURRAIN", - "center": "POINT (680558.4394617002690211 2307841.4877436896786094)", - "surface": 24000000, - "canton": null, - "numero_insee": "89311" - } - }, - { - "pk": 20289, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PRECY-LE-SEC", - "center": "POINT (712040.8423364165937528 2289193.3247726941481233)", - "surface": 15720000, - "canton": null, - "numero_insee": "89312" - } - }, - { - "pk": 10601, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PRECY-SUR-VRIN", - "center": "POINT (666852.8675452494062483 2330943.4123318768106401)", - "surface": 21520000, - "canton": null, - "numero_insee": "89313" - } - }, - { - "pk": 10658, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PREGILBERT", - "center": "POINT (700993.1002711456967518 2293803.3789267069660127)", - "surface": 6710000, - "canton": null, - "numero_insee": "89314" - } - }, - { - "pk": 36861, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PREHY", - "center": "POINT (708788.4403819612925872 2306879.5978955379687250)", - "surface": 14300000, - "canton": null, - "numero_insee": "89315" - } - }, - { - "pk": 8990, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PROVENCY", - "center": "POINT (721696.1499522840604186 2283570.7330895159393549)", - "surface": 12020000, - "canton": null, - "numero_insee": "89316" - } - }, - { - "pk": 14862, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PRUNOY", - "center": "POINT (660516.0596038231160492 2322883.8337822705507278)", - "surface": 24770000, - "canton": null, - "numero_insee": "89317" - } - }, - { - "pk": 15013, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "QUARRE-LES-TOMBES", - "center": "POINT (725871.5397159160347655 2263289.8986570625565946)", - "surface": 46470000, - "canton": null, - "numero_insee": "89318" - } - }, - { - "pk": 29371, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "QUENNE", - "center": "POINT (698456.6099263036157936 2309694.2857051240280271)", - "surface": 8750000, - "canton": null, - "numero_insee": "89319" - } - }, - { - "pk": 12067, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "QUINCEROT", - "center": "POINT (736727.0240912252338603 2328433.1376839689910412)", - "surface": 9930000, - "canton": null, - "numero_insee": "89320" - } - }, - { - "pk": 5025, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "RAVIERES", - "center": "POINT (743618.0384767040377483 2306574.9139671586453915)", - "surface": 22030000, - "canton": null, - "numero_insee": "89321" - } - }, - { - "pk": 11605, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ROFFEY", - "center": "POINT (717743.6914175489218906 2324769.2429312174208462)", - "surface": 8660000, - "canton": null, - "numero_insee": "89323" - } - }, - { - "pk": 32373, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ROGNY-LES-SEPT-ECLUSES", - "center": "POINT (641557.1630969045218080 2304409.8628491978161037)", - "surface": 32650000, - "canton": null, - "numero_insee": "89324" - } - }, - { - "pk": 28179, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "RONCHERES", - "center": "POINT (658843.6170742701506242 2295748.7704944629222155)", - "surface": 11340000, - "canton": null, - "numero_insee": "89325" - } - }, - { - "pk": 34202, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ROSOY", - "center": "POINT (672593.6989281007554382 2350306.3593269893899560)", - "surface": 6070000, - "canton": null, - "numero_insee": "89326" - } - }, - { - "pk": 7211, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ROUSSON", - "center": "POINT (668845.2564405077137053 2343869.9300116398371756)", - "surface": 5660000, - "canton": null, - "numero_insee": "89327" - } - }, - { - "pk": 34788, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "ROUVRAY", - "center": "POINT (699645.6183541706996039 2322914.4971863543614745)", - "surface": 7640000, - "canton": null, - "numero_insee": "89328" - } - }, - { - "pk": 27588, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "RUGNY", - "center": "POINT (735568.7283294546650723 2323419.4849579324945807)", - "surface": 13860000, - "canton": null, - "numero_insee": "89329" - } - }, - { - "pk": 34195, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SACY", - "center": "POINT (710873.0122899214038625 2297089.6342239468358457)", - "surface": 27670000, - "canton": null, - "numero_insee": "89330" - } - }, - { - "pk": 4943, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINPUITS", - "center": "POINT (668787.5390254550147802 2279619.9329926860518754)", - "surface": 22810000, - "canton": null, - "numero_insee": "89331" - } - }, - { - "pk": 9925, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-AGNAN", - "center": "POINT (653538.3862865199334919 2367057.8787688147276640)", - "surface": 13270000, - "canton": null, - "numero_insee": "89332" - } - }, - { - "pk": 33840, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-ANDRE-EN-TERRE-PLAINE", - "center": "POINT (729356.0403525813017040 2277230.6766201630234718)", - "surface": 14310000, - "canton": null, - "numero_insee": "89333" - } - }, - { - "pk": 18182, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-AUBIN-CHATEAU-NEUF", - "center": "POINT (671399.6201563450740650 2313968.8544384781271219)", - "surface": 24990000, - "canton": null, - "numero_insee": "89334" - } - }, - { - "pk": 35502, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-AUBIN-SUR-YONNE", - "center": "POINT (676535.8224952941527590 2333827.3456905609928071)", - "surface": 8920000, - "canton": null, - "numero_insee": "89335" - } - }, - { - "pk": 17163, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-BRANCHER", - "center": "POINT (724702.7541008557891473 2271286.4299782686866820)", - "surface": 22250000, - "canton": null, - "numero_insee": "89336" - } - }, - { - "pk": 20769, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-BRIS-LE-VINEUX", - "center": "POINT (698994.2591136022238061 2305295.4299128539860249)", - "surface": 31330000, - "canton": null, - "numero_insee": "89337" - } - }, - { - "pk": 19778, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-CLEMENT", - "center": "POINT (672021.4888526049908251 2358807.7932886546477675)", - "surface": 8460000, - "canton": null, - "numero_insee": "89338" - } - }, - { - "pk": 7234, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINTE-COLOMBE", - "center": "POINT (721765.6416162122040987 2287174.1769276047125459)", - "surface": 18510000, - "canton": null, - "numero_insee": "89339" - } - }, - { - "pk": 37339, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINTE-COLOMBE-SUR-LOING", - "center": "POINT (667224.7516965621616691 2286912.5250238315202296)", - "surface": 14810000, - "canton": null, - "numero_insee": "89340" - } - }, - { - "pk": 23331, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-CYR-LES-COLONS", - "center": "POINT (706908.3110605123220012 2304361.7167250574566424)", - "surface": 34600000, - "canton": null, - "numero_insee": "89341" - } - }, - { - "pk": 9785, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-DENIS-LES-SENS", - "center": "POINT (669110.2679099049419165 2359884.0030742175877094)", - "surface": 6740000, - "canton": null, - "numero_insee": "89342" - } - }, - { - "pk": 32207, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-DENIS-SUR-OUANNE", - "center": "POINT (660183.3553306852700189 2314874.9016011552885175)", - "surface": 10190000, - "canton": null, - "numero_insee": "89343" - } - }, - { - "pk": 17020, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-FARGEAU", - "center": "POINT (656157.7363255482632667 2293824.6156887747347355)", - "surface": 68980000, - "canton": null, - "numero_insee": "89344" - } - }, - { - "pk": 15491, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-FLORENTIN", - "center": "POINT (702054.0717610287247226 2333943.2483143168501556)", - "surface": 28380000, - "canton": null, - "numero_insee": "89345" - } - }, - { - "pk": 13083, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-GEORGES-SUR-BAULCHE", - "center": "POINT (688429.2702707925345749 2312011.2410243269987404)", - "surface": 9670000, - "canton": null, - "numero_insee": "89346" - } - }, - { - "pk": 21022, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-GERMAIN-DES-CHAMPS", - "center": "POINT (719511.6886464803246781 2269741.1590410871431231)", - "surface": 36300000, - "canton": null, - "numero_insee": "89347" - } - }, - { - "pk": 23251, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-JULIEN-DU-SAULT", - "center": "POINT (669999.2602312661474571 2337574.9639615407213569)", - "surface": 24070000, - "canton": null, - "numero_insee": "89348" - } - }, - { - "pk": 23120, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-LEGER-VAUBAN", - "center": "POINT (730160.2609766672831029 2265027.6987995789386332)", - "surface": 33900000, - "canton": null, - "numero_insee": "89349" - } - }, - { - "pk": 16097, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-LOUP-D'ORDON", - "center": "POINT (660014.4257679523434490 2334888.6910944264382124)", - "surface": 18070000, - "canton": null, - "numero_insee": "89350" - } - }, - { - "pk": 15982, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINTE-MAGNANCE", - "center": "POINT (731785.8428619293263182 2273948.6762793059460819)", - "surface": 19520000, - "canton": null, - "numero_insee": "89351" - } - }, - { - "pk": 17019, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MARTIN-DES-CHAMPS", - "center": "POINT (651938.7021584116155282 2295690.5152061195112765)", - "surface": 34280000, - "canton": null, - "numero_insee": "89352" - } - }, - { - "pk": 25069, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MARTIN-D'ORDON", - "center": "POINT (662301.6314349696040154 2336609.2775006005540490)", - "surface": 10210000, - "canton": null, - "numero_insee": "89353" - } - }, - { - "pk": 27920, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MARTIN-DU-TERTRE", - "center": "POINT (667136.8358283081324771 2356564.9088108679279685)", - "surface": 6840000, - "canton": null, - "numero_insee": "89354" - } - }, - { - "pk": 26441, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MARTIN-SUR-ARMANCON", - "center": "POINT (729483.2153830779716372 2321166.0925017162226140)", - "surface": 14200000, - "canton": null, - "numero_insee": "89355" - } - }, - { - "pk": 37108, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MARTIN-SUR-OCRE", - "center": "POINT (673812.2898032050579786 2312688.2413915451616049)", - "surface": 4640000, - "canton": null, - "numero_insee": "89356" - } - }, - { - "pk": 16695, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MARTIN-SUR-OUANNE", - "center": "POINT (656863.3218851074343547 2316948.4949919180944562)", - "surface": 15290000, - "canton": null, - "numero_insee": "89358" - } - }, - { - "pk": 31685, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MAURICE-AUX-RICHES-HOMMES", - "center": "POINT (686131.8341726070502773 2370635.6463314052671194)", - "surface": 33190000, - "canton": null, - "numero_insee": "89359" - } - }, - { - "pk": 9899, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MAURICE-LE-VIEIL", - "center": "POINT (677201.9766722160857171 2314218.0481740105897188)", - "surface": 4950000, - "canton": null, - "numero_insee": "89360" - } - }, - { - "pk": 6853, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MAURICE-THIZOUAILLE", - "center": "POINT (676792.3920064503327012 2315315.4314631517045200)", - "surface": 1940000, - "canton": null, - "numero_insee": "89361" - } - }, - { - "pk": 27660, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-MORE", - "center": "POINT (708054.0914008143590763 2287258.0180687964893878)", - "surface": 12160000, - "canton": null, - "numero_insee": "89362" - } - }, - { - "pk": 33093, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINTE-PALLAYE", - "center": "POINT (700876.9200227884575725 2295703.8861592197790742)", - "surface": 4070000, - "canton": null, - "numero_insee": "89363" - } - }, - { - "pk": 14416, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-PERE", - "center": "POINT (708462.9040400705998763 2274451.2949832831509411)", - "surface": 15760000, - "canton": null, - "numero_insee": "89364" - } - }, - { - "pk": 20333, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-PRIVE", - "center": "POINT (649908.5865126597927883 2299076.0541064413264394)", - "surface": 41410000, - "canton": null, - "numero_insee": "89365" - } - }, - { - "pk": 30320, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-ROMAIN-LE-PREUX", - "center": "POINT (668502.9908236258197576 2325152.9516629208810627)", - "surface": 10440000, - "canton": null, - "numero_insee": "89366" - } - }, - { - "pk": 15884, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINTS-EN-PUISAYE", - "center": "POINT (670185.4828428998589516 2291841.3993078246712685)", - "surface": 27610000, - "canton": null, - "numero_insee": "89367" - } - }, - { - "pk": 19225, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-SAUVEUR-EN-PUISAYE", - "center": "POINT (665166.6952687696320936 2293600.4237531921826303)", - "surface": 30630000, - "canton": null, - "numero_insee": "89368" - } - }, - { - "pk": 20278, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAINT-SEROTIN", - "center": "POINT (661194.0572611589450389 2361118.1041511357761919)", - "surface": 14160000, - "canton": null, - "numero_insee": "89369" - } - }, - { - "pk": 19717, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SALIGNY", - "center": "POINT (675432.2007432022364810 2357835.8847826151177287)", - "surface": 9940000, - "canton": null, - "numero_insee": "89373" - } - }, - { - "pk": 33768, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAMBOURG", - "center": "POINT (725378.8784975203452632 2309522.3071998758241534)", - "surface": 12610000, - "canton": null, - "numero_insee": "89374" - } - }, - { - "pk": 7862, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SANTIGNY", - "center": "POINT (734270.3800532617606223 2287780.7799411755986512)", - "surface": 9450000, - "canton": null, - "numero_insee": "89375" - } - }, - { - "pk": 5565, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SARRY", - "center": "POINT (730583.6266492019640282 2297657.2479828787036240)", - "surface": 25690000, - "canton": null, - "numero_insee": "89376" - } - }, - { - "pk": 13353, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAUVIGNY-LE-BEUREAL", - "center": "POINT (733359.7989451338071376 2277164.6118547227233648)", - "surface": 4780000, - "canton": null, - "numero_insee": "89377" - } - }, - { - "pk": 26115, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAUVIGNY-LE-BOIS", - "center": "POINT (721922.6278301017591730 2280470.1898502069525421)", - "surface": 15330000, - "canton": null, - "numero_insee": "89378" - } - }, - { - "pk": 23320, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SAVIGNY-SUR-CLAIRIS", - "center": "POINT (655649.8609604017110541 2342157.3337776823900640)", - "surface": 16420000, - "canton": null, - "numero_insee": "89380" - } - }, - { - "pk": 13048, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SCEAUX", - "center": "POINT (726620.0840039863251150 2281210.6303420173935592)", - "surface": 13160000, - "canton": null, - "numero_insee": "89381" - } - }, - { - "pk": 30203, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SEIGNELAY", - "center": "POINT (693938.2897776835598052 2323266.4644335024058819)", - "surface": 13570000, - "canton": null, - "numero_insee": "89382" - } - }, - { - "pk": 28527, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SEMENTRON", - "center": "POINT (676981.8873970066197217 2292899.6219174801371992)", - "surface": 11780000, - "canton": null, - "numero_insee": "89383" - } - }, - { - "pk": 13377, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SENAN", - "center": "POINT (676316.8260260762181133 2324218.2199676623567939)", - "surface": 17660000, - "canton": null, - "numero_insee": "89384" - } - }, - { - "pk": 5370, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SENNEVOY-LE-BAS", - "center": "POINT (747765.6479103207821026 2313115.2322750999592245)", - "surface": 8710000, - "canton": null, - "numero_insee": "89385" - } - }, - { - "pk": 13677, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SENNEVOY-LE-HAUT", - "center": "POINT (744353.9068418807582930 2314187.0538355479948223)", - "surface": 8900000, - "canton": null, - "numero_insee": "89386" - } - }, - { - "pk": 19645, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SENS", - "center": "POINT (671448.1486014160327613 2355600.5949912099167705)", - "surface": 21840000, - "canton": null, - "numero_insee": "89387" - } - }, - { - "pk": 29964, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SEPEAUX", - "center": "POINT (666882.4488425448071212 2327441.0110034192912281)", - "surface": 20010000, - "canton": null, - "numero_insee": "89388" - } - }, - { - "pk": 8607, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SERBONNES", - "center": "POINT (664617.7845571133075282 2370453.7869098344817758)", - "surface": 9950000, - "canton": null, - "numero_insee": "89390" - } - }, - { - "pk": 24762, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SERGINES", - "center": "POINT (667705.4411785620031878 2372181.0957584320567548)", - "surface": 18840000, - "canton": null, - "numero_insee": "89391" - } - }, - { - "pk": 6228, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SERMIZELLES", - "center": "POINT (710089.4713831378612667 2283272.1048189233988523)", - "surface": 7110000, - "canton": null, - "numero_insee": "89392" - } - }, - { - "pk": 28212, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SERRIGNY", - "center": "POINT (717917.6392724786419421 2316064.0611624391749501)", - "surface": 7430000, - "canton": null, - "numero_insee": "89393" - } - }, - { - "pk": 11556, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SERY", - "center": "POINT (701810.6295072294306010 2291808.7324785329401493)", - "surface": 4310000, - "canton": null, - "numero_insee": "89394" - } - }, - { - "pk": 13779, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "LES SIEGES", - "center": "POINT (689081.0301756736589596 2353247.8676333343610168)", - "surface": 23790000, - "canton": null, - "numero_insee": "89395" - } - }, - { - "pk": 25791, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SOMMECAISE", - "center": "POINT (666280.8477416111854836 2315726.9976953733712435)", - "surface": 15610000, - "canton": null, - "numero_insee": "89397" - } - }, - { - "pk": 17063, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SORMERY", - "center": "POINT (705955.0100301420316100 2345985.3055325532332063)", - "surface": 31170000, - "canton": null, - "numero_insee": "89398" - } - }, - { - "pk": 31809, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SOUCY", - "center": "POINT (673497.9574250467121601 2361722.3966985568404198)", - "surface": 21460000, - "canton": null, - "numero_insee": "89399" - } - }, - { - "pk": 21471, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SOUGERES-EN-PUISAYE", - "center": "POINT (676144.6866436263080686 2285386.6274046483449638)", - "surface": 26760000, - "canton": null, - "numero_insee": "89400" - } - }, - { - "pk": 9247, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "STIGNY", - "center": "POINT (742483.2197193693136796 2310568.3623311072587967)", - "surface": 18090000, - "canton": null, - "numero_insee": "89403" - } - }, - { - "pk": 28871, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "SUBLIGNY", - "center": "POINT (664071.9540871659992263 2352135.7796341190114617)", - "surface": 7840000, - "canton": null, - "numero_insee": "89404" - } - }, - { - "pk": 29382, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TAINGY", - "center": "POINT (680502.1592719173058867 2290827.7332783122546971)", - "surface": 20860000, - "canton": null, - "numero_insee": "89405" - } - }, - { - "pk": 9893, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TALCY", - "center": "POINT (730768.7141695173922926 2287650.9475734890438616)", - "surface": 6900000, - "canton": null, - "numero_insee": "89406" - } - }, - { - "pk": 35501, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TANLAY", - "center": "POINT (731014.8620363625232130 2317576.3458745493553579)", - "surface": 38580000, - "canton": null, - "numero_insee": "89407" - } - }, - { - "pk": 18812, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TANNERRE-EN-PUISAYE", - "center": "POINT (660172.8184916876489297 2304266.6211846647784114)", - "surface": 29160000, - "canton": null, - "numero_insee": "89408" - } - }, - { - "pk": 7383, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "THAROISEAU", - "center": "POINT (711262.3994993740925565 2274775.2723029707558453)", - "surface": 3470000, - "canton": null, - "numero_insee": "89409" - } - }, - { - "pk": 36071, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "THAROT", - "center": "POINT (714897.1825135786784813 2282812.4828119887970388)", - "surface": 2410000, - "canton": null, - "numero_insee": "89410" - } - }, - { - "pk": 24294, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "THEIL-SUR-VANNE", - "center": "POINT (681985.6032276636688039 2352087.0206843786872923)", - "surface": 11570000, - "canton": null, - "numero_insee": "89411" - } - }, - { - "pk": 11378, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "THIZY", - "center": "POINT (729562.7510252716019750 2288241.1774204727262259)", - "surface": 5540000, - "canton": null, - "numero_insee": "89412" - } - }, - { - "pk": 10686, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "THOREY", - "center": "POINT (732864.3115690870909020 2323696.7296059057116508)", - "surface": 6960000, - "canton": null, - "numero_insee": "89413" - } - }, - { - "pk": 26291, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "THORY", - "center": "POINT (718766.0315918311243877 2286848.4808402885682881)", - "surface": 8280000, - "canton": null, - "numero_insee": "89415" - } - }, - { - "pk": 17794, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "THURY", - "center": "POINT (672519.2615263198968023 2288058.1224050573073328)", - "surface": 23310000, - "canton": null, - "numero_insee": "89416" - } - }, - { - "pk": 28549, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TISSEY", - "center": "POINT (716893.1677635187515989 2318857.5172134740278125)", - "surface": 5980000, - "canton": null, - "numero_insee": "89417" - } - }, - { - "pk": 36345, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TONNERRE", - "center": "POINT (722813.4065654254518449 2317006.3071508416905999)", - "surface": 58590000, - "canton": null, - "numero_insee": "89418" - } - }, - { - "pk": 18934, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TOUCY", - "center": "POINT (671782.6944090806646273 2304164.5125402929261327)", - "surface": 35250000, - "canton": null, - "numero_insee": "89419" - } - }, - { - "pk": 3487, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TREIGNY", - "center": "POINT (663043.6978429061127827 2284275.1607189723290503)", - "surface": 52770000, - "canton": null, - "numero_insee": "89420" - } - }, - { - "pk": 10434, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TRICHEY", - "center": "POINT (734741.8096871431916952 2326514.8189876428805292)", - "surface": 6630000, - "canton": null, - "numero_insee": "89422" - } - }, - { - "pk": 18432, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TRONCHOY", - "center": "POINT (720132.6064223845023662 2326290.6592103764414787)", - "surface": 6560000, - "canton": null, - "numero_insee": "89423" - } - }, - { - "pk": 13351, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TRUCY-SUR-YONNE", - "center": "POINT (698299.6490047753322870 2292779.7756984559819102)", - "surface": 8410000, - "canton": null, - "numero_insee": "89424" - } - }, - { - "pk": 29095, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "TURNY", - "center": "POINT (704091.0483033587224782 2341566.2210405818186700)", - "surface": 25150000, - "canton": null, - "numero_insee": "89425" - } - }, - { - "pk": 26102, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VAL-DE-MERCY", - "center": "POINT (694056.8240108210593462 2297447.5326682268641889)", - "surface": 13420000, - "canton": null, - "numero_insee": "89426" - } - }, - { - "pk": 24160, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VALLAN", - "center": "POINT (690283.8911924675339833 2305722.0627077324315906)", - "surface": 11860000, - "canton": null, - "numero_insee": "89427" - } - }, - { - "pk": 7764, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VALLERY", - "center": "POINT (652700.2562043484067544 2359645.4041017289273441)", - "surface": 12440000, - "canton": null, - "numero_insee": "89428" - } - }, - { - "pk": 10187, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VAREILLES", - "center": "POINT (685285.2679448683047667 2352415.1557573783211410)", - "surface": 10320000, - "canton": null, - "numero_insee": "89429" - } - }, - { - "pk": 35734, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VARENNES", - "center": "POINT (708236.2901633607689291 2324788.6757361078634858)", - "surface": 10140000, - "canton": null, - "numero_insee": "89430" - } - }, - { - "pk": 20065, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VASSY-SOUS-PISY", - "center": "POINT (737775.4482676114421338 2287510.3342750915326178)", - "surface": 7470000, - "canton": null, - "numero_insee": "89431" - } - }, - { - "pk": 33745, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VAUDEURS", - "center": "POINT (690821.9766968258190900 2348559.1221222225576639)", - "surface": 27620000, - "canton": null, - "numero_insee": "89432" - } - }, - { - "pk": 18383, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VAULT-DE-LUGNY", - "center": "POINT (713327.4318192150676623 2279096.2221051547676325)", - "surface": 15220000, - "canton": null, - "numero_insee": "89433" - } - }, - { - "pk": 11323, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VAUMORT", - "center": "POINT (682210.2821992702083662 2349186.7726599201560020)", - "surface": 14710000, - "canton": null, - "numero_insee": "89434" - } - }, - { - "pk": 23636, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VENIZY", - "center": "POINT (699888.2071240512887016 2341530.6072423858568072)", - "surface": 44210000, - "canton": null, - "numero_insee": "89436" - } - }, - { - "pk": 25341, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VENOUSE", - "center": "POINT (701346.7932411585934460 2322928.9101193780079484)", - "surface": 8020000, - "canton": null, - "numero_insee": "89437" - } - }, - { - "pk": 4552, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VENOY", - "center": "POINT (698632.1678470678161830 2312598.0120576778426766)", - "surface": 23100000, - "canton": null, - "numero_insee": "89438" - } - }, - { - "pk": 23866, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VERGIGNY", - "center": "POINT (701593.5822630303446203 2329235.7923306669108570)", - "surface": 33730000, - "canton": null, - "numero_insee": "89439" - } - }, - { - "pk": 34093, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VERLIN", - "center": "POINT (666110.9772553099319339 2335840.8419573409482837)", - "surface": 14110000, - "canton": null, - "numero_insee": "89440" - } - }, - { - "pk": 29438, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VERMENTON", - "center": "POINT (706662.3897751772310585 2297954.6392017323523760)", - "surface": 25640000, - "canton": null, - "numero_insee": "89441" - } - }, - { - "pk": 32151, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VERNOY", - "center": "POINT (658735.9098313285503536 2344084.7935127909295261)", - "surface": 14490000, - "canton": null, - "numero_insee": "89442" - } - }, - { - "pk": 6478, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VERON", - "center": "POINT (674014.9340393814491108 2347916.5899753454141319)", - "surface": 15830000, - "canton": null, - "numero_insee": "89443" - } - }, - { - "pk": 3660, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VEZANNES", - "center": "POINT (715579.5300065621268004 2320347.5202862573787570)", - "surface": 9060000, - "canton": null, - "numero_insee": "89445" - } - }, - { - "pk": 20599, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VEZELAY", - "center": "POINT (703567.8119820909341797 2273409.0026100529357791)", - "surface": 21910000, - "canton": null, - "numero_insee": "89446" - } - }, - { - "pk": 23729, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VEZINNES", - "center": "POINT (719263.4105247819097713 2322580.4619863438419998)", - "surface": 6260000, - "canton": null, - "numero_insee": "89447" - } - }, - { - "pk": 32197, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VIGNES", - "center": "POINT (734107.6547450905200094 2283375.9083852088078856)", - "surface": 11810000, - "canton": null, - "numero_insee": "89448" - } - }, - { - "pk": 6333, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEBLEVIN", - "center": "POINT (655511.8372350562131032 2370376.9241415564902127)", - "surface": 7390000, - "canton": null, - "numero_insee": "89449" - } - }, - { - "pk": 24191, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEBOUGIS", - "center": "POINT (660929.3369155006948858 2356912.7871104767546058)", - "surface": 11730000, - "canton": null, - "numero_insee": "89450" - } - }, - { - "pk": 29736, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLECHETIVE", - "center": "POINT (688753.5971513296244666 2344638.7128016534261405)", - "surface": 9580000, - "canton": null, - "numero_insee": "89451" - } - }, - { - "pk": 25919, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLECIEN", - "center": "POINT (674721.0613050609827042 2335413.2109791315160692)", - "surface": 7680000, - "canton": null, - "numero_insee": "89452" - } - }, - { - "pk": 25498, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEFARGEAU", - "center": "POINT (686140.3614746923558414 2310490.7147962083108723)", - "surface": 14050000, - "canton": null, - "numero_insee": "89453" - } - }, - { - "pk": 22070, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEFRANCHE", - "center": "POINT (660370.3782703632023185 2328286.7092981752939522)", - "surface": 23390000, - "canton": null, - "numero_insee": "89454" - } - }, - { - "pk": 29735, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEMANOCHE", - "center": "POINT (661748.8356469712452963 2366526.7301486018113792)", - "surface": 14560000, - "canton": null, - "numero_insee": "89456" - } - }, - { - "pk": 29525, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEMER", - "center": "POINT (685319.6493256055982783 2324694.6606598277576268)", - "surface": 4270000, - "canton": null, - "numero_insee": "89457" - } - }, - { - "pk": 13643, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLENAVOTTE", - "center": "POINT (666500.0954380409093574 2360862.6879042191430926)", - "surface": 2240000, - "canton": null, - "numero_insee": "89458" - } - }, - { - "pk": 32476, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLENEUVE-LA-DONDAGRE", - "center": "POINT (659591.7524170550750569 2349395.9577407995238900)", - "surface": 14560000, - "canton": null, - "numero_insee": "89459" - } - }, - { - "pk": 9379, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLENEUVE-LA-GUYARD", - "center": "POINT (653305.3346708659082651 2370958.7438086573965847)", - "surface": 16970000, - "canton": null, - "numero_insee": "89460" - } - }, - { - "pk": 9824, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLENEUVE-L'ARCHEVEQUE", - "center": "POINT (691123.1342043754411861 2360270.3060544142499566)", - "surface": 6970000, - "canton": null, - "numero_insee": "89461" - } - }, - { - "pk": 14762, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLENEUVE-LES-GENETS", - "center": "POINT (655367.7428819360211492 2304426.2279662094078958)", - "surface": 25030000, - "canton": null, - "numero_insee": "89462" - } - }, - { - "pk": 35979, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLENEUVE-SAINT-SALVES", - "center": "POINT (697690.0063202477758750 2317493.8001245073974133)", - "surface": 7110000, - "canton": null, - "numero_insee": "89463" - } - }, - { - "pk": 15688, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLENEUVE-SUR-YONNE", - "center": "POINT (673256.6811414005933329 2342906.4575681108981371)", - "surface": 40340000, - "canton": null, - "numero_insee": "89464" - } - }, - { - "pk": 35252, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEPERROT", - "center": "POINT (665085.6491876749787480 2362451.9133311305195093)", - "surface": 8170000, - "canton": null, - "numero_insee": "89465" - } - }, - { - "pk": 7302, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEROY", - "center": "POINT (662755.8782274250406772 2353925.9969724202528596)", - "surface": 7090000, - "canton": null, - "numero_insee": "89466" - } - }, - { - "pk": 25163, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLETHIERRY", - "center": "POINT (654570.2782604359090328 2363363.8870146456174552)", - "surface": 21110000, - "canton": null, - "numero_insee": "89467" - } - }, - { - "pk": 37609, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLEVALLIER", - "center": "POINT (675007.7325141647597775 2337016.8373418692499399)", - "surface": 8500000, - "canton": null, - "numero_insee": "89468" - } - }, - { - "pk": 18435, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "PERCENEIGE", - "center": "POINT (679606.4319707904942334 2373082.2581598209217191)", - "surface": 61110000, - "canton": null, - "numero_insee": "89469" - } - }, - { - "pk": 15035, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLIERS-LES-HAUTS", - "center": "POINT (736037.3531463176477700 2303608.2007361399009824)", - "surface": 19030000, - "canton": null, - "numero_insee": "89470" - } - }, - { - "pk": 24190, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLIERS-LOUIS", - "center": "POINT (679251.6452833242947236 2355866.7045236225239933)", - "surface": 11150000, - "canton": null, - "numero_insee": "89471" - } - }, - { - "pk": 19930, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLIERS-SAINT-BENOIT", - "center": "POINT (666533.3863685383694246 2309524.3535790159367025)", - "surface": 34120000, - "canton": null, - "numero_insee": "89472" - } - }, - { - "pk": 32123, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLIERS-SUR-THOLON", - "center": "POINT (673634.4143441736232489 2321893.7938051852397621)", - "surface": 15560000, - "canton": null, - "numero_insee": "89473" - } - }, - { - "pk": 29524, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLIERS-VINEUX", - "center": "POINT (711111.1332587549695745 2328015.4865197315812111)", - "surface": 11220000, - "canton": null, - "numero_insee": "89474" - } - }, - { - "pk": 33377, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLON", - "center": "POINT (738267.1908887060126290 2323842.7296518515795469)", - "surface": 9450000, - "canton": null, - "numero_insee": "89475" - } - }, - { - "pk": 11606, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VILLY", - "center": "POINT (705479.3140840401174501 2319461.2563097761012614)", - "surface": 5860000, - "canton": null, - "numero_insee": "89477" - } - }, - { - "pk": 33107, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VINCELLES", - "center": "POINT (697241.3007096827495843 2299576.1418229858390987)", - "surface": 12590000, - "canton": null, - "numero_insee": "89478" - } - }, - { - "pk": 12936, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VINCELOTTES", - "center": "POINT (697922.3023206556681544 2301883.7044415571726859)", - "surface": 1810000, - "canton": null, - "numero_insee": "89479" - } - }, - { - "pk": 27738, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VINNEUF", - "center": "POINT (659391.5821303589036688 2373111.6190631133504212)", - "surface": 15380000, - "canton": null, - "numero_insee": "89480" - } - }, - { - "pk": 37982, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VIREAUX", - "center": "POINT (727365.8334840079769492 2311240.4959544213488698)", - "surface": 14740000, - "canton": null, - "numero_insee": "89481" - } - }, - { - "pk": 4341, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VIVIERS", - "center": "POINT (718744.5231400181073695 2312968.6915497463196516)", - "surface": 9220000, - "canton": null, - "numero_insee": "89482" - } - }, - { - "pk": 27395, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VOISINES", - "center": "POINT (679698.6672920926939696 2362175.1098726503551006)", - "surface": 26930000, - "canton": null, - "numero_insee": "89483" - } - }, - { - "pk": 33794, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VOLGRE", - "center": "POINT (672710.9594533320050687 2324588.0478382320143282)", - "surface": 9320000, - "canton": null, - "numero_insee": "89484" - } - }, - { - "pk": 30047, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "VOUTENAY-SUR-CURE", - "center": "POINT (708972.5562275508418679 2285164.1420816159807146)", - "surface": 10210000, - "canton": null, - "numero_insee": "89485" - } - }, - { - "pk": 15981, - "model": "ishtar_common.town", - "fields": { - "departement": 90, - "name": "YROUERRE", - "center": "POINT (721464.2491289628669620 2310890.1542392680421472)", - "surface": 14400000, - "canton": null, - "numero_insee": "89486" - } - }, - { - "pk": 26266, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ANDELNANS", - "center": "POINT (940336.4097927468828857 2299056.0683646774850786)", - "surface": 4180000, - "canton": null, - "numero_insee": "90001" - } - }, - { - "pk": 33511, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ANGEOT", - "center": "POINT (950249.8880873091984540 2309950.4407557053491473)", - "surface": 6610000, - "canton": null, - "numero_insee": "90002" - } - }, - { - "pk": 26064, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ANJOUTEY", - "center": "POINT (944342.2509049293585122 2310299.5629749395884573)", - "surface": 7710000, - "canton": null, - "numero_insee": "90003" - } - }, - { - "pk": 26463, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ARGIESANS", - "center": "POINT (937134.1221634801477194 2299028.3430632655508816)", - "surface": 2790000, - "canton": null, - "numero_insee": "90004" - } - }, - { - "pk": 8979, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "AUXELLES-BAS", - "center": "POINT (933413.7688654655357823 2312606.8099659038707614)", - "surface": 9290000, - "canton": null, - "numero_insee": "90005" - } - }, - { - "pk": 10520, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "AUXELLES-HAUT", - "center": "POINT (932893.4984873204957694 2314904.0971776680089533)", - "surface": 6500000, - "canton": null, - "numero_insee": "90006" - } - }, - { - "pk": 11420, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BANVILLARS", - "center": "POINT (936547.5531347719952464 2297422.0007197107188404)", - "surface": 4660000, - "canton": null, - "numero_insee": "90007" - } - }, - { - "pk": 7481, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BAVILLIERS", - "center": "POINT (937619.7519316687248647 2300733.8887665024958551)", - "surface": 4730000, - "canton": null, - "numero_insee": "90008" - } - }, - { - "pk": 31528, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BEAUCOURT", - "center": "POINT (945550.1550898451823741 2286391.1272794725373387)", - "surface": 4880000, - "canton": null, - "numero_insee": "90009" - } - }, - { - "pk": 30640, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BELFORT", - "center": "POINT (938493.5354016995988786 2303843.8944118255749345)", - "surface": 17080000, - "canton": null, - "numero_insee": "90010" - } - }, - { - "pk": 10137, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BERMONT", - "center": "POINT (938963.1345696030184627 2295841.6458526249043643)", - "surface": 2780000, - "canton": null, - "numero_insee": "90011" - } - }, - { - "pk": 29024, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BESSONCOURT", - "center": "POINT (945897.9316004347056150 2304008.1016189302317798)", - "surface": 7920000, - "canton": null, - "numero_insee": "90012" - } - }, - { - "pk": 12366, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BETHONVILLIERS", - "center": "POINT (947363.4467575947055593 2308124.0173422591760755)", - "surface": 1920000, - "canton": null, - "numero_insee": "90013" - } - }, - { - "pk": 33062, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BORON", - "center": "POINT (951887.1376753441290930 2294252.2577595412731171)", - "surface": 6140000, - "canton": null, - "numero_insee": "90014" - } - }, - { - "pk": 9354, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BOTANS", - "center": "POINT (939143.3499071456026286 2298145.0266990601085126)", - "surface": 2310000, - "canton": null, - "numero_insee": "90015" - } - }, - { - "pk": 7720, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BOURG-SOUS-CHATELET", - "center": "POINT (945939.9129495683591813 2310713.7167922616936266)", - "surface": 870000, - "canton": null, - "numero_insee": "90016" - } - }, - { - "pk": 11411, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BOUROGNE", - "center": "POINT (943575.1026685811812058 2294880.7915632189251482)", - "surface": 13580000, - "canton": null, - "numero_insee": "90017" - } - }, - { - "pk": 3829, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BREBOTTE", - "center": "POINT (948562.2183571555651724 2296825.5039000711403787)", - "surface": 3780000, - "canton": null, - "numero_insee": "90018" - } - }, - { - "pk": 9607, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BRETAGNE", - "center": "POINT (950551.5097367388661951 2298243.8520577768795192)", - "surface": 4670000, - "canton": null, - "numero_insee": "90019" - } - }, - { - "pk": 5172, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "BUC", - "center": "POINT (934521.0045231753028929 2300306.7506944690831006)", - "surface": 2450000, - "canton": null, - "numero_insee": "90020" - } - }, - { - "pk": 13734, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CHARMOIS", - "center": "POINT (946161.3646764524746686 2296704.6222867602482438)", - "surface": 4170000, - "canton": null, - "numero_insee": "90021" - } - }, - { - "pk": 8332, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CHATENOIS-LES-FORGES", - "center": "POINT (938178.1550888924393803 2294033.4221749235875905)", - "surface": 8750000, - "canton": null, - "numero_insee": "90022" - } - }, - { - "pk": 8333, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CHAUX", - "center": "POINT (937630.5883603084366769 2311042.0631785206496716)", - "surface": 9410000, - "canton": null, - "numero_insee": "90023" - } - }, - { - "pk": 13685, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CHAVANATTE", - "center": "POINT (955960.5828789845108986 2297690.2696462357416749)", - "surface": 3780000, - "canton": null, - "numero_insee": "90024" - } - }, - { - "pk": 17170, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CHAVANNES-LES-GRANDS", - "center": "POINT (954153.2197595569305122 2298375.1527452487498522)", - "surface": 6880000, - "canton": null, - "numero_insee": "90025" - } - }, - { - "pk": 29245, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CHEVREMONT", - "center": "POINT (945013.7629431369714439 2302098.9461737321689725)", - "surface": 8700000, - "canton": null, - "numero_insee": "90026" - } - }, - { - "pk": 19282, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "COURCELLES", - "center": "POINT (956541.6445009615272284 2288387.9101122822612524)", - "surface": 5390000, - "canton": null, - "numero_insee": "90027" - } - }, - { - "pk": 27718, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "COURTELEVANT", - "center": "POINT (957316.1887095374986529 2291397.0206800615414977)", - "surface": 5830000, - "canton": null, - "numero_insee": "90028" - } - }, - { - "pk": 12499, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CRAVANCHE", - "center": "POINT (936888.9324728152714670 2304230.3171562473289669)", - "surface": 1230000, - "canton": null, - "numero_insee": "90029" - } - }, - { - "pk": 24385, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CROIX", - "center": "POINT (947691.5622175158932805 2281805.9902767995372415)", - "surface": 5510000, - "canton": null, - "numero_insee": "90030" - } - }, - { - "pk": 26021, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "CUNELIERES", - "center": "POINT (949817.1844312299508601 2302140.5671811364591122)", - "surface": 2050000, - "canton": null, - "numero_insee": "90031" - } - }, - { - "pk": 32399, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "DANJOUTIN", - "center": "POINT (940322.5451008633244783 2300657.2112893322482705)", - "surface": 5590000, - "canton": null, - "numero_insee": "90032" - } - }, - { - "pk": 24918, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "DELLE", - "center": "POINT (950730.5081424736417830 2289138.1717125019058585)", - "surface": 9250000, - "canton": null, - "numero_insee": "90033" - } - }, - { - "pk": 10640, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "DENNEY", - "center": "POINT (943187.3434229013510048 2304985.4064768021926284)", - "surface": 3600000, - "canton": null, - "numero_insee": "90034" - } - }, - { - "pk": 27928, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "DORANS", - "center": "POINT (938354.0403773372527212 2296837.1644630148075521)", - "surface": 3820000, - "canton": null, - "numero_insee": "90035" - } - }, - { - "pk": 14017, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "EGUENIGUE", - "center": "POINT (944864.2773354360833764 2307802.1292512058280408)", - "surface": 2490000, - "canton": null, - "numero_insee": "90036" - } - }, - { - "pk": 11033, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ELOIE", - "center": "POINT (940355.0243677143007517 2308463.6209798660129309)", - "surface": 5510000, - "canton": null, - "numero_insee": "90037" - } - }, - { - "pk": 36324, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ESSERT", - "center": "POINT (936103.0897085621254519 2302522.1776527375914156)", - "surface": 7100000, - "canton": null, - "numero_insee": "90039" - } - }, - { - "pk": 6087, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ETUEFFONT", - "center": "POINT (943219.8036474010441452 2312791.7908834386616945)", - "surface": 12540000, - "canton": null, - "numero_insee": "90041" - } - }, - { - "pk": 25283, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "EVETTE-SALBERT", - "center": "POINT (934667.4480390625540167 2306512.8932434795424342)", - "surface": 9190000, - "canton": null, - "numero_insee": "90042" - } - }, - { - "pk": 18472, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FAVEROIS", - "center": "POINT (953612.6516464399173856 2291464.9882841268554330)", - "surface": 6520000, - "canton": null, - "numero_insee": "90043" - } - }, - { - "pk": 13335, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FELON", - "center": "POINT (948238.9353260737843812 2311033.8721707379445434)", - "surface": 4040000, - "canton": null, - "numero_insee": "90044" - } - }, - { - "pk": 31289, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FECHE-L'EGLISE", - "center": "POINT (947736.1428255969658494 2288211.5048354291357100)", - "surface": 3990000, - "canton": null, - "numero_insee": "90045" - } - }, - { - "pk": 17513, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FLORIMONT", - "center": "POINT (954703.9011800201842561 2292575.3248428464867175)", - "surface": 18230000, - "canton": null, - "numero_insee": "90046" - } - }, - { - "pk": 9226, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FONTAINE", - "center": "POINT (949885.1654096397105604 2305844.0668919086456299)", - "surface": 6990000, - "canton": null, - "numero_insee": "90047" - } - }, - { - "pk": 25466, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FONTENELLE", - "center": "POINT (947021.2579805240966380 2301415.7869098302908242)", - "surface": 1790000, - "canton": null, - "numero_insee": "90048" - } - }, - { - "pk": 6084, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FOUSSEMAGNE", - "center": "POINT (950006.0519831911660731 2303443.2279058052226901)", - "surface": 5010000, - "canton": null, - "numero_insee": "90049" - } - }, - { - "pk": 30120, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FRAIS", - "center": "POINT (948697.3216658285818994 2304332.5938693606294692)", - "surface": 2810000, - "canton": null, - "numero_insee": "90050" - } - }, - { - "pk": 35909, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "FROIDEFONTAINE", - "center": "POINT (947376.9653917098185048 2295013.8065798366442323)", - "surface": 4490000, - "canton": null, - "numero_insee": "90051" - } - }, - { - "pk": 30699, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "GIROMAGNY", - "center": "POINT (936202.7463799475226551 2314132.1178541542030871)", - "surface": 5670000, - "canton": null, - "numero_insee": "90052" - } - }, - { - "pk": 15290, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "GRANDVILLARS", - "center": "POINT (948602.1080150241032243 2292222.1974360649473965)", - "surface": 15220000, - "canton": null, - "numero_insee": "90053" - } - }, - { - "pk": 34491, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "GROSMAGNY", - "center": "POINT (940725.8425364668946713 2311869.4887480544857681)", - "surface": 8950000, - "canton": null, - "numero_insee": "90054" - } - }, - { - "pk": 14115, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "GROSNE", - "center": "POINT (950170.3039477734128013 2296038.8057830841280520)", - "surface": 3620000, - "canton": null, - "numero_insee": "90055" - } - }, - { - "pk": 8620, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "JONCHEREY", - "center": "POINT (951707.8115368592552841 2291848.7947742021642625)", - "surface": 5330000, - "canton": null, - "numero_insee": "90056" - } - }, - { - "pk": 36144, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LACHAPELLE-SOUS-CHAUX", - "center": "POINT (934637.1334495020564646 2310015.3696880387142301)", - "surface": 10930000, - "canton": null, - "numero_insee": "90057" - } - }, - { - "pk": 30899, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LACHAPELLE-SOUS-ROUGEMONT", - "center": "POINT (950832.9640556966187432 2311957.0571555052883923)", - "surface": 4930000, - "canton": null, - "numero_insee": "90058" - } - }, - { - "pk": 36146, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LACOLLONGE", - "center": "POINT (947079.7091654383111745 2306220.0691468920558691)", - "surface": 1920000, - "canton": null, - "numero_insee": "90059" - } - }, - { - "pk": 33208, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LAMADELEINE-VAL-DES-ANGES", - "center": "POINT (942585.5767784197814763 2316689.3310075453482568)", - "surface": 6430000, - "canton": null, - "numero_insee": "90061" - } - }, - { - "pk": 9102, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LARIVIERE", - "center": "POINT (949467.5357431438751519 2307842.0161563670262694)", - "surface": 4850000, - "canton": null, - "numero_insee": "90062" - } - }, - { - "pk": 5256, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LEBETAIN", - "center": "POINT (949151.8980905266944319 2286522.4132103361189365)", - "surface": 4870000, - "canton": null, - "numero_insee": "90063" - } - }, - { - "pk": 34478, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LEPUIX-NEUF", - "center": "POINT (958700.7079223105683923 2293310.5407902477309108)", - "surface": 5480000, - "canton": null, - "numero_insee": "90064" - } - }, - { - "pk": 26029, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LEPUIX", - "center": "POINT (935964.4901265656808391 2318533.4710331372916698)", - "surface": 28320000, - "canton": null, - "numero_insee": "90065" - } - }, - { - "pk": 5183, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "LEVAL", - "center": "POINT (949214.4899348452454433 2313944.5885059032589197)", - "surface": 6070000, - "canton": null, - "numero_insee": "90066" - } - }, - { - "pk": 33306, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "MENONCOURT", - "center": "POINT (946165.1981223137117922 2307813.3999604517593980)", - "surface": 4710000, - "canton": null, - "numero_insee": "90067" - } - }, - { - "pk": 24128, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "MEROUX", - "center": "POINT (943647.4372064670315012 2298083.9530110270716250)", - "surface": 8900000, - "canton": null, - "numero_insee": "90068" - } - }, - { - "pk": 29242, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "MEZIRE", - "center": "POINT (945107.3881742961239070 2291291.2028979170136154)", - "surface": 3940000, - "canton": null, - "numero_insee": "90069" - } - }, - { - "pk": 29486, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "MONTBOUTON", - "center": "POINT (945767.6383288254728541 2284391.4094952000305057)", - "surface": 2830000, - "canton": null, - "numero_insee": "90070" - } - }, - { - "pk": 30893, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "MONTREUX-CHATEAU", - "center": "POINT (949934.6016524467850104 2300140.0070973760448396)", - "surface": 4640000, - "canton": null, - "numero_insee": "90071" - } - }, - { - "pk": 34935, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "MORVILLARS", - "center": "POINT (946095.9718613950535655 2292700.8810560856945813)", - "surface": 5660000, - "canton": null, - "numero_insee": "90072" - } - }, - { - "pk": 18850, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "MOVAL", - "center": "POINT (941954.0203175205970183 2297168.5741014997474849)", - "surface": 1120000, - "canton": null, - "numero_insee": "90073" - } - }, - { - "pk": 29023, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "NOVILLARD", - "center": "POINT (947536.3554835284594446 2299718.9084881683811545)", - "surface": 3810000, - "canton": null, - "numero_insee": "90074" - } - }, - { - "pk": 37067, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "OFFEMONT", - "center": "POINT (940678.6347560243448243 2305764.3073228565044701)", - "surface": 5550000, - "canton": null, - "numero_insee": "90075" - } - }, - { - "pk": 10899, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "PEROUSE", - "center": "POINT (942204.8338105684379116 2302875.2454477855935693)", - "surface": 4880000, - "canton": null, - "numero_insee": "90076" - } - }, - { - "pk": 36181, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "PETIT-CROIX", - "center": "POINT (948321.3181815674761310 2301527.1308277822099626)", - "surface": 3780000, - "canton": null, - "numero_insee": "90077" - } - }, - { - "pk": 10515, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "PETITEFONTAINE", - "center": "POINT (950222.9999005328863859 2313052.6281559620983899)", - "surface": 3140000, - "canton": null, - "numero_insee": "90078" - } - }, - { - "pk": 15090, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "PETITMAGNY", - "center": "POINT (942020.6919362903572619 2312581.2487646630033851)", - "surface": 2200000, - "canton": null, - "numero_insee": "90079" - } - }, - { - "pk": 24529, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "PHAFFANS", - "center": "POINT (945884.9266654441598803 2305509.1676874090917408)", - "surface": 3250000, - "canton": null, - "numero_insee": "90080" - } - }, - { - "pk": 26647, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "RECHESY", - "center": "POINT (959725.7327083863783628 2290517.2011505290865898)", - "surface": 12650000, - "canton": null, - "numero_insee": "90081" - } - }, - { - "pk": 13603, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "AUTRECHENE", - "center": "POINT (947749.5051924474537373 2298219.5697646667249501)", - "surface": 2970000, - "canton": null, - "numero_insee": "90082" - } - }, - { - "pk": 30730, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "RECOUVRANCE", - "center": "POINT (949070.3817541315220296 2295929.1942329723387957)", - "surface": 1510000, - "canton": null, - "numero_insee": "90083" - } - }, - { - "pk": 8595, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "REPPE", - "center": "POINT (952182.4610294201411307 2306364.3720681667327881)", - "surface": 3870000, - "canton": null, - "numero_insee": "90084" - } - }, - { - "pk": 33803, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "RIERVESCEMONT", - "center": "POINT (940277.0311669071670622 2317469.9577889437787235)", - "surface": 8500000, - "canton": null, - "numero_insee": "90085" - } - }, - { - "pk": 13067, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ROMAGNY-SOUS-ROUGEMONT", - "center": "POINT (947126.8863285472616553 2312325.2503791656345129)", - "surface": 2520000, - "canton": null, - "numero_insee": "90086" - } - }, - { - "pk": 31264, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ROPPE", - "center": "POINT (943163.9401029876898974 2307687.3217967813834548)", - "surface": 7550000, - "canton": null, - "numero_insee": "90087" - } - }, - { - "pk": 27526, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ROUGEGOUTTE", - "center": "POINT (939210.0545829551992938 2313557.6875748150050640)", - "surface": 8380000, - "canton": null, - "numero_insee": "90088" - } - }, - { - "pk": 11026, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "ROUGEMONT-LE-CHATEAU", - "center": "POINT (945900.0295996452914551 2315316.9564066650345922)", - "surface": 16800000, - "canton": null, - "numero_insee": "90089" - } - }, - { - "pk": 35420, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "SAINT-DIZIER-L'EVEQUE", - "center": "POINT (948369.5274851048598066 2284413.9517524712719023)", - "surface": 10950000, - "canton": null, - "numero_insee": "90090" - } - }, - { - "pk": 26909, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "SAINT-GERMAIN-LE-CHATELET", - "center": "POINT (946844.8838604118209332 2310221.1671625366434455)", - "surface": 3400000, - "canton": null, - "numero_insee": "90091" - } - }, - { - "pk": 30472, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "SERMAMAGNY", - "center": "POINT (937153.6265598770696670 2308335.8237606543116271)", - "surface": 7990000, - "canton": null, - "numero_insee": "90093" - } - }, - { - "pk": 4711, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "SEVENANS", - "center": "POINT (940750.5608817229513079 2297458.3896465795114636)", - "surface": 2040000, - "canton": null, - "numero_insee": "90094" - } - }, - { - "pk": 24713, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "SUARCE", - "center": "POINT (956681.0440099954139441 2295394.6937817097641528)", - "surface": 11870000, - "canton": null, - "numero_insee": "90095" - } - }, - { - "pk": 8229, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "THIANCOURT", - "center": "POINT (949519.2338429901283234 2290328.6315999291837215)", - "surface": 2720000, - "canton": null, - "numero_insee": "90096" - } - }, - { - "pk": 37960, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "TREVENANS", - "center": "POINT (940771.3584054262610152 2295056.6684857495129108)", - "surface": 5940000, - "canton": null, - "numero_insee": "90097" - } - }, - { - "pk": 32172, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "URCEREY", - "center": "POINT (935627.8528951159678400 2299615.7783263623714447)", - "surface": 3340000, - "canton": null, - "numero_insee": "90098" - } - }, - { - "pk": 20450, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "VALDOIE", - "center": "POINT (938570.2129936479032040 2306546.6780911730602384)", - "surface": 4620000, - "canton": null, - "numero_insee": "90099" - } - }, - { - "pk": 10893, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "VAUTHIERMONT", - "center": "POINT (951764.8278621714562178 2308362.3199724717997015)", - "surface": 4780000, - "canton": null, - "numero_insee": "90100" - } - }, - { - "pk": 6103, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "VELLESCOT", - "center": "POINT (951966.3911575704114512 2296654.8488719784654677)", - "surface": 3510000, - "canton": null, - "numero_insee": "90101" - } - }, - { - "pk": 36630, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "VESCEMONT", - "center": "POINT (938391.2963425498455763 2315652.2315277657471597)", - "surface": 7550000, - "canton": null, - "numero_insee": "90102" - } - }, - { - "pk": 11058, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "VETRIGNE", - "center": "POINT (942073.5614602360874414 2306476.9370312630198896)", - "surface": 2440000, - "canton": null, - "numero_insee": "90103" - } - }, - { - "pk": 12915, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "VEZELOIS", - "center": "POINT (944331.4680784612428397 2299991.3794859480112791)", - "surface": 9360000, - "canton": null, - "numero_insee": "90104" - } - }, - { - "pk": 7717, - "model": "ishtar_common.town", - "fields": { - "departement": 91, - "name": "VILLARS-LE-SEC", - "center": "POINT (950481.4607725148089230 2283231.2901723403483629)", - "surface": 2970000, - "canton": null, - "numero_insee": "90105" - } - }, - { - "pk": 36113, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ABBEVILLE-LA-RIVIERE", - "center": "POINT (589153.3799048544606194 2371620.0804027398116887)", - "surface": 14990000, - "canton": null, - "numero_insee": "91001" - } - }, - { - "pk": 36799, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ANGERVILLE", - "center": "POINT (575475.4373568657319993 2367802.7852875101380050)", - "surface": 25790000, - "canton": null, - "numero_insee": "91016" - } - }, - { - "pk": 10166, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ANGERVILLIERS", - "center": "POINT (579415.8181254843948409 2399158.1317356983199716)", - "surface": 9110000, - "canton": null, - "numero_insee": "91017" - } - }, - { - "pk": 35224, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ARPAJON", - "center": "POINT (593126.1422149500576779 2399072.9177777222357690)", - "surface": 2380000, - "canton": null, - "numero_insee": "91021" - } - }, - { - "pk": 35946, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ARRANCOURT", - "center": "POINT (586267.4236050777835771 2369694.5097111966460943)", - "surface": 7560000, - "canton": null, - "numero_insee": "91022" - } - }, - { - "pk": 33287, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ATHIS-MONS", - "center": "POINT (603622.7706755158724263 2412270.1278100390918553)", - "surface": 8610000, - "canton": null, - "numero_insee": "91027" - } - }, - { - "pk": 4737, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "AUTHON-LA-PLAINE", - "center": "POINT (571838.2775810442399234 2383883.9235169366002083)", - "surface": 10470000, - "canton": null, - "numero_insee": "91035" - } - }, - { - "pk": 20253, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "AUVERNAUX", - "center": "POINT (611096.2891032260376960 2392218.8482296550646424)", - "surface": 6490000, - "canton": null, - "numero_insee": "91037" - } - }, - { - "pk": 3010, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "AUVERS-SAINT-GEORGES", - "center": "POINT (591730.9362145337508991 2386452.3132765810005367)", - "surface": 12740000, - "canton": null, - "numero_insee": "91038" - } - }, - { - "pk": 26302, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "AVRAINVILLE", - "center": "POINT (593157.1972020023968071 2395370.5771769806742668)", - "surface": 9270000, - "canton": null, - "numero_insee": "91041" - } - }, - { - "pk": 6796, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BALLAINVILLIERS", - "center": "POINT (596453.5648133753566071 2408007.0442786649800837)", - "surface": 3990000, - "canton": null, - "numero_insee": "91044" - } - }, - { - "pk": 32591, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BALLANCOURT-SUR-ESSONNE", - "center": "POINT (603697.4604505457682535 2391456.2083479990251362)", - "surface": 11380000, - "canton": null, - "numero_insee": "91045" - } - }, - { - "pk": 22421, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BAULNE", - "center": "POINT (603222.3458192854886875 2388450.0927377748303115)", - "surface": 8180000, - "canton": null, - "numero_insee": "91047" - } - }, - { - "pk": 35980, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BIEVRES", - "center": "POINT (590369.2679279166040942 2417562.6382961017079651)", - "surface": 9690000, - "canton": null, - "numero_insee": "91064" - } - }, - { - "pk": 11730, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BLANDY", - "center": "POINT (594075.8857397504616529 2369359.6987430956214666)", - "surface": 7900000, - "canton": null, - "numero_insee": "91067" - } - }, - { - "pk": 24707, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOIGNEVILLE", - "center": "POINT (602177.8278248824644834 2369827.9797401172108948)", - "surface": 15750000, - "canton": null, - "numero_insee": "91069" - } - }, - { - "pk": 37012, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOIS-HERPIN", - "center": "POINT (593129.9717709827236831 2374755.6681188088841736)", - "surface": 3960000, - "canton": null, - "numero_insee": "91075" - } - }, - { - "pk": 37110, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOISSY-LA-RIVIERE", - "center": "POINT (587616.3274192075477913 2375910.2962792017497122)", - "surface": 12490000, - "canton": null, - "numero_insee": "91079" - } - }, - { - "pk": 34721, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOISSY-LE-CUTTE", - "center": "POINT (596140.4736707257106900 2385688.7335870922543108)", - "surface": 4600000, - "canton": null, - "numero_insee": "91080" - } - }, - { - "pk": 28647, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOISSY-LE-SEC", - "center": "POINT (581817.0421804735669866 2387269.8461248241364956)", - "surface": 19350000, - "canton": null, - "numero_insee": "91081" - } - }, - { - "pk": 15420, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOISSY-SOUS-SAINT-YON", - "center": "POINT (590862.4520102754468098 2394550.7672254401259124)", - "surface": 8140000, - "canton": null, - "numero_insee": "91085" - } - }, - { - "pk": 17618, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BONDOUFLE", - "center": "POINT (603111.4495950257405639 2401658.4646298838779330)", - "surface": 6820000, - "canton": null, - "numero_insee": "91086" - } - }, - { - "pk": 28183, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOULLAY-LES-TROUX", - "center": "POINT (578736.6510400269180536 2408559.0006068344227970)", - "surface": 4880000, - "canton": null, - "numero_insee": "91093" - } - }, - { - "pk": 13193, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOURAY-SUR-JUINE", - "center": "POINT (597002.4277493600966409 2390299.2335579125210643)", - "surface": 7210000, - "canton": null, - "numero_insee": "91095" - } - }, - { - "pk": 31949, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOUSSY-SAINT-ANTOINE", - "center": "POINT (614448.8145354322623461 2410059.4811443751677871)", - "surface": 2920000, - "canton": null, - "numero_insee": "91097" - } - }, - { - "pk": 27155, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOUTERVILLIERS", - "center": "POINT (578841.9426727398531511 2384042.6424889592453837)", - "surface": 7110000, - "canton": null, - "numero_insee": "91098" - } - }, - { - "pk": 27321, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOUTIGNY-SUR-ESSONNE", - "center": "POINT (604278.4395590537460521 2381854.2566710067912936)", - "surface": 16210000, - "canton": null, - "numero_insee": "91099" - } - }, - { - "pk": 17445, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BOUVILLE", - "center": "POINT (595675.4133182162186131 2381481.8335174261592329)", - "surface": 20930000, - "canton": null, - "numero_insee": "91100" - } - }, - { - "pk": 36813, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BRETIGNY-SUR-ORGE", - "center": "POINT (597417.9402007117168978 2400409.8356443438678980)", - "surface": 14600000, - "canton": null, - "numero_insee": "91103" - } - }, - { - "pk": 11989, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BREUILLET", - "center": "POINT (587339.2587758017471060 2397022.9865186484530568)", - "surface": 6720000, - "canton": null, - "numero_insee": "91105" - } - }, - { - "pk": 4728, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BREUX-JOUY", - "center": "POINT (586954.9434764557518065 2395118.4273488358594477)", - "surface": 4730000, - "canton": null, - "numero_insee": "91106" - } - }, - { - "pk": 13358, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BRIERES-LES-SCELLES", - "center": "POINT (585638.7672735510859638 2385000.2369839288294315)", - "surface": 8590000, - "canton": null, - "numero_insee": "91109" - } - }, - { - "pk": 29708, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BRIIS-SOUS-FORGES", - "center": "POINT (584786.5185772248078138 2403105.8630063091404736)", - "surface": 11180000, - "canton": null, - "numero_insee": "91111" - } - }, - { - "pk": 36182, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BROUY", - "center": "POINT (596474.9380681638140231 2369680.0435337498784065)", - "surface": 8470000, - "canton": null, - "numero_insee": "91112" - } - }, - { - "pk": 33048, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BRUNOY", - "center": "POINT (612240.7190009489422664 2410841.4783760607242584)", - "surface": 6580000, - "canton": null, - "numero_insee": "91114" - } - }, - { - "pk": 30914, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BRUYERES-LE-CHATEL", - "center": "POINT (588914.2626011656830087 2400138.3671387853100896)", - "surface": 12930000, - "canton": null, - "numero_insee": "91115" - } - }, - { - "pk": 26905, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BUNO-BONNEVAUX", - "center": "POINT (605152.9008902061032131 2373055.2746386928483844)", - "surface": 15960000, - "canton": null, - "numero_insee": "91121" - } - }, - { - "pk": 25140, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "BURES-SUR-YVETTE", - "center": "POINT (586826.6038037191610783 2410428.0393480006605387)", - "surface": 4370000, - "canton": null, - "numero_insee": "91122" - } - }, - { - "pk": 27910, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CERNY", - "center": "POINT (598027.4176214032340795 2387405.7766423760913312)", - "surface": 17250000, - "canton": null, - "numero_insee": "91129" - } - }, - { - "pk": 3191, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHALO-SAINT-MARS", - "center": "POINT (578877.9854853182332590 2379739.8693650658242404)", - "surface": 28990000, - "canton": null, - "numero_insee": "91130" - } - }, - { - "pk": 28415, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHALOU-MOULINEUX", - "center": "POINT (576910.2143992491764948 2375720.5138163655065000)", - "surface": 10750000, - "canton": null, - "numero_insee": "91131" - } - }, - { - "pk": 8065, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHAMARANDE", - "center": "POINT (591193.6917892034398392 2390850.9307358921505511)", - "surface": 5820000, - "canton": null, - "numero_insee": "91132" - } - }, - { - "pk": 33284, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHAMPCUEIL", - "center": "POINT (608215.4566074345493689 2389692.8760096612386405)", - "surface": 16460000, - "canton": null, - "numero_insee": "91135" - } - }, - { - "pk": 34302, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHAMPLAN", - "center": "POINT (595617.8061714263167232 2412202.9416445260867476)", - "surface": 3710000, - "canton": null, - "numero_insee": "91136" - } - }, - { - "pk": 12089, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHAMPMOTTEUX", - "center": "POINT (598360.2259260442806408 2371597.2395097203552723)", - "surface": 7540000, - "canton": null, - "numero_insee": "91137" - } - }, - { - "pk": 12123, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHATIGNONVILLE", - "center": "POINT (570022.8819265497149900 2385569.9398903190158308)", - "surface": 5190000, - "canton": null, - "numero_insee": "91145" - } - }, - { - "pk": 13625, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHAUFFOUR-LES-ETRECHY", - "center": "POINT (587499.7211688274983317 2389819.2485691271722317)", - "surface": 4830000, - "canton": null, - "numero_insee": "91148" - } - }, - { - "pk": 33591, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHEPTAINVILLE", - "center": "POINT (595368.6660997683648020 2394188.2828817469999194)", - "surface": 7220000, - "canton": null, - "numero_insee": "91156" - } - }, - { - "pk": 24721, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHEVANNES", - "center": "POINT (607689.9228007218334824 2392690.5852897986769676)", - "surface": 10290000, - "canton": null, - "numero_insee": "91159" - } - }, - { - "pk": 7969, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CHILLY-MAZARIN", - "center": "POINT (598120.1973886699415743 2412123.8697720295749605)", - "surface": 5640000, - "canton": null, - "numero_insee": "91161" - } - }, - { - "pk": 26614, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CORBEIL-ESSONNES", - "center": "POINT (609725.6881180537166074 2400513.1742224241606891)", - "surface": 11040000, - "canton": null, - "numero_insee": "91174" - } - }, - { - "pk": 14523, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CORBREUSE", - "center": "POINT (572099.9379972491879016 2388489.3877578130923212)", - "surface": 15840000, - "canton": null, - "numero_insee": "91175" - } - }, - { - "pk": 5148, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LE COUDRAY-MONTCEAUX", - "center": "POINT (611068.5442552862223238 2395520.9441285459324718)", - "surface": 11440000, - "canton": null, - "numero_insee": "91179" - } - }, - { - "pk": 8720, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "COURANCES", - "center": "POINT (610881.0127136488445103 2382109.8574574943631887)", - "surface": 8300000, - "canton": null, - "numero_insee": "91180" - } - }, - { - "pk": 36128, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "COURCOURONNES", - "center": "POINT (605606.2994596858043224 2402479.9728585775010288)", - "surface": 4530000, - "canton": null, - "numero_insee": "91182" - } - }, - { - "pk": 8589, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "COURDIMANCHE-SUR-ESSONNE", - "center": "POINT (601993.7575378061737865 2379833.6426139450632036)", - "surface": 5740000, - "canton": null, - "numero_insee": "91184" - } - }, - { - "pk": 9377, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "COURSON-MONTELOUP", - "center": "POINT (585513.7969372632214800 2399909.7201597024686635)", - "surface": 3770000, - "canton": null, - "numero_insee": "91186" - } - }, - { - "pk": 28588, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CROSNE", - "center": "POINT (609317.0607220476958901 2413418.7111102156341076)", - "surface": 2470000, - "canton": null, - "numero_insee": "91191" - } - }, - { - "pk": 9745, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "DANNEMOIS", - "center": "POINT (609459.9353189649991691 2384499.6322732968255877)", - "surface": 8500000, - "canton": null, - "numero_insee": "91195" - } - }, - { - "pk": 22403, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "D'HUISON-LONGUEVILLE", - "center": "POINT (599256.7398388008587062 2384013.6721337344497442)", - "surface": 9980000, - "canton": null, - "numero_insee": "91198" - } - }, - { - "pk": 14770, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "DOURDAN", - "center": "POINT (574663.8973853064235300 2393014.0402584350667894)", - "surface": 30710000, - "canton": null, - "numero_insee": "91200" - } - }, - { - "pk": 29650, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "DRAVEIL", - "center": "POINT (606253.7964005253743380 2408789.7977131642401218)", - "surface": 15930000, - "canton": null, - "numero_insee": "91201" - } - }, - { - "pk": 24914, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ECHARCON", - "center": "POINT (604648.5231684481259435 2397368.3553352770395577)", - "surface": 6900000, - "canton": null, - "numero_insee": "91204" - } - }, - { - "pk": 26104, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "EGLY", - "center": "POINT (591436.8179347566328943 2397657.7660800656303763)", - "surface": 3980000, - "canton": null, - "numero_insee": "91207" - } - }, - { - "pk": 13188, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "EPINAY-SOUS-SENART", - "center": "POINT (613149.6874877515947446 2409848.4242164921015501)", - "surface": 3620000, - "canton": null, - "numero_insee": "91215" - } - }, - { - "pk": 9746, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "EPINAY-SUR-ORGE", - "center": "POINT (598653.2579823067644611 2408225.6417013853788376)", - "surface": 4380000, - "canton": null, - "numero_insee": "91216" - } - }, - { - "pk": 17355, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ESTOUCHES", - "center": "POINT (584784.8929944607662037 2367480.4866637941449881)", - "surface": 5970000, - "canton": null, - "numero_insee": "91222" - } - }, - { - "pk": 28103, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ETAMPES", - "center": "POINT (585278.7684943834319711 2380193.7895114552229643)", - "surface": 46010000, - "canton": null, - "numero_insee": "91223" - } - }, - { - "pk": 12903, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ETIOLLES", - "center": "POINT (610782.6632282244972885 2405725.6861092057079077)", - "surface": 11710000, - "canton": null, - "numero_insee": "91225" - } - }, - { - "pk": 35696, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ETRECHY", - "center": "POINT (588314.4940787866944447 2388124.8732549939304590)", - "surface": 14210000, - "canton": null, - "numero_insee": "91226" - } - }, - { - "pk": 7235, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "EVRY", - "center": "POINT (607599.9917799727991223 2403397.3458121572621167)", - "surface": 8550000, - "canton": null, - "numero_insee": "91228" - } - }, - { - "pk": 36132, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LA FERTE-ALAIS", - "center": "POINT (602235.1472148121101782 2386840.6676002531312406)", - "surface": 4530000, - "canton": null, - "numero_insee": "91232" - } - }, - { - "pk": 35170, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "FLEURY-MEROGIS", - "center": "POINT (602293.3054073423845693 2403753.0631076204590499)", - "surface": 6410000, - "canton": null, - "numero_insee": "91235" - } - }, - { - "pk": 29709, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "FONTAINE-LA-RIVIERE", - "center": "POINT (587237.0394905869616196 2373405.3143182061612606)", - "surface": 3720000, - "canton": null, - "numero_insee": "91240" - } - }, - { - "pk": 34485, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "FONTENAY-LES-BRIIS", - "center": "POINT (587303.1878310347674415 2401325.7002324289642274)", - "surface": 9790000, - "canton": null, - "numero_insee": "91243" - } - }, - { - "pk": 3734, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "FONTENAY-LE-VICOMTE", - "center": "POINT (604675.4108882547589019 2394166.3276326409541070)", - "surface": 6850000, - "canton": null, - "numero_insee": "91244" - } - }, - { - "pk": 33342, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LA FORET-LE-ROI", - "center": "POINT (578523.3098571433220059 2386241.5410647974349558)", - "surface": 7950000, - "canton": null, - "numero_insee": "91247" - } - }, - { - "pk": 28106, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LA FORET-SAINTE-CROIX", - "center": "POINT (592118.4109388898359612 2376048.1199892675504088)", - "surface": 5280000, - "canton": null, - "numero_insee": "91248" - } - }, - { - "pk": 5766, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "FORGES-LES-BAINS", - "center": "POINT (581290.1891973753226921 2402376.0751775181852281)", - "surface": 14670000, - "canton": null, - "numero_insee": "91249" - } - }, - { - "pk": 17771, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "GIF-SUR-YVETTE", - "center": "POINT (584619.3646719069220126 2411110.0228132838383317)", - "surface": 11920000, - "canton": null, - "numero_insee": "91272" - } - }, - { - "pk": 34925, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "GIRONVILLE-SUR-ESSONNE", - "center": "POINT (600640.7289601076627150 2374118.1857372163794935)", - "surface": 13330000, - "canton": null, - "numero_insee": "91273" - } - }, - { - "pk": 6696, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "GOMETZ-LA-VILLE", - "center": "POINT (583242.8115829592570662 2408196.4766301838681102)", - "surface": 9670000, - "canton": null, - "numero_insee": "91274" - } - }, - { - "pk": 25501, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LES GRANGES-LE-ROI", - "center": "POINT (575899.8549615078372881 2388821.4164813570678234)", - "surface": 12820000, - "canton": null, - "numero_insee": "91284" - } - }, - { - "pk": 32383, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "GRIGNY", - "center": "POINT (603771.5619058570591733 2406467.3555102776736021)", - "surface": 5010000, - "canton": null, - "numero_insee": "91286" - } - }, - { - "pk": 3852, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "GUIBEVILLE", - "center": "POINT (595149.2309272381244227 2396488.0622636694461107)", - "surface": 2630000, - "canton": null, - "numero_insee": "91292" - } - }, - { - "pk": 10257, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "GUIGNEVILLE-SUR-ESSONNE", - "center": "POINT (602551.3009653772460297 2384941.9689177316613495)", - "surface": 9250000, - "canton": null, - "numero_insee": "91293" - } - }, - { - "pk": 10492, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "GUILLERVAL", - "center": "POINT (580624.3554819846758619 2374350.6169175445102155)", - "surface": 17340000, - "canton": null, - "numero_insee": "91294" - } - }, - { - "pk": 6184, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "IGNY", - "center": "POINT (591689.3705988918663934 2415272.1272500297054648)", - "surface": 3870000, - "canton": null, - "numero_insee": "91312" - } - }, - { - "pk": 27302, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "JANVILLE-SUR-JUINE", - "center": "POINT (593810.4585354048758745 2389071.6029399861581624)", - "surface": 10580000, - "canton": null, - "numero_insee": "91318" - } - }, - { - "pk": 5339, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "JANVRY", - "center": "POINT (586570.0342017472721636 2405222.2770263734273612)", - "surface": 8340000, - "canton": null, - "numero_insee": "91319" - } - }, - { - "pk": 12625, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "JUVISY-SUR-ORGE", - "center": "POINT (602738.1736545728053898 2410361.3863561172038317)", - "surface": 2230000, - "canton": null, - "numero_insee": "91326" - } - }, - { - "pk": 13485, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LARDY", - "center": "POINT (595086.9442030797945336 2391984.3655002396553755)", - "surface": 7700000, - "canton": null, - "numero_insee": "91330" - } - }, - { - "pk": 7098, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LEUVILLE-SUR-ORGE", - "center": "POINT (594905.4521526758326218 2401689.6650020861998200)", - "surface": 2490000, - "canton": null, - "numero_insee": "91333" - } - }, - { - "pk": 29241, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LIMOURS", - "center": "POINT (581165.8137381911510602 2405277.0564302690327168)", - "surface": 14080000, - "canton": null, - "numero_insee": "91338" - } - }, - { - "pk": 10518, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LINAS", - "center": "POINT (593693.7856074323644862 2402980.4091343353502452)", - "surface": 7600000, - "canton": null, - "numero_insee": "91339" - } - }, - { - "pk": 34923, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LISSES", - "center": "POINT (606430.3326458770316094 2399684.9332469869405031)", - "surface": 10450000, - "canton": null, - "numero_insee": "91340" - } - }, - { - "pk": 33265, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LONGJUMEAU", - "center": "POINT (597436.5559836756438017 2410116.7490281094796956)", - "surface": 4860000, - "canton": null, - "numero_insee": "91345" - } - }, - { - "pk": 34532, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LONGPONT-SUR-ORGE", - "center": "POINT (596281.9852246990194544 2404603.2389874551445246)", - "surface": 5060000, - "canton": null, - "numero_insee": "91347" - } - }, - { - "pk": 4517, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MAISSE", - "center": "POINT (602414.1778575064381585 2377435.4493833128362894)", - "surface": 21480000, - "canton": null, - "numero_insee": "91359" - } - }, - { - "pk": 12933, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MARCOUSSIS", - "center": "POINT (590372.4139073004480451 2405254.1569308177568018)", - "surface": 16740000, - "canton": null, - "numero_insee": "91363" - } - }, - { - "pk": 25141, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MAROLLES-EN-BEAUCE", - "center": "POINT (590130.5377967391395941 2374430.2962117954157293)", - "surface": 5990000, - "canton": null, - "numero_insee": "91374" - } - }, - { - "pk": 6893, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MAROLLES-EN-HUREPOIX", - "center": "POINT (597153.0161079348763451 2396204.6635658438317478)", - "surface": 6550000, - "canton": null, - "numero_insee": "91376" - } - }, - { - "pk": 32200, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MASSY", - "center": "POINT (595400.0527487633517012 2414302.5642424761317670)", - "surface": 9400000, - "canton": null, - "numero_insee": "91377" - } - }, - { - "pk": 12240, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MAUCHAMPS", - "center": "POINT (589682.6666302331723273 2392039.1086738146841526)", - "surface": 3130000, - "canton": null, - "numero_insee": "91378" - } - }, - { - "pk": 13055, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MENNECY", - "center": "POINT (607366.1991475352551788 2395489.8417942272499204)", - "surface": 11150000, - "canton": null, - "numero_insee": "91386" - } - }, - { - "pk": 26459, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MEREVILLE", - "center": "POINT (580470.3341122225392610 2368845.3484362037852407)", - "surface": 27290000, - "canton": null, - "numero_insee": "91390" - } - }, - { - "pk": 25139, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MEROBERT", - "center": "POINT (574775.3342847704188898 2379705.5094737107865512)", - "surface": 10650000, - "canton": null, - "numero_insee": "91393" - } - }, - { - "pk": 9085, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MESPUITS", - "center": "POINT (595544.9652567042503506 2373174.7729992214590311)", - "surface": 9970000, - "canton": null, - "numero_insee": "91399" - } - }, - { - "pk": 25448, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MOIGNY-SUR-ECOLE", - "center": "POINT (607579.7264724790584296 2381982.0527512743137777)", - "surface": 12230000, - "canton": null, - "numero_insee": "91408" - } - }, - { - "pk": 6460, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LES MOLIERES", - "center": "POINT (580541.9652088095899671 2408073.7769454740919173)", - "surface": 7050000, - "canton": null, - "numero_insee": "91411" - } - }, - { - "pk": 24117, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MONDEVILLE", - "center": "POINT (606128.4020145364338532 2387974.1400967268273234)", - "surface": 6790000, - "canton": null, - "numero_insee": "91412" - } - }, - { - "pk": 13440, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MONNERVILLE", - "center": "POINT (577741.7448212658055127 2372024.8087994582019746)", - "surface": 8280000, - "canton": null, - "numero_insee": "91414" - } - }, - { - "pk": 7113, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MONTGERON", - "center": "POINT (609239.6947857087943703 2410716.1947692716494203)", - "surface": 11160000, - "canton": null, - "numero_insee": "91421" - } - }, - { - "pk": 37340, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MONTLHERY", - "center": "POINT (594879.4289562638150528 2404791.6111512873321772)", - "surface": 3310000, - "canton": null, - "numero_insee": "91425" - } - }, - { - "pk": 12767, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MORANGIS", - "center": "POINT (599926.3536705510923639 2411538.6132618025876582)", - "surface": 4800000, - "canton": null, - "numero_insee": "91432" - } - }, - { - "pk": 23414, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MORIGNY-CHAMPIGNY", - "center": "POINT (590363.6031436538323760 2382437.9938521552830935)", - "surface": 30940000, - "canton": null, - "numero_insee": "91433" - } - }, - { - "pk": 25644, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MORSANG-SUR-ORGE", - "center": "POINT (600970.6514304638840258 2406343.7715639988891780)", - "surface": 4380000, - "canton": null, - "numero_insee": "91434" - } - }, - { - "pk": 24720, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "MORSANG-SUR-SEINE", - "center": "POINT (612052.3614561740541831 2397530.6180338091216981)", - "surface": 4410000, - "canton": null, - "numero_insee": "91435" - } - }, - { - "pk": 10510, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "NAINVILLE-LES-ROCHES", - "center": "POINT (611719.3726731201168150 2389522.1716582933440804)", - "surface": 6000000, - "canton": null, - "numero_insee": "91441" - } - }, - { - "pk": 32579, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LA NORVILLE", - "center": "POINT (594736.3859006046550348 2397985.6532451366074383)", - "surface": 4590000, - "canton": null, - "numero_insee": "91457" - } - }, - { - "pk": 11306, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "NOZAY", - "center": "POINT (592660.4256906727096066 2406874.4591378741897643)", - "surface": 7370000, - "canton": null, - "numero_insee": "91458" - } - }, - { - "pk": 26906, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "OLLAINVILLE", - "center": "POINT (591310.7402057935250923 2400758.8830937934108078)", - "surface": 11400000, - "canton": null, - "numero_insee": "91461" - } - }, - { - "pk": 8723, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ONCY-SUR-ECOLE", - "center": "POINT (608831.7754536799620837 2375888.1924936291761696)", - "surface": 5390000, - "canton": null, - "numero_insee": "91463" - } - }, - { - "pk": 6665, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ORMOY", - "center": "POINT (608853.7006939520360902 2397103.4626583494246006)", - "surface": 1850000, - "canton": null, - "numero_insee": "91468" - } - }, - { - "pk": 34301, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ORMOY-LA-RIVIERE", - "center": "POINT (587199.2901623462093994 2377908.2382766394875944)", - "surface": 10420000, - "canton": null, - "numero_insee": "91469" - } - }, - { - "pk": 33590, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ORSAY", - "center": "POINT (588921.1984136059181765 2411246.1535194041207433)", - "surface": 7660000, - "canton": null, - "numero_insee": "91471" - } - }, - { - "pk": 10401, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ORVEAU", - "center": "POINT (596961.1383389101829380 2383293.9080065707676113)", - "surface": 4260000, - "canton": null, - "numero_insee": "91473" - } - }, - { - "pk": 31141, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "PALAISEAU", - "center": "POINT (592009.6972868380835280 2412873.1588215604424477)", - "surface": 11680000, - "canton": null, - "numero_insee": "91477" - } - }, - { - "pk": 6430, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "PARAY-VIEILLE-POSTE", - "center": "POINT (601707.3118040314875543 2413955.2202582163736224)", - "surface": 6060000, - "canton": null, - "numero_insee": "91479" - } - }, - { - "pk": 31555, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "PECQUEUSE", - "center": "POINT (577861.2326152737950906 2405549.5826603421010077)", - "surface": 7480000, - "canton": null, - "numero_insee": "91482" - } - }, - { - "pk": 13726, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LE PLESSIS-PATE", - "center": "POINT (600315.5676819566870108 2400934.5040624886751175)", - "surface": 7570000, - "canton": null, - "numero_insee": "91494" - } - }, - { - "pk": 17393, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "PLESSIS-SAINT-BENOIST", - "center": "POINT (575248.8441698472015560 2382911.7643123804591596)", - "surface": 9210000, - "canton": null, - "numero_insee": "91495" - } - }, - { - "pk": 26048, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "PRUNAY-SUR-ESSONNE", - "center": "POINT (601754.8853170189540833 2372526.3831630460917950)", - "surface": 5070000, - "canton": null, - "numero_insee": "91507" - } - }, - { - "pk": 10419, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "PUISELET-LE-MARAIS", - "center": "POINT (594505.6987703538034111 2377769.3673496344126761)", - "surface": 11320000, - "canton": null, - "numero_insee": "91508" - } - }, - { - "pk": 10043, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "PUSSAY", - "center": "POINT (574836.5002608771901578 2372400.7674973532557487)", - "surface": 11590000, - "canton": null, - "numero_insee": "91511" - } - }, - { - "pk": 3724, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "QUINCY-SOUS-SENART", - "center": "POINT (614066.2262411442352459 2407954.8087478056550026)", - "surface": 5220000, - "canton": null, - "numero_insee": "91514" - } - }, - { - "pk": 14038, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "RICHARVILLE", - "center": "POINT (574926.8657608758658171 2385510.9226997755467892)", - "surface": 10470000, - "canton": null, - "numero_insee": "91519" - } - }, - { - "pk": 25296, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "RIS-ORANGIS", - "center": "POINT (605184.2009207223309204 2405078.2426042170263827)", - "surface": 8390000, - "canton": null, - "numero_insee": "91521" - } - }, - { - "pk": 37109, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ROINVILLE", - "center": "POINT (578984.2347511969273910 2390948.7380998316220939)", - "surface": 13500000, - "canton": null, - "numero_insee": "91525" - } - }, - { - "pk": 32003, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "ROINVILLIERS", - "center": "POINT (592554.7604630042333156 2371748.6773258685134351)", - "surface": 7140000, - "canton": null, - "numero_insee": "91526" - } - }, - { - "pk": 18352, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SACLAS", - "center": "POINT (583435.4021282594185323 2373273.3775223814882338)", - "surface": 13680000, - "canton": null, - "numero_insee": "91533" - } - }, - { - "pk": 24960, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-AUBIN", - "center": "POINT (585404.7654455115552992 2412917.8497218252159655)", - "surface": 3550000, - "canton": null, - "numero_insee": "91538" - } - }, - { - "pk": 25693, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-CHERON", - "center": "POINT (584458.3894760963739827 2394497.0782196577638388)", - "surface": 11500000, - "canton": null, - "numero_insee": "91540" - } - }, - { - "pk": 13486, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-CYR-LA-RIVIERE", - "center": "POINT (585144.8970719815697521 2372286.9824095331132412)", - "surface": 8750000, - "canton": null, - "numero_insee": "91544" - } - }, - { - "pk": 33539, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-CYR-SOUS-DOURDAN", - "center": "POINT (577938.3385251688305289 2396343.7886480963788927)", - "surface": 10070000, - "canton": null, - "numero_insee": "91546" - } - }, - { - "pk": 27959, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-ESCOBILLE", - "center": "POINT (571967.6599094328703359 2380382.5043704807758331)", - "surface": 11990000, - "canton": null, - "numero_insee": "91547" - } - }, - { - "pk": 8226, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINTE-GENEVIEVE-DES-BOIS", - "center": "POINT (599483.1506782886572182 2404730.1718848031014204)", - "surface": 9360000, - "canton": null, - "numero_insee": "91549" - } - }, - { - "pk": 13338, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-GERMAIN-LES-ARPAJON", - "center": "POINT (594620.3733318801969290 2399886.0131143014878035)", - "surface": 6300000, - "canton": null, - "numero_insee": "91552" - } - }, - { - "pk": 10009, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-GERMAIN-LES-CORBEIL", - "center": "POINT (611406.5802163855405524 2402928.9755486063659191)", - "surface": 4050000, - "canton": null, - "numero_insee": "91553" - } - }, - { - "pk": 27724, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-HILAIRE", - "center": "POINT (581457.0294395193923265 2382463.4083298263140023)", - "surface": 6820000, - "canton": null, - "numero_insee": "91556" - } - }, - { - "pk": 22363, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-JEAN-DE-BEAUREGARD", - "center": "POINT (587752.3301937620854005 2407433.7189871896989644)", - "surface": 4010000, - "canton": null, - "numero_insee": "91560" - } - }, - { - "pk": 11678, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-MAURICE-MONTCOURONNE", - "center": "POINT (584030.4616927412571386 2397795.8144156900234520)", - "surface": 9120000, - "canton": null, - "numero_insee": "91568" - } - }, - { - "pk": 13323, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-MICHEL-SUR-ORGE", - "center": "POINT (598091.5103269738610834 2403617.7254274878650904)", - "surface": 5320000, - "canton": null, - "numero_insee": "91570" - } - }, - { - "pk": 37933, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-PIERRE-DU-PERRAY", - "center": "POINT (613226.2105901896720752 2400742.7274674340151250)", - "surface": 11760000, - "canton": null, - "numero_insee": "91573" - } - }, - { - "pk": 5574, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINTRY-SUR-SEINE", - "center": "POINT (611536.9112010402604938 2399327.5506843472830951)", - "surface": 3310000, - "canton": null, - "numero_insee": "91577" - } - }, - { - "pk": 12124, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-SULPICE-DE-FAVIERES", - "center": "POINT (588373.4493764051003382 2393028.8380161598324776)", - "surface": 4410000, - "canton": null, - "numero_insee": "91578" - } - }, - { - "pk": 9223, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-VRAIN", - "center": "POINT (598980.1895806918619201 2393117.8112624729983509)", - "surface": 11570000, - "canton": null, - "numero_insee": "91579" - } - }, - { - "pk": 27157, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAINT-YON", - "center": "POINT (589351.4316146965138614 2395738.9420854183845222)", - "surface": 4670000, - "canton": null, - "numero_insee": "91581" - } - }, - { - "pk": 9588, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAULX-LES-CHARTREUX", - "center": "POINT (594739.0729965335922316 2409593.7699914472177625)", - "surface": 7710000, - "canton": null, - "numero_insee": "91587" - } - }, - { - "pk": 10618, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SAVIGNY-SUR-ORGE", - "center": "POINT (600844.5511018607066944 2409444.8661348237656057)", - "surface": 7000000, - "canton": null, - "numero_insee": "91589" - } - }, - { - "pk": 7584, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SERMAISE", - "center": "POINT (581673.3802072429098189 2392472.3281487040221691)", - "surface": 13840000, - "canton": null, - "numero_insee": "91593" - } - }, - { - "pk": 32820, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SOISY-SUR-ECOLE", - "center": "POINT (610743.1152518338058144 2386611.9087555408477783)", - "surface": 11530000, - "canton": null, - "numero_insee": "91599" - } - }, - { - "pk": 24706, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SOISY-SUR-SEINE", - "center": "POINT (609272.4780970518477261 2406813.7639835397712886)", - "surface": 8690000, - "canton": null, - "numero_insee": "91600" - } - }, - { - "pk": 29055, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "SOUZY-LA-BRICHE", - "center": "POINT (586480.6290234457701445 2392012.2630222272127867)", - "surface": 7360000, - "canton": null, - "numero_insee": "91602" - } - }, - { - "pk": 9376, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "CONGERVILLE-THIONVILLE", - "center": "POINT (574306.0112925749272108 2375998.9219340994022787)", - "surface": 8370000, - "canton": null, - "numero_insee": "91613" - } - }, - { - "pk": 26046, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "TIGERY", - "center": "POINT (613390.1764274942688644 2405047.1094044595956802)", - "surface": 9410000, - "canton": null, - "numero_insee": "91617" - } - }, - { - "pk": 11179, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "TORFOU", - "center": "POINT (592380.1893922598101199 2392562.0842767376452684)", - "surface": 3480000, - "canton": null, - "numero_insee": "91619" - } - }, - { - "pk": 24322, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VALPUISEAUX", - "center": "POINT (597514.3602254959987476 2376994.0357656097039580)", - "surface": 18710000, - "canton": null, - "numero_insee": "91629" - } - }, - { - "pk": 24372, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LE VAL-SAINT-GERMAIN", - "center": "POINT (581138.6886543354485184 2396570.7390923951752484)", - "surface": 12650000, - "canton": null, - "numero_insee": "91630" - } - }, - { - "pk": 7968, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VARENNES-JARCY", - "center": "POINT (616557.6917224627686664 2409176.5838374560698867)", - "surface": 5540000, - "canton": null, - "numero_insee": "91631" - } - }, - { - "pk": 6585, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VAUGRIGNEUSE", - "center": "POINT (582908.8035281781340018 2400288.1684341132640839)", - "surface": 6150000, - "canton": null, - "numero_insee": "91634" - } - }, - { - "pk": 11037, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VAUHALLAN", - "center": "POINT (589793.2302149394527078 2414655.8129442920908332)", - "surface": 3320000, - "canton": null, - "numero_insee": "91635" - } - }, - { - "pk": 9096, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VAYRES-SUR-ESSONNE", - "center": "POINT (600580.2537528254324570 2381322.8514421018771827)", - "surface": 8460000, - "canton": null, - "numero_insee": "91639" - } - }, - { - "pk": 25251, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VERRIERES-LE-BUISSON", - "center": "POINT (593678.0167324397480115 2416789.8390848143026233)", - "surface": 9990000, - "canton": null, - "numero_insee": "91645" - } - }, - { - "pk": 33529, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VERT-LE-GRAND", - "center": "POINT (602239.4450283315964043 2398248.7607450755313039)", - "surface": 16130000, - "canton": null, - "numero_insee": "91648" - } - }, - { - "pk": 27322, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VERT-LE-PETIT", - "center": "POINT (602168.7833048654720187 2394745.7048663599416614)", - "surface": 6840000, - "canton": null, - "numero_insee": "91649" - } - }, - { - "pk": 22930, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VIDELLES", - "center": "POINT (606149.4111438216641545 2385472.5380176175385714)", - "surface": 8790000, - "canton": null, - "numero_insee": "91654" - } - }, - { - "pk": 24913, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VIGNEUX-SUR-SEINE", - "center": "POINT (606730.5769295424688607 2411595.7416427778080106)", - "surface": 8970000, - "canton": null, - "numero_insee": "91657" - } - }, - { - "pk": 5517, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VILLABE", - "center": "POINT (608441.6801033093361184 2398500.9852460208348930)", - "surface": 4680000, - "canton": null, - "numero_insee": "91659" - } - }, - { - "pk": 32640, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VILLEBON-SUR-YVETTE", - "center": "POINT (592527.6318301204591990 2410776.0509811537340283)", - "surface": 7490000, - "canton": null, - "numero_insee": "91661" - } - }, - { - "pk": 29492, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VILLECONIN", - "center": "POINT (584502.8374305011238903 2389193.7023778846487403)", - "surface": 14680000, - "canton": null, - "numero_insee": "91662" - } - }, - { - "pk": 35472, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LA VILLE-DU-BOIS", - "center": "POINT (594661.6754510232713073 2406891.2462716577574611)", - "surface": 3550000, - "canton": null, - "numero_insee": "91665" - } - }, - { - "pk": 14308, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VILLEMOISSON-SUR-ORGE", - "center": "POINT (599564.7371045717736706 2406932.3882232708856463)", - "surface": 2320000, - "canton": null, - "numero_insee": "91667" - } - }, - { - "pk": 37839, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VILLENEUVE-SUR-AUVERS", - "center": "POINT (593842.3552546838764101 2385269.1687532402575016)", - "surface": 7100000, - "canton": null, - "numero_insee": "91671" - } - }, - { - "pk": 13449, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VILLIERS-LE-BACLE", - "center": "POINT (584191.4423168757930398 2414408.7153670960105956)", - "surface": 6090000, - "canton": null, - "numero_insee": "91679" - } - }, - { - "pk": 4078, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VILLIERS-SUR-ORGE", - "center": "POINT (597265.8189786089351401 2406612.8868224071338773)", - "surface": 1780000, - "canton": null, - "numero_insee": "91685" - } - }, - { - "pk": 33020, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "VIRY-CHATILLON", - "center": "POINT (602659.1132242380408570 2407858.9886543909087777)", - "surface": 6150000, - "canton": null, - "numero_insee": "91687" - } - }, - { - "pk": 24955, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "WISSOUS", - "center": "POINT (599400.8488131263293326 2414536.2739439029246569)", - "surface": 9110000, - "canton": null, - "numero_insee": "91689" - } - }, - { - "pk": 14209, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "YERRES", - "center": "POINT (611422.5655797038925812 2412936.0555883459746838)", - "surface": 9940000, - "canton": null, - "numero_insee": "91691" - } - }, - { - "pk": 27156, - "model": "ishtar_common.town", - "fields": { - "departement": 92, - "name": "LES ULIS", - "center": "POINT (588839.5935808002250269 2409043.9453871669247746)", - "surface": 5430000, - "canton": null, - "numero_insee": "91692" - } - }, - { - "pk": 25509, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "ANTONY", - "center": "POINT (597180.1760719562880695 2416819.2211968321353197)", - "surface": 9560000, - "canton": null, - "numero_insee": "92002" - } - }, - { - "pk": 19030, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "ASNIERES-SUR-SEINE", - "center": "POINT (596425.3256456101080403 2435225.4002726962789893)", - "surface": 4820000, - "canton": null, - "numero_insee": "92004" - } - }, - { - "pk": 31585, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "BAGNEUX", - "center": "POINT (598036.2273865893948823 2422130.0367107409983873)", - "surface": 4180000, - "canton": null, - "numero_insee": "92007" - } - }, - { - "pk": 12827, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "BOIS-COLOMBES", - "center": "POINT (594924.4222947256639600 2435212.8078844035044312)", - "surface": 1930000, - "canton": null, - "numero_insee": "92009" - } - }, - { - "pk": 37711, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "BOULOGNE-BILLANCOURT", - "center": "POINT (592796.9524795894976705 2426389.0110706393606961)", - "surface": 6150000, - "canton": null, - "numero_insee": "92012" - } - }, - { - "pk": 8129, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "BOURG-LA-REINE", - "center": "POINT (598453.2669768037740141 2420132.1685578166507185)", - "surface": 1860000, - "canton": null, - "numero_insee": "92014" - } - }, - { - "pk": 13920, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "CHATENAY-MALABRY", - "center": "POINT (594561.7836196377174929 2418798.6259288047440350)", - "surface": 6370000, - "canton": null, - "numero_insee": "92019" - } - }, - { - "pk": 34487, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "CHATILLON", - "center": "POINT (596430.2096937646856532 2422716.9701443011872470)", - "surface": 2930000, - "canton": null, - "numero_insee": "92020" - } - }, - { - "pk": 27787, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "CLAMART", - "center": "POINT (593934.5546344534959644 2421995.5547538818791509)", - "surface": 8760000, - "canton": null, - "numero_insee": "92023" - } - }, - { - "pk": 20221, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "CLICHY", - "center": "POINT (597737.8637308703036979 2433835.4712369730696082)", - "surface": 3080000, - "canton": null, - "numero_insee": "92024" - } - }, - { - "pk": 29315, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "COLOMBES", - "center": "POINT (593416.8044153929222375 2436000.6988731278106570)", - "surface": 7780000, - "canton": null, - "numero_insee": "92025" - } - }, - { - "pk": 10435, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "COURBEVOIE", - "center": "POINT (594039.8281428818590939 2433304.1075396263040602)", - "surface": 4160000, - "canton": null, - "numero_insee": "92026" - } - }, - { - "pk": 11081, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "FONTENAY-AUX-ROSES", - "center": "POINT (596342.7418243298307061 2421215.2113154665566981)", - "surface": 2530000, - "canton": null, - "numero_insee": "92032" - } - }, - { - "pk": 13781, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "GARCHES", - "center": "POINT (588986.2472829010803252 2427357.7335815546102822)", - "surface": 2710000, - "canton": null, - "numero_insee": "92033" - } - }, - { - "pk": 37377, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "LA GARENNE-COLOMBES", - "center": "POINT (593231.7914257325464860 2434197.9359969375655055)", - "surface": 1780000, - "canton": null, - "numero_insee": "92035" - } - }, - { - "pk": 34341, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "GENNEVILLIERS", - "center": "POINT (596807.9352894781623036 2437330.0214772680774331)", - "surface": 11630000, - "canton": null, - "numero_insee": "92036" - } - }, - { - "pk": 11755, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "ISSY-LES-MOULINEAUX", - "center": "POINT (594709.8620894767809659 2425004.1048254221677780)", - "surface": 4240000, - "canton": null, - "numero_insee": "92040" - } - }, - { - "pk": 19029, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "LEVALLOIS-PERRET", - "center": "POINT (596344.5749895229237154 2432923.1734446296468377)", - "surface": 2410000, - "canton": null, - "numero_insee": "92044" - } - }, - { - "pk": 15772, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "MALAKOFF", - "center": "POINT (597017.9828679854981601 2424222.9251254191622138)", - "surface": 2070000, - "canton": null, - "numero_insee": "92046" - } - }, - { - "pk": 7042, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "MARNES-LA-COQUETTE", - "center": "POINT (587498.7559242177521810 2425744.1751814619638026)", - "surface": 3480000, - "canton": null, - "numero_insee": "92047" - } - }, - { - "pk": 11200, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "MEUDON", - "center": "POINT (591926.6153205796144903 2422779.2590955109335482)", - "surface": 9950000, - "canton": null, - "numero_insee": "92048" - } - }, - { - "pk": 32676, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "NANTERRE", - "center": "POINT (590439.3325791968964040 2433073.7748589576222003)", - "surface": 12230000, - "canton": null, - "numero_insee": "92050" - } - }, - { - "pk": 36828, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "NEUILLY-SUR-SEINE", - "center": "POINT (594852.9025912703946233 2431809.9161190474405885)", - "surface": 3710000, - "canton": null, - "numero_insee": "92051" - } - }, - { - "pk": 26981, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "LE PLESSIS-ROBINSON", - "center": "POINT (594349.9089331845752895 2420197.8078769487328827)", - "surface": 3410000, - "canton": null, - "numero_insee": "92060" - } - }, - { - "pk": 6003, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "PUTEAUX", - "center": "POINT (592752.4713826631195843 2431692.2293530320748687)", - "surface": 3180000, - "canton": null, - "numero_insee": "92062" - } - }, - { - "pk": 23294, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "RUEIL-MALMAISON", - "center": "POINT (588263.1707961995853111 2430053.5013713068328798)", - "surface": 14530000, - "canton": null, - "numero_insee": "92063" - } - }, - { - "pk": 34790, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "SAINT-CLOUD", - "center": "POINT (590588.8991821799427271 2427171.0363083705306053)", - "surface": 7510000, - "canton": null, - "numero_insee": "92064" - } - }, - { - "pk": 12681, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "SCEAUX", - "center": "POINT (596954.8643750831251964 2419819.3892138297669590)", - "surface": 3600000, - "canton": null, - "numero_insee": "92071" - } - }, - { - "pk": 28215, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "SEVRES", - "center": "POINT (590709.0985227632336318 2424770.4121341733261943)", - "surface": 3920000, - "canton": null, - "numero_insee": "92072" - } - }, - { - "pk": 37559, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "SURESNES", - "center": "POINT (591365.0506678860401735 2430079.5112479282543063)", - "surface": 3790000, - "canton": null, - "numero_insee": "92073" - } - }, - { - "pk": 31680, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "VANVES", - "center": "POINT (596313.3573871861444786 2424717.3534792992286384)", - "surface": 1550000, - "canton": null, - "numero_insee": "92075" - } - }, - { - "pk": 25166, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "VAUCRESSON", - "center": "POINT (586988.3853019888047129 2426940.7123690159060061)", - "surface": 3090000, - "canton": null, - "numero_insee": "92076" - } - }, - { - "pk": 37142, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "VILLE-D'AVRAY", - "center": "POINT (588307.6329505643807352 2424750.2759209778159857)", - "surface": 3690000, - "canton": null, - "numero_insee": "92077" - } - }, - { - "pk": 25530, - "model": "ishtar_common.town", - "fields": { - "departement": 93, - "name": "VILLENEUVE-LA-GARENNE", - "center": "POINT (599107.6369463746668771 2437549.4540578881278634)", - "surface": 3190000, - "canton": null, - "numero_insee": "92078" - } - }, - { - "pk": 6233, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "AUBERVILLIERS", - "center": "POINT (603433.7414034401299432 2434783.8874102518893778)", - "surface": 5770000, - "canton": null, - "numero_insee": "93001" - } - }, - { - "pk": 24896, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "AULNAY-SOUS-BOIS", - "center": "POINT (611407.4532748081255704 2438553.3456635940819979)", - "surface": 16140000, - "canton": null, - "numero_insee": "93005" - } - }, - { - "pk": 8738, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "BAGNOLET", - "center": "POINT (606275.7647980786859989 2430004.5125201237387955)", - "surface": 2570000, - "canton": null, - "numero_insee": "93006" - } - }, - { - "pk": 30507, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LE BLANC-MESNIL", - "center": "POINT (609111.9584791213274002 2437833.5906938770785928)", - "surface": 8120000, - "canton": null, - "numero_insee": "93007" - } - }, - { - "pk": 31360, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "BOBIGNY", - "center": "POINT (607440.3535402297275141 2434317.1970363808795810)", - "surface": 6740000, - "canton": null, - "numero_insee": "93008" - } - }, - { - "pk": 22599, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "BONDY", - "center": "POINT (610747.3871134398505092 2433744.5739067844115198)", - "surface": 5470000, - "canton": null, - "numero_insee": "93010" - } - }, - { - "pk": 19577, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LE BOURGET", - "center": "POINT (606713.0394757976755500 2437513.2393437377177179)", - "surface": 2030000, - "canton": null, - "numero_insee": "93013" - } - }, - { - "pk": 33587, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "COUBRON", - "center": "POINT (617537.1881051775999367 2435502.7843673811294138)", - "surface": 4190000, - "canton": null, - "numero_insee": "93015" - } - }, - { - "pk": 6459, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LA COURNEUVE", - "center": "POINT (604615.1396211178507656 2437095.3530370458029211)", - "surface": 7500000, - "canton": null, - "numero_insee": "93027" - } - }, - { - "pk": 24753, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "DRANCY", - "center": "POINT (607925.5264406627975404 2436122.4831919618882239)", - "surface": 7780000, - "canton": null, - "numero_insee": "93029" - } - }, - { - "pk": 35214, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "DUGNY", - "center": "POINT (606399.4137919442728162 2439111.6777643682435155)", - "surface": 3880000, - "canton": null, - "numero_insee": "93030" - } - }, - { - "pk": 6932, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "EPINAY-SUR-SEINE", - "center": "POINT (598289.5229757773922756 2439643.9952028626576066)", - "surface": 4590000, - "canton": null, - "numero_insee": "93031" - } - }, - { - "pk": 27756, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "GAGNY", - "center": "POINT (615269.4462515662889928 2431481.0239039519801736)", - "surface": 6990000, - "canton": null, - "numero_insee": "93032" - } - }, - { - "pk": 36402, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "GOURNAY-SUR-MARNE", - "center": "POINT (617490.9671856571221724 2429098.0747523559257388)", - "surface": 1660000, - "canton": null, - "numero_insee": "93033" - } - }, - { - "pk": 37759, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "L'ILE-SAINT-DENIS", - "center": "POINT (599299.3592068039579317 2438551.7335601779632270)", - "surface": 1740000, - "canton": null, - "numero_insee": "93039" - } - }, - { - "pk": 30896, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LES LILAS", - "center": "POINT (606063.0386149345431477 2431503.7404636382125318)", - "surface": 1250000, - "canton": null, - "numero_insee": "93045" - } - }, - { - "pk": 33073, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LIVRY-GARGAN", - "center": "POINT (614533.7004940031329170 2435677.6710603772662580)", - "surface": 7360000, - "canton": null, - "numero_insee": "93046" - } - }, - { - "pk": 35943, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "MONTFERMEIL", - "center": "POINT (616855.2729401348624378 2433295.5697937868535519)", - "surface": 5410000, - "canton": null, - "numero_insee": "93047" - } - }, - { - "pk": 36410, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "MONTREUIL", - "center": "POINT (608181.9597699475707486 2429420.1165850018151104)", - "surface": 8900000, - "canton": null, - "numero_insee": "93048" - } - }, - { - "pk": 9901, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "NEUILLY-PLAISANCE", - "center": "POINT (612683.8492689747363329 2429558.0077584921382368)", - "surface": 3410000, - "canton": null, - "numero_insee": "93049" - } - }, - { - "pk": 34298, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "NEUILLY-SUR-MARNE", - "center": "POINT (614887.7069391799159348 2429276.3265416426584125)", - "surface": 6970000, - "canton": null, - "numero_insee": "93050" - } - }, - { - "pk": 6040, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "NOISY-LE-GRAND", - "center": "POINT (616713.1934658555546775 2426389.7032382674515247)", - "surface": 13040000, - "canton": null, - "numero_insee": "93051" - } - }, - { - "pk": 8228, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "NOISY-LE-SEC", - "center": "POINT (608956.3878350543091074 2432528.7180128991603851)", - "surface": 5030000, - "canton": null, - "numero_insee": "93053" - } - }, - { - "pk": 11727, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "PANTIN", - "center": "POINT (605247.4298030289355665 2433298.1060885954648256)", - "surface": 5040000, - "canton": null, - "numero_insee": "93055" - } - }, - { - "pk": 8602, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LES PAVILLONS-SOUS-BOIS", - "center": "POINT (612143.1868480949196965 2434356.7063297946006060)", - "surface": 2930000, - "canton": null, - "numero_insee": "93057" - } - }, - { - "pk": 10904, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "PIERREFITTE-SUR-SEINE", - "center": "POINT (601886.6381662784842774 2440274.5885679963976145)", - "surface": 3450000, - "canton": null, - "numero_insee": "93059" - } - }, - { - "pk": 11848, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LE PRE-SAINT-GERVAIS", - "center": "POINT (604959.8522536632372066 2431794.6788644841872156)", - "surface": 690000, - "canton": null, - "numero_insee": "93061" - } - }, - { - "pk": 36872, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "LE RAINCY", - "center": "POINT (613354.0010988931171596 2433166.0727020441554487)", - "surface": 2260000, - "canton": null, - "numero_insee": "93062" - } - }, - { - "pk": 27958, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "ROMAINVILLE", - "center": "POINT (607361.3039730484597385 2431814.8468911307863891)", - "surface": 3450000, - "canton": null, - "numero_insee": "93063" - } - }, - { - "pk": 25316, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "ROSNY-SOUS-BOIS", - "center": "POINT (610973.5700375594897196 2430644.3811948960646987)", - "surface": 5920000, - "canton": null, - "numero_insee": "93064" - } - }, - { - "pk": 17764, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "SAINT-DENIS", - "center": "POINT (601615.8574781697243452 2436769.9701838875189424)", - "surface": 12380000, - "canton": null, - "numero_insee": "93066" - } - }, - { - "pk": 7570, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "SAINT-OUEN", - "center": "POINT (599633.1313456678763032 2434551.8483253531157970)", - "surface": 4260000, - "canton": null, - "numero_insee": "93070" - } - }, - { - "pk": 14144, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "SEVRAN", - "center": "POINT (614215.8594660124508664 2437776.4100021859630942)", - "surface": 7300000, - "canton": null, - "numero_insee": "93071" - } - }, - { - "pk": 34296, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "STAINS", - "center": "POINT (603491.7957340604625642 2439787.7302025505341589)", - "surface": 5390000, - "canton": null, - "numero_insee": "93072" - } - }, - { - "pk": 18359, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "TREMBLAY-EN-FRANCE", - "center": "POINT (615979.9303968888707459 2442194.1812993399798870)", - "surface": 22590000, - "canton": null, - "numero_insee": "93073" - } - }, - { - "pk": 13608, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "VAUJOURS", - "center": "POINT (617923.9684662683866918 2437107.1113607087172568)", - "surface": 3680000, - "canton": null, - "numero_insee": "93074" - } - }, - { - "pk": 26300, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "VILLEMOMBLE", - "center": "POINT (612565.2899420816684142 2431758.4996144631877542)", - "surface": 4030000, - "canton": null, - "numero_insee": "93077" - } - }, - { - "pk": 30505, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "VILLEPINTE", - "center": "POINT (614596.7563499041134492 2440081.1519945780746639)", - "surface": 10420000, - "canton": null, - "numero_insee": "93078" - } - }, - { - "pk": 7741, - "model": "ishtar_common.town", - "fields": { - "departement": 94, - "name": "VILLETANEUSE", - "center": "POINT (600589.2201078514335677 2439863.4300958425737917)", - "surface": 2320000, - "canton": null, - "numero_insee": "93079" - } - }, - { - "pk": 5839, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "ABLON-SUR-SEINE", - "center": "POINT (606210.9382997475331649 2413892.9660670505836606)", - "surface": 1140000, - "canton": null, - "numero_insee": "94001" - } - }, - { - "pk": 35693, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "ALFORTVILLE", - "center": "POINT (606143.7106351921102032 2421897.8942098496481776)", - "surface": 3680000, - "canton": null, - "numero_insee": "94002" - } - }, - { - "pk": 4768, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "ARCUEIL", - "center": "POINT (599729.7104721694486216 2423044.8637221483513713)", - "surface": 2320000, - "canton": null, - "numero_insee": "94003" - } - }, - { - "pk": 25668, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "BOISSY-SAINT-LEGER", - "center": "POINT (613794.6198550350964069 2416458.4010994737036526)", - "surface": 8880000, - "canton": null, - "numero_insee": "94004" - } - }, - { - "pk": 29251, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "BONNEUIL-SUR-MARNE", - "center": "POINT (611067.7315403555985540 2419437.5460882382467389)", - "surface": 5530000, - "canton": null, - "numero_insee": "94011" - } - }, - { - "pk": 34297, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "BRY-SUR-MARNE", - "center": "POINT (613708.8431487082270905 2426664.6541066500358284)", - "surface": 3320000, - "canton": null, - "numero_insee": "94015" - } - }, - { - "pk": 6933, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "CACHAN", - "center": "POINT (599543.0250803468516096 2421442.2039271639660001)", - "surface": 2780000, - "canton": null, - "numero_insee": "94016" - } - }, - { - "pk": 35469, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "CHAMPIGNY-SUR-MARNE", - "center": "POINT (613228.7203497620066628 2424258.9856684529222548)", - "surface": 11300000, - "canton": null, - "numero_insee": "94017" - } - }, - { - "pk": 25691, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "CHARENTON-LE-PONT", - "center": "POINT (605217.9511209756601602 2424892.1663805963471532)", - "surface": 1830000, - "canton": null, - "numero_insee": "94018" - } - }, - { - "pk": 7248, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "CHENNEVIERES-SUR-MARNE", - "center": "POINT (615048.3229916957207024 2422072.7774081812240183)", - "surface": 5220000, - "canton": null, - "numero_insee": "94019" - } - }, - { - "pk": 5965, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "CHEVILLY-LARUE", - "center": "POINT (601167.5246215666411445 2418653.9218343384563923)", - "surface": 4210000, - "canton": null, - "numero_insee": "94021" - } - }, - { - "pk": 24560, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "CHOISY-LE-ROI", - "center": "POINT (605872.9379485682584345 2418393.2234370014630258)", - "surface": 5410000, - "canton": null, - "numero_insee": "94022" - } - }, - { - "pk": 6785, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "CRETEIL", - "center": "POINT (608657.0101721963146701 2420518.0465265400707722)", - "surface": 11440000, - "canton": null, - "numero_insee": "94028" - } - }, - { - "pk": 4506, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "FONTENAY-SOUS-BOIS", - "center": "POINT (609994.8209441902581602 2428034.3965772809460759)", - "surface": 5570000, - "canton": null, - "numero_insee": "94033" - } - }, - { - "pk": 30516, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "FRESNES", - "center": "POINT (599175.5313820844748989 2417536.4470129734836519)", - "surface": 3550000, - "canton": null, - "numero_insee": "94034" - } - }, - { - "pk": 13893, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "GENTILLY", - "center": "POINT (600523.4808928892016411 2423852.0718935639597476)", - "surface": 1170000, - "canton": null, - "numero_insee": "94037" - } - }, - { - "pk": 14172, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "L'HAY-LES-ROSES", - "center": "POINT (600057.6092156347585842 2419745.3594487211667001)", - "surface": 3900000, - "canton": null, - "numero_insee": "94038" - } - }, - { - "pk": 12122, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "IVRY-SUR-SEINE", - "center": "POINT (603726.2770737258251756 2423778.8913302957080305)", - "surface": 6120000, - "canton": null, - "numero_insee": "94041" - } - }, - { - "pk": 6771, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "JOINVILLE-LE-PONT", - "center": "POINT (609824.1214222121052444 2424530.5827751755714417)", - "surface": 2270000, - "canton": null, - "numero_insee": "94042" - } - }, - { - "pk": 33108, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "LE KREMLIN-BICETRE", - "center": "POINT (601428.2308532949537039 2423359.3254799889400601)", - "surface": 1550000, - "canton": null, - "numero_insee": "94043" - } - }, - { - "pk": 32156, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "LIMEIL-BREVANNES", - "center": "POINT (611194.6968611266929656 2416236.4155308962799609)", - "surface": 6970000, - "canton": null, - "numero_insee": "94044" - } - }, - { - "pk": 34531, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "MAISONS-ALFORT", - "center": "POINT (607434.4219472875120118 2423109.5540986484847963)", - "surface": 5360000, - "canton": null, - "numero_insee": "94046" - } - }, - { - "pk": 11408, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "MANDRES-LES-ROSES", - "center": "POINT (615534.3591882311739028 2411869.8514121444895864)", - "surface": 3370000, - "canton": null, - "numero_insee": "94047" - } - }, - { - "pk": 31743, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "MAROLLES-EN-BRIE", - "center": "POINT (616002.7064775614999235 2415676.4101099809631705)", - "surface": 4570000, - "canton": null, - "numero_insee": "94048" - } - }, - { - "pk": 12102, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "NOISEAU", - "center": "POINT (616070.8050450211158022 2419479.5928301205858588)", - "surface": 4580000, - "canton": null, - "numero_insee": "94053" - } - }, - { - "pk": 31720, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "ORLY", - "center": "POINT (604192.0558933868305758 2415977.4592785914428532)", - "surface": 6670000, - "canton": null, - "numero_insee": "94054" - } - }, - { - "pk": 26917, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "ORMESSON-SUR-MARNE", - "center": "POINT (614859.1339411325752735 2420770.2982312790118158)", - "surface": 3440000, - "canton": null, - "numero_insee": "94055" - } - }, - { - "pk": 12905, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "PERIGNY", - "center": "POINT (616543.3916915480513126 2410877.6416230620816350)", - "surface": 2760000, - "canton": null, - "numero_insee": "94056" - } - }, - { - "pk": 5079, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "LE PERREUX-SUR-MARNE", - "center": "POINT (612304.6272983668604866 2427053.1252375505864620)", - "surface": 3960000, - "canton": null, - "numero_insee": "94058" - } - }, - { - "pk": 10664, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "LE PLESSIS-TREVISE", - "center": "POINT (617542.2832075888291001 2422994.3571994956582785)", - "surface": 4350000, - "canton": null, - "numero_insee": "94059" - } - }, - { - "pk": 32565, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "LA QUEUE-EN-BRIE", - "center": "POINT (618168.7306142298039049 2419897.5042181308381259)", - "surface": 9360000, - "canton": null, - "numero_insee": "94060" - } - }, - { - "pk": 37522, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "RUNGIS", - "center": "POINT (601183.4836096540093422 2416752.7510366663336754)", - "surface": 4190000, - "canton": null, - "numero_insee": "94065" - } - }, - { - "pk": 32459, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "SAINT-MANDE", - "center": "POINT (605999.9522667026612908 2427100.2297516129910946)", - "surface": 900000, - "canton": null, - "numero_insee": "94067" - } - }, - { - "pk": 37585, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "SAINT-MAUR-DES-FOSSES", - "center": "POINT (611544.4972551697865129 2422243.4680235278792679)", - "surface": 11230000, - "canton": null, - "numero_insee": "94068" - } - }, - { - "pk": 25314, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "SAINT-MAURICE", - "center": "POINT (607323.4351280439877883 2424409.5083858831785619)", - "surface": 1430000, - "canton": null, - "numero_insee": "94069" - } - }, - { - "pk": 23573, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "SANTENY", - "center": "POINT (617607.9010859564878047 2415189.5602807370014489)", - "surface": 10010000, - "canton": null, - "numero_insee": "94070" - } - }, - { - "pk": 22965, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "SUCY-EN-BRIE", - "center": "POINT (614377.3290833162609488 2418564.7411341485567391)", - "surface": 10410000, - "canton": null, - "numero_insee": "94071" - } - }, - { - "pk": 25270, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "THIAIS", - "center": "POINT (603574.8825756515143439 2417973.6518365028314292)", - "surface": 6440000, - "canton": null, - "numero_insee": "94073" - } - }, - { - "pk": 37523, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VALENTON", - "center": "POINT (609085.8353160022525117 2417119.3168756449595094)", - "surface": 5310000, - "canton": null, - "numero_insee": "94074" - } - }, - { - "pk": 28359, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VILLECRESNES", - "center": "POINT (614319.3172973007895052 2413560.8130033914931118)", - "surface": 5640000, - "canton": null, - "numero_insee": "94075" - } - }, - { - "pk": 7079, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VILLEJUIF", - "center": "POINT (601643.4728228088933975 2421559.9030877104960382)", - "surface": 5280000, - "canton": null, - "numero_insee": "94076" - } - }, - { - "pk": 26047, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VILLENEUVE-LE-ROI", - "center": "POINT (605402.8803601785330102 2414786.8004884920082986)", - "surface": 8480000, - "canton": null, - "numero_insee": "94077" - } - }, - { - "pk": 29444, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VILLENEUVE-SAINT-GEORGES", - "center": "POINT (608196.2069706545444205 2415810.9496996277011931)", - "surface": 8040000, - "canton": null, - "numero_insee": "94078" - } - }, - { - "pk": 27365, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VILLIERS-SUR-MARNE", - "center": "POINT (615321.5924267990048975 2425277.2568912710994482)", - "surface": 4320000, - "canton": null, - "numero_insee": "94079" - } - }, - { - "pk": 11741, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VINCENNES", - "center": "POINT (607396.6021752919768915 2427612.2993091633543372)", - "surface": 1910000, - "canton": null, - "numero_insee": "94080" - } - }, - { - "pk": 28383, - "model": "ishtar_common.town", - "fields": { - "departement": 95, - "name": "VITRY-SUR-SEINE", - "center": "POINT (604149.2064497442916036 2421080.5984666789881885)", - "surface": 11650000, - "canton": null, - "numero_insee": "94081" - } - }, - { - "pk": 33152, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ABLEIGES", - "center": "POINT (573550.8093570758355781 2454246.4508152999915183)", - "surface": 7910000, - "canton": null, - "numero_insee": "95002" - } - }, - { - "pk": 10980, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "AINCOURT", - "center": "POINT (558752.9912810991518199 2452821.7949073365889490)", - "surface": 10090000, - "canton": null, - "numero_insee": "95008" - } - }, - { - "pk": 35805, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "AMBLEVILLE", - "center": "POINT (553076.9584949382115155 2461480.0538614783436060)", - "surface": 8030000, - "canton": null, - "numero_insee": "95011" - } - }, - { - "pk": 32812, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "AMENUCOURT", - "center": "POINT (549811.8133636671118438 2457049.9012838201597333)", - "surface": 8790000, - "canton": null, - "numero_insee": "95012" - } - }, - { - "pk": 14171, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ANDILLY", - "center": "POINT (597439.5058926586061716 2445540.7962484681047499)", - "surface": 2750000, - "canton": null, - "numero_insee": "95014" - } - }, - { - "pk": 8249, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ARGENTEUIL", - "center": "POINT (592989.7069150508614257 2439199.2628851812332869)", - "surface": 17380000, - "canton": null, - "numero_insee": "95018" - } - }, - { - "pk": 19581, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ARNOUVILLE", - "center": "POINT (605866.3423609412275255 2443009.8063542316667736)", - "surface": 2870000, - "canton": null, - "numero_insee": "95019" - } - }, - { - "pk": 36729, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ARRONVILLE", - "center": "POINT (583675.4623929687077180 2464037.5943966931663454)", - "surface": 16010000, - "canton": null, - "numero_insee": "95023" - } - }, - { - "pk": 27998, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ARTHIES", - "center": "POINT (560533.1342514692805707 2455338.3222273155115545)", - "surface": 7470000, - "canton": null, - "numero_insee": "95024" - } - }, - { - "pk": 4011, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ASNIERES-SUR-OISE", - "center": "POINT (603119.4588004574179649 2460298.1513032368384302)", - "surface": 14170000, - "canton": null, - "numero_insee": "95026" - } - }, - { - "pk": 9372, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ATTAINVILLE", - "center": "POINT (600992.9292484851321205 2451374.4591548936441541)", - "surface": 7240000, - "canton": null, - "numero_insee": "95028" - } - }, - { - "pk": 27639, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "AUVERS-SUR-OISE", - "center": "POINT (586665.2102041179314256 2453555.7884873775765300)", - "surface": 12800000, - "canton": null, - "numero_insee": "95039" - } - }, - { - "pk": 33380, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "AVERNES", - "center": "POINT (565842.9390085346531123 2454582.2066921726800501)", - "surface": 12530000, - "canton": null, - "numero_insee": "95040" - } - }, - { - "pk": 31180, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BAILLET-EN-FRANCE", - "center": "POINT (597492.5460720292758197 2451144.9495064984075725)", - "surface": 8050000, - "canton": null, - "numero_insee": "95042" - } - }, - { - "pk": 34338, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BANTHELU", - "center": "POINT (561805.4470699373632669 2458751.1887901951558888)", - "surface": 8180000, - "canton": null, - "numero_insee": "95046" - } - }, - { - "pk": 31827, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BEAUCHAMP", - "center": "POINT (589428.0419469962362200 2446274.1269356189295650)", - "surface": 3050000, - "canton": null, - "numero_insee": "95051" - } - }, - { - "pk": 3373, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BEAUMONT-SUR-OISE", - "center": "POINT (597316.9222534177824855 2460149.3825955409556627)", - "surface": 5590000, - "canton": null, - "numero_insee": "95052" - } - }, - { - "pk": 36547, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE BELLAY-EN-VEXIN", - "center": "POINT (566487.2622655552113429 2461291.9815418212674558)", - "surface": 5150000, - "canton": null, - "numero_insee": "95054" - } - }, - { - "pk": 26103, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BELLEFONTAINE", - "center": "POINT (609668.6340157559607178 2454949.6183776697143912)", - "surface": 7560000, - "canton": null, - "numero_insee": "95055" - } - }, - { - "pk": 28175, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BELLOY-EN-FRANCE", - "center": "POINT (602564.4709126426605508 2454889.9560711802914739)", - "surface": 9520000, - "canton": null, - "numero_insee": "95056" - } - }, - { - "pk": 29098, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BERNES-SUR-OISE", - "center": "POINT (597392.6318235341459513 2463051.9073066101409495)", - "surface": 5530000, - "canton": null, - "numero_insee": "95058" - } - }, - { - "pk": 5365, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BERVILLE", - "center": "POINT (580556.9017121755750850 2466012.7616801364347339)", - "surface": 8530000, - "canton": null, - "numero_insee": "95059" - } - }, - { - "pk": 5823, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BESSANCOURT", - "center": "POINT (589807.3040202148258686 2448778.9640343086794019)", - "surface": 6370000, - "canton": null, - "numero_insee": "95060" - } - }, - { - "pk": 36663, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BETHEMONT-LA-FORET", - "center": "POINT (593694.5026448181597516 2450612.7547047575935721)", - "surface": 3740000, - "canton": null, - "numero_insee": "95061" - } - }, - { - "pk": 14058, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BEZONS", - "center": "POINT (590811.8837187858298421 2436379.1201042234897614)", - "surface": 4180000, - "canton": null, - "numero_insee": "95063" - } - }, - { - "pk": 13006, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BOISEMONT", - "center": "POINT (575614.8237204222241417 2446758.7799123101867735)", - "surface": 2000000, - "canton": null, - "numero_insee": "95074" - } - }, - { - "pk": 27726, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BOISSY-L'AILLERIE", - "center": "POINT (577756.6275979769416153 2453881.4063394656404853)", - "surface": 5710000, - "canton": null, - "numero_insee": "95078" - } - }, - { - "pk": 34530, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BONNEUIL-EN-FRANCE", - "center": "POINT (607186.4464319299440831 2440719.3582457834854722)", - "surface": 4760000, - "canton": null, - "numero_insee": "95088" - } - }, - { - "pk": 6556, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BOUFFEMONT", - "center": "POINT (597208.3216728767147288 2449241.3092151232995093)", - "surface": 4570000, - "canton": null, - "numero_insee": "95091" - } - }, - { - "pk": 8759, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BOUQUEVAL", - "center": "POINT (606832.4826813257532194 2447120.6463017263449728)", - "surface": 2820000, - "canton": null, - "numero_insee": "95094" - } - }, - { - "pk": 4508, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BRAY-ET-LU", - "center": "POINT (550982.4239651123061776 2460662.0330689856782556)", - "surface": 3750000, - "canton": null, - "numero_insee": "95101" - } - }, - { - "pk": 28396, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BREANCON", - "center": "POINT (577094.2644335118820891 2461280.7035974585451186)", - "surface": 10670000, - "canton": null, - "numero_insee": "95102" - } - }, - { - "pk": 30977, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BRIGNANCOURT", - "center": "POINT (571299.2664690071251243 2460231.5325013212859631)", - "surface": 3110000, - "canton": null, - "numero_insee": "95110" - } - }, - { - "pk": 32897, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BRUYERES-SUR-OISE", - "center": "POINT (599397.9903997336514294 2462568.4110086783766747)", - "surface": 8910000, - "canton": null, - "numero_insee": "95116" - } - }, - { - "pk": 28678, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BUHY", - "center": "POINT (553738.9052609215723351 2466088.5735232299193740)", - "surface": 6950000, - "canton": null, - "numero_insee": "95119" - } - }, - { - "pk": 13244, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "BUTRY-SUR-OISE", - "center": "POINT (589363.4408267564140260 2453978.6727200397290289)", - "surface": 2780000, - "canton": null, - "numero_insee": "95120" - } - }, - { - "pk": 35807, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CERGY", - "center": "POINT (578997.5631427896441892 2449088.6343660494312644)", - "surface": 14530000, - "canton": null, - "numero_insee": "95127" - } - }, - { - "pk": 30760, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHAMPAGNE-SUR-OISE", - "center": "POINT (592010.4795719734393060 2460505.1278060111217201)", - "surface": 9400000, - "canton": null, - "numero_insee": "95134" - } - }, - { - "pk": 8047, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LA CHAPELLE-EN-VEXIN", - "center": "POINT (555547.4716557729989290 2465203.1039982531219721)", - "surface": 3690000, - "canton": null, - "numero_insee": "95139" - } - }, - { - "pk": 33438, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHARMONT", - "center": "POINT (559993.5204714362043887 2460036.8868454713374376)", - "surface": 3590000, - "canton": null, - "numero_insee": "95141" - } - }, - { - "pk": 15835, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHARS", - "center": "POINT (570381.9935497958213091 2462225.1585361640900373)", - "surface": 16870000, - "canton": null, - "numero_insee": "95142" - } - }, - { - "pk": 11723, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHATENAY-EN-FRANCE", - "center": "POINT (609194.3982658991590142 2451843.5939962388947606)", - "surface": 3100000, - "canton": null, - "numero_insee": "95144" - } - }, - { - "pk": 30938, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHAUMONTEL", - "center": "POINT (607233.6106955272844061 2458931.7852976629510522)", - "surface": 4220000, - "canton": null, - "numero_insee": "95149" - } - }, - { - "pk": 30022, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHAUSSY", - "center": "POINT (553711.5874543569516391 2457382.6786669474095106)", - "surface": 14750000, - "canton": null, - "numero_insee": "95150" - } - }, - { - "pk": 28214, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHAUVRY", - "center": "POINT (594996.1089414091547951 2450523.6075507607311010)", - "surface": 5030000, - "canton": null, - "numero_insee": "95151" - } - }, - { - "pk": 29018, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CHERENCE", - "center": "POINT (552030.6562235305318609 2454967.0597870540805161)", - "surface": 8650000, - "canton": null, - "numero_insee": "95157" - } - }, - { - "pk": 16697, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CLERY-EN-VEXIN", - "center": "POINT (564301.8846389660611749 2459372.4601219547912478)", - "surface": 5090000, - "canton": null, - "numero_insee": "95166" - } - }, - { - "pk": 35455, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "COMMENY", - "center": "POINT (567208.5989365517161787 2458796.3849967857822776)", - "surface": 4760000, - "canton": null, - "numero_insee": "95169" - } - }, - { - "pk": 6284, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CONDECOURT", - "center": "POINT (570694.3298280965536833 2448818.9779083500616252)", - "surface": 6970000, - "canton": null, - "numero_insee": "95170" - } - }, - { - "pk": 13782, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CORMEILLES-EN-PARISIS", - "center": "POINT (589871.9082649855408818 2441074.3861619746312499)", - "surface": 8490000, - "canton": null, - "numero_insee": "95176" - } - }, - { - "pk": 24944, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "CORMEILLES-EN-VEXIN", - "center": "POINT (576827.6081849458860233 2457275.8571321703493595)", - "surface": 9500000, - "canton": null, - "numero_insee": "95177" - } - }, - { - "pk": 6129, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "COURCELLES-SUR-VIOSNE", - "center": "POINT (575064.2574556074105203 2452758.1355071375146508)", - "surface": 3640000, - "canton": null, - "numero_insee": "95181" - } - }, - { - "pk": 34562, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "COURDIMANCHE", - "center": "POINT (575294.5374312124913558 2449157.6877324422821403)", - "surface": 5640000, - "canton": null, - "numero_insee": "95183" - } - }, - { - "pk": 10687, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "DEUIL-LA-BARRE", - "center": "POINT (599174.9459296283312142 2441452.6291265529580414)", - "surface": 3730000, - "canton": null, - "numero_insee": "95197" - } - }, - { - "pk": 25165, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "DOMONT", - "center": "POINT (598921.0826929233735427 2447854.7554801823571324)", - "surface": 8510000, - "canton": null, - "numero_insee": "95199" - } - }, - { - "pk": 25395, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "EAUBONNE", - "center": "POINT (595654.3869209303520620 2443624.5542561016045511)", - "surface": 4380000, - "canton": null, - "numero_insee": "95203" - } - }, - { - "pk": 6695, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ECOUEN", - "center": "POINT (603527.1665502213872969 2447493.1552278529852629)", - "surface": 7630000, - "canton": null, - "numero_insee": "95205" - } - }, - { - "pk": 9552, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ENGHIEN-LES-BAINS", - "center": "POINT (597675.7293905710102990 2441239.9140473012812436)", - "surface": 1760000, - "canton": null, - "numero_insee": "95210" - } - }, - { - "pk": 15703, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ENNERY", - "center": "POINT (583364.9479574456345290 2453327.9964576684869826)", - "surface": 7450000, - "canton": null, - "numero_insee": "95211" - } - }, - { - "pk": 30032, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "EPIAIS-LES-LOUVRES", - "center": "POINT (615530.9092597049893811 2447994.2632524021901190)", - "surface": 3420000, - "canton": null, - "numero_insee": "95212" - } - }, - { - "pk": 35015, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "EPIAIS-RHUS", - "center": "POINT (580720.6675185594940558 2458409.1863029664382339)", - "surface": 10480000, - "canton": null, - "numero_insee": "95213" - } - }, - { - "pk": 34972, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "EPINAY-CHAMPLATREUX", - "center": "POINT (605068.4575648076133803 2454610.7833520015701652)", - "surface": 3580000, - "canton": null, - "numero_insee": "95214" - } - }, - { - "pk": 10771, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ERAGNY", - "center": "POINT (582718.1964707340812311 2446918.3484584121033549)", - "surface": 4690000, - "canton": null, - "numero_insee": "95218" - } - }, - { - "pk": 29314, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ERMONT", - "center": "POINT (594055.9521670843241736 2443310.9448455483652651)", - "surface": 4190000, - "canton": null, - "numero_insee": "95219" - } - }, - { - "pk": 11448, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "EZANVILLE", - "center": "POINT (601914.4590450675459579 2448880.5430065807886422)", - "surface": 5160000, - "canton": null, - "numero_insee": "95229" - } - }, - { - "pk": 23078, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "FONTENAY-EN-PARISIS", - "center": "POINT (607907.0801758979214355 2450231.7241791798733175)", - "surface": 10960000, - "canton": null, - "numero_insee": "95241" - } - }, - { - "pk": 8996, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "FOSSES", - "center": "POINT (611863.1976445743348449 2455768.5822894610464573)", - "surface": 3620000, - "canton": null, - "numero_insee": "95250" - } - }, - { - "pk": 6324, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "FRANCONVILLE", - "center": "POINT (591654.5222838132176548 2443290.8026178772561252)", - "surface": 6230000, - "canton": null, - "numero_insee": "95252" - } - }, - { - "pk": 36214, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "FREMAINVILLE", - "center": "POINT (565763.8071543844416738 2452079.8994777402840555)", - "surface": 5610000, - "canton": null, - "numero_insee": "95253" - } - }, - { - "pk": 27397, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "FREMECOURT", - "center": "POINT (574917.2813065167283639 2458360.5801452365703881)", - "surface": 4310000, - "canton": null, - "numero_insee": "95254" - } - }, - { - "pk": 29097, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "FREPILLON", - "center": "POINT (590295.8530431016115472 2450183.9864012273028493)", - "surface": 3420000, - "canton": null, - "numero_insee": "95256" - } - }, - { - "pk": 12512, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LA FRETTE-SUR-SEINE", - "center": "POINT (588365.1395401348127052 2441762.2198798810131848)", - "surface": 2020000, - "canton": null, - "numero_insee": "95257" - } - }, - { - "pk": 33324, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "FROUVILLE", - "center": "POINT (586092.7877117358148098 2462156.6188315423205495)", - "surface": 7440000, - "canton": null, - "numero_insee": "95258" - } - }, - { - "pk": 36902, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GADANCOURT", - "center": "POINT (565033.2622230109991506 2455676.1555980904959142)", - "surface": 4720000, - "canton": null, - "numero_insee": "95259" - } - }, - { - "pk": 12505, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GARGES-LES-GONESSE", - "center": "POINT (604980.0899747855728492 2441301.2296903333626688)", - "surface": 5440000, - "canton": null, - "numero_insee": "95268" - } - }, - { - "pk": 35806, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GENAINVILLE", - "center": "POINT (557411.2424163318937644 2457713.7953425939194858)", - "surface": 10560000, - "canton": null, - "numero_insee": "95270" - } - }, - { - "pk": 11290, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GENICOURT", - "center": "POINT (579746.9059009875636548 2455198.9316749796271324)", - "surface": 6440000, - "canton": null, - "numero_insee": "95271" - } - }, - { - "pk": 35466, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GONESSE", - "center": "POINT (608767.2299106899881735 2443134.2380918455310166)", - "surface": 20290000, - "canton": null, - "numero_insee": "95277" - } - }, - { - "pk": 18328, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GOUSSAINVILLE", - "center": "POINT (609432.3422438455745578 2447342.6173258819617331)", - "surface": 11460000, - "canton": null, - "numero_insee": "95280" - } - }, - { - "pk": 12145, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GOUZANGREZ", - "center": "POINT (568721.1966350332368165 2457408.1258084718137980)", - "surface": 770000, - "canton": null, - "numero_insee": "95282" - } - }, - { - "pk": 32842, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GRISY-LES-PLATRES", - "center": "POINT (578910.3973186090588570 2459494.7404647078365088)", - "surface": 7200000, - "canton": null, - "numero_insee": "95287" - } - }, - { - "pk": 27554, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GROSLAY", - "center": "POINT (600963.4222235337365419 2442968.6411478575319052)", - "surface": 3090000, - "canton": null, - "numero_insee": "95288" - } - }, - { - "pk": 9021, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "GUIRY-EN-VEXIN", - "center": "POINT (564817.2420830094488338 2457575.5938886450603604)", - "surface": 6180000, - "canton": null, - "numero_insee": "95295" - } - }, - { - "pk": 36216, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "HARAVILLIERS", - "center": "POINT (578070.5423829171340913 2464190.7667561112903059)", - "surface": 11090000, - "canton": null, - "numero_insee": "95298" - } - }, - { - "pk": 18518, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "HAUTE-ISLE", - "center": "POINT (550737.4160153655102476 2454055.6642708578146994)", - "surface": 2510000, - "canton": null, - "numero_insee": "95301" - } - }, - { - "pk": 36728, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE HEAULME", - "center": "POINT (575376.5191002456704155 2463267.6206852816976607)", - "surface": 1990000, - "canton": null, - "numero_insee": "95303" - } - }, - { - "pk": 37998, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "HEDOUVILLE", - "center": "POINT (588393.2844143178081140 2462275.9690882032737136)", - "surface": 5330000, - "canton": null, - "numero_insee": "95304" - } - }, - { - "pk": 13245, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "HERBLAY", - "center": "POINT (586239.5625015414552763 2444646.3329877401702106)", - "surface": 12620000, - "canton": null, - "numero_insee": "95306" - } - }, - { - "pk": 34392, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "HEROUVILLE", - "center": "POINT (584640.5544214189285412 2456340.6573569597676396)", - "surface": 8500000, - "canton": null, - "numero_insee": "95308" - } - }, - { - "pk": 14322, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "HODENT", - "center": "POINT (557987.3363375936169177 2460620.5059347748756409)", - "surface": 4410000, - "canton": null, - "numero_insee": "95309" - } - }, - { - "pk": 30205, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "L'ISLE-ADAM", - "center": "POINT (592444.2808117950335145 2456506.1501667750999331)", - "surface": 15740000, - "canton": null, - "numero_insee": "95313" - } - }, - { - "pk": 34062, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "JAGNY-SOUS-BOIS", - "center": "POINT (607778.4458344834856689 2453632.8855049125850201)", - "surface": 4250000, - "canton": null, - "numero_insee": "95316" - } - }, - { - "pk": 16788, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "JOUY-LE-MOUTIER", - "center": "POINT (577823.6711501834215596 2445876.6808925191871822)", - "surface": 7320000, - "canton": null, - "numero_insee": "95323" - } - }, - { - "pk": 28725, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LABBEVILLE", - "center": "POINT (585214.0693992339074612 2459547.5582182942889631)", - "surface": 8050000, - "canton": null, - "numero_insee": "95328" - } - }, - { - "pk": 9128, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LASSY", - "center": "POINT (607365.6046529122395441 2455130.4039700049906969)", - "surface": 1970000, - "canton": null, - "numero_insee": "95331" - } - }, - { - "pk": 25722, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LIVILLIERS", - "center": "POINT (582243.3413900940213352 2455820.2407395499758422)", - "surface": 6550000, - "canton": null, - "numero_insee": "95341" - } - }, - { - "pk": 6254, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LONGUESSE", - "center": "POINT (569971.3054353584302589 2451514.7102411021478474)", - "surface": 8530000, - "canton": null, - "numero_insee": "95348" - } - }, - { - "pk": 32864, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LOUVRES", - "center": "POINT (612217.1847622455097735 2449367.3400544584728777)", - "surface": 11350000, - "canton": null, - "numero_insee": "95351" - } - }, - { - "pk": 20890, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LUZARCHES", - "center": "POINT (607546.3920241729356349 2457433.4309283900074661)", - "surface": 20510000, - "canton": null, - "numero_insee": "95352" - } - }, - { - "pk": 37760, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MAFFLIERS", - "center": "POINT (598169.4476807395694777 2453952.4744164408184588)", - "surface": 6830000, - "canton": null, - "numero_insee": "95353" - } - }, - { - "pk": 20856, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MAGNY-EN-VEXIN", - "center": "POINT (561575.2080461790319532 2462351.6116202869452536)", - "surface": 14480000, - "canton": null, - "numero_insee": "95355" - } - }, - { - "pk": 10920, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MAREIL-EN-FRANCE", - "center": "POINT (605887.4133596252650023 2452416.2129493239335716)", - "surface": 6990000, - "canton": null, - "numero_insee": "95365" - } - }, - { - "pk": 5972, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MARINES", - "center": "POINT (574193.4157215830637142 2461156.3475236990489066)", - "surface": 8280000, - "canton": null, - "numero_insee": "95370" - } - }, - { - "pk": 31958, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MARLY-LA-VILLE", - "center": "POINT (612581.2650738586671650 2453673.2362934965640306)", - "surface": 8700000, - "canton": null, - "numero_insee": "95371" - } - }, - { - "pk": 23269, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MAUDETOUR-EN-VEXIN", - "center": "POINT (559118.9285359098576009 2456927.5473228166811168)", - "surface": 6680000, - "canton": null, - "numero_insee": "95379" - } - }, - { - "pk": 8411, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MENOUVILLE", - "center": "POINT (583295.3540281997993588 2461632.8479417399503291)", - "surface": 2770000, - "canton": null, - "numero_insee": "95387" - } - }, - { - "pk": 30973, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MENUCOURT", - "center": "POINT (573505.2009425461292267 2447741.7791861318983138)", - "surface": 3690000, - "canton": null, - "numero_insee": "95388" - } - }, - { - "pk": 6819, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MERIEL", - "center": "POINT (590971.0931930053047836 2453191.6272058845497668)", - "surface": 5340000, - "canton": null, - "numero_insee": "95392" - } - }, - { - "pk": 26824, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MERY-SUR-OISE", - "center": "POINT (588090.3600183252710849 2450665.8243640842847526)", - "surface": 9940000, - "canton": null, - "numero_insee": "95394" - } - }, - { - "pk": 32001, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE MESNIL-AUBRY", - "center": "POINT (604001.4180734861874953 2450599.1883031884208322)", - "surface": 6800000, - "canton": null, - "numero_insee": "95395" - } - }, - { - "pk": 9250, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MOISSELLES", - "center": "POINT (600005.7772231659619138 2449765.1166373458690941)", - "surface": 1490000, - "canton": null, - "numero_insee": "95409" - } - }, - { - "pk": 14029, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MONTGEROULT", - "center": "POINT (575948.0291357057867572 2454766.8513959986157715)", - "surface": 5050000, - "canton": null, - "numero_insee": "95422" - } - }, - { - "pk": 12147, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MONTIGNY-LES-CORMEILLES", - "center": "POINT (589448.1775589392054826 2443872.7003387729637325)", - "surface": 4050000, - "canton": null, - "numero_insee": "95424" - } - }, - { - "pk": 9527, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MONTLIGNON", - "center": "POINT (596433.8746703560464084 2446132.7566444897092879)", - "surface": 2810000, - "canton": null, - "numero_insee": "95426" - } - }, - { - "pk": 33845, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MONTMAGNY", - "center": "POINT (600677.5215061203343794 2441265.1070851786062121)", - "surface": 2900000, - "canton": null, - "numero_insee": "95427" - } - }, - { - "pk": 13107, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MONTMORENCY", - "center": "POINT (598856.2924435003660619 2443651.4218381363898516)", - "surface": 5200000, - "canton": null, - "numero_insee": "95428" - } - }, - { - "pk": 11112, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MONTREUIL-SUR-EPTE", - "center": "POINT (552457.3816469020675868 2463776.3735121060162783)", - "surface": 7310000, - "canton": null, - "numero_insee": "95429" - } - }, - { - "pk": 8779, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MONTSOULT", - "center": "POINT (597580.8501752656884491 2452546.6136056133545935)", - "surface": 3830000, - "canton": null, - "numero_insee": "95430" - } - }, - { - "pk": 29966, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MOURS", - "center": "POINT (594623.7440712464740500 2459126.1335679050534964)", - "surface": 2500000, - "canton": null, - "numero_insee": "95436" - } - }, - { - "pk": 4825, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "MOUSSY", - "center": "POINT (568701.9386208796640858 2459709.4685893105342984)", - "surface": 4770000, - "canton": null, - "numero_insee": "95438" - } - }, - { - "pk": 9963, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "NERVILLE-LA-FORET", - "center": "POINT (595562.0446620574221015 2454631.0564197353087366)", - "surface": 6670000, - "canton": null, - "numero_insee": "95445" - } - }, - { - "pk": 16777, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "NESLES-LA-VALLEE", - "center": "POINT (587923.1925746601773426 2458669.6793335382826626)", - "surface": 13530000, - "canton": null, - "numero_insee": "95446" - } - }, - { - "pk": 13108, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "NEUILLY-EN-VEXIN", - "center": "POINT (573969.0054041793337092 2464056.3555046613328159)", - "surface": 2950000, - "canton": null, - "numero_insee": "95447" - } - }, - { - "pk": 15592, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "NEUVILLE-SUR-OISE", - "center": "POINT (579919.8889243772719055 2446494.6379138566553593)", - "surface": 4240000, - "canton": null, - "numero_insee": "95450" - } - }, - { - "pk": 11080, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "NOINTEL", - "center": "POINT (596826.7059046814683825 2458944.4854071829468012)", - "surface": 3240000, - "canton": null, - "numero_insee": "95452" - } - }, - { - "pk": 17742, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "NOISY-SUR-OISE", - "center": "POINT (599323.1252455493668094 2459565.8267918387427926)", - "surface": 3800000, - "canton": null, - "numero_insee": "95456" - } - }, - { - "pk": 6603, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "NUCOURT", - "center": "POINT (564876.2877211978193372 2462479.2860449580475688)", - "surface": 7800000, - "canton": null, - "numero_insee": "95459" - } - }, - { - "pk": 23443, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "OMERVILLE", - "center": "POINT (555085.6476298882625997 2460596.2525516520254314)", - "surface": 12350000, - "canton": null, - "numero_insee": "95462" - } - }, - { - "pk": 25771, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "OSNY", - "center": "POINT (579972.1696044970303774 2452198.8453128696419299)", - "surface": 12290000, - "canton": null, - "numero_insee": "95476" - } - }, - { - "pk": 25055, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PARMAIN", - "center": "POINT (590027.7739491709508002 2458287.0634805141016841)", - "surface": 8850000, - "canton": null, - "numero_insee": "95480" - } - }, - { - "pk": 24783, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE PERCHAY", - "center": "POINT (570020.2819349697092548 2457619.1284090136177838)", - "surface": 5470000, - "canton": null, - "numero_insee": "95483" - } - }, - { - "pk": 10061, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PERSAN", - "center": "POINT (595106.4076599816326052 2461231.5532922581769526)", - "surface": 5210000, - "canton": null, - "numero_insee": "95487" - } - }, - { - "pk": 25921, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PIERRELAYE", - "center": "POINT (587122.4830243560718372 2446755.1291193929500878)", - "surface": 8960000, - "canton": null, - "numero_insee": "95488" - } - }, - { - "pk": 33340, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PISCOP", - "center": "POINT (600333.6695658010430634 2446465.6829576487652957)", - "surface": 4130000, - "canton": null, - "numero_insee": "95489" - } - }, - { - "pk": 30545, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE PLESSIS-BOUCHARD", - "center": "POINT (592440.7320791584206745 2444998.5279001011513174)", - "surface": 2610000, - "canton": null, - "numero_insee": "95491" - } - }, - { - "pk": 11249, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE PLESSIS-GASSOT", - "center": "POINT (605719.2264854855602607 2448612.2906992486678064)", - "surface": 4130000, - "canton": null, - "numero_insee": "95492" - } - }, - { - "pk": 14147, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE PLESSIS-LUZARCHES", - "center": "POINT (608565.4675411889329553 2455240.5481347818858922)", - "surface": 910000, - "canton": null, - "numero_insee": "95493" - } - }, - { - "pk": 24404, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PONTOISE", - "center": "POINT (582289.4534048187779263 2450317.0063452506437898)", - "surface": 7200000, - "canton": null, - "numero_insee": "95500" - } - }, - { - "pk": 36662, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PRESLES", - "center": "POINT (596342.3652955120196566 2457039.1781174871139228)", - "surface": 10180000, - "canton": null, - "numero_insee": "95504" - } - }, - { - "pk": 30726, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PUISEUX-EN-FRANCE", - "center": "POINT (611093.8355315844528377 2452059.6838960498571396)", - "surface": 5180000, - "canton": null, - "numero_insee": "95509" - } - }, - { - "pk": 24402, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "PUISEUX-PONTOISE", - "center": "POINT (576473.4605279839597642 2451769.2770297704264522)", - "surface": 3880000, - "canton": null, - "numero_insee": "95510" - } - }, - { - "pk": 23590, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LA ROCHE-GUYON", - "center": "POINT (548632.0033856618683785 2454538.4065957060083747)", - "surface": 4660000, - "canton": null, - "numero_insee": "95523" - } - }, - { - "pk": 37945, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "ROISSY-EN-FRANCE", - "center": "POINT (612951.2329613548936322 2445370.8563653463497758)", - "surface": 14200000, - "canton": null, - "numero_insee": "95527" - } - }, - { - "pk": 9926, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "RONQUEROLLES", - "center": "POINT (590986.4029758037067950 2463298.3629392529837787)", - "surface": 4760000, - "canton": null, - "numero_insee": "95529" - } - }, - { - "pk": 28059, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAGY", - "center": "POINT (573081.5092575123999268 2450540.0841595199890435)", - "surface": 10520000, - "canton": null, - "numero_insee": "95535" - } - }, - { - "pk": 24561, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-BRICE-SOUS-FORET", - "center": "POINT (600948.3038720696931705 2444769.7126517496071756)", - "surface": 5990000, - "canton": null, - "numero_insee": "95539" - } - }, - { - "pk": 23436, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-CLAIR-SUR-EPTE", - "center": "POINT (553818.8967500096186996 2468490.7944102715700865)", - "surface": 12250000, - "canton": null, - "numero_insee": "95541" - } - }, - { - "pk": 11503, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-CYR-EN-ARTHIES", - "center": "POINT (556464.1825295763555914 2451301.6734301988035440)", - "surface": 3870000, - "canton": null, - "numero_insee": "95543" - } - }, - { - "pk": 31440, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-GERVAIS", - "center": "POINT (557964.7525295151863247 2463322.0752198235131800)", - "surface": 13420000, - "canton": null, - "numero_insee": "95554" - } - }, - { - "pk": 27190, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-GRATIEN", - "center": "POINT (596175.6728093514684588 2441127.2604866502806544)", - "surface": 2730000, - "canton": null, - "numero_insee": "95555" - } - }, - { - "pk": 7765, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-LEU-LA-FORET", - "center": "POINT (593426.2190356468781829 2446807.9892250755801797)", - "surface": 5240000, - "canton": null, - "numero_insee": "95563" - } - }, - { - "pk": 31388, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-MARTIN-DU-TERTRE", - "center": "POINT (599751.9114903024164960 2456167.2001375155523419)", - "surface": 11730000, - "canton": null, - "numero_insee": "95566" - } - }, - { - "pk": 22999, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-OUEN-L'AUMONE", - "center": "POINT (584697.5787683678790927 2449536.6579308290965855)", - "surface": 13980000, - "canton": null, - "numero_insee": "95572" - } - }, - { - "pk": 36447, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-PRIX", - "center": "POINT (595126.3876186447450891 2446922.3178124255500734)", - "surface": 7950000, - "canton": null, - "numero_insee": "95574" - } - }, - { - "pk": 37572, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SAINT-WITZ", - "center": "POINT (615678.8802559062605724 2454199.5995615273714066)", - "surface": 7630000, - "canton": null, - "numero_insee": "95580" - } - }, - { - "pk": 13780, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SANNOIS", - "center": "POINT (593870.9411531289806589 2441508.1924308263696730)", - "surface": 4790000, - "canton": null, - "numero_insee": "95582" - } - }, - { - "pk": 35931, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SANTEUIL", - "center": "POINT (572309.8999905289383605 2459039.2085270457901061)", - "surface": 5360000, - "canton": null, - "numero_insee": "95584" - } - }, - { - "pk": 27154, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SARCELLES", - "center": "POINT (603260.5924739809706807 2443488.2590775089338422)", - "surface": 8390000, - "canton": null, - "numero_insee": "95585" - } - }, - { - "pk": 35014, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SERAINCOURT", - "center": "POINT (566486.8221296181436628 2449384.1658583111129701)", - "surface": 11320000, - "canton": null, - "numero_insee": "95592" - } - }, - { - "pk": 10041, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SEUGY", - "center": "POINT (604236.9022329777944833 2458306.2268309681676328)", - "surface": 1710000, - "canton": null, - "numero_insee": "95594" - } - }, - { - "pk": 35254, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SOISY-SOUS-MONTMORENCY", - "center": "POINT (597357.9181096992688254 2443338.6479519954882562)", - "surface": 3940000, - "canton": null, - "numero_insee": "95598" - } - }, - { - "pk": 28181, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "SURVILLIERS", - "center": "POINT (615160.0839149126550183 2456396.6834700009785593)", - "surface": 5460000, - "canton": null, - "numero_insee": "95604" - } - }, - { - "pk": 24403, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "TAVERNY", - "center": "POINT (591518.3791779382154346 2447592.5180908581241965)", - "surface": 10410000, - "canton": null, - "numero_insee": "95607" - } - }, - { - "pk": 8504, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "THEMERICOURT", - "center": "POINT (568443.6279303020564839 2454704.0321729104034603)", - "surface": 7500000, - "canton": null, - "numero_insee": "95610" - } - }, - { - "pk": 11363, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "THEUVILLE", - "center": "POINT (580389.4773940175073221 2462108.8260941705666482)", - "surface": 5000000, - "canton": null, - "numero_insee": "95611" - } - }, - { - "pk": 10534, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "LE THILLAY", - "center": "POINT (609651.7946012433385476 2445042.9338037930428982)", - "surface": 3960000, - "canton": null, - "numero_insee": "95612" - } - }, - { - "pk": 34339, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "US", - "center": "POINT (572232.4565321581903845 2456336.7928552418015897)", - "surface": 10960000, - "canton": null, - "numero_insee": "95625" - } - }, - { - "pk": 3314, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VALLANGOUJARD", - "center": "POINT (583012.7871635651681572 2459529.1102960649877787)", - "surface": 7520000, - "canton": null, - "numero_insee": "95627" - } - }, - { - "pk": 26133, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VALMONDOIS", - "center": "POINT (588550.3874653208767995 2455472.8412422188557684)", - "surface": 4560000, - "canton": null, - "numero_insee": "95628" - } - }, - { - "pk": 24562, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VAUDHERLAND", - "center": "POINT (610955.9299587807618082 2444653.6245775115676224)", - "surface": 90000, - "canton": null, - "numero_insee": "95633" - } - }, - { - "pk": 35076, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VAUREAL", - "center": "POINT (577105.6575715820072219 2447972.0601577339693904)", - "surface": 3750000, - "canton": null, - "numero_insee": "95637" - } - }, - { - "pk": 30157, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VEMARS", - "center": "POINT (616801.3962949023116380 2451607.3233701558783650)", - "surface": 8260000, - "canton": null, - "numero_insee": "95641" - } - }, - { - "pk": 37144, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VETHEUIL", - "center": "POINT (553859.3045165374642238 2451680.1674208641052246)", - "surface": 4390000, - "canton": null, - "numero_insee": "95651" - } - }, - { - "pk": 25500, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VIARMES", - "center": "POINT (602936.1434823783347383 2458295.3054222417995334)", - "surface": 8260000, - "canton": null, - "numero_insee": "95652" - } - }, - { - "pk": 37438, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VIENNE-EN-ARTHIES", - "center": "POINT (555055.8308444310678169 2452190.4961141459643841)", - "surface": 3810000, - "canton": null, - "numero_insee": "95656" - } - }, - { - "pk": 31526, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VIGNY", - "center": "POINT (570253.8960897040087730 2453618.4586056824773550)", - "surface": 6810000, - "canton": null, - "numero_insee": "95658" - } - }, - { - "pk": 13013, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VILLAINES-SOUS-BOIS", - "center": "POINT (601379.7259608395397663 2452978.7606164608150721)", - "surface": 1900000, - "canton": null, - "numero_insee": "95660" - } - }, - { - "pk": 11876, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VILLERON", - "center": "POINT (614401.6647589723579586 2451387.0196831994690001)", - "surface": 5710000, - "canton": null, - "numero_insee": "95675" - } - }, - { - "pk": 14942, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VILLERS-EN-ARTHIES", - "center": "POINT (555638.6227845398243517 2454296.7489068717695773)", - "surface": 8390000, - "canton": null, - "numero_insee": "95676" - } - }, - { - "pk": 34563, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VILLIERS-ADAM", - "center": "POINT (592878.9241293790983036 2452407.1009987206198275)", - "surface": 9870000, - "canton": null, - "numero_insee": "95678" - } - }, - { - "pk": 9902, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VILLIERS-LE-BEL", - "center": "POINT (604844.7409232475329190 2445502.8910848679952323)", - "surface": 7290000, - "canton": null, - "numero_insee": "95680" - } - }, - { - "pk": 9639, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "VILLIERS-LE-SEC", - "center": "POINT (603681.9183208369649947 2452898.0224538501352072)", - "surface": 3190000, - "canton": null, - "numero_insee": "95682" - } - }, - { - "pk": 32036, - "model": "ishtar_common.town", - "fields": { - "departement": 96, - "name": "WY-DIT-JOLI-VILLAGE", - "center": "POINT (562534.3071957265492529 2455355.0568761578761041)", - "surface": 8430000, - "canton": null, - "numero_insee": "95690" - } - } -] \ No newline at end of file diff --git a/ishtar_common/fixtures/initial_towns-pdl.json b/ishtar_common/fixtures/initial_towns-pdl.json deleted file mode 100644 index 20c75492c..000000000 --- a/ishtar_common/fixtures/initial_towns-pdl.json +++ /dev/null @@ -1,18026 +0,0 @@ -[ - { - "pk": 2033, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ABBARETZ", - "center": "POINT (311809.9913602801389061 2291065.5715156276710331)", - "surface": 62040000, - "canton": null, - "numero_insee": "44001" - } - }, - { - "pk": 2690, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AIGREFEUILLE-SUR-MAINE", - "center": "POINT (315054.4636352243251167 2236948.1686070244759321)", - "surface": 14700000, - "canton": null, - "numero_insee": "44002" - } - }, - { - "pk": 2355, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANCENIS", - "center": "POINT (334294.0705889719538391 2270733.0796914314851165)", - "surface": 20050000, - "canton": null, - "numero_insee": "44003" - } - }, - { - "pk": 1871, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANETZ", - "center": "POINT (341003.9381424662424251 2270187.5476501304656267)", - "surface": 12030000, - "canton": null, - "numero_insee": "44004" - } - }, - { - "pk": 2298, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARTHON-EN-RETZ", - "center": "POINT (274825.1190143571002409 2248730.0191883025690913)", - "surface": 39830000, - "canton": null, - "numero_insee": "44005" - } - }, - { - "pk": 2121, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ASSERAC", - "center": "POINT (241930.7133817542926408 2281689.6250273887999356)", - "surface": 33620000, - "canton": null, - "numero_insee": "44006" - } - }, - { - "pk": 2358, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVESSAC", - "center": "POINT (276395.6011989954859018 2301685.3553735874593258)", - "surface": 76300000, - "canton": null, - "numero_insee": "44007" - } - }, - { - "pk": 1979, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BARBECHAT", - "center": "POINT (325074.7897242157487199 2259948.9631872363388538)", - "surface": 12130000, - "canton": null, - "numero_insee": "44008" - } - }, - { - "pk": 1843, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BASSE-GOULAINE", - "center": "POINT (312323.2717145112110302 2252738.9088993170298636)", - "surface": 13800000, - "canton": null, - "numero_insee": "44009" - } - }, - { - "pk": 2275, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BATZ-SUR-MER", - "center": "POINT (236262.0023013288155198 2264930.1521121026016772)", - "surface": 13120000, - "canton": null, - "numero_insee": "44010" - } - }, - { - "pk": 1574, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BELLIGNE", - "center": "POINT (346621.2025637272163294 2280842.0767090786248446)", - "surface": 33140000, - "canton": null, - "numero_insee": "44011" - } - }, - { - "pk": 2983, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BERNERIE-EN-RETZ", - "center": "POINT (268482.9667154524358921 2240972.0206403587944806)", - "surface": 5990000, - "canton": null, - "numero_insee": "44012" - } - }, - { - "pk": 2669, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BESNE", - "center": "POINT (267115.0756133846007288 2273787.7379085277207196)", - "surface": 17750000, - "canton": null, - "numero_insee": "44013" - } - }, - { - "pk": 1605, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BIGNON", - "center": "POINT (308119.7514090407057665 2240494.5002271379344165)", - "surface": 27910000, - "canton": null, - "numero_insee": "44014" - } - }, - { - "pk": 2521, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BLAIN", - "center": "POINT (290669.6895474005141295 2281685.7387332129292190)", - "surface": 102080000, - "canton": null, - "numero_insee": "44015" - } - }, - { - "pk": 2754, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BOISSIERE-DU-DORE", - "center": "POINT (332025.8210316781187430 2254401.2714188471436501)", - "surface": 9470000, - "canton": null, - "numero_insee": "44016" - } - }, - { - "pk": 1994, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BONNOEUVRE", - "center": "POINT (331265.7949182286392897 2286120.6102064466103911)", - "surface": 15590000, - "canton": null, - "numero_insee": "44017" - } - }, - { - "pk": 2647, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUAYE", - "center": "POINT (296062.4157435984816402 2246300.9598462679423392)", - "surface": 14070000, - "canton": null, - "numero_insee": "44018" - } - }, - { - "pk": 1854, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUEE", - "center": "POINT (278797.8162122683133930 2264775.4673531544394791)", - "surface": 24650000, - "canton": null, - "numero_insee": "44019" - } - }, - { - "pk": 2178, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUGUENAIS", - "center": "POINT (300346.0778511019889265 2248737.8945538196712732)", - "surface": 31120000, - "canton": null, - "numero_insee": "44020" - } - }, - { - "pk": 2344, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOURGNEUF-EN-RETZ", - "center": "POINT (276236.1225481145083904 2235230.3020574362017214)", - "surface": 53700000, - "canton": null, - "numero_insee": "44021" - } - }, - { - "pk": 1757, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUSSAY", - "center": "POINT (334194.4832070686388761 2234002.1667204517871141)", - "surface": 26430000, - "canton": null, - "numero_insee": "44022" - } - }, - { - "pk": 2511, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUVRON", - "center": "POINT (282100.0748993034940213 2277112.2973763961344957)", - "surface": 47430000, - "canton": null, - "numero_insee": "44023" - } - }, - { - "pk": 2587, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRAINS", - "center": "POINT (292136.6014843199518509 2249071.2477846033871174)", - "surface": 15440000, - "canton": null, - "numero_insee": "44024" - } - }, - { - "pk": 2557, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CAMPBON", - "center": "POINT (275292.6232443983899429 2277357.1007973784580827)", - "surface": 50290000, - "canton": null, - "numero_insee": "44025" - } - }, - { - "pk": 2422, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CARQUEFOU", - "center": "POINT (312041.3565386140835471 2262744.7718537463806570)", - "surface": 43320000, - "canton": null, - "numero_insee": "44026" - } - }, - { - "pk": 2828, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CASSON", - "center": "POINT (306252.9374678793828934 2273005.8254675501957536)", - "surface": 16190000, - "canton": null, - "numero_insee": "44027" - } - }, - { - "pk": 2474, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE CELLIER", - "center": "POINT (320719.2042752235429361 2266318.5385576919652522)", - "surface": 35670000, - "canton": null, - "numero_insee": "44028" - } - }, - { - "pk": 2941, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-BASSE-MER", - "center": "POINT (321171.8740181963657960 2259917.0420752209611237)", - "surface": 23470000, - "canton": null, - "numero_insee": "44029" - } - }, - { - "pk": 2695, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-DES-MARAIS", - "center": "POINT (254547.2841507341945544 2280891.3484434029087424)", - "surface": 17860000, - "canton": null, - "numero_insee": "44030" - } - }, - { - "pk": 2128, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-GLAIN", - "center": "POINT (334578.1492002517334186 2297156.4084057253785431)", - "surface": 34770000, - "canton": null, - "numero_insee": "44031" - } - }, - { - "pk": 2878, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-HEULIN", - "center": "POINT (320569.5483906947192736 2247902.2848499631509185)", - "surface": 13560000, - "canton": null, - "numero_insee": "44032" - } - }, - { - "pk": 1591, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-LAUNAY", - "center": "POINT (273847.7260945961461402 2270439.7810564269311726)", - "surface": 24750000, - "canton": null, - "numero_insee": "44033" - } - }, - { - "pk": 2401, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SAINT-SAUVEUR", - "center": "POINT (349855.5383798947441392 2276965.4739906410686672)", - "surface": 18980000, - "canton": null, - "numero_insee": "44034" - } - }, - { - "pk": 1542, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SUR-ERDRE", - "center": "POINT (305332.2721169406431727 2263190.3818556200712919)", - "surface": 33390000, - "canton": null, - "numero_insee": "44035" - } - }, - { - "pk": 2787, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAUBRIANT", - "center": "POINT (320670.0601822378812358 2309052.0011850628070533)", - "surface": 33600000, - "canton": null, - "numero_insee": "44036" - } - }, - { - "pk": 2986, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAU-THEBAUD", - "center": "POINT (313612.4991814870154485 2241940.5373708675615489)", - "surface": 17640000, - "canton": null, - "numero_insee": "44037" - } - }, - { - "pk": 2169, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAUVE", - "center": "POINT (270419.3374046934768558 2248994.4028235506266356)", - "surface": 40900000, - "canton": null, - "numero_insee": "44038" - } - }, - { - "pk": 1937, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEIX-EN-RETZ", - "center": "POINT (286720.2746682311990298 2250528.3231620802544057)", - "surface": 8320000, - "canton": null, - "numero_insee": "44039" - } - }, - { - "pk": 1954, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMERE", - "center": "POINT (279549.0630244107451290 2246266.4253891184926033)", - "surface": 37630000, - "canton": null, - "numero_insee": "44040" - } - }, - { - "pk": 1561, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHEVROLIERE", - "center": "POINT (301522.0645088279270567 2239539.8798915632069111)", - "surface": 32620000, - "canton": null, - "numero_insee": "44041" - } - }, - { - "pk": 2959, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CLISSON", - "center": "POINT (326244.2038190090097487 2239341.5874031949788332)", - "surface": 11350000, - "canton": null, - "numero_insee": "44043" - } - }, - { - "pk": 2381, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONQUEREUIL", - "center": "POINT (292102.7777297023567371 2302313.7113405051641166)", - "surface": 32840000, - "canton": null, - "numero_insee": "44044" - } - }, - { - "pk": 1612, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORDEMAIS", - "center": "POINT (284512.6684172838577069 2263520.9668221217580140)", - "surface": 37460000, - "canton": null, - "numero_insee": "44045" - } - }, - { - "pk": 2459, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORSEPT", - "center": "POINT (264820.7397335442365147 2260558.3704009028151631)", - "surface": 24100000, - "canton": null, - "numero_insee": "44046" - } - }, - { - "pk": 2450, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COUERON", - "center": "POINT (292181.1803158776601776 2255877.1968102068640292)", - "surface": 48770000, - "canton": null, - "numero_insee": "44047" - } - }, - { - "pk": 2380, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COUFFE", - "center": "POINT (326079.8244274780736305 2271666.6612138119526207)", - "surface": 39840000, - "canton": null, - "numero_insee": "44048" - } - }, - { - "pk": 2900, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE CROISIC", - "center": "POINT (232650.3828454334870912 2266001.7572365221567452)", - "surface": 4540000, - "canton": null, - "numero_insee": "44049" - } - }, - { - "pk": 2172, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CROSSAC", - "center": "POINT (261285.5629407518426888 2276842.8242330895736814)", - "surface": 25800000, - "canton": null, - "numero_insee": "44050" - } - }, - { - "pk": 2850, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DERVAL", - "center": "POINT (298502.4614410634967498 2302966.3731003347784281)", - "surface": 63790000, - "canton": null, - "numero_insee": "44051" - } - }, - { - "pk": 2017, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DONGES", - "center": "POINT (266851.4869415245484561 2269281.9596756552346051)", - "surface": 49550000, - "canton": null, - "numero_insee": "44052" - } - }, - { - "pk": 1764, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DREFFEAC", - "center": "POINT (268737.3568075433722697 2283508.7148219309747219)", - "surface": 14180000, - "canton": null, - "numero_insee": "44053" - } - }, - { - "pk": 2073, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ERBRAY", - "center": "POINT (325323.2491522705531679 2302985.2998903575353324)", - "surface": 58410000, - "canton": null, - "numero_insee": "44054" - } - }, - { - "pk": 2067, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BAULE-ESCOUBLAC", - "center": "POINT (245367.9947334174648859 2265104.1270817182958126)", - "surface": 26580000, - "canton": null, - "numero_insee": "44055" - } - }, - { - "pk": 2493, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FAY-DE-BRETAGNE", - "center": "POINT (288132.2250777719891630 2273758.7184593719430268)", - "surface": 64780000, - "canton": null, - "numero_insee": "44056" - } - }, - { - "pk": 1507, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FEGREAC", - "center": "POINT (272039.6755254277377389 2295845.3423332348465919)", - "surface": 44400000, - "canton": null, - "numero_insee": "44057" - } - }, - { - "pk": 2038, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FERCE", - "center": "POINT (321099.2405131959822029 2317762.2348202723078430)", - "surface": 22030000, - "canton": null, - "numero_insee": "44058" - } - }, - { - "pk": 2402, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FRESNAY-EN-RETZ", - "center": "POINT (281154.5660985064459965 2233468.8606119644828141)", - "surface": 20630000, - "canton": null, - "numero_insee": "44059" - } - }, - { - "pk": 2733, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE FRESNE-SUR-LOIRE", - "center": "POINT (352496.0178600541548803 2272283.3549631070345640)", - "surface": 5970000, - "canton": null, - "numero_insee": "44060" - } - }, - { - "pk": 2597, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FROSSAY", - "center": "POINT (276849.2924519853550009 2258254.3023399850353599)", - "surface": 59910000, - "canton": null, - "numero_insee": "44061" - } - }, - { - "pk": 2369, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GAVRE", - "center": "POINT (289008.1541782671120018 2289078.0839010481722653)", - "surface": 54080000, - "canton": null, - "numero_insee": "44062" - } - }, - { - "pk": 2024, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GETIGNE", - "center": "POINT (330164.3824120842618868 2237271.9228136893361807)", - "surface": 23890000, - "canton": null, - "numero_insee": "44063" - } - }, - { - "pk": 2316, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GORGES", - "center": "POINT (323234.5460867454530671 2240217.7131438232026994)", - "surface": 16310000, - "canton": null, - "numero_insee": "44064" - } - }, - { - "pk": 1998, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GRAND-AUVERNE", - "center": "POINT (325608.5172619674704038 2292579.4685011147521436)", - "surface": 34680000, - "canton": null, - "numero_insee": "44065" - } - }, - { - "pk": 1926, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GRANDCHAMPS-DES-FONTAINES", - "center": "POINT (301375.4554595017107204 2269763.4285296648740768)", - "surface": 34050000, - "canton": null, - "numero_insee": "44066" - } - }, - { - "pk": 2362, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GUEMENE-PENFAO", - "center": "POINT (286915.3628393225371838 2300269.8616136983036995)", - "surface": 105650000, - "canton": null, - "numero_insee": "44067" - } - }, - { - "pk": 2448, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GUENROUET", - "center": "POINT (276715.5081843583029695 2286976.3548438581638038)", - "surface": 69810000, - "canton": null, - "numero_insee": "44068" - } - }, - { - "pk": 2032, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GUERANDE", - "center": "POINT (240925.7252930066897534 2269871.9672812391072512)", - "surface": 81550000, - "canton": null, - "numero_insee": "44069" - } - }, - { - "pk": 1878, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA HAIE-FOUASSIERE", - "center": "POINT (316674.7760055822436698 2246869.6176078580319881)", - "surface": 11830000, - "canton": null, - "numero_insee": "44070" - } - }, - { - "pk": 2679, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HAUTE-GOULAINE", - "center": "POINT (316142.4949878990883008 2250768.4780146502889693)", - "surface": 20900000, - "canton": null, - "numero_insee": "44071" - } - }, - { - "pk": 2512, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HERBIGNAC", - "center": "POINT (249432.1590526588843204 2282250.9203073866665363)", - "surface": 71290000, - "canton": null, - "numero_insee": "44072" - } - }, - { - "pk": 1957, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HERIC", - "center": "POINT (300219.1077762507484294 2276559.4659595596604049)", - "surface": 74530000, - "canton": null, - "numero_insee": "44073" - } - }, - { - "pk": 2740, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "INDRE", - "center": "POINT (296416.1804818960954435 2252008.5417785886675119)", - "surface": 4750000, - "canton": null, - "numero_insee": "44074" - } - }, - { - "pk": 2495, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ISSE", - "center": "POINT (314958.3393147686147131 2297696.4946836810559034)", - "surface": 39170000, - "canton": null, - "numero_insee": "44075" - } - }, - { - "pk": 2559, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JANS", - "center": "POINT (303838.9238194850040600 2299006.7857401059009135)", - "surface": 33380000, - "canton": null, - "numero_insee": "44076" - } - }, - { - "pk": 2549, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JOUE-SUR-ERDRE", - "center": "POINT (316358.2295405432232656 2285598.3732997141778469)", - "surface": 55220000, - "canton": null, - "numero_insee": "44077" - } - }, - { - "pk": 2327, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUIGNE-DES-MOUTIERS", - "center": "POINT (333614.4299023157800548 2304854.5431538927368820)", - "surface": 24540000, - "canton": null, - "numero_insee": "44078" - } - }, - { - "pk": 1632, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LANDREAU", - "center": "POINT (324642.3616706645698287 2251638.6385923349298537)", - "surface": 23530000, - "canton": null, - "numero_insee": "44079" - } - }, - { - "pk": 2888, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAVAU-SUR-LOIRE", - "center": "POINT (275479.0588522899197415 2266750.0662463381886482)", - "surface": 19220000, - "canton": null, - "numero_insee": "44080" - } - }, - { - "pk": 2170, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LEGE", - "center": "POINT (301693.6276266885106452 2218523.6576740220189095)", - "surface": 61690000, - "canton": null, - "numero_insee": "44081" - } - }, - { - "pk": 2124, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIGNE", - "center": "POINT (319460.2232684629270807 2273413.9745335634797812)", - "surface": 45550000, - "canton": null, - "numero_insee": "44082" - } - }, - { - "pk": 1651, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA LIMOUZINIERE", - "center": "POINT (297509.5755220202263445 2228397.8583163032308221)", - "surface": 29380000, - "canton": null, - "numero_insee": "44083" - } - }, - { - "pk": 2535, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LOROUX-BOTTEREAU", - "center": "POINT (322316.0736532728187740 2254622.0706737656146288)", - "surface": 44770000, - "canton": null, - "numero_insee": "44084" - } - }, - { - "pk": 2880, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUISFERT", - "center": "POINT (317512.7709169961744919 2303521.9114540261216462)", - "surface": 18290000, - "canton": null, - "numero_insee": "44085" - } - }, - { - "pk": 1654, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LUSANGER", - "center": "POINT (305793.7936108602443710 2304727.2037330078892410)", - "surface": 35580000, - "canton": null, - "numero_insee": "44086" - } - }, - { - "pk": 2089, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MACHECOUL", - "center": "POINT (283688.2983450612518936 2229586.2387694623321295)", - "surface": 67360000, - "canton": null, - "numero_insee": "44087" - } - }, - { - "pk": 1512, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAISDON-SUR-SEVRE", - "center": "POINT (317316.1361991133890115 2241870.7263528471812606)", - "surface": 17330000, - "canton": null, - "numero_insee": "44088" - } - }, - { - "pk": 2552, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MALVILLE", - "center": "POINT (283468.7061112513183616 2268816.7590906638652086)", - "surface": 31070000, - "canton": null, - "numero_insee": "44089" - } - }, - { - "pk": 1818, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MARNE", - "center": "POINT (291698.5607340856804512 2229151.1238397313281894)", - "surface": 17920000, - "canton": null, - "numero_insee": "44090" - } - }, - { - "pk": 1900, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARSAC-SUR-DON", - "center": "POINT (296759.1280559304868802 2295846.5804663170129061)", - "surface": 27790000, - "canton": null, - "numero_insee": "44091" - } - }, - { - "pk": 2929, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MASSERAC", - "center": "POINT (281665.1699395127361640 2305931.5482877772301435)", - "surface": 18860000, - "canton": null, - "numero_insee": "44092" - } - }, - { - "pk": 1556, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAUMUSSON", - "center": "POINT (339609.5312866745516658 2281585.2643655501306057)", - "surface": 24660000, - "canton": null, - "numero_insee": "44093" - } - }, - { - "pk": 1737, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAUVES-SUR-LOIRE", - "center": "POINT (317334.6749270138097927 2264089.0852675824426115)", - "surface": 14430000, - "canton": null, - "numero_insee": "44094" - } - }, - { - "pk": 2399, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MEILLERAYE-DE-BRETAGNE", - "center": "POINT (319312.1472588235628791 2291527.1931272945366800)", - "surface": 28050000, - "canton": null, - "numero_insee": "44095" - } - }, - { - "pk": 1701, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MESANGER", - "center": "POINT (331249.2628000549739227 2275912.3358144150115550)", - "surface": 50380000, - "canton": null, - "numero_insee": "44096" - } - }, - { - "pk": 2775, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MESQUER", - "center": "POINT (237262.1638420015224256 2277348.2976137101650238)", - "surface": 16840000, - "canton": null, - "numero_insee": "44097" - } - }, - { - "pk": 2584, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MISSILLAC", - "center": "POINT (260008.2096467207302339 2286239.9603603063151240)", - "surface": 59770000, - "canton": null, - "numero_insee": "44098" - } - }, - { - "pk": 2580, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOISDON-LA-RIVIERE", - "center": "POINT (321061.0856902094674297 2297946.5316952806897461)", - "surface": 51020000, - "canton": null, - "numero_insee": "44099" - } - }, - { - "pk": 2830, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONNIERES", - "center": "POINT (320416.8609611072461121 2242096.2441392801702023)", - "surface": 9800000, - "canton": null, - "numero_insee": "44100" - } - }, - { - "pk": 2678, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MONTAGNE", - "center": "POINT (295327.5956437839777209 2250498.4277459159493446)", - "surface": 3610000, - "canton": null, - "numero_insee": "44101" - } - }, - { - "pk": 1557, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTBERT", - "center": "POINT (310952.9589398201787844 2236714.4851843416690826)", - "surface": 29040000, - "canton": null, - "numero_insee": "44102" - } - }, - { - "pk": 2034, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTOIR-DE-BRETAGNE", - "center": "POINT (261259.5297052576788701 2267735.2671228866092861)", - "surface": 29670000, - "canton": null, - "numero_insee": "44103" - } - }, - { - "pk": 2797, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTRELAIS", - "center": "POINT (350295.2173427835805342 2272165.2273825933225453)", - "surface": 14020000, - "canton": null, - "numero_insee": "44104" - } - }, - { - "pk": 1731, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUAIS", - "center": "POINT (299760.9350850732298568 2308180.6953956144861877)", - "surface": 10020000, - "canton": null, - "numero_insee": "44105" - } - }, - { - "pk": 2776, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES MOUTIERS-EN-RETZ", - "center": "POINT (271508.8843241930590011 2238094.2338353637605906)", - "surface": 9790000, - "canton": null, - "numero_insee": "44106" - } - }, - { - "pk": 1508, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUZEIL", - "center": "POINT (323431.2527325211558491 2277349.5755356932058930)", - "surface": 18860000, - "canton": null, - "numero_insee": "44107" - } - }, - { - "pk": 2045, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUZILLON", - "center": "POINT (326115.4693094919784926 2242843.4358769073151052)", - "surface": 16370000, - "canton": null, - "numero_insee": "44108" - } - }, - { - "pk": 1961, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NANTES", - "center": "POINT (305898.0175641477108002 2255188.4754896541126072)", - "surface": 65770000, - "canton": null, - "numero_insee": "44109" - } - }, - { - "pk": 2348, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NORT-SUR-ERDRE", - "center": "POINT (309406.2582688771653920 2279036.3919590516015887)", - "surface": 67040000, - "canton": null, - "numero_insee": "44110" - } - }, - { - "pk": 2342, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOTRE-DAME-DES-LANDES", - "center": "POINT (294052.9049069096799940 2271805.3810148313641548)", - "surface": 37590000, - "canton": null, - "numero_insee": "44111" - } - }, - { - "pk": 2938, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOYAL-SUR-BRUTZ", - "center": "POINT (324229.2416553207440302 2314385.2057138467207551)", - "surface": 7780000, - "canton": null, - "numero_insee": "44112" - } - }, - { - "pk": 2133, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOZAY", - "center": "POINT (303785.4107637128909118 2293301.8627829747274518)", - "surface": 57960000, - "canton": null, - "numero_insee": "44113" - } - }, - { - "pk": 2373, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ORVAULT", - "center": "POINT (300453.1183225933345966 2260148.1113926763646305)", - "surface": 27790000, - "canton": null, - "numero_insee": "44114" - } - }, - { - "pk": 2710, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "OUDON", - "center": "POINT (327511.1531839944655076 2267975.3861551936715841)", - "surface": 22320000, - "canton": null, - "numero_insee": "44115" - } - }, - { - "pk": 1944, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PAIMBOEUF", - "center": "POINT (270003.4650107870693319 2263202.6538759008981287)", - "surface": 1660000, - "canton": null, - "numero_insee": "44116" - } - }, - { - "pk": 2694, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PALLET", - "center": "POINT (320795.8876005549682304 2244701.4950245330110192)", - "surface": 11300000, - "canton": null, - "numero_insee": "44117" - } - }, - { - "pk": 2457, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PANNECE", - "center": "POINT (332296.8283220634330064 2282426.1058260765857995)", - "surface": 30570000, - "canton": null, - "numero_insee": "44118" - } - }, - { - "pk": 2090, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PAULX", - "center": "POINT (286922.5891271618311293 2225709.3218734902329743)", - "surface": 35950000, - "canton": null, - "numero_insee": "44119" - } - }, - { - "pk": 2540, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PELLERIN", - "center": "POINT (284979.8409714799490757 2255318.0803498239256442)", - "surface": 31090000, - "canton": null, - "numero_insee": "44120" - } - }, - { - "pk": 1593, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PETIT-AUVERNE", - "center": "POINT (328279.3547534985700622 2296404.3099786760285497)", - "surface": 22710000, - "canton": null, - "numero_insee": "44121" - } - }, - { - "pk": 2087, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PETIT-MARS", - "center": "POINT (313749.4780849072849378 2274167.9426869512535632)", - "surface": 26230000, - "canton": null, - "numero_insee": "44122" - } - }, - { - "pk": 2688, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PIERRIC", - "center": "POINT (291464.8202257833909243 2306912.1023000865243375)", - "surface": 27770000, - "canton": null, - "numero_insee": "44123" - } - }, - { - "pk": 1684, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PIN", - "center": "POINT (338008.4534546419745311 2293781.8204958210699260)", - "surface": 24900000, - "canton": null, - "numero_insee": "44124" - } - }, - { - "pk": 2400, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PIRIAC-SUR-MER", - "center": "POINT (233674.1117477338993922 2275517.7489614379592240)", - "surface": 12070000, - "canton": null, - "numero_insee": "44125" - } - }, - { - "pk": 2520, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA PLAINE-SUR-MER", - "center": "POINT (257315.9027125620632432 2248087.1665801843628287)", - "surface": 16400000, - "canton": null, - "numero_insee": "44126" - } - }, - { - "pk": 2661, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA PLANCHE", - "center": "POINT (312998.6533880825154483 2231326.6919541000388563)", - "surface": 24430000, - "canton": null, - "numero_insee": "44127" - } - }, - { - "pk": 2591, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PLESSE", - "center": "POINT (281974.5365263236453757 2292523.5432551549747586)", - "surface": 105060000, - "canton": null, - "numero_insee": "44128" - } - }, - { - "pk": 2974, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PONTCHATEAU", - "center": "POINT (265765.2763672411092557 2279781.5794394360855222)", - "surface": 55630000, - "canton": null, - "numero_insee": "44129" - } - }, - { - "pk": 2613, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PONT-SAINT-MARTIN", - "center": "POINT (303991.2914886695216410 2243563.3559560417197645)", - "surface": 21770000, - "canton": null, - "numero_insee": "44130" - } - }, - { - "pk": 2334, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PORNIC", - "center": "POINT (267148.5883683646097779 2245064.5645541818812490)", - "surface": 94780000, - "canton": null, - "numero_insee": "44131" - } - }, - { - "pk": 1793, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PORNICHET", - "center": "POINT (248197.7180508040473796 2261724.3332422808744013)", - "surface": 12660000, - "canton": null, - "numero_insee": "44132" - } - }, - { - "pk": 2534, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PORT-SAINT-PERE", - "center": "POINT (288759.3183573274291120 2245941.1509756715968251)", - "surface": 32670000, - "canton": null, - "numero_insee": "44133" - } - }, - { - "pk": 1560, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "POUILLE-LES-COTEAUX", - "center": "POINT (335318.6816008783644065 2280048.9290998517535627)", - "surface": 12260000, - "canton": null, - "numero_insee": "44134" - } - }, - { - "pk": 2236, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE POULIGUEN", - "center": "POINT (239377.3127372399903834 2263354.1220807237550616)", - "surface": 4460000, - "canton": null, - "numero_insee": "44135" - } - }, - { - "pk": 2769, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PREFAILLES", - "center": "POINT (254924.6512240394367836 2246766.6570354602299631)", - "surface": 5190000, - "canton": null, - "numero_insee": "44136" - } - }, - { - "pk": 3000, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PRINQUIAU", - "center": "POINT (271226.2513179576490074 2272820.3820467279292643)", - "surface": 22940000, - "canton": null, - "numero_insee": "44137" - } - }, - { - "pk": 1616, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PUCEUL", - "center": "POINT (302132.3687252053059638 2287383.7002804176881909)", - "surface": 20280000, - "canton": null, - "numero_insee": "44138" - } - }, - { - "pk": 2072, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "QUILLY", - "center": "POINT (277654.4617183859227225 2282280.2540931482799351)", - "surface": 17760000, - "canton": null, - "numero_insee": "44139" - } - }, - { - "pk": 2094, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA REGRIPPIERE", - "center": "POINT (332471.9995261849835515 2248800.3276584874838591)", - "surface": 18070000, - "canton": null, - "numero_insee": "44140" - } - }, - { - "pk": 2593, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA REMAUDIERE", - "center": "POINT (329831.5388975964160636 2253482.5740196616388857)", - "surface": 13170000, - "canton": null, - "numero_insee": "44141" - } - }, - { - "pk": 1666, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "REMOUILLE", - "center": "POINT (317087.0840487859095447 2233161.6144008035771549)", - "surface": 21880000, - "canton": null, - "numero_insee": "44142" - } - }, - { - "pk": 2673, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "REZE", - "center": "POINT (305547.5636421264498495 2249080.6045596576295793)", - "surface": 15570000, - "canton": null, - "numero_insee": "44143" - } - }, - { - "pk": 2481, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RIAILLE", - "center": "POINT (325258.1583114544046111 2286471.7745829578489065)", - "surface": 50610000, - "canton": null, - "numero_insee": "44144" - } - }, - { - "pk": 2101, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUANS", - "center": "POINT (283320.1483293169876561 2250200.3662047227844596)", - "surface": 37770000, - "canton": null, - "numero_insee": "44145" - } - }, - { - "pk": 2698, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUGE", - "center": "POINT (317421.9918118488276377 2314629.7886776928789914)", - "surface": 56780000, - "canton": null, - "numero_insee": "44146" - } - }, - { - "pk": 2378, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA ROUXIERE", - "center": "POINT (342541.9850648115389049 2277906.3320094030350447)", - "surface": 20910000, - "canton": null, - "numero_insee": "44147" - } - }, - { - "pk": 2088, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RUFFIGNE", - "center": "POINT (310819.7875520103261806 2314275.6190968514420092)", - "surface": 33770000, - "canton": null, - "numero_insee": "44148" - } - }, - { - "pk": 2257, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAFFRE", - "center": "POINT (304960.5476032283040695 2284204.2410994055680931)", - "surface": 58690000, - "canton": null, - "numero_insee": "44149" - } - }, - { - "pk": 1697, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AIGNAN-GRANDLIEU", - "center": "POINT (299679.8505877840798348 2244528.9894962031394243)", - "surface": 18070000, - "canton": null, - "numero_insee": "44150" - } - }, - { - "pk": 1677, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ANDRE-DES-EAUX", - "center": "POINT (248742.9040333378943615 2268534.2907644836232066)", - "surface": 25220000, - "canton": null, - "numero_insee": "44151" - } - }, - { - "pk": 2898, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-ANNE-SUR-BRIVET", - "center": "POINT (271655.7669034876162186 2281530.8635463705286384)", - "surface": 26260000, - "canton": null, - "numero_insee": "44152" - } - }, - { - "pk": 2165, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-DES-CHATEAUX", - "center": "POINT (313776.6089424155652523 2307594.5776285976171494)", - "surface": 47610000, - "canton": null, - "numero_insee": "44153" - } - }, - { - "pk": 2267, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BREVIN-LES-PINS", - "center": "POINT (260335.2643491389462724 2258320.0971667589619756)", - "surface": 20770000, - "canton": null, - "numero_insee": "44154" - } - }, - { - "pk": 2305, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-COLOMBAN", - "center": "POINT (303982.7311883566435426 2232353.9653079495765269)", - "surface": 35860000, - "canton": null, - "numero_insee": "44155" - } - }, - { - "pk": 2595, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORCOUE-SUR-LOGNE", - "center": "POINT (300443.6760629297932610 2224518.5239269789308310)", - "surface": 50580000, - "canton": null, - "numero_insee": "44156" - } - }, - { - "pk": 1599, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ETIENNE-DE-MER-MORTE", - "center": "POINT (291439.9547690514009446 2224044.7235597809776664)", - "surface": 27460000, - "canton": null, - "numero_insee": "44157" - } - }, - { - "pk": 2605, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ETIENNE-DE-MONTLUC", - "center": "POINT (288245.6144008428673260 2259848.3777738055214286)", - "surface": 57380000, - "canton": null, - "numero_insee": "44158" - } - }, - { - "pk": 2708, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-FIACRE-SUR-MAINE", - "center": "POINT (315490.2255752172786742 2244858.2838362380862236)", - "surface": 5920000, - "canton": null, - "numero_insee": "44159" - } - }, - { - "pk": 2882, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEREON", - "center": "POINT (332303.2420228618429974 2269415.7338579483330250)", - "surface": 7650000, - "canton": null, - "numero_insee": "44160" - } - }, - { - "pk": 1875, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GILDAS-DES-BOIS", - "center": "POINT (269000.9388469115947373 2288014.4431294901296496)", - "surface": 33550000, - "canton": null, - "numero_insee": "44161" - } - }, - { - "pk": 2925, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HERBLAIN", - "center": "POINT (299396.3947027380345389 2254735.0742614916525781)", - "surface": 29920000, - "canton": null, - "numero_insee": "44162" - } - }, - { - "pk": 2497, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HERBLON", - "center": "POINT (339479.0581830280134454 2273077.3908383813686669)", - "surface": 37340000, - "canton": null, - "numero_insee": "44163" - } - }, - { - "pk": 2340, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-DE-CHALEONS", - "center": "POINT (279988.4980147299356759 2241466.0281866318546236)", - "surface": 35290000, - "canton": null, - "numero_insee": "44164" - } - }, - { - "pk": 2216, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-DE-CLISSON", - "center": "POINT (322574.1206903121201321 2235308.2356573995202780)", - "surface": 18780000, - "canton": null, - "numero_insee": "44165" - } - }, - { - "pk": 2711, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DE-BOISEAU", - "center": "POINT (292715.8352333956281655 2251678.1114996201358736)", - "surface": 11530000, - "canton": null, - "numero_insee": "44166" - } - }, - { - "pk": 2122, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JOACHIM", - "center": "POINT (254306.4176349946064875 2273583.5249899993650615)", - "surface": 86420000, - "canton": null, - "numero_insee": "44168" - } - }, - { - "pk": 2919, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JULIEN-DE-CONCELLES", - "center": "POINT (316697.9567545869504102 2256277.5269663669168949)", - "surface": 33260000, - "canton": null, - "numero_insee": "44169" - } - }, - { - "pk": 2129, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JULIEN-DE-VOUVANTES", - "center": "POINT (332146.1216160121257417 2300839.4018770921975374)", - "surface": 25800000, - "canton": null, - "numero_insee": "44170" - } - }, - { - "pk": 1872, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LEGER-LES-VIGNES", - "center": "POINT (292862.4340184197644703 2245974.6092126183211803)", - "surface": 6730000, - "canton": null, - "numero_insee": "44171" - } - }, - { - "pk": 1530, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-LUCE-SUR-LOIRE", - "center": "POINT (311685.2086412682547234 2257337.4618608830496669)", - "surface": 11410000, - "canton": null, - "numero_insee": "44172" - } - }, - { - "pk": 2858, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LUMINE-DE-CLISSON", - "center": "POINT (319151.8747957816231064 2237682.2474985634908080)", - "surface": 18240000, - "canton": null, - "numero_insee": "44173" - } - }, - { - "pk": 2999, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LUMINE-DE-COUTAIS", - "center": "POINT (291643.0601629208540544 2235956.3614875688217580)", - "surface": 17810000, - "canton": null, - "numero_insee": "44174" - } - }, - { - "pk": 2361, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LYPHARD", - "center": "POINT (247391.5569707420072518 2274728.3287292374297976)", - "surface": 24500000, - "canton": null, - "numero_insee": "44175" - } - }, - { - "pk": 2895, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MALO-DE-GUERSAC", - "center": "POINT (259527.3502875255071558 2271524.2601973391138017)", - "surface": 15350000, - "canton": null, - "numero_insee": "44176" - } - }, - { - "pk": 1547, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-DE-COUTAIS", - "center": "POINT (289615.4127481874311343 2239142.4924778486602008)", - "surface": 34510000, - "canton": null, - "numero_insee": "44178" - } - }, - { - "pk": 2896, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-DU-DESERT", - "center": "POINT (314394.0792896040366031 2268768.8579736193642020)", - "surface": 30410000, - "canton": null, - "numero_insee": "44179" - } - }, - { - "pk": 1993, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-LA-JAILLE", - "center": "POINT (334159.7104813679470681 2287145.0911230980418622)", - "surface": 20130000, - "canton": null, - "numero_insee": "44180" - } - }, - { - "pk": 2130, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MEME-LE-TENU", - "center": "POINT (285953.3671453505521640 2234108.4689900144003332)", - "surface": 18340000, - "canton": null, - "numero_insee": "44181" - } - }, - { - "pk": 2375, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-CHEF-CHEF", - "center": "POINT (261793.2804867967497557 2251326.2070861319079995)", - "surface": 25140000, - "canton": null, - "numero_insee": "44182" - } - }, - { - "pk": 2322, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MOLF", - "center": "POINT (241475.0094426701543853 2276181.5114736133255064)", - "surface": 23230000, - "canton": null, - "numero_insee": "44183" - } - }, - { - "pk": 2581, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-NAZAIRE", - "center": "POINT (252887.4202609728672542 2263463.8109884336590767)", - "surface": 48150000, - "canton": null, - "numero_insee": "44184" - } - }, - { - "pk": 2494, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-NICOLAS-DE-REDON", - "center": "POINT (269986.9379737499984913 2302133.5918601355515420)", - "surface": 22140000, - "canton": null, - "numero_insee": "44185" - } - }, - { - "pk": 2576, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-PAZANNE", - "center": "POINT (284605.0610279040411115 2239902.3145533748902380)", - "surface": 41810000, - "canton": null, - "numero_insee": "44186" - } - }, - { - "pk": 2578, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PERE-EN-RETZ", - "center": "POINT (266754.7296984378481284 2256570.8317323140799999)", - "surface": 64020000, - "canton": null, - "numero_insee": "44187" - } - }, - { - "pk": 2252, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PHILBERT-DE-GRAND-LIEU", - "center": "POINT (296742.0748584771063179 2236598.4562925510108471)", - "surface": 97820000, - "canton": null, - "numero_insee": "44188" - } - }, - { - "pk": 2624, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-REINE-DE-BRETAGNE", - "center": "POINT (259447.6296680802479386 2281331.4918523100204766)", - "surface": 19660000, - "canton": null, - "numero_insee": "44189" - } - }, - { - "pk": 1770, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SEBASTIEN-SUR-LOIRE", - "center": "POINT (309428.4430273567559198 2251814.5204864800907671)", - "surface": 11730000, - "canton": null, - "numero_insee": "44190" - } - }, - { - "pk": 1995, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SULPICE-DES-LANDES", - "center": "POINT (332223.1109826611937024 2291432.6422926550731063)", - "surface": 31250000, - "canton": null, - "numero_insee": "44191" - } - }, - { - "pk": 1520, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VIAUD", - "center": "POINT (272341.8391312007443048 2258718.0146043663844466)", - "surface": 32450000, - "canton": null, - "numero_insee": "44192" - } - }, - { - "pk": 1861, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VINCENT-DES-LANDES", - "center": "POINT (311519.1122609702288173 2302171.9247163403779268)", - "surface": 33670000, - "canton": null, - "numero_insee": "44193" - } - }, - { - "pk": 3004, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAUTRON", - "center": "POINT (296148.2665544379851781 2260313.1487700799480081)", - "surface": 17710000, - "canton": null, - "numero_insee": "44194" - } - }, - { - "pk": 1960, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAVENAY", - "center": "POINT (278650.4711147937341593 2270578.9659440331161022)", - "surface": 25970000, - "canton": null, - "numero_insee": "44195" - } - }, - { - "pk": 2715, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SEVERAC", - "center": "POINT (268759.2728370794793591 2293116.5197602701373398)", - "surface": 22420000, - "canton": null, - "numero_insee": "44196" - } - }, - { - "pk": 2000, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SION-LES-MINES", - "center": "POINT (306146.6956941271782853 2310534.5971462698653340)", - "surface": 55160000, - "canton": null, - "numero_insee": "44197" - } - }, - { - "pk": 2645, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES SORINIERES", - "center": "POINT (307581.7709007406956516 2245093.9165856624022126)", - "surface": 13130000, - "canton": null, - "numero_insee": "44198" - } - }, - { - "pk": 2039, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUDAN", - "center": "POINT (327975.2382557404926047 2309111.7418687958270311)", - "surface": 53990000, - "canton": null, - "numero_insee": "44199" - } - }, - { - "pk": 2010, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULVACHE", - "center": "POINT (316674.8874022294185124 2320328.0720945810899138)", - "surface": 11230000, - "canton": null, - "numero_insee": "44200" - } - }, - { - "pk": 2102, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SUCE-SUR-ERDRE", - "center": "POINT (308790.7453385852859356 2268623.0006587663665414)", - "surface": 41480000, - "canton": null, - "numero_insee": "44201" - } - }, - { - "pk": 1928, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TEILLE", - "center": "POINT (326811.6435974815976806 2280079.3856919016689062)", - "surface": 29070000, - "canton": null, - "numero_insee": "44202" - } - }, - { - "pk": 2691, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE TEMPLE-DE-BRETAGNE", - "center": "POINT (288188.5105340707814321 2266853.6040387623943388)", - "surface": 1730000, - "canton": null, - "numero_insee": "44203" - } - }, - { - "pk": 1899, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THOUARE-SUR-LOIRE", - "center": "POINT (314968.0550615998217836 2259766.2451467895880342)", - "surface": 12530000, - "canton": null, - "numero_insee": "44204" - } - }, - { - "pk": 2406, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES TOUCHES", - "center": "POINT (316209.6085291255149059 2279292.1356206564232707)", - "surface": 35260000, - "canton": null, - "numero_insee": "44205" - } - }, - { - "pk": 2596, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TOUVOIS", - "center": "POINT (294078.7131242314353585 2219562.4447689359076321)", - "surface": 36910000, - "canton": null, - "numero_insee": "44206" - } - }, - { - "pk": 2554, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TRANS-SUR-ERDRE", - "center": "POINT (321191.9979260131949559 2281934.9410041309893131)", - "surface": 22780000, - "canton": null, - "numero_insee": "44207" - } - }, - { - "pk": 2763, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TREFFIEUX", - "center": "POINT (309556.0924648319487460 2297452.2072018552571535)", - "surface": 18990000, - "canton": null, - "numero_insee": "44208" - } - }, - { - "pk": 2057, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TREILLIERES", - "center": "POINT (300513.1735303257009946 2265052.5864762193523347)", - "surface": 29120000, - "canton": null, - "numero_insee": "44209" - } - }, - { - "pk": 2945, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TRIGNAC", - "center": "POINT (256662.6105924771982245 2266897.2508873483166099)", - "surface": 14240000, - "canton": null, - "numero_insee": "44210" - } - }, - { - "pk": 2523, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA TURBALLE", - "center": "POINT (235601.4899895039270632 2272330.7967605125159025)", - "surface": 18300000, - "canton": null, - "numero_insee": "44211" - } - }, - { - "pk": 2314, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VALLET", - "center": "POINT (327278.7137622556183487 2247456.7528982530348003)", - "surface": 58320000, - "canton": null, - "numero_insee": "44212" - } - }, - { - "pk": 2565, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VARADES", - "center": "POINT (346390.7022915685083717 2272333.3794139074161649)", - "surface": 45270000, - "canton": null, - "numero_insee": "44213" - } - }, - { - "pk": 2173, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAY", - "center": "POINT (295600.7051359396427870 2290633.0259004817344248)", - "surface": 36260000, - "canton": null, - "numero_insee": "44214" - } - }, - { - "pk": 2253, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERTOU", - "center": "POINT (311369.1225397038506344 2247026.4235168285667896)", - "surface": 38180000, - "canton": null, - "numero_insee": "44215" - } - }, - { - "pk": 2224, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIEILLEVIGNE", - "center": "POINT (314344.6417696554563008 2225833.0770676871761680)", - "surface": 51990000, - "canton": null, - "numero_insee": "44216" - } - }, - { - "pk": 2335, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIGNEUX-DE-BRETAGNE", - "center": "POINT (293402.9879773367429152 2265595.0661985985934734)", - "surface": 52840000, - "canton": null, - "numero_insee": "44217" - } - }, - { - "pk": 2566, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLEPOT", - "center": "POINT (328535.5481620345963165 2314020.1192735438235104)", - "surface": 20640000, - "canton": null, - "numero_insee": "44218" - } - }, - { - "pk": 1736, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VRITZ", - "center": "POINT (343617.4080588955548592 2293227.2923378660343587)", - "surface": 33100000, - "canton": null, - "numero_insee": "44219" - } - }, - { - "pk": 2042, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VUE", - "center": "POINT (278998.1450358962756582 2252467.0484451032243669)", - "surface": 19550000, - "canton": null, - "numero_insee": "44220" - } - }, - { - "pk": 2861, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHEVALLERAIS", - "center": "POINT (298465.6016756269382313 2282950.2779594790190458)", - "surface": 10720000, - "canton": null, - "numero_insee": "44221" - } - }, - { - "pk": 2333, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA ROCHE-BLANCHE", - "center": "POINT (337448.0812931896653026 2276663.6459183869883418)", - "surface": 14940000, - "canton": null, - "numero_insee": "44222" - } - }, - { - "pk": 1784, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GENESTON", - "center": "POINT (306654.5681061685318127 2236078.8732937737368047)", - "surface": 8290000, - "canton": null, - "numero_insee": "44223" - } - }, - { - "pk": 2563, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GRIGONNAIS", - "center": "POINT (297628.2791238047648221 2287447.0278339218348265)", - "surface": 21390000, - "canton": null, - "numero_insee": "44224" - } - }, - { - "pk": 1908, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES ALLEUDS", - "center": "POINT (391822.0725702224299312 2260796.9449230884201825)", - "surface": 10630000, - "canton": null, - "numero_insee": "49001" - } - }, - { - "pk": 2200, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ALLONNES", - "center": "POINT (424166.7482879608869553 2258561.5814220388419926)", - "surface": 36470000, - "canton": null, - "numero_insee": "49002" - } - }, - { - "pk": 1623, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AMBILLOU-CHATEAU", - "center": "POINT (397580.7157030542148277 2254238.9874556832946837)", - "surface": 19970000, - "canton": null, - "numero_insee": "49003" - } - }, - { - "pk": 1583, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANDARD", - "center": "POINT (394471.7177924094139598 2279333.6482542231678963)", - "surface": 12180000, - "canton": null, - "numero_insee": "49004" - } - }, - { - "pk": 1802, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANDIGNE", - "center": "POINT (365272.2401674720458686 2300810.7085027722641826)", - "surface": 6820000, - "canton": null, - "numero_insee": "49005" - } - }, - { - "pk": 1968, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANDREZE", - "center": "POINT (350008.1965774790151045 2246141.6999354641884565)", - "surface": 21300000, - "canton": null, - "numero_insee": "49006" - } - }, - { - "pk": 2315, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANGERS", - "center": "POINT (381962.5928634310839698 2279230.7148701702244580)", - "surface": 44330000, - "canton": null, - "numero_insee": "49007" - } - }, - { - "pk": 1901, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANGRIE", - "center": "POINT (351436.1581596180913039 2291690.1175292548723519)", - "surface": 40980000, - "canton": null, - "numero_insee": "49008" - } - }, - { - "pk": 2726, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANTOIGNE", - "center": "POINT (412561.0192991571966559 2233845.5581454141065478)", - "surface": 17750000, - "canton": null, - "numero_insee": "49009" - } - }, - { - "pk": 1730, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARMAILLE", - "center": "POINT (339298.8195690098218620 2307302.9515545880421996)", - "surface": 16890000, - "canton": null, - "numero_insee": "49010" - } - }, - { - "pk": 1955, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARTANNES-SUR-THOUET", - "center": "POINT (415651.1659033840987831 2247482.3012297055684030)", - "surface": 6700000, - "canton": null, - "numero_insee": "49011" - } - }, - { - "pk": 2984, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AUBIGNE-SUR-LAYON", - "center": "POINT (387209.9795376576948911 2249649.9231708743609488)", - "surface": 5340000, - "canton": null, - "numero_insee": "49012" - } - }, - { - "pk": 2643, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AUVERSE", - "center": "POINT (426888.7283297989051789 2280401.6004187627695501)", - "surface": 30810000, - "canton": null, - "numero_insee": "49013" - } - }, - { - "pk": 1638, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVIRE", - "center": "POINT (365229.5176872990559787 2306014.4112327452749014)", - "surface": 14580000, - "canton": null, - "numero_insee": "49014" - } - }, - { - "pk": 2834, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVRILLE", - "center": "POINT (378733.1059124082676135 2282506.7896248446777463)", - "surface": 15960000, - "canton": null, - "numero_insee": "49015" - } - }, - { - "pk": 1873, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BARACE", - "center": "POINT (397528.1753086295793764 2297072.8110007955692708)", - "surface": 13470000, - "canton": null, - "numero_insee": "49017" - } - }, - { - "pk": 2871, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BAUGE", - "center": "POINT (415935.3839228202123195 2285815.5547917317599058)", - "surface": 8570000, - "canton": null, - "numero_insee": "49018" - } - }, - { - "pk": 1898, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BAUNE", - "center": "POINT (398449.9086311681894585 2282368.7978905336931348)", - "surface": 20970000, - "canton": null, - "numero_insee": "49019" - } - }, - { - "pk": 1642, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUCOUZE", - "center": "POINT (376058.2835767613723874 2279182.1725606620311737)", - "surface": 17930000, - "canton": null, - "numero_insee": "49020" - } - }, - { - "pk": 2085, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUFORT-EN-VALLEE", - "center": "POINT (408127.8396829214179888 2273841.6821941770613194)", - "surface": 35830000, - "canton": null, - "numero_insee": "49021" - } - }, - { - "pk": 2417, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAULIEU-SUR-LAYON", - "center": "POINT (378002.7480894168838859 2261784.1515106572769582)", - "surface": 12870000, - "canton": null, - "numero_insee": "49022" - } - }, - { - "pk": 2438, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUPREAU", - "center": "POINT (348566.1110562472022139 2251133.9884352139197290)", - "surface": 35880000, - "canton": null, - "numero_insee": "49023" - } - }, - { - "pk": 2753, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUSSE", - "center": "POINT (352669.1378400130779482 2263377.5872891345061362)", - "surface": 5400000, - "canton": null, - "numero_insee": "49024" - } - }, - { - "pk": 1776, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUVAU", - "center": "POINT (405179.7993423819425516 2291531.4483155831694603)", - "surface": 8060000, - "canton": null, - "numero_insee": "49025" - } - }, - { - "pk": 2476, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BECON-LES-GRANITS", - "center": "POINT (363722.1835069187218323 2282383.4696396170184016)", - "surface": 46740000, - "canton": null, - "numero_insee": "49026" - } - }, - { - "pk": 2413, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEGROLLES-EN-MAUGES", - "center": "POINT (352142.6185409607132897 2242155.9003424029797316)", - "surface": 14710000, - "canton": null, - "numero_insee": "49027" - } - }, - { - "pk": 1851, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEHUARD", - "center": "POINT (374145.6405085824662820 2268357.7875682543963194)", - "surface": 2300000, - "canton": null, - "numero_insee": "49028" - } - }, - { - "pk": 2502, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BLAISON-GOHIER", - "center": "POINT (394956.0582544676726684 2269129.4603318632580340)", - "surface": 21350000, - "canton": null, - "numero_insee": "49029" - } - }, - { - "pk": 2225, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BLOU", - "center": "POINT (419407.0821774117648602 2265327.8012090437114239)", - "surface": 21580000, - "canton": null, - "numero_insee": "49030" - } - }, - { - "pk": 1538, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOCE", - "center": "POINT (417870.6155058081494644 2281728.2680676840245724)", - "surface": 16170000, - "canton": null, - "numero_insee": "49031" - } - }, - { - "pk": 2972, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BOHALLE", - "center": "POINT (394422.7302430855343118 2273128.2848448781296611)", - "surface": 9580000, - "canton": null, - "numero_insee": "49032" - } - }, - { - "pk": 2879, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BOISSIERE-SUR-EVRE", - "center": "POINT (340974.3709678784944117 2261580.3443810911849141)", - "surface": 6100000, - "canton": null, - "numero_insee": "49033" - } - }, - { - "pk": 1511, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOTZ-EN-MAUGES", - "center": "POINT (348078.0225058017531410 2261838.7234826548956335)", - "surface": 15730000, - "canton": null, - "numero_insee": "49034" - } - }, - { - "pk": 2831, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUCHEMAINE", - "center": "POINT (376398.8079395224340260 2274281.0512465517967939)", - "surface": 20530000, - "canton": null, - "numero_insee": "49035" - } - }, - { - "pk": 2368, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUILLE-MENARD", - "center": "POINT (352091.4936219504452311 2309409.3344859066419303)", - "surface": 15890000, - "canton": null, - "numero_insee": "49036" - } - }, - { - "pk": 2921, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BOURG-D'IRE", - "center": "POINT (351751.9289605371886864 2302000.7923807287588716)", - "surface": 23060000, - "canton": null, - "numero_insee": "49037" - } - }, - { - "pk": 1917, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOURG-L'EVEQUE", - "center": "POINT (348592.2967884925892577 2308980.3372883708216250)", - "surface": 5330000, - "canton": null, - "numero_insee": "49038" - } - }, - { - "pk": 2547, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOURGNEUF-EN-MAUGES", - "center": "POINT (358389.8004334643483162 2261422.8950808965601027)", - "surface": 11790000, - "canton": null, - "numero_insee": "49039" - } - }, - { - "pk": 2364, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUZILLE", - "center": "POINT (339740.6857031550025567 2265573.4829549649730325)", - "surface": 18500000, - "canton": null, - "numero_insee": "49040" - } - }, - { - "pk": 2778, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRAIN-SUR-ALLONNES", - "center": "POINT (428670.0999370194040239 2258598.7740920656360686)", - "surface": 33520000, - "canton": null, - "numero_insee": "49041" - } - }, - { - "pk": 2886, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRAIN-SUR-L'AUTHION", - "center": "POINT (393092.1162222444545478 2276720.2135239029303193)", - "surface": 23540000, - "canton": null, - "numero_insee": "49042" - } - }, - { - "pk": 2460, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRAIN-SUR-LONGUENEE", - "center": "POINT (366049.1556658477056772 2291509.7853439333848655)", - "surface": 23170000, - "canton": null, - "numero_insee": "49043" - } - }, - { - "pk": 2743, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BREIL", - "center": "POINT (436523.8395941279595718 2277078.4997385358437896)", - "surface": 15200000, - "canton": null, - "numero_insee": "49044" - } - }, - { - "pk": 2675, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BREILLE-LES-PINS", - "center": "POINT (429729.5813912586891092 2263611.5818680268712342)", - "surface": 27850000, - "canton": null, - "numero_insee": "49045" - } - }, - { - "pk": 2935, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BREZE", - "center": "POINT (418687.2906776037998497 2243403.9793379404582083)", - "surface": 20060000, - "canton": null, - "numero_insee": "49046" - } - }, - { - "pk": 1723, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRIGNE", - "center": "POINT (394489.1058326031779870 2252912.4637466501444578)", - "surface": 14600000, - "canton": null, - "numero_insee": "49047" - } - }, - { - "pk": 1634, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRIOLLAY", - "center": "POINT (386777.2500228885328397 2290078.8896264773793519)", - "surface": 14450000, - "canton": null, - "numero_insee": "49048" - } - }, - { - "pk": 1673, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRION", - "center": "POINT (412930.5348121454590000 2273981.3661486911587417)", - "surface": 28400000, - "canton": null, - "numero_insee": "49049" - } - }, - { - "pk": 2709, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRISSAC-QUINCE", - "center": "POINT (390095.2734266291372478 2263885.2448930013924837)", - "surface": 9930000, - "canton": null, - "numero_insee": "49050" - } - }, - { - "pk": 2093, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRISSARTHE", - "center": "POINT (389956.9234544922364876 2305016.7272981894202530)", - "surface": 17030000, - "canton": null, - "numero_insee": "49051" - } - }, - { - "pk": 2827, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BROC", - "center": "POINT (439119.9009572084760293 2289910.1188085870817304)", - "surface": 21240000, - "canton": null, - "numero_insee": "49052" - } - }, - { - "pk": 2807, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BROSSAY", - "center": "POINT (406472.2797166889067739 2244003.8007329744286835)", - "surface": 4810000, - "canton": null, - "numero_insee": "49053" - } - }, - { - "pk": 1839, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CANDE", - "center": "POINT (346247.9874102305620909 2289746.0859666871838272)", - "surface": 4880000, - "canton": null, - "numero_insee": "49054" - } - }, - { - "pk": 1949, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CANTENAY-EPINARD", - "center": "POINT (381406.2687030753586441 2286031.5481275999918580)", - "surface": 16570000, - "canton": null, - "numero_insee": "49055" - } - }, - { - "pk": 2755, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CARBAY", - "center": "POINT (332775.3654474093928002 2309551.3296145061030984)", - "surface": 7710000, - "canton": null, - "numero_insee": "49056" - } - }, - { - "pk": 2860, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CERNUSSON", - "center": "POINT (386350.4735593703808263 2244638.7369088209234178)", - "surface": 8540000, - "canton": null, - "numero_insee": "49057" - } - }, - { - "pk": 1548, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES CERQUEUX", - "center": "POINT (373583.8180117338197306 2227119.2790120104327798)", - "surface": 13850000, - "canton": null, - "numero_insee": "49058" - } - }, - { - "pk": 2602, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES CERQUEUX-SOUS-PASSAVANT", - "center": "POINT (386705.0505095151602291 2238036.1945775719359517)", - "surface": 23050000, - "canton": null, - "numero_insee": "49059" - } - }, - { - "pk": 2865, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHACE", - "center": "POINT (417648.5440339429769665 2247999.1936083501204848)", - "surface": 6570000, - "canton": null, - "numero_insee": "49060" - } - }, - { - "pk": 2354, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHALLAIN-LA-POTHERIE", - "center": "POINT (343878.2666552107548341 2298033.2033901573158801)", - "surface": 48600000, - "canton": null, - "numero_insee": "49061" - } - }, - { - "pk": 2738, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHALONNES-SOUS-LE-LUDE", - "center": "POINT (437347.5590269343229011 2286392.7016149042174220)", - "surface": 16620000, - "canton": null, - "numero_insee": "49062" - } - }, - { - "pk": 2343, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHALONNES-SUR-LOIRE", - "center": "POINT (365060.2782814099336974 2265681.0549806570634246)", - "surface": 38800000, - "canton": null, - "numero_insee": "49063" - } - }, - { - "pk": 2853, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMBELLAY", - "center": "POINT (372558.5419435752555728 2303172.3455743486993015)", - "surface": 13520000, - "canton": null, - "numero_insee": "49064" - } - }, - { - "pk": 2167, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPIGNE", - "center": "POINT (381690.5279787023901008 2300144.9846912971697748)", - "surface": 23140000, - "canton": null, - "numero_insee": "49065" - } - }, - { - "pk": 1636, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMP-SUR-LAYON", - "center": "POINT (380056.0789806480170228 2255495.9058704129420221)", - "surface": 19220000, - "canton": null, - "numero_insee": "49066" - } - }, - { - "pk": 1880, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPTEUSSE-SUR-BACONNE", - "center": "POINT (375379.4500008425675333 2300893.7297529573552310)", - "surface": 11670000, - "canton": null, - "numero_insee": "49067" - } - }, - { - "pk": 2809, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPTOCE-SUR-LOIRE", - "center": "POINT (357778.5730427320231684 2274928.7763145035132766)", - "surface": 37200000, - "canton": null, - "numero_insee": "49068" - } - }, - { - "pk": 1791, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPTOCEAUX", - "center": "POINT (328142.7142197107314132 2264177.4769728779792786)", - "surface": 15670000, - "canton": null, - "numero_insee": "49069" - } - }, - { - "pk": 2132, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHANTELOUP-LES-BOIS", - "center": "POINT (370107.1948542973841541 2236098.2263535414822400)", - "surface": 27530000, - "canton": null, - "numero_insee": "49070" - } - }, - { - "pk": 2509, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHANZEAUX", - "center": "POINT (373944.9311875698040240 2256246.3211955646984279)", - "surface": 31510000, - "canton": null, - "numero_insee": "49071" - } - }, - { - "pk": 2036, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-DU-GENET", - "center": "POINT (346193.8343947962857783 2247511.5811468767933547)", - "surface": 9260000, - "canton": null, - "numero_insee": "49072" - } - }, - { - "pk": 2841, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-HULLIN", - "center": "POINT (344765.0059318412677385 2311951.2951405695639551)", - "surface": 9970000, - "canton": null, - "numero_insee": "49073" - } - }, - { - "pk": 2184, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-ROUSSELIN", - "center": "POINT (362198.5343935422133654 2248543.6124669164419174)", - "surface": 12570000, - "canton": null, - "numero_insee": "49074" - } - }, - { - "pk": 2040, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SAINT-FLORENT", - "center": "POINT (343456.5534479697234929 2264002.6303763422183692)", - "surface": 16140000, - "canton": null, - "numero_insee": "49075" - } - }, - { - "pk": 1777, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SAINT-LAUD", - "center": "POINT (401958.5322747968020849 2293806.7144071389921010)", - "surface": 10650000, - "canton": null, - "numero_insee": "49076" - } - }, - { - "pk": 2168, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SUR-OUDON", - "center": "POINT (362267.6336559136398137 2301086.2783056306652725)", - "surface": 12760000, - "canton": null, - "numero_insee": "49077" - } - }, - { - "pk": 2030, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHARCE-SAINT-ELLIER-SUR-AUBANCE", - "center": "POINT (392989.1858307221555151 2264909.8759291861206293)", - "surface": 16930000, - "canton": null, - "numero_insee": "49078" - } - }, - { - "pk": 2718, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHARTRENE", - "center": "POINT (414286.9840393033809960 2279396.8707731673493981)", - "surface": 3770000, - "canton": null, - "numero_insee": "49079" - } - }, - { - "pk": 2607, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAUNEUF-SUR-SARTHE", - "center": "POINT (387378.9537543117185123 2302093.2563928221352398)", - "surface": 14600000, - "canton": null, - "numero_insee": "49080" - } - }, - { - "pk": 2589, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATELAIS", - "center": "POINT (354772.0655186504009180 2312033.3293348518200219)", - "surface": 24010000, - "canton": null, - "numero_insee": "49081" - } - }, - { - "pk": 2421, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAUDEFONDS-SUR-LAYON", - "center": "POINT (368886.9339368203654885 2262810.1329103196039796)", - "surface": 15000000, - "canton": null, - "numero_insee": "49082" - } - }, - { - "pk": 1652, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAUDRON-EN-MAUGES", - "center": "POINT (350304.2793770647258498 2258854.5360267055220902)", - "surface": 25750000, - "canton": null, - "numero_insee": "49083" - } - }, - { - "pk": 2942, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAUMONT-D'ANJOU", - "center": "POINT (402027.7905938624753617 2285400.6538507957011461)", - "surface": 12080000, - "canton": null, - "numero_insee": "49084" - } - }, - { - "pk": 2287, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAUSSAIRE", - "center": "POINT (335654.7498440415365621 2251228.3594468492083251)", - "surface": 12250000, - "canton": null, - "numero_insee": "49085" - } - }, - { - "pk": 1936, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAVAGNES", - "center": "POINT (389956.9001297809300013 2256378.0113265812397003)", - "surface": 16460000, - "canton": null, - "numero_insee": "49086" - } - }, - { - "pk": 2862, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAVAIGNES", - "center": "POINT (427249.3476744027575478 2285208.3910481468774378)", - "surface": 7460000, - "canton": null, - "numero_insee": "49087" - } - }, - { - "pk": 1738, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAZE-HENRY", - "center": "POINT (341559.4670517260674387 2312325.3432051436975598)", - "surface": 20070000, - "canton": null, - "numero_insee": "49088" - } - }, - { - "pk": 2485, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAZE-SUR-ARGOS", - "center": "POINT (356808.8581062815501355 2295537.1749857864342630)", - "surface": 31620000, - "canton": null, - "numero_insee": "49089" - } - }, - { - "pk": 1579, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEFFES", - "center": "POINT (385330.9639639694360085 2295571.3216177499853075)", - "surface": 17680000, - "canton": null, - "numero_insee": "49090" - } - }, - { - "pk": 2852, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMELLIER", - "center": "POINT (396306.4655634547816589 2263135.7336447727866471)", - "surface": 11010000, - "canton": null, - "numero_insee": "49091" - } - }, - { - "pk": 2035, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMILLE", - "center": "POINT (367774.8130472427001223 2251992.1932466379366815)", - "surface": 49450000, - "canton": null, - "numero_insee": "49092" - } - }, - { - "pk": 2805, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMIRE-SUR-SARTHE", - "center": "POINT (392320.7373382557416335 2309639.7505343109369278)", - "surface": 6610000, - "canton": null, - "numero_insee": "49093" - } - }, - { - "pk": 2790, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHENEHUTTE-TREVES-CUNAULT", - "center": "POINT (408848.7458393056876957 2259235.8400433980859816)", - "surface": 28660000, - "canton": null, - "numero_insee": "49094" - } - }, - { - "pk": 2962, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHENILLE-CHANGE", - "center": "POINT (374859.3569668929558247 2303291.3284589461982250)", - "surface": 5360000, - "canton": null, - "numero_insee": "49095" - } - }, - { - "pk": 2782, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHERRE", - "center": "POINT (383052.0243873682920821 2304959.9236780107021332)", - "surface": 13990000, - "canton": null, - "numero_insee": "49096" - } - }, - { - "pk": 2247, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEVIRE-LE-ROUGE", - "center": "POINT (411290.7915450857253745 2290781.1963692484423518)", - "surface": 36130000, - "canton": null, - "numero_insee": "49097" - } - }, - { - "pk": 1769, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHIGNE", - "center": "POINT (432525.0704014858929440 2288654.6625772230327129)", - "surface": 25310000, - "canton": null, - "numero_insee": "49098" - } - }, - { - "pk": 2579, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHOLET", - "center": "POINT (355726.5680427931947634 2232277.0714378701522946)", - "surface": 87470000, - "canton": null, - "numero_insee": "49099" - } - }, - { - "pk": 1624, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CIZAY-LA-MADELEINE", - "center": "POINT (408861.7179618517402560 2245524.7372049703262746)", - "surface": 19310000, - "canton": null, - "numero_insee": "49100" - } - }, - { - "pk": 2472, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CLEFS", - "center": "POINT (419365.2419594418024644 2294650.7953692968003452)", - "surface": 25920000, - "canton": null, - "numero_insee": "49101" - } - }, - { - "pk": 2498, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CLERE-SUR-LAYON", - "center": "POINT (389928.9062786610447802 2235460.5668347175233066)", - "surface": 21560000, - "canton": null, - "numero_insee": "49102" - } - }, - { - "pk": 2411, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COMBREE", - "center": "POINT (348114.9090369725599885 2306174.2494690436869860)", - "surface": 24290000, - "canton": null, - "numero_insee": "49103" - } - }, - { - "pk": 2657, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONCOURSON-SUR-LAYON", - "center": "POINT (396255.4925706654321402 2245020.5229174960404634)", - "surface": 18300000, - "canton": null, - "numero_insee": "49104" - } - }, - { - "pk": 2309, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONTIGNE", - "center": "POINT (387040.0456368071027100 2306794.1255265241488814)", - "surface": 23450000, - "canton": null, - "numero_insee": "49105" - } - }, - { - "pk": 1951, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORNE", - "center": "POINT (397387.0207613845122978 2277756.3777693738229573)", - "surface": 16740000, - "canton": null, - "numero_insee": "49106" - } - }, - { - "pk": 1813, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORNILLE-LES-CAVES", - "center": "POINT (401069.1129407995613292 2280288.7023661225102842)", - "surface": 10390000, - "canton": null, - "numero_insee": "49107" - } - }, - { - "pk": 1544, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CORNUAILLE", - "center": "POINT (349082.0079977404093370 2285866.2264653430320323)", - "surface": 44320000, - "canton": null, - "numero_insee": "49108" - } - }, - { - "pk": 2532, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORON", - "center": "POINT (374380.0460328306071460 2239836.4104303750209510)", - "surface": 31930000, - "canton": null, - "numero_insee": "49109" - } - }, - { - "pk": 1712, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORZE", - "center": "POINT (396318.7144188251113519 2285954.1036762460134923)", - "surface": 31420000, - "canton": null, - "numero_insee": "49110" - } - }, - { - "pk": 2269, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COSSE-D'ANJOU", - "center": "POINT (372720.4379433317226358 2246928.6356899901293218)", - "surface": 13410000, - "canton": null, - "numero_insee": "49111" - } - }, - { - "pk": 1516, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE COUDRAY-MACOUARD", - "center": "POINT (413065.7161549000302330 2245459.3262550369836390)", - "surface": 13590000, - "canton": null, - "numero_insee": "49112" - } - }, - { - "pk": 1745, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURCHAMPS", - "center": "POINT (411050.1743000578135252 2247144.1008224310353398)", - "surface": 6980000, - "canton": null, - "numero_insee": "49113" - } - }, - { - "pk": 2890, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURLEON", - "center": "POINT (434606.7430527904070914 2266854.4678218001499772)", - "surface": 13950000, - "canton": null, - "numero_insee": "49114" - } - }, - { - "pk": 1700, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COUTURES", - "center": "POINT (396974.8413849264616147 2267044.3917716485448182)", - "surface": 9350000, - "canton": null, - "numero_insee": "49115" - } - }, - { - "pk": 1670, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CUON", - "center": "POINT (417098.9337216269923374 2278219.1124248956330121)", - "surface": 13130000, - "canton": null, - "numero_insee": "49116" - } - }, - { - "pk": 2407, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA DAGUENIERE", - "center": "POINT (390317.2472414433723316 2273394.7289424990303814)", - "surface": 11890000, - "canton": null, - "numero_insee": "49117" - } - }, - { - "pk": 2193, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DAUMERAY", - "center": "POINT (397389.3704507949296385 2301775.3426317311823368)", - "surface": 40790000, - "canton": null, - "numero_insee": "49119" - } - }, - { - "pk": 2265, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DENEE", - "center": "POINT (377548.1528586237691343 2268385.7541103730909526)", - "surface": 15980000, - "canton": null, - "numero_insee": "49120" - } - }, - { - "pk": 2911, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DENEZE-SOUS-DOUE", - "center": "POINT (403490.9079442088259384 2253587.1091643194667995)", - "surface": 23850000, - "canton": null, - "numero_insee": "49121" - } - }, - { - "pk": 2970, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DENEZE-SOUS-LE-LUDE", - "center": "POINT (433361.2065572306746617 2284358.1694404762238264)", - "surface": 15350000, - "canton": null, - "numero_insee": "49122" - } - }, - { - "pk": 2744, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DISTRE", - "center": "POINT (413629.0197286518523470 2249967.6708963327109814)", - "surface": 14910000, - "canton": null, - "numero_insee": "49123" - } - }, - { - "pk": 2623, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DOUE-LA-FONTAINE", - "center": "POINT (401845.7082967217429541 2246767.9751031799241900)", - "surface": 35830000, - "canton": null, - "numero_insee": "49125" - } - }, - { - "pk": 1645, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DRAIN", - "center": "POINT (332043.1583740438800305 2264509.6415782007388771)", - "surface": 19480000, - "canton": null, - "numero_insee": "49126" - } - }, - { - "pk": 2282, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DURTAL", - "center": "POINT (405404.1382349603227340 2300740.5123753705993295)", - "surface": 61000000, - "canton": null, - "numero_insee": "49127" - } - }, - { - "pk": 1728, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ECHEMIRE", - "center": "POINT (410924.3367141878115945 2286674.9358215644024312)", - "surface": 17020000, - "canton": null, - "numero_insee": "49128" - } - }, - { - "pk": 2213, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ECOUFLANT", - "center": "POINT (385018.7567164608044550 2284860.3076361007988453)", - "surface": 17580000, - "canton": null, - "numero_insee": "49129" - } - }, - { - "pk": 2791, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ECUILLE", - "center": "POINT (382136.8974034023704007 2294544.2657884825021029)", - "surface": 12530000, - "canton": null, - "numero_insee": "49130" - } - }, - { - "pk": 2201, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "EPIEDS", - "center": "POINT (419817.0346651547006331 2239910.4117745412513614)", - "surface": 27390000, - "canton": null, - "numero_insee": "49131" - } - }, - { - "pk": 1934, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ETRICHE", - "center": "POINT (390505.0449611165095121 2299216.7145941574126482)", - "surface": 19820000, - "canton": null, - "numero_insee": "49132" - } - }, - { - "pk": 2222, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FAVERAYE-MACHELLES", - "center": "POINT (384689.9843169630621560 2251830.9932955573312938)", - "surface": 18780000, - "canton": null, - "numero_insee": "49133" - } - }, - { - "pk": 2960, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FAYE-D'ANJOU", - "center": "POINT (383321.5072054187767208 2260026.4274632725864649)", - "surface": 30800000, - "canton": null, - "numero_insee": "49134" - } - }, - { - "pk": 2866, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FENEU", - "center": "POINT (379061.8195957751013339 2291216.3832274698652327)", - "surface": 25910000, - "canton": null, - "numero_insee": "49135" - } - }, - { - "pk": 1787, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FERRIERE-DE-FLEE", - "center": "POINT (361803.2856348104542121 2308888.5384738217107952)", - "surface": 13400000, - "canton": null, - "numero_insee": "49136" - } - }, - { - "pk": 2899, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE FIEF-SAUVIN", - "center": "POINT (342754.3603966082446277 2251987.0905707180500031)", - "surface": 30450000, - "canton": null, - "numero_insee": "49137" - } - }, - { - "pk": 2245, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FONTAINE-GUERIN", - "center": "POINT (410788.5583638414391316 2278867.6185131091624498)", - "surface": 22400000, - "canton": null, - "numero_insee": "49138" - } - }, - { - "pk": 1916, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FONTAINE-MILON", - "center": "POINT (404861.9848563417326659 2281520.9114057007245719)", - "surface": 8450000, - "canton": null, - "numero_insee": "49139" - } - }, - { - "pk": 1885, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FONTEVRAUD-L'ABBAYE", - "center": "POINT (425477.5595600727247074 2245261.5225429041311145)", - "surface": 14940000, - "canton": null, - "numero_insee": "49140" - } - }, - { - "pk": 2058, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FORGES", - "center": "POINT (405028.3261714743566699 2249196.1763961599208415)", - "surface": 9190000, - "canton": null, - "numero_insee": "49141" - } - }, - { - "pk": 1647, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FOSSE-DE-TIGNE", - "center": "POINT (389846.5328653039177880 2245468.1674621310085058)", - "surface": 5560000, - "canton": null, - "numero_insee": "49142" - } - }, - { - "pk": 2108, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FOUGERE", - "center": "POINT (412963.1286310591385700 2294297.7422389476560056)", - "surface": 24460000, - "canton": null, - "numero_insee": "49143" - } - }, - { - "pk": 2147, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FREIGNE", - "center": "POINT (340862.1143462785985321 2287500.2146010398864746)", - "surface": 65410000, - "canton": null, - "numero_insee": "49144" - } - }, - { - "pk": 2561, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE FUILET", - "center": "POINT (338389.6453760485164821 2259457.4627476194873452)", - "surface": 15590000, - "canton": null, - "numero_insee": "49145" - } - }, - { - "pk": 1866, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GEE", - "center": "POINT (406497.7943643042817712 2277331.0455593401566148)", - "surface": 6380000, - "canton": null, - "numero_insee": "49147" - } - }, - { - "pk": 2803, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GENE", - "center": "POINT (363802.3856098854448646 2296995.6659525134600699)", - "surface": 9570000, - "canton": null, - "numero_insee": "49148" - } - }, - { - "pk": 2608, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GENNES", - "center": "POINT (404135.3473054632777348 2260397.9606154342181981)", - "surface": 32990000, - "canton": null, - "numero_insee": "49149" - } - }, - { - "pk": 2404, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GENNETEIL", - "center": "POINT (427713.3429420604952611 2289615.7020027711987495)", - "surface": 35940000, - "canton": null, - "numero_insee": "49150" - } - }, - { - "pk": 1640, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GESTE", - "center": "POINT (338582.3473267625086010 2248149.7879607402719557)", - "surface": 35680000, - "canton": null, - "numero_insee": "49151" - } - }, - { - "pk": 2873, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VALANJOU", - "center": "POINT (377094.1446780553087592 2250567.5428075287491083)", - "surface": 56370000, - "canton": null, - "numero_insee": "49153" - } - }, - { - "pk": 2821, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GREZILLE", - "center": "POINT (398022.5645233523100615 2261348.4081243015825748)", - "surface": 17810000, - "canton": null, - "numero_insee": "49154" - } - }, - { - "pk": 2210, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GREZ-NEUVILLE", - "center": "POINT (371943.5447119874879718 2292759.1436257651075721)", - "surface": 27660000, - "canton": null, - "numero_insee": "49155" - } - }, - { - "pk": 1774, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GRUGE-L'HOPITAL", - "center": "POINT (347872.9362781966920011 2311276.2229339876212180)", - "surface": 15900000, - "canton": null, - "numero_insee": "49156" - } - }, - { - "pk": 1688, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GUEDENIAU", - "center": "POINT (421086.1582926686387509 2280153.5324287498369813)", - "surface": 18170000, - "canton": null, - "numero_insee": "49157" - } - }, - { - "pk": 1893, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'HOTELLERIE-DE-FLEE", - "center": "POINT (357889.0306615742156282 2310257.5044741705060005)", - "surface": 14830000, - "canton": null, - "numero_insee": "49158" - } - }, - { - "pk": 1622, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HUILLE", - "center": "POINT (401220.1060796729288995 2298404.2388659771531820)", - "surface": 12720000, - "canton": null, - "numero_insee": "49159" - } - }, - { - "pk": 1867, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "INGRANDES", - "center": "POINT (354287.4937743056798354 2273499.0126412478275597)", - "surface": 6730000, - "canton": null, - "numero_insee": "49160" - } - }, - { - "pk": 2339, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA JAILLE-YVON", - "center": "POINT (373124.4368971189251170 2307380.2619282752275467)", - "surface": 12830000, - "canton": null, - "numero_insee": "49161" - } - }, - { - "pk": 2142, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JALLAIS", - "center": "POINT (358092.1542877930914983 2248910.2368440292775631)", - "surface": 52950000, - "canton": null, - "numero_insee": "49162" - } - }, - { - "pk": 1996, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JARZE", - "center": "POINT (406115.0898255500942469 2287335.8411035975441337)", - "surface": 33380000, - "canton": null, - "numero_insee": "49163" - } - }, - { - "pk": 2428, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA JUBAUDIERE", - "center": "POINT (355614.8991176207782701 2245887.4401991087943316)", - "surface": 10930000, - "canton": null, - "numero_insee": "49165" - } - }, - { - "pk": 2671, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUIGNE-SUR-LOIRE", - "center": "POINT (387038.7017911156872287 2270465.4189020534977317)", - "surface": 12530000, - "canton": null, - "numero_insee": "49167" - } - }, - { - "pk": 2539, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA JUMELLIERE", - "center": "POINT (368119.2180298421299085 2258800.5764885270036757)", - "surface": 29240000, - "canton": null, - "numero_insee": "49169" - } - }, - { - "pk": 2098, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUVARDEIL", - "center": "POINT (385900.1119647035375237 2299378.9813494556583464)", - "surface": 19170000, - "canton": null, - "numero_insee": "49170" - } - }, - { - "pk": 2863, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA LANDE-CHASLES", - "center": "POINT (418716.6183492942363955 2276230.8637498365715146)", - "surface": 5090000, - "canton": null, - "numero_insee": "49171" - } - }, - { - "pk": 1708, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LANDEMONT", - "center": "POINT (329596.9899475991842337 2257684.0890091592445970)", - "surface": 18700000, - "canton": null, - "numero_insee": "49172" - } - }, - { - "pk": 2541, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LASSE", - "center": "POINT (424546.5662436080165207 2285286.1511628157459199)", - "surface": 29130000, - "canton": null, - "numero_insee": "49173" - } - }, - { - "pk": 1783, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LEZIGNE", - "center": "POINT (402438.2783498233184218 2296312.6299953679554164)", - "surface": 9260000, - "canton": null, - "numero_insee": "49174" - } - }, - { - "pk": 1859, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LINIERES-BOUTON", - "center": "POINT (428837.2291668909019791 2274713.1437777346000075)", - "surface": 9910000, - "canton": null, - "numero_insee": "49175" - } - }, - { - "pk": 2405, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LION-D'ANGERS", - "center": "POINT (368007.0407124808989465 2296830.0323653486557305)", - "surface": 41670000, - "canton": null, - "numero_insee": "49176" - } - }, - { - "pk": 2425, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIRE", - "center": "POINT (336344.7167596386279911 2264745.0213797893375158)", - "surface": 32140000, - "canton": null, - "numero_insee": "49177" - } - }, - { - "pk": 2548, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOIRE", - "center": "POINT (351893.0281956375110894 2296998.0346593982540071)", - "surface": 34200000, - "canton": null, - "numero_insee": "49178" - } - }, - { - "pk": 2155, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LONGERON", - "center": "POINT (343230.9117444991716184 2230473.1837972141802311)", - "surface": 22010000, - "canton": null, - "numero_insee": "49179" - } - }, - { - "pk": 2270, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LONGUE-JUMELLES", - "center": "POINT (415470.3459714229684323 2269398.6228264458477497)", - "surface": 96540000, - "canton": null, - "numero_insee": "49180" - } - }, - { - "pk": 2480, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUERRE", - "center": "POINT (399346.6142979992437176 2258557.0395808136090636)", - "surface": 14530000, - "canton": null, - "numero_insee": "49181" - } - }, - { - "pk": 2854, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOURESSE-ROCHEMENIER", - "center": "POINT (399897.2788998342584819 2252456.5984603138640523)", - "surface": 25980000, - "canton": null, - "numero_insee": "49182" - } - }, - { - "pk": 2386, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LOUROUX-BECONNAIS", - "center": "POINT (356195.3735557064646855 2284923.7677479027770460)", - "surface": 66110000, - "canton": null, - "numero_insee": "49183" - } - }, - { - "pk": 2064, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUVAINES", - "center": "POINT (364347.7733721837867051 2303705.3821439738385379)", - "surface": 15130000, - "canton": null, - "numero_insee": "49184" - } - }, - { - "pk": 2734, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LUE-EN-BAUGEOIS", - "center": "POINT (403346.8745159932295792 2283209.7770185177214444)", - "surface": 7530000, - "canton": null, - "numero_insee": "49185" - } - }, - { - "pk": 1882, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LUIGNE", - "center": "POINT (392949.2561384589644149 2257603.6219064388424158)", - "surface": 9580000, - "canton": null, - "numero_insee": "49186" - } - }, - { - "pk": 1665, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARANS", - "center": "POINT (360588.5931985774077475 2298370.3854210190474987)", - "surface": 9780000, - "canton": null, - "numero_insee": "49187" - } - }, - { - "pk": 2588, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARCE", - "center": "POINT (401687.9977579350234009 2290201.6502950005233288)", - "surface": 21180000, - "canton": null, - "numero_insee": "49188" - } - }, - { - "pk": 2454, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARIGNE", - "center": "POINT (377941.8214534736471251 2305718.5303849084302783)", - "surface": 25020000, - "canton": null, - "numero_insee": "49189" - } - }, - { - "pk": 1858, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE MARILLAIS", - "center": "POINT (342925.8416094441199675 2267701.2763818176463246)", - "surface": 9330000, - "canton": null, - "numero_insee": "49190" - } - }, - { - "pk": 2223, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARTIGNE-BRIAND", - "center": "POINT (389988.2004010113887489 2252575.1643097409978509)", - "surface": 27260000, - "canton": null, - "numero_insee": "49191" - } - }, - { - "pk": 2621, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAULEVRIER", - "center": "POINT (363960.8012275003711693 2228941.8165120831690729)", - "surface": 33690000, - "canton": null, - "numero_insee": "49192" - } - }, - { - "pk": 2504, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE MAY-SUR-EVRE", - "center": "POINT (356348.2741815471090376 2241890.1531691537238657)", - "surface": 31850000, - "canton": null, - "numero_insee": "49193" - } - }, - { - "pk": 2409, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAZE", - "center": "POINT (402399.7448904822813347 2276696.7925777910277247)", - "surface": 33430000, - "canton": null, - "numero_insee": "49194" - } - }, - { - "pk": 2934, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAZIERES-EN-MAUGES", - "center": "POINT (362121.6205885240342468 2233530.5596297015435994)", - "surface": 8910000, - "canton": null, - "numero_insee": "49195" - } - }, - { - "pk": 2212, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MEIGNANNE", - "center": "POINT (373612.9471050539286807 2284466.2957666274160147)", - "surface": 23920000, - "canton": null, - "numero_insee": "49196" - } - }, - { - "pk": 1780, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEIGNE-LE-VICOMTE", - "center": "POINT (438189.5043728033779189 2281395.6960415518842638)", - "surface": 23130000, - "canton": null, - "numero_insee": "49197" - } - }, - { - "pk": 1846, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEIGNE", - "center": "POINT (406804.1058077085763216 2252313.3551196102052927)", - "surface": 13430000, - "canton": null, - "numero_insee": "49198" - } - }, - { - "pk": 2056, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MELAY", - "center": "POINT (369017.6416833605617285 2246898.2128111911006272)", - "surface": 22900000, - "canton": null, - "numero_insee": "49199" - } - }, - { - "pk": 2120, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MEMBROLLE-SUR-LONGUENEE", - "center": "POINT (372776.1873785612406209 2288862.9068168927915394)", - "surface": 9630000, - "canton": null, - "numero_insee": "49200" - } - }, - { - "pk": 2636, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MENITRE", - "center": "POINT (404250.5454310391796753 2270707.2335019856691360)", - "surface": 17860000, - "canton": null, - "numero_insee": "49201" - } - }, - { - "pk": 2396, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEON", - "center": "POINT (432420.0188285192707554 2277144.6627351888455451)", - "surface": 15100000, - "canton": null, - "numero_insee": "49202" - } - }, - { - "pk": 1611, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE MESNIL-EN-VALLEE", - "center": "POINT (353728.9139106448856182 2268390.3248433303087950)", - "surface": 17830000, - "canton": null, - "numero_insee": "49204" - } - }, - { - "pk": 1822, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MIRE", - "center": "POINT (387708.4320564821828157 2310702.6461286479607224)", - "surface": 17920000, - "canton": null, - "numero_insee": "49205" - } - }, - { - "pk": 1857, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTFAUCON-MONTIGNE", - "center": "POINT (337171.3744161584763788 2237129.1281280368566513)", - "surface": 17060000, - "canton": null, - "numero_insee": "49206" - } - }, - { - "pk": 2780, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTFORT", - "center": "POINT (406553.3802086480427533 2246306.3642321177758276)", - "surface": 4440000, - "canton": null, - "numero_insee": "49207" - } - }, - { - "pk": 1691, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTGUILLON", - "center": "POINT (368111.8534309369861148 2308439.9416892556473613)", - "surface": 12090000, - "canton": null, - "numero_insee": "49208" - } - }, - { - "pk": 1711, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTIGNE-LES-RAIRIES", - "center": "POINT (408254.8063473943620920 2294859.3901473814621568)", - "surface": 9150000, - "canton": null, - "numero_insee": "49209" - } - }, - { - "pk": 2268, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTILLIERS", - "center": "POINT (383829.6463907444267534 2246919.8923797686584294)", - "surface": 26450000, - "canton": null, - "numero_insee": "49211" - } - }, - { - "pk": 1703, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTJEAN-SUR-LOIRE", - "center": "POINT (358020.5982678519794717 2269826.6622945265844464)", - "surface": 19660000, - "canton": null, - "numero_insee": "49212" - } - }, - { - "pk": 1710, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTPOLLIN", - "center": "POINT (415898.2321762634674087 2290318.8048326326534152)", - "surface": 4520000, - "canton": null, - "numero_insee": "49213" - } - }, - { - "pk": 2301, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL-JUIGNE", - "center": "POINT (377699.4728445736691356 2286501.4681912465021014)", - "surface": 14440000, - "canton": null, - "numero_insee": "49214" - } - }, - { - "pk": 2229, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL-BELLAY", - "center": "POINT (413215.3234627572819591 2239455.6053477413952351)", - "surface": 49410000, - "canton": null, - "numero_insee": "49215" - } - }, - { - "pk": 2323, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL-SUR-LOIR", - "center": "POINT (394769.8387811691500247 2291745.9329878184944391)", - "surface": 12100000, - "canton": null, - "numero_insee": "49216" - } - }, - { - "pk": 2063, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL-SUR-MAINE", - "center": "POINT (371082.9574483787873760 2300057.8030169629491866)", - "surface": 11510000, - "canton": null, - "numero_insee": "49217" - } - }, - { - "pk": 1735, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREVAULT", - "center": "POINT (343621.4137543122051284 2256097.5517083136364818)", - "surface": 2690000, - "canton": null, - "numero_insee": "49218" - } - }, - { - "pk": 1778, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTSOREAU", - "center": "POINT (426952.2416441749082878 2248476.3329295297153294)", - "surface": 5400000, - "canton": null, - "numero_insee": "49219" - } - }, - { - "pk": 2971, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MORANNES", - "center": "POINT (394448.5833805328584276 2306454.7859977129846811)", - "surface": 40870000, - "canton": null, - "numero_insee": "49220" - } - }, - { - "pk": 2189, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOULIHERNE", - "center": "POINT (424730.0952067892067134 2275179.6240684045478702)", - "surface": 41010000, - "canton": null, - "numero_insee": "49221" - } - }, - { - "pk": 2144, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOZE-SUR-LOUET", - "center": "POINT (380569.2962711133295670 2266108.7367610461078584)", - "surface": 26010000, - "canton": null, - "numero_insee": "49222" - } - }, - { - "pk": 2188, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MURS-ERIGNE", - "center": "POINT (381837.3383935817400925 2270122.3910695752128959)", - "surface": 17380000, - "canton": null, - "numero_insee": "49223" - } - }, - { - "pk": 2659, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUILLE", - "center": "POINT (422034.6160413330071606 2262246.9813899020664394)", - "surface": 13920000, - "canton": null, - "numero_insee": "49224" - } - }, - { - "pk": 2350, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUVY-EN-MAUGES", - "center": "POINT (361730.8683882041368634 2256746.4900677236728370)", - "surface": 18280000, - "canton": null, - "numero_insee": "49225" - } - }, - { - "pk": 2410, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOELLET", - "center": "POINT (342820.9802247170591727 2304929.9343126704916358)", - "surface": 15670000, - "canton": null, - "numero_insee": "49226" - } - }, - { - "pk": 2681, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOTRE-DAME-D'ALLENCON", - "center": "POINT (388032.4205410354770720 2259164.4535978110507131)", - "surface": 13860000, - "canton": null, - "numero_insee": "49227" - } - }, - { - "pk": 2615, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOYANT", - "center": "POINT (432188.4509181019384414 2280945.7781872185878456)", - "surface": 27450000, - "canton": null, - "numero_insee": "49228" - } - }, - { - "pk": 2736, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOYANT-LA-GRAVOYERE", - "center": "POINT (352620.5679034157074057 2305910.9548840909264982)", - "surface": 11880000, - "canton": null, - "numero_insee": "49229" - } - }, - { - "pk": 2759, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOYANT-LA-PLAINE", - "center": "POINT (395961.3857009995263070 2256427.4463005117140710)", - "surface": 4970000, - "canton": null, - "numero_insee": "49230" - } - }, - { - "pk": 2071, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NUAILLE", - "center": "POINT (363598.9401685284683481 2236445.1039708410389721)", - "surface": 13630000, - "canton": null, - "numero_insee": "49231" - } - }, - { - "pk": 2914, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NUEIL-SUR-LAYON", - "center": "POINT (392995.0188308184733614 2239889.4601951371878386)", - "surface": 53900000, - "canton": null, - "numero_insee": "49232" - } - }, - { - "pk": 2273, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NYOISEAU", - "center": "POINT (356620.9471999636152759 2306243.9978208430111408)", - "surface": 15540000, - "canton": null, - "numero_insee": "49233" - } - }, - { - "pk": 2393, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARCAY-LES-PINS", - "center": "POINT (434560.4252086495398544 2272458.5893420274369419)", - "surface": 27820000, - "canton": null, - "numero_insee": "49234" - } - }, - { - "pk": 2978, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARNAY", - "center": "POINT (423342.0952929782215506 2249347.2584052761085331)", - "surface": 6710000, - "canton": null, - "numero_insee": "49235" - } - }, - { - "pk": 2674, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PASSAVANT-SUR-LAYON", - "center": "POINT (393519.2956223572837189 2236991.3718252466060221)", - "surface": 4890000, - "canton": null, - "numero_insee": "49236" - } - }, - { - "pk": 2656, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA PELLERINE", - "center": "POINT (433734.2003495605895296 2275554.2439913400448859)", - "surface": 5390000, - "canton": null, - "numero_insee": "49237" - } - }, - { - "pk": 2627, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PELLOUAILLES-LES-VIGNES", - "center": "POINT (390220.8829218271421269 2285103.2695628022775054)", - "surface": 3650000, - "canton": null, - "numero_insee": "49238" - } - }, - { - "pk": 2148, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PIN-EN-MAUGES", - "center": "POINT (355034.0623045022366568 2255690.7181190419942141)", - "surface": 17090000, - "canton": null, - "numero_insee": "49239" - } - }, - { - "pk": 1971, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA PLAINE", - "center": "POINT (374728.8062095377827063 2233934.3741590324789286)", - "surface": 22240000, - "canton": null, - "numero_insee": "49240" - } - }, - { - "pk": 1886, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PLESSIS-GRAMMOIRE", - "center": "POINT (391058.5285446873167530 2280606.5865387702360749)", - "surface": 9450000, - "canton": null, - "numero_insee": "49241" - } - }, - { - "pk": 2891, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PLESSIS-MACE", - "center": "POINT (374886.7521447712206282 2287779.3795474357903004)", - "surface": 8120000, - "canton": null, - "numero_insee": "49242" - } - }, - { - "pk": 2619, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA POITEVINIERE", - "center": "POINT (356257.9519685697741807 2252898.4687113240361214)", - "surface": 26820000, - "canton": null, - "numero_insee": "49243" - } - }, - { - "pk": 2414, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA POMMERAYE", - "center": "POINT (357758.1492795736994594 2265220.7934620492160320)", - "surface": 39550000, - "canton": null, - "numero_insee": "49244" - } - }, - { - "pk": 2693, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PONTIGNE", - "center": "POINT (420436.9894633842632174 2286052.8595769926905632)", - "surface": 24610000, - "canton": null, - "numero_insee": "49245" - } - }, - { - "pk": 2338, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES PONTS-DE-CE", - "center": "POINT (385011.7073356464970857 2273551.2332749618217349)", - "surface": 19470000, - "canton": null, - "numero_insee": "49246" - } - }, - { - "pk": 1881, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA POSSONNIERE", - "center": "POINT (370036.8555826931260526 2269024.5924044726416469)", - "surface": 18640000, - "canton": null, - "numero_insee": "49247" - } - }, - { - "pk": 1675, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "POUANCE", - "center": "POINT (335449.4247534259920940 2312975.8504013754427433)", - "surface": 49540000, - "canton": null, - "numero_insee": "49248" - } - }, - { - "pk": 2883, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA POUEZE", - "center": "POINT (363473.5681192816700786 2288286.1113160271197557)", - "surface": 22550000, - "canton": null, - "numero_insee": "49249" - } - }, - { - "pk": 1939, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA PREVIERE", - "center": "POINT (336290.1347083253203891 2308078.9367080973461270)", - "surface": 7400000, - "canton": null, - "numero_insee": "49250" - } - }, - { - "pk": 1800, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PRUILLE", - "center": "POINT (374656.1795310917077586 2291480.4078531451523304)", - "surface": 13050000, - "canton": null, - "numero_insee": "49251" - } - }, - { - "pk": 2196, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PUISET-DORE", - "center": "POINT (336630.0970392272574827 2254338.8878416996449232)", - "surface": 22640000, - "canton": null, - "numero_insee": "49252" - } - }, - { - "pk": 1659, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PUY-NOTRE-DAME", - "center": "POINT (405320.0420882656471804 2238089.4225985356606543)", - "surface": 15880000, - "canton": null, - "numero_insee": "49253" - } - }, - { - "pk": 2794, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "QUERRE", - "center": "POINT (378478.3714978697826155 2301319.5128423967398703)", - "surface": 12590000, - "canton": null, - "numero_insee": "49254" - } - }, - { - "pk": 2906, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RABLAY-SUR-LAYON", - "center": "POINT (378736.1808465021895245 2257786.9288485953584313)", - "surface": 7550000, - "canton": null, - "numero_insee": "49256" - } - }, - { - "pk": 2768, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES RAIRIES", - "center": "POINT (408130.8107640802627429 2297760.6417406070977449)", - "surface": 8470000, - "canton": null, - "numero_insee": "49257" - } - }, - { - "pk": 2280, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA RENAUDIERE", - "center": "POINT (341937.3226111518451944 2241771.9896642575040460)", - "surface": 21530000, - "canton": null, - "numero_insee": "49258" - } - }, - { - "pk": 2077, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROCHEFORT-SUR-LOIRE", - "center": "POINT (374369.6389232273213565 2265457.2860025563277304)", - "surface": 28040000, - "canton": null, - "numero_insee": "49259" - } - }, - { - "pk": 2171, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA ROMAGNE", - "center": "POINT (345807.4811241513816640 2233596.8923563323915005)", - "surface": 16110000, - "canton": null, - "numero_insee": "49260" - } - }, - { - "pk": 2957, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES ROSIERS-SUR-LOIRE", - "center": "POINT (406683.6595977311953902 2266924.2270537079311907)", - "surface": 26070000, - "canton": null, - "numero_insee": "49261" - } - }, - { - "pk": 1739, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROU-MARSON", - "center": "POINT (411607.7067640902241692 2252352.9641963792964816)", - "surface": 12910000, - "canton": null, - "numero_insee": "49262" - } - }, - { - "pk": 3003, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUSSAY", - "center": "POINT (342374.5298680236446671 2237271.8380863605998456)", - "surface": 11000000, - "canton": null, - "numero_insee": "49263" - } - }, - { - "pk": 1850, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ANDRE-DE-LA-MARCHE", - "center": "POINT (346569.5356302049476653 2238307.0518388315103948)", - "surface": 11170000, - "canton": null, - "numero_insee": "49264" - } - }, - { - "pk": 1551, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-DE-LUIGNE", - "center": "POINT (372194.3209634543163702 2262236.8178296508267522)", - "surface": 15320000, - "canton": null, - "numero_insee": "49265" - } - }, - { - "pk": 1997, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUGUSTIN-DES-BOIS", - "center": "POINT (363462.2202645734651014 2277477.4258751049637794)", - "surface": 27440000, - "canton": null, - "numero_insee": "49266" - } - }, - { - "pk": 2967, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BARTHELEMY-D'ANJOU", - "center": "POINT (387271.4030048443819396 2278673.9055999442934990)", - "surface": 14680000, - "canton": null, - "numero_insee": "49267" - } - }, - { - "pk": 2281, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-CHRISTINE", - "center": "POINT (360009.8833274714415893 2259134.3201429322361946)", - "surface": 9500000, - "canton": null, - "numero_insee": "49268" - } - }, - { - "pk": 2682, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CHRISTOPHE-DU-BOIS", - "center": "POINT (349033.7330147256725468 2230720.9204629608429968)", - "surface": 21800000, - "canton": null, - "numero_insee": "49269" - } - }, - { - "pk": 2670, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CHRISTOPHE-LA-COUPERIE", - "center": "POINT (334006.0208134910208173 2257019.6081621400080621)", - "surface": 8430000, - "canton": null, - "numero_insee": "49270" - } - }, - { - "pk": 1829, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CLEMENT-DE-LA-PLACE", - "center": "POINT (368802.8839330285554752 2285227.4149346919730306)", - "surface": 33410000, - "canton": null, - "numero_insee": "49271" - } - }, - { - "pk": 1945, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CLEMENT-DES-LEVEES", - "center": "POINT (409613.8584478605771437 2263545.6370822116732597)", - "surface": 10420000, - "canton": null, - "numero_insee": "49272" - } - }, - { - "pk": 1662, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CRESPIN-SUR-MOINE", - "center": "POINT (331837.0086192504968494 2240788.5211755093187094)", - "surface": 20330000, - "canton": null, - "numero_insee": "49273" - } - }, - { - "pk": 1772, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CYR-EN-BOURG", - "center": "POINT (419161.2375770901562646 2246610.5270258472301066)", - "surface": 8680000, - "canton": null, - "numero_insee": "49274" - } - }, - { - "pk": 1682, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-FLORENT-LE-VIEIL", - "center": "POINT (347644.9094519531354308 2265838.4161613853648305)", - "surface": 24890000, - "canton": null, - "numero_insee": "49276" - } - }, - { - "pk": 2443, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-GEMMES-D'ANDIGNE", - "center": "POINT (357262.4212607590015978 2301245.3627700228244066)", - "surface": 25390000, - "canton": null, - "numero_insee": "49277" - } - }, - { - "pk": 2824, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-GEMMES-SUR-LOIRE", - "center": "POINT (380305.7857875906629488 2273812.7700611804611981)", - "surface": 14820000, - "canton": null, - "numero_insee": "49278" - } - }, - { - "pk": 2374, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DES-SEPT-VOIES", - "center": "POINT (400900.8099321734625846 2264274.4687033547088504)", - "surface": 15100000, - "canton": null, - "numero_insee": "49279" - } - }, - { - "pk": 2705, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DU-BOIS", - "center": "POINT (407273.6304852542234585 2280339.8340845336206257)", - "surface": 9490000, - "canton": null, - "numero_insee": "49280" - } - }, - { - "pk": 2103, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DES-GARDES", - "center": "POINT (364926.0473701131995767 2245463.4541452168487012)", - "surface": 27570000, - "canton": null, - "numero_insee": "49281" - } - }, - { - "pk": 1584, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-SUR-LAYON", - "center": "POINT (393933.1522917560068890 2247503.4567225202918053)", - "surface": 22640000, - "canton": null, - "numero_insee": "49282" - } - }, - { - "pk": 1693, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-SUR-LOIRE", - "center": "POINT (366613.7984096838627011 2271498.4903797581791878)", - "surface": 34410000, - "canton": null, - "numero_insee": "49283" - } - }, - { - "pk": 2747, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-DES-PRES", - "center": "POINT (362401.6668902961537242 2272564.7912419857457280)", - "surface": 20000000, - "canton": null, - "numero_insee": "49284" - } - }, - { - "pk": 2138, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-SUR-MOINE", - "center": "POINT (337539.7121340485173278 2241035.3831602954305708)", - "surface": 26980000, - "canton": null, - "numero_insee": "49285" - } - }, - { - "pk": 1911, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DE-LA-CROIX", - "center": "POINT (379319.8615885305916891 2272003.2181948791258037)", - "surface": 1890000, - "canton": null, - "numero_insee": "49288" - } - }, - { - "pk": 2856, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DE-LINIERES", - "center": "POINT (372969.1753024190547876 2277555.5080602504312992)", - "surface": 8790000, - "canton": null, - "numero_insee": "49289" - } - }, - { - "pk": 2536, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DES-MAUVRETS", - "center": "POINT (388854.0284818372456357 2268778.9877408761531115)", - "surface": 12740000, - "canton": null, - "numero_insee": "49290" - } - }, - { - "pk": 2977, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JUST-SUR-DIVE", - "center": "POINT (415278.1118134012212977 2244176.5067686857655644)", - "surface": 7250000, - "canton": null, - "numero_insee": "49291" - } - }, - { - "pk": 1568, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAMBERT-DU-LATTAY", - "center": "POINT (374916.0691170832142234 2259857.2351662744767964)", - "surface": 14680000, - "canton": null, - "numero_insee": "49292" - } - }, - { - "pk": 2468, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAMBERT-LA-POTHERIE", - "center": "POINT (371842.8821554458700120 2280648.7287341756746173)", - "surface": 14110000, - "canton": null, - "numero_insee": "49294" - } - }, - { - "pk": 2310, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAURENT-DE-LA-PLAINE", - "center": "POINT (362796.3641795449075289 2261058.7381682237610221)", - "surface": 18880000, - "canton": null, - "numero_insee": "49295" - } - }, - { - "pk": 2813, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAURENT-DES-AUTELS", - "center": "POINT (333779.6526227351860143 2260220.3637092947028577)", - "surface": 18720000, - "canton": null, - "numero_insee": "49296" - } - }, - { - "pk": 2423, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAURENT-DU-MOTTAY", - "center": "POINT (351243.4771104103419930 2266368.3252010089345276)", - "surface": 14740000, - "canton": null, - "numero_insee": "49297" - } - }, - { - "pk": 2692, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LEGER-DES-BOIS", - "center": "POINT (368961.3155106972553767 2278123.0619121463969350)", - "surface": 15720000, - "canton": null, - "numero_insee": "49298" - } - }, - { - "pk": 2792, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LEGER-SOUS-CHOLET", - "center": "POINT (354072.7965287297847681 2238668.8320949110202491)", - "surface": 9720000, - "canton": null, - "numero_insee": "49299" - } - }, - { - "pk": 1649, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LEZIN", - "center": "POINT (364450.1450055913301185 2254667.0999369448982179)", - "surface": 13220000, - "canton": null, - "numero_insee": "49300" - } - }, - { - "pk": 2465, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MACAIRE-EN-MAUGES", - "center": "POINT (347043.6636589573463425 2241513.5926782232709229)", - "surface": 27640000, - "canton": null, - "numero_insee": "49301" - } - }, - { - "pk": 2664, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MACAIRE-DU-BOIS", - "center": "POINT (400715.7148796732653864 2238151.5599060659296811)", - "surface": 13230000, - "canton": null, - "numero_insee": "49302" - } - }, - { - "pk": 2993, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-D'ARCE", - "center": "POINT (417712.7405983437784016 2288732.5129915229044855)", - "surface": 13430000, - "canton": null, - "numero_insee": "49303" - } - }, - { - "pk": 2944, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DE-LA-PLACE", - "center": "POINT (412941.0685292723355815 2260570.6447371691465378)", - "surface": 14830000, - "canton": null, - "numero_insee": "49304" - } - }, - { - "pk": 1810, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DU-BOIS", - "center": "POINT (369346.4006223371252418 2304346.8944893889129162)", - "surface": 21950000, - "canton": null, - "numero_insee": "49305" - } - }, - { - "pk": 3005, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DU-FOUILLOUX", - "center": "POINT (370286.1069071537931450 2275231.6233918899670243)", - "surface": 14960000, - "canton": null, - "numero_insee": "49306" - } - }, - { - "pk": 1782, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MATHURIN-SUR-LOIRE", - "center": "POINT (399532.2465512957423925 2272469.8032503928989172)", - "surface": 19770000, - "canton": null, - "numero_insee": "49307" - } - }, - { - "pk": 1958, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MELAINE-SUR-AUBANCE", - "center": "POINT (385654.1361476919846609 2268452.4164661830291152)", - "surface": 5000000, - "canton": null, - "numero_insee": "49308" - } - }, - { - "pk": 2321, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-ET-CHANVEAUX", - "center": "POINT (338736.0908661267021671 2302694.7596471565775573)", - "surface": 28030000, - "canton": null, - "numero_insee": "49309" - } - }, - { - "pk": 2614, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PAUL-DU-BOIS", - "center": "POINT (381416.6498893515672535 2236091.1103771184571087)", - "surface": 26810000, - "canton": null, - "numero_insee": "49310" - } - }, - { - "pk": 2360, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PHILBERT-DU-PEUPLE", - "center": "POINT (420282.9678931951057166 2268337.4508117763325572)", - "surface": 16640000, - "canton": null, - "numero_insee": "49311" - } - }, - { - "pk": 2131, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PHILBERT-EN-MAUGES", - "center": "POINT (345514.6323011436033994 2244903.8700199574232101)", - "surface": 7280000, - "canton": null, - "numero_insee": "49312" - } - }, - { - "pk": 2773, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-MONTLIMART", - "center": "POINT (345104.4937567450106144 2258311.5013807336799800)", - "surface": 22230000, - "canton": null, - "numero_insee": "49313" - } - }, - { - "pk": 2522, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-QUENTIN-EN-MAUGES", - "center": "POINT (355304.7313602999201976 2259295.8745353468693793)", - "surface": 21320000, - "canton": null, - "numero_insee": "49314" - } - }, - { - "pk": 1975, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-QUENTIN-LES-BEAUREPAIRE", - "center": "POINT (416453.2552407542825677 2295827.7091769101098180)", - "surface": 7560000, - "canton": null, - "numero_insee": "49315" - } - }, - { - "pk": 1752, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-REMY-EN-MAUGES", - "center": "POINT (341208.1356380835641176 2257478.9207060569897294)", - "surface": 21610000, - "canton": null, - "numero_insee": "49316" - } - }, - { - "pk": 1905, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-REMY-LA-VARENNE", - "center": "POINT (399463.4991478922311217 2268666.1805670089088380)", - "surface": 15710000, - "canton": null, - "numero_insee": "49317" - } - }, - { - "pk": 2988, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SATURNIN-SUR-LOIRE", - "center": "POINT (391158.1972840398084372 2268497.7100858548656106)", - "surface": 12050000, - "canton": null, - "numero_insee": "49318" - } - }, - { - "pk": 1840, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SAUVEUR-DE-FLEE", - "center": "POINT (364193.4837427905295044 2310309.2419838020578027)", - "surface": 13090000, - "canton": null, - "numero_insee": "49319" - } - }, - { - "pk": 1789, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SAUVEUR-DE-LANDEMONT", - "center": "POINT (329270.5581836688797921 2260884.0252374284900725)", - "surface": 11770000, - "canton": null, - "numero_insee": "49320" - } - }, - { - "pk": 2870, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SIGISMOND", - "center": "POINT (352753.5610649542068131 2277489.6380178201943636)", - "surface": 13010000, - "canton": null, - "numero_insee": "49321" - } - }, - { - "pk": 1918, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SULPICE", - "center": "POINT (392141.6355852923588827 2270607.4964338354766369)", - "surface": 2760000, - "canton": null, - "numero_insee": "49322" - } - }, - { - "pk": 1836, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SYLVAIN-D'ANJOU", - "center": "POINT (388137.4752585730748251 2282884.3776457356289029)", - "surface": 22000000, - "canton": null, - "numero_insee": "49323" - } - }, - { - "pk": 1755, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA SALLE-ET-CHAPELLE-AUBRY", - "center": "POINT (349634.1167908494826406 2255146.0214782631956041)", - "surface": 18900000, - "canton": null, - "numero_insee": "49324" - } - }, - { - "pk": 1536, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA SALLE-DE-VIHIERS", - "center": "POINT (375237.1334149655885994 2245147.8363955961540341)", - "surface": 17390000, - "canton": null, - "numero_insee": "49325" - } - }, - { - "pk": 1801, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SARRIGNE", - "center": "POINT (394853.0581467981683090 2281638.6204683496616781)", - "surface": 3050000, - "canton": null, - "numero_insee": "49326" - } - }, - { - "pk": 1935, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAULGE-L'HOPITAL", - "center": "POINT (394534.7941541324835271 2259518.2226586723700166)", - "surface": 6660000, - "canton": null, - "numero_insee": "49327" - } - }, - { - "pk": 1956, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAUMUR", - "center": "POINT (416892.6888077674084343 2254698.4427387556061149)", - "surface": 66500000, - "canton": null, - "numero_insee": "49328" - } - }, - { - "pk": 2648, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAVENNIERES", - "center": "POINT (373317.9119516256032512 2271653.6431727614253759)", - "surface": 21260000, - "canton": null, - "numero_insee": "49329" - } - }, - { - "pk": 1864, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SCEAUX-D'ANJOU", - "center": "POINT (378617.9297987290192395 2296516.9031718247570097)", - "surface": 17380000, - "canton": null, - "numero_insee": "49330" - } - }, - { - "pk": 2116, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SEGRE", - "center": "POINT (359833.0733559076907113 2305069.4180364343337715)", - "surface": 16230000, - "canton": null, - "numero_insee": "49331" - } - }, - { - "pk": 2385, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA SEGUINIERE", - "center": "POINT (349888.4675304470583797 2236332.6011096257716417)", - "surface": 31490000, - "canton": null, - "numero_insee": "49332" - } - }, - { - "pk": 2427, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SEICHES-SUR-LE-LOIR", - "center": "POINT (397263.3975214936072007 2292767.2533403644338250)", - "surface": 28890000, - "canton": null, - "numero_insee": "49333" - } - }, - { - "pk": 2686, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SERMAISE", - "center": "POINT (407748.4203823572024703 2283446.2135666878893971)", - "surface": 7240000, - "canton": null, - "numero_insee": "49334" - } - }, - { - "pk": 2544, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOEURDRES", - "center": "POINT (381921.6196082956157625 2308553.4232199513353407)", - "surface": 15300000, - "canton": null, - "numero_insee": "49335" - } - }, - { - "pk": 1972, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOMLOIRE", - "center": "POINT (377161.0864610918797553 2230251.2806393397040665)", - "surface": 31800000, - "canton": null, - "numero_insee": "49336" - } - }, - { - "pk": 1832, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUCELLES", - "center": "POINT (392277.0996650027809665 2290624.5444234483875334)", - "surface": 19470000, - "canton": null, - "numero_insee": "49337" - } - }, - { - "pk": 1811, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULAINES-SUR-AUBANCE", - "center": "POINT (384272.8590683804359287 2266039.1160896355286241)", - "surface": 12890000, - "canton": null, - "numero_insee": "49338" - } - }, - { - "pk": 1767, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULAIRE-ET-BOURG", - "center": "POINT (383369.8579148798598908 2290651.3343274807557464)", - "surface": 18330000, - "canton": null, - "numero_insee": "49339" - } - }, - { - "pk": 1726, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUZAY-CHAMPIGNY", - "center": "POINT (421443.1447476270841435 2249031.3345421799458563)", - "surface": 9150000, - "canton": null, - "numero_insee": "49341" - } - }, - { - "pk": 1580, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TANCOIGNE", - "center": "POINT (391455.1572393880924210 2244580.6670402367599308)", - "surface": 4260000, - "canton": null, - "numero_insee": "49342" - } - }, - { - "pk": 2366, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA TESSOUALLE", - "center": "POINT (358664.1124791441252455 2227997.5798399425111711)", - "surface": 21190000, - "canton": null, - "numero_insee": "49343" - } - }, - { - "pk": 1794, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THORIGNE-D'ANJOU", - "center": "POINT (374510.0560722296359017 2297083.6109585948288441)", - "surface": 16840000, - "canton": null, - "numero_insee": "49344" - } - }, - { - "pk": 2513, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THOUARCE", - "center": "POINT (383963.9381529379170388 2254927.5563154434785247)", - "surface": 19080000, - "canton": null, - "numero_insee": "49345" - } - }, - { - "pk": 2907, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE THOUREIL", - "center": "POINT (402883.3252007584087551 2266592.6629662918858230)", - "surface": 10960000, - "canton": null, - "numero_insee": "49346" - } - }, - { - "pk": 2403, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TIERCE", - "center": "POINT (391037.5233704017009586 2295318.0405621328391135)", - "surface": 34090000, - "canton": null, - "numero_insee": "49347" - } - }, - { - "pk": 1716, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TIGNE", - "center": "POINT (389724.2173481422942132 2248169.3826659778133035)", - "surface": 16930000, - "canton": null, - "numero_insee": "49348" - } - }, - { - "pk": 2234, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TILLIERES", - "center": "POINT (334109.2622311438317411 2244410.1039507905952632)", - "surface": 24430000, - "canton": null, - "numero_insee": "49349" - } - }, - { - "pk": 2306, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TORFOU", - "center": "POINT (339706.0809707574080676 2233146.5580212259665132)", - "surface": 32390000, - "canton": null, - "numero_insee": "49350" - } - }, - { - "pk": 1753, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA TOURLANDRY", - "center": "POINT (369654.2698934915824793 2242499.8124192641116679)", - "surface": 19340000, - "canton": null, - "numero_insee": "49351" - } - }, - { - "pk": 2622, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TOUTLEMONDE", - "center": "POINT (364927.0537215595832095 2233153.2612898098304868)", - "surface": 12880000, - "canton": null, - "numero_insee": "49352" - } - }, - { - "pk": 1766, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TRELAZE", - "center": "POINT (388092.5739674140932038 2276178.6643598712980747)", - "surface": 12270000, - "canton": null, - "numero_insee": "49353" - } - }, - { - "pk": 2389, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE TREMBLAY", - "center": "POINT (346146.2913879953557625 2302154.9972801487892866)", - "surface": 23440000, - "canton": null, - "numero_insee": "49354" - } - }, - { - "pk": 2256, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TREMENTINES", - "center": "POINT (361964.0325486060464755 2240535.0842367084696889)", - "surface": 34860000, - "canton": null, - "numero_insee": "49355" - } - }, - { - "pk": 2817, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TREMONT", - "center": "POINT (388463.5935940252384171 2243254.9706014543771744)", - "surface": 8110000, - "canton": null, - "numero_insee": "49356" - } - }, - { - "pk": 1690, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TURQUANT", - "center": "POINT (424652.1633020791923627 2248257.1731693856418133)", - "surface": 7920000, - "canton": null, - "numero_insee": "49358" - } - }, - { - "pk": 2720, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES ULMES", - "center": "POINT (409224.0606501567526720 2250131.5050629712641239)", - "surface": 8190000, - "canton": null, - "numero_insee": "49359" - } - }, - { - "pk": 1509, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA VARENNE", - "center": "POINT (324542.4908550536492839 2263847.7796919746324420)", - "surface": 14170000, - "canton": null, - "numero_insee": "49360" - } - }, - { - "pk": 1683, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VARENNES-SUR-LOIRE", - "center": "POINT (426220.3072433066554368 2252273.4016548008657992)", - "surface": 23450000, - "canton": null, - "numero_insee": "49361" - } - }, - { - "pk": 2516, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VARRAINS", - "center": "POINT (418029.8500254537211731 2250304.2276192218996584)", - "surface": 3450000, - "canton": null, - "numero_insee": "49362" - } - }, - { - "pk": 2311, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAUCHRETIEN", - "center": "POINT (386794.4717788046109490 2263657.9196570008061826)", - "surface": 20110000, - "canton": null, - "numero_insee": "49363" - } - }, - { - "pk": 1678, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAUDELNAY", - "center": "POINT (406597.1059406159911305 2241002.3519897274672985)", - "surface": 25620000, - "canton": null, - "numero_insee": "49364" - } - }, - { - "pk": 2517, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES VERCHERS-SUR-LAYON", - "center": "POINT (399884.5988404471427202 2241847.7758138934150338)", - "surface": 30860000, - "canton": null, - "numero_insee": "49365" - } - }, - { - "pk": 1830, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERGONNES", - "center": "POINT (343793.8154312776168808 2308340.5483885048888624)", - "surface": 10580000, - "canton": null, - "numero_insee": "49366" - } - }, - { - "pk": 2313, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERN-D'ANJOU", - "center": "POINT (360336.8310487420530990 2292463.6825841548852623)", - "surface": 37330000, - "canton": null, - "numero_insee": "49367" - } - }, - { - "pk": 1562, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERNANTES", - "center": "POINT (425785.3703160753939301 2268583.0398454815149307)", - "surface": 41700000, - "canton": null, - "numero_insee": "49368" - } - }, - { - "pk": 1981, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERNOIL-LE-FOURRIER", - "center": "POINT (430989.2025472915265709 2268626.0244017820805311)", - "surface": 33200000, - "canton": null, - "numero_insee": "49369" - } - }, - { - "pk": 2958, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERRIE", - "center": "POINT (409082.7264590843697079 2255134.4298324720002711)", - "surface": 17100000, - "canton": null, - "numero_insee": "49370" - } - }, - { - "pk": 2765, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VEZINS", - "center": "POINT (367977.6403107990045100 2239483.5553824328817427)", - "surface": 18390000, - "canton": null, - "numero_insee": "49371" - } - }, - { - "pk": 2274, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE VIEIL-BAUGE", - "center": "POINT (413155.6422040371689945 2283090.4830610058270395)", - "surface": 28650000, - "canton": null, - "numero_insee": "49372" - } - }, - { - "pk": 2294, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIHIERS", - "center": "POINT (380371.4438032637117431 2241486.9929939880967140)", - "surface": 60030000, - "canton": null, - "numero_insee": "49373" - } - }, - { - "pk": 1715, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLEBERNIER", - "center": "POINT (421601.9875424854690209 2254036.7390683870762587)", - "surface": 10090000, - "canton": null, - "numero_insee": "49374" - } - }, - { - "pk": 2582, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLEDIEU-LA-BLOUERE", - "center": "POINT (342905.2798167392611504 2245783.2274593440815806)", - "surface": 14370000, - "canton": null, - "numero_insee": "49375" - } - }, - { - "pk": 1521, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLEMOISAN", - "center": "POINT (356840.1443101066979580 2279524.7574775912798941)", - "surface": 20850000, - "canton": null, - "numero_insee": "49376" - } - }, - { - "pk": 2359, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLEVEQUE", - "center": "POINT (390506.2753463254775852 2286907.0448617553338408)", - "surface": 28670000, - "canton": null, - "numero_insee": "49377" - } - }, - { - "pk": 2112, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIVY", - "center": "POINT (418343.4321549073210917 2260815.3791420022025704)", - "surface": 23490000, - "canton": null, - "numero_insee": "49378" - } - }, - { - "pk": 2560, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAULANDRY", - "center": "POINT (422486.4644027380272746 2292374.7493753428570926)", - "surface": 27880000, - "canton": null, - "numero_insee": "49380" - } - }, - { - "pk": 2590, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "YZERNAY", - "center": "POINT (369452.7020243817241862 2230488.1794266137294471)", - "surface": 41290000, - "canton": null, - "numero_insee": "49381" - } - }, - { - "pk": 2002, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AHUILLE", - "center": "POINT (360639.8802776648662984 2340903.4008333724923432)", - "surface": 30550000, - "canton": null, - "numero_insee": "53001" - } - }, - { - "pk": 2149, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ALEXAIN", - "center": "POINT (369858.9349342791247182 2363795.9717333475127816)", - "surface": 16420000, - "canton": null, - "numero_insee": "53002" - } - }, - { - "pk": 2390, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AMBRIERES-LES-VALLEES", - "center": "POINT (380796.8638976769289002 2384500.7405819226987660)", - "surface": 38380000, - "canton": null, - "numero_insee": "53003" - } - }, - { - "pk": 1680, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AMPOIGNE", - "center": "POINT (363342.8129785036435351 2316406.9670503977686167)", - "surface": 21270000, - "canton": null, - "numero_insee": "53004" - } - }, - { - "pk": 2628, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANDOUILLE", - "center": "POINT (367207.2530016413656995 2357669.7196511258371174)", - "surface": 36990000, - "canton": null, - "numero_insee": "53005" - } - }, - { - "pk": 1528, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARGENTON-NOTRE-DAME", - "center": "POINT (379981.6080933510675095 2313241.1066955002024770)", - "surface": 6830000, - "canton": null, - "numero_insee": "53006" - } - }, - { - "pk": 2319, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARGENTRE", - "center": "POINT (378798.0160312021034770 2347657.4513465911149979)", - "surface": 37090000, - "canton": null, - "numero_insee": "53007" - } - }, - { - "pk": 2575, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARON", - "center": "POINT (385811.1303428547689691 2371032.2394653381779790)", - "surface": 32800000, - "canton": null, - "numero_insee": "53008" - } - }, - { - "pk": 2492, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARQUENAY", - "center": "POINT (381696.9924806730123237 2335872.4436567360535264)", - "surface": 25360000, - "canton": null, - "numero_insee": "53009" - } - }, - { - "pk": 1621, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ASSE-LE-BERENGER", - "center": "POINT (402462.9361861421493813 2354056.7749318196438253)", - "surface": 11930000, - "canton": null, - "numero_insee": "53010" - } - }, - { - "pk": 1518, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ASTILLE", - "center": "POINT (362298.4580641327193007 2333911.7402281598187983)", - "surface": 20910000, - "canton": null, - "numero_insee": "53011" - } - }, - { - "pk": 2420, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ATHEE", - "center": "POINT (355163.2598616227041930 2325346.7499315105378628)", - "surface": 17360000, - "canton": null, - "numero_insee": "53012" - } - }, - { - "pk": 1523, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVERTON", - "center": "POINT (411189.8857873937813565 2375844.5365151073783636)", - "surface": 40540000, - "canton": null, - "numero_insee": "53013" - } - }, - { - "pk": 2341, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AZE", - "center": "POINT (375834.3143238860648125 2318611.1727293948642910)", - "surface": 29470000, - "canton": null, - "numero_insee": "53014" - } - }, - { - "pk": 2881, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BACONNIERE", - "center": "POINT (359200.2545999654103070 2357804.1566859632730484)", - "surface": 27730000, - "canton": null, - "numero_insee": "53015" - } - }, - { - "pk": 2249, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BAIS", - "center": "POINT (399871.4319088645279408 2364943.4370680996216834)", - "surface": 26250000, - "canton": null, - "numero_insee": "53016" - } - }, - { - "pk": 1663, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BALLEE", - "center": "POINT (394355.0576939319726080 2329972.0456557292491198)", - "surface": 14250000, - "canton": null, - "numero_insee": "53017" - } - }, - { - "pk": 2086, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BALLOTS", - "center": "POINT (346133.2204925304395147 2328174.9321518442593515)", - "surface": 36090000, - "canton": null, - "numero_insee": "53018" - } - }, - { - "pk": 2947, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BANNES", - "center": "POINT (399316.4764319524401799 2335116.7524227187968791)", - "surface": 8360000, - "canton": null, - "numero_insee": "53019" - } - }, - { - "pk": 1806, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BAZOGE-MONTPINCON", - "center": "POINT (383137.3263153579318896 2367607.7801700672134757)", - "surface": 8490000, - "canton": null, - "numero_insee": "53021" - } - }, - { - "pk": 2332, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BAZOUGE-DE-CHEMERE", - "center": "POINT (387984.0252815278945491 2338025.7308526188135147)", - "surface": 25130000, - "canton": null, - "numero_insee": "53022" - } - }, - { - "pk": 2617, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BAZOUGE-DES-ALLEUX", - "center": "POINT (381513.5300443889573216 2358187.5460437820293009)", - "surface": 18140000, - "canton": null, - "numero_insee": "53023" - } - }, - { - "pk": 2877, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BAZOUGERS", - "center": "POINT (381459.8326641553430818 2340373.8772963555529714)", - "surface": 31950000, - "canton": null, - "numero_insee": "53025" - } - }, - { - "pk": 1950, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAULIEU-SUR-OUDON", - "center": "POINT (351859.3015277753584087 2337729.0545697114430368)", - "surface": 20230000, - "canton": null, - "numero_insee": "53026" - } - }, - { - "pk": 2029, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUMONT-PIED-DE-BOEUF", - "center": "POINT (392379.2093650443130173 2326853.4283076752908528)", - "surface": 13610000, - "canton": null, - "numero_insee": "53027" - } - }, - { - "pk": 2973, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BELGEARD", - "center": "POINT (384857.3761908379383385 2365320.2458635601215065)", - "surface": 13100000, - "canton": null, - "numero_insee": "53028" - } - }, - { - "pk": 1853, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BIERNE", - "center": "POINT (385063.7964442767552100 2315884.9013018920086324)", - "surface": 24330000, - "canton": null, - "numero_insee": "53029" - } - }, - { - "pk": 1727, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BIGNON-DU-MAINE", - "center": "POINT (378725.3676648779655807 2332145.2205733242444694)", - "surface": 14540000, - "canton": null, - "numero_insee": "53030" - } - }, - { - "pk": 2434, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BIGOTTIERE", - "center": "POINT (367265.4222836154513061 2362773.9449052694253623)", - "surface": 18580000, - "canton": null, - "numero_insee": "53031" - } - }, - { - "pk": 2847, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BLANDOUET", - "center": "POINT (402149.2202688880497590 2343546.3890965683385730)", - "surface": 11240000, - "canton": null, - "numero_insee": "53032" - } - }, - { - "pk": 1785, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BOISSIERE", - "center": "POINT (351559.1407360326847993 2313307.9868842707946897)", - "surface": 6280000, - "canton": null, - "numero_insee": "53033" - } - }, - { - "pk": 2003, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BONCHAMP-LES-LAVAL", - "center": "POINT (373814.3614844174589962 2345214.7100209211930633)", - "surface": 27500000, - "canton": null, - "numero_insee": "53034" - } - }, - { - "pk": 2044, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUCHAMPS-LES-CRAON", - "center": "POINT (351227.7524106483324431 2317108.1984285577200353)", - "surface": 18190000, - "canton": null, - "numero_insee": "53035" - } - }, - { - "pk": 2046, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUERE", - "center": "POINT (388919.5993674204801209 2321620.9929234646260738)", - "surface": 43070000, - "canton": null, - "numero_insee": "53036" - } - }, - { - "pk": 1831, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUESSAY", - "center": "POINT (395716.0983385776635259 2322677.6964324275031686)", - "surface": 9360000, - "canton": null, - "numero_insee": "53037" - } - }, - { - "pk": 1940, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOULAY-LES-IFS", - "center": "POINT (416729.1661488913232461 2383695.8162823198363185)", - "surface": 8950000, - "canton": null, - "numero_insee": "53038" - } - }, - { - "pk": 1546, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BOURGNEUF-LA-FORET", - "center": "POINT (353403.7540497656445950 2356855.9548043152317405)", - "surface": 28910000, - "canton": null, - "numero_insee": "53039" - } - }, - { - "pk": 1553, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOURGON", - "center": "POINT (348402.0405952304136008 2356614.8083671354688704)", - "surface": 21390000, - "canton": null, - "numero_insee": "53040" - } - }, - { - "pk": 1909, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRAINS-SUR-LES-MARCHES", - "center": "POINT (337341.8638260748703033 2326301.5531261963769794)", - "surface": 7780000, - "canton": null, - "numero_insee": "53041" - } - }, - { - "pk": 2106, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRECE", - "center": "POINT (369815.2074817895190790 2381308.3007098445668817)", - "surface": 35280000, - "canton": null, - "numero_insee": "53042" - } - }, - { - "pk": 1837, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BREE", - "center": "POINT (387547.1726546465652063 2354634.5088021089322865)", - "surface": 16580000, - "canton": null, - "numero_insee": "53043" - } - }, - { - "pk": 3001, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BRULATTE", - "center": "POINT (353371.7846573435235769 2348549.5411108415573835)", - "surface": 15550000, - "canton": null, - "numero_insee": "53045" - } - }, - { - "pk": 1575, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BURET", - "center": "POINT (387864.5661630897666328 2328217.3425375288352370)", - "surface": 12860000, - "canton": null, - "numero_insee": "53046" - } - }, - { - "pk": 2227, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CARELLES", - "center": "POINT (360306.5618828766746446 2381530.4759726207703352)", - "surface": 13070000, - "canton": null, - "numero_insee": "53047" - } - }, - { - "pk": 2150, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAILLAND", - "center": "POINT (361851.1545842925552279 2364030.4594690618105233)", - "surface": 35730000, - "canton": null, - "numero_insee": "53048" - } - }, - { - "pk": 1689, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHALONS-DU-MAINE", - "center": "POINT (378134.2840559901669621 2355357.7052298067137599)", - "surface": 9840000, - "canton": null, - "numero_insee": "53049" - } - }, - { - "pk": 2084, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMMES", - "center": "POINT (397233.5324662469793111 2345007.0246115708723664)", - "surface": 20750000, - "canton": null, - "numero_insee": "53050" - } - }, - { - "pk": 2634, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPEON", - "center": "POINT (388766.1839285239111632 2376760.6692213714122772)", - "surface": 20980000, - "canton": null, - "numero_insee": "53051" - } - }, - { - "pk": 2766, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPFREMONT", - "center": "POINT (419325.8949738465016708 2384317.6659872988238931)", - "surface": 13040000, - "canton": null, - "numero_insee": "53052" - } - }, - { - "pk": 1719, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPGENETEUX", - "center": "POINT (398632.7342400694033131 2369536.5878792293369770)", - "surface": 25180000, - "canton": null, - "numero_insee": "53053" - } - }, - { - "pk": 1706, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHANGE", - "center": "POINT (366369.0824841839494184 2350057.2156163910403848)", - "surface": 35700000, - "canton": null, - "numero_insee": "53054" - } - }, - { - "pk": 2277, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHANTRIGNE", - "center": "POINT (385510.6047565033659339 2383238.5642876406200230)", - "surface": 18630000, - "canton": null, - "numero_insee": "53055" - } - }, - { - "pk": 1672, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-ANTHENAISE", - "center": "POINT (376958.1483416327973828 2352345.8208910012617707)", - "surface": 20270000, - "canton": null, - "numero_insee": "53056" - } - }, - { - "pk": 1925, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-AU-RIBOUL", - "center": "POINT (394508.6181520600803196 2372104.5228927009738982)", - "surface": 13120000, - "canton": null, - "numero_insee": "53057" - } - }, - { - "pk": 1759, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-CRAONNAISE", - "center": "POINT (357347.5509519520564936 2327466.2656311858445406)", - "surface": 10410000, - "canton": null, - "numero_insee": "53058" - } - }, - { - "pk": 2479, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-RAINSOUIN", - "center": "POINT (386600.8246927045402117 2348021.8315310706384480)", - "surface": 18270000, - "canton": null, - "numero_insee": "53059" - } - }, - { - "pk": 2475, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHARCHIGNE", - "center": "POINT (396820.4011839713202789 2383031.4052754924632609)", - "surface": 14850000, - "canton": null, - "numero_insee": "53061" - } - }, - { - "pk": 2347, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAU-GONTIER", - "center": "POINT (369727.5794045751681551 2318861.2335897004231811)", - "surface": 27930000, - "canton": null, - "numero_insee": "53062" - } - }, - { - "pk": 2009, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATELAIN", - "center": "POINT (380359.6760149197652936 2315946.2949663694016635)", - "surface": 13980000, - "canton": null, - "numero_insee": "53063" - } - }, - { - "pk": 2197, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATILLON-SUR-COLMONT", - "center": "POINT (370465.7215898659778759 2375209.2472466412000358)", - "surface": 39990000, - "canton": null, - "numero_insee": "53064" - } - }, - { - "pk": 1545, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATRES-LA-FORET", - "center": "POINT (394984.2625323664397001 2350792.8210793696343899)", - "surface": 13830000, - "canton": null, - "numero_insee": "53065" - } - }, - { - "pk": 2080, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMAZE", - "center": "POINT (367471.1637478661723435 2313338.4711477546952665)", - "surface": 38570000, - "canton": null, - "numero_insee": "53066" - } - }, - { - "pk": 1952, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMERE-LE-ROI", - "center": "POINT (392219.0173967937007546 2334157.6405113497748971)", - "surface": 15330000, - "canton": null, - "numero_insee": "53067" - } - }, - { - "pk": 2456, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHERANCE", - "center": "POINT (355538.1570865870453417 2316242.8525126529857516)", - "surface": 8770000, - "canton": null, - "numero_insee": "53068" - } - }, - { - "pk": 1571, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEVAIGNE-DU-MAINE", - "center": "POINT (397399.3709753387956880 2385638.0307708065956831)", - "surface": 13260000, - "canton": null, - "numero_insee": "53069" - } - }, - { - "pk": 2291, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COLOMBIERS-DU-PLESSIS", - "center": "POINT (364111.4982230886234902 2381261.4801209773868322)", - "surface": 21500000, - "canton": null, - "numero_insee": "53071" - } - }, - { - "pk": 2950, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COMMER", - "center": "POINT (380267.4878830260131508 2363681.3396307914517820)", - "surface": 23140000, - "canton": null, - "numero_insee": "53072" - } - }, - { - "pk": 2484, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONGRIER", - "center": "POINT (340719.5602457693312317 2317122.1661430457606912)", - "surface": 24510000, - "canton": null, - "numero_insee": "53073" - } - }, - { - "pk": 2836, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONTEST", - "center": "POINT (375240.3247687629773282 2366542.1462247399613261)", - "surface": 23310000, - "canton": null, - "numero_insee": "53074" - } - }, - { - "pk": 1790, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COSMES", - "center": "POINT (360335.6725787968607619 2329192.0729966186918318)", - "surface": 13850000, - "canton": null, - "numero_insee": "53075" - } - }, - { - "pk": 1534, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COSSE-EN-CHAMPAGNE", - "center": "POINT (401336.8071235425304621 2332831.6571306004188955)", - "surface": 21210000, - "canton": null, - "numero_insee": "53076" - } - }, - { - "pk": 1966, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COSSE-LE-VIVIEN", - "center": "POINT (355605.3355355302337557 2332455.7702969559468329)", - "surface": 44950000, - "canton": null, - "numero_insee": "53077" - } - }, - { - "pk": 2137, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COUDRAY", - "center": "POINT (377170.5900285710813478 2314318.8480124347843230)", - "surface": 10920000, - "canton": null, - "numero_insee": "53078" - } - }, - { - "pk": 2300, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COUESMES-VAUCE", - "center": "POINT (374567.3655816146638244 2387551.7658927780576050)", - "surface": 19090000, - "canton": null, - "numero_insee": "53079" - } - }, - { - "pk": 1671, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COUPTRAIN", - "center": "POINT (405666.8075956896063872 2390309.3965343092568219)", - "surface": 670000, - "canton": null, - "numero_insee": "53080" - } - }, - { - "pk": 2181, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURBEVEILLE", - "center": "POINT (359272.5842527607455850 2336789.0998833714984357)", - "surface": 18630000, - "canton": null, - "numero_insee": "53082" - } - }, - { - "pk": 2105, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURCITE", - "center": "POINT (407832.1963852516491897 2370412.9524402567185462)", - "surface": 30650000, - "canton": null, - "numero_insee": "53083" - } - }, - { - "pk": 2345, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CRAON", - "center": "POINT (354495.5997102846158668 2321338.2175383577123284)", - "surface": 24300000, - "canton": null, - "numero_insee": "53084" - } - }, - { - "pk": 2191, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CRENNES-SUR-FRAUBEE", - "center": "POINT (407160.0596150025958195 2379113.6980956709012389)", - "surface": 12740000, - "canton": null, - "numero_insee": "53085" - } - }, - { - "pk": 2209, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CROIXILLE", - "center": "POINT (348868.7528764521703124 2360721.6531271971762180)", - "surface": 20150000, - "canton": null, - "numero_insee": "53086" - } - }, - { - "pk": 2262, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CROPTE", - "center": "POINT (388733.9023772413493134 2332027.3752195946872234)", - "surface": 14180000, - "canton": null, - "numero_insee": "53087" - } - }, - { - "pk": 1704, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CUILLE", - "center": "POINT (342272.3881978514255024 2335248.6832965072244406)", - "surface": 21760000, - "canton": null, - "numero_insee": "53088" - } - }, - { - "pk": 2187, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DAON", - "center": "POINT (377801.4455151748843491 2310621.1763583738356829)", - "surface": 18280000, - "canton": null, - "numero_insee": "53089" - } - }, - { - "pk": 2839, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DENAZE", - "center": "POINT (359168.5036842635599896 2325079.3760167392902076)", - "surface": 9210000, - "canton": null, - "numero_insee": "53090" - } - }, - { - "pk": 2258, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DESERTINES", - "center": "POINT (362430.8160140877589583 2390954.6193260801956058)", - "surface": 26010000, - "canton": null, - "numero_insee": "53091" - } - }, - { - "pk": 1786, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DEUX-EVAILLES", - "center": "POINT (387415.0036778048379347 2358536.2967029074206948)", - "surface": 11980000, - "canton": null, - "numero_insee": "53092" - } - }, - { - "pk": 2021, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA DOREE", - "center": "POINT (355447.6441097607603297 2388295.4915343821048737)", - "surface": 18010000, - "canton": null, - "numero_insee": "53093" - } - }, - { - "pk": 2564, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ENTRAMMES", - "center": "POINT (372179.7875872108852491 2337095.2095032492652535)", - "surface": 26800000, - "canton": null, - "numero_insee": "53094" - } - }, - { - "pk": 1603, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "EPINEUX-LE-SEGUIN", - "center": "POINT (399155.8975565397413447 2330311.8024286385625601)", - "surface": 9670000, - "canton": null, - "numero_insee": "53095" - } - }, - { - "pk": 2625, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ERNEE", - "center": "POINT (357180.7998939667013474 2372198.1232170541770756)", - "surface": 36450000, - "canton": null, - "numero_insee": "53096" - } - }, - { - "pk": 2027, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "EVRON", - "center": "POINT (397161.0274687056662515 2353812.9628376476466656)", - "surface": 35880000, - "canton": null, - "numero_insee": "53097" - } - }, - { - "pk": 2004, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FONTAINE-COUVERTE", - "center": "POINT (340217.6550326510332525 2329527.5368710779584944)", - "surface": 21700000, - "canton": null, - "numero_insee": "53098" - } - }, - { - "pk": 2781, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FORCE", - "center": "POINT (373148.4123028919566423 2341006.0968254143372178)", - "surface": 5010000, - "canton": null, - "numero_insee": "53099" - } - }, - { - "pk": 2451, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FOUGEROLLES-DU-PLESSIS", - "center": "POINT (357317.6874233269481920 2392113.5294920383021235)", - "surface": 33800000, - "canton": null, - "numero_insee": "53100" - } - }, - { - "pk": 2577, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FROMENTIERES", - "center": "POINT (375194.4241753363749012 2323409.5887297447770834)", - "surface": 22250000, - "canton": null, - "numero_insee": "53101" - } - }, - { - "pk": 3002, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GASTINES", - "center": "POINT (342396.2274891870329157 2332347.5042588040232658)", - "surface": 8950000, - "canton": null, - "numero_insee": "53102" - } - }, - { - "pk": 2826, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GENEST-SAINT-ISLE", - "center": "POINT (359265.1067581102252007 2349898.8420394333079457)", - "surface": 18770000, - "canton": null, - "numero_insee": "53103" - } - }, - { - "pk": 2874, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GENNES-SUR-GLAIZE", - "center": "POINT (381226.5734608715865761 2320056.5699312333017588)", - "surface": 26290000, - "canton": null, - "numero_insee": "53104" - } - }, - { - "pk": 2987, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GESNES", - "center": "POINT (381946.7051269586663693 2354188.1566658089868724)", - "surface": 11200000, - "canton": null, - "numero_insee": "53105" - } - }, - { - "pk": 2119, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GESVRES", - "center": "POINT (414673.1927931702230126 2378174.9145619892515242)", - "surface": 21660000, - "canton": null, - "numero_insee": "53106" - } - }, - { - "pk": 2110, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GORRON", - "center": "POINT (367684.2683584793703631 2384893.3855365780182183)", - "surface": 14850000, - "canton": null, - "numero_insee": "53107" - } - }, - { - "pk": 2823, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GRAVELLE", - "center": "POINT (349575.7726200583856553 2347717.8266667430289090)", - "surface": 6200000, - "canton": null, - "numero_insee": "53108" - } - }, - { - "pk": 2432, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GRAZAY", - "center": "POINT (391232.7978778389515355 2368875.2406314569525421)", - "surface": 16820000, - "canton": null, - "numero_insee": "53109" - } - }, - { - "pk": 2246, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GREZ-EN-BOUERE", - "center": "POINT (384906.1117146270116791 2322888.9699755059555173)", - "surface": 27600000, - "canton": null, - "numero_insee": "53110" - } - }, - { - "pk": 2909, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA HAIE-TRAVERSAINE", - "center": "POINT (381355.5889062953647226 2377400.2348020519129932)", - "surface": 11760000, - "canton": null, - "numero_insee": "53111" - } - }, - { - "pk": 2849, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE HAM", - "center": "POINT (400661.5960327386274002 2378359.6594971586018801)", - "surface": 24990000, - "canton": null, - "numero_insee": "53112" - } - }, - { - "pk": 2802, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HAMBERS", - "center": "POINT (394864.8244953902903944 2365302.5081079178489745)", - "surface": 26180000, - "canton": null, - "numero_insee": "53113" - } - }, - { - "pk": 2933, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HARDANGES", - "center": "POINT (396687.8208915384602733 2374824.4153433120809495)", - "surface": 18490000, - "canton": null, - "numero_insee": "53114" - } - }, - { - "pk": 1550, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HERCE", - "center": "POINT (363278.1328915891353972 2385257.5082875993102789)", - "surface": 10260000, - "canton": null, - "numero_insee": "53115" - } - }, - { - "pk": 2980, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE HORPS", - "center": "POINT (392639.0877600974054076 2380395.1252570273354650)", - "surface": 23180000, - "canton": null, - "numero_insee": "53116" - } - }, - { - "pk": 2904, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "HOUSSAY", - "center": "POINT (369652.7905404811026528 2327967.5693822661414742)", - "surface": 14090000, - "canton": null, - "numero_insee": "53117" - } - }, - { - "pk": 1902, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE HOUSSEAU-BRETIGNOLLES", - "center": "POINT (387460.0514232946443371 2389559.0926801902242005)", - "surface": 9360000, - "canton": null, - "numero_insee": "53118" - } - }, - { - "pk": 1913, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'HUISSERIE", - "center": "POINT (368455.0654078230727464 2339766.6491394233889878)", - "surface": 15130000, - "canton": null, - "numero_insee": "53119" - } - }, - { - "pk": 2478, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "IZE", - "center": "POINT (404001.3529748514993116 2361675.0410120859742165)", - "surface": 28420000, - "canton": null, - "numero_insee": "53120" - } - }, - { - "pk": 2922, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JAVRON-LES-CHAPELLES", - "center": "POINT (402520.7985590591561049 2383478.6322548035532236)", - "surface": 38530000, - "canton": null, - "numero_insee": "53121" - } - }, - { - "pk": 2143, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUBLAINS", - "center": "POINT (389367.7670280114980415 2364456.6873290343210101)", - "surface": 36490000, - "canton": null, - "numero_insee": "53122" - } - }, - { - "pk": 2392, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUVIGNE", - "center": "POINT (350535.4398773207212798 2364938.3926925109699368)", - "surface": 62570000, - "canton": null, - "numero_insee": "53123" - } - }, - { - "pk": 1596, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAIGNE", - "center": "POINT (362605.3621646013343707 2320904.3686571749858558)", - "surface": 21540000, - "canton": null, - "numero_insee": "53124" - } - }, - { - "pk": 2567, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LANDIVY", - "center": "POINT (350414.0726761862752028 2391956.8622700991109014)", - "surface": 29070000, - "canton": null, - "numero_insee": "53125" - } - }, - { - "pk": 1657, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LARCHAMP", - "center": "POINT (352434.2297198021551594 2377463.0394733049906790)", - "surface": 41260000, - "canton": null, - "numero_insee": "53126" - } - }, - { - "pk": 2198, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LASSAY-LES-CHATEAUX", - "center": "POINT (390188.9549411297775805 2386279.1894917213357985)", - "surface": 58330000, - "canton": null, - "numero_insee": "53127" - } - }, - { - "pk": 2728, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAUBRIERES", - "center": "POINT (345491.8078918154351413 2333173.4699903954751790)", - "surface": 8460000, - "canton": null, - "numero_insee": "53128" - } - }, - { - "pk": 2135, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAUNAY-VILLIERS", - "center": "POINT (350729.8313478837953880 2353431.5206658905372024)", - "surface": 9440000, - "canton": null, - "numero_insee": "53129" - } - }, - { - "pk": 1819, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAVAL", - "center": "POINT (368715.0067682709777728 2344672.4536855332553387)", - "surface": 34310000, - "canton": null, - "numero_insee": "53130" - } - }, - { - "pk": 1929, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LESBOIS", - "center": "POINT (368457.6767323805252090 2388202.0910189035348594)", - "surface": 6010000, - "canton": null, - "numero_insee": "53131" - } - }, - { - "pk": 2285, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LEVARE", - "center": "POINT (359878.3927840912947431 2384929.4008425367064774)", - "surface": 11750000, - "canton": null, - "numero_insee": "53132" - } - }, - { - "pk": 2292, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIGNIERES-ORGERES", - "center": "POINT (411630.2390642530517653 2395262.0135688725858927)", - "surface": 41180000, - "canton": null, - "numero_insee": "53133" - } - }, - { - "pk": 2965, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIVET", - "center": "POINT (391492.6091765584424138 2349463.1181733943521976)", - "surface": 11260000, - "canton": null, - "numero_insee": "53134" - } - }, - { - "pk": 1517, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIVRE-LA-TOUCHE", - "center": "POINT (351052.2049528028583154 2326313.8025348316878080)", - "surface": 30040000, - "canton": null, - "numero_insee": "53135" - } - }, - { - "pk": 2014, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOIGNE-SUR-MAYENNE", - "center": "POINT (369991.6261876885546371 2323266.7707610111683607)", - "surface": 20400000, - "canton": null, - "numero_insee": "53136" - } - }, - { - "pk": 2570, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOIRON", - "center": "POINT (357300.6903337935800664 2345379.3752454826608300)", - "surface": 22800000, - "canton": null, - "numero_insee": "53137" - } - }, - { - "pk": 2211, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LONGUEFUYE", - "center": "POINT (380991.8783810120075941 2324257.8509509703144431)", - "surface": 14560000, - "canton": null, - "numero_insee": "53138" - } - }, - { - "pk": 2028, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUPFOUGERES", - "center": "POINT (400599.4391549269785173 2373755.8286424595862627)", - "surface": 18570000, - "canton": null, - "numero_insee": "53139" - } - }, - { - "pk": 2466, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUVERNE", - "center": "POINT (373060.4545472378376871 2351713.3523843823932111)", - "surface": 20760000, - "canton": null, - "numero_insee": "53140" - } - }, - { - "pk": 2016, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUVIGNE", - "center": "POINT (378530.7115190440090373 2343652.2701899716630578)", - "surface": 12670000, - "canton": null, - "numero_insee": "53141" - } - }, - { - "pk": 2022, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MADRE", - "center": "POINT (399371.8246309998212382 2389156.7649625129997730)", - "surface": 17630000, - "canton": null, - "numero_insee": "53142" - } - }, - { - "pk": 1953, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAISONCELLES-DU-MAINE", - "center": "POINT (376208.0206818399019539 2334025.9677311833947897)", - "surface": 15840000, - "canton": null, - "numero_insee": "53143" - } - }, - { - "pk": 2205, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARCILLE-LA-VILLE", - "center": "POINT (390997.2616798737435602 2373176.4231442282907665)", - "surface": 27210000, - "canton": null, - "numero_insee": "53144" - } - }, - { - "pk": 2261, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARIGNE-PEUTON", - "center": "POINT (365396.6378348188009113 2322228.2756266617216170)", - "surface": 16540000, - "canton": null, - "numero_insee": "53145" - } - }, - { - "pk": 2263, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARTIGNE-SUR-MAYENNE", - "center": "POINT (377194.2092013825895265 2360153.5149817536585033)", - "surface": 31730000, - "canton": null, - "numero_insee": "53146" - } - }, - { - "pk": 2630, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAYENNE", - "center": "POINT (381002.2128683702903800 2371693.2079226132482290)", - "surface": 20200000, - "canton": null, - "numero_insee": "53147" - } - }, - { - "pk": 1965, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEE", - "center": "POINT (360142.2087540278444067 2316180.5462628435343504)", - "surface": 8690000, - "canton": null, - "numero_insee": "53148" - } - }, - { - "pk": 2398, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MENIL", - "center": "POINT (373290.8687290059751831 2311484.8052106415852904)", - "surface": 28410000, - "canton": null, - "numero_insee": "53150" - } - }, - { - "pk": 2244, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MERAL", - "center": "POINT (349593.8143743643886410 2333307.1621860382147133)", - "surface": 29530000, - "canton": null, - "numero_insee": "53151" - } - }, - { - "pk": 2416, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MESLAY-DU-MAINE", - "center": "POINT (383734.5727236468810588 2331485.8745765117928386)", - "surface": 24490000, - "canton": null, - "numero_insee": "53152" - } - }, - { - "pk": 2182, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEZANGERS", - "center": "POINT (392812.0215854973648675 2359381.2904392974451184)", - "surface": 29480000, - "canton": null, - "numero_insee": "53153" - } - }, - { - "pk": 2612, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTAUDIN", - "center": "POINT (354307.5785783757455647 2380880.8462432539090514)", - "surface": 21900000, - "canton": null, - "numero_insee": "53154" - } - }, - { - "pk": 2238, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTENAY", - "center": "POINT (360306.6474127022083849 2369321.6558874207548797)", - "surface": 37710000, - "canton": null, - "numero_insee": "53155" - } - }, - { - "pk": 2727, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTFLOURS", - "center": "POINT (372118.7516202267142944 2356709.3143432936631143)", - "surface": 7990000, - "canton": null, - "numero_insee": "53156" - } - }, - { - "pk": 2572, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTIGNE-LE-BRILLANT", - "center": "POINT (364754.1791991125210188 2339536.1150545855052769)", - "surface": 17800000, - "canton": null, - "numero_insee": "53157" - } - }, - { - "pk": 2237, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTJEAN", - "center": "POINT (355448.6388904717750847 2339359.6899235867895186)", - "surface": 20130000, - "canton": null, - "numero_insee": "53158" - } - }, - { - "pk": 1630, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTOURTIER", - "center": "POINT (385093.7169890457880683 2360918.9681732174940407)", - "surface": 19200000, - "canton": null, - "numero_insee": "53159" - } - }, - { - "pk": 1602, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL-POULAY", - "center": "POINT (387237.2206149056437425 2380150.5403577056713402)", - "surface": 16190000, - "canton": null, - "numero_insee": "53160" - } - }, - { - "pk": 2600, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTSURS", - "center": "POINT (384965.1784835400758311 2352211.4967737542465329)", - "surface": 10910000, - "canton": null, - "numero_insee": "53161" - } - }, - { - "pk": 2228, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOULAY", - "center": "POINT (380340.4106729440391064 2366984.3496023174375296)", - "surface": 8730000, - "canton": null, - "numero_insee": "53162" - } - }, - { - "pk": 2961, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEAU", - "center": "POINT (390837.8591700462857261 2356062.6152357636019588)", - "surface": 12770000, - "canton": null, - "numero_insee": "53163" - } - }, - { - "pk": 1686, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUILLY-LE-VENDIN", - "center": "POINT (403156.9596136880572885 2391289.4297257922589779)", - "surface": 14700000, - "canton": null, - "numero_insee": "53164" - } - }, - { - "pk": 1825, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NIAFLES", - "center": "POINT (350290.2047719069523737 2321603.9657243252731860)", - "surface": 7990000, - "canton": null, - "numero_insee": "53165" - } - }, - { - "pk": 1637, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NUILLE-SUR-VICOIN", - "center": "POINT (367387.1783130421536043 2335754.8706563524901867)", - "surface": 24110000, - "canton": null, - "numero_insee": "53168" - } - }, - { - "pk": 1814, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "OLIVET", - "center": "POINT (356446.8001147781615146 2351877.2094179587438703)", - "surface": 9860000, - "canton": null, - "numero_insee": "53169" - } - }, - { - "pk": 2276, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "OISSEAU", - "center": "POINT (377348.8642499166890047 2377867.6650531124323606)", - "surface": 30890000, - "canton": null, - "numero_insee": "53170" - } - }, - { - "pk": 2633, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ORIGNE", - "center": "POINT (370615.6756242611445487 2332578.9659113064408302)", - "surface": 10390000, - "canton": null, - "numero_insee": "53172" - } - }, - { - "pk": 1941, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA PALLU", - "center": "POINT (405346.0045031685731374 2392808.5262236199341714)", - "surface": 6550000, - "canton": null, - "numero_insee": "53173" - } - }, - { - "pk": 2876, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARIGNE-SUR-BRAYE", - "center": "POINT (378685.8970793857006356 2373475.4740627817809582)", - "surface": 9730000, - "canton": null, - "numero_insee": "53174" - } - }, - { - "pk": 1661, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARNE-SUR-ROC", - "center": "POINT (375969.2350476088467985 2338727.5464907069690526)", - "surface": 24030000, - "canton": null, - "numero_insee": "53175" - } - }, - { - "pk": 2616, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PAS", - "center": "POINT (375591.8512781593017280 2384658.1110342754982412)", - "surface": 22060000, - "canton": null, - "numero_insee": "53176" - } - }, - { - "pk": 2700, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA PELLERINE", - "center": "POINT (349958.0164373195148073 2374340.5021796529181302)", - "surface": 8350000, - "canton": null, - "numero_insee": "53177" - } - }, - { - "pk": 1876, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PEUTON", - "center": "POINT (364467.2596476378967054 2325723.3182553341612220)", - "surface": 10640000, - "canton": null, - "numero_insee": "53178" - } - }, - { - "pk": 2394, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PLACE", - "center": "POINT (368928.7581443681265227 2367390.9637939655221999)", - "surface": 25690000, - "canton": null, - "numero_insee": "53179" - } - }, - { - "pk": 2968, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "POMMERIEUX", - "center": "POINT (357715.0740185587201267 2319263.0149016254581511)", - "surface": 23100000, - "canton": null, - "numero_insee": "53180" - } - }, - { - "pk": 2662, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PONTMAIN", - "center": "POINT (348252.8329513050848618 2387035.6621773215010762)", - "surface": 5880000, - "canton": null, - "numero_insee": "53181" - } - }, - { - "pk": 2837, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PORT-BRILLET", - "center": "POINT (354243.6752922415034845 2352059.2907617809250951)", - "surface": 8200000, - "canton": null, - "numero_insee": "53182" - } - }, - { - "pk": 1740, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PREAUX", - "center": "POINT (390650.8568616322008893 2330141.7097395574674010)", - "surface": 9840000, - "canton": null, - "numero_insee": "53184" - } - }, - { - "pk": 2153, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PRE-EN-PAIL", - "center": "POINT (412506.6480924503412098 2386062.7097603045403957)", - "surface": 44470000, - "canton": null, - "numero_insee": "53185" - } - }, - { - "pk": 2113, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "QUELAINES-SAINT-GAULT", - "center": "POINT (365632.7677275721216574 2330036.1555137620307505)", - "surface": 42630000, - "canton": null, - "numero_insee": "53186" - } - }, - { - "pk": 1868, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RAVIGNY", - "center": "POINT (422019.3826178308809176 2385340.6046921806409955)", - "surface": 6500000, - "canton": null, - "numero_insee": "53187" - } - }, - { - "pk": 2510, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RENAZE", - "center": "POINT (346943.5962033703108318 2314771.3100055935792625)", - "surface": 16810000, - "canton": null, - "numero_insee": "53188" - } - }, - { - "pk": 2278, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RENNES-EN-GRENOUILLES", - "center": "POINT (389743.4211069842567667 2391779.4373057316988707)", - "surface": 8050000, - "canton": null, - "numero_insee": "53189" - } - }, - { - "pk": 2725, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE RIBAY", - "center": "POINT (396052.8312306677689776 2379022.2158563779667020)", - "surface": 17150000, - "canton": null, - "numero_insee": "53190" - } - }, - { - "pk": 1890, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA ROE", - "center": "POINT (342841.5884276109864004 2326846.9743841867893934)", - "surface": 8730000, - "canton": null, - "numero_insee": "53191" - } - }, - { - "pk": 1549, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA ROUAUDIERE", - "center": "POINT (336382.1306508376146667 2321289.8738763760775328)", - "surface": 19340000, - "canton": null, - "numero_insee": "53192" - } - }, - { - "pk": 2180, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RUILLE-FROID-FONDS", - "center": "POINT (378566.3561760559678078 2327140.1204295065253973)", - "surface": 23760000, - "canton": null, - "numero_insee": "53193" - } - }, - { - "pk": 1775, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RUILLE-LE-GRAVELAIS", - "center": "POINT (353805.6966168204671703 2344450.0402007456868887)", - "surface": 17200000, - "canton": null, - "numero_insee": "53194" - } - }, - { - "pk": 1559, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SACE", - "center": "POINT (374211.9376201243139803 2357727.2458405122160912)", - "surface": 12500000, - "canton": null, - "numero_insee": "53195" - } - }, - { - "pk": 1563, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AIGNAN-DE-COUPTRAIN", - "center": "POINT (404786.8391503214370459 2387800.3688189093954861)", - "surface": 17290000, - "canton": null, - "numero_insee": "53196" - } - }, - { - "pk": 1505, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AIGNAN-SUR-ROE", - "center": "POINT (339775.4931016149930656 2322418.5016185082495213)", - "surface": 18160000, - "canton": null, - "numero_insee": "53197" - } - }, - { - "pk": 2918, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-DU-DESERT", - "center": "POINT (412928.1250315255019814 2371355.6133138951845467)", - "surface": 12640000, - "canton": null, - "numero_insee": "53198" - } - }, - { - "pk": 2299, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-FOSSE-LOUVAIN", - "center": "POINT (365256.4330764889600687 2388075.7423850749619305)", - "surface": 14460000, - "canton": null, - "numero_insee": "53199" - } - }, - { - "pk": 1707, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BAUDELLE", - "center": "POINT (378218.4624710216885433 2369468.7299321116879582)", - "surface": 7290000, - "canton": null, - "numero_insee": "53200" - } - }, - { - "pk": 2444, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BERTHEVIN", - "center": "POINT (362900.3884305415558629 2345925.6916671092621982)", - "surface": 32070000, - "canton": null, - "numero_insee": "53201" - } - }, - { - "pk": 1713, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BERTHEVIN-LA-TANNIERE", - "center": "POINT (356786.2304442962631583 2383703.1801138706505299)", - "surface": 17770000, - "canton": null, - "numero_insee": "53202" - } - }, - { - "pk": 2912, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BRICE", - "center": "POINT (392221.8989229892031290 2321648.1683900458738208)", - "surface": 13270000, - "canton": null, - "numero_insee": "53203" - } - }, - { - "pk": 2491, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CALAIS-DU-DESERT", - "center": "POINT (408662.9610958203556947 2391034.5827543172053993)", - "surface": 17270000, - "canton": null, - "numero_insee": "53204" - } - }, - { - "pk": 2304, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CENERE", - "center": "POINT (382378.2379276737337932 2350388.8898717826232314)", - "surface": 19000000, - "canton": null, - "numero_insee": "53205" - } - }, - { - "pk": 2519, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CHARLES-LA-FORET", - "center": "POINT (382859.4610310525167733 2328376.3275846242904663)", - "surface": 10620000, - "canton": null, - "numero_insee": "53206" - } - }, - { - "pk": 2221, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CHRISTOPHE-DU-LUAT", - "center": "POINT (390371.2822427192004398 2351955.7455247631296515)", - "surface": 19350000, - "canton": null, - "numero_insee": "53207" - } - }, - { - "pk": 1537, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CYR-EN-PAIL", - "center": "POINT (408314.6582705481559969 2384727.2268022340722382)", - "surface": 20480000, - "canton": null, - "numero_insee": "53208" - } - }, - { - "pk": 1718, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CYR-LE-GRAVELAIS", - "center": "POINT (350815.9597679967992008 2342924.4063530350103974)", - "surface": 20460000, - "canton": null, - "numero_insee": "53209" - } - }, - { - "pk": 1838, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-DENIS-D'ANJOU", - "center": "POINT (391686.5450839928817004 2313737.6974892248399556)", - "surface": 41800000, - "canton": null, - "numero_insee": "53210" - } - }, - { - "pk": 2337, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-DENIS-DE-GASTINES", - "center": "POINT (362246.3875769088044763 2376843.0069567710161209)", - "surface": 49010000, - "canton": null, - "numero_insee": "53211" - } - }, - { - "pk": 1709, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-DENIS-DU-MAINE", - "center": "POINT (386606.9383966502500698 2335112.2189805591478944)", - "surface": 14580000, - "canton": null, - "numero_insee": "53212" - } - }, - { - "pk": 2855, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ELLIER-DU-MAINE", - "center": "POINT (349881.7495111131574959 2383646.5776724191382527)", - "surface": 17900000, - "canton": null, - "numero_insee": "53213" - } - }, - { - "pk": 1799, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ERBLON", - "center": "POINT (338130.8446421611588448 2315499.7339012958109379)", - "surface": 5540000, - "canton": null, - "numero_insee": "53214" - } - }, - { - "pk": 2764, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-FORT", - "center": "POINT (371956.2466694270842709 2315577.0034643681719899)", - "surface": 10810000, - "canton": null, - "numero_insee": "53215" - } - }, - { - "pk": 2631, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-FRAIMBAULT-DE-PRIERES", - "center": "POINT (384168.1141651483485475 2376122.4200252564623952)", - "surface": 16960000, - "canton": null, - "numero_insee": "53216" - } - }, - { - "pk": 2293, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-GEMMES-LE-ROBERT", - "center": "POINT (398514.1752458956325427 2359628.3783571994863451)", - "surface": 35770000, - "canton": null, - "numero_insee": "53218" - } - }, - { - "pk": 2286, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-BUTTAVENT", - "center": "POINT (373900.8294462398625910 2371234.5626726765185595)", - "surface": 37080000, - "canton": null, - "numero_insee": "53219" - } - }, - { - "pk": 2660, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-LE-FLECHARD", - "center": "POINT (387357.2729978798888624 2341222.9767062761820853)", - "surface": 8420000, - "canton": null, - "numero_insee": "53220" - } - }, - { - "pk": 1973, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-SUR-ERVE", - "center": "POINT (404445.3151111082406715 2356374.8038104819133878)", - "surface": 20470000, - "canton": null, - "numero_insee": "53221" - } - }, - { - "pk": 2074, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-D'ANXURE", - "center": "POINT (371774.1690280886832625 2362110.4550786153413355)", - "surface": 10450000, - "canton": null, - "numero_insee": "53222" - } - }, - { - "pk": 2240, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-DE-COULAMER", - "center": "POINT (412670.8317472278140485 2366149.7112489757128060)", - "surface": 17780000, - "canton": null, - "numero_insee": "53223" - } - }, - { - "pk": 1967, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-LE-FOUILLOUX", - "center": "POINT (365639.0383011411176994 2353653.8919806857593358)", - "surface": 15650000, - "canton": null, - "numero_insee": "53224" - } - }, - { - "pk": 2048, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-LE-GUILLAUME", - "center": "POINT (364776.8998090450186282 2361152.3437823243439198)", - "surface": 13510000, - "canton": null, - "numero_insee": "53225" - } - }, - { - "pk": 2453, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-DU-MAINE", - "center": "POINT (357154.5961796136107296 2363191.3453603009693325)", - "surface": 30500000, - "canton": null, - "numero_insee": "53226" - } - }, - { - "pk": 2272, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-SUR-ERVE", - "center": "POINT (396762.8539922585478052 2341400.4580898969434202)", - "surface": 25240000, - "canton": null, - "numero_insee": "53228" - } - }, - { - "pk": 2139, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-SUR-MAYENNE", - "center": "POINT (370042.8191399760544300 2353589.9747976153157651)", - "surface": 18050000, - "canton": null, - "numero_insee": "53229" - } - }, - { - "pk": 2013, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JULIEN-DU-TERROUX", - "center": "POINT (396957.1004873936763033 2390738.0208523534238338)", - "surface": 11430000, - "canton": null, - "numero_insee": "53230" - } - }, - { - "pk": 1910, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAURENT-DES-MORTIERS", - "center": "POINT (384397.0500914753647521 2311776.2567717381753027)", - "surface": 10160000, - "canton": null, - "numero_insee": "53231" - } - }, - { - "pk": 2943, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LEGER", - "center": "POINT (392616.4113643598975614 2346670.2839859533123672)", - "surface": 17200000, - "canton": null, - "numero_insee": "53232" - } - }, - { - "pk": 1732, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LOUP-DU-DORAT", - "center": "POINT (393501.3878415836952627 2324260.6850744369439781)", - "surface": 8250000, - "canton": null, - "numero_insee": "53233" - } - }, - { - "pk": 1694, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LOUP-DU-GAST", - "center": "POINT (383632.4090024551842362 2380421.1119399131275713)", - "surface": 10030000, - "canton": null, - "numero_insee": "53234" - } - }, - { - "pk": 2639, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-MARIE-DU-BOIS", - "center": "POINT (391465.0946620437898673 2389291.8262429144233465)", - "surface": 11390000, - "canton": null, - "numero_insee": "53235" - } - }, - { - "pk": 1946, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-DU-DESERT", - "center": "POINT (413946.9356647560489364 2369162.4174792706035078)", - "surface": 11890000, - "canton": null, - "numero_insee": "53236" - } - }, - { - "pk": 1982, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-SUR-COLMONT", - "center": "POINT (374326.3547668491955847 2380344.6316752010025084)", - "surface": 16700000, - "canton": null, - "numero_insee": "53237" - } - }, - { - "pk": 2963, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-SUR-LA-FUTAIE", - "center": "POINT (352159.4568288527661934 2386567.3211473580449820)", - "surface": 22320000, - "canton": null, - "numero_insee": "53238" - } - }, - { - "pk": 2239, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DE-CONNEE", - "center": "POINT (408004.0121263426262885 2361708.0238945758901536)", - "surface": 19490000, - "canton": null, - "numero_insee": "53239" - } - }, - { - "pk": 1920, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DU-LIMET", - "center": "POINT (348016.4841018422739580 2318182.7203200296498835)", - "surface": 12310000, - "canton": null, - "numero_insee": "53240" - } - }, - { - "pk": 1855, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-DE-FEINS", - "center": "POINT (381895.2880098705063574 2311755.6829340974800289)", - "surface": 6780000, - "canton": null, - "numero_insee": "53241" - } - }, - { - "pk": 1896, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-DE-LA-ROE", - "center": "POINT (341156.7996856455574743 2324831.6489660507068038)", - "surface": 13280000, - "canton": null, - "numero_insee": "53242" - } - }, - { - "pk": 2757, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-OUEN-DES-TOITS", - "center": "POINT (359630.0760917761945166 2354205.0246310462243855)", - "surface": 21220000, - "canton": null, - "numero_insee": "53243" - } - }, - { - "pk": 2926, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-OUEN-DES-VALLONS", - "center": "POINT (384528.7014238396077417 2356611.1588487592525780)", - "surface": 7510000, - "canton": null, - "numero_insee": "53244" - } - }, - { - "pk": 2037, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-DES-LANDES", - "center": "POINT (350287.7381778458366171 2370740.5923936953768134)", - "surface": 42230000, - "canton": null, - "numero_insee": "53245" - } - }, - { - "pk": 2159, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-DES-NIDS", - "center": "POINT (418857.7669422244071029 2380411.0110077657736838)", - "surface": 37030000, - "canton": null, - "numero_insee": "53246" - } - }, - { - "pk": 1696, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-LA-COUR", - "center": "POINT (349750.4824211559025571 2350821.5649228212423623)", - "surface": 16060000, - "canton": null, - "numero_insee": "53247" - } - }, - { - "pk": 2995, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-SUR-ERVE", - "center": "POINT (394987.1651143836206757 2338283.5134210749529302)", - "surface": 9660000, - "canton": null, - "numero_insee": "53248" - } - }, - { - "pk": 2241, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-SUR-ORTHE", - "center": "POINT (412006.6706291189184412 2361741.0194098767824471)", - "surface": 31780000, - "canton": null, - "numero_insee": "53249" - } - }, - { - "pk": 1933, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-POIX", - "center": "POINT (347577.6743311840109527 2335091.9985776087269187)", - "surface": 7500000, - "canton": null, - "numero_insee": "53250" - } - }, - { - "pk": 2076, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-QUENTIN-LES-ANGES", - "center": "POINT (359362.9950030772597529 2313572.1487442962825298)", - "surface": 17800000, - "canton": null, - "numero_insee": "53251" - } - }, - { - "pk": 2473, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SAMSON", - "center": "POINT (413371.7509862782317214 2390372.9024644223973155)", - "surface": 13540000, - "canton": null, - "numero_insee": "53252" - } - }, - { - "pk": 2123, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SATURNIN-DU-LIMET", - "center": "POINT (343510.0489677845034748 2318546.1006902121007442)", - "surface": 10720000, - "canton": null, - "numero_insee": "53253" - } - }, - { - "pk": 2946, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SULPICE", - "center": "POINT (371771.5071037897723727 2325883.3735087919048965)", - "surface": 8040000, - "canton": null, - "numero_insee": "53254" - } - }, - { - "pk": 2336, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-SUZANNE", - "center": "POINT (399508.7206889993976802 2348228.1433971240185201)", - "surface": 23130000, - "canton": null, - "numero_insee": "53255" - } - }, - { - "pk": 1555, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-THOMAS-DE-COURCERIERS", - "center": "POINT (406767.7555181189090945 2366000.9789416408166289)", - "surface": 13070000, - "canton": null, - "numero_insee": "53256" - } - }, - { - "pk": 2125, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAULGES", - "center": "POINT (395220.2542390670278110 2334282.4202284049242735)", - "surface": 21930000, - "canton": null, - "numero_insee": "53257" - } - }, - { - "pk": 2202, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA SELLE-CRAONNAISE", - "center": "POINT (345885.4912897322792560 2321768.0179258133284748)", - "surface": 29370000, - "canton": null, - "numero_insee": "53258" - } - }, - { - "pk": 2751, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SENONNES", - "center": "POINT (335409.2836727042449638 2317879.2995046931318939)", - "surface": 13180000, - "canton": null, - "numero_insee": "53259" - } - }, - { - "pk": 2001, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SIMPLE", - "center": "POINT (361269.1425848207436502 2325196.6887836065143347)", - "surface": 9170000, - "canton": null, - "numero_insee": "53260" - } - }, - { - "pk": 1863, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUCE", - "center": "POINT (377552.8573417270090431 2389577.7183575374074280)", - "surface": 6640000, - "canton": null, - "numero_insee": "53261" - } - }, - { - "pk": 2395, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULGE-SUR-OUETTE", - "center": "POINT (384229.6492379732662812 2344299.5716208466328681)", - "surface": 23070000, - "canton": null, - "numero_insee": "53262" - } - }, - { - "pk": 1977, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THUBOEUF", - "center": "POINT (393742.6930169860133901 2392212.6272967332042754)", - "surface": 14170000, - "canton": null, - "numero_insee": "53263" - } - }, - { - "pk": 1641, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THORIGNE-EN-CHARNIE", - "center": "POINT (398797.1793087299447507 2337414.2075273655354977)", - "surface": 17290000, - "canton": null, - "numero_insee": "53264" - } - }, - { - "pk": 2440, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TORCE-VIVIERS-EN-CHARNIE", - "center": "POINT (405720.3301525854039937 2347378.6449831062927842)", - "surface": 48830000, - "canton": null, - "numero_insee": "53265" - } - }, - { - "pk": 1606, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TRANS", - "center": "POINT (403647.5690111490548588 2368176.8729929882101715)", - "surface": 15650000, - "canton": null, - "numero_insee": "53266" - } - }, - { - "pk": 2913, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAIGES", - "center": "POINT (390647.1704790919902734 2342751.1670833299867809)", - "surface": 36120000, - "canton": null, - "numero_insee": "53267" - } - }, - { - "pk": 1582, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAUTORTE", - "center": "POINT (365494.4757454811478965 2371265.6082715452648699)", - "surface": 24260000, - "canton": null, - "numero_insee": "53269" - } - }, - { - "pk": 2928, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIEUVY", - "center": "POINT (362156.0740088727325201 2387850.1582595715299249)", - "surface": 7340000, - "canton": null, - "numero_insee": "53270" - } - }, - { - "pk": 1983, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLAINES-LA-JUHEL", - "center": "POINT (405097.4414836905780248 2374393.3143250057473779)", - "surface": 28740000, - "canton": null, - "numero_insee": "53271" - } - }, - { - "pk": 2771, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLEPAIL", - "center": "POINT (407341.2236696142936125 2381416.8424997790716588)", - "surface": 15490000, - "canton": null, - "numero_insee": "53272" - } - }, - { - "pk": 1978, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLIERS-CHARLEMAGNE", - "center": "POINT (374344.5346926808124408 2329407.1729825614020228)", - "surface": 27590000, - "canton": null, - "numero_insee": "53273" - } - }, - { - "pk": 1743, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIMARCE", - "center": "POINT (409040.1439630088862032 2357413.4061354831792414)", - "surface": 20710000, - "canton": null, - "numero_insee": "53274" - } - }, - { - "pk": 2284, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VOUTRE", - "center": "POINT (404281.4575672016944736 2351970.2033695178106427)", - "surface": 18610000, - "canton": null, - "numero_insee": "53276" - } - }, - { - "pk": 1826, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AIGNE", - "center": "POINT (433675.5568563974229619 2343206.0369211593642831)", - "surface": 12760000, - "canton": null, - "numero_insee": "72001" - } - }, - { - "pk": 2804, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AILLIERES-BEAUVOIR", - "center": "POINT (450685.8561372105614282 2379773.3449083641171455)", - "surface": 15110000, - "canton": null, - "numero_insee": "72002" - } - }, - { - "pk": 1804, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ALLONNES", - "center": "POINT (436177.2549489061348140 2331117.6165001536719501)", - "surface": 18140000, - "canton": null, - "numero_insee": "72003" - } - }, - { - "pk": 2446, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AMNE", - "center": "POINT (422489.4300590027705766 2340511.7154360543936491)", - "surface": 16030000, - "canton": null, - "numero_insee": "72004" - } - }, - { - "pk": 2023, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANCINNES", - "center": "POINT (439711.8013738138834015 2375679.7031515343114734)", - "surface": 27350000, - "canton": null, - "numero_insee": "72005" - } - }, - { - "pk": 1803, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARCONNAY", - "center": "POINT (432873.4700410305522382 2379726.1427565962076187)", - "surface": 8000000, - "canton": null, - "numero_insee": "72006" - } - }, - { - "pk": 2932, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARDENAY-SUR-MERIZE", - "center": "POINT (457466.2088536309893243 2334396.0820182343013585)", - "surface": 11650000, - "canton": null, - "numero_insee": "72007" - } - }, - { - "pk": 2640, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARNAGE", - "center": "POINT (439608.5497525818645954 2327643.3285280149430037)", - "surface": 10860000, - "canton": null, - "numero_insee": "72008" - } - }, - { - "pk": 2761, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ARTHEZE", - "center": "POINT (416613.1177893028361723 2312842.2476273099891841)", - "surface": 8680000, - "canton": null, - "numero_insee": "72009" - } - }, - { - "pk": 2954, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ASNIERES-SUR-VEGRE", - "center": "POINT (408315.7888520999113098 2323882.3343075909651816)", - "surface": 12560000, - "canton": null, - "numero_insee": "72010" - } - }, - { - "pk": 2363, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ASSE-LE-BOISNE", - "center": "POINT (426434.5113862890284508 2371767.2689455375075340)", - "surface": 28840000, - "canton": null, - "numero_insee": "72011" - } - }, - { - "pk": 2303, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ASSE-LE-RIBOUL", - "center": "POINT (432149.7791205468820408 2358304.6183749046176672)", - "surface": 16780000, - "canton": null, - "numero_insee": "72012" - } - }, - { - "pk": 2248, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AUBIGNE-RACAN", - "center": "POINT (443337.7421893157879822 2300253.0780019564554095)", - "surface": 32230000, - "canton": null, - "numero_insee": "72013" - } - }, - { - "pk": 2290, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES AULNEAUX", - "center": "POINT (452452.2407210608944297 2383990.9700763998553157)", - "surface": 8250000, - "canton": null, - "numero_insee": "72015" - } - }, - { - "pk": 2115, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AUVERS-LE-HAMON", - "center": "POINT (399490.7197684478596784 2326111.3710811063647270)", - "surface": 48290000, - "canton": null, - "numero_insee": "72016" - } - }, - { - "pk": 1860, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AUVERS-SOUS-MONTFAUCON", - "center": "POINT (420022.4092121643479913 2336288.2020215461961925)", - "surface": 7540000, - "canton": null, - "numero_insee": "72017" - } - }, - { - "pk": 2706, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVESNES-EN-SAOSNOIS", - "center": "POINT (453111.5874549740692601 2364782.5675880005583167)", - "surface": 5730000, - "canton": null, - "numero_insee": "72018" - } - }, - { - "pk": 2583, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVESSE", - "center": "POINT (405447.8725098700961098 2331864.7722857720218599)", - "surface": 18740000, - "canton": null, - "numero_insee": "72019" - } - }, - { - "pk": 1567, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVEZE", - "center": "POINT (476361.7760734594194219 2360772.1623711134307086)", - "surface": 20980000, - "canton": null, - "numero_insee": "72020" - } - }, - { - "pk": 2601, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVOISE", - "center": "POINT (410642.9631279443856329 2320799.1523116081953049)", - "surface": 24340000, - "canton": null, - "numero_insee": "72021" - } - }, - { - "pk": 2729, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BAILLEUL", - "center": "POINT (411423.4903339408338070 2311098.1323018157854676)", - "surface": 27730000, - "canton": null, - "numero_insee": "72022" - } - }, - { - "pk": 1742, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BALLON", - "center": "POINT (442988.4215948156779632 2354591.4048385540954769)", - "surface": 13540000, - "canton": null, - "numero_insee": "72023" - } - }, - { - "pk": 1974, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BAZOGE", - "center": "POINT (436646.1644824614049867 2347033.4169891835190356)", - "surface": 22970000, - "canton": null, - "numero_insee": "72024" - } - }, - { - "pk": 2156, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BAZOUGES-SUR-LE-LOIR", - "center": "POINT (411603.6047072469955310 2301392.0881263585761189)", - "surface": 30010000, - "canton": null, - "numero_insee": "72025" - } - }, - { - "pk": 1692, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUFAY", - "center": "POINT (451523.9234700467204675 2351059.3586349505931139)", - "surface": 24030000, - "canton": null, - "numero_insee": "72026" - } - }, - { - "pk": 2312, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUMONT-SUR-DEME", - "center": "POINT (468058.6333192657912150 2300057.4732964653521776)", - "surface": 13550000, - "canton": null, - "numero_insee": "72027" - } - }, - { - "pk": 2626, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUMONT-PIED-DE-BOEUF", - "center": "POINT (453579.6218835313920863 2308243.9689897741191089)", - "surface": 24740000, - "canton": null, - "numero_insee": "72028" - } - }, - { - "pk": 2818, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUMONT-SUR-SARTHE", - "center": "POINT (434731.6678500724374317 2360727.7112659113481641)", - "surface": 6640000, - "canton": null, - "numero_insee": "72029" - } - }, - { - "pk": 1980, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEILLE", - "center": "POINT (463790.1582184764556587 2344155.7383417924866080)", - "surface": 8600000, - "canton": null, - "numero_insee": "72031" - } - }, - { - "pk": 1852, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BERFAY", - "center": "POINT (481581.0396840779576451 2334796.1661891583353281)", - "surface": 18300000, - "canton": null, - "numero_insee": "72032" - } - }, - { - "pk": 2652, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BERNAY-EN-CHAMPAGNE", - "center": "POINT (421659.1539411632693373 2344107.5545992385596037)", - "surface": 10300000, - "canton": null, - "numero_insee": "72033" - } - }, - { - "pk": 1788, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BERUS", - "center": "POINT (431790.9396023829467595 2377515.6189262587577105)", - "surface": 6870000, - "canton": null, - "numero_insee": "72034" - } - }, - { - "pk": 2051, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BESSE-SUR-BRAYE", - "center": "POINT (479042.7865357702830806 2315060.1177448527887464)", - "surface": 20590000, - "canton": null, - "numero_insee": "72035" - } - }, - { - "pk": 1798, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BETHON", - "center": "POINT (433602.0325733539648354 2376329.7160303238779306)", - "surface": 3900000, - "canton": null, - "numero_insee": "72036" - } - }, - { - "pk": 2975, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BLEVES", - "center": "POINT (451941.9802507375134155 2385187.6036039944738150)", - "surface": 2060000, - "canton": null, - "numero_insee": "72037" - } - }, - { - "pk": 2951, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOESSE-LE-SEC", - "center": "POINT (467545.4502092089969665 2349891.0976333087310195)", - "surface": 11950000, - "canton": null, - "numero_insee": "72038" - } - }, - { - "pk": 1572, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BONNETABLE", - "center": "POINT (459792.1999444137327373 2355631.1397933084517717)", - "surface": 40150000, - "canton": null, - "numero_insee": "72039" - } - }, - { - "pk": 2893, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BOSSE", - "center": "POINT (466818.4387853488442488 2353087.4388806908391416)", - "surface": 10890000, - "canton": null, - "numero_insee": "72040" - } - }, - { - "pk": 2214, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUER", - "center": "POINT (473104.7507813987904228 2343232.2092663007788360)", - "surface": 11990000, - "canton": null, - "numero_insee": "72041" - } - }, - { - "pk": 2463, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOULOIRE", - "center": "POINT (466598.9801015420816839 2331269.3329457188956439)", - "surface": 27000000, - "canton": null, - "numero_insee": "72042" - } - }, - { - "pk": 1702, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOURG-LE-ROI", - "center": "POINT (436522.1168175750644878 2374152.2570014824159443)", - "surface": 370000, - "canton": null, - "numero_insee": "72043" - } - }, - { - "pk": 1888, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUSSE", - "center": "POINT (420042.7599611650221050 2309567.9982462194748223)", - "surface": 12040000, - "canton": null, - "numero_insee": "72044" - } - }, - { - "pk": 2889, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRAINS-SUR-GEE", - "center": "POINT (423618.2642181413830258 2337118.4816212900914252)", - "surface": 15920000, - "canton": null, - "numero_insee": "72045" - } - }, - { - "pk": 1627, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BREIL-SUR-MERIZE", - "center": "POINT (462869.0766632641316392 2334540.9122506328858435)", - "surface": 18330000, - "canton": null, - "numero_insee": "72046" - } - }, - { - "pk": 2774, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRETTE-LES-PINS", - "center": "POINT (449735.3971360865980387 2325325.2697901292704046)", - "surface": 14670000, - "canton": null, - "numero_insee": "72047" - } - }, - { - "pk": 2507, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRIOSNE-LES-SABLES", - "center": "POINT (455397.5456515554687940 2354594.0101912175305188)", - "surface": 9950000, - "canton": null, - "numero_insee": "72048" - } - }, - { - "pk": 2732, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BRUERE-SUR-LOIR", - "center": "POINT (451275.6693649289663881 2296415.7092752694152296)", - "surface": 11560000, - "canton": null, - "numero_insee": "72049" - } - }, - { - "pk": 1600, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRULON", - "center": "POINT (408329.2470539392670617 2334390.4078957969322801)", - "surface": 16150000, - "canton": null, - "numero_insee": "72050" - } - }, - { - "pk": 2585, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CERANS-FOULLETOURTE", - "center": "POINT (430286.3711301663424820 2317358.5067502646706998)", - "surface": 32470000, - "canton": null, - "numero_insee": "72051" - } - }, - { - "pk": 1845, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAHAIGNES", - "center": "POINT (463293.9251101514091715 2307423.7331541450694203)", - "surface": 22650000, - "canton": null, - "numero_insee": "72052" - } - }, - { - "pk": 2329, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHALLES", - "center": "POINT (457420.8354178667068481 2327790.7169458074495196)", - "surface": 25970000, - "canton": null, - "numero_insee": "72053" - } - }, - { - "pk": 2859, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPAGNE", - "center": "POINT (450539.1231727728154510 2337040.7663208651356399)", - "surface": 13960000, - "canton": null, - "numero_insee": "72054" - } - }, - { - "pk": 1792, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPFLEUR", - "center": "POINT (436186.3634171820012853 2378452.5810320740565658)", - "surface": 13150000, - "canton": null, - "numero_insee": "72056" - } - }, - { - "pk": 2955, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPROND", - "center": "POINT (481506.2865284785511903 2343802.2885274826548994)", - "surface": 6030000, - "canton": null, - "numero_insee": "72057" - } - }, - { - "pk": 2020, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHANGE", - "center": "POINT (447671.0882435834500939 2332913.9463797067292035)", - "surface": 35300000, - "canton": null, - "numero_insee": "72058" - } - }, - { - "pk": 2526, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHANTENAY-VILLEDIEU", - "center": "POINT (413790.7220192720415071 2327430.1398040447384119)", - "surface": 27830000, - "canton": null, - "numero_insee": "72059" - } - }, - { - "pk": 2430, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-AUX-CHOUX", - "center": "POINT (441687.0140650918474421 2294134.6508708782494068)", - "surface": 14540000, - "canton": null, - "numero_insee": "72060" - } - }, - { - "pk": 1589, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-D'ALIGNE", - "center": "POINT (406752.3468855767278001 2307156.6042322097346187)", - "surface": 33410000, - "canton": null, - "numero_insee": "72061" - } - }, - { - "pk": 2815, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-DU-BOIS", - "center": "POINT (469663.1375484432792291 2360016.0966330403462052)", - "surface": 16510000, - "canton": null, - "numero_insee": "72062" - } - }, - { - "pk": 2990, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-GAUGAIN", - "center": "POINT (475452.7213226179592311 2313529.1764545282348990)", - "surface": 10670000, - "canton": null, - "numero_insee": "72063" - } - }, - { - "pk": 2433, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-HUON", - "center": "POINT (478913.6512309208628722 2318561.7302468460984528)", - "surface": 18700000, - "canton": null, - "numero_insee": "72064" - } - }, - { - "pk": 2716, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SAINT-AUBIN", - "center": "POINT (437407.8429027615347877 2339634.1872308468446136)", - "surface": 5970000, - "canton": null, - "numero_insee": "72065" - } - }, - { - "pk": 1729, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SAINT-FRAY", - "center": "POINT (432736.9164879235904664 2347801.7087740153074265)", - "surface": 6360000, - "canton": null, - "numero_insee": "72066" - } - }, - { - "pk": 2195, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-SAINT-REMY", - "center": "POINT (460568.0978958845371380 2346530.8310874886810780)", - "surface": 19320000, - "canton": null, - "numero_insee": "72067" - } - }, - { - "pk": 2758, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHARTRE-SUR-LE-LOIR", - "center": "POINT (468319.0237294425023720 2304863.3677339856512845)", - "surface": 8740000, - "canton": null, - "numero_insee": "72068" - } - }, - { - "pk": 2894, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHASSE", - "center": "POINT (442430.0617665224708617 2385809.4181678644381464)", - "surface": 7340000, - "canton": null, - "numero_insee": "72069" - } - }, - { - "pk": 1923, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHASSILLE", - "center": "POINT (416199.9975042231380939 2338658.4693289278075099)", - "surface": 7290000, - "canton": null, - "numero_insee": "72070" - } - }, - { - "pk": 2908, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAU-DU-LOIR", - "center": "POINT (456934.1601995222154073 2301966.8544339551590383)", - "surface": 11750000, - "canton": null, - "numero_insee": "72071" - } - }, - { - "pk": 1869, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAU-L'HERMITAGE", - "center": "POINT (439825.2764019166352227 2313534.3412840985693038)", - "surface": 9410000, - "canton": null, - "numero_insee": "72072" - } - }, - { - "pk": 2192, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAUFOUR-NOTRE-DAME", - "center": "POINT (430317.0572816047351807 2337874.3221399695612490)", - "surface": 11210000, - "canton": null, - "numero_insee": "72073" - } - }, - { - "pk": 2455, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMIRE-EN-CHARNIE", - "center": "POINT (410665.7171959569677711 2342315.6024264250881970)", - "surface": 11480000, - "canton": null, - "numero_insee": "72074" - } - }, - { - "pk": 2069, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEMIRE-LE-GAUDIN", - "center": "POINT (424393.9189789968077093 2328018.0111695169471204)", - "surface": 22910000, - "canton": null, - "numero_insee": "72075" - } - }, - { - "pk": 1932, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHENAY", - "center": "POINT (438931.1140366150648333 2385380.2068969588726759)", - "surface": 2200000, - "canton": null, - "numero_insee": "72076" - } - }, - { - "pk": 2126, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHENU", - "center": "POINT (451018.5272876124363393 2291209.4974850206635892)", - "surface": 30780000, - "canton": null, - "numero_insee": "72077" - } - }, - { - "pk": 2667, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHERANCE", - "center": "POINT (439584.4637049450539052 2366872.2745670331642032)", - "surface": 10360000, - "canton": null, - "numero_insee": "72078" - } - }, - { - "pk": 2868, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHERISAY", - "center": "POINT (435217.1324459048919380 2374641.8343151328153908)", - "surface": 7930000, - "canton": null, - "numero_insee": "72079" - } - }, - { - "pk": 1724, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHERRE", - "center": "POINT (475033.8901445702649653 2351954.6719313059002161)", - "surface": 18420000, - "canton": null, - "numero_insee": "72080" - } - }, - { - "pk": 1962, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHERREAU", - "center": "POINT (477297.2418700096313842 2356576.8404883788898587)", - "surface": 11230000, - "canton": null, - "numero_insee": "72081" - } - }, - { - "pk": 1824, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE CHEVAIN", - "center": "POINT (437349.9294801192590967 2382965.4238514616154134)", - "surface": 5710000, - "canton": null, - "numero_insee": "72082" - } - }, - { - "pk": 1658, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEVILLE", - "center": "POINT (409166.0924690937972628 2329993.9800597499124706)", - "surface": 14200000, - "canton": null, - "numero_insee": "72083" - } - }, - { - "pk": 2015, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CLERMONT-CREANS", - "center": "POINT (422871.9950223335763440 2306288.7936324351467192)", - "surface": 18050000, - "canton": null, - "numero_insee": "72084" - } - }, - { - "pk": 2136, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COGNERS", - "center": "POINT (474103.6667863935581408 2319322.4356137779541314)", - "surface": 13610000, - "canton": null, - "numero_insee": "72085" - } - }, - { - "pk": 2920, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COMMERVEIL", - "center": "POINT (452866.7293744945200160 2370184.4684201921336353)", - "surface": 5690000, - "canton": null, - "numero_insee": "72086" - } - }, - { - "pk": 2365, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONFLANS-SUR-ANILLE", - "center": "POINT (479807.2142668553860858 2331478.9555747765116394)", - "surface": 31020000, - "canton": null, - "numero_insee": "72087" - } - }, - { - "pk": 2869, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONGE-SUR-ORNE", - "center": "POINT (445256.0255377648863941 2358713.1766202030703425)", - "surface": 11220000, - "canton": null, - "numero_insee": "72088" - } - }, - { - "pk": 2638, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONLIE", - "center": "POINT (425016.8487886032671668 2349539.2883604038506746)", - "surface": 17250000, - "canton": null, - "numero_insee": "72089" - } - }, - { - "pk": 1904, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONNERRE", - "center": "POINT (460617.0048040117835626 2340626.8342970311641693)", - "surface": 16630000, - "canton": null, - "numero_insee": "72090" - } - }, - { - "pk": 2325, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CONTILLY", - "center": "POINT (453476.9059654913726263 2381097.3764229817315936)", - "surface": 12540000, - "canton": null, - "numero_insee": "72091" - } - }, - { - "pk": 2215, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORMES", - "center": "POINT (478925.7099934816360474 2353287.9205259019508958)", - "surface": 18830000, - "canton": null, - "numero_insee": "72093" - } - }, - { - "pk": 2992, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COUDRECIEUX", - "center": "POINT (472287.9571991946431808 2333117.8584442776627839)", - "surface": 24450000, - "canton": null, - "numero_insee": "72094" - } - }, - { - "pk": 1848, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COULAINES", - "center": "POINT (441414.7044230974279344 2339166.9376024994999170)", - "surface": 3920000, - "canton": null, - "numero_insee": "72095" - } - }, - { - "pk": 2383, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COULANS-SUR-GEE", - "center": "POINT (426910.6041975780390203 2338346.5648321993649006)", - "surface": 27470000, - "canton": null, - "numero_insee": "72096" - } - }, - { - "pk": 2812, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COULOMBIERS", - "center": "POINT (435968.8581146857468411 2368443.5548358550295234)", - "surface": 12330000, - "canton": null, - "numero_insee": "72097" - } - }, - { - "pk": 2953, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COULONGE", - "center": "POINT (439125.6510141567559913 2301319.1043642750009894)", - "surface": 15160000, - "canton": null, - "numero_insee": "72098" - } - }, - { - "pk": 2104, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURCEBOEUFS", - "center": "POINT (447034.1457142118597403 2349421.0217018323019147)", - "surface": 16840000, - "canton": null, - "numero_insee": "72099" - } - }, - { - "pk": 2226, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURCELLES-LA-FORET", - "center": "POINT (423115.2071554323192686 2313196.1368954097852111)", - "surface": 19640000, - "canton": null, - "numero_insee": "72100" - } - }, - { - "pk": 1569, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURCEMONT", - "center": "POINT (451691.7578354652505368 2354963.6289489823393524)", - "surface": 19320000, - "canton": null, - "numero_insee": "72101" - } - }, - { - "pk": 1947, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURCIVAL", - "center": "POINT (455441.2753782736836001 2361399.3688140287995338)", - "surface": 8940000, - "canton": null, - "numero_insee": "72102" - } - }, - { - "pk": 2620, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURDEMANCHE", - "center": "POINT (466538.1897984694223851 2314456.0224590203724802)", - "surface": 24150000, - "canton": null, - "numero_insee": "72103" - } - }, - { - "pk": 2052, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURGAINS", - "center": "POINT (447082.7874502197373658 2367734.8646295177750289)", - "surface": 14760000, - "canton": null, - "numero_insee": "72104" - } - }, - { - "pk": 2651, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURGENARD", - "center": "POINT (481137.1486499573220499 2352105.3865016372874379)", - "surface": 11390000, - "canton": null, - "numero_insee": "72105" - } - }, - { - "pk": 1655, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COURTILLERS", - "center": "POINT (401382.6451993004884571 2315118.5376647082157433)", - "surface": 7440000, - "canton": null, - "numero_insee": "72106" - } - }, - { - "pk": 2964, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CRANNES-EN-CHAMPAGNE", - "center": "POINT (422745.7321889367303811 2333708.7187217874452472)", - "surface": 12010000, - "canton": null, - "numero_insee": "72107" - } - }, - { - "pk": 1823, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CRE", - "center": "POINT (413930.8294958339538425 2298308.8595363176427782)", - "surface": 17260000, - "canton": null, - "numero_insee": "72108" - } - }, - { - "pk": 2419, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CRISSE", - "center": "POINT (421359.9192797435680404 2356113.9840495330281556)", - "surface": 20940000, - "canton": null, - "numero_insee": "72109" - } - }, - { - "pk": 2452, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CROSMIERES", - "center": "POINT (413158.5253867254359648 2307009.2669956847093999)", - "surface": 20560000, - "canton": null, - "numero_insee": "72110" - } - }, - { - "pk": 2742, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CURES", - "center": "POINT (427152.9675285429693758 2345353.8020080132409930)", - "surface": 11570000, - "canton": null, - "numero_insee": "72111" - } - }, - { - "pk": 2901, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DANGEUL", - "center": "POINT (445820.0054298773757182 2363121.0651448122225702)", - "surface": 14020000, - "canton": null, - "numero_insee": "72112" - } - }, - { - "pk": 2594, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DEGRE", - "center": "POINT (431286.3278373139910400 2341685.1769323712214828)", - "surface": 9860000, - "canton": null, - "numero_insee": "72113" - } - }, - { - "pk": 2177, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DEHAULT", - "center": "POINT (469079.3301931672031060 2358009.7890917076729238)", - "surface": 9010000, - "canton": null, - "numero_insee": "72114" - } - }, - { - "pk": 2141, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DISSAY-SOUS-COURCILLON", - "center": "POINT (460870.9212640759069473 2297896.2641163864172995)", - "surface": 35060000, - "canton": null, - "numero_insee": "72115" - } - }, - { - "pk": 2717, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DISSE-SOUS-BALLON", - "center": "POINT (448537.5244151490624063 2361242.1563859237357974)", - "surface": 3640000, - "canton": null, - "numero_insee": "72116" - } - }, - { - "pk": 2712, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DISSE-SOUS-LE-LUDE", - "center": "POINT (435696.7743405068758875 2292383.7898512026295066)", - "surface": 22520000, - "canton": null, - "numero_insee": "72117" - } - }, - { - "pk": 2531, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DOLLON", - "center": "POINT (469939.0886544965906069 2338802.6674572583287954)", - "surface": 25420000, - "canton": null, - "numero_insee": "72118" - } - }, - { - "pk": 1744, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DOMFRONT-EN-CHAMPAGNE", - "center": "POINT (429332.9687903061858378 2347973.7396661536768079)", - "surface": 21060000, - "canton": null, - "numero_insee": "72119" - } - }, - { - "pk": 2737, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DOUCELLES", - "center": "POINT (440107.9565728462766856 2364074.5606607794761658)", - "surface": 4460000, - "canton": null, - "numero_insee": "72120" - } - }, - { - "pk": 1539, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DOUILLET", - "center": "POINT (422773.3768506781198084 2366733.4152228268794715)", - "surface": 19220000, - "canton": null, - "numero_insee": "72121" - } - }, - { - "pk": 1527, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DUNEAU", - "center": "POINT (465706.3721999139524996 2342370.2746490896679461)", - "surface": 12920000, - "canton": null, - "numero_insee": "72122" - } - }, - { - "pk": 2655, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DUREIL", - "center": "POINT (414974.8486481214058585 2317332.1947220955044031)", - "surface": 8110000, - "canton": null, - "numero_insee": "72123" - } - }, - { - "pk": 2283, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ECOMMOY", - "center": "POINT (446310.7944353499915451 2315889.7488827714696527)", - "surface": 28710000, - "canton": null, - "numero_insee": "72124" - } - }, - { - "pk": 2482, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ECORPAIN", - "center": "POINT (473032.4238059310591780 2327820.0245108208619058)", - "surface": 21450000, - "canton": null, - "numero_insee": "72125" - } - }, - { - "pk": 2060, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "EPINEU-LE-CHEVREUIL", - "center": "POINT (415882.4588075730134733 2340757.4247846300713718)", - "surface": 14770000, - "canton": null, - "numero_insee": "72126" - } - }, - { - "pk": 2005, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ETIVAL-LES-LE-MANS", - "center": "POINT (431268.9238765569170937 2331677.5133904763497412)", - "surface": 10350000, - "canton": null, - "numero_insee": "72127" - } - }, - { - "pk": 2545, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "EVAILLE", - "center": "POINT (472165.8285689743934199 2323709.7216446017846465)", - "surface": 19460000, - "canton": null, - "numero_insee": "72128" - } - }, - { - "pk": 2011, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FATINES", - "center": "POINT (450711.1020462293527089 2340444.7397446981631219)", - "surface": 5420000, - "canton": null, - "numero_insee": "72129" - } - }, - { - "pk": 2875, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FAY", - "center": "POINT (430933.9992469770368189 2335877.9145796173252165)", - "surface": 9420000, - "canton": null, - "numero_insee": "72130" - } - }, - { - "pk": 2653, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FERCE-SUR-SARTHE", - "center": "POINT (422620.7595215007895604 2324600.7889109752140939)", - "surface": 12180000, - "canton": null, - "numero_insee": "72131" - } - }, - { - "pk": 2905, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FERTE-BERNARD", - "center": "POINT (473405.4302072582067922 2355243.6005420270375907)", - "surface": 15640000, - "canton": null, - "numero_insee": "72132" - } - }, - { - "pk": 2107, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FILLE", - "center": "POINT (433926.9390486694755964 2324894.3158329385332763)", - "surface": 10140000, - "canton": null, - "numero_insee": "72133" - } - }, - { - "pk": 1626, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FLEE", - "center": "POINT (459009.1261755197774619 2305186.5283286729827523)", - "surface": 17530000, - "canton": null, - "numero_insee": "72134" - } - }, - { - "pk": 2748, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FONTAINE-SAINT-MARTIN", - "center": "POINT (428421.4085463592200540 2312939.7192806121893227)", - "surface": 13840000, - "canton": null, - "numero_insee": "72135" - } - }, - { - "pk": 2885, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FONTENAY-SUR-VEGRE", - "center": "POINT (409197.4400374642573297 2326191.3537070788443089)", - "surface": 11420000, - "canton": null, - "numero_insee": "72136" - } - }, - { - "pk": 2279, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FRESNAYE-SUR-CHEDOUET", - "center": "POINT (444545.4835181405069306 2384125.6980502847582102)", - "surface": 31470000, - "canton": null, - "numero_insee": "72137" - } - }, - { - "pk": 1847, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FRESNAY-SUR-SARTHE", - "center": "POINT (428173.6364174276823178 2367178.2882151496596634)", - "surface": 2100000, - "canton": null, - "numero_insee": "72138" - } - }, - { - "pk": 2442, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FYE", - "center": "POINT (432739.4710558836231939 2371719.2666940232738853)", - "surface": 16330000, - "canton": null, - "numero_insee": "72139" - } - }, - { - "pk": 2687, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GESNES-LE-GANDELIN", - "center": "POINT (429003.9895577575080097 2375691.3042804030701518)", - "surface": 13020000, - "canton": null, - "numero_insee": "72141" - } - }, - { - "pk": 1877, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GRANDCHAMP", - "center": "POINT (440061.6307325657107867 2369678.2545501161366701)", - "surface": 5520000, - "canton": null, - "numero_insee": "72142" - } - }, - { - "pk": 2190, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GRAND-LUCE", - "center": "POINT (459784.5908659264096059 2320304.5837537101469934)", - "surface": 27430000, - "canton": null, - "numero_insee": "72143" - } - }, - { - "pk": 1695, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GREEZ-SUR-ROC", - "center": "POINT (487362.0785804704646580 2349655.2169506107456982)", - "surface": 25390000, - "canton": null, - "numero_insee": "72144" - } - }, - { - "pk": 1733, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GREZ", - "center": "POINT (414644.7097375454031862 2357359.5419897628016770)", - "surface": 7380000, - "canton": null, - "numero_insee": "72145" - } - }, - { - "pk": 1834, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GUECELARD", - "center": "POINT (435845.6232491296250373 2322808.5715179289691150)", - "surface": 12150000, - "canton": null, - "numero_insee": "72146" - } - }, - { - "pk": 2989, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GUIERCHE", - "center": "POINT (440935.8302582061151043 2348670.0661415299400687)", - "surface": 7910000, - "canton": null, - "numero_insee": "72147" - } - }, - { - "pk": 1639, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JAUZE", - "center": "POINT (454763.1784121660166420 2358691.7752531943842769)", - "surface": 5720000, - "canton": null, - "numero_insee": "72148" - } - }, - { - "pk": 1984, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JOUE-EN-CHARNIE", - "center": "POINT (411100.6410354975378141 2338116.0399741614237428)", - "surface": 23560000, - "canton": null, - "numero_insee": "72149" - } - }, - { - "pk": 2760, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JOUE-L'ABBE", - "center": "POINT (443048.0034281067783013 2347386.5658913752995431)", - "surface": 10460000, - "canton": null, - "numero_insee": "72150" - } - }, - { - "pk": 1592, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUIGNE-SUR-SARTHE", - "center": "POINT (403327.1569538527401164 2322039.8483013524673879)", - "surface": 20510000, - "canton": null, - "numero_insee": "72151" - } - }, - { - "pk": 2979, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUILLE", - "center": "POINT (435714.1402614376274869 2362937.4403077014721930)", - "surface": 5730000, - "canton": null, - "numero_insee": "72152" - } - }, - { - "pk": 2835, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JUPILLES", - "center": "POINT (455650.4435350221465342 2311963.9728791783563793)", - "surface": 26540000, - "canton": null, - "numero_insee": "72153" - } - }, - { - "pk": 2162, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FLECHE", - "center": "POINT (419708.5443821571534500 2301559.0273033031262457)", - "surface": 79130000, - "canton": null, - "numero_insee": "72154" - } - }, - { - "pk": 2603, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAIGNE-EN-BELIN", - "center": "POINT (442666.8961375281214714 2320863.4387405961751938)", - "surface": 12760000, - "canton": null, - "numero_insee": "72155" - } - }, - { - "pk": 1756, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAMNAY", - "center": "POINT (478782.8699759860755876 2346381.6228341688401997)", - "surface": 22210000, - "canton": null, - "numero_insee": "72156" - } - }, - { - "pk": 1812, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAVARDIN", - "center": "POINT (430556.9221428435994312 2345181.7651282977312803)", - "surface": 7570000, - "canton": null, - "numero_insee": "72157" - } - }, - { - "pk": 1585, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAVARE", - "center": "POINT (474723.2654675900121219 2341144.0648337788879871)", - "surface": 23060000, - "canton": null, - "numero_insee": "72158" - } - }, - { - "pk": 1922, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAVENAY", - "center": "POINT (476378.2593679816927761 2310534.5429775952361524)", - "surface": 7740000, - "canton": null, - "numero_insee": "72159" - } - }, - { - "pk": 2264, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAVERNAT", - "center": "POINT (450613.1204307038569823 2303916.0775577886961401)", - "surface": 22830000, - "canton": null, - "numero_insee": "72160" - } - }, - { - "pk": 2199, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LHOMME", - "center": "POINT (467089.9702934140805155 2308255.8141003041528165)", - "surface": 18340000, - "canton": null, - "numero_insee": "72161" - } - }, - { - "pk": 2629, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIGNIERES-LA-CARELLE", - "center": "POINT (439845.7564874993986450 2383686.5535163609310985)", - "surface": 6790000, - "canton": null, - "numero_insee": "72162" - } - }, - { - "pk": 2915, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIGRON", - "center": "POINT (423838.8306198487989604 2310399.9499941989779472)", - "surface": 13650000, - "canton": null, - "numero_insee": "72163" - } - }, - { - "pk": 1699, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIVET-EN-SAOSNOIS", - "center": "POINT (442418.5278355363989249 2375101.6485229320824146)", - "surface": 1660000, - "canton": null, - "numero_insee": "72164" - } - }, - { - "pk": 2242, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOMBRON", - "center": "POINT (456580.3122764669824392 2344696.4638592367991805)", - "surface": 24160000, - "canton": null, - "numero_insee": "72165" - } - }, - { - "pk": 2654, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LONGNES", - "center": "POINT (419303.7647437501582317 2338483.9256218895316124)", - "surface": 6470000, - "canton": null, - "numero_insee": "72166" - } - }, - { - "pk": 1889, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUAILLES", - "center": "POINT (406908.7728932715253904 2312461.9932783595286310)", - "surface": 10540000, - "canton": null, - "numero_insee": "72167" - } - }, - { - "pk": 1674, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUE", - "center": "POINT (415320.8432094297022559 2336049.2630305942147970)", - "surface": 15820000, - "canton": null, - "numero_insee": "72168" - } - }, - { - "pk": 2271, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUPLANDE", - "center": "POINT (428986.3513875856297091 2329356.9185078130103648)", - "surface": 18450000, - "canton": null, - "numero_insee": "72169" - } - }, - { - "pk": 2931, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUVIGNY", - "center": "POINT (441636.2070581401931122 2372893.5908294245600700)", - "surface": 8720000, - "canton": null, - "numero_insee": "72170" - } - }, - { - "pk": 2811, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOUZES", - "center": "POINT (448758.9581380237359554 2382859.6220562895759940)", - "surface": 8270000, - "canton": null, - "numero_insee": "72171" - } - }, - { - "pk": 2550, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LUART", - "center": "POINT (470298.7056009799125604 2343709.3133145542815328)", - "surface": 12350000, - "canton": null, - "numero_insee": "72172" - } - }, - { - "pk": 2230, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LUCEAU", - "center": "POINT (454017.1871782147791237 2303744.1010241531766951)", - "surface": 17720000, - "canton": null, - "numero_insee": "72173" - } - }, - { - "pk": 2685, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LUCE-SOUS-BALLON", - "center": "POINT (442051.4122039955691434 2358986.8946883864700794)", - "surface": 6830000, - "canton": null, - "numero_insee": "72174" - } - }, - { - "pk": 2598, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LUCHE-PRINGE", - "center": "POINT (431807.2299784200731665 2302859.8648300124332309)", - "surface": 49440000, - "canton": null, - "numero_insee": "72175" - } - }, - { - "pk": 2078, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LUDE", - "center": "POINT (435757.1442665404174477 2297188.0555792115628719)", - "surface": 46140000, - "canton": null, - "numero_insee": "72176" - } - }, - { - "pk": 1607, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAIGNE", - "center": "POINT (421281.0411666579311714 2329293.3023141804151237)", - "surface": 11460000, - "canton": null, - "numero_insee": "72177" - } - }, - { - "pk": 2735, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAISONCELLES", - "center": "POINT (468527.6616741829784587 2327982.8226404208689928)", - "surface": 11320000, - "canton": null, - "numero_insee": "72178" - } - }, - { - "pk": 2066, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MALICORNE-SUR-SARTHE", - "center": "POINT (418393.7402034661499783 2315358.8636502046138048)", - "surface": 15180000, - "canton": null, - "numero_insee": "72179" - } - }, - { - "pk": 1754, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAMERS", - "center": "POINT (454231.2011467405245639 2374598.9460093094967306)", - "surface": 5150000, - "canton": null, - "numero_insee": "72180" - } - }, - { - "pk": 2251, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE MANS", - "center": "POINT (440454.5638255334924906 2334255.3150207749567926)", - "surface": 52600000, - "canton": null, - "numero_insee": "72181" - } - }, - { - "pk": 2461, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MANSIGNE", - "center": "POINT (434776.2796752263093367 2306887.5060639777220786)", - "surface": 36470000, - "canton": null, - "numero_insee": "72182" - } - }, - { - "pk": 2231, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARCON", - "center": "POINT (464138.4430705899139866 2302126.6160864359699190)", - "surface": 30350000, - "canton": null, - "numero_insee": "72183" - } - }, - { - "pk": 1849, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAREIL-EN-CHAMPAGNE", - "center": "POINT (412133.5046467711217701 2334221.6205653264187276)", - "surface": 7910000, - "canton": null, - "numero_insee": "72184" - } - }, - { - "pk": 2741, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAREIL-SUR-LOIR", - "center": "POINT (425286.0875882224063389 2304807.5593766672536731)", - "surface": 12040000, - "canton": null, - "numero_insee": "72185" - } - }, - { - "pk": 1942, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARESCHE", - "center": "POINT (437352.4179403446614742 2358447.6813084618188441)", - "surface": 14950000, - "canton": null, - "numero_insee": "72186" - } - }, - { - "pk": 2047, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARIGNE-LAILLE", - "center": "POINT (451321.7462253172416240 2315030.5231849919073284)", - "surface": 33430000, - "canton": null, - "numero_insee": "72187" - } - }, - { - "pk": 1748, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAROLLETTE", - "center": "POINT (453710.1671024907263927 2377096.4347274680621922)", - "surface": 5770000, - "canton": null, - "numero_insee": "72188" - } - }, - { - "pk": 2436, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAROLLES-LES-BRAULTS", - "center": "POINT (450219.6074197529815137 2363557.7569398321211338)", - "surface": 20640000, - "canton": null, - "numero_insee": "72189" - } - }, - { - "pk": 1515, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAROLLES-LES-SAINT-CALAIS", - "center": "POINT (484561.9529561945819296 2325313.7262623962014914)", - "surface": 12070000, - "canton": null, - "numero_insee": "72190" - } - }, - { - "pk": 1529, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAYET", - "center": "POINT (445765.8406565091572702 2309180.0769012533128262)", - "surface": 54150000, - "canton": null, - "numero_insee": "72191" - } - }, - { - "pk": 2666, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES MEES", - "center": "POINT (444059.2946809838758782 2370311.7445793151855469)", - "surface": 6830000, - "canton": null, - "numero_insee": "72192" - } - }, - { - "pk": 2218, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MELLERAY", - "center": "POINT (486499.6979961872566491 2345044.6385373994708061)", - "surface": 25800000, - "canton": null, - "numero_insee": "72193" - } - }, - { - "pk": 2500, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEURCE", - "center": "POINT (441326.9525591581477784 2361883.0304621434770525)", - "surface": 6150000, - "canton": null, - "numero_insee": "72194" - } - }, - { - "pk": 2065, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEZERAY", - "center": "POINT (423884.3760013181599788 2317005.4089937219396234)", - "surface": 33210000, - "canton": null, - "numero_insee": "72195" - } - }, - { - "pk": 2611, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEZIERES-SUR-PONTHOUIN", - "center": "POINT (448365.5409831437282264 2357838.2389346761628985)", - "surface": 18070000, - "canton": null, - "numero_insee": "72196" - } - }, - { - "pk": 2746, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MEZIERES-SOUS-LAVARDIN", - "center": "POINT (429690.2618683346081525 2353180.5441130781546235)", - "surface": 15330000, - "canton": null, - "numero_insee": "72197" - } - }, - { - "pk": 1610, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MILESSE", - "center": "POINT (435977.9442185508669354 2343124.9878569897264242)", - "surface": 10490000, - "canton": null, - "numero_insee": "72198" - } - }, - { - "pk": 2127, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOITRON-SUR-SARTHE", - "center": "POINT (430907.6520436064456590 2363298.0227004634216428)", - "surface": 10340000, - "canton": null, - "numero_insee": "72199" - } - }, - { - "pk": 2676, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONCE-EN-BELIN", - "center": "POINT (439936.8869886853499338 2324243.4582016658969223)", - "surface": 17570000, - "canton": null, - "numero_insee": "72200" - } - }, - { - "pk": 2843, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONCE-EN-SAOSNOIS", - "center": "POINT (455307.2421231134212576 2365501.2541060680523515)", - "surface": 8920000, - "canton": null, - "numero_insee": "72201" - } - }, - { - "pk": 1796, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONHOUDOU", - "center": "POINT (450789.3649253186304122 2367265.1691605974920094)", - "surface": 7560000, - "canton": null, - "numero_insee": "72202" - } - }, - { - "pk": 1597, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTABON", - "center": "POINT (454051.9854183198185638 2299541.1169278039596975)", - "surface": 7620000, - "canton": null, - "numero_insee": "72203" - } - }, - { - "pk": 1613, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTAILLE", - "center": "POINT (476619.9615648867329583 2329651.1474017035216093)", - "surface": 30550000, - "canton": null, - "numero_insee": "72204" - } - }, - { - "pk": 2785, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTBIZOT", - "center": "POINT (439702.7581053597386926 2352562.7609255001880229)", - "surface": 11400000, - "canton": null, - "numero_insee": "72205" - } - }, - { - "pk": 1844, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTIGNY", - "center": "POINT (440727.3115050925407559 2385995.4828178943134844)", - "surface": 3850000, - "canton": null, - "numero_insee": "72207" - } - }, - { - "pk": 2176, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTMIRAIL", - "center": "POINT (483385.9734046275261790 2346419.8275614064186811)", - "surface": 12580000, - "canton": null, - "numero_insee": "72208" - } - }, - { - "pk": 2949, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL-LE-CHETIF", - "center": "POINT (423506.0507705437485129 2362836.6156128342263401)", - "surface": 14720000, - "canton": null, - "numero_insee": "72209" - } - }, - { - "pk": 1522, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL-LE-HENRI", - "center": "POINT (467897.6911439179675654 2319471.1265391828492284)", - "surface": 14410000, - "canton": null, - "numero_insee": "72210" - } - }, - { - "pk": 2204, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONT-SAINT-JEAN", - "center": "POINT (417998.2744384240941145 2363291.5319762490689754)", - "surface": 42440000, - "canton": null, - "numero_insee": "72211" - } - }, - { - "pk": 2203, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOULINS-LE-CARBONNEL", - "center": "POINT (425887.0954615164082497 2377466.8657305226661265)", - "surface": 16340000, - "canton": null, - "numero_insee": "72212" - } - }, - { - "pk": 2838, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MULSANNE", - "center": "POINT (443522.0017496640793979 2326374.7020225450396538)", - "surface": 15270000, - "canton": null, - "numero_insee": "72213" - } - }, - { - "pk": 2506, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NAUVAY", - "center": "POINT (455624.8383070221752860 2363402.3512086751870811)", - "surface": 2740000, - "canton": null, - "numero_insee": "72214" - } - }, - { - "pk": 2514, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUFCHATEL-EN-SAOSNOIS", - "center": "POINT (444992.0869426753488369 2378525.3792659621685743)", - "surface": 23360000, - "canton": null, - "numero_insee": "72215" - } - }, - { - "pk": 2537, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUVILLALAIS", - "center": "POINT (425587.5115648995852098 2353146.6655376413837075)", - "surface": 18970000, - "canton": null, - "numero_insee": "72216" - } - }, - { - "pk": 1907, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUVILLE-SUR-SARTHE", - "center": "POINT (441776.0865129059529863 2343873.4413700732402503)", - "surface": 22990000, - "canton": null, - "numero_insee": "72217" - } - }, - { - "pk": 2061, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUVILLETTE-EN-CHARNIE", - "center": "POINT (410434.2319131119293161 2346116.5304742604494095)", - "surface": 14610000, - "canton": null, - "numero_insee": "72218" - } - }, - { - "pk": 2012, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NEUVY-EN-CHAMPAGNE", - "center": "POINT (424255.1344721353962086 2344829.5041756192222238)", - "surface": 14910000, - "canton": null, - "numero_insee": "72219" - } - }, - { - "pk": 2096, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOGENT-LE-BERNARD", - "center": "POINT (463745.9520417198073119 2361568.2258663382381201)", - "surface": 30410000, - "canton": null, - "numero_insee": "72220" - } - }, - { - "pk": 1930, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOGENT-SUR-LOIR", - "center": "POINT (454373.7417285852134228 2296941.7483905502595007)", - "surface": 10840000, - "canton": null, - "numero_insee": "72221" - } - }, - { - "pk": 1841, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOUANS", - "center": "POINT (443328.2795071348082274 2361899.5792459817603230)", - "surface": 10100000, - "canton": null, - "numero_insee": "72222" - } - }, - { - "pk": 2910, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOYEN-SUR-SARTHE", - "center": "POINT (417650.3166042922530323 2320556.7177833858877420)", - "surface": 42870000, - "canton": null, - "numero_insee": "72223" - } - }, - { - "pk": 1894, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NUILLE-LE-JALAIS", - "center": "POINT (461946.0760639255167916 2337235.2956528207287192)", - "surface": 5740000, - "canton": null, - "numero_insee": "72224" - } - }, - { - "pk": 2772, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "OISSEAU-LE-PETIT", - "center": "POINT (432215.1714567015878856 2374617.0327079901471734)", - "surface": 8540000, - "canton": null, - "numero_insee": "72225" - } - }, - { - "pk": 1931, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "OIZE", - "center": "POINT (433118.9213204670813866 2313679.0644754944369197)", - "surface": 16850000, - "canton": null, - "numero_insee": "72226" - } - }, - { - "pk": 1883, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PANON", - "center": "POINT (448940.1582004858646542 2373054.0740742208436131)", - "surface": 2360000, - "canton": null, - "numero_insee": "72227" - } - }, - { - "pk": 2412, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARCE-SUR-SARTHE", - "center": "POINT (410477.4766083886497654 2316594.5685966727323830)", - "surface": 40680000, - "canton": null, - "numero_insee": "72228" - } - }, - { - "pk": 1762, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARENNES", - "center": "POINT (412208.2216907455585897 2349433.6106491396203637)", - "surface": 14530000, - "canton": null, - "numero_insee": "72229" - } - }, - { - "pk": 2699, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARIGNE-LE-POLIN", - "center": "POINT (434470.2861774913035333 2319694.8369479929096997)", - "surface": 13960000, - "canton": null, - "numero_insee": "72230" - } - }, - { - "pk": 1969, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PARIGNE-L'EVEQUE", - "center": "POINT (453119.5253082398558035 2327554.9510522549971938)", - "surface": 63530000, - "canton": null, - "numero_insee": "72231" - } - }, - { - "pk": 1991, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOTRE-DAME-DU-PE", - "center": "POINT (399453.7742529122624546 2306295.8469065856188536)", - "surface": 7710000, - "canton": null, - "numero_insee": "72232" - } - }, - { - "pk": 2529, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PERAY", - "center": "POINT (453927.0264297880348749 2362988.0032477234490216)", - "surface": 2440000, - "canton": null, - "numero_insee": "72233" - } - }, - { - "pk": 2786, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PEZE-LE-ROBERT", - "center": "POINT (423141.3002900544088334 2358530.4522083285264671)", - "surface": 16300000, - "canton": null, - "numero_insee": "72234" - } - }, - { - "pk": 2902, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PIACE", - "center": "POINT (434993.8317664070054889 2365333.2407702291384339)", - "surface": 10120000, - "canton": null, - "numero_insee": "72235" - } - }, - { - "pk": 2799, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PINCE", - "center": "POINT (397386.4310906543978490 2314285.0075284671038389)", - "surface": 5790000, - "canton": null, - "numero_insee": "72236" - } - }, - { - "pk": 2068, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PIRMIL", - "center": "POINT (418604.7745540039613843 2326168.8638653610832989)", - "surface": 17600000, - "canton": null, - "numero_insee": "72237" - } - }, - { - "pk": 2555, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PIZIEUX", - "center": "POINT (451357.4631316409213468 2371172.7018816061317921)", - "surface": 4480000, - "canton": null, - "numero_insee": "72238" - } - }, - { - "pk": 2250, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "POILLE-SUR-VEGRE", - "center": "POINT (404985.4599697738303803 2327257.4746025344356894)", - "surface": 17560000, - "canton": null, - "numero_insee": "72239" - } - }, - { - "pk": 1749, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PONCE-SUR-LE-LOIR", - "center": "POINT (474084.9432765337405726 2309514.7457628552801907)", - "surface": 6830000, - "canton": null, - "numero_insee": "72240" - } - }, - { - "pk": 1751, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTFORT-LE-GESNOIS", - "center": "POINT (455805.4561343324603513 2341587.7337308414280415)", - "surface": 18740000, - "canton": null, - "numero_insee": "72241" - } - }, - { - "pk": 1573, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PONTVALLAIN", - "center": "POINT (439764.9207180103985593 2308730.1371984900906682)", - "surface": 35320000, - "canton": null, - "numero_insee": "72243" - } - }, - { - "pk": 2788, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PRECIGNE", - "center": "POINT (401020.2845249496749602 2310512.0046192142181098)", - "surface": 58400000, - "canton": null, - "numero_insee": "72244" - } - }, - { - "pk": 1643, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PREVAL", - "center": "POINT (472365.7605949874268845 2359938.4323726091533899)", - "surface": 7620000, - "canton": null, - "numero_insee": "72245" - } - }, - { - "pk": 2397, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PREVELLES", - "center": "POINT (461422.2824348292779177 2352142.0597160221077502)", - "surface": 4830000, - "canton": null, - "numero_insee": "72246" - } - }, - { - "pk": 2008, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PRUILLE-LE-CHETIF", - "center": "POINT (433443.9780878828605637 2334897.8978952667675912)", - "surface": 10440000, - "canton": null, - "numero_insee": "72247" - } - }, - { - "pk": 2558, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PRUILLE-L'EGUILLE", - "center": "POINT (456608.0536090737441555 2317175.9011564194224775)", - "surface": 21230000, - "canton": null, - "numero_insee": "72248" - } - }, - { - "pk": 1870, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA QUINTE", - "center": "POINT (428885.5228113399934955 2341565.2721017501316965)", - "surface": 8850000, - "canton": null, - "numero_insee": "72249" - } - }, - { - "pk": 1685, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RAHAY", - "center": "POINT (486026.4268856894923374 2329729.2234581941738725)", - "surface": 18920000, - "canton": null, - "numero_insee": "72250" - } - }, - { - "pk": 1828, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RENE", - "center": "POINT (442591.4070778308669105 2366296.6984951877966523)", - "surface": 12610000, - "canton": null, - "numero_insee": "72251" - } - }, - { - "pk": 2018, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "REQUEIL", - "center": "POINT (436736.3356525060953572 2311907.5724004721269011)", - "surface": 14090000, - "canton": null, - "numero_insee": "72252" - } - }, - { - "pk": 2503, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROEZE-SUR-SARTHE", - "center": "POINT (430632.0921331244171597 2323966.4087906912900507)", - "surface": 26840000, - "canton": null, - "numero_insee": "72253" - } - }, - { - "pk": 2665, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUESSE-FONTAINE", - "center": "POINT (437648.4742726372787729 2371059.3228572183288634)", - "surface": 12520000, - "canton": null, - "numero_insee": "72254" - } - }, - { - "pk": 2185, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUESSE-VASSE", - "center": "POINT (411272.9638756371568888 2353629.0101548940874636)", - "surface": 31760000, - "canton": null, - "numero_insee": "72255" - } - }, - { - "pk": 1570, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUEZ", - "center": "POINT (417094.1898299910826609 2351575.4639576082117856)", - "surface": 33570000, - "canton": null, - "numero_insee": "72256" - } - }, - { - "pk": 2713, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUILLON", - "center": "POINT (436239.2796491619665176 2335721.5996225280687213)", - "surface": 9170000, - "canton": null, - "numero_insee": "72257" - } - }, - { - "pk": 1565, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROULLEE", - "center": "POINT (449230.3042666127439588 2386366.0201921211555600)", - "surface": 20120000, - "canton": null, - "numero_insee": "72258" - } - }, - { - "pk": 2569, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROUPERROUX-LE-COQUET", - "center": "POINT (458951.0561679763486609 2360527.7729458976536989)", - "surface": 12130000, - "canton": null, - "numero_insee": "72259" - } - }, - { - "pk": 1768, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RUAUDIN", - "center": "POINT (445300.8963377529871650 2329091.4645609077997506)", - "surface": 13870000, - "canton": null, - "numero_insee": "72260" - } - }, - { - "pk": 1676, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RUILLE-EN-CHAMPAGNE", - "center": "POINT (417168.4846639758907259 2342569.3803028808906674)", - "surface": 15010000, - "canton": null, - "numero_insee": "72261" - } - }, - { - "pk": 2114, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "RUILLE-SUR-LOIR", - "center": "POINT (471171.2842553823138587 2310891.6615108712576330)", - "surface": 39710000, - "canton": null, - "numero_insee": "72262" - } - }, - { - "pk": 2075, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SABLE-SUR-SARTHE", - "center": "POINT (398550.1874275936279446 2318798.0493195033632219)", - "surface": 36940000, - "canton": null, - "numero_insee": "72264" - } - }, - { - "pk": 2684, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AIGNAN", - "center": "POINT (452054.7553212333004922 2359469.9428736856207252)", - "surface": 15190000, - "canton": null, - "numero_insee": "72265" - } - }, - { - "pk": 2779, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-DE-LOCQUENAY", - "center": "POINT (427093.5662622305098921 2364667.5473926370032132)", - "surface": 17510000, - "canton": null, - "numero_insee": "72266" - } - }, - { - "pk": 1604, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-DES-COUDRAIS", - "center": "POINT (469206.7727500486653298 2354708.4171537919901311)", - "surface": 17390000, - "canton": null, - "numero_insee": "72267" - } - }, - { - "pk": 2793, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BIEZ-EN-BELIN", - "center": "POINT (442813.3114925433183089 2315260.3577381260693073)", - "surface": 9300000, - "canton": null, - "numero_insee": "72268" - } - }, - { - "pk": 2376, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CALAIS", - "center": "POINT (481252.1965605907607824 2326186.9339593830518425)", - "surface": 22810000, - "canton": null, - "numero_insee": "72269" - } - }, - { - "pk": 2701, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CALEZ-EN-SAOSNOIS", - "center": "POINT (449669.5959961034823209 2369557.5743338628672063)", - "surface": 7290000, - "canton": null, - "numero_insee": "72270" - } - }, - { - "pk": 1578, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CELERIN", - "center": "POINT (458244.9980157378595322 2349113.5207816590555012)", - "surface": 13510000, - "canton": null, - "numero_insee": "72271" - } - }, - { - "pk": 2134, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-CEROTTE", - "center": "POINT (476269.4986684867762960 2323643.6845480022020638)", - "surface": 14360000, - "canton": null, - "numero_insee": "72272" - } - }, - { - "pk": 1506, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CHRISTOPHE-DU-JAMBET", - "center": "POINT (430919.2235419497592375 2361897.0941061466000974)", - "surface": 11180000, - "canton": null, - "numero_insee": "72273" - } - }, - { - "pk": 2696, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CHRISTOPHE-EN-CHAMPAGNE", - "center": "POINT (415152.0708482830086723 2332245.0047235684469342)", - "surface": 7680000, - "canton": null, - "numero_insee": "72274" - } - }, - { - "pk": 1660, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CORNEILLE", - "center": "POINT (451383.4189706820761785 2343852.8449798380024731)", - "surface": 11170000, - "canton": null, - "numero_insee": "72275" - } - }, - { - "pk": 2499, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-COSME-EN-VAIRAIS", - "center": "POINT (460510.6749754773918539 2365544.3444147850386798)", - "surface": 32910000, - "canton": null, - "numero_insee": "72276" - } - }, - { - "pk": 1865, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-DENIS-DES-COUDRAIS", - "center": "POINT (463817.2585661601042375 2352962.4935520910657942)", - "surface": 7130000, - "canton": null, - "numero_insee": "72277" - } - }, - { - "pk": 2441, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-DENIS-D'ORQUES", - "center": "POINT (405180.1178334209835157 2340068.7408305467106402)", - "surface": 47210000, - "canton": null, - "numero_insee": "72278" - } - }, - { - "pk": 1656, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DE-LA-COUEE", - "center": "POINT (469231.7831599015044048 2315479.1207800963893533)", - "surface": 11780000, - "canton": null, - "numero_insee": "72279" - } - }, - { - "pk": 1765, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DU-BOIS", - "center": "POINT (433062.7203124687657692 2332593.0130049241706729)", - "surface": 7260000, - "canton": null, - "numero_insee": "72280" - } - }, - { - "pk": 2152, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DU-ROSAY", - "center": "POINT (465184.1966179516166449 2357076.8425063788890839)", - "surface": 17340000, - "canton": null, - "numero_insee": "72281" - } - }, - { - "pk": 2154, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-LE-GAULTIER", - "center": "POINT (418351.4842478382633999 2368998.6010919776745141)", - "surface": 23350000, - "canton": null, - "numero_insee": "72282" - } - }, - { - "pk": 1524, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-D'ARCE", - "center": "POINT (445891.6796778910793364 2293969.2730521089397371)", - "surface": 29300000, - "canton": null, - "numero_insee": "72283" - } - }, - { - "pk": 1646, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-SUR-SARTHE", - "center": "POINT (432278.8208702243864536 2366911.9754525348544121)", - "surface": 14790000, - "canton": null, - "numero_insee": "72284" - } - }, - { - "pk": 2324, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERVAIS-DE-VIC", - "center": "POINT (479990.3325084598036483 2321472.8822763967327774)", - "surface": 16150000, - "canton": null, - "numero_insee": "72286" - } - }, - { - "pk": 1862, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERVAIS-EN-BELIN", - "center": "POINT (440163.5018758941441774 2321042.8907086956314743)", - "surface": 9520000, - "canton": null, - "numero_insee": "72287" - } - }, - { - "pk": 2777, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-LE-LIERRU", - "center": "POINT (466768.9651016747811809 2346982.5092267873696983)", - "surface": 4600000, - "canton": null, - "numero_insee": "72288" - } - }, - { - "pk": 2524, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-JAMME-SUR-SARTHE", - "center": "POINT (437813.8899929256876931 2351046.0370258432812989)", - "surface": 8590000, - "canton": null, - "numero_insee": "72289" - } - }, - { - "pk": 2186, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-D'ASSE", - "center": "POINT (435193.1234086510376073 2353326.0788533743470907)", - "surface": 21290000, - "canton": null, - "numero_insee": "72290" - } - }, - { - "pk": 2530, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DE-LA-MOTTE", - "center": "POINT (428954.8213141426676884 2308941.0360328522510827)", - "surface": 32410000, - "canton": null, - "numero_insee": "72291" - } - }, - { - "pk": 2644, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DES-ECHELLES", - "center": "POINT (480561.6611029842752032 2349098.3893263535574079)", - "surface": 10580000, - "canton": null, - "numero_insee": "72292" - } - }, - { - "pk": 2707, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DU-BOIS", - "center": "POINT (422650.4958361802855507 2320998.2874164907261729)", - "surface": 14640000, - "canton": null, - "numero_insee": "72293" - } - }, - { - "pk": 2070, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LEONARD-DES-BOIS", - "center": "POINT (420299.1329380903625861 2375519.3769713696092367)", - "surface": 27450000, - "canton": null, - "numero_insee": "72294" - } - }, - { - "pk": 2916, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LONGIS", - "center": "POINT (451729.5683214107993990 2374578.2398864566348493)", - "surface": 11200000, - "canton": null, - "numero_insee": "72295" - } - }, - { - "pk": 2683, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MAIXENT", - "center": "POINT (474575.8857186525128782 2346847.0921646999195218)", - "surface": 22420000, - "canton": null, - "numero_insee": "72296" - } - }, - { - "pk": 1807, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARCEAU", - "center": "POINT (435270.8640296142548323 2356028.7131333081051707)", - "surface": 8940000, - "canton": null, - "numero_insee": "72297" - } - }, - { - "pk": 2377, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-DE-LOCQUENAY", - "center": "POINT (463128.9131682058796287 2327337.6220028488896787)", - "surface": 21770000, - "canton": null, - "numero_insee": "72298" - } - }, - { - "pk": 1817, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-D'OUTILLE", - "center": "POINT (450774.1869946222286671 2320730.3597942902706563)", - "surface": 38400000, - "canton": null, - "numero_insee": "72299" - } - }, - { - "pk": 2232, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-LA-BRIERE", - "center": "POINT (453940.6161403983132914 2337168.9964957954362035)", - "surface": 34600000, - "canton": null, - "numero_insee": "72300" - } - }, - { - "pk": 1620, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-SOUS-BALLON", - "center": "POINT (446392.3522841124795377 2354419.4109925660304725)", - "surface": 18250000, - "canton": null, - "numero_insee": "72301" - } - }, - { - "pk": 1927, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DES-MONTS", - "center": "POINT (470533.3619739225832745 2351617.1265879487618804)", - "surface": 5720000, - "canton": null, - "numero_insee": "72302" - } - }, - { - "pk": 2217, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-DE-CHAVAIGNES", - "center": "POINT (468362.0563146421918646 2335887.4154262896627188)", - "surface": 18530000, - "canton": null, - "numero_insee": "72303" - } - }, - { - "pk": 1614, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-OSMANE", - "center": "POINT (470790.5821230183355510 2320595.9525209078565240)", - "surface": 11960000, - "canton": null, - "numero_insee": "72304" - } - }, - { - "pk": 1797, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-OUEN-DE-MIMBRE", - "center": "POINT (430366.8229561069165356 2368197.1281092106364667)", - "surface": 10700000, - "canton": null, - "numero_insee": "72305" - } - }, - { - "pk": 2762, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-OUEN-EN-BELIN", - "center": "POINT (440895.4319560926523991 2317246.0333839212544262)", - "surface": 15270000, - "canton": null, - "numero_insee": "72306" - } - }, - { - "pk": 2844, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-OUEN-EN-CHAMPAGNE", - "center": "POINT (412154.1334545320132747 2331719.9025236694142222)", - "surface": 11230000, - "canton": null, - "numero_insee": "72307" - } - }, - { - "pk": 1914, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PATERNE", - "center": "POINT (435459.4490518918610178 2381648.8707877085544169)", - "surface": 7210000, - "canton": null, - "numero_insee": "72308" - } - }, - { - "pk": 1564, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PAUL-LE-GAULTIER", - "center": "POINT (418022.3944380272878334 2372498.4249406196177006)", - "surface": 15180000, - "canton": null, - "numero_insee": "72309" - } - }, - { - "pk": 1835, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PAVACE", - "center": "POINT (440306.5087395230075344 2340058.4493111083284020)", - "surface": 5190000, - "canton": null, - "numero_insee": "72310" - } - }, - { - "pk": 2658, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-DE-CHEVILLE", - "center": "POINT (456995.4890070287510753 2294561.5777923176065087)", - "surface": 11440000, - "canton": null, - "numero_insee": "72311" - } - }, - { - "pk": 2680, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-DES-BOIS", - "center": "POINT (415272.7747084223665297 2329744.1084545077756047)", - "surface": 7510000, - "canton": null, - "numero_insee": "72312" - } - }, - { - "pk": 2295, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-DES-ORMES", - "center": "POINT (457790.6623905246960931 2367723.4184333160519600)", - "surface": 10210000, - "canton": null, - "numero_insee": "72313" - } - }, - { - "pk": 2518, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-DU-LOROUER", - "center": "POINT (462953.0822642327984795 2312324.6942002912983298)", - "surface": 16670000, - "canton": null, - "numero_insee": "72314" - } - }, - { - "pk": 2533, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-REMY-DE-SILLE", - "center": "POINT (418555.5700864846585318 2356391.0652861404232681)", - "surface": 11430000, - "canton": null, - "numero_insee": "72315" - } - }, - { - "pk": 1856, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-REMY-DES-MONTS", - "center": "POINT (455062.3749030660837889 2370903.1511969775892794)", - "surface": 10250000, - "canton": null, - "numero_insee": "72316" - } - }, - { - "pk": 2349, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-REMY-DU-VAL", - "center": "POINT (445327.8702121548121795 2374225.0586988190189004)", - "surface": 16660000, - "canton": null, - "numero_insee": "72317" - } - }, - { - "pk": 1988, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-RIGOMER-DES-BOIS", - "center": "POINT (439674.5781284448457882 2380182.6321549462154508)", - "surface": 17790000, - "canton": null, - "numero_insee": "72318" - } - }, - { - "pk": 1795, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-SABINE-SUR-LONGEVE", - "center": "POINT (432712.1149083810742013 2350803.7299117995426059)", - "surface": 11870000, - "canton": null, - "numero_insee": "72319" - } - }, - { - "pk": 1816, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SATURNIN", - "center": "POINT (438688.0480072068748996 2342146.6408009626902640)", - "surface": 9710000, - "canton": null, - "numero_insee": "72320" - } - }, - { - "pk": 2207, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SYMPHORIEN", - "center": "POINT (415346.6273001895751804 2345056.2187714138999581)", - "surface": 22680000, - "canton": null, - "numero_insee": "72321" - } - }, - { - "pk": 2525, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ULPHACE", - "center": "POINT (488644.6673607671982609 2351867.4972693375311792)", - "surface": 16150000, - "canton": null, - "numero_insee": "72322" - } - }, - { - "pk": 1924, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VICTEUR", - "center": "POINT (429442.2644183897646144 2371091.5976622398011386)", - "surface": 7150000, - "canton": null, - "numero_insee": "72323" - } - }, - { - "pk": 2806, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VINCENT-DES-PRES", - "center": "POINT (454285.0442183299455792 2368094.6840865733101964)", - "surface": 10550000, - "canton": null, - "numero_insee": "72324" - } - }, - { - "pk": 2179, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VINCENT-DU-LOROUER", - "center": "POINT (461028.5353633532067761 2315110.9032658822834492)", - "surface": 26940000, - "canton": null, - "numero_insee": "72325" - } - }, - { - "pk": 1644, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAOSNES", - "center": "POINT (448051.1592222787439823 2371645.7059370758943260)", - "surface": 11400000, - "canton": null, - "numero_insee": "72326" - } - }, - { - "pk": 1763, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SARCE", - "center": "POINT (441800.2611714034574106 2304643.7883754912763834)", - "surface": 11010000, - "canton": null, - "numero_insee": "72327" - } - }, - { - "pk": 1761, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SARGE-LES-LE-MANS", - "center": "POINT (444209.1633597477339208 2340090.7217167126946151)", - "surface": 13970000, - "canton": null, - "numero_insee": "72328" - } - }, - { - "pk": 2439, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAVIGNE-L'EVEQUE", - "center": "POINT (447274.0181417464045808 2344619.4370250725187361)", - "surface": 28410000, - "canton": null, - "numero_insee": "72329" - } - }, - { - "pk": 1625, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAVIGNE-SOUS-LE-LUDE", - "center": "POINT (429773.5229901438578963 2294636.6535417940467596)", - "surface": 33930000, - "canton": null, - "numero_insee": "72330" - } - }, - { - "pk": 1681, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SCEAUX-SUR-HUISNE", - "center": "POINT (469178.0503350435174070 2346101.8099242998287082)", - "surface": 11710000, - "canton": null, - "numero_insee": "72331" - } - }, - { - "pk": 1601, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SEGRIE", - "center": "POINT (427536.7969410284422338 2359467.4005821500904858)", - "surface": 22180000, - "canton": null, - "numero_insee": "72332" - } - }, - { - "pk": 1805, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SEMUR-EN-VALLON", - "center": "POINT (475757.9799194398801774 2337049.5754376770928502)", - "surface": 15240000, - "canton": null, - "numero_insee": "72333" - } - }, - { - "pk": 2266, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SILLE-LE-GUILLAUME", - "center": "POINT (416349.1467489697970450 2356973.3054842990823090)", - "surface": 12990000, - "canton": null, - "numero_insee": "72334" - } - }, - { - "pk": 2903, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SILLE-LE-PHILIPPE", - "center": "POINT (451957.3215362666524015 2347059.9781195996329188)", - "surface": 10670000, - "canton": null, - "numero_insee": "72335" - } - }, - { - "pk": 2800, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOLESMES", - "center": "POINT (404049.9072499334579334 2319343.7377473074011505)", - "surface": 11540000, - "canton": null, - "numero_insee": "72336" - } - }, - { - "pk": 2391, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUGE-LE-GANELON", - "center": "POINT (423338.2584885537507944 2371041.2024005181156099)", - "surface": 18290000, - "canton": null, - "numero_insee": "72337" - } - }, - { - "pk": 2798, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUILLE", - "center": "POINT (438932.0006693899631500 2348953.7225274923257530)", - "surface": 4590000, - "canton": null, - "numero_insee": "72338" - } - }, - { - "pk": 2019, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULIGNE-FLACE", - "center": "POINT (426560.7340089946519583 2332239.0816414444707334)", - "surface": 16490000, - "canton": null, - "numero_insee": "72339" - } - }, - { - "pk": 2568, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULIGNE-SOUS-BALLON", - "center": "POINT (443721.1654532301472500 2350694.5816958844661713)", - "surface": 12730000, - "canton": null, - "numero_insee": "72340" - } - }, - { - "pk": 2819, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULITRE", - "center": "POINT (458541.2695007931906730 2337507.3170705274678767)", - "surface": 10990000, - "canton": null, - "numero_insee": "72341" - } - }, - { - "pk": 2515, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUVIGNE-SUR-MEME", - "center": "POINT (474476.2851590053760447 2358855.1292181028984487)", - "surface": 6500000, - "canton": null, - "numero_insee": "72342" - } - }, - { - "pk": 1648, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOUVIGNE-SUR-SARTHE", - "center": "POINT (394257.8917080343235284 2317461.7094592661596835)", - "surface": 17240000, - "canton": null, - "numero_insee": "72343" - } - }, - { - "pk": 2930, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SPAY", - "center": "POINT (436608.9593055658042431 2327318.3050571414642036)", - "surface": 14130000, - "canton": null, - "numero_insee": "72344" - } - }, - { - "pk": 1842, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SURFONDS", - "center": "POINT (460082.0805688505060971 2332716.4660937190055847)", - "surface": 4890000, - "canton": null, - "numero_insee": "72345" - } - }, - { - "pk": 1976, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA SUZE-SUR-SARTHE", - "center": "POINT (427043.6426669693319127 2322235.4744629510678351)", - "surface": 21470000, - "canton": null, - "numero_insee": "72346" - } - }, - { - "pk": 1705, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TASSE", - "center": "POINT (414020.5719337688060477 2323829.2959174304269254)", - "surface": 10750000, - "canton": null, - "numero_insee": "72347" - } - }, - { - "pk": 1720, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TASSILLE", - "center": "POINT (418532.9417063379078172 2334874.8575501409359276)", - "surface": 6550000, - "canton": null, - "numero_insee": "72348" - } - }, - { - "pk": 2183, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TEILLE", - "center": "POINT (440174.1383160646073520 2356069.2406935254111886)", - "surface": 11630000, - "canton": null, - "numero_insee": "72349" - } - }, - { - "pk": 2551, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TELOCHE", - "center": "POINT (446050.2209726239088923 2323193.1791059067472816)", - "surface": 22830000, - "canton": null, - "numero_insee": "72350" - } - }, - { - "pk": 2062, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TENNIE", - "center": "POINT (419522.2250945258419961 2348393.1222971021197736)", - "surface": 33180000, - "canton": null, - "numero_insee": "72351" - } - }, - { - "pk": 2994, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TERREHAULT", - "center": "POINT (456471.7670517286751419 2357805.2603382458910346)", - "surface": 5830000, - "canton": null, - "numero_insee": "72352" - } - }, - { - "pk": 2194, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THELIGNY", - "center": "POINT (484627.0319976955652237 2353635.4640389150008559)", - "surface": 14490000, - "canton": null, - "numero_insee": "72353" - } - }, - { - "pk": 2646, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THOIGNE", - "center": "POINT (445086.4357857898576185 2367117.9148242278024554)", - "surface": 7320000, - "canton": null, - "numero_insee": "72354" - } - }, - { - "pk": 2840, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THOIRE-SOUS-CONTENSOR", - "center": "POINT (441857.8497022718656808 2370293.5403636144474149)", - "surface": 6050000, - "canton": null, - "numero_insee": "72355" - } - }, - { - "pk": 2940, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THOIRE-SUR-DINAN", - "center": "POINT (459478.8091055743861943 2308893.2856500111520290)", - "surface": 17750000, - "canton": null, - "numero_insee": "72356" - } - }, - { - "pk": 2936, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THOREE-LES-PINS", - "center": "POINT (427036.8775857662549242 2298817.3402645005844533)", - "surface": 28120000, - "canton": null, - "numero_insee": "72357" - } - }, - { - "pk": 1619, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THORIGNE-SUR-DUE", - "center": "POINT (464439.4893616089248098 2338256.7063685166649520)", - "surface": 19300000, - "canton": null, - "numero_insee": "72358" - } - }, - { - "pk": 2233, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TORCE-EN-VALLEE", - "center": "POINT (455236.3506066499394365 2349889.2007306660525501)", - "surface": 17010000, - "canton": null, - "numero_insee": "72359" - } - }, - { - "pk": 2637, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TRANGE", - "center": "POINT (434311.5192491052439436 2338908.0732739446684718)", - "surface": 11240000, - "canton": null, - "numero_insee": "72360" - } - }, - { - "pk": 2219, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TRESSON", - "center": "POINT (466858.8388089352520183 2324066.0254991115070879)", - "surface": 29500000, - "canton": null, - "numero_insee": "72361" - } - }, - { - "pk": 2846, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE TRONCHET", - "center": "POINT (432270.5122556990245357 2355803.7759874677285552)", - "surface": 3890000, - "canton": null, - "numero_insee": "72362" - } - }, - { - "pk": 1668, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TUFFE", - "center": "POINT (463855.4002660526894033 2348359.4034724943339825)", - "surface": 24770000, - "canton": null, - "numero_insee": "72363" - } - }, - { - "pk": 2897, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAAS", - "center": "POINT (448152.7517798913177103 2298891.8193190437741578)", - "surface": 30370000, - "canton": null, - "numero_insee": "72364" - } - }, - { - "pk": 1519, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VALENNES", - "center": "POINT (485681.3501499055419117 2335130.4326502671465278)", - "surface": 26710000, - "canton": null, - "numero_insee": "72366" - } - }, - { - "pk": 1714, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VALLON-SUR-GEE", - "center": "POINT (419159.7754380723345093 2331677.6139943981543183)", - "surface": 17290000, - "canton": null, - "numero_insee": "72367" - } - }, - { - "pk": 1989, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VANCE", - "center": "POINT (474428.7781089861528017 2316322.8339090188965201)", - "surface": 12600000, - "canton": null, - "numero_insee": "72368" - } - }, - { - "pk": 1891, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERNEIL-LE-CHETIF", - "center": "POINT (447108.1554955515312031 2304187.3060386679135263)", - "surface": 14790000, - "canton": null, - "numero_insee": "72369" - } - }, - { - "pk": 2969, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VERNIE", - "center": "POINT (427564.0643470527138561 2356165.1989532364532351)", - "surface": 9940000, - "canton": null, - "numero_insee": "72370" - } - }, - { - "pk": 2795, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VEZOT", - "center": "POINT (448626.7154157200129703 2374652.6364927911199629)", - "surface": 6360000, - "canton": null, - "numero_insee": "72372" - } - }, - { - "pk": 2487, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIBRAYE", - "center": "POINT (480938.2713942116242833 2339894.6599521734751761)", - "surface": 43780000, - "canton": null, - "numero_insee": "72373" - } - }, - { - "pk": 2488, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLAINES-LA-CARELLE", - "center": "POINT (448695.3204879086697474 2378455.9409166942350566)", - "surface": 14790000, - "canton": null, - "numero_insee": "72374" - } - }, - { - "pk": 2477, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLAINES-LA-GONAIS", - "center": "POINT (471350.4937941811513156 2349622.4212001198902726)", - "surface": 10400000, - "canton": null, - "numero_insee": "72375" - } - }, - { - "pk": 2109, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLAINES-SOUS-LUCE", - "center": "POINT (462775.0695760787348263 2321730.4282860714010894)", - "surface": 25520000, - "canton": null, - "numero_insee": "72376" - } - }, - { - "pk": 2166, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VILLAINES-SOUS-MALICORNE", - "center": "POINT (416943.0502092206734233 2309242.1890613008290529)", - "surface": 19440000, - "canton": null, - "numero_insee": "72377" - } - }, - { - "pk": 2770, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VION", - "center": "POINT (405178.7135120878228918 2315950.4302276931703091)", - "surface": 20250000, - "canton": null, - "numero_insee": "72378" - } - }, - { - "pk": 1609, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIRE-EN-CHAMPAGNE", - "center": "POINT (403817.9137897047912702 2335353.9837081911973655)", - "surface": 11290000, - "canton": null, - "numero_insee": "72379" - } - }, - { - "pk": 1532, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIVOIN", - "center": "POINT (438420.8925777251715772 2362359.3720574439503253)", - "surface": 18340000, - "canton": null, - "numero_insee": "72380" - } - }, - { - "pk": 1533, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VOIVRES-LES-LE-MANS", - "center": "POINT (431701.4401109163882211 2327778.1324428911320865)", - "surface": 11580000, - "canton": null, - "numero_insee": "72381" - } - }, - { - "pk": 2043, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VOLNAY", - "center": "POINT (460508.0525902649387717 2329617.6515598567202687)", - "surface": 19810000, - "canton": null, - "numero_insee": "72382" - } - }, - { - "pk": 1833, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VOUVRAY-SUR-HUISNE", - "center": "POINT (467090.7328033099765889 2344383.2409438262693584)", - "surface": 3350000, - "canton": null, - "numero_insee": "72383" - } - }, - { - "pk": 1884, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VOUVRAY-SUR-LOIR", - "center": "POINT (458943.8695576611207798 2300982.7206152263097465)", - "surface": 8110000, - "canton": null, - "numero_insee": "72384" - } - }, - { - "pk": 1815, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "YVRE-LE-POLIN", - "center": "POINT (436992.7070023446576670 2317213.7685135882347822)", - "surface": 21870000, - "canton": null, - "numero_insee": "72385" - } - }, - { - "pk": 2388, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "YVRE-L'EVEQUE", - "center": "POINT (446728.2496339187491685 2338009.9845923976972699)", - "surface": 27700000, - "canton": null, - "numero_insee": "72386" - } - }, - { - "pk": 2255, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'AIGUILLON-SUR-MER", - "center": "POINT (324276.6377050703740679 2149547.8983489237725735)", - "surface": 10160000, - "canton": null, - "numero_insee": "85001" - } - }, - { - "pk": 1698, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'AIGUILLON-SUR-VIE", - "center": "POINT (281575.9447110105538741 2194038.7392578269354999)", - "surface": 23190000, - "canton": null, - "numero_insee": "85002" - } - }, - { - "pk": 2486, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AIZENAY", - "center": "POINT (297234.5951987884473056 2200772.1419017598964274)", - "surface": 81990000, - "canton": null, - "numero_insee": "85003" - } - }, - { - "pk": 1750, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANGLES", - "center": "POINT (312673.7935299055534415 2160863.2028324482962489)", - "surface": 33420000, - "canton": null, - "numero_insee": "85004" - } - }, - { - "pk": 2157, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ANTIGNY", - "center": "POINT (362323.2830567572964355 2184590.5161592485383153)", - "surface": 22370000, - "canton": null, - "numero_insee": "85005" - } - }, - { - "pk": 1821, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "APREMONT", - "center": "POINT (288006.0672489898279309 2203299.0963499322533607)", - "surface": 30140000, - "canton": null, - "numero_insee": "85006" - } - }, - { - "pk": 2117, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AUBIGNY", - "center": "POINT (308672.7603269133251160 2185051.8469520662911236)", - "surface": 25990000, - "canton": null, - "numero_insee": "85008" - } - }, - { - "pk": 2677, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AUZAY", - "center": "POINT (353169.3583697064314038 2165798.9426969876512885)", - "surface": 13800000, - "canton": null, - "numero_insee": "85009" - } - }, - { - "pk": 2845, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "AVRILLE", - "center": "POINT (305785.6122986473492347 2170915.8772619264200330)", - "surface": 25540000, - "canton": null, - "numero_insee": "85010" - } - }, - { - "pk": 2789, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BARBATRE", - "center": "POINT (257206.0341598854283802 2224666.7311348160728812)", - "surface": 12640000, - "canton": null, - "numero_insee": "85011" - } - }, - { - "pk": 2505, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BARRE-DE-MONTS", - "center": "POINT (261968.2947750074090436 2217499.3576184897683561)", - "surface": 27290000, - "canton": null, - "numero_insee": "85012" - } - }, - { - "pk": 2976, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BAZOGES-EN-PAILLERS", - "center": "POINT (334915.4158521992503665 2219295.7227073451504111)", - "surface": 11570000, - "canton": null, - "numero_insee": "85013" - } - }, - { - "pk": 1987, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BAZOGES-EN-PAREDS", - "center": "POINT (351272.5667846393189393 2189604.2557317814789712)", - "surface": 33890000, - "canton": null, - "numero_insee": "85014" - } - }, - { - "pk": 2297, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUFOU", - "center": "POINT (305471.7097768235835247 2209346.6807350832968950)", - "surface": 27970000, - "canton": null, - "numero_insee": "85015" - } - }, - { - "pk": 1959, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAULIEU-SOUS-LA-ROCHE", - "center": "POINT (297181.0716442281263880 2195066.7844935813918710)", - "surface": 25770000, - "canton": null, - "numero_insee": "85016" - } - }, - { - "pk": 2382, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUREPAIRE", - "center": "POINT (338134.3033075053244829 2217320.3948069089092314)", - "surface": 24490000, - "canton": null, - "numero_insee": "85017" - } - }, - { - "pk": 2490, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BEAUVOIR-SUR-MER", - "center": "POINT (264938.8908237472642213 2221426.8286436004564166)", - "surface": 35090000, - "canton": null, - "numero_insee": "85018" - } - }, - { - "pk": 1820, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BELLEVILLE-SUR-VIE", - "center": "POINT (312219.5143295807647519 2204197.3574361391365528)", - "surface": 15250000, - "canton": null, - "numero_insee": "85019" - } - }, - { - "pk": 2471, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BENET", - "center": "POINT (372965.2825816419208422 2156252.8959196754731238)", - "surface": 50290000, - "canton": null, - "numero_insee": "85020" - } - }, - { - "pk": 2371, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BERNARDIERE", - "center": "POINT (325699.4236101033166051 2232531.4652335061691701)", - "surface": 14790000, - "canton": null, - "numero_insee": "85021" - } - }, - { - "pk": 2161, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BERNARD", - "center": "POINT (309914.3150127534172498 2167846.8680894342251122)", - "surface": 27540000, - "canton": null, - "numero_insee": "85022" - } - }, - { - "pk": 2050, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BESSAY", - "center": "POINT (331057.9134279027930461 2177027.7614760389551520)", - "surface": 10760000, - "canton": null, - "numero_insee": "85023" - } - }, - { - "pk": 2054, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOIS-DE-CENE", - "center": "POINT (277820.4187172826495953 2225034.6453178413212299)", - "surface": 42710000, - "canton": null, - "numero_insee": "85024" - } - }, - { - "pk": 2689, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BOISSIERE-DE-MONTAIGU", - "center": "POINT (331489.0088140054140240 2222170.1165209300816059)", - "surface": 29220000, - "canton": null, - "numero_insee": "85025" - } - }, - { - "pk": 2006, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BOISSIERE-DES-LANDES", - "center": "POINT (310214.8610315325786360 2180060.0746363350190222)", - "surface": 23830000, - "canton": null, - "numero_insee": "85026" - } - }, - { - "pk": 2449, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUFFERE", - "center": "POINT (320063.7860595592064783 2224078.3188938298262656)", - "surface": 16530000, - "canton": null, - "numero_insee": "85027" - } - }, - { - "pk": 1906, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUILLE-COURDAULT", - "center": "POINT (367643.6390817645005882 2158311.0335181257687509)", - "surface": 9750000, - "canton": null, - "numero_insee": "85028" - } - }, - { - "pk": 2235, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOUIN", - "center": "POINT (269879.2561906421324238 2229273.6067353766411543)", - "surface": 52240000, - "canton": null, - "numero_insee": "85029" - } - }, - { - "pk": 1773, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOULOGNE", - "center": "POINT (322522.7476516654714942 2204882.1157308858819306)", - "surface": 12440000, - "canton": null, - "numero_insee": "85030" - } - }, - { - "pk": 1588, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE BOUPERE", - "center": "POINT (350555.5223230509436689 2203810.6224101176485419)", - "surface": 43660000, - "canton": null, - "numero_insee": "85031" - } - }, - { - "pk": 2996, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOURNEAU", - "center": "POINT (358384.1458509634248912 2176751.3532147766090930)", - "surface": 16330000, - "canton": null, - "numero_insee": "85033" - } - }, - { - "pk": 2082, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BOURNEZEAU", - "center": "POINT (333779.0391601015580818 2186958.7002887898124754)", - "surface": 61070000, - "canton": null, - "numero_insee": "85034" - } - }, - { - "pk": 2426, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BRETIGNOLLES-SUR-MER", - "center": "POINT (278602.0816866094246507 2190511.4684760840609670)", - "surface": 27330000, - "canton": null, - "numero_insee": "85035" - } - }, - { - "pk": 2917, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BRETONNIERE-LA-CLAYE", - "center": "POINT (323294.9858982833102345 2171659.5555236143991351)", - "surface": 16440000, - "canton": null, - "numero_insee": "85036" - } - }, - { - "pk": 2810, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BREUIL-BARRET", - "center": "POINT (369703.7379831235157326 2187753.8395844730548561)", - "surface": 14910000, - "canton": null, - "numero_insee": "85037" - } - }, - { - "pk": 2592, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES BROUZILS", - "center": "POINT (320530.3916953180450946 2215975.2861932679079473)", - "surface": 41670000, - "canton": null, - "numero_insee": "85038" - } - }, - { - "pk": 1746, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA BRUFFIERE", - "center": "POINT (332427.5140120536088943 2229784.1882658144459128)", - "surface": 40650000, - "canton": null, - "numero_insee": "85039" - } - }, - { - "pk": 1722, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CAILLERE-SAINT-HILAIRE", - "center": "POINT (349699.1942072167294100 2186188.3945902427658439)", - "surface": 15420000, - "canton": null, - "numero_insee": "85040" - } - }, - { - "pk": 1543, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CEZAIS", - "center": "POINT (359445.5992525247856975 2181564.2706371210515499)", - "surface": 12230000, - "canton": null, - "numero_insee": "85041" - } - }, - { - "pk": 2892, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAILLE-LES-MARAIS", - "center": "POINT (342613.1824291810626164 2159306.6804100065492094)", - "surface": 40100000, - "canton": null, - "numero_insee": "85042" - } - }, - { - "pk": 2574, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAILLE-SOUS-LES-ORMEAUX", - "center": "POINT (316118.8188194460235536 2180208.4220870253629982)", - "surface": 17550000, - "canton": null, - "numero_insee": "85043" - } - }, - { - "pk": 1808, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAIX", - "center": "POINT (354592.6797844585962594 2163108.2268194318749011)", - "surface": 7410000, - "canton": null, - "numero_insee": "85044" - } - }, - { - "pk": 1781, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAIZE-GIRAUD", - "center": "POINT (281997.4712665103143081 2191439.9183393232524395)", - "surface": 2780000, - "canton": null, - "numero_insee": "85045" - } - }, - { - "pk": 1552, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAIZE-LE-VICOMTE", - "center": "POINT (322425.7458574000629596 2192270.4617830002680421)", - "surface": 49730000, - "canton": null, - "numero_insee": "85046" - } - }, - { - "pk": 2982, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHALLANS", - "center": "POINT (281526.7787049582111649 2212354.0721965529955924)", - "surface": 65470000, - "canton": null, - "numero_insee": "85047" - } - }, - { - "pk": 2832, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMBRETAUD", - "center": "POINT (347834.4806963359005749 2218300.6558636892586946)", - "surface": 16220000, - "canton": null, - "numero_insee": "85048" - } - }, - { - "pk": 2749, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAMPAGNE-LES-MARAIS", - "center": "POINT (333011.8261563440901227 2158427.2960754595696926)", - "surface": 49820000, - "canton": null, - "numero_insee": "85049" - } - }, - { - "pk": 2923, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE CHAMP-SAINT-PERE", - "center": "POINT (317963.6534153213724494 2174918.8531796014867723)", - "surface": 24740000, - "canton": null, - "numero_insee": "85050" - } - }, - { - "pk": 2571, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHANTONNAY", - "center": "POINT (341353.1556689107092097 2190924.1397729348391294)", - "surface": 83820000, - "canton": null, - "numero_insee": "85051" - } - }, - { - "pk": 2415, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-ACHARD", - "center": "POINT (293668.0149608069914393 2184028.5500715649686754)", - "surface": 21830000, - "canton": null, - "numero_insee": "85052" - } - }, - { - "pk": 2556, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-AUX-LYS", - "center": "POINT (371832.5644977745832875 2184468.4627279182896018)", - "surface": 10680000, - "canton": null, - "numero_insee": "85053" - } - }, - { - "pk": 2573, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-HERMIER", - "center": "POINT (289675.8956117028719746 2194905.4672308089211583)", - "surface": 18130000, - "canton": null, - "numero_insee": "85054" - } - }, - { - "pk": 1999, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-PALLUAU", - "center": "POINT (297590.8068891038419679 2206179.6875508730299771)", - "surface": 12950000, - "canton": null, - "numero_insee": "85055" - } - }, - { - "pk": 2721, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHAPELLE-THEMER", - "center": "POINT (347255.4534075513365678 2179062.1521107200533152)", - "surface": 15160000, - "canton": null, - "numero_insee": "85056" - } - }, - { - "pk": 1590, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHASNAIS", - "center": "POINT (325335.9312601667479612 2166872.0119463591836393)", - "surface": 10850000, - "canton": null, - "numero_insee": "85058" - } - }, - { - "pk": 2722, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA CHATAIGNERAIE", - "center": "POINT (364506.1462490573176183 2186910.4451017403043807)", - "surface": 7960000, - "canton": null, - "numero_insee": "85059" - } - }, - { - "pk": 2318, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAU-D'OLONNE", - "center": "POINT (288546.2517656395211816 2173877.9023317494429648)", - "surface": 31290000, - "canton": null, - "numero_insee": "85060" - } - }, - { - "pk": 2437, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAU-GUIBERT", - "center": "POINT (324718.4061855822801590 2181179.5519878296181560)", - "surface": 35180000, - "canton": null, - "numero_insee": "85061" - } - }, - { - "pk": 2538, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHATEAUNEUF", - "center": "POINT (275445.4488258451456204 2221712.5160513049922884)", - "surface": 16030000, - "canton": null, - "numero_insee": "85062" - } - }, - { - "pk": 2307, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES CHATELLIERS-CHATEAUMUR", - "center": "POINT (358191.7819499267498031 2212380.5323321190662682)", - "surface": 18330000, - "canton": null, - "numero_insee": "85063" - } - }, - { - "pk": 2379, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAUCHE", - "center": "POINT (324787.7165109644411132 2209404.4947688826359808)", - "surface": 41880000, - "canton": null, - "numero_insee": "85064" - } - }, - { - "pk": 2752, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAVAGNES-EN-PAILLERS", - "center": "POINT (327530.1289787387358956 2216733.1456031082198024)", - "surface": 40450000, - "canton": null, - "numero_insee": "85065" - } - }, - { - "pk": 1990, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHAVAGNES-LES-REDOUX", - "center": "POINT (351327.4947347964625806 2195109.4686284037306905)", - "surface": 13580000, - "canton": null, - "numero_insee": "85066" - } - }, - { - "pk": 2317, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CHEFFOIS", - "center": "POINT (361368.3249242426827550 2191188.4104649033397436)", - "surface": 18800000, - "canton": null, - "numero_insee": "85067" - } - }, - { - "pk": 2632, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES CLOUZEAUX", - "center": "POINT (306742.6145463334978558 2188539.1282434551976621)", - "surface": 26500000, - "canton": null, - "numero_insee": "85069" - } - }, - { - "pk": 2483, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COEX", - "center": "POINT (287049.3372939005494118 2197886.6431030668318272)", - "surface": 39830000, - "canton": null, - "numero_insee": "85070" - } - }, - { - "pk": 2164, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "COMMEQUIERS", - "center": "POINT (282189.2336744432686828 2204752.9677324616350234)", - "surface": 40630000, - "canton": null, - "numero_insee": "85071" - } - }, - { - "pk": 2801, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA COPECHAGNIERE", - "center": "POINT (319458.9944955761893652 2212363.4640922290273011)", - "surface": 9900000, - "canton": null, - "numero_insee": "85072" - } - }, - { - "pk": 1943, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CORPE", - "center": "POINT (330888.8903432617080398 2173223.0348618915304542)", - "surface": 17070000, - "canton": null, - "numero_insee": "85073" - } - }, - { - "pk": 1912, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA COUTURE", - "center": "POINT (323763.4559451403911225 2175566.8246942036785185)", - "surface": 7220000, - "canton": null, - "numero_insee": "85074" - } - }, - { - "pk": 2408, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CUGAND", - "center": "POINT (327379.4380354012828320 2235147.3819180014543235)", - "surface": 13750000, - "canton": null, - "numero_insee": "85076" - } - }, - { - "pk": 2796, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "CURZON", - "center": "POINT (320525.4496124888537452 2167633.3609236218035221)", - "surface": 5930000, - "canton": null, - "numero_insee": "85077" - } - }, - { - "pk": 2714, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DAMVIX", - "center": "POINT (362796.3169758552685380 2151365.0440390012226999)", - "surface": 11500000, - "canton": null, - "numero_insee": "85078" - } - }, - { - "pk": 2756, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DOIX", - "center": "POINT (358232.6059560261201113 2158634.0984621918760240)", - "surface": 13430000, - "canton": null, - "numero_insee": "85080" - } - }, - { - "pk": 2418, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "DOMPIERRE-SUR-YON", - "center": "POINT (316739.4386123617878184 2202232.5872753839939833)", - "surface": 33930000, - "canton": null, - "numero_insee": "85081" - } - }, - { - "pk": 2289, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES EPESSES", - "center": "POINT (353164.0579491542885080 2215241.7400443982332945)", - "surface": 31560000, - "canton": null, - "numero_insee": "85082" - } - }, - { - "pk": 2163, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'EPINE", - "center": "POINT (250150.9928001896478236 2230714.5342557681724429)", - "surface": 8690000, - "canton": null, - "numero_insee": "85083" - } - }, - { - "pk": 2458, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES ESSARTS", - "center": "POINT (327734.2272752099088393 2204023.9865169152617455)", - "surface": 56530000, - "canton": null, - "numero_insee": "85084" - } - }, - { - "pk": 1915, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FALLERON", - "center": "POINT (292215.5968485405901447 2214843.2583521441556513)", - "surface": 29050000, - "canton": null, - "numero_insee": "85086" - } - }, - { - "pk": 1747, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FAYMOREAU", - "center": "POINT (372905.7607689007418230 2175669.5859158732928336)", - "surface": 10960000, - "canton": null, - "numero_insee": "85087" - } - }, - { - "pk": 1576, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE FENOUILLER", - "center": "POINT (276828.9760588412755169 2199304.6470559057779610)", - "surface": 17760000, - "canton": null, - "numero_insee": "85088" - } - }, - { - "pk": 2259, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FERRIERE", - "center": "POINT (319378.3294747994514182 2197750.2914024614728987)", - "surface": 46950000, - "canton": null, - "numero_insee": "85089" - } - }, - { - "pk": 1587, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FLOCELLIERE", - "center": "POINT (356532.3360298657789826 2207262.5665900604799390)", - "surface": 29250000, - "canton": null, - "numero_insee": "85090" - } - }, - { - "pk": 1721, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FONTAINES", - "center": "POINT (358299.8242148550925776 2162638.2101245368830860)", - "surface": 10600000, - "canton": null, - "numero_insee": "85091" - } - }, - { - "pk": 2007, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FONTENAY-LE-COMTE", - "center": "POINT (359568.8457090090378188 2166552.0873232888989151)", - "surface": 34150000, - "canton": null, - "numero_insee": "85092" - } - }, - { - "pk": 2331, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FOUGERE", - "center": "POINT (326641.3903362257988192 2190803.6550236977636814)", - "surface": 27220000, - "canton": null, - "numero_insee": "85093" - } - }, - { - "pk": 1617, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FOUSSAIS-PAYRE", - "center": "POINT (368018.2347874083206989 2173627.6617601104080677)", - "surface": 34570000, - "canton": null, - "numero_insee": "85094" - } - }, - { - "pk": 1879, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "FROIDFOND", - "center": "POINT (288196.1411541808629408 2216812.1786389816552401)", - "surface": 21810000, - "canton": null, - "numero_insee": "85095" - } - }, - { - "pk": 2100, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GARNACHE", - "center": "POINT (283072.5754227858269587 2219172.4495127187110484)", - "surface": 60520000, - "canton": null, - "numero_insee": "85096" - } - }, - { - "pk": 2784, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GAUBRETIERE", - "center": "POINT (341711.6874222299084067 2220452.3271874366328120)", - "surface": 30140000, - "canton": null, - "numero_insee": "85097" - } - }, - { - "pk": 1892, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GENETOUZE", - "center": "POINT (306459.0683241214137524 2198745.6475880485959351)", - "surface": 13950000, - "canton": null, - "numero_insee": "85098" - } - }, - { - "pk": 1531, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GIROUARD", - "center": "POINT (299187.9776164739741944 2182171.9379781465977430)", - "surface": 25500000, - "canton": null, - "numero_insee": "85099" - } - }, - { - "pk": 2991, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GIVRAND", - "center": "POINT (277660.5937662380165420 2195508.1368192113004625)", - "surface": 11800000, - "canton": null, - "numero_insee": "85100" - } - }, - { - "pk": 2206, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GIVRE", - "center": "POINT (312895.5010514755267650 2170473.5344723965972662)", - "surface": 12490000, - "canton": null, - "numero_insee": "85101" - } - }, - { - "pk": 1725, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GRAND'LANDES", - "center": "POINT (296434.4045825764187612 2212976.0599365779198706)", - "surface": 20320000, - "canton": null, - "numero_insee": "85102" - } - }, - { - "pk": 2025, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GROSBREUIL", - "center": "POINT (297616.0917545193806291 2178555.9508896139450371)", - "surface": 36690000, - "canton": null, - "numero_insee": "85103" - } - }, - { - "pk": 2609, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "GRUES", - "center": "POINT (318485.9401444457471371 2160009.9249867256730795)", - "surface": 47690000, - "canton": null, - "numero_insee": "85104" - } - }, - { - "pk": 2937, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE GUE-DE-VELLUIRE", - "center": "POINT (350538.5749874396715313 2157069.6200331561267376)", - "surface": 12840000, - "canton": null, - "numero_insee": "85105" - } - }, - { - "pk": 2952, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GUERINIERE", - "center": "POINT (252670.0040181766962633 2228633.2352916281670332)", - "surface": 7900000, - "canton": null, - "numero_insee": "85106" - } - }, - { - "pk": 2352, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA GUYONNIERE", - "center": "POINT (326761.6101077456842177 2225033.8670698972418904)", - "surface": 22990000, - "canton": null, - "numero_insee": "85107" - } - }, - { - "pk": 1653, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'HERBERGEMENT", - "center": "POINT (317698.7455426015076227 2219555.1812752611003816)", - "surface": 16920000, - "canton": null, - "numero_insee": "85108" - } - }, - { - "pk": 2372, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES HERBIERS", - "center": "POINT (343975.7387693409109488 2212864.4418811448849738)", - "surface": 88870000, - "canton": null, - "numero_insee": "85109" - } - }, - { - "pk": 2864, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'HERMENAULT", - "center": "POINT (351805.0712387880776078 2173494.5502345832064748)", - "surface": 11420000, - "canton": null, - "numero_insee": "85110" - } - }, - { - "pk": 2927, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'ILE-D'ELLE", - "center": "POINT (349368.7801290957722813 2153256.6255448507145047)", - "surface": 19200000, - "canton": null, - "numero_insee": "85111" - } - }, - { - "pk": 2543, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'ILE-D'OLONNE", - "center": "POINT (284971.5955181611352600 2182656.4867387427948415)", - "surface": 19550000, - "canton": null, - "numero_insee": "85112" - } - }, - { - "pk": 2208, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'ILE-D'YEU", - "center": "POINT (242089.1153707928606309 2200523.4290037509053946)", - "surface": 24650000, - "canton": null, - "numero_insee": "85113" - } - }, - { - "pk": 2254, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "JARD-SUR-MER", - "center": "POINT (297519.6774053105036728 2165843.9505943744443357)", - "surface": 16820000, - "canton": null, - "numero_insee": "85114" - } - }, - { - "pk": 1581, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA JAUDONNIERE", - "center": "POINT (347478.5513814906589687 2188472.1836955486796796)", - "surface": 8270000, - "canton": null, - "numero_insee": "85115" - } - }, - { - "pk": 1827, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA JONCHERE", - "center": "POINT (314030.7636549168964848 2166279.0966092003509402)", - "surface": 11540000, - "canton": null, - "numero_insee": "85116" - } - }, - { - "pk": 1779, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LAIROUX", - "center": "POINT (322929.8709637100691907 2167352.7661374434828758)", - "surface": 13310000, - "canton": null, - "numero_insee": "85117" - } - }, - { - "pk": 1541, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LANDERONDE", - "center": "POINT (300814.9955529240542091 2191293.1535128634423018)", - "surface": 18270000, - "canton": null, - "numero_insee": "85118" - } - }, - { - "pk": 2731, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES LANDES-GENUSSON", - "center": "POINT (336275.5221391661907546 2224311.0801250524818897)", - "surface": 31270000, - "canton": null, - "numero_insee": "85119" - } - }, - { - "pk": 2528, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LANDEVIEILLE", - "center": "POINT (284603.6361685029696673 2190960.7263921615667641)", - "surface": 13810000, - "canton": null, - "numero_insee": "85120" - } - }, - { - "pk": 1650, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE LANGON", - "center": "POINT (347669.7791836877586320 2165153.2971735978499055)", - "surface": 23760000, - "canton": null, - "numero_insee": "85121" - } - }, - { - "pk": 2635, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LIEZ", - "center": "POINT (365955.3935266735497862 2156695.7357276603579521)", - "surface": 8480000, - "canton": null, - "numero_insee": "85123" - } - }, - { - "pk": 2739, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LOGE-FOUGEREUSE", - "center": "POINT (368231.3151796518359333 2184238.6951961047016084)", - "surface": 10350000, - "canton": null, - "numero_insee": "85125" - } - }, - { - "pk": 2724, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LONGEVES", - "center": "POINT (354648.4113614542875439 2168513.4691489771939814)", - "surface": 11900000, - "canton": null, - "numero_insee": "85126" - } - }, - { - "pk": 2610, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LONGEVILLE-SUR-MER", - "center": "POINT (306846.1174520768690854 2163618.0701273051090539)", - "surface": 38030000, - "canton": null, - "numero_insee": "85127" - } - }, - { - "pk": 1938, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LUCON", - "center": "POINT (331038.9601624349015765 2167118.8746921736747026)", - "surface": 31420000, - "canton": null, - "numero_insee": "85128" - } - }, - { - "pk": 2867, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES LUCS-SUR-BOULOGNE", - "center": "POINT (308745.6920305870007724 2212876.4084301376715302)", - "surface": 53190000, - "canton": null, - "numero_insee": "85129" - } - }, - { - "pk": 1631, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MACHE", - "center": "POINT (292198.7842049242462963 2204634.4067705599591136)", - "surface": 18160000, - "canton": null, - "numero_insee": "85130" - } - }, - { - "pk": 2997, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES MAGNILS-REIGNIERS", - "center": "POINT (327623.0687736545223743 2168692.3253436698578298)", - "surface": 18060000, - "canton": null, - "numero_insee": "85131" - } - }, - { - "pk": 2872, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAILLE", - "center": "POINT (359573.1194483215222135 2153840.8160596247762442)", - "surface": 17680000, - "canton": null, - "numero_insee": "85132" - } - }, - { - "pk": 2672, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAILLEZAIS", - "center": "POINT (362456.6147150343167596 2156166.5505756228230894)", - "surface": 20480000, - "canton": null, - "numero_insee": "85133" - } - }, - { - "pk": 1919, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MALLIEVRE", - "center": "POINT (356149.9758911856333725 2217267.9333640220575035)", - "surface": 220000, - "canton": null, - "numero_insee": "85134" - } - }, - { - "pk": 2467, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MAREUIL-SUR-LAY-DISSAIS", - "center": "POINT (326658.4398537907982245 2176491.3070120736956596)", - "surface": 25700000, - "canton": null, - "numero_insee": "85135" - } - }, - { - "pk": 1717, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARILLET", - "center": "POINT (372283.0640258297207765 2178366.8356844186782837)", - "surface": 4210000, - "canton": null, - "numero_insee": "85136" - } - }, - { - "pk": 1566, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARSAIS-SAINTE-RADEGONDE", - "center": "POINT (354188.1337327899527736 2175816.1253175479359925)", - "surface": 14720000, - "canton": null, - "numero_insee": "85137" - } - }, - { - "pk": 2384, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MARTINET", - "center": "POINT (292898.8644804657087661 2192429.5897769532166421)", - "surface": 18400000, - "canton": null, - "numero_insee": "85138" - } - }, - { - "pk": 2553, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE MAZEAU", - "center": "POINT (368295.1211461343918927 2152110.8447105083614588)", - "surface": 8320000, - "canton": null, - "numero_insee": "85139" - } - }, - { - "pk": 2111, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MEILLERAIE-TILLAY", - "center": "POINT (356203.4722552620805800 2198552.4063084293156862)", - "surface": 20210000, - "canton": null, - "numero_insee": "85140" - } - }, - { - "pk": 2118, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MENOMBLET", - "center": "POINT (365726.6276898460928351 2196728.9556197486817837)", - "surface": 21180000, - "canton": null, - "numero_insee": "85141" - } - }, - { - "pk": 2966, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MERLATIERE", - "center": "POINT (322450.5039327895501629 2201478.6061766729690135)", - "surface": 15040000, - "canton": null, - "numero_insee": "85142" - } - }, - { - "pk": 2330, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MERVENT", - "center": "POINT (363403.8129474784946069 2174890.8997786450199783)", - "surface": 22480000, - "canton": null, - "numero_insee": "85143" - } - }, - { - "pk": 2586, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MESNARD-LA-BAROTIERE", - "center": "POINT (337281.1484034670866095 2211508.4800226534716785)", - "surface": 11840000, - "canton": null, - "numero_insee": "85144" - } - }, - { - "pk": 1504, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONSIREIGNE", - "center": "POINT (350300.4310839658137411 2198303.8044424657709897)", - "surface": 20920000, - "canton": null, - "numero_insee": "85145" - } - }, - { - "pk": 1510, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTAIGU", - "center": "POINT (322350.0163646739674732 2225998.6161811784841120)", - "surface": 3050000, - "canton": null, - "numero_insee": "85146" - } - }, - { - "pk": 2079, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTOURNAIS", - "center": "POINT (362704.5205425324966200 2199106.2032892005518079)", - "surface": 29450000, - "canton": null, - "numero_insee": "85147" - } - }, - { - "pk": 2704, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MONTREUIL", - "center": "POINT (355718.2246033443370834 2160114.7960931891575456)", - "surface": 12030000, - "canton": null, - "numero_insee": "85148" - } - }, - { - "pk": 1771, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOREILLES", - "center": "POINT (336371.9951207472477108 2163659.4496596972458065)", - "surface": 19780000, - "canton": null, - "numero_insee": "85149" - } - }, - { - "pk": 2302, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MORMAISON", - "center": "POINT (310904.0774167226627469 2218198.5442337077111006)", - "surface": 15680000, - "canton": null, - "numero_insee": "85150" - } - }, - { - "pk": 2083, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MORTAGNE-SUR-SEVRE", - "center": "POINT (350269.9468143436824903 2226427.4542663698084652)", - "surface": 22060000, - "canton": null, - "numero_insee": "85151" - } - }, - { - "pk": 2723, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA MOTHE-ACHARD", - "center": "POINT (294742.7704614161048084 2187240.1123636942356825)", - "surface": 8610000, - "canton": null, - "numero_insee": "85152" - } - }, - { - "pk": 2924, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUCHAMPS", - "center": "POINT (341144.8160837161121890 2204133.8132912120781839)", - "surface": 54870000, - "canton": null, - "numero_insee": "85153" - } - }, - { - "pk": 1618, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUILLERON-EN-PAREDS", - "center": "POINT (356378.2920625014812686 2189445.9741859012283385)", - "surface": 20160000, - "canton": null, - "numero_insee": "85154" - } - }, - { - "pk": 2981, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUILLERON-LE-CAPTIF", - "center": "POINT (309675.5151186003349721 2197070.4576012622565031)", - "surface": 19220000, - "canton": null, - "numero_insee": "85155" - } - }, - { - "pk": 2998, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUTIERS-LES-MAUXFAITS", - "center": "POINT (310377.9186006266972981 2172354.6353399874642491)", - "surface": 9240000, - "canton": null, - "numero_insee": "85156" - } - }, - { - "pk": 2099, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUTIERS-SUR-LE-LAY", - "center": "POINT (331335.2115001102210954 2179832.4879089184105396)", - "surface": 18400000, - "canton": null, - "numero_insee": "85157" - } - }, - { - "pk": 2767, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "MOUZEUIL-SAINT-MARTIN", - "center": "POINT (344948.6935347379185259 2167433.0221346998587251)", - "surface": 26030000, - "canton": null, - "numero_insee": "85158" - } - }, - { - "pk": 2719, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NALLIERS", - "center": "POINT (340737.0558989801793359 2168399.3831251924857497)", - "surface": 32840000, - "canton": null, - "numero_insee": "85159" - } - }, - { - "pk": 1594, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NESMY", - "center": "POINT (312987.6778634966467507 2183685.8868398251943290)", - "surface": 24620000, - "canton": null, - "numero_insee": "85160" - } - }, - { - "pk": 1679, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NIEUL-LE-DOLENT", - "center": "POINT (304799.8614936093799770 2181316.9741282970644534)", - "surface": 28020000, - "canton": null, - "numero_insee": "85161" - } - }, - { - "pk": 2356, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NIEUL-SUR-L'AUTISE", - "center": "POINT (369209.5925275440677069 2162627.7272416688501835)", - "surface": 22730000, - "canton": null, - "numero_insee": "85162" - } - }, - { - "pk": 1992, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOIRMOUTIER-EN-L'ILE", - "center": "POINT (250429.2736284289276227 2233419.0595539361238480)", - "surface": 19970000, - "canton": null, - "numero_insee": "85163" - } - }, - { - "pk": 1734, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOTRE-DAME-DE-MONTS", - "center": "POINT (261093.6350362614030018 2214289.5215035621076822)", - "surface": 20750000, - "canton": null, - "numero_insee": "85164" - } - }, - { - "pk": 2031, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'OIE", - "center": "POINT (336044.0659390359069221 2203691.6811706582084298)", - "surface": 14300000, - "canton": null, - "numero_insee": "85165" - } - }, - { - "pk": 1535, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "OLONNE-SUR-MER", - "center": "POINT (283795.9154753283946775 2179544.1850260007195175)", - "surface": 46080000, - "canton": null, - "numero_insee": "85166" - } - }, - { - "pk": 2649, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "L'ORBRIE", - "center": "POINT (361231.6117181276204064 2171269.8925163215026259)", - "surface": 9650000, - "canton": null, - "numero_insee": "85167" - } - }, - { - "pk": 2848, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "OULMES", - "center": "POINT (369437.7199227897217497 2159226.5777419586665928)", - "surface": 9290000, - "canton": null, - "numero_insee": "85168" - } - }, - { - "pk": 1514, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PALLUAU", - "center": "POINT (299475.9701183728175238 2208196.7862319694831967)", - "surface": 7480000, - "canton": null, - "numero_insee": "85169" - } - }, - { - "pk": 1887, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PEAULT", - "center": "POINT (326486.9465878336923197 2172986.8231491530314088)", - "surface": 9070000, - "canton": null, - "numero_insee": "85171" - } - }, - { - "pk": 2618, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE PERRIER", - "center": "POINT (270827.3241506764316000 2211165.9914259901270270)", - "surface": 33000000, - "canton": null, - "numero_insee": "85172" - } - }, - { - "pk": 2808, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PETOSSE", - "center": "POINT (350636.9346563087310642 2169481.4399625621736050)", - "surface": 15900000, - "canton": null, - "numero_insee": "85174" - } - }, - { - "pk": 2353, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES PINEAUX", - "center": "POINT (330703.5885136268916540 2183630.6398016563616693)", - "surface": 17340000, - "canton": null, - "numero_insee": "85175" - } - }, - { - "pk": 2842, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PISSOTTE", - "center": "POINT (358627.0297243644017726 2171548.7729584150947630)", - "surface": 11910000, - "canton": null, - "numero_insee": "85176" - } - }, - { - "pk": 2825, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE POIRE-SUR-VELLUIRE", - "center": "POINT (350391.6952109985868447 2162773.4921950171701610)", - "surface": 17020000, - "canton": null, - "numero_insee": "85177" - } - }, - { - "pk": 2095, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE POIRE-SUR-VIE", - "center": "POINT (306718.4325174839468673 2203752.0681145237758756)", - "surface": 72000000, - "canton": null, - "numero_insee": "85178" - } - }, - { - "pk": 1586, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "POIROUX", - "center": "POINT (302648.7530009218025953 2175093.9615229754708707)", - "surface": 25720000, - "canton": null, - "numero_insee": "85179" - } - }, - { - "pk": 2948, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA POMMERAIE-SUR-SEVRE", - "center": "POINT (361233.5688734105788171 2207601.4115285379812121)", - "surface": 15710000, - "canton": null, - "numero_insee": "85180" - } - }, - { - "pk": 1903, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "POUILLE", - "center": "POINT (347412.1633142352802679 2172157.3733842489309609)", - "surface": 17230000, - "canton": null, - "numero_insee": "85181" - } - }, - { - "pk": 2288, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "POUZAUGES", - "center": "POINT (358370.7169006530311890 2202773.8025690210051835)", - "surface": 36510000, - "canton": null, - "numero_insee": "85182" - } - }, - { - "pk": 2041, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PUY-DE-SERRE", - "center": "POINT (368781.0566089965868741 2178237.9683719496242702)", - "surface": 13870000, - "canton": null, - "numero_insee": "85184" - } - }, - { - "pk": 2668, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "PUYRAVAULT", - "center": "POINT (336323.5683187980903313 2157353.4417767068371177)", - "surface": 17250000, - "canton": null, - "numero_insee": "85185" - } - }, - { - "pk": 1985, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA RABATELIERE", - "center": "POINT (326061.7142533494043164 2212717.7315472164191306)", - "surface": 8170000, - "canton": null, - "numero_insee": "85186" - } - }, - { - "pk": 2053, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "REAUMUR", - "center": "POINT (358932.7245602522161789 2195271.9614526028744876)", - "surface": 22240000, - "canton": null, - "numero_insee": "85187" - } - }, - { - "pk": 1628, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA REORTHE", - "center": "POINT (340704.2649990629870445 2184613.3430168898776174)", - "surface": 24110000, - "canton": null, - "numero_insee": "85188" - } - }, - { - "pk": 2599, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "NOTRE-DAME-DE-RIEZ", - "center": "POINT (276895.6324426191276871 2203408.7215145686641335)", - "surface": 14740000, - "canton": null, - "numero_insee": "85189" - } - }, - { - "pk": 1577, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROCHESERVIERE", - "center": "POINT (307776.3159241458633915 2221275.6142660039477050)", - "surface": 28250000, - "canton": null, - "numero_insee": "85190" - } - }, - { - "pk": 2308, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA ROCHE-SUR-YON", - "center": "POINT (313519.4439237126498483 2192097.5449812430888414)", - "surface": 87780000, - "canton": null, - "numero_insee": "85191" - } - }, - { - "pk": 2527, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROCHETREJOUX", - "center": "POINT (345552.3934185300022364 2203669.5109426281414926)", - "surface": 11010000, - "canton": null, - "numero_insee": "85192" - } - }, - { - "pk": 1874, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "ROSNAY", - "center": "POINT (321052.2563600398716517 2176645.6104750586673617)", - "surface": 14220000, - "canton": null, - "numero_insee": "85193" - } - }, - { - "pk": 2939, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LES SABLES-D'OLONNE", - "center": "POINT (283132.0582577873719856 2175034.8156271949410439)", - "surface": 8700000, - "canton": null, - "numero_insee": "85194" - } - }, - { - "pk": 1964, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ANDRE-GOULE-D'OIE", - "center": "POINT (330583.2654509396525100 2210552.8647790113463998)", - "surface": 20380000, - "canton": null, - "numero_insee": "85196" - } - }, - { - "pk": 2175, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ANDRE-TREIZE-VOIES", - "center": "POINT (314584.8781959934858605 2220930.9093863554298878)", - "surface": 18940000, - "canton": null, - "numero_insee": "85197" - } - }, - { - "pk": 1667, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-DES-ORMEAUX", - "center": "POINT (343057.0030121845193207 2227269.0769117348827422)", - "surface": 12660000, - "canton": null, - "numero_insee": "85198" - } - }, - { - "pk": 2663, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AUBIN-LA-PLAINE", - "center": "POINT (339000.4025354132754728 2172688.9478928092867136)", - "surface": 11610000, - "canton": null, - "numero_insee": "85199" - } - }, - { - "pk": 2702, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-AVAUGOURD-DES-LANDES", - "center": "POINT (307551.9222902506589890 2175234.0995170436799526)", - "surface": 20860000, - "canton": null, - "numero_insee": "85200" - } - }, - { - "pk": 1526, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-BENOIST-SUR-MER", - "center": "POINT (317443.3729831188102253 2165105.9355499953962862)", - "surface": 15560000, - "canton": null, - "numero_insee": "85201" - } - }, - { - "pk": 1540, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-CECILE", - "center": "POINT (335789.7329999501816928 2198084.7833168683573604)", - "surface": 32090000, - "canton": null, - "numero_insee": "85202" - } - }, - { - "pk": 2431, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CHRISTOPHE-DU-LIGNERON", - "center": "POINT (288954.6295641952310689 2209712.3157362467609346)", - "surface": 42140000, - "canton": null, - "numero_insee": "85204" - } - }, - { - "pk": 2158, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CYR-DES-GATS", - "center": "POINT (354757.4122152479831129 2179624.1293291617184877)", - "surface": 21080000, - "canton": null, - "numero_insee": "85205" - } - }, - { - "pk": 2641, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-CYR-EN-TALMONDAIS", - "center": "POINT (317914.3174362260615453 2168712.9777561607770622)", - "surface": 13920000, - "canton": null, - "numero_insee": "85206" - } - }, - { - "pk": 1669, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-DENIS-DU-PAYRE", - "center": "POINT (322563.9354369505890645 2163146.0448015131987631)", - "surface": 16310000, - "canton": null, - "numero_insee": "85207" - } - }, - { - "pk": 2546, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-DENIS-LA-CHEVASSE", - "center": "POINT (316272.8473853592877276 2210335.7078202199190855)", - "surface": 39850000, - "canton": null, - "numero_insee": "85208" - } - }, - { - "pk": 2650, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ETIENNE-DE-BRILLOUET", - "center": "POINT (343096.3562388907885179 2173623.3098648949526250)", - "surface": 18960000, - "canton": null, - "numero_insee": "85209" - } - }, - { - "pk": 2508, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-ETIENNE-DU-BOIS", - "center": "POINT (300144.6613228585920297 2212105.5743271997198462)", - "surface": 29620000, - "canton": null, - "numero_insee": "85210" - } - }, - { - "pk": 2174, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-FLAIVE-DES-LOUPS", - "center": "POINT (300054.3889273306704126 2186382.6803042497485876)", - "surface": 36280000, - "canton": null, - "numero_insee": "85211" - } - }, - { - "pk": 2542, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-FLORENCE", - "center": "POINT (333233.6574224056676030 2204669.5220215092413127)", - "surface": 17310000, - "canton": null, - "numero_insee": "85212" - } - }, - { - "pk": 2387, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-FLORENT-DES-BOIS", - "center": "POINT (318782.5343779380782507 2184934.3136669984087348)", - "surface": 36950000, - "canton": null, - "numero_insee": "85213" - } - }, - { - "pk": 2092, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-FOY", - "center": "POINT (291013.1846845482941717 2178201.8089013188146055)", - "surface": 15720000, - "canton": null, - "numero_insee": "85214" - } - }, - { - "pk": 2496, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-FULGENT", - "center": "POINT (333259.1625250915531069 2213777.4971130480989814)", - "surface": 36830000, - "canton": null, - "numero_insee": "85215" - } - }, - { - "pk": 2081, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-GEMME-LA-PLAINE", - "center": "POINT (335323.6240121004520915 2169456.0005599367432296)", - "surface": 35540000, - "canton": null, - "numero_insee": "85216" - } - }, - { - "pk": 2464, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DE-MONTAIGU", - "center": "POINT (324590.2004848716314882 2221312.9815073162317276)", - "surface": 34010000, - "canton": null, - "numero_insee": "85217" - } - }, - { - "pk": 2367, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GEORGES-DE-POINTINDOUX", - "center": "POINT (296521.3497216255054809 2190057.0634741969406605)", - "surface": 15640000, - "canton": null, - "numero_insee": "85218" - } - }, - { - "pk": 2985, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-L'AIGUILLER", - "center": "POINT (357654.6896201915224083 2192459.0503906267695129)", - "surface": 8500000, - "canton": null, - "numero_insee": "85219" - } - }, - { - "pk": 1948, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERMAIN-DE-PRINCAY", - "center": "POINT (341792.8602709558908828 2198334.1398955243639648)", - "surface": 24760000, - "canton": null, - "numero_insee": "85220" - } - }, - { - "pk": 2884, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GERVAIS", - "center": "POINT (271329.2182935873279348 2223280.3543775700964034)", - "surface": 42520000, - "canton": null, - "numero_insee": "85221" - } - }, - { - "pk": 2783, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-GILLES-CROIX-DE-VIE", - "center": "POINT (274549.1499643628485501 2196583.7456230046227574)", - "surface": 10450000, - "canton": null, - "numero_insee": "85222" - } - }, - { - "pk": 2059, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-HERMINE", - "center": "POINT (338650.9556383666349575 2178691.3584916056133807)", - "surface": 34930000, - "canton": null, - "numero_insee": "85223" - } - }, - { - "pk": 1741, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-DE-LOULAY", - "center": "POINT (321419.8538409293978475 2229594.0304557960480452)", - "surface": 41120000, - "canton": null, - "numero_insee": "85224" - } - }, - { - "pk": 2750, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-DE-RIEZ", - "center": "POINT (271497.0510218105628155 2202664.1566557325422764)", - "surface": 48880000, - "canton": null, - "numero_insee": "85226" - } - }, - { - "pk": 2145, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-DES-LOGES", - "center": "POINT (370665.5841965920990333 2168144.5658192168921232)", - "surface": 35300000, - "canton": null, - "numero_insee": "85227" - } - }, - { - "pk": 1513, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-DE-VOUST", - "center": "POINT (371059.0637221272918396 2181159.2257889346219599)", - "surface": 18840000, - "canton": null, - "numero_insee": "85229" - } - }, - { - "pk": 2887, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-LA-FORET", - "center": "POINT (302999.6718460556585342 2168891.3532105917111039)", - "surface": 10930000, - "canton": null, - "numero_insee": "85231" - } - }, - { - "pk": 2562, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-HILAIRE-LE-VOUHIS", - "center": "POINT (333127.7442520093172789 2193158.7491229362785816)", - "surface": 29180000, - "canton": null, - "numero_insee": "85232" - } - }, - { - "pk": 2956, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DE-BEUGNE", - "center": "POINT (335682.1392123104305938 2174563.4350198591127992)", - "surface": 13310000, - "canton": null, - "numero_insee": "85233" - } - }, - { - "pk": 2501, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JEAN-DE-MONTS", - "center": "POINT (265436.0982011849409901 2209520.7477409346029162)", - "surface": 62270000, - "canton": null, - "numero_insee": "85234" - } - }, - { - "pk": 2296, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JUIRE-CHAMPGILLON", - "center": "POINT (343629.5698981414316222 2181834.8746551764197648)", - "surface": 20690000, - "canton": null, - "numero_insee": "85235" - } - }, - { - "pk": 2320, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-JULIEN-DES-LANDES", - "center": "POINT (289815.1546409517759457 2190102.4381702765822411)", - "surface": 28440000, - "canton": null, - "numero_insee": "85236" - } - }, - { - "pk": 2160, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAURENT-DE-LA-SALLE", - "center": "POINT (350339.9004124352941290 2181289.3744478877633810)", - "surface": 19330000, - "canton": null, - "numero_insee": "85237" - } - }, - { - "pk": 1595, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-LAURENT-SUR-SEVRE", - "center": "POINT (353611.0820930243935436 2221750.9044876005500555)", - "surface": 15480000, - "canton": null, - "numero_insee": "85238" - } - }, - { - "pk": 1921, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MAIXENT-SUR-VIE", - "center": "POINT (282020.0674824375309981 2200948.3210950768552721)", - "surface": 10740000, - "canton": null, - "numero_insee": "85239" - } - }, - { - "pk": 1608, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MALO-DU-BOIS", - "center": "POINT (352433.1367812154348940 2218938.8773979223333299)", - "surface": 14250000, - "canton": null, - "numero_insee": "85240" - } - }, - { - "pk": 1664, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARS-LA-REORTHE", - "center": "POINT (351291.3042512549436651 2211723.4043702087365091)", - "surface": 9270000, - "canton": null, - "numero_insee": "85242" - } - }, - { - "pk": 1809, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "BREM-SUR-MER", - "center": "POINT (282530.4999391835881397 2187440.7814691015519202)", - "surface": 16160000, - "canton": null, - "numero_insee": "85243" - } - }, - { - "pk": 2857, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DE-FRAIGNEAU", - "center": "POINT (362097.1903764008893631 2163370.0106246070936322)", - "surface": 13460000, - "canton": null, - "numero_insee": "85244" - } - }, - { - "pk": 2814, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DES-FONTAINES", - "center": "POINT (351276.7504047425463796 2176893.2047402011230588)", - "surface": 5700000, - "canton": null, - "numero_insee": "85245" - } - }, - { - "pk": 2328, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DES-NOYERS", - "center": "POINT (329387.9225647873245180 2197632.0181236597709358)", - "surface": 41480000, - "canton": null, - "numero_insee": "85246" - } - }, - { - "pk": 2470, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-DES-TILLEULS", - "center": "POINT (341377.8317299071932212 2224553.0476227593608201)", - "surface": 14100000, - "canton": null, - "numero_insee": "85247" - } - }, - { - "pk": 2816, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MARTIN-LARS-EN-SAINTE-HERMINE", - "center": "POINT (346224.2822652893373743 2182756.9333978230133653)", - "surface": 18830000, - "canton": null, - "numero_insee": "85248" - } - }, - { - "pk": 1558, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MATHURIN", - "center": "POINT (290079.8013995686778799 2182197.7036774968728423)", - "surface": 23890000, - "canton": null, - "numero_insee": "85250" - } - }, - { - "pk": 2429, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MAURICE-DES-NOUES", - "center": "POINT (365448.7930837972089648 2181813.7422291417606175)", - "surface": 21500000, - "canton": null, - "numero_insee": "85251" - } - }, - { - "pk": 2357, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MAURICE-LE-GIRARD", - "center": "POINT (359100.9922899104421958 2186966.1497674034908414)", - "surface": 11450000, - "canton": null, - "numero_insee": "85252" - } - }, - { - "pk": 1758, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MESMIN", - "center": "POINT (364460.7421855643624440 2204625.3457818082533777)", - "surface": 26450000, - "canton": null, - "numero_insee": "85254" - } - }, - { - "pk": 2604, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-EN-L'HERM", - "center": "POINT (324033.8817872907966375 2154750.5781472781673074)", - "surface": 57850000, - "canton": null, - "numero_insee": "85255" - } - }, - { - "pk": 2851, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-LE-CLOUCQ", - "center": "POINT (363546.6358431238913909 2169687.4919337970204651)", - "surface": 17650000, - "canton": null, - "numero_insee": "85256" - } - }, - { - "pk": 1986, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-MICHEL-MONT-MERCURE", - "center": "POINT (353311.7550333249382675 2209438.0189719451591372)", - "surface": 25710000, - "canton": null, - "numero_insee": "85257" - } - }, - { - "pk": 2243, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PAUL-EN-PAREDS", - "center": "POINT (348214.3144048997201025 2208595.5276930993422866)", - "surface": 12280000, - "canton": null, - "numero_insee": "85259" - } - }, - { - "pk": 2260, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PAUL-MONT-PENIT", - "center": "POINT (294368.6815920686931349 2208555.4497998896986246)", - "surface": 16760000, - "canton": null, - "numero_insee": "85260" - } - }, - { - "pk": 2445, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-PEXINE", - "center": "POINT (334744.5193621246144176 2179059.7069284697063267)", - "surface": 15880000, - "canton": null, - "numero_insee": "85261" - } - }, - { - "pk": 2055, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PHILBERT-DE-BOUAINE", - "center": "POINT (307716.6414190389332362 2228581.2744452548213303)", - "surface": 50550000, - "canton": null, - "numero_insee": "85262" - } - }, - { - "pk": 1525, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-DU-CHEMIN", - "center": "POINT (367660.2026643464341760 2192841.4710834803991020)", - "surface": 29830000, - "canton": null, - "numero_insee": "85264" - } - }, - { - "pk": 2326, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PIERRE-LE-VIEUX", - "center": "POINT (363223.5737788528203964 2160276.5053869327530265)", - "surface": 23320000, - "canton": null, - "numero_insee": "85265" - } - }, - { - "pk": 2049, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-PROUANT", - "center": "POINT (347085.5811533657833934 2199778.7317593698389828)", - "surface": 12940000, - "canton": null, - "numero_insee": "85266" - } - }, - { - "pk": 2447, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINTE-RADEGONDE-DES-NOYERS", - "center": "POINT (338221.8570404208730906 2157769.3522823657840490)", - "surface": 31400000, - "canton": null, - "numero_insee": "85267" - } - }, - { - "pk": 2346, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-REVEREND", - "center": "POINT (281343.9774745039176196 2197940.2235412844456732)", - "surface": 15740000, - "canton": null, - "numero_insee": "85268" - } - }, - { - "pk": 2642, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SIGISMOND", - "center": "POINT (365685.5668454816914164 2152990.2105465354397893)", - "surface": 10360000, - "canton": null, - "numero_insee": "85269" - } - }, - { - "pk": 1970, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SULPICE-EN-PAREDS", - "center": "POINT (357423.4499693345278502 2184049.8540164004079998)", - "surface": 13310000, - "canton": null, - "numero_insee": "85271" - } - }, - { - "pk": 2820, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-SULPICE-LE-VERDON", - "center": "POINT (314421.5325512847630307 2216425.7639417159371078)", - "surface": 14080000, - "canton": null, - "numero_insee": "85272" - } - }, - { - "pk": 2026, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-URBAIN", - "center": "POINT (268367.6053302666987292 2218252.0155480215325952)", - "surface": 16530000, - "canton": null, - "numero_insee": "85273" - } - }, - { - "pk": 1554, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VALERIEN", - "center": "POINT (348383.4288124676095322 2175768.5068431310355663)", - "surface": 14580000, - "canton": null, - "numero_insee": "85274" - } - }, - { - "pk": 1897, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VINCENT-STERLANGES", - "center": "POINT (338685.4779650471173227 2198909.1942179678007960)", - "surface": 4560000, - "canton": null, - "numero_insee": "85276" - } - }, - { - "pk": 2151, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VINCENT-SUR-GRAON", - "center": "POINT (314569.8883942103129812 2173790.1345186056569219)", - "surface": 48800000, - "canton": null, - "numero_insee": "85277" - } - }, - { - "pk": 2833, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SAINT-VINCENT-SUR-JARD", - "center": "POINT (301420.4275086626294069 2166176.0635384307242930)", - "surface": 14620000, - "canton": null, - "numero_insee": "85278" - } - }, - { - "pk": 2351, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SALIGNY", - "center": "POINT (314601.7789836350129917 2206618.8853094498626888)", - "surface": 23720000, - "canton": null, - "numero_insee": "85279" - } - }, - { - "pk": 2730, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SALLERTAINE", - "center": "POINT (273388.6283747458946891 2216191.1041120290756226)", - "surface": 49750000, - "canton": null, - "numero_insee": "85280" - } - }, - { - "pk": 2435, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SERIGNE", - "center": "POINT (355519.5775606682291254 2172123.7959255049936473)", - "surface": 18460000, - "canton": null, - "numero_insee": "85281" - } - }, - { - "pk": 1629, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SIGOURNAIS", - "center": "POINT (345917.4498541972716339 2195765.7068029451183975)", - "surface": 18450000, - "canton": null, - "numero_insee": "85282" - } - }, - { - "pk": 2489, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "SOULLANS", - "center": "POINT (275655.5563197276205756 2208202.7394225355237722)", - "surface": 41380000, - "canton": null, - "numero_insee": "85284" - } - }, - { - "pk": 2822, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LE TABLIER", - "center": "POINT (319124.5205658100894652 2179832.6508539761416614)", - "surface": 9250000, - "canton": null, - "numero_insee": "85285" - } - }, - { - "pk": 1895, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA TAILLEE", - "center": "POINT (347919.1912525744410232 2159150.0081555228680372)", - "surface": 11540000, - "canton": null, - "numero_insee": "85286" - } - }, - { - "pk": 1760, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TALLUD-SAINTE-GEMME", - "center": "POINT (353544.0266490189824253 2193326.0964288949035108)", - "surface": 18720000, - "canton": null, - "numero_insee": "85287" - } - }, - { - "pk": 2606, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TALMONT-SAINT-HILAIRE", - "center": "POINT (295670.8253425601287745 2171633.9969362821429968)", - "surface": 90480000, - "canton": null, - "numero_insee": "85288" - } - }, - { - "pk": 2091, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA TARDIERE", - "center": "POINT (365486.3972107382724062 2189420.6682445886544883)", - "surface": 20390000, - "canton": null, - "numero_insee": "85289" - } - }, - { - "pk": 2097, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THIRE", - "center": "POINT (343570.5093314317055047 2176830.0101682017557323)", - "surface": 11600000, - "canton": null, - "numero_insee": "85290" - } - }, - { - "pk": 2140, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THORIGNY", - "center": "POINT (325479.7405053403927013 2185989.9741776897571981)", - "surface": 32090000, - "canton": null, - "numero_insee": "85291" - } - }, - { - "pk": 1598, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "THOUARSAIS-BOUILDROUX", - "center": "POINT (354125.7215841006254777 2183422.2674639555625618)", - "surface": 17370000, - "canton": null, - "numero_insee": "85292" - } - }, - { - "pk": 1963, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TIFFAUGES", - "center": "POINT (338846.3815539497882128 2228135.3312908736988902)", - "surface": 9800000, - "canton": null, - "numero_insee": "85293" - } - }, - { - "pk": 2703, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA TRANCHE-SUR-MER", - "center": "POINT (310097.8243168413173407 2157639.2923606927506626)", - "surface": 21030000, - "canton": null, - "numero_insee": "85294" - } - }, - { - "pk": 2146, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TREIZE-SEPTIERS", - "center": "POINT (328638.5095542598864995 2228051.7475815978832543)", - "surface": 22540000, - "canton": null, - "numero_insee": "85295" - } - }, - { - "pk": 1635, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TREIZE-VENTS", - "center": "POINT (357646.2166313175694086 2217880.7198507566936314)", - "surface": 19060000, - "canton": null, - "numero_insee": "85296" - } - }, - { - "pk": 2462, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "TRIAIZE", - "center": "POINT (328000.3259349860018119 2159287.0640039946883917)", - "surface": 57150000, - "canton": null, - "numero_insee": "85297" - } - }, - { - "pk": 2220, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VAIRE", - "center": "POINT (287142.3642795621999539 2186477.5063032126054168)", - "surface": 28280000, - "canton": null, - "numero_insee": "85298" - } - }, - { - "pk": 2745, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VELLUIRE", - "center": "POINT (352313.7838883049553260 2160287.0372575214132667)", - "surface": 9580000, - "canton": null, - "numero_insee": "85299" - } - }, - { - "pk": 1615, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VENANSAULT", - "center": "POINT (303491.0064472489757463 2194517.7779567609541118)", - "surface": 44710000, - "canton": null, - "numero_insee": "85300" - } - }, - { - "pk": 2424, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VENDRENNES", - "center": "POINT (336606.8311226224759594 2208300.2275394485332072)", - "surface": 17150000, - "canton": null, - "numero_insee": "85301" - } - }, - { - "pk": 2469, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA VERRIE", - "center": "POINT (347191.3466491550207138 2223499.7717811269685626)", - "surface": 43180000, - "canton": null, - "numero_insee": "85302" - } - }, - { - "pk": 2697, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VIX", - "center": "POINT (354255.5913439503638074 2155398.5989433969371021)", - "surface": 28810000, - "canton": null, - "numero_insee": "85303" - } - }, - { - "pk": 2829, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VOUILLE-LES-MARAIS", - "center": "POINT (345813.3574139034608379 2159633.1846597357653081)", - "surface": 9050000, - "canton": null, - "numero_insee": "85304" - } - }, - { - "pk": 2370, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "VOUVANT", - "center": "POINT (362274.9775993488146923 2178284.6135559007525444)", - "surface": 20420000, - "canton": null, - "numero_insee": "85305" - } - }, - { - "pk": 1687, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "XANTON-CHASSENON", - "center": "POINT (366280.9023614492034540 2165806.5024309805594385)", - "surface": 19350000, - "canton": null, - "numero_insee": "85306" - } - }, - { - "pk": 1633, - "model": "ishtar_common.town", - "fields": { - "departement": null, - "name": "LA FAUTE-SUR-MER", - "center": "POINT (318842.6716168149723671 2153106.6728377998806536)", - "surface": 7260000, - "canton": null, - "numero_insee": "85307" - } - } -] \ No newline at end of file diff --git a/ishtar_common/scripts/__init__.py b/ishtar_common/scripts/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/ishtar_common/scripts/import_from_csv.py b/ishtar_common/scripts/import_from_csv.py deleted file mode 100755 index 9640f1851..000000000 --- a/ishtar_common/scripts/import_from_csv.py +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -""" -Import departements and towns from csv file -""" - -DELIMITER = "," -QUOTECHAR = '"' - -import sys -import csv -sys.path.append('.') - -from django.core.management import setup_environ -import settings - -setup_environ(settings) - -from optparse import OptionParser - -from ishtar_common import models - -def insert_department(value): - idx, label = value - if models.Department.objects.filter(number=idx).count(): - return - models.Department(number=idx, label=label).save() - print idx, label, u" inserted" - -def insert_town(value): - idx, label = value - if models.Town.objects.filter(numero_insee=idx).count(): - return - try: - dpt = models.Department.objects.get(number=idx[:2]) - except: - return - models.Town(numero_insee=idx, name=label, departement=dpt).save() - print idx, label, u" inserted" - -tables = {u"department":insert_department, - u"town":insert_town} - -usage = u"usage: %%prog csv_file.csv table_name\n\n"\ - u"Table name must be in: %s." % u", ".join(tables.keys()) -parser = OptionParser(usage=usage) - -(options, args) = parser.parse_args() - -try: - assert len(args) == 2 -except AssertionError: - parser.error(u"You must provide one csv file and the table name.") - -try: - assert args[1] in tables.keys() -except AssertionError: - parser.error(u"Incorrect table name.") - -try: - values = csv.reader(open(args[0], 'rb'), delimiter=DELIMITER, - quotechar=QUOTECHAR) -except (IOError): - parser.error(u"Incorrect CSV file.") - -for value in values: - tables[args[1]](value) diff --git a/ishtar_common/scripts/import_towns_from_osm.py b/ishtar_common/scripts/import_towns_from_osm.py deleted file mode 100755 index fb301f09f..000000000 --- a/ishtar_common/scripts/import_towns_from_osm.py +++ /dev/null @@ -1,110 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -""" -Import towns from OpenStreetMap data. -Take an OSM xml file for argument. - -To get an OSM file (with a bounding box adapted to your needs): -curl --location --globoff "http://www.informationfreeway.org/api/0.6/node[place=village|town|city][bbox=-5.53711,41.90228,8.96484,51.50874]" -o city.osm -or from a whole xml/pbf export: -./osmosis --read-pbf ~/france-20110125.osm.pbf --node-key-value keyValueList="place.village,place.town,place.city" --write-xml city.osm -""" - -import sys -sys.path.append('.') - -from django.core.management import setup_environ -from django.core.exceptions import ObjectDoesNotExist -from django.contrib.gis.geos import Point -import settings - -setup_environ(settings) - -from optparse import OptionParser -from xml.parsers import expat - -from ishtar_base import models - -usage = "usage: %prog osm_file.xml" -parser = OptionParser(usage=usage) - -(options, args) = parser.parse_args() - -try: - assert len(args) == 1 -except AssertionError: - parser.error("You must provide one XML file") - - -ATTRS = [u"lat", u"lon"] - -# key : (mandatory, [restraint to keys]) -TAGS = {u"place":(True, [u"village", u"town", u"city"]), - u"ref:INSEE":(True, []), - u"population":(False, []) - } - -class TownParser: - - def __init__(self): - self._parser = expat.ParserCreate() - self._parser.returns_unicode = True - self._parser.StartElementHandler = self.start - self._parser.EndElementHandler = self.end - self._parser.CharacterDataHandler = self.data - self.town = {} - self.number = 0 - - def feed(self, data): - self._parser.ParseFile(data) - - def close(self): - self._parser.Parse("", 1) # end of data - del self._parser # get rid of circular references - - def start(self, tag, attrs): - if tag == u"node": - self.town = {} - for attr in ATTRS: - if attr in attrs: - self.town[attr] = attrs[attr] - if tag == u"tag": - if not u"k" in attrs or not u"v" in attrs: - return - if attrs[u"k"] in TAGS: - limit = TAGS[attrs[u"k"]][1] - if limit and \ - (attrs[u"v"] not in limit or \ - (type(limit) == unicode and limit not in attrs[u"v"])): - self.town["DEL"] = True - return - self.town[attrs[u"k"]] = attrs[u"v"] - - def end(self, tag): - if tag == u"node" and self.town and "DEL" not in self.town: - for k in TAGS: - if TAGS[k][0] and k not in self.town: - return - self.number += 1 - try: - town = models.Town.objects.get(numero_insee=self.town["ref:INSEE"]) - except ObjectDoesNotExist: - return - town.center = Point(float(self.town['lon']), float(self.town['lat']), - srid=4326) - town.save() - print town, "updated" - - def data(self, data): - pass - -p = TownParser() - -try: - p.feed(file(args[0])) - print u"%d towns updated" % p.number -except (IOError, expat.ExpatError): - parser.error("Incorrect XML file") - - diff --git a/misc/history_duplicate_clean.py b/misc/history_duplicate_clean.py deleted file mode 100644 index 61d358720..000000000 --- a/misc/history_duplicate_clean.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -Clean duplicate in history. -This should be unecessary now. -""" - -import datetime -from archaeological_operations.models import Operation, AdministrativeAct -from archaeological_files.models import File -from archaeological_context_records.models import ContextRecord -from archaeological_finds.models import Find, BaseFind, Treatment - -nb_deleted = {} -to_delete = [] -for model in [Operation, File, ContextRecord, AdministrativeAct, Find, - BaseFind, Treatment]: - nb_deleted[model.__name__] = 0 - for item in model.objects.all()[0:]: - c_user, c_date = None, None - for h in item.history.order_by('-history_modifier_id', '-history_date', - '-history_id').all(): - if c_user and c_date and h.history_modifier_id == c_user and \ - c_date - h.history_date < datetime.timedelta(seconds=5): - to_delete.append(h) - c_user = h.history_modifier_id - c_date = h.history_date - nb_deleted[model.__name__] += len(to_delete) - -for item in to_delete: - item.delete() -for m in nb_deleted: - print "* %d deleted for %s" % (nb_deleted[m], m) diff --git a/misc/pre_import_sra_files.py b/misc/pre_import_sra_files.py deleted file mode 100644 index df00d3ef5..000000000 --- a/misc/pre_import_sra_files.py +++ /dev/null @@ -1,79 +0,0 @@ -import unicodecsv -import datetime - -from django.conf import settings - -from ishtar_common.data_importer import Importer - - -def get_year(value): - try: - for fmt in ['%d/%m/%Y', '%d/%m/%Y']: - return datetime.datetime.strptime(value, fmt).year - except: - pass - -index_list = [] - - -def treatment(data): - internal_ref = data[37].strip() - creation = data[34].strip() - reception = data[19].strip() - yr = get_year(creation) - if not yr: - yr = get_year(reception) - - idx, year = None, None - if '-' in internal_ref: - year, y_idx = internal_ref.split('-') - if len(year) == 4: # 2007-XXXX - try: - year = int(year) - idx = int(y_idx) - except ValueError: - pass - elif '.' in internal_ref: - year, y_idx = internal_ref.split('.') - if len(year) == 4: # 2011.XXXX - try: - year = int(year) - idx = int(y_idx) - except ValueError: - pass - if not idx: - idx = int(internal_ref) - if year and year != yr: - yr = year - assert yr # we should absolutly have a year! - - external_id = "{}{}-{}".format(settings.ISHTAR_LOCAL_PREFIX, yr, idx) - assert (yr, external_id) not in index_list - index_list.append((yr, external_id)) - return yr, idx, external_id - - -new_datas = [] -with open('plouf.csv') as csv_file: - datas = [line for line in unicodecsv.reader(csv_file, - encoding='utf-8')] - for idx, data in enumerate(datas): - if idx < 3: - # headers - data.append('annee') - data.append('identifiant numerique') - data.append('external_id') - new_datas.append(data) - continue - try: - year, idx, external_id = treatment(data) - data.append(year) - data.append(idx) - data.append(external_id) - new_datas.append(data) - except Exception as e: - print("Line {}: {}".format(idx + 1, e)) - -csv = Importer()._get_csv(new_datas, empty=u'') -with open('plouf2.csv', 'w') as fle: - fle.write(csv.encode('utf-8')) diff --git a/misc/simple_ooo_replace.py b/misc/simple_ooo_replace.py deleted file mode 100755 index 62cbab7a5..000000000 --- a/misc/simple_ooo_replace.py +++ /dev/null @@ -1,79 +0,0 @@ -import os -import shutil -import sys -from zipfile import ZipFile, ZIP_DEFLATED - -rpl_lst = [ - ('adminact_associated_file_general_contractor_attached_to_name', - 'adminact_associated_file_corporation_general_contractor_name'), - ('adminact_associated_file_general_contractor_' - 'attached_to_address', - 'adminact_associated_file_corporation_general_contractor_' - 'address'), - ('adminact_associated_file_general_contractor_' - 'address_complement', - 'adminact_associated_file_corporation_general_contractor_' - 'address_complement '), - ('adminact_associated_file_general_contractor_' - 'attached_to_postal_code', - 'adminact_associated_file_corporation_general_contractor_' - 'postal_code '), - ('adminact_associated_file_general_contractor_attached_to_town', - 'adminact_associated_file_corporation_general_contractor_town', - ), - ('adminact_associated_file_address', - 'adminact_associated_file_get_locality', - ) -] - -context = dict(rpl_lst) - - -def value_replace(content): - value = content - modified = False - for key in context: - if key in value: - modified = True - value = value.replace(key, context[key]) - return value, modified - - -def replace(directory, infile): - print("Processing {}".format(infile)) - outfile = "PREPROCESS--" + infile - infile = directory + os.sep + infile - outfile = directory + os.sep + outfile - - inzip = ZipFile(infile, 'r', ZIP_DEFLATED) - outzip = ZipFile(outfile, 'w', ZIP_DEFLATED) - - values = {} - idx = 0 - for xml_file in ('content.xml', 'styles.xml'): - content = inzip.read(xml_file) - values[xml_file], modified = value_replace(content) - if modified: - idx += 1 - - for f in inzip.infolist(): - if f.filename in values: - outzip.writestr(f.filename, values[f.filename]) - else: - outzip.writestr(f, inzip.read(f.filename)) - - inzip.close() - outzip.close() - # replace original by PREPROCESS - shutil.move(outfile, infile) - return idx - -directory = sys.argv[-1] -idx = 0 - - -for fle in os.listdir(directory): - if fle.endswith('.odt'): - idx += replace(directory, fle) - -print("{} modifications".format(idx)) diff --git a/requirements.txt b/requirements.txt index 18f3567b3..c6ae18abd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,23 +1,18 @@ -#django-simple-history -psycopg2 -django-registration +psycopg2==2.4.5 +django-registration==0.8 django==1.4 south>=0.7.3,<0.7.99 -pillow +PIL>=1.1.6 pisa==3.0.33 reportlab==2.5 -dbf -python-memcached -unicodecsv - +dbf==0.88.16 +python-memcached==1.48 +unicodecsv==0.9.0 # for xhtml2odt -pytidylib -lxml -html5lib - +pytidylib==0.2.1 +lxml>=3.3.1 +html5lib==0.999 django-extra-views==0.2.4 - -git+https://github.com/treyhunner/django-simple-history.git@0fd9b8e9c6f36b0141367b502420efe92d4e21ce - +# git+https://github.com/treyhunner/django-simple-history.git@0fd9b8e9c6f36b0141367b502420efe92d4e21ce # oook_replace -beautifulsoup4 +beautifulsoup4==4.3.2 diff --git a/scripts/history_duplicate_clean.py b/scripts/history_duplicate_clean.py new file mode 100644 index 000000000..61d358720 --- /dev/null +++ b/scripts/history_duplicate_clean.py @@ -0,0 +1,31 @@ +""" +Clean duplicate in history. +This should be unecessary now. +""" + +import datetime +from archaeological_operations.models import Operation, AdministrativeAct +from archaeological_files.models import File +from archaeological_context_records.models import ContextRecord +from archaeological_finds.models import Find, BaseFind, Treatment + +nb_deleted = {} +to_delete = [] +for model in [Operation, File, ContextRecord, AdministrativeAct, Find, + BaseFind, Treatment]: + nb_deleted[model.__name__] = 0 + for item in model.objects.all()[0:]: + c_user, c_date = None, None + for h in item.history.order_by('-history_modifier_id', '-history_date', + '-history_id').all(): + if c_user and c_date and h.history_modifier_id == c_user and \ + c_date - h.history_date < datetime.timedelta(seconds=5): + to_delete.append(h) + c_user = h.history_modifier_id + c_date = h.history_date + nb_deleted[model.__name__] += len(to_delete) + +for item in to_delete: + item.delete() +for m in nb_deleted: + print "* %d deleted for %s" % (nb_deleted[m], m) diff --git a/scripts/import_from_csv.py b/scripts/import_from_csv.py new file mode 100755 index 000000000..9640f1851 --- /dev/null +++ b/scripts/import_from_csv.py @@ -0,0 +1,68 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +""" +Import departements and towns from csv file +""" + +DELIMITER = "," +QUOTECHAR = '"' + +import sys +import csv +sys.path.append('.') + +from django.core.management import setup_environ +import settings + +setup_environ(settings) + +from optparse import OptionParser + +from ishtar_common import models + +def insert_department(value): + idx, label = value + if models.Department.objects.filter(number=idx).count(): + return + models.Department(number=idx, label=label).save() + print idx, label, u" inserted" + +def insert_town(value): + idx, label = value + if models.Town.objects.filter(numero_insee=idx).count(): + return + try: + dpt = models.Department.objects.get(number=idx[:2]) + except: + return + models.Town(numero_insee=idx, name=label, departement=dpt).save() + print idx, label, u" inserted" + +tables = {u"department":insert_department, + u"town":insert_town} + +usage = u"usage: %%prog csv_file.csv table_name\n\n"\ + u"Table name must be in: %s." % u", ".join(tables.keys()) +parser = OptionParser(usage=usage) + +(options, args) = parser.parse_args() + +try: + assert len(args) == 2 +except AssertionError: + parser.error(u"You must provide one csv file and the table name.") + +try: + assert args[1] in tables.keys() +except AssertionError: + parser.error(u"Incorrect table name.") + +try: + values = csv.reader(open(args[0], 'rb'), delimiter=DELIMITER, + quotechar=QUOTECHAR) +except (IOError): + parser.error(u"Incorrect CSV file.") + +for value in values: + tables[args[1]](value) diff --git a/scripts/import_towns_from_osm.py b/scripts/import_towns_from_osm.py new file mode 100755 index 000000000..fb301f09f --- /dev/null +++ b/scripts/import_towns_from_osm.py @@ -0,0 +1,110 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +""" +Import towns from OpenStreetMap data. +Take an OSM xml file for argument. + +To get an OSM file (with a bounding box adapted to your needs): +curl --location --globoff "http://www.informationfreeway.org/api/0.6/node[place=village|town|city][bbox=-5.53711,41.90228,8.96484,51.50874]" -o city.osm +or from a whole xml/pbf export: +./osmosis --read-pbf ~/france-20110125.osm.pbf --node-key-value keyValueList="place.village,place.town,place.city" --write-xml city.osm +""" + +import sys +sys.path.append('.') + +from django.core.management import setup_environ +from django.core.exceptions import ObjectDoesNotExist +from django.contrib.gis.geos import Point +import settings + +setup_environ(settings) + +from optparse import OptionParser +from xml.parsers import expat + +from ishtar_base import models + +usage = "usage: %prog osm_file.xml" +parser = OptionParser(usage=usage) + +(options, args) = parser.parse_args() + +try: + assert len(args) == 1 +except AssertionError: + parser.error("You must provide one XML file") + + +ATTRS = [u"lat", u"lon"] + +# key : (mandatory, [restraint to keys]) +TAGS = {u"place":(True, [u"village", u"town", u"city"]), + u"ref:INSEE":(True, []), + u"population":(False, []) + } + +class TownParser: + + def __init__(self): + self._parser = expat.ParserCreate() + self._parser.returns_unicode = True + self._parser.StartElementHandler = self.start + self._parser.EndElementHandler = self.end + self._parser.CharacterDataHandler = self.data + self.town = {} + self.number = 0 + + def feed(self, data): + self._parser.ParseFile(data) + + def close(self): + self._parser.Parse("", 1) # end of data + del self._parser # get rid of circular references + + def start(self, tag, attrs): + if tag == u"node": + self.town = {} + for attr in ATTRS: + if attr in attrs: + self.town[attr] = attrs[attr] + if tag == u"tag": + if not u"k" in attrs or not u"v" in attrs: + return + if attrs[u"k"] in TAGS: + limit = TAGS[attrs[u"k"]][1] + if limit and \ + (attrs[u"v"] not in limit or \ + (type(limit) == unicode and limit not in attrs[u"v"])): + self.town["DEL"] = True + return + self.town[attrs[u"k"]] = attrs[u"v"] + + def end(self, tag): + if tag == u"node" and self.town and "DEL" not in self.town: + for k in TAGS: + if TAGS[k][0] and k not in self.town: + return + self.number += 1 + try: + town = models.Town.objects.get(numero_insee=self.town["ref:INSEE"]) + except ObjectDoesNotExist: + return + town.center = Point(float(self.town['lon']), float(self.town['lat']), + srid=4326) + town.save() + print town, "updated" + + def data(self, data): + pass + +p = TownParser() + +try: + p.feed(file(args[0])) + print u"%d towns updated" % p.number +except (IOError, expat.ExpatError): + parser.error("Incorrect XML file") + + diff --git a/scripts/pre_import_sra_files.py b/scripts/pre_import_sra_files.py new file mode 100644 index 000000000..df00d3ef5 --- /dev/null +++ b/scripts/pre_import_sra_files.py @@ -0,0 +1,79 @@ +import unicodecsv +import datetime + +from django.conf import settings + +from ishtar_common.data_importer import Importer + + +def get_year(value): + try: + for fmt in ['%d/%m/%Y', '%d/%m/%Y']: + return datetime.datetime.strptime(value, fmt).year + except: + pass + +index_list = [] + + +def treatment(data): + internal_ref = data[37].strip() + creation = data[34].strip() + reception = data[19].strip() + yr = get_year(creation) + if not yr: + yr = get_year(reception) + + idx, year = None, None + if '-' in internal_ref: + year, y_idx = internal_ref.split('-') + if len(year) == 4: # 2007-XXXX + try: + year = int(year) + idx = int(y_idx) + except ValueError: + pass + elif '.' in internal_ref: + year, y_idx = internal_ref.split('.') + if len(year) == 4: # 2011.XXXX + try: + year = int(year) + idx = int(y_idx) + except ValueError: + pass + if not idx: + idx = int(internal_ref) + if year and year != yr: + yr = year + assert yr # we should absolutly have a year! + + external_id = "{}{}-{}".format(settings.ISHTAR_LOCAL_PREFIX, yr, idx) + assert (yr, external_id) not in index_list + index_list.append((yr, external_id)) + return yr, idx, external_id + + +new_datas = [] +with open('plouf.csv') as csv_file: + datas = [line for line in unicodecsv.reader(csv_file, + encoding='utf-8')] + for idx, data in enumerate(datas): + if idx < 3: + # headers + data.append('annee') + data.append('identifiant numerique') + data.append('external_id') + new_datas.append(data) + continue + try: + year, idx, external_id = treatment(data) + data.append(year) + data.append(idx) + data.append(external_id) + new_datas.append(data) + except Exception as e: + print("Line {}: {}".format(idx + 1, e)) + +csv = Importer()._get_csv(new_datas, empty=u'') +with open('plouf2.csv', 'w') as fle: + fle.write(csv.encode('utf-8')) diff --git a/scripts/simple_ooo_replace.py b/scripts/simple_ooo_replace.py new file mode 100755 index 000000000..62cbab7a5 --- /dev/null +++ b/scripts/simple_ooo_replace.py @@ -0,0 +1,79 @@ +import os +import shutil +import sys +from zipfile import ZipFile, ZIP_DEFLATED + +rpl_lst = [ + ('adminact_associated_file_general_contractor_attached_to_name', + 'adminact_associated_file_corporation_general_contractor_name'), + ('adminact_associated_file_general_contractor_' + 'attached_to_address', + 'adminact_associated_file_corporation_general_contractor_' + 'address'), + ('adminact_associated_file_general_contractor_' + 'address_complement', + 'adminact_associated_file_corporation_general_contractor_' + 'address_complement '), + ('adminact_associated_file_general_contractor_' + 'attached_to_postal_code', + 'adminact_associated_file_corporation_general_contractor_' + 'postal_code '), + ('adminact_associated_file_general_contractor_attached_to_town', + 'adminact_associated_file_corporation_general_contractor_town', + ), + ('adminact_associated_file_address', + 'adminact_associated_file_get_locality', + ) +] + +context = dict(rpl_lst) + + +def value_replace(content): + value = content + modified = False + for key in context: + if key in value: + modified = True + value = value.replace(key, context[key]) + return value, modified + + +def replace(directory, infile): + print("Processing {}".format(infile)) + outfile = "PREPROCESS--" + infile + infile = directory + os.sep + infile + outfile = directory + os.sep + outfile + + inzip = ZipFile(infile, 'r', ZIP_DEFLATED) + outzip = ZipFile(outfile, 'w', ZIP_DEFLATED) + + values = {} + idx = 0 + for xml_file in ('content.xml', 'styles.xml'): + content = inzip.read(xml_file) + values[xml_file], modified = value_replace(content) + if modified: + idx += 1 + + for f in inzip.infolist(): + if f.filename in values: + outzip.writestr(f.filename, values[f.filename]) + else: + outzip.writestr(f, inzip.read(f.filename)) + + inzip.close() + outzip.close() + # replace original by PREPROCESS + shutil.move(outfile, infile) + return idx + +directory = sys.argv[-1] +idx = 0 + + +for fle in os.listdir(directory): + if fle.endswith('.odt'): + idx += replace(directory, fle) + +print("{} modifications".format(idx)) diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000..b88034e41 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index d963a43be..25e78d0b2 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- import os -from setuptools import setup, find_packages -import ishtar_common +from setuptools import setup # , find_packages +import version try: reqs = open(os.path.join(os.path.dirname(__file__), @@ -11,20 +11,23 @@ except (IOError, OSError): setup( name='ishtar', - version=ishtar_common.get_version(), - description= - "Ishtar is..."\ - "... and ...", - long_description=open('README.txt').read(), + version=version.get_version(), + description="Ishtar is a database to manage the furniture and " + "documentation from archaeological operations.", + long_description=open('README.rst').read(), author=u'Étienne Loks', - author_email='etienne.loks@peacefrogs.net', - url='http://pypi.python.org/pypi/ishtar', + author_email='etienne.loks@iggdrasil.net', + url='http://ishtar-archeo.net/', license='AGPL v3 licence, see COPYING', - packages=find_packages(), + packages=[ + 'archaeological_finds', 'example_project', + 'archaeological_warehouse', 'archaeological_files_pdl', + 'archaeological_files', 'xhtml2odt', 'simple_history', 'ishtar_common', + 'archaeological_operations', 'archaeological_context_records', + 'ishtar_pdl'], include_package_data=True, install_requires=reqs, - setup_requires=['setuptools-git'], - #test_suite = "", + # test_suite = "", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', diff --git a/simple_history b/simple_history new file mode 120000 index 000000000..2f560733b --- /dev/null +++ b/simple_history @@ -0,0 +1 @@ +django-simple-history/simple_history/ \ No newline at end of file diff --git a/version.py b/version.py new file mode 100644 index 000000000..5e4ce64e2 --- /dev/null +++ b/version.py @@ -0,0 +1,7 @@ +VERSION = (0, 90) + + +def get_version(): + return u'.'.join((unicode(num) for num in VERSION)) + +__version__ = get_version() -- cgit v1.2.3